diff --git a/.gitignore b/.gitignore index 52ae1bd546..07f7b0c567 100644 --- a/.gitignore +++ b/.gitignore @@ -134,6 +134,7 @@ functional-tests/src/test/groovy/testtamplet.txt #virtual env /deactivate .venv +venv .direnv # Frontend files @@ -156,6 +157,7 @@ sonar-runner/.classpath # DB *.dmp *.pgCustom +.tmp/ # Exceptions !app/*/fixtures/*.gz diff --git a/Jenkinsfile b/Jenkinsfile index 3a10540d70..0d92e57f1e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -295,19 +295,23 @@ parallel ( executed by itself. */ sh "oc exec '${podName}' -n '${projectName}' -- bash -c '\ cd /opt/app-root/src/backend; \ - python manage.py migrate; \ + python manage.py migrate \ '" sh "oc exec '${podName}' -n '${projectName}' -- bash -c '\ cd /opt/app-root/src/backend; \ - python manage.py loaddata gwells-codetables.json; \ + python manage.py loaddata gwells-codetables.json \ '" sh "oc exec '${podName}' -n '${projectName}' -- bash -c '\ cd /opt/app-root/src/backend; \ - python manage.py loaddata wellsearch-codetables.json registries-codetables.json; \ + python manage.py loaddata wellsearch-codetables.json registries-codetables.json \ '" sh "oc exec '${podName}' -n '${projectName}' -- bash -c '\ cd /opt/app-root/src/backend; \ - python manage.py loaddata wellsearch.json.gz registries.json; \ + python manage.py loaddata wellsearch.json.gz registries.json \ + '" + sh "oc exec '${podName}' -n '${projectName}' -- bash -c '\ + cd /opt/app-root/src/backend; \ + python manage.py loaddata aquifers.json \ '" sh "oc exec '${podName}' -n '${projectName}' -- bash -c '\ cd /opt/app-root/src/backend; \ @@ -633,6 +637,14 @@ parallel ( --global-var client_id=\$GWELLS_API_TEST_CLIENT_ID \ --global-var client_secret=\$GWELLS_API_TEST_CLIENT_SECRET \ -r cli,junit,html + newman run ./aquifers_api_tests.json \ + --global-var test_user=\$GWELLS_API_TEST_USER \ + --global-var test_password=\$GWELLS_API_TEST_PASSWORD \ + --global-var base_url=${BASEURL} \ + --global-var auth_server=\$GWELLS_API_TEST_AUTH_SERVER \ + --global-var client_id=\$GWELLS_API_TEST_CLIENT_ID \ + --global-var client_secret=\$GWELLS_API_TEST_CLIENT_SECRET \ + -r cli,junit,html """ } finally { junit 'newman/*.xml' diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000..780b16dc5b --- /dev/null +++ b/Makefile @@ -0,0 +1,31 @@ + +################ +# General Jobs # +################ + +default: vue + +vue: prep + NPM_CMD=dev docker-compose up; docker-compose down + +api: prep + NPM_CMD=build docker-compose up; docker-compose down + +django: prep + NPM_CMD=watch docker-compose up; docker-compose down + + +################### +# Individual jobs # +################### + +prep: + @ docker-compose pull + @ docker-compose build + +db-clean: + @ docker-compose down || true + @ rm -rf ./.tmp/psql-dev + @ echo + @ echo "Compose is down and the database folder deleted" + @ echo diff --git a/README.md b/README.md index 9751e42416..aa767e1530 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,64 @@ It uses the Openshift Source-to-Image (S2I) strategy with Python 3.5 on centos7. ## Development and Deployment -Setup scripts, OpenShift deployment and development details are located in the [setup](./setup/) folder. Please see the relevant [README.md](./setup/README.md). +0. ##### Prerequisites + + Install Docker and Git + + * [Docker Community Editions (signup required)](https://store.docker.com/search?type=edition&offering=community) + + * [Git Downloads](https://git-scm.com/downloads) + + OS X alternative: Xcode with Git + ``` + xcode-select --install + ``` + + Configure Git (user details, push default and line endings) + ``` + git config --global user.email + git config --global user.name + git config --global push.default simple + git config --global core.autocrlf input + ``` + +1. ##### GWells Repository + + Fork our repository into your own GitHub account. + + [GWells Repo (fork button in top right)](https://github.com/bcgov/gwells) + + Clone and cd. + + ``` + git clone https://github.com//gwells.git + cd gwells + ``` + + Add remote (upstream) origin. + + ``` + git remote add upstream https://github.com/bcgov/gwells.git + ``` + +2. ##### GWells App + + Create a development deployment for working with Vue, Django or the API. + ``` + cd gwells + make [vue|django|api] + ``` + + Visit the following links depending on development target. + + * Django Frontend: http://localhost:8000/gwells/ + * Node/API: http://localhost:8080/ + +
Changes will update dynamically in their respective environments. + +## Contributing + +Please see [CONTRIBUTING.md](https://github.com/bcgov/gwells/blob/master/CONTRIBUTING.md) ## Issues Issues are tracked on the [GWELLS Trello board](https://trello.com/b/2UQZgXHR/wells-project-board). @@ -26,4 +83,3 @@ Issues are tracked on the [GWELLS Trello board](https://trello.com/b/2UQZgXHR/we ## License Code released under the [Apache License, Version 2.0](https://github.com/bcgov/gwells/blob/master/LICENSE). - diff --git a/api-tests/aquifers_api_tests.json b/api-tests/aquifers_api_tests.json new file mode 100644 index 0000000000..7246833962 --- /dev/null +++ b/api-tests/aquifers_api_tests.json @@ -0,0 +1,135 @@ +{ + "info": { + "_postman_id": "f986d626-d0a1-42fe-b758-762529ccedb1", + "name": "GWELLS Aquifers", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" + }, + "item": [ + { + "name": "Aquifers List", + "event": [ + { + "listen": "test", + "script": { + "id": "85664ee3-92d9-4510-b7d8-6bd6c44ec870", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json()", + "", + "pm.test(\"Status code is 200\", function () {", + " pm.expect(pm.response.code).to.equal(200);", + "})", + "" + ] + } + } + ], + "request": { + "method": "GET", + "header": [], + "body": {}, + "url": { + "raw": "{{base_url}}/api/v1/aquifers/", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "aquifers", + "" + ] + } + }, + "response": [] + }, + { + "name": "Aquifers Search", + "event": [ + { + "listen": "test", + "script": { + "id": "e291aa1f-95f3-4ca8-8e6c-f88b496980ba", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json()", + "", + "pm.test(\"Status code is 200\", function () {", + " pm.expect(pm.response.code).to.equal(200);", + "})", + "" + ] + } + } + ], + "request": { + "method": "GET", + "header": [], + "body": {}, + "url": { + "raw": "{{base_url}}/api/v1/aquifers/?aquifer_id=123", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "aquifers", + "" + ], + "query": [ + { + "key": "aquifer_id", + "value": "123" + } + ] + } + }, + "response": [] + }, + { + "name": "Aquifers Filter by aquifer_id", + "event": [ + { + "listen": "test", + "script": { + "id": "7ab4ef72-57cb-4c27-8b88-2cb379cab83c", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json()", + "", + "pm.test(\"Status code is 200\", function () {", + " pm.expect(pm.response.code).to.equal(200);", + "})", + "" + ] + } + } + ], + "request": { + "method": "GET", + "header": [], + "body": {}, + "url": { + "raw": "{{base_url}}/api/v1/aquifers/?search=asdf", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "aquifers", + "" + ], + "query": [ + { + "key": "search", + "value": "asdf" + } + ] + } + }, + "response": [] + } + ] +} \ No newline at end of file diff --git a/api-tests/submissions_api_tests.json b/api-tests/submissions_api_tests.json index 724993fdbf..a337e36057 100644 --- a/api-tests/submissions_api_tests.json +++ b/api-tests/submissions_api_tests.json @@ -1,16 +1,14 @@ { "info": { - "_postman_id": "e9a3522c-8247-47fa-9737-e4ed8844b71c", + "_postman_id": "5372c36b-759f-4701-9798-c1e4cedf70c1", "name": "GWELLS Submissions API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "item": [ { - "_postman_id": "f9784005-0192-4fbf-b98b-c7b3b44fd07e", "name": "Authentication", "item": [ { - "_postman_id": "a0adc27f-1038-43cf-90ae-e1a0079307a7", "name": "Log in", "event": [ { @@ -90,16 +88,13 @@ ] }, { - "_postman_id": "f70aaf0f-0ee2-488e-8cdc-fc4bd5d14eca", "name": "Wells", "item": [] }, { - "_postman_id": "c1431a42-4397-4bc5-bfec-5c2435fbaa16", "name": "Activity Submissions", "item": [ { - "_postman_id": "701d9501-2013-4224-8a57-b798d492433e", "name": "Submission form Options", "event": [ { @@ -154,7 +149,6 @@ "response": [] }, { - "_postman_id": "31f59c45-c098-45a3-b352-2238eee680cf", "name": "Submission list", "event": [ { @@ -208,7 +202,6 @@ "response": [] }, { - "_postman_id": "3b0ca719-0382-44f8-aa84-22b3eb5fe641", "name": "Create new driller for submission", "event": [ { @@ -301,7 +294,6 @@ "response": [] }, { - "_postman_id": "10966311-02eb-4ec5-a418-05988d815a07", "name": "Submission", "event": [ { @@ -406,7 +398,6 @@ "response": [] }, { - "_postman_id": "f8eceb22-1ee9-4ac2-8711-4701e84f499d", "name": "Check submission - created well", "event": [ { @@ -510,13 +501,12 @@ "response": [] }, { - "_postman_id": "61559fa8-d85a-4780-a1ce-87c459277f2d", "name": "Submission - casings", "event": [ { "listen": "test", "script": { - "id": "1f834cd1-410b-45b1-8ad6-06b3f921ada5", + "id": "c6ccd3af-884d-45fb-93f4-21294aa25b3a", "type": "text/javascript", "exec": [ "var jsonData = pm.response.json();", @@ -528,7 +518,7 @@ "})", "", "pm.test(\"Expect casings records to be created\", function() {", - " ", + " pm.expect(jsonData.casing_set.length).to.equal(2);", "})", "", "" @@ -575,7 +565,63 @@ "response": [] }, { - "_postman_id": "5e5f58c9-e37d-4248-8469-c39b98f7db7f", + "name": "Submission - casings - empty", + "event": [ + { + "listen": "test", + "script": { + "id": "bf57abbb-38dd-41f5-a5bc-b8b85d729ade", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json();", + "", + "pm.test(\"Status code is 400\", function () {", + " pm.expect(pm.response.code).to.equal(400);", + "})", + "" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "JWT {{token}}" + }, + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n\t\"well_activity_type\": \"CON\",\n\t\"owner_full_name\": \"Bob\",\n\t\"owner_mailing_address\": \"123 Place\",\n\t\"owner_city\": \"Victoria\",\n\t\"owner_province_state\": \"BC\",\n\t\"casing_set\": [\n\t\t{\n\t\t},\n\t\t{\n\t\t}\n\t]\n}" + }, + "url": { + "raw": "{{base_url}}/api/v1/submissions/?format=json", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "submissions", + "" + ], + "query": [ + { + "key": "format", + "value": "json" + } + ] + }, + "description": "Request a list of wells" + }, + "response": [] + }, + { "name": "Check submission - created well casings", "event": [ { @@ -679,7 +725,6 @@ "response": [] }, { - "_postman_id": "10095293-c481-490b-98bf-4d9ce9e270d7", "name": "Submission - screen", "event": [ { @@ -713,7 +758,63 @@ ], "body": { "mode": "raw", - "raw": "{\n\t\"well_activity_type\": \"CON\",\n\t\"owner_full_name\": \"Bob\",\n\t\"owner_mailing_address\": \"123 Place\",\n\t\"owner_city\": \"Victoria\",\n\t\"owner_province_state\": \"BC\",\n\t\"liner_diameter\": 1,\n\t\"liner_from\": 0,\n\t\"liner_material\": \"PVC\",\n\t\"liner_thickness\": 2,\n\t\"liner_to\": 3,\n\t\"screen_set\": [\n\t\t{\n\t\t\t\"start\": 10,\n\t\t\t\"end\": 20\n\t\t}\n\t]\n}" + "raw": "{\n\t\"well_activity_type\": \"CON\",\n\t\"owner_full_name\": \"Bob\",\n\t\"owner_mailing_address\": \"123 Place\",\n\t\"owner_city\": \"Victoria\",\n\t\"owner_province_state\": \"BC\",\n\t\"liner_diameter\": 1,\n\t\"liner_from\": 0,\n\t\"liner_material\": \"PVC\",\n\t\"liner_thickness\": 2,\n\t\"liner_to\": 3,\n\t\"screen_set\": [\n\t\t{\n\t\t\t\"start\": 10,\n\t\t\t\"end\": 20,\n\t\t\t\"assembly_type\": \"SCREEN\"\n\t\t}\n\t]\n}" + }, + "url": { + "raw": "{{base_url}}/api/v1/submissions/?format=json", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "submissions", + "" + ], + "query": [ + { + "key": "format", + "value": "json" + } + ] + }, + "description": "Request a list of wells" + }, + "response": [] + }, + { + "name": "Submission - screen empty", + "event": [ + { + "listen": "test", + "script": { + "id": "78582a37-9917-4d5c-a736-a0db198978ef", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json();", + "", + "pm.test(\"Status code is 400\", function() {", + " pm.expect(pm.response.code).to.equal(400);", + "})" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "JWT {{token}}" + }, + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n\t\"well_activity_type\": \"CON\",\n\t\"owner_full_name\": \"Bob\",\n\t\"owner_mailing_address\": \"123 Place\",\n\t\"owner_city\": \"Victoria\",\n\t\"owner_province_state\": \"BC\",\n\t\"liner_diameter\": 1,\n\t\"liner_from\": 0,\n\t\"liner_material\": \"PVC\",\n\t\"liner_thickness\": 2,\n\t\"liner_to\": 3,\n\t\"screen_set\": [\n\t\t{\n\t\t}\n\t]\n}" }, "url": { "raw": "{{base_url}}/api/v1/submissions/?format=json", @@ -738,7 +839,6 @@ "response": [] }, { - "_postman_id": "c3b77fe8-1267-4936-b8f9-b777fa192fda", "name": "Check submission - created well screens", "event": [ { @@ -842,7 +942,6 @@ "response": [] }, { - "_postman_id": "26c40d3c-fda9-4e80-bd92-f0b5e24fa9c3", "name": "Submission - liner", "event": [ { @@ -902,7 +1001,63 @@ "response": [] }, { - "_postman_id": "ce94cd1a-43ef-4066-80d1-f92b3f6ab2f9", + "name": "Submission - liner empty", + "event": [ + { + "listen": "test", + "script": { + "id": "3737032f-d35f-4597-a306-133d74120ae4", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json();", + "", + "pm.test(\"Status code is 400\", function () {", + " pm.expect(pm.response.code).to.equal(400);", + "})", + "" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "JWT {{token}}" + }, + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n\t\"well_activity_type\": \"CON\",\n\t\"owner_full_name\": \"Bob\",\n\t\"owner_mailing_address\": \"123 Place\",\n\t\"owner_city\": \"Victoria\",\n\t\"owner_province_state\": \"BC\",\n\t\"liner_diameter\": 1,\n\t\"liner_from\": 0,\n\t\"liner_material\": \"PVC\",\n\t\"liner_thickness\": 2,\n\t\"liner_to\": 3,\n\t\"linerperforation_set\": [\n\t\t{\n\t\t}\n\t]\n}" + }, + "url": { + "raw": "{{base_url}}/api/v1/submissions/?format=json", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "submissions", + "" + ], + "query": [ + { + "key": "format", + "value": "json" + } + ] + }, + "description": "Request a list of wells" + }, + "response": [] + }, + { "name": "Check submission - created well liners", "event": [ { @@ -1004,15 +1159,168 @@ "description": "Check if the created well matched submission" }, "response": [] + }, + { + "name": "Alteration for unknown well", + "event": [ + { + "listen": "test", + "script": { + "id": "94e81347-a6a8-4f14-825a-bfa24db3099a", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json();", + "", + "pm.test(\"Status code is 201\", function () {", + " pm.expect(pm.response.code).to.equal(201);", + "})", + "", + "pm.environment.set(\"well_tag_number\", jsonData.well);", + "" + ] + } + } + ], + "request": { + "method": "POST", + "header": [ + { + "key": "Authorization", + "value": "JWT {{token}}" + }, + { + "key": "Content-Type", + "value": "application/json" + } + ], + "body": { + "mode": "raw", + "raw": "{\n\t\"well_activity_type\": \"ALT\",\n\t\"owner_full_name\": \"Bob\",\n\t\"owner_mailing_address\": \"123 Place\",\n\t\"owner_city\": \"ALT_WELL_TEST_CITY\",\n\t\"owner_province_state\": \"BC\",\n\t\"casing_set\": [\n\t\t{\n\t\t\t\"casing_code\": \"SURFACE\",\n\t\t\t\"start\":\"10\",\n\t\t\t\"casing_material\":\"STL_PUL_OT\",\n\t\t\t\"end\":\"20\",\n\t\t\t\"diameter\":\"1\",\n\t\t\t\"drive_shoe\":\"False\",\n\t\t\t\"id\":0,\n\t\t\t\"wall_thickness\":\"87\"\n\t\t}\n\t],\n \"linerperforation_set\": [\n\t\t{\n\t\t\t\"start\": 10,\n\t\t\t\"end\": 20\n\t\t}\n\t]\n}" + }, + "url": { + "raw": "{{base_url}}/api/v1/submissions/?format=json", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "submissions", + "" + ], + "query": [ + { + "key": "format", + "value": "json" + } + ] + }, + "description": "Request a list of wells" + }, + "response": [] + }, + { + "name": "Check submission - Alteration report on unknown well", + "event": [ + { + "listen": "test", + "script": { + "id": "758668aa-93ed-4341-9c01-1eb1c25985dd", + "type": "text/javascript", + "exec": [ + "var jsonData = pm.response.json();", + "", + "pm.test(\"Status code is 200\", function () {", + " pm.expect(pm.response.code).to.equal(200);", + "})", + "", + "pm.test(\"Expected well owner city to match the submitted alteration report\", function() {", + " pm.expect(jsonData.owner_city).to.equal(\"ALT_WELL_TEST_CITY\");", + "})", + "" + ] + } + } + ], + "request": { + "method": "GET", + "header": [ + { + "key": "Authorization", + "value": "JWT {{token}}" + }, + { + "key": "Content-Type", + "value": "application/x-www-form-urlencoded" + } + ], + "body": { + "mode": "urlencoded", + "urlencoded": [ + { + "key": "well_activity_type", + "value": "CON", + "type": "text" + }, + { + "key": "driller_responsible", + "value": "{{created_driller_guid}}", + "type": "text" + }, + { + "key": "work_end_date", + "value": "2018-07-02", + "type": "text" + }, + { + "key": "owner_full_name", + "value": "Holly Homeowner", + "type": "text" + }, + { + "key": "work_start_date", + "value": "2018-07-01", + "type": "text" + }, + { + "key": "owner_province_state", + "value": "BC", + "type": "text" + }, + { + "key": "owner_mailing_address", + "value": "321 Main Street", + "type": "text" + }, + { + "key": "owner_city", + "value": "Anytown", + "type": "text" + } + ] + }, + "url": { + "raw": "{{base_url}}/api/v1/wells/{{well_tag_number}}", + "host": [ + "{{base_url}}" + ], + "path": [ + "api", + "v1", + "wells", + "{{well_tag_number}}" + ] + }, + "description": "Check if the created well matched submission" + }, + "response": [] } ] }, { - "_postman_id": "a0f89642-6f77-4add-bd06-7708a26d8ca7", "name": "Stacking", "item": [ { - "_postman_id": "91f9ab66-7546-45cd-9c00-1ce2875a4777", "name": "Submission - construction submission", "event": [ { @@ -1074,7 +1382,6 @@ "response": [] }, { - "_postman_id": "dd15669c-6ce6-4dfd-8d00-e388225c0e30", "name": "Submission - alteration", "event": [ { @@ -1137,7 +1444,6 @@ "response": [] }, { - "_postman_id": "7911a539-dabf-4902-92a6-7473b6aa472c", "name": "Check submission - well updated", "event": [ { @@ -1241,7 +1547,6 @@ "response": [] }, { - "_postman_id": "0bd2af9f-8713-47c3-8407-e6985753e704", "name": "Submission - alteration - intersecting data", "event": [ { @@ -1304,7 +1609,6 @@ "response": [] }, { - "_postman_id": "0f5b0153-70c9-4e90-8689-3321498a0305", "name": "Check submission - well stacked", "event": [ { diff --git a/app/.dockerignore b/app/.dockerignore new file mode 100644 index 0000000000..1b6a64edaa --- /dev/null +++ b/app/.dockerignore @@ -0,0 +1,2 @@ +**/node_modules +npm-debug.log diff --git a/app/backend/.envrc b/app/backend/.envrc index b6cdd09f5a..57e654da5b 100644 --- a/app/backend/.envrc +++ b/app/backend/.envrc @@ -44,6 +44,7 @@ export DJANGO_ADMIN_URL=admin export REQUIRE_ENV_VARIABLES=True export S3_HOST=s3.ca-central-1.amazonaws.com export S3_ROOT_BUCKET=gwells-docs +export SSO_IDP_HINT=idir dotenv .secret_env @@ -60,3 +61,9 @@ then else echo "requirements.txt doesn't seem to have changed." fi + +echo "--------------------------------------" +echo "Want to use the jupyter shell?" +echo "python -m pip install jupyter" +echo "python manage.py shell_plus --notebook" +echo "--------------------------------------" diff --git a/app/backend/aquifers/README.md b/app/backend/aquifers/README.md index c0f8c9a7b4..a686fc5109 100644 --- a/app/backend/aquifers/README.md +++ b/app/backend/aquifers/README.md @@ -5,7 +5,11 @@ This is a distinct app under the GWELLS project, created using the Django command: `python manage.py startapp aquifers`, and included under this entry in the [settings.py](../gwells/settings/__init__.py#L102) file. Sub-folders follow the standard Django setup. -Please note that there is a dependency on the ProvinceStateCode model of gwells, so any exports of registries will need this as well, for example: -``` -python manage.py dumpdata registries gwells.ProvinceStateCode -``` +## Test data fixture + +To facilitate the CodeWithUs effort, we have a sample set of data available in a +[aquifers-sample file](./fixtures/aquifers-sample.json). It is a subset of the full dataset, referencing +only the wells that are in the test data fixture). + +It is automatically loaded in DEV and TEST, as part of the Jenkinsfile. It is NOT loaded in PROD. + diff --git a/app/backend/aquifers/fixtures/aquifers-sample.json b/app/backend/aquifers/fixtures/aquifers-sample.json new file mode 100644 index 0000000000..07aeb5055f --- /dev/null +++ b/app/backend/aquifers/fixtures/aquifers-sample.json @@ -0,0 +1 @@ +[{"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "gwells", "model": "provincestatecode"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "gwells", "model": "screentypecode"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "gwells", "model": "screenassemblytypecode"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "gwells", "model": "screenbottomcode"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "gwells", "model": "screenintakemethodcode"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "gwells", "model": "screenmaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "gwells", "model": "screenopeningcode"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "gwells", "model": "survey"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "gwells", "model": "onlinesurvey"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "gwells", "model": "profile"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "gwells", "model": "bedrockmaterialdescriptorcode"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "gwells", "model": "bedrockmaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "gwells", "model": "surficialmaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "gwells", "model": "lithologycolourcode"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "gwells", "model": "lithologydescriptioncode"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "gwells", "model": "lithologyhardnesscode"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "gwells", "model": "lithologymaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "gwells", "model": "lithologystructurecode"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "gwells", "model": "lithologymoisturecode"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "registries", "model": "activitycode"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "registries", "model": "subactivitycode"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "registries", "model": "certifyingauthoritycode"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "registries", "model": "accreditedcertificatecode"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "registries", "model": "organization"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "registries", "model": "person"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "registries", "model": "wellclasscode"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "registries", "model": "qualification"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "registries", "model": "registriesremovalreason"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "registries", "model": "register"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "registries", "model": "applicationstatuscode"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "registries", "model": "proofofagecode"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "registries", "model": "registriesapplication"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "registries", "model": "register_note"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "registries", "model": "organizationnote"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "registries", "model": "personnote"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "registries", "model": "vw_well_class"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "wells", "model": "decommissionmethodcode"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "wells", "model": "bcgs_numbers"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "wells", "model": "obswellstatuscode"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "wells", "model": "yieldestimationmethodcode"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "wells", "model": "waterqualitycharacteristic"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "wells", "model": "developmentmethodcode"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "wells", "model": "filterpackmaterialsizecode"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "wells", "model": "filterpackmaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "wells", "model": "linermaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "wells", "model": "surfacesealmethodcode"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "wells", "model": "surfacesealmaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "wells", "model": "drillingmethodcode"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "wells", "model": "drillingcompany"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "wells", "model": "landdistrictcode"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "wells", "model": "licencedstatuscode"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "wells", "model": "intendedwaterusecode"}}, {"model": "contenttypes.contenttype", "pk": 59, "fields": {"app_label": "wells", "model": "groundelevationmethodcode"}}, {"model": "contenttypes.contenttype", "pk": 60, "fields": {"app_label": "wells", "model": "wellclasscode"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "wells", "model": "wellstatuscode"}}, {"model": "contenttypes.contenttype", "pk": 62, "fields": {"app_label": "wells", "model": "wellsubclasscode"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "wells", "model": "wellyieldunitcode"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "wells", "model": "well"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "wells", "model": "perforation"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "wells", "model": "ltsaowner"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "wells", "model": "casingmaterialcode"}}, {"model": "contenttypes.contenttype", "pk": 68, "fields": {"app_label": "wells", "model": "casingcode"}}, {"model": "contenttypes.contenttype", "pk": 69, "fields": {"app_label": "wells", "model": "aquiferwell"}}, {"model": "contenttypes.contenttype", "pk": 70, "fields": {"app_label": "wells", "model": "activitysubmission"}}, {"model": "contenttypes.contenttype", "pk": 71, "fields": {"app_label": "wells", "model": "lithologydescription"}}, {"model": "contenttypes.contenttype", "pk": 72, "fields": {"app_label": "wells", "model": "productiondata"}}, {"model": "contenttypes.contenttype", "pk": 73, "fields": {"app_label": "wells", "model": "linerperforation"}}, {"model": "contenttypes.contenttype", "pk": 74, "fields": {"app_label": "wells", "model": "casing"}}, {"model": "contenttypes.contenttype", "pk": 75, "fields": {"app_label": "wells", "model": "screen"}}, {"model": "contenttypes.contenttype", "pk": 76, "fields": {"app_label": "wells", "model": "aquifervulnerabilitycode"}}, {"model": "contenttypes.contenttype", "pk": 77, "fields": {"app_label": "wells", "model": "waterqualitycolour"}}, {"model": "contenttypes.contenttype", "pk": 78, "fields": {"app_label": "wells", "model": "hydraulicproperty"}}, {"model": "contenttypes.contenttype", "pk": 79, "fields": {"app_label": "submissions", "model": "wellactivitycode"}}, {"model": "contenttypes.contenttype", "pk": 80, "fields": {"app_label": "aquifers", "model": "aquifermaterial"}}, {"model": "contenttypes.contenttype", "pk": 81, "fields": {"app_label": "aquifers", "model": "aquifersubtype"}}, {"model": "contenttypes.contenttype", "pk": 82, "fields": {"app_label": "aquifers", "model": "aquiferproductivity"}}, {"model": "contenttypes.contenttype", "pk": 83, "fields": {"app_label": "aquifers", "model": "aquiferdemand"}}, {"model": "contenttypes.contenttype", "pk": 84, "fields": {"app_label": "aquifers", "model": "wateruse"}}, {"model": "contenttypes.contenttype", "pk": 85, "fields": {"app_label": "aquifers", "model": "qualityconcern"}}, {"model": "contenttypes.contenttype", "pk": 86, "fields": {"app_label": "aquifers", "model": "aquifer"}}, {"model": "contenttypes.contenttype", "pk": 87, "fields": {"app_label": "reversion", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 88, "fields": {"app_label": "reversion", "model": "version"}}, {"model": "gwells.provincestatecode", "pk": "AB", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Alberta", "display_order": 4}}, {"model": "gwells.provincestatecode", "pk": "BC", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "British Columbia", "display_order": 2}}, {"model": "gwells.provincestatecode", "pk": "CA", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "California", "display_order": 34}}, {"model": "gwells.provincestatecode", "pk": "ID", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Idaho", "display_order": 38}}, {"model": "gwells.provincestatecode", "pk": "MB", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Manitoba", "display_order": 8}}, {"model": "gwells.provincestatecode", "pk": "NB", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "New Brunswick", "display_order": 24}}, {"model": "gwells.provincestatecode", "pk": "NL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Newfoundland and Labrador", "display_order": 12}}, {"model": "gwells.provincestatecode", "pk": "NS", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Nova Scotia", "display_order": 14}}, {"model": "gwells.provincestatecode", "pk": "NT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Northwest Territories", "display_order": 16}}, {"model": "gwells.provincestatecode", "pk": "NU", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Nunavut", "display_order": 18}}, {"model": "gwells.provincestatecode", "pk": "NV", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Nevada", "display_order": 36}}, {"model": "gwells.provincestatecode", "pk": "ON", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Ontario", "display_order": 6}}, {"model": "gwells.provincestatecode", "pk": "OR", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Oregon", "display_order": 32}}, {"model": "gwells.provincestatecode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 90}}, {"model": "gwells.provincestatecode", "pk": "PE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Prince Edward Island", "display_order": 20}}, {"model": "gwells.provincestatecode", "pk": "QC", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Quebec", "display_order": 22}}, {"model": "gwells.provincestatecode", "pk": "SK", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Saskatchewan", "display_order": 10}}, {"model": "gwells.provincestatecode", "pk": "WA", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Washington State", "display_order": 30}}, {"model": "gwells.provincestatecode", "pk": "YT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Yukon", "display_order": 26}}, {"model": "gwells.screentypecode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screentypecode", "pk": "PIPE_SIZE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Pipe size", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screentypecode", "pk": "TELESCOPE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Telescope", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "K_PACKER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "K-packer", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "K_RISER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "K-Packer & Riser", "display_order": 60, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "LEAD", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Lead Packer", "display_order": 70, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "RISER_PIPE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Riser Pipe", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "SCREEN", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Screen", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "SCRN_BLANK", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Screen Blank", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenassemblytypecode", "pk": "TAIL_PIPE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Tail Pipe", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenbottomcode", "pk": "BAIL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Bail", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenbottomcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenbottomcode", "pk": "PLATE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Plate", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenbottomcode", "pk": "PLUG", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Plug", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenintakemethodcode", "pk": "OPEN_HOLE", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:29Z", "update_user": null, "update_date": null, "description": "Open Bottom", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenintakemethodcode", "pk": "SCREEN", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:29Z", "update_user": null, "update_date": null, "description": "Screen", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenintakemethodcode", "pk": "UNCASD_HLE", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:29Z", "update_user": null, "update_date": null, "description": "Uncased Hole", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenmaterialcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenmaterialcode", "pk": "PLASTIC", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Plastic", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenmaterialcode", "pk": "STNLSS_STL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Stainless Steel", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenopeningcode", "pk": "CONTIN_SLT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Continuous Slot", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenopeningcode", "pk": "PERF_PIPE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Perforated Pipe", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.screenopeningcode", "pk": "SLOTTED", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Slotted", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.onlinesurvey", "pk": "73a7b852-f472-4f97-8dba-d3415c008430", "fields": {"survey_introduction_text": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut.", "survey_link": "http://www.google.com", "survey_enabled": true, "survey_page": "w", "effective_date": "2018-03-12", "expiry_date": null}}, {"model": "gwells.onlinesurvey", "pk": "c0692e07-a63e-44ea-b12e-ec46d7412fa2", "fields": {"survey_introduction_text": "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta.", "survey_link": "https://www.surveymonkey.com", "survey_enabled": false, "survey_page": "s", "effective_date": "2018-03-14", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "00", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:50:45Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "0 nothing entered", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "01", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:06:56Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "black", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "02", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:07:10Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "blue", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "03", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:07:24Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "brown", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "04", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:07:37Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "grey", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "05", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:07:52Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "green", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "06", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:08:04Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "red", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "07", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:08:18Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "white", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "08", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:08:32Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "yellow", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "09", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:08:46Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "light", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "10", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:08:58Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "dark", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "11", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:09:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "purple", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "12", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:09:31Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "rust-coloured", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "13", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:09:49Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "speckled", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "14", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:10:08Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "vari-coloured", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "15", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:10:26Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "salt & pepper", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologycolourcode", "pk": "16", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T16:58:48Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:23Z", "description": "tan", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "00", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:51:31Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "0 nothing entered", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "01", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:29:46Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "acidic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "02", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:30:19Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "argillaceous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "03", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:30:33Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "basic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "04", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:30:51Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "bentonitic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "05", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:31:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "bituminous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "06", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:31:33Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "bouldery", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "07", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:31:55Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "calcareous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "08", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:32:24Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "carbonaceous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "09", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:32:49Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "chalcedonic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "10", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:33:03Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "cherty", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "11", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:33:23Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "clay streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "12", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:33:38Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "clayey", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "13", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:33:56Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "coal streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "14", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:34:27Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "conglomeritic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "15", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:34:48Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "dolomitic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "16", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:35:18Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "feldspathic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "17", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:35:38Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "ferruginous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "18", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:35:56Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "gravel streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "19", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:36:11Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "gravelly", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "20", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:36:38Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "gypsiferous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "21", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:36:48Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "limy", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "22", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:37:03Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "marly", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "23", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:37:37Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "micaceous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "24", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:37:50Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "muddy", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "25", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:38:35Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "non-calcareous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "26", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:38:48Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "opaline", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "27", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:39:03Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "organic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "28", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:39:18Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "pebbly", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "29", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:39:37Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "phosphatic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "30", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:39:51Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "pyritic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "31", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:40:10Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "quartzose", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "32", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:40:25Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "sand streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "33", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:40:38Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "sandy", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "34", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:41:00Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "sand-gravel streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "35", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:41:18Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "shale streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "36", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:41:33Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "shaley", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "37", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:41:50Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "sideritic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "38", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:42:08Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "siliceous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "39", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:42:27Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "silt streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "40", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:42:39Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "silty", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "41", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:42:59Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "slaty streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "42", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:43:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "slaty", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "43", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:43:27Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "stony", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "44", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:43:43Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "till streaks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "45", "fields": {"create_user": "WELLS", "create_date": "2005-01-12T19:29:59Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "coarse", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "46", "fields": {"create_user": "WELLS", "create_date": "2005-01-12T19:30:17Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "medium", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "47", "fields": {"create_user": "WELLS", "create_date": "2005-01-12T19:30:34Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:25Z", "description": "fine", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "48", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:32:11Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:46:59Z", "description": "cemented", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "49", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:32:55Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:47:12Z", "description": "clean", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "50", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:33:42Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:47:23Z", "description": "coarse-grained", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "51", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:34:57Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:47:36Z", "description": "crystalline", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "52", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:38:57Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:47:47Z", "description": "dark-coloured", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "53", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:39:40Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:47:58Z", "description": "dense", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "54", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:40:41Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:48:11Z", "description": "dirty", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "55", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:41:35Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:48:21Z", "description": "dry", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "56", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:42:31Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:48:32Z", "description": "fine-grained", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "57", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:44:32Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:48:48Z", "description": "fossiliferous (shelly)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "58", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:45:28Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:48:58Z", "description": "fractured", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "59", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:47:07Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:49:18Z", "description": "hard", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "60", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:48:42Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:49:30Z", "description": "layered (streaked)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "61", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:49:28Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:49:41Z", "description": "light-coloured", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "62", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:50:03Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:49:50Z", "description": "loose", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "63", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:51:07Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:50:01Z", "description": "medium-grained", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "64", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:51:43Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:50:11Z", "description": "packed", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "65", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:52:39Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:50:20Z", "description": "porous", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "66", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:53:37Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:50:33Z", "description": "sharp", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "67", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:54:26Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:50:42Z", "description": "soft", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "68", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:55:00Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:50:51Z", "description": "sticky", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "69", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:55:59Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:51:00Z", "description": "thick", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "70", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:01:41Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:51:11Z", "description": "thin", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "71", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:02:34Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:51:19Z", "description": "water-bearing", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "72", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:03:12Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:51:27Z", "description": "weathered", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologydescriptioncode", "pk": "73", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T22:10:28Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:51:36Z", "description": "tight", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "DENSE", "fields": {"create_user": "ETL_USER", "create_date": "2018-01-09T00:38:00Z", "update_user": "ETL_USER", "update_date": "2018-01-09T00:38:00Z", "description": "Dense", "display_order": 0, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "HARD", "fields": {"create_user": "ETL_USER", "create_date": "2018-01-09T00:38:00Z", "update_user": "ETL_USER", "update_date": "2018-01-09T00:38:00Z", "description": "Hard", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "LOOSE", "fields": {"create_user": "ETL_USER", "create_date": "2018-01-09T00:38:00Z", "update_user": "ETL_USER", "update_date": "2018-01-09T00:38:00Z", "description": "Loose", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "MEDIUM", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Medium", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "SOFT", "fields": {"create_user": "ETL_USER", "create_date": "2018-01-09T00:38:00Z", "update_user": "ETL_USER", "update_date": "2018-01-09T00:38:00Z", "description": "Soft", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "STIFF", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Stiff", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "VERY_HARD", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Very Hard", "display_order": 60, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologyhardnesscode", "pk": "VERY_SOFT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Very Soft", "display_order": 70, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "00", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:51:10Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "0 nothing entered", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "01", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:13:25Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "overburden", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "02", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:13:42Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "organic matter", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "03", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:14:06Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "topsoil", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "04", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:14:23Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "fill", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "05", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:14:36Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "rock", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "06", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:14:53Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "till", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "07", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:15:09Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "boulders", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "08", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:15:35Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "stones", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "09", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:15:51Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "gravel", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "10", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:16:20Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "sand", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "11", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:16:33Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "silt", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "12", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:16:51Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "muck", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "13", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:17:04Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "clay", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "14", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:17:20Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "hardpan", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "15", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:17:53Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "sedimentary rock", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "16", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:18:05Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "breccia", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "17", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:18:22Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "conglomerate", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "18", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:18:38Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "sandstone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "19", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:18:55Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "greywacke", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "20", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:19:18Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "chert", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "21", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:19:41Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "quartzite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "22", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:20:16Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "mudstone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "23", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:20:30Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "siltstone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "24", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:20:44Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "shale", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "25", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:21:19Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "carbonate rocks", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "26", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:21:34Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "marble", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "27", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:21:50Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "marl", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "28", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:22:05Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "limestone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "29", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:22:19Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "dolomite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "30", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:22:37Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "evaporites", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "31", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:22:52Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "gypsum", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "32", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:23:16Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "iron formation", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "33", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:23:27Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "coal", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "34", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:23:47Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "bentonite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "36", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:24:10Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "basalt", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "37", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:24:50Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "soapstone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "38", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:25:09Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "schist", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "39", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:25:36Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "granite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "40", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:26:48Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "gneiss", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "41", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:26:59Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "slate", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "42", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:27:29Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "unspecified", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "43", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:27:42Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "bedrock", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "44", "fields": {"create_user": "WELLS", "create_date": "2004-11-08T17:27:54Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "nodules", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "45", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T17:03:28Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "cobbles", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "46", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T17:03:53Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "coarse sand", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "47", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T17:04:19Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "medium sand", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "48", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T17:04:38Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "fine sand", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "49", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T17:04:58Z", "update_user": "PROXY_WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "crystal", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "50", "fields": {"create_user": "WELLS", "create_date": "2005-06-09T17:05:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "description": "volcanic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "51", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:06:21Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:52:25Z", "description": "peat", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "52", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:11:25Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:52:38Z", "description": "pea gravel", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "53", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:23:15Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:52:52Z", "description": "feldspar", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "54", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:23:51Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:53:02Z", "description": "greenstone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "55", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:27:08Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:53:13Z", "description": "flint", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "56", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:51:24Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:53:22Z", "description": "claystone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "57", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:52:11Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:53:32Z", "description": "dolostone", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "58", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:52:49Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:53:47Z", "description": "diorite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "59", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:55:07Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:53:57Z", "description": "granodiorite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "60", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:55:28Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:54:06Z", "description": "pegmatite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "61", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:56:00Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:54:15Z", "description": "gabbro", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "62", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:56:25Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:54:26Z", "description": "syenite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "63", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:57:02Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:54:35Z", "description": "andesite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "64", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:57:28Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:54:46Z", "description": "rhyolite", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "65", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:57:52Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:54:56Z", "description": "loam", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "66", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T21:58:29Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:55:06Z", "description": "soil", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "67", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T22:00:26Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:55:15Z", "description": "pebbles", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "68", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T22:00:53Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:55:26Z", "description": "loess", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "69", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T22:03:38Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:55:35Z", "description": "diamicton", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "70", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T22:04:00Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:55:43Z", "description": "alluvium", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "gwells.lithologymaterialcode", "pk": "71", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T22:04:19Z", "update_user": "PROXY_WELLS", "update_date": "2008-01-11T00:55:52Z", "description": "colluvium", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "registries.activitycode", "pk": "DRILL", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Well Driller", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.activitycode", "pk": "PUMP", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Pump Installer", "display_order": 4, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.subactivitycode", "pk": "GEOTECH", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "registries_activity": "DRILL", "description": "Geotechnical/Environmental Driller", "display_order": 4, "effective_date": "2018-01-01", "expired_date": null}}, {"model": "registries.subactivitycode", "pk": "GEOXCHG", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "registries_activity": "DRILL", "description": "Geoexchange Driller", "display_order": 6, "effective_date": "2018-01-01", "expired_date": null}}, {"model": "registries.subactivitycode", "pk": "PUMPINST", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "registries_activity": "PUMP", "description": "Pump Installer", "display_order": 8, "effective_date": "2018-01-01", "expired_date": null}}, {"model": "registries.subactivitycode", "pk": "WATER", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "registries_activity": "DRILL", "description": "Water Well Driller", "display_order": 2, "effective_date": "2018-01-01", "expired_date": null}}, {"model": "registries.certifyingauthoritycode", "pk": "AB", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Province of Alberta", "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.certifyingauthoritycode", "pk": "BC", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Province of B.C.", "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.certifyingauthoritycode", "pk": "CGWA", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Canadian Ground Water Association", "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.certifyingauthoritycode", "pk": "N/A", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Grand-fathered", "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.certifyingauthoritycode", "pk": "ON", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Province of Ontario", "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.certifyingauthoritycode", "pk": "SK", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Province of Saskatchewan", "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "1886daa8-e799-49f0-9034-33d02bad543d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "CGWA", "registries_activity": "PUMP", "name": "Ground Water Pump Technician Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "1dfd37f5-5082-497a-be4e-6facd1d4dee9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "CGWA", "registries_activity": "PUMP", "name": "Ground Water Pump Technician Certificate, Class 2", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "BC", "registries_activity": "DRILL", "name": "Geoexchange Driller Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "4a059930-265f-43f5-9dbb-c71862ccc5b5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "CGWA", "registries_activity": "DRILL", "name": "Ground Water Drilling Technician Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "55911754-e547-4ca0-aad4-29592285f55d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "AB", "registries_activity": "DRILL", "name": "Earth Loop Technician, Alberta Journeyman Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "AB", "registries_activity": "DRILL", "name": "Water Well Driller, Alberta Journeyman Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "BC", "registries_activity": "PUMP", "name": "Well Pump Installer Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "88d5d0aa-d2aa-450a-9708-a911dce42f7f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "ON", "registries_activity": "PUMP", "name": "Well Technician Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "9349a159-6739-4623-9f7d-80b904b8f885", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "ON", "registries_activity": "DRILL", "name": "Well Technician Class 1 Drilling", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "a17cc1f8-62c7-4715-93fb-b4c66986d9a7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "SK", "registries_activity": "DRILL", "name": "Water Well Driller, Saskatchewan Journeyperson Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "BC", "registries_activity": "DRILL", "name": "Water Well Driller Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "a53d3f1e-65eb-46b7-8999-e662d654df77", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "N/A", "registries_activity": "PUMP", "name": "Grand-parent", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "da85087a-9764-410b-908e-b2b65f3dfb48", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "BC", "registries_activity": "DRILL", "name": "Geotechnical/Environmental Driller Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "e0d774bd-aba9-4a6c-9d5e-4020cfe82865", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "ON", "registries_activity": "DRILL", "name": "Well Technician Certificate", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.accreditedcertificatecode", "pk": "e368e066-137b-491a-af2a-da3bf2936e6d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "cert_auth": "N/A", "registries_activity": "DRILL", "name": "Grand-parent", "description": null, "effective_date": "1970-01-01", "expired_date": null}}, {"model": "registries.organization", "pk": "0069465c-26f6-4aa3-8cf2-27da659d91bd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cameo Plumbing", "street_address": "Box 1181", "city": "100 Mile House", "province_state": "BC", "postal_code": "V0K 2E0", "main_tel": "(250) 395-3535", "fax_tel": "(250) 395-2842", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "008e3350-ee98-451e-bdd2-65e584b19bdd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5G9", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "017065ea-74c0-492a-9eda-0c43dc7755ec", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sonic Drilling Ltd.", "street_address": "12055 102nd Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3V 3C5", "main_tel": "(604) 834-3048", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "017c3de8-c409-416c-b64e-62fab51d6909", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Unique Water Works", "street_address": "469 4th Avenue", "city": "Kimberley", "province_state": "BC", "postal_code": "V1A 2R7", "main_tel": "(250) 427-6676", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "01b7c476-2157-439e-9b19-007e43b52ede", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Trinity Valley Drilling", "street_address": "Box 5", "city": "Lumby", "province_state": "BC", "postal_code": "V0E 2G0", "main_tel": "(250) 547-9447", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "01bd568f-5972-458d-b553-dc0bc83144ba", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D.A. Smithson & Sons Ltd.", "street_address": "3282 Happy Valley Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9C 2W1", "main_tel": "(250) 478-6937", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "01e5dc80-447b-457e-882b-fde84802c6e4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kamco Installations Ltd.", "street_address": "1347 Mission Flats Road", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 1A9", "main_tel": "(250) 374-3934", "fax_tel": "(250) 374-1913", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "01fedb09-f90c-45da-af49-eeda149ed446", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alkan Water Well Drilling", "street_address": "Box 55", "city": "Tata Creek", "province_state": "BC", "postal_code": "V0B 2H0", "main_tel": "(250) 422-3710", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0212547a-cbca-483d-8e82-9b567460b03a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bridge Lake Electric Ltd.", "street_address": "7556 Mickelson Road", "city": "Lone Butte", "province_state": "BC", "postal_code": "V0K 1X1", "main_tel": "(250) 593-4498", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0253fef6-3961-4907-bc81-2d3d89430f3a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Waterfall Drilling", "street_address": "7000 Beaver Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 6E6", "main_tel": "(250) 963-3406", "fax_tel": "(250) 963-3406", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "02d2428c-1ec8-4ecd-aac6-becd8a9a93c4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Butch's Pump", "street_address": "6729 Hwy. 97 South", "city": "100 Mile House", "province_state": "BC", "postal_code": "V0K 2E2", "main_tel": "(250) 395-1971", "fax_tel": "(250) 395-1997", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "02f1bf67-c826-4921-8984-f5faedba72a8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Westech Drilling Corp", "street_address": "13695 East Beaverly Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5A6", "main_tel": "(250) 964-8748", "fax_tel": "(250) 964-8741", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "03c6dc8f-061c-41b2-8fd9-d5b51b253b82", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wolfgang's Plumbing Services", "street_address": "5258 Highway # 6, PO Box 137", "city": "Winlaw", "province_state": "BC", "postal_code": "V0G 2J0", "main_tel": "(250) 226-7320", "fax_tel": "(250) 226-7320", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "03f1fd07-3663-4b86-b5cc-5f3ce4b2714c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Beck Drilling & Environmental Services Ltd.", "street_address": "160-13511 Vulcan Way", "city": "Richmond", "province_state": "BC", "postal_code": "V6V 1K4", "main_tel": "(604) 214-7007", "fax_tel": "(604) 214-7017", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "04d94639-e00c-4b24-9251-accd1cc3028d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Zenco Hydrovac Excavation Ltd.", "street_address": "4663 Banzer Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 4H2", "main_tel": "(250) 961-8287", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "04ed84c6-b967-40f9-8c06-667f2b1453c0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 962-9041", "fax_tel": "(250) 962-9046", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "056b5bf7-6a34-4ccd-b1d3-21875994a471", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "R. Ayre Enterprises", "street_address": "Box 27084; 772 Goldstream Avenue", "city": "Victoria", "province_state": "BC", "postal_code": "V9B 5S4", "main_tel": "(250) 474-5627", "fax_tel": "(250) 474-5627", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0589bfb0-2212-42c0-8ae7-458b0c004f87", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Glen Frederick Wilson", "street_address": "210 Old Divide Road", "city": "Salt Spring Island", "province_state": "BC", "postal_code": "V8K 2G7", "main_tel": "(250) 539-5132", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "05a28055-a385-495b-b021-38209718823d", "fields": {"create_user": "d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43", "create_date": "2018-09-26T21:50:02.159Z", "update_user": "testuser", "update_date": "2018-09-26T21:50:09.499Z", "name": "Steve's Drilling Inc.", "street_address": "1012 Douglas", "city": "Victoria", "province_state": "BC", "postal_code": "a1a 1a1", "main_tel": "", "fax_tel": "", "website_url": "", "effective_date": "2018-09-26", "expired_date": "2018-09-26", "email": "company@example.com"}}, {"model": "registries.organization", "pk": "060fb1ec-8580-4066-9721-1cc73c1c1606", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kardash Plumbing Ltd.", "street_address": "Box 900", "city": "Golden", "province_state": "BC", "postal_code": "V0A 1H0", "main_tel": "(250) 344-6887", "fax_tel": "(250) 344-2854", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "072e32d8-5164-44a3-bc45-e983bd5bf5b3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sea to Sky Geotechnical Drilling Ltd.", "street_address": "E2-225 North Road", "city": "Coquitlam", "province_state": "BC", "postal_code": "V3K 3V7", "main_tel": "(604) 328-9547", "fax_tel": "(604) 939-5045", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "076df909-204a-4235-9ad6-4bda87dddb19", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Union Pumps", "street_address": "Box 12006 RPO Murrayville; 23191 Fraser Hwy", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2T2", "main_tel": "(604) 533-3727", "fax_tel": "(604) 533-4358", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "08ac2f20-407a-42ec-9f9d-2c466b16eec8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ground Source Drilling Ltd.", "street_address": "948 Laurier Avenue", "city": "Kelowna", "province_state": "BC", "postal_code": "V1Y 6B1", "main_tel": "(250) 762-2519", "fax_tel": "(250) 762-2519", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "08df41c9-9164-41de-80ad-69d718299283", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Anderson Well Drilling (2000) Ltd.", "street_address": "4960 Topland Road", "city": "Courtenay", "province_state": "BC", "postal_code": "V9N 5Y2", "main_tel": "(250) 338-5113", "fax_tel": "(250) 338-5199", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "08e91407-f024-4127-9413-f9a5aa5814dc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "096f0806-1fcc-4140-8e6c-9cb08e95d2b0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Young's Plumbing Ltd.", "street_address": "Box 4539", "city": "Smithers", "province_state": "BC", "postal_code": "V0J 2N0", "main_tel": "(250) 847-5474", "fax_tel": "(250) 847-6074", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0acc2ac6-0fd2-46df-ba89-c28c9fba9375", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Omega Environmental Drilling Ltd.", "street_address": "PO Box 31620", "city": "Pitt Meadows", "province_state": "BC", "postal_code": "V3Y 2W4", "main_tel": "(604) 459-4567", "fax_tel": "(604) 459-5477", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0bca96ff-9a9a-4d56-8303-6dab7af9993e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bowen Plumbing", "street_address": "Box F-11, 1231 Hillcrest Road", "city": "Bowen Island", "province_state": "BC", "postal_code": "V0N 1G0", "main_tel": "(604) 947-2467", "fax_tel": "(604) 947-2534", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0d86aca7-97f8-450f-a9e0-0c21d1578f85", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Pro Drilling Ltd.", "street_address": "PO Box 550", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4J1", "main_tel": "(250) 426-0255", "fax_tel": "(250) 426-0251", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0d8b1858-e8a4-4a42-af1b-e6f7741602ac", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Spooner Electric Ltd.", "street_address": "3079 Squilax-Anglemont Road", "city": "Lee Creek", "province_state": "BC", "postal_code": "V0E 1M4", "main_tel": "(250) 679-3655", "fax_tel": "(250) 679-3655", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0d9f0534-dc48-429c-ba13-04887e0c3d9a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Smithers Well Drilling Ltd.", "street_address": "4760 Nielsen Road", "city": "Smithers", "province_state": "BC", "postal_code": "V0J 2N2", "main_tel": "(250) 847-4033", "fax_tel": "(250) 847-4033", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0dd51008-5afd-408f-9b3c-23179fb0322e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Quality Water Well Service", "street_address": "6659 Topaz Rd", "city": "Vernon", "province_state": "BC", "postal_code": "V1H 1N8", "main_tel": "(250) 540-2085", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0e50f20d-98a9-45e4-bd22-56581838061d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Drilling Services Ltd.", "street_address": "Box 4827", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 2V8", "main_tel": "(250) 392-2241", "fax_tel": "(250) 392-7979", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "0ea9a4e3-7989-43d8-b35a-4bf9c3b4a289", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bertram Drilling Corp.", "street_address": "P.O. Box 100", "city": "Carbon", "province_state": "AB", "postal_code": "T0M 0L0", "main_tel": "(403) 263-8563", "fax_tel": "(403) 572-3461", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "105d817b-b901-432e-810d-48b53f3f957b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sonic Drilling Ltd.", "street_address": "12055 102nd Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3V 3C5", "main_tel": "(604) 588-6080", "fax_tel": "(604) 588-6090", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "106b7c38-f5b2-42ee-8014-96a2a5ce018b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Omega Environmental Drilling Ltd.", "street_address": "PO Box 31620", "city": "Pitt Meadows", "province_state": "BC", "postal_code": "V3Y 2G7", "main_tel": "(604) 459-4567", "fax_tel": "(604) 459-5477", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "10d15c02-d060-4e9a-ba24-687b85120e28", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sea to Sky Geotechnical Drilling Ltd.", "street_address": "E2-225 North Road", "city": "Coquitlam", "province_state": "BC", "postal_code": "V3K 3V7", "main_tel": "(604)328-9568", "fax_tel": "(604) 939-5045", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "11252abd-fea8-42c6-8c85-ebdd184cca7d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ray-Mar Enterprises", "street_address": "Box 2466", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 4R4", "main_tel": "(250) 832-8367", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "116d07c5-a987-4034-9570-3be70d2f3a4c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D.A. Smithson & Sons Ltd.", "street_address": "3282 Happy Valley Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9C 2W1", "main_tel": "(250) 478-6937", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "11b57fac-1c52-49be-84cd-a9082516c221", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "A & H Well Drilling Ltd.", "street_address": "48987 Chilliwack Central Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2P 6H3", "main_tel": "(604) 351-5862", "fax_tel": "(604) 794-5545", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "11c50195-9268-44f4-a8ec-1890be4cbc1c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Ltd.", "street_address": "PO Box 436", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4H9", "main_tel": "(250) 426-5070", "fax_tel": "(250) 426-6997", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1255282c-2872-4b56-b10b-3f8b245df380", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sun Waterwell Testing 546347 BC Ltd.", "street_address": "1581 - 16th Avenue S.E.", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 2M7", "main_tel": "(250) 832-3742", "fax_tel": "(250) 832-3725", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "12c23cfa-e47c-409e-9599-1290516950b1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Johnson's Ground Water Services", "street_address": "2041 Glenwood Drive", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 4G8", "main_tel": "(250) 851-3199", "fax_tel": "(250) 851-3199", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "137eafe9-165b-489f-9600-c52a123938d0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "426518 BC Ltd.", "street_address": "Box 355", "city": "Agassiz", "province_state": "BC", "postal_code": "V0M 1A0", "main_tel": "(604) 796-2988", "fax_tel": "(604) 796-8870", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "13c86a6b-6f8c-459f-9f7e-dc8c15047f39", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Conetec Investigations Ltd.", "street_address": "12140 Vulcan Way", "city": "Richmond", "province_state": "BC", "postal_code": "V6V 1J8", "main_tel": "(604) 273-4311", "fax_tel": "(604) 273-4066", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1590dfe4-f189-49ec-a7f9-4afa59c00b7c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ground Source Drilling Ltd.", "street_address": "Plaza 33, RPO BOX 23037", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 7K7", "main_tel": "(250) 762-2519", "fax_tel": "(250) 762-2589", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "15ebd28d-ad65-41fc-a458-8fc194631297", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Canadian Quality Control Inc.", "street_address": "2924 Piper Rd", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 2H8", "main_tel": null, "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1637ce27-f13c-4214-abda-ed81f4b39ac2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "International Water Supply Ltd.", "street_address": "Box 310", "city": "Barrie", "province_state": "ON", "postal_code": "L4M 4T5", "main_tel": "(705) 733-0111", "fax_tel": "(705) 721-0138", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "16470aa8-5fcf-4c23-b8f2-91d239d28d9f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Owen's Drilling Ltd.", "street_address": "Box 730, 541 Industrial Road", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4J5", "main_tel": "(250) 427-2927", "fax_tel": "(250) 427-7419", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1649006b-34f5-4370-836c-e50f6c496d72", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "18623bcb-beea-4826-8077-d3e9ec6db131", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dan-Gare Drilling Ltd.", "street_address": "Box 722", "city": "Armstrong", "province_state": "BC", "postal_code": "V0E 1B0", "main_tel": "(250) 546-3480", "fax_tel": "(250) 546-3603", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "193cfa3c-b8ff-4ec2-a566-60deb10f3656", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "1025875 BC Ltd.", "street_address": "7172 Toba Street", "city": "Powell River", "province_state": "BC", "postal_code": "V8A 5M7", "main_tel": "(604) 414-7390", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "19cba357-f8bb-41dd-aceb-67355a0a5468", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "K.C. Plumbing & Heathing Ltd", "street_address": "628 Birch St.", "city": "Campbell River", "province_state": "BC", "postal_code": "V9W 2t1", "main_tel": "(250) 287-7088", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1a338628-7455-408d-b625-451c8f93a210", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1b9ede02-8bdd-425a-b4b2-b0da85a1f149", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Double D Drilling Ltd.", "street_address": "Box 766; 5275 Arthur Road", "city": "Terrace", "province_state": "BC", "postal_code": "V8G 4R1", "main_tel": "(250) 635-7877", "fax_tel": "(250) 635-7899", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1bf5cf33-840e-4192-a79a-ad9a9a048ec0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "Unit 150, 4611 Viking Way", "city": "Richmond", "province_state": "BC", "postal_code": "V2V 2K9", "main_tel": "(604) 273-5776", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1c83cd6c-b95b-4f6c-9e66-bb55c0cb77a2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Terra-Therma Drilling Ltd.", "street_address": "24950 100 Avenue", "city": "Maple Ridge", "province_state": "BC", "postal_code": "V2W 1S3", "main_tel": "(604) 616-7241", "fax_tel": "(604) 406-1930", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1eb356f2-d45d-4b83-9215-c2d6f17e62b1", "fields": {"create_user": "testuser", "create_date": "2018-09-26T21:50:12.685Z", "update_user": null, "update_date": "2018-09-26T21:50:16.003Z", "name": "Steve's Drilling Inc.", "street_address": "1012 Douglas", "city": "Drillerville", "province_state": "BC", "postal_code": "a1a 1a1", "main_tel": "", "fax_tel": "", "website_url": "", "effective_date": "2018-09-26", "expired_date": "2018-09-26", "email": null}}, {"model": "registries.organization", "pk": "1fdcbd48-6955-4bf9-a334-40cffc5f961f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "1ffed78e-65ca-4edd-a040-4376ce042154", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5G9", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2058aa3b-d7e6-40c3-8ed5-22917f859fd1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ground Source Drilling Ltd.", "street_address": "948 Laurier Avenue", "city": "Kelowna", "province_state": "BC", "postal_code": "V1Y 6B1", "main_tel": "(250) 762-2519", "fax_tel": "(250) 762-2519", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "21355185-bbac-4ddc-9806-4e69de154c61", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Summer Rain Water Delivery", "street_address": "3153 Whalley Road", "city": "Gabriola Island", "province_state": "BC", "postal_code": "V0R 1X7", "main_tel": "(250) 247-9136", "fax_tel": "(250) 247-0061", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "21c9b72c-b698-4e11-8626-2ef0aba9e4d4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alco Drilling Services Ltd.", "street_address": "20118 52 Avenue", "city": "Langley", "province_state": "BC", "postal_code": "V3A 6R7", "main_tel": "(604) 534-9484", "fax_tel": "(604) 534-4968", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "21d8cf93-6032-477a-b42b-f4d95505582f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alken Basin Drilling Ltd.", "street_address": "Box 47", "city": "Bentley", "province_state": "AB", "postal_code": "T0C 0J0", "main_tel": "(403) 748-4340", "fax_tel": "(403) 748-2880", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "21e98e02-9c45-4afc-89a1-906a777e60bc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dale's Plumbing & Heating", "street_address": "PO Box 3392 Stn Main", "city": "Courtenay", "province_state": "BC", "postal_code": "V9N 5N5", "main_tel": "(250) 703-3798", "fax_tel": "(250) 334-4167", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "22085e8b-8ba6-40d5-a7dc-95d1801509c5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wisharts Water Well Drilling", "street_address": "General Delivery", "city": "Hornby Island", "province_state": "BC", "postal_code": "V0R 1Z0", "main_tel": "(250) 465-5848", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "233fba5d-883c-4c3d-b0ae-dac1d8553c0e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Thompson Drilling", "street_address": "15 - 4775 Woodlane", "city": "W. Windermere", "province_state": "BC", "postal_code": "V0B 2L2", "main_tel": null, "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "234328ee-cbdd-429c-80ee-e8c1aa03bcbd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Arrowsmith Water Management", "street_address": "Box 96", "city": "Errington", "province_state": "BC", "postal_code": "V0R 1V0", "main_tel": "(250) 954-2005", "fax_tel": "(250) 954-2005", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "23c62794-55a1-4e16-8144-ee2235ac46fe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sonic Drilling Ltd.", "street_address": "12055 102nd Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3V 3C5", "main_tel": "(604) 588-6080", "fax_tel": "(604) 588-6090", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "23debd72-265a-4173-a92b-28add7eb508d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GDM Groundwater Inc.", "street_address": "4426 Grizzly Hill Road", "city": "Armstrong", "province_state": "BC", "postal_code": "V0E 1B4", "main_tel": "(250) 558-6812", "fax_tel": "(250) 546-0910", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "25efd251-bcf7-42df-8fbf-d31d9b18a667", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "270fc931-79ee-4af4-9015-e30561ba5a85", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Quesnel Water Wells Ltd.", "street_address": "255 Kerouac Road", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 7A2", "main_tel": "(250) 747-1116", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "27aaca86-02d0-4955-b46c-d689371215a7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "27c92ab2-481d-47c6-8f2f-f426c8d867cb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "27e0af90-be59-479b-be65-a5df55544bad", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fyfe's Well Drilling Ltd.", "street_address": "3331 Alberni Highway", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1Y5", "main_tel": "(250) 752-9358", "fax_tel": "(250) 752-1274", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "27ec4fbd-5b06-46b0-b116-03c0584ca5eb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "28856eaa-91fe-41a9-a412-d312ee1687cd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Heat Smart Geothermal Ltd.", "street_address": "3481 Playle Road", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 7B9", "main_tel": "(250) 426-3312", "fax_tel": "(250) 426-3307", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2895601b-1610-44ee-8af8-b082d498a3ee", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sonic Drilling Ltd.", "street_address": "12055 102nd Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3V 3C5", "main_tel": "(604) 588-6080", "fax_tel": "(604) 588-6090", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "28f79732-7f8f-48d9-8c7d-24330cc73ebf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mayfair Gas & Plumbing", "street_address": "505 4th Avenue", "city": "Prince George", "province_state": "BC", "postal_code": "V2L 3H2", "main_tel": "(250) 562-8590", "fax_tel": "(250) 617-1419", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "292e0ad9-b2d2-4c9b-aba9-e194f00361f1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mayfair Gas, Plumbing and Electrical", "street_address": "505 4th Avenue", "city": "Prince George", "province_state": "BC", "postal_code": "V2L 3H2", "main_tel": "(250) 562-8590", "fax_tel": "(250) 614-1419", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2957b1c0-3093-42e3-8a7e-09e81672cedc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "International Water Supply Ltd.", "street_address": "Box 310", "city": "Barrie", "province_state": "ON", "postal_code": "L4M 4T5", "main_tel": "(705) 733-0111", "fax_tel": "(705) 721-0138", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2a61e133-61e6-4759-8c63-82a66c4fb9d7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Anderson Well Drilling (2000) Ltd.", "street_address": "4960 Topland Road", "city": "Courtenay", "province_state": "BC", "postal_code": "V9N 5Y2", "main_tel": "(250) 338-5113", "fax_tel": "(250) 338-5199", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2bdd99b8-ee59-46bb-bd91-7e433fc6aad7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cullen Water Systems Inc.", "street_address": "349 Benjamin Road", "city": "Victoria", "province_state": "BC", "postal_code": "V8Z 6L9", "main_tel": "(250) 744-3451", "fax_tel": "(250) 479-3886", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2e5077d7-02ba-47b5-a4f6-92898abc8dc1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cariboo Water Wells Ltd.", "street_address": "Box 2265", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 2J8", "main_tel": "(250) 564-2525", "fax_tel": "(250) 563-4372", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2e524a25-bcfa-401b-a3db-86294408fec7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sonic Drilling Ltd.", "street_address": "12055 102nd Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3V 3C5", "main_tel": "(604) 588-6080", "fax_tel": "(604) 588-6080", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2ecf249d-f4c3-4a2e-aa19-5a89cd2f10df", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "#200 - 1649 Cary Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 2C1", "main_tel": "(250) 762-5776", "fax_tel": "(250) 762-0206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "2fa34b8c-1266-4287-98b2-503ca9c6f3da", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "P & P Plumbing Ltd.", "street_address": "1710 Woodbank Road", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9X 1M8", "main_tel": "(250) 722-2312", "fax_tel": "(250) 722-2312", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "32cac478-4f76-43f7-a690-d9af6407b88e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "330ae69d-e9f2-4f03-9058-96ce7df27200", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wild West Drilling", "street_address": "9782 55A Avenue", "city": "Langley", "province_state": "BC", "postal_code": "V3A 3X2", "main_tel": "(604) 760-1903", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "337332e9-d832-4384-be7f-a06b87edee06", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Delta Irrigation Ltd.", "street_address": "444 Chilcotin Road", "city": "Kamloops", "province_state": "BC", "postal_code": "V2H 1G3", "main_tel": "(250) 372-9424", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "33b46656-115e-46ce-a575-02483f71a384", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "33eeaa11-6f8a-4712-b0f7-f939d0dfd22d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fyfe's Enterprises Ltd.", "street_address": "PO Box 64 Squirrel Cove", "city": "Cortes Island", "province_state": "BC", "postal_code": "V0P 1T0", "main_tel": "(250) 287-0278", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "34428b19-a11b-4ebe-b7d7-369b5f815eda", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 962-9041", "fax_tel": "(250) 962-9046", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "35b2e466-eb94-4534-8020-5a8ca207b534", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Frontier Pumps & Installations Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "35f028f2-dc3f-48b6-a3f9-d0c6804eab11", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Osborne Electro Mechanics Ltd", "street_address": "#107-2740 Bridge Street", "city": "Victoria", "province_state": "BC", "postal_code": "V8T 5C5", "main_tel": "(250) 386-3381", "fax_tel": "(250) 386-3382", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "36aba397-45c6-40ac-b0af-2beaee744408", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Tundra Environmental & Geotechnical Drilling Ltd.", "street_address": "Box 207", "city": "Stettler", "province_state": "AB", "postal_code": "T0C 2L0", "main_tel": "(403) 742-6601", "fax_tel": "(403) 742-6651", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3711d8c3-d806-4073-9fde-e198f341ad69", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3728ef5c-2c92-4066-ad29-c3a0370aaa78", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Great Western Pump", "street_address": "5834 Main St.", "city": "Oliver", "province_state": "BC", "postal_code": "V0H 1T9", "main_tel": "(250) 498-8484", "fax_tel": "(250) 498-4686", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "378f8dba-2de5-4463-bc8f-e49aea28bf49", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Albert Kaye & Sons Drilling Ltd.", "street_address": "200 Musgrave Road", "city": "Salt Spring Island", "province_state": "BC", "postal_code": "V8K 1V5", "main_tel": "(250) 653-4757", "fax_tel": "(250) 653-4778", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "37ae4728-dfdb-4c2f-aec4-293fab5da8cd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Anderson Water Services Ltd.", "street_address": "PO Box 6099", "city": "Fort St. John", "province_state": "BC", "postal_code": "V1J 4H6", "main_tel": "(205) 785-2285", "fax_tel": "(250) 785-2299", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "38da4cc9-638f-470b-a68f-23c52481ad99", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Falkland Water Drilling", "street_address": "4165 Colebank Road", "city": "Falkland", "province_state": "BC", "postal_code": "V0E 1W0", "main_tel": "(250) 379-2606", "fax_tel": "(250) 379-2606", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "39143911-e46a-4527-9251-b1055efca181", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "395a446e-3776-4256-907e-73b1439575bf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Stuart McDonald", "street_address": "4331 Mount Lehman Road", "city": "Abbotsford", "province_state": "BC", "postal_code": "V4X 1Y1", "main_tel": "(604) 857-1472", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "39a61f4f-e6e8-4ee8-a24f-8523a3a864d6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3a7f0c17-e81f-40ca-a382-91f75b7305fe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua-Tech Pump Service", "street_address": "663 East Fern Road", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1M4", "main_tel": "(250) 752-0346", "fax_tel": "(250) 752-0346", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Corix Utilities", "street_address": "3175 Turner Street", "city": "Abbotsford", "province_state": "BC", "postal_code": "V2S 7T9", "main_tel": "(604) 850-0441", "fax_tel": "(604) 768-9269", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3cd0dcc2-3b20-4f00-9f77-344e66b371c2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D.A. Smithson & Sons Ltd.", "street_address": "3282 Happy Valley Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9C 2W1", "main_tel": "(250) 478-6937", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3ce0ca6a-a057-4dec-ba92-cf864dbb3867", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Groundforce Drilling Solutions Inc.", "street_address": "650, 910 7th Avenue SW", "city": "Calgary", "province_state": "AB", "postal_code": "T2P 3N8", "main_tel": "(403) 387-8020", "fax_tel": "(403) 514-8050", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3d1a32a1-aa71-4c28-91ea-6e75c64d4261", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Quesnel Pump Supply & Service", "street_address": "1157 Jade Road", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 4E2", "main_tel": "(250) 747-3338", "fax_tel": "(250) 747-3094", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3d29cc29-7c5e-46e3-88f8-a36a46039394", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ketek Group Inc.", "street_address": "20204 - 110 Ave NW", "city": "Edmonton ", "province_state": "AB", "postal_code": "T5S 1X8", "main_tel": "(780) 447-5050", "fax_tel": "(780) 447-4912", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3e633335-9441-4da9-a386-fa641773fdca", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "A Tech Pumps", "street_address": "10535 Christa Place", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5E6", "main_tel": "(250) 963-8788", "fax_tel": "(250) 963-8799", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3ec3c865-2d86-426c-930e-21bf7d298216", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "The Pump House", "street_address": "#5-241 Puntledge Road", "city": "Courtenay", "province_state": "BC", "postal_code": "V9N 3P9", "main_tel": "(250) 338-8737", "fax_tel": "(250) 338-7933", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3ece6234-92f7-4df7-bed1-7fa4ae1d2476", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "North Central Plumbing & Heating Ltd.", "street_address": "Box 665", "city": "Smithers", "province_state": "BC", "postal_code": "V0J 2N0", "main_tel": "(250) 847-3060", "fax_tel": "(250) 847-5255", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3edf07d3-838d-45d0-af9a-51b465295a7c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kel Drilling", "street_address": "Box 25", "city": "Monte Creek", "province_state": "BC", "postal_code": "V0E 2M0", "main_tel": "(250) 372-1606", "fax_tel": "(250) 573-5996", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3f27c808-d02b-4c16-b615-8a0f5b78897b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "International Water Supply Ltd.", "street_address": "317 - 103rd Street", "city": "Saskatoon", "province_state": "SK", "postal_code": "S7N 1Y9", "main_tel": "(306) 373-7070", "fax_tel": "(306) 373-1922", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3f2d2972-d874-449a-8ddb-0a924c03b88a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mainline Systems Inc.", "street_address": "9891 Menzies Street", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2P 6A5", "main_tel": "(604) 793-6071", "fax_tel": "(604) 792-9299", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3f713577-6468-4ef8-b1a7-5aee6f0a2e61", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3feac20a-e7ea-42f8-80f7-250fce61dc13", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cariboo Water Wells Ltd.", "street_address": "Box 2265", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 2J8", "main_tel": "(250) 564-2525", "fax_tel": "(250) 563-4372", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "3ff83bca-12ba-40c1-9c00-e06a43961ca8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Michener Plumbing & Pumps", "street_address": "736 Isabella Point Road", "city": "Salt Spring Island", "province_state": "BC", "postal_code": "V8K 1V2", "main_tel": "(250) 653-4120", "fax_tel": "(250) 653-4120", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "40238aff-f887-4e4d-96d2-d08a6386a6d5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Corley Drilling Ltd.", "street_address": "7286 Black Road", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 2W5", "main_tel": "(250) 804-2632", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "421aaac5-8de3-495c-90c7-7ee009fc73ed", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "R. Muth & Sons Ltd.", "street_address": "23985 Lougheed Highway", "city": "Maple Ridge", "province_state": "BC", "postal_code": "V2W 1W1", "main_tel": "(604) 467-5571", "fax_tel": "(604) 467-5152", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "425b0658-bd67-4ffe-9ac7-ee5515cb649f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "PSI Pump Systems Inc.", "street_address": "1843 Lynrick Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1P 1G1", "main_tel": "(250) 467-9186", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4287eb48-5a40-4ce1-a139-dab36bdbef27", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fyfe's Well Drilling Ltd.", "street_address": "3331 Alberni Highway", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1Y5", "main_tel": "(250) 752-9358", "fax_tel": "(250) 752-1274", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "42cefcb0-48d7-4708-8e5e-11ced93365af", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "#200 - 1649 Cary Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 2C1", "main_tel": "(250) 762-5776", "fax_tel": "(250) 762-0206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4316689f-411d-4b0a-be83-79b28b77ac0c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Paycore Enterprises Ltd.", "street_address": "PO Box 743", "city": "McBride", "province_state": "BC", "postal_code": "V0J 2E0", "main_tel": "(250) 968-4452", "fax_tel": "(250) 968-4451", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4488c2f4-d4f5-4d2e-8fec-21ee516b0998", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Grassroots Drilling Inc.", "street_address": "Po Box 2498", "city": "Cowichan Bay", "province_state": "BC", "postal_code": "V0R 1N0", "main_tel": "(250) 412-9683", "fax_tel": "(250) 389-1554", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "44ca2c30-820c-4944-8345-7ccce1f3793c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Beck Drilling & Environmental Services Ltd.", "street_address": "3334 Sexsmith Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 7S5", "main_tel": "(250) 860-6664", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "44f82d85-b3ce-4281-99ac-24fda6e391af", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Columbia Water Wells (1986) Ltd.", "street_address": "25188 - 52nd. Avenue", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 1G2", "main_tel": "(604) 857-0008", "fax_tel": "(604) 856-3294", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "45194aed-b288-4725-87c5-33e87e41f153", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Thorman Drilling Ltd.", "street_address": "Box 986, 111 Cottonwood Road", "city": "Nelson", "province_state": "BC", "postal_code": "V1L 6A5", "main_tel": "(250) 354-1333", "fax_tel": "(250) 354-1331", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "45618e5c-e5ad-4226-89c3-6d4aa5174f99", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "456498be-243b-48f7-8845-103b8d9a82a8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bud's Water Wells Ltd.", "street_address": "Box 3276", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 6B8", "main_tel": "(250) 573-3000", "fax_tel": "(250) 679-8423", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "457446e7-91da-4eaa-a427-955d1a6c773a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Nor-West Drilling (1998) Ltd.", "street_address": "4501-232 Street", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2S2", "main_tel": "(604) 534-4108", "fax_tel": "(604) 534-3389", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "45f64219-674a-42ce-92f8-e2ef29531434", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Barriere Backhoe Service", "street_address": "Box 82", "city": "Barriere", "province_state": "BC", "postal_code": "V0E 1E0", "main_tel": "(250) 672-9451", "fax_tel": "(250) 672-9501", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "46ddbe83-10f3-478f-8c7b-db4b2864e6d5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alken Basin Drilling Ltd.", "street_address": "Box 47", "city": "Bentley", "province_state": "AB", "postal_code": "T0C 0J0", "main_tel": "(403) 748-4340", "fax_tel": "(403) 748-2880", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "47284780-bd4b-4b12-ae47-b148d1e27574", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "B.C. Aquifer Testing & Equipment", "street_address": "886 Denford Crescent", "city": "Victoria", "province_state": "BC", "postal_code": "V8X 4N1", "main_tel": "(250) 748-4041", "fax_tel": "(250) 748-5775", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "48b95e5f-dc39-4b82-bbfd-225b22eb3140", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5G9", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9054", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4962dc3b-9fd1-4127-ad65-4324f00ff876", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.C. Plumbing & Heating Ltd.", "street_address": "2960 McDonald Road", "city": "Gabriola Island", "province_state": "BC", "postal_code": "V0R 1X7", "main_tel": "(250) 247-7574", "fax_tel": "(250) 247-7574", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4ada55ef-fd76-4ef1-ab2b-f5c66a9d8387", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Weston Water Wells Ltd.", "street_address": "7779 Highway 24", "city": "Lone Butte", "province_state": "BC", "postal_code": "V0K 1X2", "main_tel": "(250) 593-4307", "fax_tel": "(250) 593-4307", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4aefc2c3-f875-42d1-b873-4b8ccb0b825f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "John Reed Plumbing", "street_address": "1844 Geraldine Road", "city": "Courtenay", "province_state": "BC", "postal_code": "V9J 1Y3", "main_tel": "(250) 339-6098", "fax_tel": "(250) 339-4667", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4b66126c-3070-47dd-bfb5-e9543a1481d6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kodiak Drilling Ltd.", "street_address": "402 Elm Street", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 3W9", "main_tel": "(250) 747-4648", "fax_tel": "(250) 747-3337", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4c98c66f-a5b0-488d-bc7c-d1cedb2df5be", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dynamic Drilling Inc.", "street_address": "E2 - 225 North Road", "city": "Coquitlam", "province_state": "BC", "postal_code": "V3K 3V7", "main_tel": "(604) 298-5943", "fax_tel": "(604) 936-7377", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4dee2bb3-f44d-4dfa-ae6f-0c0dd48089c7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4ed337ef-bb48-4033-8729-d498fdc88773", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "BWCO", "street_address": "RR#1, Site 3, Comp 29", "city": "Galiano Island", "province_state": "BC", "postal_code": "V0N 1P0", "main_tel": "(250) 539-5844", "fax_tel": "(250) 539-5843", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "4ed57b23-0b53-4353-8cf7-d08a17b65b50", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Klimabuild Design & Construction Ltd.", "street_address": "1605 Johnstone Creek West Road", "city": "Rock Creek", "province_state": "BC", "postal_code": "V0H 1Y0", "main_tel": "(250) 446-2805", "fax_tel": "(250) 446-2805", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "501882cf-200b-49c6-a503-279d771abb30", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "South Island Water Services", "street_address": "Box 299", "city": "Shawnigan Lake", "province_state": "BC", "postal_code": "V0R 2W0", "main_tel": "(250) 743-7931", "fax_tel": "(250) 743-7932", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "510465f3-0e35-499d-9b57-6e60d4066a7d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "RGB Plumbing Specialties", "street_address": "418 Gillis Avenue", "city": "Sicamous", "province_state": "BC", "postal_code": "V0E 2V1", "main_tel": "(250) 517-8311", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "51c9816b-a0d8-452c-aa51-728f20765ee3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "RL7 Mechanical Ltd.", "street_address": "1065 Murray Drive", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 4K8", "main_tel": "(250) 392-1742", "fax_tel": "(250) 392-6335", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5298ce6e-ae42-46ce-8ba1-3d2f39e828b6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "EDS Pumps & Water Treatment Ltd.", "street_address": "23184 Fraser Highway", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2V1", "main_tel": "(604) 534-1115", "fax_tel": "(604) 534-5522", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "52f87741-da1e-4fdf-9870-8153e30364c7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "IH&S Water Management Systems", "street_address": "413 Richards Street", "city": "Nelson", "province_state": "BC", "postal_code": "V1L 5J9", "main_tel": "(250) 352-9668", "fax_tel": "(250) 352-5060", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5320ff29-defd-41bb-bbc2-e7ba5bdb04c3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Schnieder Services Ltd.", "street_address": "Box 2033", "city": "Vanderhoof", "province_state": "BC", "postal_code": "V0J 3A0", "main_tel": "(250) 567-3010", "fax_tel": "(250) 567-2595", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "53586668-d586-44d2-8ea1-82ea79b4a596", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Highlands Irrigation Ltd.", "street_address": "1105 South Lakeside Drive", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 3A7", "main_tel": "(250) 392-2321", "fax_tel": "(250) 392-2377", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "537734d8-624a-4424-9adf-2ba271f71e6e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J's Pumps & Plumbing", "street_address": "4050 - 50th Street NW", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 3A7", "main_tel": "(250) 832-7922", "fax_tel": "(250) 832-7699", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "53cf846f-8c62-4804-9dd7-200e5aa9c2a2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Boart Longyear", "street_address": "4025 96 Avenue SE", "city": "Calgary", "province_state": "AB", "postal_code": "T2C 4T7", "main_tel": "(403) 287 1460", "fax_tel": "(403) 243 0580", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5447581c-6679-48f1-ade6-06b52a816e16", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dan-Gare Drilling Ltd.", "street_address": "Box 722", "city": "Armstrong", "province_state": "BC", "postal_code": "V0E 1B0", "main_tel": "(250) 546-3480", "fax_tel": "(250) 546-3603", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "554e3de3-fbaa-4559-a848-7ef3c2ad4cbd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5G9", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5583c240-5617-44da-92fd-aba90efbc81b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "G.R. Martin Contracting Ltd.", "street_address": "629 Lafortune Road", "city": "Cobble Hill", "province_state": "BC", "postal_code": "V0R 1L0", "main_tel": "(250) 709-1872", "fax_tel": "(250) 743-9065", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "55efd1c4-515e-4cc1-ae24-57ceaf4ae6b3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Okanagan Kootenay Well Drilling", "street_address": "RR#1, 6465 Sidley Mtn Road", "city": "Bridesville", "province_state": "BC", "postal_code": "V0H 1B0", "main_tel": "(250) 446-2195", "fax_tel": "(250) 446-2194", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "576a9ca8-3a12-47c1-b800-1e4947bd626a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Polaris Plumbing", "street_address": "Box 466", "city": "Salt Spring Island", "province_state": "BC", "postal_code": "V8K 2W1", "main_tel": "(250) 537-4997", "fax_tel": "(250) 537-4956", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "57847399-9f52-4e46-a334-9438e2acd7a3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Conetec Investigations Ltd.", "street_address": "12140 Vulcan Way", "city": "Richmond", "province_state": "BC", "postal_code": "V6V 1J8", "main_tel": "(604) 273-4311", "fax_tel": "(604) 273-4066", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "57d27055-d45c-461c-8da4-8f1fea8d0559", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "585025c5-82fd-4a36-aaf7-827c67e1ee04", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Lillooet Contracting Ltd.", "street_address": "Box 1356", "city": "Lillooet", "province_state": "BC", "postal_code": "V0K 1V0", "main_tel": "(250) 256-7669", "fax_tel": "(250) 256-4989", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "594f5318-fa52-4415-8d55-f2f273d46264", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bernard Pumps", "street_address": "6157 East Purdue Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 6K1", "main_tel": "(250) 964-6111", "fax_tel": "(250) 964-6111", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5a21d9cb-c3bc-4805-9764-9a204561d768", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ted's Plumbing & Heating Inc.", "street_address": "23008 Fraser Highway", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2V1", "main_tel": "(604) 888-9625", "fax_tel": "(604) 514-1141", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5a4620ab-a82e-4e9b-bd4f-eebcde93b88a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Camfield Drilling Services Ltd.", "street_address": "1280 - 4th Ave. South", "city": "Lethbridge", "province_state": "AB", "postal_code": "T1J 0R2", "main_tel": "(403) 328-7059", "fax_tel": "(403) 320-5177", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5af3bfa0-3ea4-4d14-a503-14d28e9eb0fe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "9205 Chilcotin Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5V3", "main_tel": "(250) 963-9429", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5b99df30-14c8-43a8-84ac-5208e2bb8c13", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "General Pump & Machine Inc.", "street_address": "9658 Woodlynn Road", "city": "Powell River", "province_state": "BC", "postal_code": "V8A 0J6", "main_tel": "(604) 487-0003", "fax_tel": "(604) 487-0009", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5bb37f7c-f8af-41d5-83bb-017c402b62bc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "International Water Supply Ltd.", "street_address": "317 - 103rd Street E", "city": "Saskatoon", "province_state": "SK", "postal_code": "S7N 1Y9", "main_tel": "(306) 373-7070", "fax_tel": "(306) 373-1922", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5be80833-761f-455b-87e6-ecd3513deb7c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Red Williams Well Drilling Ltd.", "street_address": "980 Pratt Road", "city": "Qualicum", "province_state": "BC", "postal_code": "V9K 1W5", "main_tel": "(250) 228-5553", "fax_tel": "(250) 248-4555", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5c3862d4-3c33-4e3f-b5de-76c4ce61dfaa", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Scotty's Plumbing", "street_address": "1445 Hess Road", "city": "Gabriola Island", "province_state": "BC", "postal_code": "V0R 1X6", "main_tel": "(250) 247-9588", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5c834961-2a5e-46a7-a408-d958471b363b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Schibli Drilling", "street_address": "PO Box 725 17 Blue Springs Road", "city": "Lumby", "province_state": "BC", "postal_code": "V0E 2G0", "main_tel": "(250) 547-6845", "fax_tel": "(250) 547-6880", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5dc5a813-c8ac-4396-8826-6db1f0a73874", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Clear Blue Water Systems Ltd.", "street_address": "PO Box 148, 13076-256 Road", "city": "Montney", "province_state": "BC", "postal_code": "V0C 1Y0", "main_tel": "(250) 827-3737", "fax_tel": "(250) 827-3701", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5e1e8f97-07da-4064-9bd2-6b9d65adb47c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Custom Pump Services", "street_address": "3988 Richardson Road", "city": "Tappen", "province_state": "BC", "postal_code": "V0E 2X1", "main_tel": "(250) 833-7973", "fax_tel": "(250) 835-4856", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5e375c99-81af-4095-965b-8e40f8608451", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "B.K. Woods & Water Supplies Ltd.", "street_address": "9400 Cariboo Highway", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 6E1", "main_tel": "(250) 963-1411", "fax_tel": "(250) 963-3236", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5f08c5b7-f3d2-453c-9ae6-765e020495f4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Corix Water Products", "street_address": "420 Chilcotin Road", "city": "Kamloops", "province_state": "BC", "postal_code": "V2H 1G3", "main_tel": "(250) 374-7909", "fax_tel": "(250) 374-7950", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cariboo Water Wells Ltd.", "street_address": "Box 2265", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 2J8", "main_tel": "(250) 564-2525", "fax_tel": "(250) 563-4372", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "60146864-1863-47d9-bf1a-55af7e045cf2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Willow Hill Enterprises", "street_address": "8355 Outlook Road", "city": "Grand Forks", "province_state": "BC", "postal_code": "V0H 1H2", "main_tel": "(250) 442-2392", "fax_tel": "(250) 442-2392", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "611accf3-df0d-4a1a-a812-e9b269ce45e1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Downrite Drilling Ltd.", "street_address": "4346 Wilson Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2R 5C6", "main_tel": "(604) 823-4086", "fax_tel": "(604) 823-4086", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "62ca0263-4d05-4de3-9cf8-58232531d05f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Okanagan Well & Pump Service Inc.", "street_address": "3695 Sage Avenue", "city": "Armstrong", "province_state": "BC", "postal_code": "V0E 1B2", "main_tel": "(250) 550-5553", "fax_tel": "(250) 546-2663", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Field Drilling Contractors Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "632d6188-6220-49a5-b5a9-5f8bb8f22b36", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "1-740 Waddington Drive", "city": "Vernon", "province_state": "BC", "postal_code": "V1T 9E9", "main_tel": "(250) 549-2393", "fax_tel": "(250) 549-3387", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "640fff69-4895-45cb-8b63-0d2a6b798f71", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Terratherma Geothermal Heating Ltd.", "street_address": "Box 34", "city": "Nelson", "province_state": "BC", "postal_code": "V1L 5P7", "main_tel": "(250) 354-0453", "fax_tel": "(250) 354-0454", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "64b55fce-6a44-42ba-930e-29f1c56f0f1d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Central Ltd Partnership", "street_address": "Box 3202 1250 Dalhousie Dr.", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 6B8", "main_tel": "(250) 573-5252", "fax_tel": "(250) 573-5235", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "64d5ab3e-0e3a-46cd-9b08-411288aab043", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "ABC Water Systems Ltd", "street_address": "9 - 2180 South Wellington Road", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9X 1V8", "main_tel": "(250) 753-3333", "fax_tel": "(250) 753-3364", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "64d5e13c-0777-4929-b6e5-674ce4985147", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "64e2223d-7a0c-44fb-b028-1a79f2595fcb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Donald Abercrombie Well Drilling", "street_address": "Box 152", "city": "150 Mile House", "province_state": "BC", "postal_code": "V0K 2G0", "main_tel": "(250) 296-4463", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "658b905b-ccb7-438b-9f58-012f565e60fe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Earth Drilling Co. Ltd.", "street_address": "P.O Box 1155 2959 Prospector Rd", "city": "150 Mile House", "province_state": "BC", "postal_code": "V0K2G0", "main_tel": "(778) 554-9987", "fax_tel": "(587) 296-3544", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "65cecc1f-c8ed-4104-9db3-053dc623076b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Robbins Drilling and Pump Ltd", "street_address": "Box 80, 1400 Green Lake Road", "city": "Okanagan Falls", "province_state": "BC", "postal_code": "V0H 1R0", "main_tel": "(250) 497-5303", "fax_tel": "(250) 497-5303", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6611bef2-d8b4-4d3e-8d6f-f4d1cff59871", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Reliance Well & Water Systems", "street_address": "9828 Pelly Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2P 6H4", "main_tel": null, "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "66dd54d3-0412-4eb3-8763-705859b7fdad", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "67a225cc-2442-4897-a8d9-d162bb7c969c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D. Windecker Water Wells", "street_address": "Box 119, 7536 Westholme Road", "city": "Westholme", "province_state": "BC", "postal_code": "V0R 3C0", "main_tel": "(250) 247-9391", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "67b01c11-e040-42ca-82b5-1120f79593bf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fraser Valley Pumps and Gas", "street_address": "1900 Eagle Street", "city": "Abbotsford", "province_state": "BC", "postal_code": "V2S 3A6", "main_tel": "(604) 309-1721", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "68e94fab-ed2c-459f-b441-eae7bc59475f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "692a9c77-c8b4-4861-b7cf-943494d2969f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Pro Star Mechanical Technologies Ltd.", "street_address": "206-847 Dunsmuir Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9A 0A5", "main_tel": "(250) 383-4558", "fax_tel": "(250) 383-6990", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Baker Plumbing & Renovations", "street_address": "1725 Westlock Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 5N8", "main_tel": "(250) 748-3890", "fax_tel": "(250) 748-0520", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6addafe1-b8a9-46db-9cc3-11b1beadc3bb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Brent Marsden Contractor", "street_address": "4715 Scarff Road", "city": "North Pender Island", "province_state": "BC", "postal_code": "V0N 2M1", "main_tel": "(250) 629-6432", "fax_tel": "(250) 629-6452", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6bf6a0a6-fe0f-4969-9006-c9c5aca5c077", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Prospect Creek Resource Management", "street_address": "1149 Hillcrest Manor Estates", "city": "Strathmore", "province_state": "AB", "postal_code": "T1P 0B9", "main_tel": "(403) 934-1856", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6cc9e8c0-5058-44ac-aa18-6da48f38e49c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Precision Service & Pumps Inc.", "street_address": "1334 Riverside Road", "city": "Abotsford", "province_state": "BC", "postal_code": "V2S 8J2", "main_tel": "(604) 850-7010", "fax_tel": "(604) 850-9666", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6e1ada47-6cff-4e2f-b450-e19ee070a649", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kalicum Drilling Ltd.", "street_address": "Box 355", "city": "Cassidy", "province_state": "BC", "postal_code": "V0R 1H0", "main_tel": "(250) 245-1220", "fax_tel": "(250) 245-1290", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6efb7f98-cb94-463e-b9b7-40e702d7eb60", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Daniel Sprinkling Plumbing & Heating Ltd", "street_address": "3211 Grafton Avenue", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1W7", "main_tel": "(250) 752-6847", "fax_tel": "(250) 752-1273", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6f88d1a4-55ac-4444-9c87-1452c6f0d3d8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Murphy and Wakefield Limited", "street_address": "Unit U 31087 Peardonville Road", "city": "Abbotsford", "province_state": "BC", "postal_code": "V2T 6K4", "main_tel": "(604) 853-3321", "fax_tel": "(604) 853-3150", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "6fb236d3-fde0-4038-9b40-dd0a78370653", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "70d3f2b6-d38a-4dfd-b900-2c6c5ea4a566", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Columbia Water Wells (1986) Ltd.", "street_address": "Po. Box 189 Stn. Aldergrove", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2T8", "main_tel": "(604) 857-0008", "fax_tel": "(604) 856-3294", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "71b37327-7048-49d0-b97c-234f62e8a9b7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Perry's Well Drilling", "street_address": "1708 197A Street", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 1K2", "main_tel": "(604) 534-1347", "fax_tel": "(604) 534-1358", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "721f3ef1-578a-4e21-b8ee-32b77159c487", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Jayco Plumbing Ltd.", "street_address": "Box 1955", "city": "100 Mile House", "province_state": "BC", "postal_code": "V0K 2E0", "main_tel": "(250) 395-3488", "fax_tel": "(250) 395-4710", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "72573009-a6f6-4eb1-a6ad-897ee35333cc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Stooksberry Drilling & Pumps", "street_address": "469 Nicholson Street South", "city": "Prince George", "province_state": "BC", "postal_code": "V2M 3L8", "main_tel": "(250) 562-9836", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "726ba8ab-56b4-4e8b-a1af-51ac993e41c6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "730ac841-305e-4965-86da-b6b718378d0c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Misek Bros. Drilling", "street_address": "3805 Hillbank Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6M1", "main_tel": "(250) 743-9050", "fax_tel": "(250) 743-9027", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "73a38b1f-d0d7-4acc-98f7-d6a7ae67f117", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uncharted Drilling Solutions INC.", "street_address": "5488 Graves Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 5A6", "main_tel": "(250)963-1474", "fax_tel": "(250)963-6646", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "743f6b1a-af52-4b40-b296-35f7522fdd9b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Okanagan Waterwell Drilling Inc", "street_address": "#12 - 2095 Boucherie Road", "city": "Westbank", "province_state": "BC", "postal_code": "V4T 1Z4", "main_tel": "(250) 212-9698", "fax_tel": "(250) 754-0061", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "749c59f2-a04e-4417-a814-36c433f3f8b5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4944 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "74c14fca-770d-4b9c-b338-69a4be9038c8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kicking Horse Water Services", "street_address": "PO Box 4039, 895 McAlister Road", "city": "Golden", "province_state": "BC", "postal_code": "V0A 1A0", "main_tel": "(250) 344-1272", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "750ef95d-0a1f-471f-bd5e-cfff6e04a04d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ellen Eyre", "street_address": "1114 - 14th Street", "city": "Canmore", "province_state": "AB", "postal_code": "T1W 1V7", "main_tel": "(403) 477-3309", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "754665c7-c07d-42fe-a759-763d026c309e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "R & S Drilling Ltd", "street_address": "2360 Baily Road", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 5B9", "main_tel": "(250) 989-4473", "fax_tel": "(250) 989-4473", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "757184ec-f5d6-49eb-973f-2ee24ed3a452", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wayne Johnson Electric", "street_address": "Box 45", "city": "Jaffray", "province_state": "BC", "postal_code": "V0B 1T0", "main_tel": "(250) 429-3438", "fax_tel": "(250) 429-3022", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "75a144d3-196f-49d7-83e0-f00e57a0117b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "AJ Pumps & Water Treatment Ltd.", "street_address": "46170 Airport Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2P 1A5", "main_tel": "(604) 795-2568", "fax_tel": "(604) 795-2561", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "76f7a428-169b-4abd-9c9c-725cdc8e53dc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Streamline Plumbing Ltd.", "street_address": "1650 Fulford Ganges Road", "city": "Saltspring Island", "province_state": "BC", "postal_code": "V8K 2A8", "main_tel": "(250) 653-2026", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "779b8ba7-3bcc-47d6-914f-1dd54e2b36c9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alpine Plumbing & Heating", "street_address": "Box 2984", "city": "Smithers", "province_state": "BC", "postal_code": "V0J 2N0", "main_tel": "(250) 847-2820", "fax_tel": "(250) 847-4250", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7a000aa1-1787-4a49-8fec-78f6cc398a3c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Insitu Contractors Inc.", "street_address": "150 Stevenson Street, South", "city": "Guelph", "province_state": "ON", "postal_code": "N1E 5N7", "main_tel": "(519) 763-0700", "fax_tel": "(519) 763-6684", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7a319709-f9d0-4480-9bf7-1c90b327d3f2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Red Williams Well Drilling Ltd.", "street_address": "980 Pratt Road", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1W5", "main_tel": "(250) 951-0556", "fax_tel": "(250) 248-4555", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7ac88783-73c9-4590-8359-5937c1ca9b62", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua North Plumbing Ltd.", "street_address": "Box 836", "city": "Smithers", "province_state": "BC", "postal_code": "V0J 2N0", "main_tel": "(250) 847-3858", "fax_tel": "(250) 847-3932", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7af636c4-093f-4a61-af58-3a3bc8ddc62c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Downrite Drilling Ltd.", "street_address": "4346 Wilson Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2R 5C6", "main_tel": "(604) 823-4086", "fax_tel": "(604) 823-4086", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7b1817ac-466b-4d64-98ff-01c49db0ef43", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kamloops Water Wells", "street_address": "623 Holt Street", "city": "Kamloops", "province_state": "BC", "postal_code": "V2B 5G2", "main_tel": "(250) 376-9483", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7b3a5273-376b-424f-87c4-70292099e48e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "McCormick Heating & Plumbing Ltd.", "street_address": "Box 735", "city": "Nelson", "province_state": "BC", "postal_code": "V1L 5R4", "main_tel": "(250) 354-4223", "fax_tel": "(250) 354-1454", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7b722345-5c9c-48a7-bdbc-062b6468cb7f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Suretech Systems & Solutions Inc.", "street_address": "41-4305 LakeIse Avenue", "city": "Terrace", "province_state": "BC", "postal_code": "V8G 1N5", "main_tel": "(250) 635-7410", "fax_tel": "(250) 635-5551", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7cb4fc6c-fb9f-4120-8376-b4c5b67f4d4c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7dd039bc-cdd3-449f-a4f0-67066403f645", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Independent Pump & Mechanical Ltd.", "street_address": "PO Box 390", "city": "Shawnigan Lake", "province_state": "BC", "postal_code": "V0R 2W0", "main_tel": "(250) 743-3075", "fax_tel": "(250) 743-3075", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7de7653f-5c56-45d5-9fab-aead864d5dbc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Full Metal Drilling Inc.", "street_address": "5215 16th Avenue", "city": "Edson", "province_state": "AB", "postal_code": "T7E 1H1", "main_tel": "(780) 728-7148", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7de950f0-ef33-4b1c-9491-326e2b020914", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7e0069c2-f36e-463a-8246-8f1d3e228445", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "DD & D Drillers Ltd. (Triple D Drillers)", "street_address": "3886 Balsum Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 1Z8", "main_tel": "(250) 962-9030", "fax_tel": "(250) 962-9030", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7eb426d3-c956-49c6-8bbb-03b25bb4cda9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Hillside Pumps & Water Treatment Ltd.", "street_address": "1613A South Lakeside Drive", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 3A8", "main_tel": "(250) 392-7876", "fax_tel": "(250) 392-6290", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ingram Well & Pump Service", "street_address": "PO Box 4520", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 3J8", "main_tel": "(250) 249-5292", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7f695553-79e1-4e0b-96ee-2a4d028306c5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Queen Charlotte Well Drilling", "street_address": "Box 1579", "city": "Queen Charlotte", "province_state": "BC", "postal_code": "V0T 1S1", "main_tel": "(250) 559-4586", "fax_tel": "(250) 559-4586", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7fb4208f-2797-443c-a9df-ad85e3d62320", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Earthsmart Solutions Ltd.", "street_address": "4165 Eld Road", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1V4", "main_tel": "(250) 586-5555", "fax_tel": "(250) 586-5555", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "7fcafbbd-52b6-496b-802e-deedfb9ed114", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Morrill's Water Well Drilling Ltd.", "street_address": "Site 422, Box 2, Comp 3, RR2", "city": "Drayton Valley", "province_state": "AB", "postal_code": "T7A 2A2", "main_tel": "(780) 542-5089", "fax_tel": "(780)-542-7696", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "806c6739-24aa-4715-8315-fb898ca13338", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Clean Water Treatment Ltd.", "street_address": "460 Austad Lane", "city": "Trail", "province_state": "BC", "postal_code": "V1R 3K6", "main_tel": "(250) 368-9402", "fax_tel": "(250) 368-9407", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8177af22-939b-4109-9505-715973bda4e4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "81b2e3d0-913a-4826-8ab9-8b4cca96bdd0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Pumpco", "street_address": "12196 210th Street", "city": "Maple Ridge", "province_state": "BC", "postal_code": "V2X 8C7", "main_tel": "(604) 715-8440", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "82b57f3c-a644-4bd5-acf1-1596ac7fdb46", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "832b7c3c-3114-4c08-bdce-24a4b4bd7357", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Maci Service & Repair", "street_address": "1090 Smithers Road", "city": "Parksville", "province_state": "BC", "postal_code": "V9P 2C2", "main_tel": "(250) 248-4423", "fax_tel": "(250) 248-4471", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "832f2fe0-fc16-4a1e-977f-089c7a0288cf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Gulf Island Pumps", "street_address": "RR#1, Site 1, Comp 22", "city": "Galiano Island", "province_state": "BC", "postal_code": "V0N 1P0", "main_tel": "(250) 539-2222", "fax_tel": "(250) 539-2222", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "83bfd150-3e6b-48d5-b91a-5d9c0a892581", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Advanced Industrial Group Inc.", "street_address": "650 - 3rd Street", "city": "Prince George", "province_state": "BC", "postal_code": "V2L 3C4", "main_tel": "(250) 564-7599", "fax_tel": "(250) 564-1246", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "843cf620-2e30-4c30-8b76-736f042b354b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GPM Water Services", "street_address": "835 Sherbrooke Avenue", "city": "Kamloops", "province_state": "BC", "postal_code": "V2B 1V9", "main_tel": "(250) 376-9266", "fax_tel": "(250) 376-9266", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "845e5120-8ac5-4b9b-a988-faa55ccc774d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Insitu Contractors Inc.", "street_address": "48 Dawson Road", "city": "Guelph", "province_state": "ON", "postal_code": "N1H 5V1", "main_tel": "(519) 763-0700", "fax_tel": "(519) 763-6684", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "85057b7c-410a-4312-ab17-d4c68e32e0b6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "R. Steel Mechanical Ltd.", "street_address": "2974 208 Street", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2C3", "main_tel": "(778) 878-5708", "fax_tel": "(604) 888-4536", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "854e79d2-abaf-4d69-b1ac-17fe992539f5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8556ca58-3be5-4a21-97a4-31ab515a45be", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Hartl Water Well Drilling & Service Ltd.", "street_address": "5420 RR 275", "city": "Sturgeon County", "province_state": "AB", "postal_code": "T8R 1Y9", "main_tel": "(780) 999-6257", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "85b4d949-a72a-4eb1-8683-11e5ee2c9d01", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geoenergy Solutions Inc.", "street_address": "10472 Islington Avenue, Unit 1", "city": "Kleinburg", "province_state": "ON", "postal_code": "l0J 1C0", "main_tel": "(905) 951-6723", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "867b441f-a916-4156-b89d-ade89b4e7914", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "On Track Drilling Inc.", "street_address": "23795 Dewdney Trunk Rd", "city": "Maple Ridge", "province_state": "BC", "postal_code": "V4R 1W2", "main_tel": "(604) 523-1200", "fax_tel": "(604) 523-1201", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "869832f5-3e75-4dde-b872-8c56b537bb6d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cowichan Valley Water Wells", "street_address": "#1-2955 Jacob Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W4", "main_tel": "(250) 748-6749", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "86a95cfa-217b-419a-9528-24c62148979c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Langley Water Wells Ltd.", "street_address": "21416 32nd. Avenue", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2E7", "main_tel": "(604) 534-5675", "fax_tel": "(604) 534-9762", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "86bf5e90-c420-4d8d-9576-f2e3778ed764", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Weatherall Service Ltd.", "street_address": "902-N 9th Street", "city": "Golden", "province_state": "BC", "postal_code": "V0A 1H2", "main_tel": "(250) 344-2962", "fax_tel": "(250) 344-7372", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Anderson Water Services Ltd.", "street_address": "PO Box 6099", "city": "Fort St. John", "province_state": "BC", "postal_code": "V1J 4H6", "main_tel": "(250) 785-2285", "fax_tel": "(250) 785-2299", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "871b93eb-24cf-4951-8ce1-a431b8215959", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Myram Drilling", "street_address": "Box 146", "city": "Cremona", "province_state": "AB", "postal_code": "T0M 0R0", "main_tel": "(403) 637-2113", "fax_tel": "(403) 637-8698", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "87907bae-06ec-4cf7-b570-0781457f8fcb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Owen's Drilling Ltd.", "street_address": "Box 730, 541 Industrial Road", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4J5", "main_tel": "(250) 426-2455", "fax_tel": "(250) 427-7419", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "87c27fb7-3e84-48f1-8d44-a33d2e48f9fe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Paul's Pump and Treatment", "street_address": "4132 St. Catherines Drive", "city": "Cobble Hill", "province_state": "BC", "postal_code": "V0R 1L3", "main_tel": "(250) 510-7006", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "87fbaa49-97c9-49bd-b7a8-ca2de6f4db54", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D.J. Roberts", "street_address": "44969 Watson Road", "city": "Sardis", "province_state": "BC", "postal_code": "V2R 2Y3", "main_tel": "(604) 316-0925", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "88e4ee3f-3a41-4cb5-bc63-10f3e27401f5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Abacus Drilling", "street_address": "Box 304", "city": "Cobble Hill", "province_state": "BC", "postal_code": "V0R 1L0", "main_tel": "(250) 743-1301", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "89a6f386-7e5a-4a94-b570-edcc4c6701c6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "PIRT Pump & Pipe", "street_address": "Box 369", "city": "Burns Lake", "province_state": "BC", "postal_code": "V0J 1E0", "main_tel": "(250) 692-6019", "fax_tel": "(250) 692-3012", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bud Henning Drilling & Consulting", "street_address": "1321 Ellison Road", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 5M8", "main_tel": "(250) 747-8629", "fax_tel": "(205) 747-8675", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8bbc1420-1347-4de3-bd7a-4ac61bdbd01f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Central Ltd. Partnership", "street_address": "2264 Ojibway Road", "city": "Kamloops", "province_state": "BC", "postal_code": "V2H 1P1", "main_tel": "(250) 573-5252", "fax_tel": "(250) 573-5235", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8bde7b03-475f-4c19-b60b-7f12e3cf2d65", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "McCabe Plumbing", "street_address": "854 Chapman Road", "city": "Cobble Hill", "province_state": "BC", "postal_code": "V0R 1L0", "main_tel": "(250) 701-1628", "fax_tel": "(250) 743-0755", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8c16777e-86b8-44ef-854e-d24822b3e7cd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Rocky Mountain Soil Sampling Inc.", "street_address": "Box C-23", "city": "Bowen Island", "province_state": "BC", "postal_code": "V0N 1G0", "main_tel": "(604) 947-7677", "fax_tel": "(250) 947-9500", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8cbb399c-13b6-49e1-ae7d-8174b4264055", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wellmaster Pumps & Water Systems Ltd.", "street_address": "7983 Simpson Road", "city": "Saanichton", "province_state": "BC", "postal_code": "V8M 2H3", "main_tel": "(250) 656-7474", "fax_tel": "(250) 652-7915", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8cbd02b7-bdc6-42e4-81ed-52ac6801ee4c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "R & S Drilling Ltd.", "street_address": "2360 Baily Road", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 5B9", "main_tel": "(250) 989-4473", "fax_tel": "(250) 989-4473", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8d82cacb-e1d6-4e09-8c01-99342eb5642c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Martech Motor Winding", "street_address": "1700 Woodland Drive", "city": "Castlegar", "province_state": "BC", "postal_code": "V1N 4J4", "main_tel": "(250) 365-2102", "fax_tel": "(250) 304-7531", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8d92d5bc-1335-41ab-bbac-2bb63c936794", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Value Contracting", "street_address": "Box 256 1612 Highway 97 S", "city": "Okanagan Falls", "province_state": "BC", "postal_code": "V0H 1R0", "main_tel": "(250) 497-8284", "fax_tel": "(250) 497-6533", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8e629ec8-6272-498c-8d29-786a9a162650", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Pro Drilling Ltd.", "street_address": "PO Box 550", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4J1", "main_tel": "(250) 426-0255", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8e6b1237-f739-4f0c-877d-9d533d9a0770", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Anderson Water Services Ltd.", "street_address": "PO Box 6099", "city": "Fort St. John", "province_state": "BC", "postal_code": "V1J 4H6", "main_tel": "(250) 785-2285", "fax_tel": "(250) 785-2299", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8e7a1d2c-9c3f-496d-b0eb-4c705e407d31", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Four-Cea Services Ltd.", "street_address": "Po Box 431 Harriet Bay", "city": "Quadra Island", "province_state": "BC", "postal_code": "V0P 1H0", "main_tel": "(250) 203-2040", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8f07c2dd-9b19-46c6-bd00-1af271d5242c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wangler Drilling Ltd.", "street_address": "7938 Cambie Road", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 2Y6", "main_tel": "(250) 832-3264", "fax_tel": "(250) 832-0563", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8fa406c8-6ec0-4889-b478-26edfd1f3dbe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Tundra Environmental & Geotechnical Drilling Ltd.", "street_address": "Box 207", "city": "Stettler", "province_state": "AB", "postal_code": "T0C 2L0", "main_tel": "(403) 742-6601", "fax_tel": "(403) 742-6651", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "8fd9376b-6d5a-4915-8cfb-d13f213b6f89", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Good Earth Drilling Services Ltd.", "street_address": "Site 12 Box 17 RR1", "city": "Airdrie", "province_state": "AB", "postal_code": "T4B 2A3", "main_tel": "(403) 912-1947", "fax_tel": "(403) 945-3429", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "905eb772-1ef5-45cd-8916-4608561d852f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Great West Drilling Ltd.", "street_address": "4250 118 Ave SE", "city": "Calgary", "province_state": "AB", "postal_code": "T2Z 4A4", "main_tel": "(403) 252-3325", "fax_tel": "(403) 258-4495", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "90f98635-a7c2-4d4c-af74-42fac2a8ce0b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Arts Plumbing & Heating Ltd.", "street_address": "6896 Doumont Road", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9T 6G9", "main_tel": "(250) 350-2606", "fax_tel": "(250) 390-2635", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "911e74d3-eee8-48e1-92a5-a1ea4d58c4fd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Garth's Plumbing & Heating", "street_address": "6456 Harrop Procter Road", "city": "Nelson", "province_state": "BC", "postal_code": "V1L 6R1", "main_tel": "(250) 229-4050", "fax_tel": "(250) 229-4056", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "915276cd-8273-4586-8fad-10cc194c1ebf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Vortex Pump & Water Services Ltd.", "street_address": "RR#1, Site 32, Comp 9", "city": "Okanagan Falls", "province_state": "BC", "postal_code": "V0H 1R0", "main_tel": "(250) 497-6157", "fax_tel": "(250) 497-6257", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "91576fc7-0a2e-4d84-867a-49435d61133e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Ltd.", "street_address": "PO Box 436", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4H9", "main_tel": "(250) 426-5213", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "91fdb13b-becc-4074-b68c-ff1c0b93f7e3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wild West Water Wells & Pump Service", "street_address": "1063 Simmons Road", "city": "Creston", "province_state": "BC", "postal_code": "V0B 1G7", "main_tel": "(250) 428-0137", "fax_tel": "(250) 428-0139", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Weston Water Wells Ltd.", "street_address": "7779 Highway 24", "city": "Lone Butte", "province_state": "BC", "postal_code": "V0K 1X2", "main_tel": "(250) 593-4307", "fax_tel": "(250) 593-4307", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "92722612-db88-481d-9f73-70a41092f9f4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Quadsons Water Systems", "street_address": "25745 - 102nd. Avenue", "city": "Maple Ridge", "province_state": "BC", "postal_code": "V2W 1K5", "main_tel": "(604) 462-8341", "fax_tel": "(604) 462-8374", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "949fbd4b-adab-49c5-b011-e36aaa4f85b9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "94cb6b2c-898c-41ac-bfcd-58122781bb34", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Union Pumps", "street_address": "23191 Fraser Highway", "city": "Langley", "province_state": "BC", "postal_code": "V3A 9J5", "main_tel": "(604) 533-3727", "fax_tel": "(604) 533-4358", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "950ee7b6-de1c-4192-9ce4-108e9b200689", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cyclone Drilling Ltd.", "street_address": "2915 McAllister Road", "city": "Westbank", "province_state": "BC", "postal_code": "V4T 1G8", "main_tel": "(250) 768-7462", "fax_tel": "(250) 768-5424", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "952b6309-93ee-4fc9-b8ef-0bbb792a2568", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Northwind Drilling and Pump Sales", "street_address": "Box 284", "city": "Watson Lake", "province_state": "YT", "postal_code": "Y0A 1C0", "main_tel": "(867) 536-2009", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9566764c-517e-4cf2-a4d3-7e2ddcc5f83f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mountain View Electric Ltd.", "street_address": "1009 Belvedere Street; Box 467", "city": "Enderby", "province_state": "BC", "postal_code": "V0E 1V0", "main_tel": "(250) 838-6455", "fax_tel": "(250) 838-6732", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9576f57d-b62a-4c67-b531-5509d07ed616", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "967bc31f-bd82-4b67-a99f-0bef1cbbf4b7", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Valley Pumps & Repairs Ltd.", "street_address": "33712 Best Avenue", "city": "Mission", "province_state": "BC", "postal_code": "V2V 6Z9", "main_tel": "(604) 820-6374", "fax_tel": "(604) 820-6374", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "96bd8b01-be90-4fc7-b1ce-b395f8c39dc2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Butch's Pump", "street_address": "6729 Highway 97 South", "city": "100 Mile House", "province_state": "BC", "postal_code": "V0K 2E2", "main_tel": "(250) 395-1971", "fax_tel": "(250) 395-1997", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9912321b-a4c4-4b12-9435-ad33e58f9d50", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Twilight Spas & Pump Supply", "street_address": "4704 Keith Avenue", "city": "Terrace", "province_state": "BC", "postal_code": "V8G 4K1", "main_tel": "(250) 638-0947", "fax_tel": "(250) 638-0948", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "99633948-b722-4f7b-87ef-c58d87a1f1a0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Pender Island Plumbing & Heating Ltd.", "street_address": "9858 Castle Road", "city": "Pender Island", "province_state": "BC", "postal_code": "V0N 2M3", "main_tel": "(250) 629-3781", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9aec04ae-dd27-4471-b5cc-792fb31c4498", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Tri-K Drilling Ltd.", "street_address": "3047 Glen Lake Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9B 4B3", "main_tel": "(250) 478-5064", "fax_tel": "(250) 478-2749", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9b029df8-c250-4a55-bc02-acded4aa55b9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Anderson Water Services Ltd.", "street_address": "PO Box 6099", "city": "Fort St. John", "province_state": "BC", "postal_code": "V1J 4H6", "main_tel": "(250) 785-2285", "fax_tel": "(250) 785-2299", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9bc2b1a9-f566-4b01-b7f6-cd8c9921b1bf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9c021994-53a1-42ad-8036-e74b8077a0e6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "3L's Water Systems Ltd.", "street_address": "Box 414", "city": "Ituna", "province_state": "SK", "postal_code": "S0A 1N0", "main_tel": "(306) 795-2620", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9c2ea8cc-ea9a-4bdc-a532-7c3cc7f0b39a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Moberg Drilling", "street_address": "Box 1635", "city": "Fort St. James", "province_state": "BC", "postal_code": "V0J 1P0", "main_tel": "(250) 640-6155", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9cd2586c-9352-4eda-9b1f-83aafa9dafb2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9cda4aab-ddbb-47a8-98af-8c878870fb62", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "McGill's Well Service", "street_address": "Box 1229", "city": "Cumberland", "province_state": "BC", "postal_code": "V0R 1S0", "main_tel": "(250) 338-1661", "fax_tel": "(250) 336-2199", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9e15f5ed-4d5d-4c86-b597-f75b92f9655c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ban K Water Well Services Ltd.", "street_address": "50025 Range Road 244", "city": "Leduc County", "province_state": "AB", "postal_code": "T4X 0N8", "main_tel": "(780) 986-6556", "fax_tel": "(780) 986-2677", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "9f2699c8-50ae-4cf8-9012-7a63277a3b30", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Moore's Well & Pump Servive Ltd.", "street_address": "45 Shuswap River Drive", "city": "Lumby", "province_state": "BC", "postal_code": "V0E 2G6", "main_tel": "(250) 545-1045", "fax_tel": "(250) 547-9686", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a14f35d7-6d7e-420c-b2f5-be46e12b172c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Silver Valley Plumbing & Mechanical Ltd.", "street_address": "Box 21025, Maple Ridge Square", "city": "Maple Ridge", "province_state": "BC", "postal_code": "V2X 1P7", "main_tel": "(604) 467-8854", "fax_tel": "(604) 467-8854", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a26e2b2e-ba3f-4e60-9d24-e25d217ea086", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "LC Holman Plumbing Services Ltd.", "street_address": "2715 Mountain Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6N3", "main_tel": "(250) 748-2351", "fax_tel": "(250) 748-8333", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a2b50fcf-5302-48ef-b944-358016d41e70", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a3288001-496e-4c5f-8eb4-72a5f148f1b6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Nanaimo Pump & Motor (2005) Ltd.", "street_address": "2445 Marlborough Drive", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9S 3J6", "main_tel": "(250) 668-2395", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a47edc50-b57c-47f9-8c13-0a19d558bbf6", "fields": {"create_user": "testuser", "create_date": "2018-09-26T21:50:05.286Z", "update_user": null, "update_date": "2018-09-26T21:50:05.579Z", "name": "Drilling Co'; rest of name\\\\/*\\\";more name", "street_address": "address\\\";\\/*-- \\'\\\\';rest of address", "city": "1') or '1';", "province_state": "BC", "postal_code": "", "main_tel": "", "fax_tel": "", "website_url": "", "effective_date": "2018-09-26", "expired_date": "2018-09-26", "email": null}}, {"model": "registries.organization", "pk": "a4d38502-f52b-4e97-a920-9aef8409a447", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fyfe Water Services", "street_address": "1541 Winchester Road", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1Y2", "main_tel": "(250) 752-4986", "fax_tel": "(250) 248-0830", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a5868d04-8caf-4c91-bea0-46bee7510148", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a5e8b50f-11cd-496d-a5bf-5cf8247b7d75", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Nelsen Plumbing", "street_address": "5852 Mason Road", "city": "Sechelt", "province_state": "BC", "postal_code": "V0N 3A8", "main_tel": "(604) 885-9754", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a61c2d3b-b0ad-4369-a016-3edfc162da99", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alliance Drilling", "street_address": "2985 Lakewood Place", "city": "Victoria", "province_state": "BC", "postal_code": "V9B 6B1", "main_tel": "(250) 391-6107", "fax_tel": "(250) 391-6108", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a63433ff-a660-4f93-9dda-4bb8e97f53d5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Thomson Plumbing", "street_address": "Bag 9000, Suite 320", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 1S3", "main_tel": "(250) 832-5558", "fax_tel": "(250) 832-8699", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a6bee814-4824-4000-b4bf-991c575b43f0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "#200 - 1649 Cary Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 2C1", "main_tel": "(250) 762-5776", "fax_tel": "(250) 762-0206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a75cb95a-9d25-42c3-bb1b-0bc6c5fb6af2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "#200 - 1649 Cary Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 2C1", "main_tel": "(250) 762-5776", "fax_tel": "(250) 762-0206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a85715cf-c963-4a54-8554-2127b4ad2ceb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 3A1", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a8879454-1d36-48a5-8456-8a7475f43591", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Westbay Mechanical Ltd.", "street_address": "584 Ledsham Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9C 1J8", "main_tel": "(250) 478-8532", "fax_tel": "(250) 478-8964", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a93ac922-af9f-4671-a247-5e325a36ce9a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Gregg Drilling and Testing Canada Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "1-844-848-8684", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "a9f3d658-3317-42c9-a72f-f00f631c6cc5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mo-Co Services", "street_address": "449 Mountain St.", "city": "Hinton", "province_state": "AB", "postal_code": "T7V 1K1", "main_tel": "(780) 817-4652", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ab08861d-a0cf-4aea-a7d8-daa3d1f71fe9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ross Pitt Plumbing", "street_address": "4211 Clubhouse Drive", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9T 4H8", "main_tel": "(250) 758-5655", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ab6b92b1-d3ec-4ca7-b00e-b06943f126e0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Source Drilling Ltd.", "street_address": "2307-39th Avenue", "city": "Vernon", "province_state": "BC", "postal_code": "V1T 3B3", "main_tel": "(250) 275-0920", "fax_tel": "(250) 275-0921", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ac586108-9272-44ee-aa8b-3e24beb9081e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ground Source Drilling Ltd.", "street_address": "Plaza 33 RPO Box 23037", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 7K7", "main_tel": "(250) 762-2519", "fax_tel": "(250) 762-2589", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "af363d77-5256-4b81-8a88-e81056e0dfb8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Triple S Service", "street_address": "Box 51", "city": "Anahim Lake", "province_state": "BC", "postal_code": "V0L 1C0", "main_tel": "(250) 742-3773", "fax_tel": "(250) 742-3272", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "af880b62-28a5-4001-a6e9-ca742b5731f2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fyfe's Enterprises", "street_address": "PO Box 64 Squirrel Cove", "city": "Cortes Island", "province_state": "BC", "postal_code": "V0P 1T0", "main_tel": "(250) 287-0278", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "afe8a94c-7352-4400-a293-849e56a18161", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Lewis G. Jones", "street_address": "45 Highland Drive", "city": "Burns Lake", "province_state": "BC", "postal_code": "V0J 1E1", "main_tel": "(250) 692-3553", "fax_tel": "(604) 692-3553", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b02ed7f5-304a-40ac-be85-c63e3e6b3a26", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "5755 Byrne Road", "city": "Burnaby", "province_state": "BC", "postal_code": "V5J 3J1", "main_tel": "(604) 321-2921", "fax_tel": "(604) 321-2920", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b1c02a23-6a65-4e00-a327-b80cca992c1f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Columbia Water Wells (1986) Ltd.", "street_address": "Po. Box 189 Stn. Aldergrove", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 1G2", "main_tel": "(604) 857-0008", "fax_tel": "(604) 856-3294", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b39dc3e8-dad0-4a96-9fca-3c75dafc54b4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b405fd40-35f5-4ff6-b570-4559dfaca861", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Robbins Drilling and Pump Ltd", "street_address": "Box 80, 1400 Green Lake Road", "city": "Okanagan Falls", "province_state": "BC", "postal_code": "V0H 1R0", "main_tel": "(250) 497-5303", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b43728b0-670a-4533-b038-3f12d4a7d9c8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Clear Blue Water Systems Ltd.", "street_address": "PO Box 148", "city": "Montney", "province_state": "BC", "postal_code": "V0C 1Y0", "main_tel": "(250) 827-3737", "fax_tel": "(250) 827-3701", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b45c1fe3-eb21-44b3-bc7d-03017f57838e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Union Pumps", "street_address": "Box 12006 RPO Murrayville; 23191 Fraser Highway", "city": "Langley", "province_state": "BC", "postal_code": "V3A 9J5", "main_tel": "(604) 533-3727", "fax_tel": "(604) 533-4358", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b64b45c3-76a0-440b-9378-2d8420438367", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b654742d-d3f4-48c5-a15c-7f467854fbc2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Marty's Plumbing", "street_address": "1813 Northfield Road", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9S 3B4", "main_tel": "(250) 741-4091", "fax_tel": "(250) 756-3049", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b746436e-5b4c-4657-8e91-b11775c66110", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Emco Corporation", "street_address": "1075 Henry Eng Place", "city": "Victoria", "province_state": "BC", "postal_code": "V9B 6B2", "main_tel": "(250) 391-3050", "fax_tel": "(250) 475-6201", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b749874e-9bd4-40c3-a0cf-fa2b58e75142", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mud Bay Drilling Co. Ltd.", "street_address": "19545 Telegraph Trail", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 4G9", "main_tel": "(604) 888-2206", "fax_tel": "(604) 888-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b7e99e1f-a04f-47d0-82de-43274b27ff18", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Gopher Water Wells", "street_address": "Box 738", "city": "150 Mile House", "province_state": "BC", "postal_code": "V0K 2G0", "main_tel": "(250) 296-4367", "fax_tel": "(250) 398-6741", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b8422301-1ea9-4f96-bb25-40482b0a7574", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Red Williams Well Drilling Ltd.", "street_address": "980 Pratt Road", "city": "Qualicum", "province_state": "BC", "postal_code": "V9K 1W5", "main_tel": "(250) 228-5553", "fax_tel": "(250) 248-4555", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b844c836-2309-489a-9443-5eb56097e77a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sea to Sky Geotechnical Drilling Ltd.", "street_address": "E2-225 North Road", "city": "Coquitlam", "province_state": "BC", "postal_code": "V3K 3V7", "main_tel": "(604) 328-9568", "fax_tel": "(604) 939-5045", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "b8a2bf25-db9b-496d-9dd7-37a224016b68", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Joe The Plumber", "street_address": "PO Box 2483, 60 - 1400 12th Street North", "city": "Golden", "province_state": "BC", "postal_code": "V0A 1H1", "main_tel": "(250) 939-8584", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ba26826d-fd25-4c9d-92df-5660c256748b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "The Pump Guy", "street_address": "Site 21, Comp 5; 620 Montague Road", "city": "Galiano Island", "province_state": "BC", "postal_code": "V0N 1P0", "main_tel": "(250) 539-2393", "fax_tel": "(250) 539-5824", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bc95f097-6f98-4cfa-a353-e63f45a65c74", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ingram Drilling Co. (1990) Ltd.", "street_address": "PO Box 4520", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 3J8", "main_tel": "(250) 249-5292", "fax_tel": "(778) 414-9112", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bd45dbd7-834d-4a83-8c69-0136e78c5e16", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bde36b15-1b37-42c0-a510-4beb91141d1d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cyclone Drilling Ltd.", "street_address": "2915 McAllister Road", "city": "Westbank", "province_state": "BC", "postal_code": "V4T 1G8", "main_tel": "(250) 768-7462", "fax_tel": "(250) 768-5424", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "be5af669-279a-4f1a-aeca-bb71c9a7de8a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bernard Drilling", "street_address": "7160 Beaver Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 6E6", "main_tel": "(250) 963-9233", "fax_tel": "(250) 963-9233", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "beb4d625-ea19-4baf-94f1-73a95ba64369", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Rockson's Plumbing & Heating Service Ltd.", "street_address": "3084 - 200th Street", "city": "Langley", "province_state": "BC", "postal_code": "V3A 8C8", "main_tel": "(604) 532-1216", "fax_tel": "(604) 532-1281", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bf286f49-ca89-49c5-a9cf-62c2077c9ad5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "Unit 150, 4611 Viking Way", "city": "Richmond", "province_state": "BC", "postal_code": "V2V 2K9", "main_tel": "(604) 273-5776", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bf767aec-6c24-4e41-ada9-e264e160fb94", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Hotearth Energy Systems", "street_address": "3560 Hallberg Road", "city": "Ladysmith", "province_state": "BC", "postal_code": "V9G 1L4", "main_tel": "(250) 245-5702", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bf94a8fb-f497-46a0-999d-0df85fbbf1a5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "A & H Pumps & Supplies", "street_address": "684 McCallum Road", "city": "Abbotsford", "province_state": "BC", "postal_code": "V2S 8A2", "main_tel": "(604) 302-1301", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "bfeec089-e2bd-4828-b18f-eed4f16d86ac", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Red Williams Well Drilling Ltd.", "street_address": "980 Pratt Road", "city": "Qualicum", "province_state": "BC", "postal_code": "V9K 1W5", "main_tel": "(250) 228-5553", "fax_tel": "(250) 248-4555", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c00887da-c892-43fd-99ea-d450d59467d3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ground Source Drilling Ltd.", "street_address": "Plaza 33 PO Box 23037", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 7K7", "main_tel": "(778)753-2778", "fax_tel": "(778) 753-2779", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c0f479ff-03b0-407f-a831-f3cdbf78f39d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 564-9010", "fax_tel": "(250) 962-9048", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c15aba4f-49ed-451d-a38d-0c0f3103fd78", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.C.'s Waterworks Ltd.", "street_address": "Box 1866, 139 East 1st. Street", "city": "Vanderhoof", "province_state": "BC", "postal_code": "V0J 3A0", "main_tel": "(250) 567-5888", "fax_tel": "(250) 567-5885", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c345fb2e-8fa8-4250-956f-f04c907ba403", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Kootenay Well Service", "street_address": "714 Wycliffe Park Road", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1L 7C3", "main_tel": "(250) 489-1179", "fax_tel": "(250) 489-1379", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c4376219-711c-47bf-a890-00f8faec2587", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Pepin Enterprises", "street_address": "25323 - 12th. Avenue", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 3N2", "main_tel": "(604) 856-8908", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c49516b4-8408-442f-a123-d919141f32f1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dewdney Enterprises Ltd.", "street_address": "35007 B Lougheed Hwy", "city": "Mission", "province_state": "BC", "postal_code": "V2V 6T1", "main_tel": "(604) 826-1771", "fax_tel": "(604) 820-9458", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c623cf47-4fa1-4eb1-8caa-351625c8ff22", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Municipal Utilities Central Ltd.", "street_address": "Cell: (306) 531-7821", "city": "Craven", "province_state": "SK", "postal_code": null, "main_tel": "(306) 249-2959", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c701408f-ce39-477b-aad5-4805854e2a43", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Vanderkemp Sales & Service Ltd.", "street_address": "RR#1 - 7408 Hwy 101", "city": "Powell River", "province_state": "BC", "postal_code": "V8A 4Z2", "main_tel": "(604) 485-9774", "fax_tel": "(604) 485-9717", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c76e8fe3-0bd6-4f1f-9d05-f3667a4b3527", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqueduct Plumbing & Gas Fitting Ltd.", "street_address": "727-700 Ramage Close", "city": "Red Deer", "province_state": "AB", "postal_code": "T4P 3X8", "main_tel": "(403) 877-2230", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c773e014-ad50-445c-8998-861f463b2a1e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "The Last Drop Water Systems", "street_address": "Box 635", "city": "Quathiaski Cove", "province_state": "BC", "postal_code": "V0P 1N0", "main_tel": "(250) 285-3415", "fax_tel": "(250) 285-2893", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c7e17543-1e10-4ff1-afcf-cdfb93e21e20", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Albert Kaye & Sons Drilling Ltd.", "street_address": "200 Musgrave Road", "city": "Salt Spring Island", "province_state": "BC", "postal_code": "V8K 1V5", "main_tel": "(250) 653-4757", "fax_tel": "(250) 653-4778", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c7e79ef0-dcd7-4832-abc1-20d8548a3d74", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Rob's Pump's 2000 Ltd.", "street_address": "2175 Blackwater Road", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 7C3", "main_tel": "(250) 992-5100", "fax_tel": "(250) 249-0255", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c7f5c75f-4296-4e09-8243-71f3660541eb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Field Drilling Contractors Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c8177f21-a3fe-4034-b3cc-81acc8c6fa73", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Savage Plumbing & Heating Ltd.", "street_address": "Box 741, 2330 Caughlin Road", "city": "Fruitvale", "province_state": "BC", "postal_code": "V0G 1L0", "main_tel": "(250) 367-9632", "fax_tel": "(250) 367-9622", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c8e718b1-1baa-4d1a-b49b-daa6bce8fddf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "10955 Buckhorn Lake Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 6A9", "main_tel": "(250) 963-5651", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c8eb928a-9250-4730-b984-9d5d89618c97", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Central Interior Pumps Ltd.", "street_address": "PO Box 8448, Yellowhead Highway", "city": "Heffley Creek", "province_state": "BC", "postal_code": "V0E 1Z2", "main_tel": "(250) 578-7829", "fax_tel": "(250) 578-7863", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c9742253-9924-40fa-8660-413742a47597", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Plateau Plumbing Heating & Gas", "street_address": "#3 Bear Cat Road", "city": "Royston", "province_state": "BC", "postal_code": "V0R 2V0", "main_tel": "(250) 334-4988", "fax_tel": "(250) 334-4928", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "c9da900f-f9bd-47b3-84de-75ab8ccd5e22", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Boart Longyear", "street_address": "7067 194 B Street", "city": "Surrey", "province_state": "BC", "postal_code": "V4N 5Z3", "main_tel": "(604) 831-7727", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ca8ae50a-3523-4ed8-b303-e17207615d90", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Crosby Plumbing and Aqua Service", "street_address": "14948 Braeside Road", "city": "Vanderhoof", "province_state": "BC", "postal_code": "V0J 3A2", "main_tel": "(250) 567-4127", "fax_tel": "(250) 567-5307", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cac4bea2-1d19-4c01-9e5b-aebe32132a2b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Hopper Water Well Drilling Ltd.", "street_address": "16201 - 92 Street", "city": "Grand Prairie", "province_state": "AB", "postal_code": "T8V 2N8", "main_tel": "(780) 832-2400", "fax_tel": "(780) 538-9686", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cb0fd36f-ee14-41d1-a721-16c03300decf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "A & H Well Drilling Ltd.", "street_address": "48987 Chilliwack Central Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2P 6H3", "main_tel": "(604) 794-5544", "fax_tel": "(604) 794-5545", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cb3a5b70-bf72-4b6f-9f1b-f7fc975c12b1", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cbaa90d0-500f-4144-82f8-3d014556abb4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Jacob's Water Wells", "street_address": "Box 143; 15436 Bell Sub. Road 657", "city": "Montney", "province_state": "BC", "postal_code": "V0C 1Y0", "main_tel": "(250) 827-3417", "fax_tel": "(250) 827-3417", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cc935960-ab63-4bc7-a6fb-87910aa14f5c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cdaca7cd-26f6-4d56-8894-b73ec8508036", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Integrity Drilling Inc.", "street_address": "6634 Highway 97A", "city": "Enderby", "province_state": "BC", "postal_code": "V0E 1V3", "main_tel": "(250) 833-2111", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ce35efb2-c061-4e8c-af87-84bca40de1b4", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Field Drilling Contractors Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cef8807e-51d8-4f16-ad48-bfb5287324cd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Stewart Drilling Ltd.", "street_address": "2041 14th Street S.W.", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 1L6", "main_tel": "(2500 832-4722", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "cf43d025-af77-436f-8b1b-e556d58fab45", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "5052 Hartway Drive", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5B7", "main_tel": "(250) 962-9041", "fax_tel": "(250) 962-9046", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d030bb92-e2db-4466-9514-abdb204fe8ad", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Columbia Valley H2O Well and Pump Service Ltd.", "street_address": "Box 895", "city": "Invermere", "province_state": "BC", "postal_code": "V0A 1K0", "main_tel": "(250) 342-9466", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d16f6db7-a0ef-4b62-b338-f98fc667cbdc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Mearl's Machine Works Ltd.", "street_address": "1146 Richter Street", "city": "Kelowna", "province_state": "BC", "postal_code": "V1Y 2K7", "main_tel": "(250) 763-0109", "fax_tel": "(250) 763-5894", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d1a18162-7452-499c-9e4d-fbb4db94aa5c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Bud's Water Wells Ltd.", "street_address": "Box 3276", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 6B8", "main_tel": "(205) 573-3000", "fax_tel": "(250) 679-8423", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d2991cc6-6cbe-40ac-966f-9ba3c2e826e0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Big Al's Wells", "street_address": "Box 36", "city": "Big Lake", "province_state": "BC", "postal_code": "V0L 1G0", "main_tel": "(250) 243-2346", "fax_tel": "(250) 243-2346", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d3cf5c40-7ab4-4b85-98f3-5c4d2c617f59", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Drilling Services Ltd.", "street_address": "Box 4827", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 2V8", "main_tel": "(250) 392-2241", "fax_tel": "(250) 392-7979", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d4087520-5586-43b0-9c30-3929a044b5aa", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Gabriola Waterworks", "street_address": "915 Horseshoe Road", "city": "Gabriola Island", "province_state": "BC", "postal_code": "V0R 1X3", "main_tel": "(250) 247-8263", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d41a11c9-c402-46f6-8db1-8967cb064fbe", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alken Basin Drilling Ltd.", "street_address": "Box 47", "city": "Bentley", "province_state": "AB", "postal_code": "T0C 0J0", "main_tel": "(403) 748-4340", "fax_tel": "(403) 748-2880", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d5784d95-16a1-4d81-9ca4-2e4d9f3007c0", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "City of Kamloops", "street_address": "955 Concordia Way", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 6V3", "main_tel": "(250) 828-3461", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d69509e0-37c6-43e1-ad0a-dd143874d795", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d76f6112-3f54-41f9-a7c5-46ccb1e331cd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Vancouver Island Pump Service", "street_address": "3447 Island Highway West", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 2B7", "main_tel": "(250) 202-7494", "fax_tel": "(250) 923-5068", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d774d222-3ac1-4b9e-8207-ee66b54d6bdb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "ABC Water Systems Ltd.", "street_address": "9 - 2180 South Wellington Road", "city": "Nanaimo", "province_state": "BC", "postal_code": "V9X 1V8", "main_tel": "(250) 753-3333", "fax_tel": "(250) 753-3364", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d8fcef10-e3ef-4f64-b306-3f64165db205", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Ltd.", "street_address": "7062 Hidden Valley Road", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 6X4", "main_tel": "(250) 426-5070", "fax_tel": "(250) 426-6997", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d9dbdc1b-7c24-49d3-a014-eb9562077eb9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Carbon Mountain Drilling", "street_address": "Box 6383", "city": "Fort St. John", "province_state": "BC", "postal_code": "V1J 4H8", "main_tel": "(250) 785-3598", "fax_tel": "(250) 785-9106", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d9e6c593-dee2-4b9c-bbdc-a10d872f570d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Industrial Drillers Ltd.", "street_address": "16950 Hart Highway", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5T1", "main_tel": "(250) 971-2422", "fax_tel": "(250) 971-2207", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "d9efd570-71e5-4b03-af4d-58014fc1891e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Boomer Enterprises", "street_address": "S70 C16 RR2", "city": "Rock Creek", "province_state": "BC", "postal_code": "V0H 1Y0", "main_tel": "(250) 446-2520", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dabd57fd-0c4e-472f-9846-f398172b3a94", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Uniwide Drilling Ltd. Co.", "street_address": "10955 Buckhorn Lake Road", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 6A9", "main_tel": "(250) 963-5651", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dadf5f94-9427-4453-bd91-073b00a5213f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fixology Repair Solutions", "street_address": "3653 Luxmoore Rd", "city": "Kelowna", "province_state": "BC", "postal_code": "V1W 4C7", "main_tel": "(250) 300-4738", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "daeaa7af-d442-43a8-a049-3b77e2e4e24a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Peters Well Drilling Ltd.", "street_address": "44160 Yale Road West", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2R 3Z9", "main_tel": "(604) 819-9355", "fax_tel": "(604) 792-6886", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "db193fd3-8306-4446-b4e2-759a2a59a61f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Fyfe Well & Water Services", "street_address": "1541 Winchester Road", "city": "Qualicum Beach", "province_state": "BC", "postal_code": "V9K 1Y2", "main_tel": "(250) 752-4986", "fax_tel": "(250) 248-0830", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "db6e8ab4-c6ea-4945-a7a7-6d95e85dd44f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Ministry of Agriculture", "street_address": "441 Columbia Street", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 2T3", "main_tel": "(250) 828-4514", "fax_tel": "(250) 828-4154", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "db93004d-4d4d-4120-80c4-4af0b6568050", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Y & R Water Sales & Services Inc.", "street_address": "Box 488 7708 Donaldson Drive", "city": "Grand Forks", "province_state": "BC", "postal_code": "V0H 1H0", "main_tel": "(250) 442-5537", "fax_tel": "(250) 442-5547", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dc23ff3a-c698-41ec-8f00-2862324dd048", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D.A. Smithson & Sons Ltd.", "street_address": "3282 Happy Valley Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9C 2W1", "main_tel": "(250) 478-6937", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dc2b5154-723a-407c-b6cf-87e26f21868b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dc62455c-650d-4e06-84be-0d0d8b94f517", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Central Ltd. Partnership", "street_address": "Box 3202 1250 Dalhousie Dr.", "city": "Kamloops", "province_state": "BC", "postal_code": "V2C 6B8", "main_tel": "(250) 573-5252", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dca6898c-1633-4908-bf8b-c6c70e247b71", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dcccca3e-0f56-4635-967c-597cd7b10b67", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Schibli Drilling", "street_address": "PO Box 725 17 Blue Springs Road", "city": "Lumby", "province_state": "BC", "postal_code": "V0E 2G1", "main_tel": "(250) 547-9796", "fax_tel": "(250) 547-9725", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "dd8d0b72-e8c9-471a-97d3-acd5da9f358d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wild West Water Wells & Pump Service", "street_address": "1063 Simmons Road", "city": "Creston", "province_state": "BC", "postal_code": "V0B 1G7", "main_tel": "(250) 428-0137", "fax_tel": "(403) 912-7898", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ddf6ceb6-0852-44cd-a7f7-d94c46635a76", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Carl Mellings Plumbing", "street_address": "4925 Conifer Way", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6J3", "main_tel": "(250) 748-3328", "fax_tel": "(250) 748-3358", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "df0f7c09-dded-458b-8a93-fe85b2370d14", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Wallace Control Systems Corp.", "street_address": "65 Regina Avenue", "city": "Victoria", "province_state": "BC", "postal_code": "V8Z 1J2", "main_tel": "(250) 590-5501", "fax_tel": "(250) 590-5593", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "df87b7ec-ad77-4432-b6b1-6975ba926151", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Canadian Western Mechanical Ltd.", "street_address": "884 Front Street", "city": "Quesnel", "province_state": "BC", "postal_code": "V2J 5Y3", "main_tel": "(250) 992-9807", "fax_tel": "(250) 992-9012", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e03c10e1-0a88-45b9-9545-03f8d1ac2061", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Tri-City Pumps & Power (2007) Ltd.", "street_address": "3583 South Slocan Village Road", "city": "Bonnington", "province_state": "BC", "postal_code": "V0G 2G3", "main_tel": "(250) 359-7166", "fax_tel": "(250) 359-7167", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e0a6c3cf-7296-409a-a51c-a23c74f6c126", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Jacob's Water Wells", "street_address": "15436 Bell Sub. Road; Box 143", "city": "Montney", "province_state": "BC", "postal_code": "V0C 1Y0", "main_tel": "(250) 827-3417", "fax_tel": "(250) 827-3417", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e0cb504a-8d8d-4764-a297-091e1e23870f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alken Basin Drilling Ltd.", "street_address": "Box 47", "city": "Bentley", "province_state": "AB", "postal_code": "T0C 0J0", "main_tel": "(403) 748-4340", "fax_tel": "(403) 748-2880", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "GeoTility Systems Corp.", "street_address": "#200 - 1649 Cary Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 2C1", "main_tel": "(250) 762-5776", "fax_tel": "(250) 762-0206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e11b6781-167c-499f-824a-dffa1173ac59", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Foundex Explorations Ltd.", "street_address": "14653 - 64th Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3S 1X6", "main_tel": "(604) 594-8333", "fax_tel": "(604) 594-1815", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e1219888-852c-456d-ab58-ea5917d5b782", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Van Isle Water Service Ltd.", "street_address": "461 Dupplin Road", "city": "Victoria", "province_state": "BC", "postal_code": "V8Z 1B8", "main_tel": "(250) 383-7145", "fax_tel": "(250) 385-1216", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e1468377-8147-4f82-a9e7-6a9d877aff5a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Canwest Well Drilling Ltd.", "street_address": "4606 Bowness Avenue", "city": "Powell River", "province_state": "BC", "postal_code": "V8A 3S1", "main_tel": "(604) 485-4250", "fax_tel": "(604) 485-7630", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e3512ffd-f5aa-4757-bccd-592e9ecc7600", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Owen's Drilling Ltd.", "street_address": "Box 730, 541 Industrial Road", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4J5", "main_tel": "(250) 426-2455", "fax_tel": "(250) 427-7419", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e44840c0-fd41-42dd-b75e-243cf31f6844", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Ltd.", "street_address": "PO Box 436", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4H9", "main_tel": "(250) 426-5070", "fax_tel": "(250) 426-6997", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e4f3a7f5-a2e5-48ec-a55e-10b6b9a7ddd6", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Cronin Well Consulting Services", "street_address": "3076 Glendale Place", "city": "Abbotsford", "province_state": "BC", "postal_code": "V2S 7H1", "main_tel": "(604) 308-3165", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e501fe14-d4a2-4579-96f6-66ebd9056742", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dynamic Drilling Inc.", "street_address": "E2 - 225 North Road", "city": "Coquitlam", "province_state": "BC", "postal_code": "V3K 3V7", "main_tel": "(604) 298-5943", "fax_tel": "(604) 936-7377", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e51471f9-1581-458f-8da5-64ebfea44397", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Greg McRae Electric", "street_address": "RR#1", "city": "New Denver", "province_state": "BC", "postal_code": "V0G 1S0", "main_tel": "(250) 358-2623", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e56ab542-a414-4de6-be90-f82d7065cad8", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "A & H Well Drilling Ltd.", "street_address": "48987 Chilliwack Central Road", "city": "Chilliwack", "province_state": "BC", "postal_code": "V2P 6H3", "main_tel": "(604) 794-5544", "fax_tel": "(604) 794-5545", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e6902332-38d1-4048-ac87-4c8d886b2f9a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Gerry Hawkes Plumbing Ltd.", "street_address": "4660 Hillbank Road", "city": "Cowichan Bay", "province_state": "BC", "postal_code": "V0R 1N1", "main_tel": "(205) 748-0502", "fax_tel": "(250) 746-7917", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e71f1293-033c-4449-a0a0-486096c0cd97", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Langley Water Wells Ltd.", "street_address": "21416 32nd. Avenue", "city": "Langley", "province_state": "BC", "postal_code": "V2Z 2E7", "main_tel": "(604) 534-5675", "fax_tel": "(604) 534-9762", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e73b0d14-7527-4f4a-a5f4-29a71215cb3a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dynamic Drilling Inc.", "street_address": "E2 - 225 North Road", "city": "Coquitlam", "province_state": "BC", "postal_code": "V3K 3V7", "main_tel": "(604) 298-5943", "fax_tel": "(604) 936-7377", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e75724aa-1659-4bcb-9501-d15b54bb4b45", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Beck Drilling & Environmental Services", "street_address": "3334 Sexsmith Road", "city": "Kelowna", "province_state": "BC", "postal_code": "V1X 7S5", "main_tel": "(250) 765-2210", "fax_tel": "(250) 765-4206", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Precision Service & Pumps Inc.", "street_address": "1334 Riverside Road", "city": "Abbotsford", "province_state": "BC", "postal_code": "V2S 8J2", "main_tel": "(604) 850-7010", "fax_tel": "(604) 850-9666", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e8319f06-833d-4486-9d91-3f1cc5ca657b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "D. Borrill Electric", "street_address": "Box 1049", "city": "Barriere", "province_state": "BC", "postal_code": "V0E 1E0", "main_tel": "(250) 672-9852", "fax_tel": "(250) 672-9853", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e8f75bff-ad4f-461d-8f07-369ab120bb1b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Big Country Pumps", "street_address": "Box 252, 2942 Kengin Road", "city": "150 Mile House", "province_state": "BC", "postal_code": "V0K 2G0", "main_tel": "(250) 296-3521", "fax_tel": "(250) 296-4703", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e9341701-7389-465a-ab44-8d331b6b2928", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Abercrombie Drilling", "street_address": "2405 Bush Road", "city": "Williams Lake", "province_state": "BC", "postal_code": "V2G 4V9", "main_tel": "(250) 398-5315", "fax_tel": "(250) 398-5315", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e94b3f7f-abd3-440c-ab72-bca562cfeedf", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.R. Drilling Ltd.", "street_address": "PO Box 436", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 4H9", "main_tel": "(250) 426-5070", "fax_tel": "(250) 426-6997", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e9a3778c-0bc6-400c-a582-5a72f910f763", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Rocky Mountain Pump Service Ltd.", "street_address": "1139A Industrial Road #3", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 5E3", "main_tel": "(250) 426-4069", "fax_tel": "(250) 426-8425", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e9c90a4e-f381-4f19-bfb4-33948c918072", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "North Cove Marine", "street_address": "Box 4-8", "city": "Thetis Island", "province_state": "BC", "postal_code": "V0R 2Y0", "main_tel": "(250) 252-0144", "fax_tel": "(250) 246-2187", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "e9ccfb88-a4ee-4e86-b85d-f701c1e5b8be", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Double D Drilling Ltd.", "street_address": "Box 766; 5275 Arthur Road", "city": "Terrace", "province_state": "BC", "postal_code": "V8G 4R1", "main_tel": "(250) 635-7877", "fax_tel": "(250) 635-7899", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ea126b47-438d-4e2a-befc-76d77727544d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Field Drilling Contractors Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ec39dbb1-c5a4-4567-b32c-fbf40231fc6e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Conetec Investigations Ltd.", "street_address": "12140 Vulcan Way", "city": "Richmond", "province_state": "BC", "postal_code": "V6V 1J8", "main_tel": "(604) 273-4311", "fax_tel": "(604) 273-4066", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ecdc289e-ff77-45ef-b1e4-6ef3dcda8940", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Columbia Water Wells (1986) Ltd.", "street_address": "Po. Box 189 Stn. Aldergrove", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 1G2", "main_tel": "(604) 857-0008", "fax_tel": "(604) 856-3294", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ee03b1e3-a273-472b-8bd1-4f9de6d9488a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Torry and Sons Plumbing & Heating Ltd.", "street_address": "731- 30th Street", "city": "Courtenay", "province_state": "BC", "postal_code": "V9N 7S7", "main_tel": "(250) 338-8865", "fax_tel": "(250) 338-8305", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "eea40379-5510-4925-8b8f-bc640af1485c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Field Drilling Contractors Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f00f644f-6517-4069-bc45-72e2fbd60db5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Field Drilling Contractors Ltd.", "street_address": "Box 841, 25320 Fraser Highway", "city": "Aldergrove", "province_state": "BC", "postal_code": "V4W 2V1", "main_tel": "(604) 857-2266", "fax_tel": "(604) 857-2267", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f1d1b9bd-1ca6-4f99-8fc1-273701feba27", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Schibli Drilling", "street_address": "17 Blue Springs Road", "city": "Lumby", "province_state": "BC", "postal_code": "V0E 2G1", "main_tel": "(250) 547-9796", "fax_tel": "(250) 547-9725", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f387c5b5-43c8-4bd5-b67f-4ef961b307c9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "G. Doran & Sons Plumbing & Heating Ltd.", "street_address": "PO Box 24", "city": "Mill Bay", "province_state": "BC", "postal_code": "V0R 2P0", "main_tel": "(250) 743-5493", "fax_tel": "(250) 733-2358", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f43e6842-3925-47b2-a279-7d2ada3bd429", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Morrill's Water Well Drilling Ltd.", "street_address": "Site 422, Box 2, Comp 3, RR2", "city": "Drayton Valley", "province_state": "AB", "postal_code": "T7A 2A2", "main_tel": "(780) 542-5089", "fax_tel": "(780)-542-7696", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f4426285-d3d8-4a7e-8f26-5b044fe9a01c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Blaeberry Valley Plumbing Ltd.", "street_address": "Box 69", "city": "Golden", "province_state": "BC", "postal_code": "V0A 1H0", "main_tel": "(250) 344-7209", "fax_tel": "(250) 344-7209", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f4605d57-b2e0-4656-bd06-50abfcaf6495", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Monashee Aquifer Testing", "street_address": "Box 752", "city": "Lumby", "province_state": "BC", "postal_code": "V0E 2G0", "main_tel": "(250) 547-6845", "fax_tel": "(250) 547-6880", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f464b624-a7b6-46c7-85a3-682cbc0ece33", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Okanagan Geothermal Ltd.", "street_address": "36 Highway 97B", "city": "Enderby", "province_state": "BC", "postal_code": "V0E 1V3", "main_tel": "(250) 833-6126", "fax_tel": "(250) 838-0809", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f5c48e7d-a093-47e5-a447-84c1eb6fcc5e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Tri-K Drilling Ltd.", "street_address": "3047 Glen Lake Road", "city": "Victoria", "province_state": "BC", "postal_code": "V9B 4B3", "main_tel": "(250) 478-5064", "fax_tel": "(250) 478-2749", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f604b33f-5682-4a4c-8877-9912b36f7a3e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Beck Drilling & Environmental Services", "street_address": "160-13511 Vulcan Way", "city": "Richmond", "province_state": "BC", "postal_code": "V6V 1K4", "main_tel": "(604) 214-7007", "fax_tel": "(604) 214-7017", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f6f7f9f0-9ae7-4d38-836f-b6bca0a55849", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Camfield Drilling Svcs. & G. Bland Consulting", "street_address": "1280 4th Ave. South", "city": "Lethbridge", "province_state": "AB", "postal_code": "T1J 0R2", "main_tel": "(403) 308-3827", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f74a98d5-f04f-479e-9214-724773dac01a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Tech Services", "street_address": "5806 Farmers Drive", "city": "Kelowna", "province_state": "BC", "postal_code": "V1P 1A3", "main_tel": "(250) 765-4730", "fax_tel": "(250) 765-5801", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f84510b9-7024-4dd3-a960-fcc9c4860e25", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Canadian Quality Control inc.", "street_address": "2924 Piper Rd", "city": "Prince George", "province_state": "BC", "postal_code": "V2N 2H8", "main_tel": "778-340-9281", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f9b3177d-b70a-4279-aafb-af5101ff5dd9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aqua Pro Drilling Ltd.", "street_address": "2153 25th Street South", "city": "Cranbrook", "province_state": "BC", "postal_code": "V1C 6Y9", "main_tel": "(250) 426-0522", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "f9db27a1-2614-4e86-8710-e8b3fa232e63", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Hopper Water Well Drilling Ltd.", "street_address": "16201 - 92 Street", "city": "Grand Prairie", "province_state": "AB", "postal_code": "T8V 2N8", "main_tel": "(780) 832-2400", "fax_tel": "(780) 538-9686", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fa277082-4bbe-4729-8109-9919b2af5e8c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "C & A Plumbing & Heating Ltd", "street_address": "PO Box 1185", "city": "Houston", "province_state": "BC", "postal_code": "V0J 1Z0", "main_tel": "(250) 845-2240", "fax_tel": "(250) 845-2604", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fb19a62f-2cfc-44c6-851a-8ccc2c4ff3ff", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Geotech Drilling Services Ltd.", "street_address": "1-740 Waddington Drive", "city": "Vernon", "province_state": "BC", "postal_code": "V1T 9E9", "main_tel": "(250) 549-2393", "fax_tel": "(250) 549-3387", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fbbee79b-8936-4860-9e6d-ce612bfd5c9b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Dave's Bobcat Service", "street_address": "700 Georgia View Road", "city": "Galiano Island", "province_state": "BC", "postal_code": "V0N 1P0", "main_tel": "(250) 539-2833", "fax_tel": "(250) 539-2833", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fc0362f4-dc04-4027-a6cd-c570d9e6629e", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Town & Country Plumbing and Heating", "street_address": "Box 1049", "city": "Vanderhoof", "province_state": "BC", "postal_code": "V0J 3A0", "main_tel": "(250) 567-2971", "fax_tel": "(250) 567-2971", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fc1d143f-9ce8-40b5-ba79-811e955ea6e9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sun Waterwell Testing 546347 BC Ltd.", "street_address": "1581 16th Avenue S.E.", "city": "Salmon Arm", "province_state": "BC", "postal_code": "V1E 2M7", "main_tel": "(250) 832-3742", "fax_tel": "(250) 832-3725", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fc9ca319-ab37-46de-8656-e2bdc705bc4d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Alliance Drilling", "street_address": "377 Crystal View Terrace", "city": "Victoria", "province_state": "BC", "postal_code": "V9B 5S5", "main_tel": "(250) 391-6107", "fax_tel": "(250) 391-6108", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fd1d3cd4-4684-464a-9989-391b33d2edfb", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Drillwell Enterprises Ltd.", "street_address": "4994 Polkey Road", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 6W3", "main_tel": "(250) 746-5268", "fax_tel": "(250) 746-8404", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Aaron Drilling", "street_address": "Box 28, Site 9, RR 1", "city": "Dewinton", "province_state": "AB", "postal_code": "T0L 0X0", "main_tel": "(403) 938-4961", "fax_tel": "(403) 938-3324", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fe10a4b5-0fb7-411f-8fcb-e9a8b79149f5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Southern Gulf Island Electric Ltd.", "street_address": "#35 3031 Williams Road", "city": "Richmond", "province_state": "BC", "postal_code": "V7E 1H9", "main_tel": "(250) 539-5859", "fax_tel": null, "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fe115afa-22d7-4976-8520-6ee16151c1f3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Sonic Drilling Ltd.", "street_address": "12055 102nd Avenue", "city": "Surrey", "province_state": "BC", "postal_code": "V3V 3C5", "main_tel": "(604) 588-6080", "fax_tel": "(604) 588-6080", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fe78f13e-24f3-451e-971a-a992cf901fdc", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Insitu Contractors Inc", "street_address": "48 Dawson Road", "city": "Guelph", "province_state": "ON", "postal_code": "N1H 5V1", "main_tel": "(519) 763-0700", "fax_tel": "(519) 763-6684", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fe84a61a-7201-4ec6-ba35-a012542caf03", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "J.W. Griffiths Ltd.", "street_address": "251 Government Street", "city": "Duncan", "province_state": "BC", "postal_code": "V9L 1A6", "main_tel": "(250) 746-4534", "fax_tel": "(250) 748-8991", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Industrial Drillers Ltd.", "street_address": "16950 Hart Highway", "city": "Prince George", "province_state": "BC", "postal_code": "V2K 5T1", "main_tel": "(250) 971-2422", "fax_tel": "(250) 971-2207", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ff4413e5-2732-44c1-a1ef-7d789940b3d5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Diverse Drilling Ltd.", "street_address": "Box 141", "city": "Bonanza", "province_state": "AB", "postal_code": "T0H 0K0", "main_tel": "(780) 353-2203", "fax_tel": "(780) 353-2208", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ff5fdbce-83ab-44ad-b8cc-4fc385c46f6f", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "Suncoast Waterworks & Suncoast Pool and Spa", "street_address": "#8 5824 Sechelt Inlet Rd", "city": "Sechelt", "province_state": "BC", "postal_code": "V0N 3A3", "main_tel": "(604) 885-6127", "fax_tel": "(604) 648-9621", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.organization", "pk": "ff8a6226-06fa-4edb-b512-9efa0bc18cbd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "name": "City of Prince George", "street_address": "505 - 4th Avenue", "city": "Prince George", "province_state": "BC", "postal_code": "V2L 3H2", "main_tel": "(250) 561-7600", "fax_tel": "(250) 561-7519", "website_url": null, "effective_date": "1970-01-01", "expired_date": null, "email": null}}, {"model": "registries.wellclasscode", "pk": "CLOS", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Closed loop geoexchange well", "display_order": 14, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "DEWAT", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Dewatering well", "display_order": 8, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "GEO", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Geotechnical well", "display_order": 12, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "MON", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Monitoring well", "display_order": 4, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "PUMP", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Install pump in Water supply, Recharge/Injection, or Dewatering well", "display_order": 20, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "RECH", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Recharge/Injection well", "display_order": 6, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "REM", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Remediatation well", "display_order": 10, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.wellclasscode", "pk": "WAT", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Water supply well", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "0cbac383-d61a-4c32-92af-0f9e56d72fc5", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "CLOS", "subactivity": "GEOXCHG", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "2f734bc6-5e0e-4ce7-859e-54b56b24d2fd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "GEO", "subactivity": "GEOTECH", "display_order": 6, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "2f8677d8-5c03-4ebd-8814-aeb7acad4426", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "PUMP", "subactivity": "PUMPINST", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "36690d31-434d-49f7-8f85-ba4b791c9fdd", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "MON", "subactivity": "GEOTECH", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "4b70337d-457f-4437-9c62-5a13da1f04db", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "GEO", "subactivity": "WATER", "display_order": 12, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "5e1d7db5-a11c-405e-ab0d-c7da5c83a094", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "DEWAT", "subactivity": "WATER", "display_order": 8, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "68ff6d7f-69bd-4022-ac1a-f8f14b32585d", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "REM", "subactivity": "WATER", "display_order": 10, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "8f632fff-6bf9-4a63-80de-dcafce98f5db", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "RECH", "subactivity": "WATER", "display_order": 6, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "a2a5ef32-fde2-4a70-ac46-bd2ccfad54c9", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "REM", "subactivity": "GEOTECH", "display_order": 4, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "d78f29fc-cc8a-40e8-a80b-b3b4e0e4dc82", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "MON", "subactivity": "WATER", "display_order": 4, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.qualification", "pk": "f95920cf-92c9-4e8f-bcc3-b360ff1f857c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "well_class": "WAT", "subactivity": "WATER", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.registriesremovalreason", "pk": "FAILTM", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Fails to maintain a requirement for registration", "display_order": 1, "effective_date": "2018-06-11", "expired_date": null}}, {"model": "registries.registriesremovalreason", "pk": "NLACT", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "No longer actively working in Canada", "display_order": 1, "effective_date": "2018-06-11", "expired_date": null}}, {"model": "registries.registriesremovalreason", "pk": "NMEET", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Fails to meet a requirement for registration", "display_order": 1, "effective_date": "2018-06-11", "expired_date": null}}, {"model": "registries.applicationstatuscode", "pk": "A", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Registered", "display_order": 4, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.applicationstatuscode", "pk": "I", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Incomplete", "display_order": 10, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.applicationstatuscode", "pk": "NA", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Not Approved", "display_order": 6, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.applicationstatuscode", "pk": "P", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Pending", "display_order": 2, "effective_date": "2018-05-25", "expired_date": null}}, {"model": "registries.proofofagecode", "pk": "BIRTH", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Birth Certificate", "display_order": 1, "effective_date": "2018-04-26", "expired_date": null}}, {"model": "registries.proofofagecode", "pk": "DRIVERS", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Driver's Licence", "display_order": 1, "effective_date": "2018-04-26", "expired_date": null}}, {"model": "registries.proofofagecode", "pk": "PASSPORT", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Passport", "display_order": 2, "effective_date": "2018-04-26", "expired_date": null}}, {"model": "wells.decommissionmethodcode", "pk": "POURED", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:28Z", "update_user": "WELLS", "update_date": "2006-12-14T17:58:28Z", "description": "Poured", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.decommissionmethodcode", "pk": "PUMPED", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:28Z", "update_user": "WELLS", "update_date": "2006-12-14T17:58:28Z", "description": "Pumped", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.bcgs_numbers", "pk": 1, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E"}}, {"model": "wells.bcgs_numbers", "pk": 2, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E.0"}}, {"model": "wells.bcgs_numbers", "pk": 3, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E.006.3"}}, {"model": "wells.bcgs_numbers", "pk": 4, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E.013"}}, {"model": "wells.bcgs_numbers", "pk": 5, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002121"}}, {"model": "wells.bcgs_numbers", "pk": 6, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002122"}}, {"model": "wells.bcgs_numbers", "pk": 7, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002123"}}, {"model": "wells.bcgs_numbers", "pk": 8, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002124"}}, {"model": "wells.bcgs_numbers", "pk": 9, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002141"}}, {"model": "wells.bcgs_numbers", "pk": 10, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002142"}}, {"model": "wells.bcgs_numbers", "pk": 11, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002144"}}, {"model": "wells.bcgs_numbers", "pk": 12, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002211"}}, {"model": "wells.bcgs_numbers", "pk": 13, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002212"}}, {"model": "wells.bcgs_numbers", "pk": 14, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002213"}}, {"model": "wells.bcgs_numbers", "pk": 15, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002214"}}, {"model": "wells.bcgs_numbers", "pk": 16, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002322"}}, {"model": "wells.bcgs_numbers", "pk": 17, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002323"}}, {"model": "wells.bcgs_numbers", "pk": 18, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002324"}}, {"model": "wells.bcgs_numbers", "pk": 19, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002341"}}, {"model": "wells.bcgs_numbers", "pk": 20, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002342"}}, {"model": "wells.bcgs_numbers", "pk": 21, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002343"}}, {"model": "wells.bcgs_numbers", "pk": 22, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002344"}}, {"model": "wells.bcgs_numbers", "pk": 23, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E002422"}}, {"model": "wells.bcgs_numbers", "pk": 24, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003114"}}, {"model": "wells.bcgs_numbers", "pk": 25, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003144"}}, {"model": "wells.bcgs_numbers", "pk": 26, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003212"}}, {"model": "wells.bcgs_numbers", "pk": 27, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003213"}}, {"model": "wells.bcgs_numbers", "pk": 28, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003214"}}, {"model": "wells.bcgs_numbers", "pk": 29, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003221"}}, {"model": "wells.bcgs_numbers", "pk": 30, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003222"}}, {"model": "wells.bcgs_numbers", "pk": 31, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003223"}}, {"model": "wells.bcgs_numbers", "pk": 32, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003224"}}, {"model": "wells.bcgs_numbers", "pk": 33, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003231"}}, {"model": "wells.bcgs_numbers", "pk": 34, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003232"}}, {"model": "wells.bcgs_numbers", "pk": 35, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003233"}}, {"model": "wells.bcgs_numbers", "pk": 36, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003234"}}, {"model": "wells.bcgs_numbers", "pk": 37, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003241"}}, {"model": "wells.bcgs_numbers", "pk": 38, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003242"}}, {"model": "wells.bcgs_numbers", "pk": 39, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003311"}}, {"model": "wells.bcgs_numbers", "pk": 40, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003314"}}, {"model": "wells.bcgs_numbers", "pk": 41, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003321"}}, {"model": "wells.bcgs_numbers", "pk": 42, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003322"}}, {"model": "wells.bcgs_numbers", "pk": 43, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003323"}}, {"model": "wells.bcgs_numbers", "pk": 44, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003324"}}, {"model": "wells.bcgs_numbers", "pk": 45, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003331"}}, {"model": "wells.bcgs_numbers", "pk": 46, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003332"}}, {"model": "wells.bcgs_numbers", "pk": 47, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003334"}}, {"model": "wells.bcgs_numbers", "pk": 48, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003341"}}, {"model": "wells.bcgs_numbers", "pk": 49, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003342"}}, {"model": "wells.bcgs_numbers", "pk": 50, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003343"}}, {"model": "wells.bcgs_numbers", "pk": 51, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003411"}}, {"model": "wells.bcgs_numbers", "pk": 52, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003413"}}, {"model": "wells.bcgs_numbers", "pk": 53, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003431"}}, {"model": "wells.bcgs_numbers", "pk": 54, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E003433"}}, {"model": "wells.bcgs_numbers", "pk": 55, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004113"}}, {"model": "wells.bcgs_numbers", "pk": 56, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004121"}}, {"model": "wells.bcgs_numbers", "pk": 57, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004123"}}, {"model": "wells.bcgs_numbers", "pk": 58, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004124"}}, {"model": "wells.bcgs_numbers", "pk": 59, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004131"}}, {"model": "wells.bcgs_numbers", "pk": 60, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004213"}}, {"model": "wells.bcgs_numbers", "pk": 61, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004221"}}, {"model": "wells.bcgs_numbers", "pk": 62, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004222"}}, {"model": "wells.bcgs_numbers", "pk": 63, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004223"}}, {"model": "wells.bcgs_numbers", "pk": 64, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004224"}}, {"model": "wells.bcgs_numbers", "pk": 65, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004241"}}, {"model": "wells.bcgs_numbers", "pk": 66, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004242"}}, {"model": "wells.bcgs_numbers", "pk": 67, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004243"}}, {"model": "wells.bcgs_numbers", "pk": 68, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004244"}}, {"model": "wells.bcgs_numbers", "pk": 69, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E004421"}}, {"model": "wells.bcgs_numbers", "pk": 70, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005132"}}, {"model": "wells.bcgs_numbers", "pk": 71, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005134"}}, {"model": "wells.bcgs_numbers", "pk": 72, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005144"}}, {"model": "wells.bcgs_numbers", "pk": 73, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005213"}}, {"model": "wells.bcgs_numbers", "pk": 74, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005222"}}, {"model": "wells.bcgs_numbers", "pk": 75, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005233"}}, {"model": "wells.bcgs_numbers", "pk": 76, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E005243"}}, {"model": "wells.bcgs_numbers", "pk": 77, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E005322"}}, {"model": "wells.bcgs_numbers", "pk": 78, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E005324"}}, {"model": "wells.bcgs_numbers", "pk": 79, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E005341"}}, {"model": "wells.bcgs_numbers", "pk": 80, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E005422"}}, {"model": "wells.bcgs_numbers", "pk": 81, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E005424"}}, {"model": "wells.bcgs_numbers", "pk": 82, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E005442"}}, {"model": "wells.bcgs_numbers", "pk": 83, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006131"}}, {"model": "wells.bcgs_numbers", "pk": 84, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006133"}}, {"model": "wells.bcgs_numbers", "pk": 85, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006134"}}, {"model": "wells.bcgs_numbers", "pk": 86, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006144"}}, {"model": "wells.bcgs_numbers", "pk": 87, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006221"}}, {"model": "wells.bcgs_numbers", "pk": 88, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006224"}}, {"model": "wells.bcgs_numbers", "pk": 89, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006231"}}, {"model": "wells.bcgs_numbers", "pk": 90, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006233"}}, {"model": "wells.bcgs_numbers", "pk": 91, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006311"}}, {"model": "wells.bcgs_numbers", "pk": 92, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006312"}}, {"model": "wells.bcgs_numbers", "pk": 93, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006321"}}, {"model": "wells.bcgs_numbers", "pk": 94, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006322"}}, {"model": "wells.bcgs_numbers", "pk": 95, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006331"}}, {"model": "wells.bcgs_numbers", "pk": 96, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006333"}}, {"model": "wells.bcgs_numbers", "pk": 97, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E007111"}}, {"model": "wells.bcgs_numbers", "pk": 98, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E007112"}}, {"model": "wells.bcgs_numbers", "pk": 99, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E007113"}}, {"model": "wells.bcgs_numbers", "pk": 100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E007411"}}, {"model": "wells.bcgs_numbers", "pk": 101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E007433"}}, {"model": "wells.bcgs_numbers", "pk": 102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008121"}}, {"model": "wells.bcgs_numbers", "pk": 103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008122"}}, {"model": "wells.bcgs_numbers", "pk": 104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008123"}}, {"model": "wells.bcgs_numbers", "pk": 105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008124"}}, {"model": "wells.bcgs_numbers", "pk": 106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008141"}}, {"model": "wells.bcgs_numbers", "pk": 107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008144"}}, {"model": "wells.bcgs_numbers", "pk": 108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008211"}}, {"model": "wells.bcgs_numbers", "pk": 109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008212"}}, {"model": "wells.bcgs_numbers", "pk": 110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008213"}}, {"model": "wells.bcgs_numbers", "pk": 111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008214"}}, {"model": "wells.bcgs_numbers", "pk": 112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008221"}}, {"model": "wells.bcgs_numbers", "pk": 113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008222"}}, {"model": "wells.bcgs_numbers", "pk": 114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008223"}}, {"model": "wells.bcgs_numbers", "pk": 115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008224"}}, {"model": "wells.bcgs_numbers", "pk": 116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008231"}}, {"model": "wells.bcgs_numbers", "pk": 117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008232"}}, {"model": "wells.bcgs_numbers", "pk": 118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008233"}}, {"model": "wells.bcgs_numbers", "pk": 119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008234"}}, {"model": "wells.bcgs_numbers", "pk": 120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008241"}}, {"model": "wells.bcgs_numbers", "pk": 121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008242"}}, {"model": "wells.bcgs_numbers", "pk": 122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008243"}}, {"model": "wells.bcgs_numbers", "pk": 123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008341"}}, {"model": "wells.bcgs_numbers", "pk": 124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008342"}}, {"model": "wells.bcgs_numbers", "pk": 125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008343"}}, {"model": "wells.bcgs_numbers", "pk": 126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008411"}}, {"model": "wells.bcgs_numbers", "pk": 127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008412"}}, {"model": "wells.bcgs_numbers", "pk": 128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008413"}}, {"model": "wells.bcgs_numbers", "pk": 129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008414"}}, {"model": "wells.bcgs_numbers", "pk": 130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008421"}}, {"model": "wells.bcgs_numbers", "pk": 131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008423"}}, {"model": "wells.bcgs_numbers", "pk": 132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008432"}}, {"model": "wells.bcgs_numbers", "pk": 133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E008434"}}, {"model": "wells.bcgs_numbers", "pk": 134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009111"}}, {"model": "wells.bcgs_numbers", "pk": 135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009112"}}, {"model": "wells.bcgs_numbers", "pk": 136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009113"}}, {"model": "wells.bcgs_numbers", "pk": 137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009114"}}, {"model": "wells.bcgs_numbers", "pk": 138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009131"}}, {"model": "wells.bcgs_numbers", "pk": 139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009212"}}, {"model": "wells.bcgs_numbers", "pk": 140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009214"}}, {"model": "wells.bcgs_numbers", "pk": 141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009221"}}, {"model": "wells.bcgs_numbers", "pk": 142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009222"}}, {"model": "wells.bcgs_numbers", "pk": 143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009223"}}, {"model": "wells.bcgs_numbers", "pk": 144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009224"}}, {"model": "wells.bcgs_numbers", "pk": 145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009242"}}, {"model": "wells.bcgs_numbers", "pk": 146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009244"}}, {"model": "wells.bcgs_numbers", "pk": 147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E009422"}}, {"model": "wells.bcgs_numbers", "pk": 148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E010313"}}, {"model": "wells.bcgs_numbers", "pk": 149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E010331"}}, {"model": "wells.bcgs_numbers", "pk": 150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E011433"}}, {"model": "wells.bcgs_numbers", "pk": 151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E011434"}}, {"model": "wells.bcgs_numbers", "pk": 152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E011443"}}, {"model": "wells.bcgs_numbers", "pk": 153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E011444"}}, {"model": "wells.bcgs_numbers", "pk": 154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012114"}}, {"model": "wells.bcgs_numbers", "pk": 155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012121"}}, {"model": "wells.bcgs_numbers", "pk": 156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012122"}}, {"model": "wells.bcgs_numbers", "pk": 157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012123"}}, {"model": "wells.bcgs_numbers", "pk": 158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012141"}}, {"model": "wells.bcgs_numbers", "pk": 159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012143"}}, {"model": "wells.bcgs_numbers", "pk": 160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E012213"}}, {"model": "wells.bcgs_numbers", "pk": 161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012234"}}, {"model": "wells.bcgs_numbers", "pk": 162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012312"}}, {"model": "wells.bcgs_numbers", "pk": 163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012314"}}, {"model": "wells.bcgs_numbers", "pk": 164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012321"}}, {"model": "wells.bcgs_numbers", "pk": 165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012322"}}, {"model": "wells.bcgs_numbers", "pk": 166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012323"}}, {"model": "wells.bcgs_numbers", "pk": 167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012331"}}, {"model": "wells.bcgs_numbers", "pk": 168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012332"}}, {"model": "wells.bcgs_numbers", "pk": 169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012333"}}, {"model": "wells.bcgs_numbers", "pk": 170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012334"}}, {"model": "wells.bcgs_numbers", "pk": 171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012341"}}, {"model": "wells.bcgs_numbers", "pk": 172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012343"}}, {"model": "wells.bcgs_numbers", "pk": 173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E012442"}}, {"model": "wells.bcgs_numbers", "pk": 174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013112"}}, {"model": "wells.bcgs_numbers", "pk": 175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013113"}}, {"model": "wells.bcgs_numbers", "pk": 176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013114"}}, {"model": "wells.bcgs_numbers", "pk": 177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013121"}}, {"model": "wells.bcgs_numbers", "pk": 178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013122"}}, {"model": "wells.bcgs_numbers", "pk": 179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013131"}}, {"model": "wells.bcgs_numbers", "pk": 180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013132"}}, {"model": "wells.bcgs_numbers", "pk": 181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013133"}}, {"model": "wells.bcgs_numbers", "pk": 182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013134"}}, {"model": "wells.bcgs_numbers", "pk": 183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013141"}}, {"model": "wells.bcgs_numbers", "pk": 184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013142"}}, {"model": "wells.bcgs_numbers", "pk": 185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013232"}}, {"model": "wells.bcgs_numbers", "pk": 186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013311"}}, {"model": "wells.bcgs_numbers", "pk": 187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013312"}}, {"model": "wells.bcgs_numbers", "pk": 188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013313"}}, {"model": "wells.bcgs_numbers", "pk": 189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013314"}}, {"model": "wells.bcgs_numbers", "pk": 190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013321"}}, {"model": "wells.bcgs_numbers", "pk": 191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013322"}}, {"model": "wells.bcgs_numbers", "pk": 192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013323"}}, {"model": "wells.bcgs_numbers", "pk": 193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013331"}}, {"model": "wells.bcgs_numbers", "pk": 194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013332"}}, {"model": "wells.bcgs_numbers", "pk": 195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013334"}}, {"model": "wells.bcgs_numbers", "pk": 196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013341"}}, {"model": "wells.bcgs_numbers", "pk": 197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013342"}}, {"model": "wells.bcgs_numbers", "pk": 198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013343"}}, {"model": "wells.bcgs_numbers", "pk": 199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E014232"}}, {"model": "wells.bcgs_numbers", "pk": 200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E014414"}}, {"model": "wells.bcgs_numbers", "pk": 201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016111"}}, {"model": "wells.bcgs_numbers", "pk": 202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016113"}}, {"model": "wells.bcgs_numbers", "pk": 203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016121"}}, {"model": "wells.bcgs_numbers", "pk": 204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016133"}}, {"model": "wells.bcgs_numbers", "pk": 205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016231"}}, {"model": "wells.bcgs_numbers", "pk": 206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016311"}}, {"model": "wells.bcgs_numbers", "pk": 207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016313"}}, {"model": "wells.bcgs_numbers", "pk": 208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016314"}}, {"model": "wells.bcgs_numbers", "pk": 209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016331"}}, {"model": "wells.bcgs_numbers", "pk": 210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016332"}}, {"model": "wells.bcgs_numbers", "pk": 211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E016334"}}, {"model": "wells.bcgs_numbers", "pk": 212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E017233"}}, {"model": "wells.bcgs_numbers", "pk": 213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E017423"}}, {"model": "wells.bcgs_numbers", "pk": 214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E017424"}}, {"model": "wells.bcgs_numbers", "pk": 215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018111"}}, {"model": "wells.bcgs_numbers", "pk": 216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018133"}}, {"model": "wells.bcgs_numbers", "pk": 217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018143"}}, {"model": "wells.bcgs_numbers", "pk": 218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018212"}}, {"model": "wells.bcgs_numbers", "pk": 219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018221"}}, {"model": "wells.bcgs_numbers", "pk": 220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018223"}}, {"model": "wells.bcgs_numbers", "pk": 221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018231"}}, {"model": "wells.bcgs_numbers", "pk": 222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018243"}}, {"model": "wells.bcgs_numbers", "pk": 223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018414"}}, {"model": "wells.bcgs_numbers", "pk": 224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018423"}}, {"model": "wells.bcgs_numbers", "pk": 225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018432"}}, {"model": "wells.bcgs_numbers", "pk": 226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018434"}}, {"model": "wells.bcgs_numbers", "pk": 227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E018441"}}, {"model": "wells.bcgs_numbers", "pk": 228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E019221"}}, {"model": "wells.bcgs_numbers", "pk": 229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E019223"}}, {"model": "wells.bcgs_numbers", "pk": 230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021113"}}, {"model": "wells.bcgs_numbers", "pk": 231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021114"}}, {"model": "wells.bcgs_numbers", "pk": 232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021121"}}, {"model": "wells.bcgs_numbers", "pk": 233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021122"}}, {"model": "wells.bcgs_numbers", "pk": 234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021123"}}, {"model": "wells.bcgs_numbers", "pk": 235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021124"}}, {"model": "wells.bcgs_numbers", "pk": 236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021131"}}, {"model": "wells.bcgs_numbers", "pk": 237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021132"}}, {"model": "wells.bcgs_numbers", "pk": 238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021133"}}, {"model": "wells.bcgs_numbers", "pk": 239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021143"}}, {"model": "wells.bcgs_numbers", "pk": 240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021211"}}, {"model": "wells.bcgs_numbers", "pk": 241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021212"}}, {"model": "wells.bcgs_numbers", "pk": 242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021221"}}, {"model": "wells.bcgs_numbers", "pk": 243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021222"}}, {"model": "wells.bcgs_numbers", "pk": 244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021223"}}, {"model": "wells.bcgs_numbers", "pk": 245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021224"}}, {"model": "wells.bcgs_numbers", "pk": 246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021241"}}, {"model": "wells.bcgs_numbers", "pk": 247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021242"}}, {"model": "wells.bcgs_numbers", "pk": 248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021243"}}, {"model": "wells.bcgs_numbers", "pk": 249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021244"}}, {"model": "wells.bcgs_numbers", "pk": 250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021421"}}, {"model": "wells.bcgs_numbers", "pk": 251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021422"}}, {"model": "wells.bcgs_numbers", "pk": 252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021423"}}, {"model": "wells.bcgs_numbers", "pk": 253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021441"}}, {"model": "wells.bcgs_numbers", "pk": 254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021443"}}, {"model": "wells.bcgs_numbers", "pk": 255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E021444"}}, {"model": "wells.bcgs_numbers", "pk": 256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022111"}}, {"model": "wells.bcgs_numbers", "pk": 257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022223"}}, {"model": "wells.bcgs_numbers", "pk": 258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022244"}}, {"model": "wells.bcgs_numbers", "pk": 259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022334"}}, {"model": "wells.bcgs_numbers", "pk": 260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022341"}}, {"model": "wells.bcgs_numbers", "pk": 261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022421"}}, {"model": "wells.bcgs_numbers", "pk": 262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E022422"}}, {"model": "wells.bcgs_numbers", "pk": 263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E022424"}}, {"model": "wells.bcgs_numbers", "pk": 264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E022441"}}, {"model": "wells.bcgs_numbers", "pk": 265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E022442"}}, {"model": "wells.bcgs_numbers", "pk": 267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023111"}}, {"model": "wells.bcgs_numbers", "pk": 268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023112"}}, {"model": "wells.bcgs_numbers", "pk": 269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023113"}}, {"model": "wells.bcgs_numbers", "pk": 270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023114"}}, {"model": "wells.bcgs_numbers", "pk": 271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023121"}}, {"model": "wells.bcgs_numbers", "pk": 272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023122"}}, {"model": "wells.bcgs_numbers", "pk": 273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023123"}}, {"model": "wells.bcgs_numbers", "pk": 274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023131"}}, {"model": "wells.bcgs_numbers", "pk": 275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023132"}}, {"model": "wells.bcgs_numbers", "pk": 276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023133"}}, {"model": "wells.bcgs_numbers", "pk": 277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023134"}}, {"model": "wells.bcgs_numbers", "pk": 278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023141"}}, {"model": "wells.bcgs_numbers", "pk": 279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023143"}}, {"model": "wells.bcgs_numbers", "pk": 280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023144"}}, {"model": "wells.bcgs_numbers", "pk": 281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023311"}}, {"model": "wells.bcgs_numbers", "pk": 282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023313"}}, {"model": "wells.bcgs_numbers", "pk": 283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023321"}}, {"model": "wells.bcgs_numbers", "pk": 284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023322"}}, {"model": "wells.bcgs_numbers", "pk": 285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023323"}}, {"model": "wells.bcgs_numbers", "pk": 286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023324"}}, {"model": "wells.bcgs_numbers", "pk": 287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023331"}}, {"model": "wells.bcgs_numbers", "pk": 288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023334"}}, {"model": "wells.bcgs_numbers", "pk": 289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023342"}}, {"model": "wells.bcgs_numbers", "pk": 290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023413"}}, {"model": "wells.bcgs_numbers", "pk": 291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E023431"}}, {"model": "wells.bcgs_numbers", "pk": 292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E024123"}}, {"model": "wells.bcgs_numbers", "pk": 293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E024412"}}, {"model": "wells.bcgs_numbers", "pk": 294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E025222"}}, {"model": "wells.bcgs_numbers", "pk": 295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E025244"}}, {"model": "wells.bcgs_numbers", "pk": 296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E026112"}}, {"model": "wells.bcgs_numbers", "pk": 297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E026141"}}, {"model": "wells.bcgs_numbers", "pk": 298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E026431"}}, {"model": "wells.bcgs_numbers", "pk": 299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E028222"}}, {"model": "wells.bcgs_numbers", "pk": 300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E031221"}}, {"model": "wells.bcgs_numbers", "pk": 301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E031344"}}, {"model": "wells.bcgs_numbers", "pk": 302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E031422"}}, {"model": "wells.bcgs_numbers", "pk": 303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E031424"}}, {"model": "wells.bcgs_numbers", "pk": 304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E031442"}}, {"model": "wells.bcgs_numbers", "pk": 305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032112"}}, {"model": "wells.bcgs_numbers", "pk": 306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032113"}}, {"model": "wells.bcgs_numbers", "pk": 307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032122"}}, {"model": "wells.bcgs_numbers", "pk": 308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032123"}}, {"model": "wells.bcgs_numbers", "pk": 309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032124"}}, {"model": "wells.bcgs_numbers", "pk": 310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032131"}}, {"model": "wells.bcgs_numbers", "pk": 311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032141"}}, {"model": "wells.bcgs_numbers", "pk": 312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032142"}}, {"model": "wells.bcgs_numbers", "pk": 313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032143"}}, {"model": "wells.bcgs_numbers", "pk": 314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032144"}}, {"model": "wells.bcgs_numbers", "pk": 315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032213"}}, {"model": "wells.bcgs_numbers", "pk": 316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032214"}}, {"model": "wells.bcgs_numbers", "pk": 317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032221"}}, {"model": "wells.bcgs_numbers", "pk": 318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032223"}}, {"model": "wells.bcgs_numbers", "pk": 319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032224"}}, {"model": "wells.bcgs_numbers", "pk": 320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032231"}}, {"model": "wells.bcgs_numbers", "pk": 321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032243"}}, {"model": "wells.bcgs_numbers", "pk": 322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032322"}}, {"model": "wells.bcgs_numbers", "pk": 323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032344"}}, {"model": "wells.bcgs_numbers", "pk": 324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032411"}}, {"model": "wells.bcgs_numbers", "pk": 325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032413"}}, {"model": "wells.bcgs_numbers", "pk": 326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032421"}}, {"model": "wells.bcgs_numbers", "pk": 327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032422"}}, {"model": "wells.bcgs_numbers", "pk": 328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032423"}}, {"model": "wells.bcgs_numbers", "pk": 329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032424"}}, {"model": "wells.bcgs_numbers", "pk": 330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032442"}}, {"model": "wells.bcgs_numbers", "pk": 331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032444"}}, {"model": "wells.bcgs_numbers", "pk": 332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E033112"}}, {"model": "wells.bcgs_numbers", "pk": 333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E033114"}}, {"model": "wells.bcgs_numbers", "pk": 334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E033121"}}, {"model": "wells.bcgs_numbers", "pk": 335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033123"}}, {"model": "wells.bcgs_numbers", "pk": 336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033131"}}, {"model": "wells.bcgs_numbers", "pk": 337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033132"}}, {"model": "wells.bcgs_numbers", "pk": 338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033133"}}, {"model": "wells.bcgs_numbers", "pk": 339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033134"}}, {"model": "wells.bcgs_numbers", "pk": 340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033141"}}, {"model": "wells.bcgs_numbers", "pk": 341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033143"}}, {"model": "wells.bcgs_numbers", "pk": 342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033144"}}, {"model": "wells.bcgs_numbers", "pk": 343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033311"}}, {"model": "wells.bcgs_numbers", "pk": 344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033312"}}, {"model": "wells.bcgs_numbers", "pk": 345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033313"}}, {"model": "wells.bcgs_numbers", "pk": 346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033314"}}, {"model": "wells.bcgs_numbers", "pk": 347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033321"}}, {"model": "wells.bcgs_numbers", "pk": 348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033323"}}, {"model": "wells.bcgs_numbers", "pk": 349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033331"}}, {"model": "wells.bcgs_numbers", "pk": 350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033332"}}, {"model": "wells.bcgs_numbers", "pk": 351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033333"}}, {"model": "wells.bcgs_numbers", "pk": 352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033334"}}, {"model": "wells.bcgs_numbers", "pk": 353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033341"}}, {"model": "wells.bcgs_numbers", "pk": 354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033343"}}, {"model": "wells.bcgs_numbers", "pk": 355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E034223"}}, {"model": "wells.bcgs_numbers", "pk": 356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E035111"}}, {"model": "wells.bcgs_numbers", "pk": 357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E035221"}}, {"model": "wells.bcgs_numbers", "pk": 358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E035314"}}, {"model": "wells.bcgs_numbers", "pk": 359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E035342"}}, {"model": "wells.bcgs_numbers", "pk": 360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E036213"}}, {"model": "wells.bcgs_numbers", "pk": 361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E036412"}}, {"model": "wells.bcgs_numbers", "pk": 362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E041443"}}, {"model": "wells.bcgs_numbers", "pk": 363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042141"}}, {"model": "wells.bcgs_numbers", "pk": 364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042143"}}, {"model": "wells.bcgs_numbers", "pk": 365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042222"}}, {"model": "wells.bcgs_numbers", "pk": 366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042223"}}, {"model": "wells.bcgs_numbers", "pk": 367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042224"}}, {"model": "wells.bcgs_numbers", "pk": 368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042244"}}, {"model": "wells.bcgs_numbers", "pk": 369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042312"}}, {"model": "wells.bcgs_numbers", "pk": 370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042321"}}, {"model": "wells.bcgs_numbers", "pk": 371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042323"}}, {"model": "wells.bcgs_numbers", "pk": 372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042341"}}, {"model": "wells.bcgs_numbers", "pk": 373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042343"}}, {"model": "wells.bcgs_numbers", "pk": 374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042422"}}, {"model": "wells.bcgs_numbers", "pk": 375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042424"}}, {"model": "wells.bcgs_numbers", "pk": 376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042441"}}, {"model": "wells.bcgs_numbers", "pk": 377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042442"}}, {"model": "wells.bcgs_numbers", "pk": 378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042443"}}, {"model": "wells.bcgs_numbers", "pk": 379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E042444"}}, {"model": "wells.bcgs_numbers", "pk": 380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043111"}}, {"model": "wells.bcgs_numbers", "pk": 381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043112"}}, {"model": "wells.bcgs_numbers", "pk": 382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043114"}}, {"model": "wells.bcgs_numbers", "pk": 383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043131"}}, {"model": "wells.bcgs_numbers", "pk": 384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043132"}}, {"model": "wells.bcgs_numbers", "pk": 385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043133"}}, {"model": "wells.bcgs_numbers", "pk": 386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043311"}}, {"model": "wells.bcgs_numbers", "pk": 387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043312"}}, {"model": "wells.bcgs_numbers", "pk": 388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043313"}}, {"model": "wells.bcgs_numbers", "pk": 389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043314"}}, {"model": "wells.bcgs_numbers", "pk": 390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043331"}}, {"model": "wells.bcgs_numbers", "pk": 391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043332"}}, {"model": "wells.bcgs_numbers", "pk": 392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043333"}}, {"model": "wells.bcgs_numbers", "pk": 393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043334"}}, {"model": "wells.bcgs_numbers", "pk": 394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E043341"}}, {"model": "wells.bcgs_numbers", "pk": 395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E043342"}}, {"model": "wells.bcgs_numbers", "pk": 396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E043343"}}, {"model": "wells.bcgs_numbers", "pk": 397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E043344"}}, {"model": "wells.bcgs_numbers", "pk": 398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045124"}}, {"model": "wells.bcgs_numbers", "pk": 399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045213"}}, {"model": "wells.bcgs_numbers", "pk": 400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045231"}}, {"model": "wells.bcgs_numbers", "pk": 401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045233"}}, {"model": "wells.bcgs_numbers", "pk": 402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045234"}}, {"model": "wells.bcgs_numbers", "pk": 403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045343"}}, {"model": "wells.bcgs_numbers", "pk": 404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045344"}}, {"model": "wells.bcgs_numbers", "pk": 405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045412"}}, {"model": "wells.bcgs_numbers", "pk": 406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045413"}}, {"model": "wells.bcgs_numbers", "pk": 407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045423"}}, {"model": "wells.bcgs_numbers", "pk": 408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045431"}}, {"model": "wells.bcgs_numbers", "pk": 409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045441"}}, {"model": "wells.bcgs_numbers", "pk": 410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E045443"}}, {"model": "wells.bcgs_numbers", "pk": 411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E048433"}}, {"model": "wells.bcgs_numbers", "pk": 412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E051434"}}, {"model": "wells.bcgs_numbers", "pk": 413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052112"}}, {"model": "wells.bcgs_numbers", "pk": 414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052113"}}, {"model": "wells.bcgs_numbers", "pk": 415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052114"}}, {"model": "wells.bcgs_numbers", "pk": 416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052221"}}, {"model": "wells.bcgs_numbers", "pk": 417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052222"}}, {"model": "wells.bcgs_numbers", "pk": 418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052224"}}, {"model": "wells.bcgs_numbers", "pk": 419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052243"}}, {"model": "wells.bcgs_numbers", "pk": 420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052334"}}, {"model": "wells.bcgs_numbers", "pk": 421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052341"}}, {"model": "wells.bcgs_numbers", "pk": 422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052343"}}, {"model": "wells.bcgs_numbers", "pk": 423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052414"}}, {"model": "wells.bcgs_numbers", "pk": 424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052423"}}, {"model": "wells.bcgs_numbers", "pk": 425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052424"}}, {"model": "wells.bcgs_numbers", "pk": 426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052433"}}, {"model": "wells.bcgs_numbers", "pk": 427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052441"}}, {"model": "wells.bcgs_numbers", "pk": 428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E052444"}}, {"model": "wells.bcgs_numbers", "pk": 429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053111"}}, {"model": "wells.bcgs_numbers", "pk": 430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053112"}}, {"model": "wells.bcgs_numbers", "pk": 431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053121"}}, {"model": "wells.bcgs_numbers", "pk": 432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053123"}}, {"model": "wells.bcgs_numbers", "pk": 433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053124"}}, {"model": "wells.bcgs_numbers", "pk": 434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053132"}}, {"model": "wells.bcgs_numbers", "pk": 435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053133"}}, {"model": "wells.bcgs_numbers", "pk": 436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053134"}}, {"model": "wells.bcgs_numbers", "pk": 437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053141"}}, {"model": "wells.bcgs_numbers", "pk": 438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053143"}}, {"model": "wells.bcgs_numbers", "pk": 439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053311"}}, {"model": "wells.bcgs_numbers", "pk": 440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053312"}}, {"model": "wells.bcgs_numbers", "pk": 441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053313"}}, {"model": "wells.bcgs_numbers", "pk": 442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053314"}}, {"model": "wells.bcgs_numbers", "pk": 443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053331"}}, {"model": "wells.bcgs_numbers", "pk": 444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053332"}}, {"model": "wells.bcgs_numbers", "pk": 445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053333"}}, {"model": "wells.bcgs_numbers", "pk": 446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053334"}}, {"model": "wells.bcgs_numbers", "pk": 447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053343"}}, {"model": "wells.bcgs_numbers", "pk": 448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E053412"}}, {"model": "wells.bcgs_numbers", "pk": 449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E055122"}}, {"model": "wells.bcgs_numbers", "pk": 450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E057331"}}, {"model": "wells.bcgs_numbers", "pk": 451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E061324"}}, {"model": "wells.bcgs_numbers", "pk": 452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E061333"}}, {"model": "wells.bcgs_numbers", "pk": 453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E061422"}}, {"model": "wells.bcgs_numbers", "pk": 454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E061424"}}, {"model": "wells.bcgs_numbers", "pk": 455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E061442"}}, {"model": "wells.bcgs_numbers", "pk": 456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E061443"}}, {"model": "wells.bcgs_numbers", "pk": 457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E061444"}}, {"model": "wells.bcgs_numbers", "pk": 458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062111"}}, {"model": "wells.bcgs_numbers", "pk": 459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062112"}}, {"model": "wells.bcgs_numbers", "pk": 460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062113"}}, {"model": "wells.bcgs_numbers", "pk": 461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062131"}}, {"model": "wells.bcgs_numbers", "pk": 462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062132"}}, {"model": "wells.bcgs_numbers", "pk": 463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062144"}}, {"model": "wells.bcgs_numbers", "pk": 464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062211"}}, {"model": "wells.bcgs_numbers", "pk": 465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062212"}}, {"model": "wells.bcgs_numbers", "pk": 466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062244"}}, {"model": "wells.bcgs_numbers", "pk": 467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062311"}}, {"model": "wells.bcgs_numbers", "pk": 468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062313"}}, {"model": "wells.bcgs_numbers", "pk": 469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062324"}}, {"model": "wells.bcgs_numbers", "pk": 470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062331"}}, {"model": "wells.bcgs_numbers", "pk": 471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062333"}}, {"model": "wells.bcgs_numbers", "pk": 472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062342"}}, {"model": "wells.bcgs_numbers", "pk": 473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062343"}}, {"model": "wells.bcgs_numbers", "pk": 474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062421"}}, {"model": "wells.bcgs_numbers", "pk": 475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062422"}}, {"model": "wells.bcgs_numbers", "pk": 476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E062424"}}, {"model": "wells.bcgs_numbers", "pk": 477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E063111"}}, {"model": "wells.bcgs_numbers", "pk": 478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E063112"}}, {"model": "wells.bcgs_numbers", "pk": 479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E063113"}}, {"model": "wells.bcgs_numbers", "pk": 480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E065112"}}, {"model": "wells.bcgs_numbers", "pk": 481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E065113"}}, {"model": "wells.bcgs_numbers", "pk": 482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E067113"}}, {"model": "wells.bcgs_numbers", "pk": 483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E071443"}}, {"model": "wells.bcgs_numbers", "pk": 484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072114"}}, {"model": "wells.bcgs_numbers", "pk": 485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072134"}}, {"model": "wells.bcgs_numbers", "pk": 486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072311"}}, {"model": "wells.bcgs_numbers", "pk": 487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072341"}}, {"model": "wells.bcgs_numbers", "pk": 488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072342"}}, {"model": "wells.bcgs_numbers", "pk": 489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072344"}}, {"model": "wells.bcgs_numbers", "pk": 490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E072433"}}, {"model": "wells.bcgs_numbers", "pk": 491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E073331"}}, {"model": "wells.bcgs_numbers", "pk": 492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E073332"}}, {"model": "wells.bcgs_numbers", "pk": 493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E073341"}}, {"model": "wells.bcgs_numbers", "pk": 494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E073342"}}, {"model": "wells.bcgs_numbers", "pk": 495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E073343"}}, {"model": "wells.bcgs_numbers", "pk": 496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E073433"}}, {"model": "wells.bcgs_numbers", "pk": 497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E074334"}}, {"model": "wells.bcgs_numbers", "pk": 498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E075133"}}, {"model": "wells.bcgs_numbers", "pk": 499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E075134"}}, {"model": "wells.bcgs_numbers", "pk": 500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E080323"}}, {"model": "wells.bcgs_numbers", "pk": 501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E080334"}}, {"model": "wells.bcgs_numbers", "pk": 502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E080341"}}, {"model": "wells.bcgs_numbers", "pk": 503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082114"}}, {"model": "wells.bcgs_numbers", "pk": 504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082121"}}, {"model": "wells.bcgs_numbers", "pk": 505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082123"}}, {"model": "wells.bcgs_numbers", "pk": 506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082132"}}, {"model": "wells.bcgs_numbers", "pk": 507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082134"}}, {"model": "wells.bcgs_numbers", "pk": 508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082144"}}, {"model": "wells.bcgs_numbers", "pk": 509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082212"}}, {"model": "wells.bcgs_numbers", "pk": 510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082214"}}, {"model": "wells.bcgs_numbers", "pk": 511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082221"}}, {"model": "wells.bcgs_numbers", "pk": 512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082222"}}, {"model": "wells.bcgs_numbers", "pk": 513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082223"}}, {"model": "wells.bcgs_numbers", "pk": 514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082224"}}, {"model": "wells.bcgs_numbers", "pk": 515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082231"}}, {"model": "wells.bcgs_numbers", "pk": 516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082232"}}, {"model": "wells.bcgs_numbers", "pk": 517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082233"}}, {"model": "wells.bcgs_numbers", "pk": 518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082234"}}, {"model": "wells.bcgs_numbers", "pk": 519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082241"}}, {"model": "wells.bcgs_numbers", "pk": 520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082242"}}, {"model": "wells.bcgs_numbers", "pk": 521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082243"}}, {"model": "wells.bcgs_numbers", "pk": 522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082244"}}, {"model": "wells.bcgs_numbers", "pk": 523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082412"}}, {"model": "wells.bcgs_numbers", "pk": 524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E082421"}}, {"model": "wells.bcgs_numbers", "pk": 525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E082422"}}, {"model": "wells.bcgs_numbers", "pk": 526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E082424"}}, {"model": "wells.bcgs_numbers", "pk": 527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083113"}}, {"model": "wells.bcgs_numbers", "pk": 528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083122"}}, {"model": "wells.bcgs_numbers", "pk": 529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083124"}}, {"model": "wells.bcgs_numbers", "pk": 530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083131"}}, {"model": "wells.bcgs_numbers", "pk": 531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083132"}}, {"model": "wells.bcgs_numbers", "pk": 532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083133"}}, {"model": "wells.bcgs_numbers", "pk": 533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083141"}}, {"model": "wells.bcgs_numbers", "pk": 534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083211"}}, {"model": "wells.bcgs_numbers", "pk": 535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083212"}}, {"model": "wells.bcgs_numbers", "pk": 536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083213"}}, {"model": "wells.bcgs_numbers", "pk": 537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083214"}}, {"model": "wells.bcgs_numbers", "pk": 538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083223"}}, {"model": "wells.bcgs_numbers", "pk": 539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083231"}}, {"model": "wells.bcgs_numbers", "pk": 540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083232"}}, {"model": "wells.bcgs_numbers", "pk": 541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083233"}}, {"model": "wells.bcgs_numbers", "pk": 542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083234"}}, {"model": "wells.bcgs_numbers", "pk": 543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083241"}}, {"model": "wells.bcgs_numbers", "pk": 544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083242"}}, {"model": "wells.bcgs_numbers", "pk": 545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083243"}}, {"model": "wells.bcgs_numbers", "pk": 546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083244"}}, {"model": "wells.bcgs_numbers", "pk": 547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083311"}}, {"model": "wells.bcgs_numbers", "pk": 548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083313"}}, {"model": "wells.bcgs_numbers", "pk": 549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083314"}}, {"model": "wells.bcgs_numbers", "pk": 550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083321"}}, {"model": "wells.bcgs_numbers", "pk": 551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083323"}}, {"model": "wells.bcgs_numbers", "pk": 552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083331"}}, {"model": "wells.bcgs_numbers", "pk": 553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083341"}}, {"model": "wells.bcgs_numbers", "pk": 554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083343"}}, {"model": "wells.bcgs_numbers", "pk": 555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083411"}}, {"model": "wells.bcgs_numbers", "pk": 556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083412"}}, {"model": "wells.bcgs_numbers", "pk": 557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083413"}}, {"model": "wells.bcgs_numbers", "pk": 558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083414"}}, {"model": "wells.bcgs_numbers", "pk": 559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083421"}}, {"model": "wells.bcgs_numbers", "pk": 560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083422"}}, {"model": "wells.bcgs_numbers", "pk": 561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083423"}}, {"model": "wells.bcgs_numbers", "pk": 562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083424"}}, {"model": "wells.bcgs_numbers", "pk": 563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083431"}}, {"model": "wells.bcgs_numbers", "pk": 564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083432"}}, {"model": "wells.bcgs_numbers", "pk": 565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083433"}}, {"model": "wells.bcgs_numbers", "pk": 566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083434"}}, {"model": "wells.bcgs_numbers", "pk": 567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083441"}}, {"model": "wells.bcgs_numbers", "pk": 568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083442"}}, {"model": "wells.bcgs_numbers", "pk": 569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E083444"}}, {"model": "wells.bcgs_numbers", "pk": 570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084113"}}, {"model": "wells.bcgs_numbers", "pk": 571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084131"}}, {"model": "wells.bcgs_numbers", "pk": 572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084133"}}, {"model": "wells.bcgs_numbers", "pk": 573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084212"}}, {"model": "wells.bcgs_numbers", "pk": 574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084224"}}, {"model": "wells.bcgs_numbers", "pk": 575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084234"}}, {"model": "wells.bcgs_numbers", "pk": 576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084311"}}, {"model": "wells.bcgs_numbers", "pk": 577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084313"}}, {"model": "wells.bcgs_numbers", "pk": 578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084314"}}, {"model": "wells.bcgs_numbers", "pk": 579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084323"}}, {"model": "wells.bcgs_numbers", "pk": 580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084331"}}, {"model": "wells.bcgs_numbers", "pk": 581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084332"}}, {"model": "wells.bcgs_numbers", "pk": 582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084333"}}, {"model": "wells.bcgs_numbers", "pk": 583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084334"}}, {"model": "wells.bcgs_numbers", "pk": 584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084341"}}, {"model": "wells.bcgs_numbers", "pk": 585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084411"}}, {"model": "wells.bcgs_numbers", "pk": 586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084412"}}, {"model": "wells.bcgs_numbers", "pk": 587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084414"}}, {"model": "wells.bcgs_numbers", "pk": 588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084421"}}, {"model": "wells.bcgs_numbers", "pk": 589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084422"}}, {"model": "wells.bcgs_numbers", "pk": 590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084423"}}, {"model": "wells.bcgs_numbers", "pk": 591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084424"}}, {"model": "wells.bcgs_numbers", "pk": 592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084432"}}, {"model": "wells.bcgs_numbers", "pk": 593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084434"}}, {"model": "wells.bcgs_numbers", "pk": 594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084441"}}, {"model": "wells.bcgs_numbers", "pk": 595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084442"}}, {"model": "wells.bcgs_numbers", "pk": 596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E084443"}}, {"model": "wells.bcgs_numbers", "pk": 597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085211"}}, {"model": "wells.bcgs_numbers", "pk": 598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085223"}}, {"model": "wells.bcgs_numbers", "pk": 599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085233"}}, {"model": "wells.bcgs_numbers", "pk": 600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085313"}}, {"model": "wells.bcgs_numbers", "pk": 601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085314"}}, {"model": "wells.bcgs_numbers", "pk": 602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085321"}}, {"model": "wells.bcgs_numbers", "pk": 603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085322"}}, {"model": "wells.bcgs_numbers", "pk": 604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E085323"}}, {"model": "wells.bcgs_numbers", "pk": 605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E085324"}}, {"model": "wells.bcgs_numbers", "pk": 606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E085332"}}, {"model": "wells.bcgs_numbers", "pk": 607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E085341"}}, {"model": "wells.bcgs_numbers", "pk": 608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E085343"}}, {"model": "wells.bcgs_numbers", "pk": 609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090122"}}, {"model": "wells.bcgs_numbers", "pk": 610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090134"}}, {"model": "wells.bcgs_numbers", "pk": 611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090143"}}, {"model": "wells.bcgs_numbers", "pk": 612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090314"}}, {"model": "wells.bcgs_numbers", "pk": 613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090322"}}, {"model": "wells.bcgs_numbers", "pk": 614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090323"}}, {"model": "wells.bcgs_numbers", "pk": 615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090324"}}, {"model": "wells.bcgs_numbers", "pk": 616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090433"}}, {"model": "wells.bcgs_numbers", "pk": 617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E090434"}}, {"model": "wells.bcgs_numbers", "pk": 618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E092121"}}, {"model": "wells.bcgs_numbers", "pk": 619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093121"}}, {"model": "wells.bcgs_numbers", "pk": 620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093123"}}, {"model": "wells.bcgs_numbers", "pk": 621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093134"}}, {"model": "wells.bcgs_numbers", "pk": 622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093141"}}, {"model": "wells.bcgs_numbers", "pk": 623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093142"}}, {"model": "wells.bcgs_numbers", "pk": 624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093143"}}, {"model": "wells.bcgs_numbers", "pk": 625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093144"}}, {"model": "wells.bcgs_numbers", "pk": 626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093211"}}, {"model": "wells.bcgs_numbers", "pk": 627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093212"}}, {"model": "wells.bcgs_numbers", "pk": 628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093213"}}, {"model": "wells.bcgs_numbers", "pk": 629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093214"}}, {"model": "wells.bcgs_numbers", "pk": 630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093222"}}, {"model": "wells.bcgs_numbers", "pk": 631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093223"}}, {"model": "wells.bcgs_numbers", "pk": 632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093224"}}, {"model": "wells.bcgs_numbers", "pk": 633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093241"}}, {"model": "wells.bcgs_numbers", "pk": 634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093243"}}, {"model": "wells.bcgs_numbers", "pk": 635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093312"}}, {"model": "wells.bcgs_numbers", "pk": 636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093342"}}, {"model": "wells.bcgs_numbers", "pk": 637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093414"}}, {"model": "wells.bcgs_numbers", "pk": 638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093423"}}, {"model": "wells.bcgs_numbers", "pk": 639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093424"}}, {"model": "wells.bcgs_numbers", "pk": 640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093433"}}, {"model": "wells.bcgs_numbers", "pk": 641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093441"}}, {"model": "wells.bcgs_numbers", "pk": 642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093442"}}, {"model": "wells.bcgs_numbers", "pk": 643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093443"}}, {"model": "wells.bcgs_numbers", "pk": 644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093444"}}, {"model": "wells.bcgs_numbers", "pk": 645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094111"}}, {"model": "wells.bcgs_numbers", "pk": 646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094112"}}, {"model": "wells.bcgs_numbers", "pk": 647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094113"}}, {"model": "wells.bcgs_numbers", "pk": 648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094114"}}, {"model": "wells.bcgs_numbers", "pk": 649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094131"}}, {"model": "wells.bcgs_numbers", "pk": 650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094132"}}, {"model": "wells.bcgs_numbers", "pk": 651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094133"}}, {"model": "wells.bcgs_numbers", "pk": 652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094134"}}, {"model": "wells.bcgs_numbers", "pk": 653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094141"}}, {"model": "wells.bcgs_numbers", "pk": 654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094143"}}, {"model": "wells.bcgs_numbers", "pk": 655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094231"}}, {"model": "wells.bcgs_numbers", "pk": 656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094311"}}, {"model": "wells.bcgs_numbers", "pk": 657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094312"}}, {"model": "wells.bcgs_numbers", "pk": 658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094313"}}, {"model": "wells.bcgs_numbers", "pk": 659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094314"}}, {"model": "wells.bcgs_numbers", "pk": 660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094321"}}, {"model": "wells.bcgs_numbers", "pk": 661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094323"}}, {"model": "wells.bcgs_numbers", "pk": 662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094331"}}, {"model": "wells.bcgs_numbers", "pk": 663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094332"}}, {"model": "wells.bcgs_numbers", "pk": 664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094333"}}, {"model": "wells.bcgs_numbers", "pk": 665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E094341"}}, {"model": "wells.bcgs_numbers", "pk": 666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E095121"}}, {"model": "wells.bcgs_numbers", "pk": 667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E096143"}}, {"model": "wells.bcgs_numbers", "pk": 668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E100124"}}, {"model": "wells.bcgs_numbers", "pk": 669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E984424"}}, {"model": "wells.bcgs_numbers", "pk": 670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001121"}}, {"model": "wells.bcgs_numbers", "pk": 671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001221"}}, {"model": "wells.bcgs_numbers", "pk": 672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001223"}}, {"model": "wells.bcgs_numbers", "pk": 673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001243"}}, {"model": "wells.bcgs_numbers", "pk": 674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001314"}}, {"model": "wells.bcgs_numbers", "pk": 675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001422"}}, {"model": "wells.bcgs_numbers", "pk": 676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001424"}}, {"model": "wells.bcgs_numbers", "pk": 677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F001442"}}, {"model": "wells.bcgs_numbers", "pk": 678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002311"}}, {"model": "wells.bcgs_numbers", "pk": 679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002331"}}, {"model": "wells.bcgs_numbers", "pk": 680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002412"}}, {"model": "wells.bcgs_numbers", "pk": 681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002414"}}, {"model": "wells.bcgs_numbers", "pk": 682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002422"}}, {"model": "wells.bcgs_numbers", "pk": 683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002424"}}, {"model": "wells.bcgs_numbers", "pk": 684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002433"}}, {"model": "wells.bcgs_numbers", "pk": 685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002441"}}, {"model": "wells.bcgs_numbers", "pk": 686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002442"}}, {"model": "wells.bcgs_numbers", "pk": 687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F002443"}}, {"model": "wells.bcgs_numbers", "pk": 688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003111"}}, {"model": "wells.bcgs_numbers", "pk": 689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003133"}}, {"model": "wells.bcgs_numbers", "pk": 690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003311"}}, {"model": "wells.bcgs_numbers", "pk": 691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003313"}}, {"model": "wells.bcgs_numbers", "pk": 692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003314"}}, {"model": "wells.bcgs_numbers", "pk": 693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003331"}}, {"model": "wells.bcgs_numbers", "pk": 694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003332"}}, {"model": "wells.bcgs_numbers", "pk": 695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003334"}}, {"model": "wells.bcgs_numbers", "pk": 696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003341"}}, {"model": "wells.bcgs_numbers", "pk": 697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F003343"}}, {"model": "wells.bcgs_numbers", "pk": 698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F004211"}}, {"model": "wells.bcgs_numbers", "pk": 699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F007424"}}, {"model": "wells.bcgs_numbers", "pk": 700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F007441"}}, {"model": "wells.bcgs_numbers", "pk": 701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F007442"}}, {"model": "wells.bcgs_numbers", "pk": 702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F007444"}}, {"model": "wells.bcgs_numbers", "pk": 703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008112"}}, {"model": "wells.bcgs_numbers", "pk": 704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008122"}}, {"model": "wells.bcgs_numbers", "pk": 705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008124"}}, {"model": "wells.bcgs_numbers", "pk": 706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008132"}}, {"model": "wells.bcgs_numbers", "pk": 707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008142"}}, {"model": "wells.bcgs_numbers", "pk": 708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008144"}}, {"model": "wells.bcgs_numbers", "pk": 709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008211"}}, {"model": "wells.bcgs_numbers", "pk": 710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008213"}}, {"model": "wells.bcgs_numbers", "pk": 711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008214"}}, {"model": "wells.bcgs_numbers", "pk": 712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008221"}}, {"model": "wells.bcgs_numbers", "pk": 713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008223"}}, {"model": "wells.bcgs_numbers", "pk": 714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008232"}}, {"model": "wells.bcgs_numbers", "pk": 715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008233"}}, {"model": "wells.bcgs_numbers", "pk": 716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008241"}}, {"model": "wells.bcgs_numbers", "pk": 717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008243"}}, {"model": "wells.bcgs_numbers", "pk": 718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008322"}}, {"model": "wells.bcgs_numbers", "pk": 719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008323"}}, {"model": "wells.bcgs_numbers", "pk": 720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008324"}}, {"model": "wells.bcgs_numbers", "pk": 721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008332"}}, {"model": "wells.bcgs_numbers", "pk": 722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F008333"}}, {"model": "wells.bcgs_numbers", "pk": 723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008342"}}, {"model": "wells.bcgs_numbers", "pk": 724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008343"}}, {"model": "wells.bcgs_numbers", "pk": 725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008411"}}, {"model": "wells.bcgs_numbers", "pk": 726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008412"}}, {"model": "wells.bcgs_numbers", "pk": 727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008413"}}, {"model": "wells.bcgs_numbers", "pk": 728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008414"}}, {"model": "wells.bcgs_numbers", "pk": 729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008422"}}, {"model": "wells.bcgs_numbers", "pk": 730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008423"}}, {"model": "wells.bcgs_numbers", "pk": 731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008432"}}, {"model": "wells.bcgs_numbers", "pk": 732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008434"}}, {"model": "wells.bcgs_numbers", "pk": 733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008441"}}, {"model": "wells.bcgs_numbers", "pk": 734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F008442"}}, {"model": "wells.bcgs_numbers", "pk": 735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010111"}}, {"model": "wells.bcgs_numbers", "pk": 736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010112"}}, {"model": "wells.bcgs_numbers", "pk": 737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010113"}}, {"model": "wells.bcgs_numbers", "pk": 738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010131"}}, {"model": "wells.bcgs_numbers", "pk": 739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010132"}}, {"model": "wells.bcgs_numbers", "pk": 740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010312"}}, {"model": "wells.bcgs_numbers", "pk": 741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010314"}}, {"model": "wells.bcgs_numbers", "pk": 742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010323"}}, {"model": "wells.bcgs_numbers", "pk": 743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010341"}}, {"model": "wells.bcgs_numbers", "pk": 744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010342"}}, {"model": "wells.bcgs_numbers", "pk": 745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010431"}}, {"model": "wells.bcgs_numbers", "pk": 746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010433"}}, {"model": "wells.bcgs_numbers", "pk": 747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F011222"}}, {"model": "wells.bcgs_numbers", "pk": 748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012123"}}, {"model": "wells.bcgs_numbers", "pk": 749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012124"}}, {"model": "wells.bcgs_numbers", "pk": 750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012132"}}, {"model": "wells.bcgs_numbers", "pk": 751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012141"}}, {"model": "wells.bcgs_numbers", "pk": 752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012143"}}, {"model": "wells.bcgs_numbers", "pk": 753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012221"}}, {"model": "wells.bcgs_numbers", "pk": 754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012322"}}, {"model": "wells.bcgs_numbers", "pk": 755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F012342"}}, {"model": "wells.bcgs_numbers", "pk": 756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013112"}}, {"model": "wells.bcgs_numbers", "pk": 757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013121"}}, {"model": "wells.bcgs_numbers", "pk": 758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013122"}}, {"model": "wells.bcgs_numbers", "pk": 759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013123"}}, {"model": "wells.bcgs_numbers", "pk": 760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013124"}}, {"model": "wells.bcgs_numbers", "pk": 761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013141"}}, {"model": "wells.bcgs_numbers", "pk": 762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013142"}}, {"model": "wells.bcgs_numbers", "pk": 763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013144"}}, {"model": "wells.bcgs_numbers", "pk": 764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013322"}}, {"model": "wells.bcgs_numbers", "pk": 765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013324"}}, {"model": "wells.bcgs_numbers", "pk": 766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013342"}}, {"model": "wells.bcgs_numbers", "pk": 767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013413"}}, {"model": "wells.bcgs_numbers", "pk": 768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013431"}}, {"model": "wells.bcgs_numbers", "pk": 769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013432"}}, {"model": "wells.bcgs_numbers", "pk": 770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013434"}}, {"model": "wells.bcgs_numbers", "pk": 771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013443"}}, {"model": "wells.bcgs_numbers", "pk": 772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F013444"}}, {"model": "wells.bcgs_numbers", "pk": 773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014214"}}, {"model": "wells.bcgs_numbers", "pk": 774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014232"}}, {"model": "wells.bcgs_numbers", "pk": 775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014234"}}, {"model": "wells.bcgs_numbers", "pk": 776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014243"}}, {"model": "wells.bcgs_numbers", "pk": 777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014331"}}, {"model": "wells.bcgs_numbers", "pk": 778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014332"}}, {"model": "wells.bcgs_numbers", "pk": 779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014343"}}, {"model": "wells.bcgs_numbers", "pk": 780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014344"}}, {"model": "wells.bcgs_numbers", "pk": 781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014412"}}, {"model": "wells.bcgs_numbers", "pk": 782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014431"}}, {"model": "wells.bcgs_numbers", "pk": 783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014432"}}, {"model": "wells.bcgs_numbers", "pk": 784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014433"}}, {"model": "wells.bcgs_numbers", "pk": 785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F014434"}}, {"model": "wells.bcgs_numbers", "pk": 786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F017223"}}, {"model": "wells.bcgs_numbers", "pk": 787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F017224"}}, {"model": "wells.bcgs_numbers", "pk": 788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F017241"}}, {"model": "wells.bcgs_numbers", "pk": 789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F017243"}}, {"model": "wells.bcgs_numbers", "pk": 790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F017442"}}, {"model": "wells.bcgs_numbers", "pk": 791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018111"}}, {"model": "wells.bcgs_numbers", "pk": 792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018113"}}, {"model": "wells.bcgs_numbers", "pk": 793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018114"}}, {"model": "wells.bcgs_numbers", "pk": 794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018121"}}, {"model": "wells.bcgs_numbers", "pk": 795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018123"}}, {"model": "wells.bcgs_numbers", "pk": 796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018124"}}, {"model": "wells.bcgs_numbers", "pk": 797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018131"}}, {"model": "wells.bcgs_numbers", "pk": 798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018133"}}, {"model": "wells.bcgs_numbers", "pk": 799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018141"}}, {"model": "wells.bcgs_numbers", "pk": 800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018142"}}, {"model": "wells.bcgs_numbers", "pk": 801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018143"}}, {"model": "wells.bcgs_numbers", "pk": 802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018144"}}, {"model": "wells.bcgs_numbers", "pk": 803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018212"}}, {"model": "wells.bcgs_numbers", "pk": 804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F018234"}}, {"model": "wells.bcgs_numbers", "pk": 805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018241"}}, {"model": "wells.bcgs_numbers", "pk": 806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018243"}}, {"model": "wells.bcgs_numbers", "pk": 807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018244"}}, {"model": "wells.bcgs_numbers", "pk": 808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018311"}}, {"model": "wells.bcgs_numbers", "pk": 809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018321"}}, {"model": "wells.bcgs_numbers", "pk": 810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018322"}}, {"model": "wells.bcgs_numbers", "pk": 811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018323"}}, {"model": "wells.bcgs_numbers", "pk": 812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018332"}}, {"model": "wells.bcgs_numbers", "pk": 813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018333"}}, {"model": "wells.bcgs_numbers", "pk": 814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018343"}}, {"model": "wells.bcgs_numbers", "pk": 815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018412"}}, {"model": "wells.bcgs_numbers", "pk": 816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F019133"}}, {"model": "wells.bcgs_numbers", "pk": 817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F019322"}}, {"model": "wells.bcgs_numbers", "pk": 818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F019411"}}, {"model": "wells.bcgs_numbers", "pk": 819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F019412"}}, {"model": "wells.bcgs_numbers", "pk": 820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F020112"}}, {"model": "wells.bcgs_numbers", "pk": 821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F020113"}}, {"model": "wells.bcgs_numbers", "pk": 822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F020444"}}, {"model": "wells.bcgs_numbers", "pk": 823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F021321"}}, {"model": "wells.bcgs_numbers", "pk": 824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F021422"}}, {"model": "wells.bcgs_numbers", "pk": 825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022211"}}, {"model": "wells.bcgs_numbers", "pk": 826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022213"}}, {"model": "wells.bcgs_numbers", "pk": 827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022231"}}, {"model": "wells.bcgs_numbers", "pk": 828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022232"}}, {"model": "wells.bcgs_numbers", "pk": 829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022234"}}, {"model": "wells.bcgs_numbers", "pk": 830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022414"}}, {"model": "wells.bcgs_numbers", "pk": 831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022421"}}, {"model": "wells.bcgs_numbers", "pk": 832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022423"}}, {"model": "wells.bcgs_numbers", "pk": 833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022434"}}, {"model": "wells.bcgs_numbers", "pk": 834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022441"}}, {"model": "wells.bcgs_numbers", "pk": 835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022442"}}, {"model": "wells.bcgs_numbers", "pk": 836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022443"}}, {"model": "wells.bcgs_numbers", "pk": 837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F022444"}}, {"model": "wells.bcgs_numbers", "pk": 838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F024214"}}, {"model": "wells.bcgs_numbers", "pk": 839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F024234"}}, {"model": "wells.bcgs_numbers", "pk": 840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F024242"}}, {"model": "wells.bcgs_numbers", "pk": 841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F024243"}}, {"model": "wells.bcgs_numbers", "pk": 842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F024422"}}, {"model": "wells.bcgs_numbers", "pk": 843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F024443"}}, {"model": "wells.bcgs_numbers", "pk": 844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F027224"}}, {"model": "wells.bcgs_numbers", "pk": 845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F027421"}}, {"model": "wells.bcgs_numbers", "pk": 846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F031233"}}, {"model": "wells.bcgs_numbers", "pk": 847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F031234"}}, {"model": "wells.bcgs_numbers", "pk": 848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F031243"}}, {"model": "wells.bcgs_numbers", "pk": 849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F031322"}}, {"model": "wells.bcgs_numbers", "pk": 850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F031411"}}, {"model": "wells.bcgs_numbers", "pk": 851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032141"}}, {"model": "wells.bcgs_numbers", "pk": 852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032142"}}, {"model": "wells.bcgs_numbers", "pk": 853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032143"}}, {"model": "wells.bcgs_numbers", "pk": 854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032144"}}, {"model": "wells.bcgs_numbers", "pk": 855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032212"}}, {"model": "wells.bcgs_numbers", "pk": 856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032214"}}, {"model": "wells.bcgs_numbers", "pk": 857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032221"}}, {"model": "wells.bcgs_numbers", "pk": 858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032222"}}, {"model": "wells.bcgs_numbers", "pk": 859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032223"}}, {"model": "wells.bcgs_numbers", "pk": 860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032224"}}, {"model": "wells.bcgs_numbers", "pk": 861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032231"}}, {"model": "wells.bcgs_numbers", "pk": 862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032232"}}, {"model": "wells.bcgs_numbers", "pk": 863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032233"}}, {"model": "wells.bcgs_numbers", "pk": 864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032234"}}, {"model": "wells.bcgs_numbers", "pk": 865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032414"}}, {"model": "wells.bcgs_numbers", "pk": 866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032431"}}, {"model": "wells.bcgs_numbers", "pk": 867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032432"}}, {"model": "wells.bcgs_numbers", "pk": 868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F032433"}}, {"model": "wells.bcgs_numbers", "pk": 869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F032434"}}, {"model": "wells.bcgs_numbers", "pk": 870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F032443"}}, {"model": "wells.bcgs_numbers", "pk": 871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033133"}}, {"model": "wells.bcgs_numbers", "pk": 872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033311"}}, {"model": "wells.bcgs_numbers", "pk": 873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033312"}}, {"model": "wells.bcgs_numbers", "pk": 874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033314"}}, {"model": "wells.bcgs_numbers", "pk": 875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033332"}}, {"model": "wells.bcgs_numbers", "pk": 876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033334"}}, {"model": "wells.bcgs_numbers", "pk": 877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F033343"}}, {"model": "wells.bcgs_numbers", "pk": 878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F034121"}}, {"model": "wells.bcgs_numbers", "pk": 879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F042212"}}, {"model": "wells.bcgs_numbers", "pk": 880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F042221"}}, {"model": "wells.bcgs_numbers", "pk": 881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F042242"}}, {"model": "wells.bcgs_numbers", "pk": 882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043123"}}, {"model": "wells.bcgs_numbers", "pk": 883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043131"}}, {"model": "wells.bcgs_numbers", "pk": 884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043133"}}, {"model": "wells.bcgs_numbers", "pk": 885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043134"}}, {"model": "wells.bcgs_numbers", "pk": 886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043141"}}, {"model": "wells.bcgs_numbers", "pk": 887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043142"}}, {"model": "wells.bcgs_numbers", "pk": 888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043143"}}, {"model": "wells.bcgs_numbers", "pk": 889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043144"}}, {"model": "wells.bcgs_numbers", "pk": 890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043311"}}, {"model": "wells.bcgs_numbers", "pk": 891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043312"}}, {"model": "wells.bcgs_numbers", "pk": 892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043313"}}, {"model": "wells.bcgs_numbers", "pk": 893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043314"}}, {"model": "wells.bcgs_numbers", "pk": 894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043321"}}, {"model": "wells.bcgs_numbers", "pk": 895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043324"}}, {"model": "wells.bcgs_numbers", "pk": 896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043331"}}, {"model": "wells.bcgs_numbers", "pk": 897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043332"}}, {"model": "wells.bcgs_numbers", "pk": 898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043333"}}, {"model": "wells.bcgs_numbers", "pk": 899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043413"}}, {"model": "wells.bcgs_numbers", "pk": 900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043414"}}, {"model": "wells.bcgs_numbers", "pk": 901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043423"}}, {"model": "wells.bcgs_numbers", "pk": 902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043424"}}, {"model": "wells.bcgs_numbers", "pk": 903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043431"}}, {"model": "wells.bcgs_numbers", "pk": 904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043432"}}, {"model": "wells.bcgs_numbers", "pk": 905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043441"}}, {"model": "wells.bcgs_numbers", "pk": 906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043442"}}, {"model": "wells.bcgs_numbers", "pk": 907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F043444"}}, {"model": "wells.bcgs_numbers", "pk": 908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F044333"}}, {"model": "wells.bcgs_numbers", "pk": 909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F044334"}}, {"model": "wells.bcgs_numbers", "pk": 910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F044342"}}, {"model": "wells.bcgs_numbers", "pk": 911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F044413"}}, {"model": "wells.bcgs_numbers", "pk": 912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F044431"}}, {"model": "wells.bcgs_numbers", "pk": 913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F047312"}}, {"model": "wells.bcgs_numbers", "pk": 914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F047314"}}, {"model": "wells.bcgs_numbers", "pk": 915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F047332"}}, {"model": "wells.bcgs_numbers", "pk": 916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F047333"}}, {"model": "wells.bcgs_numbers", "pk": 917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052224"}}, {"model": "wells.bcgs_numbers", "pk": 918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052242"}}, {"model": "wells.bcgs_numbers", "pk": 919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052243"}}, {"model": "wells.bcgs_numbers", "pk": 920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052322"}}, {"model": "wells.bcgs_numbers", "pk": 921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052324"}}, {"model": "wells.bcgs_numbers", "pk": 922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052333"}}, {"model": "wells.bcgs_numbers", "pk": 923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052412"}}, {"model": "wells.bcgs_numbers", "pk": 924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052414"}}, {"model": "wells.bcgs_numbers", "pk": 925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F052423"}}, {"model": "wells.bcgs_numbers", "pk": 926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F053111"}}, {"model": "wells.bcgs_numbers", "pk": 927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054111"}}, {"model": "wells.bcgs_numbers", "pk": 928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054211"}}, {"model": "wells.bcgs_numbers", "pk": 929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054213"}}, {"model": "wells.bcgs_numbers", "pk": 930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054214"}}, {"model": "wells.bcgs_numbers", "pk": 931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054232"}}, {"model": "wells.bcgs_numbers", "pk": 932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054234"}}, {"model": "wells.bcgs_numbers", "pk": 933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054412"}}, {"model": "wells.bcgs_numbers", "pk": 934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054421"}}, {"model": "wells.bcgs_numbers", "pk": 935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054423"}}, {"model": "wells.bcgs_numbers", "pk": 936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054441"}}, {"model": "wells.bcgs_numbers", "pk": 937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054442"}}, {"model": "wells.bcgs_numbers", "pk": 938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F054444"}}, {"model": "wells.bcgs_numbers", "pk": 939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F055333"}}, {"model": "wells.bcgs_numbers", "pk": 940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F055443"}}, {"model": "wells.bcgs_numbers", "pk": 941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F057111"}}, {"model": "wells.bcgs_numbers", "pk": 942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F057113"}}, {"model": "wells.bcgs_numbers", "pk": 943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F057131"}}, {"model": "wells.bcgs_numbers", "pk": 944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063112"}}, {"model": "wells.bcgs_numbers", "pk": 945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063114"}}, {"model": "wells.bcgs_numbers", "pk": 946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063132"}}, {"model": "wells.bcgs_numbers", "pk": 947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063141"}}, {"model": "wells.bcgs_numbers", "pk": 948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063143"}}, {"model": "wells.bcgs_numbers", "pk": 949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063322"}}, {"model": "wells.bcgs_numbers", "pk": 950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F063324"}}, {"model": "wells.bcgs_numbers", "pk": 951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065112"}}, {"model": "wells.bcgs_numbers", "pk": 952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065121"}}, {"model": "wells.bcgs_numbers", "pk": 953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065122"}}, {"model": "wells.bcgs_numbers", "pk": 954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065212"}}, {"model": "wells.bcgs_numbers", "pk": 955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065213"}}, {"model": "wells.bcgs_numbers", "pk": 956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065214"}}, {"model": "wells.bcgs_numbers", "pk": 957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065221"}}, {"model": "wells.bcgs_numbers", "pk": 958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065222"}}, {"model": "wells.bcgs_numbers", "pk": 959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065223"}}, {"model": "wells.bcgs_numbers", "pk": 960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F065224"}}, {"model": "wells.bcgs_numbers", "pk": 961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066113"}}, {"model": "wells.bcgs_numbers", "pk": 962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066114"}}, {"model": "wells.bcgs_numbers", "pk": 963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066132"}}, {"model": "wells.bcgs_numbers", "pk": 964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066321"}}, {"model": "wells.bcgs_numbers", "pk": 965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066414"}}, {"model": "wells.bcgs_numbers", "pk": 966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066421"}}, {"model": "wells.bcgs_numbers", "pk": 967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066424"}}, {"model": "wells.bcgs_numbers", "pk": 968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066432"}}, {"model": "wells.bcgs_numbers", "pk": 969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066441"}}, {"model": "wells.bcgs_numbers", "pk": 970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066442"}}, {"model": "wells.bcgs_numbers", "pk": 971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066444"}}, {"model": "wells.bcgs_numbers", "pk": 972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F070123"}}, {"model": "wells.bcgs_numbers", "pk": 973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F070232"}}, {"model": "wells.bcgs_numbers", "pk": 974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F070242"}}, {"model": "wells.bcgs_numbers", "pk": 975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F073211"}}, {"model": "wells.bcgs_numbers", "pk": 976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F073233"}}, {"model": "wells.bcgs_numbers", "pk": 977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F073412"}}, {"model": "wells.bcgs_numbers", "pk": 978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F073414"}}, {"model": "wells.bcgs_numbers", "pk": 979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F076441"}}, {"model": "wells.bcgs_numbers", "pk": 980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F086324"}}, {"model": "wells.bcgs_numbers", "pk": 981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F086342"}}, {"model": "wells.bcgs_numbers", "pk": 982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F086431"}}, {"model": "wells.bcgs_numbers", "pk": 983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F091431"}}, {"model": "wells.bcgs_numbers", "pk": 984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F091433"}}, {"model": "wells.bcgs_numbers", "pk": 985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F094332"}}, {"model": "wells.bcgs_numbers", "pk": 986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F094333"}}, {"model": "wells.bcgs_numbers", "pk": 987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F094334"}}, {"model": "wells.bcgs_numbers", "pk": 988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F096121"}}, {"model": "wells.bcgs_numbers", "pk": 989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F096122"}}, {"model": "wells.bcgs_numbers", "pk": 990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F096144"}}, {"model": "wells.bcgs_numbers", "pk": 991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F096324"}}, {"model": "wells.bcgs_numbers", "pk": 992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F096411"}}, {"model": "wells.bcgs_numbers", "pk": 993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G003233"}}, {"model": "wells.bcgs_numbers", "pk": 994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G004224"}}, {"model": "wells.bcgs_numbers", "pk": 995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G004242"}}, {"model": "wells.bcgs_numbers", "pk": 996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G004244"}}, {"model": "wells.bcgs_numbers", "pk": 997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G004442"}}, {"model": "wells.bcgs_numbers", "pk": 998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005113"}}, {"model": "wells.bcgs_numbers", "pk": 999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005212"}}, {"model": "wells.bcgs_numbers", "pk": 1000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005221"}}, {"model": "wells.bcgs_numbers", "pk": 1001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005223"}}, {"model": "wells.bcgs_numbers", "pk": 1002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005232"}}, {"model": "wells.bcgs_numbers", "pk": 1003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005341"}}, {"model": "wells.bcgs_numbers", "pk": 1004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005344"}}, {"model": "wells.bcgs_numbers", "pk": 1005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005431"}}, {"model": "wells.bcgs_numbers", "pk": 1006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G005432"}}, {"model": "wells.bcgs_numbers", "pk": 1007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G014223"}}, {"model": "wells.bcgs_numbers", "pk": 1008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G014224"}}, {"model": "wells.bcgs_numbers", "pk": 1009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G014424"}}, {"model": "wells.bcgs_numbers", "pk": 1010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G014441"}}, {"model": "wells.bcgs_numbers", "pk": 1011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G014442"}}, {"model": "wells.bcgs_numbers", "pk": 1012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G014444"}}, {"model": "wells.bcgs_numbers", "pk": 1013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G015211"}}, {"model": "wells.bcgs_numbers", "pk": 1014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G015231"}}, {"model": "wells.bcgs_numbers", "pk": 1015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G015324"}}, {"model": "wells.bcgs_numbers", "pk": 1016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G018124"}}, {"model": "wells.bcgs_numbers", "pk": 1017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021213"}}, {"model": "wells.bcgs_numbers", "pk": 1018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021231"}}, {"model": "wells.bcgs_numbers", "pk": 1019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021243"}}, {"model": "wells.bcgs_numbers", "pk": 1020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021412"}}, {"model": "wells.bcgs_numbers", "pk": 1021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021421"}}, {"model": "wells.bcgs_numbers", "pk": 1022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021423"}}, {"model": "wells.bcgs_numbers", "pk": 1023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G021441"}}, {"model": "wells.bcgs_numbers", "pk": 1024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024144"}}, {"model": "wells.bcgs_numbers", "pk": 1025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024221"}}, {"model": "wells.bcgs_numbers", "pk": 1026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024222"}}, {"model": "wells.bcgs_numbers", "pk": 1027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024223"}}, {"model": "wells.bcgs_numbers", "pk": 1028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024224"}}, {"model": "wells.bcgs_numbers", "pk": 1029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024233"}}, {"model": "wells.bcgs_numbers", "pk": 1030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024234"}}, {"model": "wells.bcgs_numbers", "pk": 1031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024241"}}, {"model": "wells.bcgs_numbers", "pk": 1032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024242"}}, {"model": "wells.bcgs_numbers", "pk": 1033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024243"}}, {"model": "wells.bcgs_numbers", "pk": 1034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G024411"}}, {"model": "wells.bcgs_numbers", "pk": 1035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G025113"}}, {"model": "wells.bcgs_numbers", "pk": 1036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G025341"}}, {"model": "wells.bcgs_numbers", "pk": 1037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G025342"}}, {"model": "wells.bcgs_numbers", "pk": 1038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G025343"}}, {"model": "wells.bcgs_numbers", "pk": 1039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G025344"}}, {"model": "wells.bcgs_numbers", "pk": 1040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G028134"}}, {"model": "wells.bcgs_numbers", "pk": 1041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G031221"}}, {"model": "wells.bcgs_numbers", "pk": 1042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G031223"}}, {"model": "wells.bcgs_numbers", "pk": 1043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G031423"}}, {"model": "wells.bcgs_numbers", "pk": 1044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G031434"}}, {"model": "wells.bcgs_numbers", "pk": 1045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G031441"}}, {"model": "wells.bcgs_numbers", "pk": 1046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G031444"}}, {"model": "wells.bcgs_numbers", "pk": 1047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G033444"}}, {"model": "wells.bcgs_numbers", "pk": 1048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034142"}}, {"model": "wells.bcgs_numbers", "pk": 1049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034211"}}, {"model": "wells.bcgs_numbers", "pk": 1050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034212"}}, {"model": "wells.bcgs_numbers", "pk": 1051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034213"}}, {"model": "wells.bcgs_numbers", "pk": 1052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034233"}}, {"model": "wells.bcgs_numbers", "pk": 1053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034312"}}, {"model": "wells.bcgs_numbers", "pk": 1054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034324"}}, {"model": "wells.bcgs_numbers", "pk": 1055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034333"}}, {"model": "wells.bcgs_numbers", "pk": 1056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034342"}}, {"model": "wells.bcgs_numbers", "pk": 1057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034344"}}, {"model": "wells.bcgs_numbers", "pk": 1058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034411"}}, {"model": "wells.bcgs_numbers", "pk": 1059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034413"}}, {"model": "wells.bcgs_numbers", "pk": 1060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034414"}}, {"model": "wells.bcgs_numbers", "pk": 1061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034421"}}, {"model": "wells.bcgs_numbers", "pk": 1062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034423"}}, {"model": "wells.bcgs_numbers", "pk": 1063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034424"}}, {"model": "wells.bcgs_numbers", "pk": 1064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034431"}}, {"model": "wells.bcgs_numbers", "pk": 1065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034432"}}, {"model": "wells.bcgs_numbers", "pk": 1066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034434"}}, {"model": "wells.bcgs_numbers", "pk": 1067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034442"}}, {"model": "wells.bcgs_numbers", "pk": 1068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G034443"}}, {"model": "wells.bcgs_numbers", "pk": 1069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035121"}}, {"model": "wells.bcgs_numbers", "pk": 1070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035122"}}, {"model": "wells.bcgs_numbers", "pk": 1071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035131"}}, {"model": "wells.bcgs_numbers", "pk": 1072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035133"}}, {"model": "wells.bcgs_numbers", "pk": 1073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035211"}}, {"model": "wells.bcgs_numbers", "pk": 1074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035212"}}, {"model": "wells.bcgs_numbers", "pk": 1075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G035444"}}, {"model": "wells.bcgs_numbers", "pk": 1076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G041222"}}, {"model": "wells.bcgs_numbers", "pk": 1077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G041232"}}, {"model": "wells.bcgs_numbers", "pk": 1078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G041234"}}, {"model": "wells.bcgs_numbers", "pk": 1079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G041244"}}, {"model": "wells.bcgs_numbers", "pk": 1080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G041412"}}, {"model": "wells.bcgs_numbers", "pk": 1081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041421"}}, {"model": "wells.bcgs_numbers", "pk": 1082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041423"}}, {"model": "wells.bcgs_numbers", "pk": 1083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041424"}}, {"model": "wells.bcgs_numbers", "pk": 1084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041441"}}, {"model": "wells.bcgs_numbers", "pk": 1085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041442"}}, {"model": "wells.bcgs_numbers", "pk": 1086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041443"}}, {"model": "wells.bcgs_numbers", "pk": 1087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G041444"}}, {"model": "wells.bcgs_numbers", "pk": 1088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042131"}}, {"model": "wells.bcgs_numbers", "pk": 1089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042133"}}, {"model": "wells.bcgs_numbers", "pk": 1090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042313"}}, {"model": "wells.bcgs_numbers", "pk": 1091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042314"}}, {"model": "wells.bcgs_numbers", "pk": 1092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042321"}}, {"model": "wells.bcgs_numbers", "pk": 1093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042322"}}, {"model": "wells.bcgs_numbers", "pk": 1094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042323"}}, {"model": "wells.bcgs_numbers", "pk": 1095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042324"}}, {"model": "wells.bcgs_numbers", "pk": 1096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042331"}}, {"model": "wells.bcgs_numbers", "pk": 1097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042332"}}, {"model": "wells.bcgs_numbers", "pk": 1098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042333"}}, {"model": "wells.bcgs_numbers", "pk": 1099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042334"}}, {"model": "wells.bcgs_numbers", "pk": 1100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042341"}}, {"model": "wells.bcgs_numbers", "pk": 1101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042342"}}, {"model": "wells.bcgs_numbers", "pk": 1102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G042343"}}, {"model": "wells.bcgs_numbers", "pk": 1104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043141"}}, {"model": "wells.bcgs_numbers", "pk": 1105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043143"}}, {"model": "wells.bcgs_numbers", "pk": 1106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043144"}}, {"model": "wells.bcgs_numbers", "pk": 1107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043221"}}, {"model": "wells.bcgs_numbers", "pk": 1108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043222"}}, {"model": "wells.bcgs_numbers", "pk": 1109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043223"}}, {"model": "wells.bcgs_numbers", "pk": 1110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043224"}}, {"model": "wells.bcgs_numbers", "pk": 1111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043232"}}, {"model": "wells.bcgs_numbers", "pk": 1112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043233"}}, {"model": "wells.bcgs_numbers", "pk": 1113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043241"}}, {"model": "wells.bcgs_numbers", "pk": 1114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043242"}}, {"model": "wells.bcgs_numbers", "pk": 1115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043243"}}, {"model": "wells.bcgs_numbers", "pk": 1116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043321"}}, {"model": "wells.bcgs_numbers", "pk": 1117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043322"}}, {"model": "wells.bcgs_numbers", "pk": 1118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043323"}}, {"model": "wells.bcgs_numbers", "pk": 1119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043332"}}, {"model": "wells.bcgs_numbers", "pk": 1120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043333"}}, {"model": "wells.bcgs_numbers", "pk": 1121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043334"}}, {"model": "wells.bcgs_numbers", "pk": 1122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043341"}}, {"model": "wells.bcgs_numbers", "pk": 1123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043413"}}, {"model": "wells.bcgs_numbers", "pk": 1124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043414"}}, {"model": "wells.bcgs_numbers", "pk": 1125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043421"}}, {"model": "wells.bcgs_numbers", "pk": 1126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043423"}}, {"model": "wells.bcgs_numbers", "pk": 1127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043432"}}, {"model": "wells.bcgs_numbers", "pk": 1128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043433"}}, {"model": "wells.bcgs_numbers", "pk": 1129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043434"}}, {"model": "wells.bcgs_numbers", "pk": 1130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G043441"}}, {"model": "wells.bcgs_numbers", "pk": 1131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044121"}}, {"model": "wells.bcgs_numbers", "pk": 1132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044122"}}, {"model": "wells.bcgs_numbers", "pk": 1133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044124"}}, {"model": "wells.bcgs_numbers", "pk": 1134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044212"}}, {"model": "wells.bcgs_numbers", "pk": 1135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044312"}}, {"model": "wells.bcgs_numbers", "pk": 1136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044314"}}, {"model": "wells.bcgs_numbers", "pk": 1137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G044332"}}, {"model": "wells.bcgs_numbers", "pk": 1138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G045221"}}, {"model": "wells.bcgs_numbers", "pk": 1139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G045324"}}, {"model": "wells.bcgs_numbers", "pk": 1140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G045412"}}, {"model": "wells.bcgs_numbers", "pk": 1141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G045413"}}, {"model": "wells.bcgs_numbers", "pk": 1142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G045414"}}, {"model": "wells.bcgs_numbers", "pk": 1143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G045424"}}, {"model": "wells.bcgs_numbers", "pk": 1144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G045431"}}, {"model": "wells.bcgs_numbers", "pk": 1145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G045432"}}, {"model": "wells.bcgs_numbers", "pk": 1146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G045433"}}, {"model": "wells.bcgs_numbers", "pk": 1147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051222"}}, {"model": "wells.bcgs_numbers", "pk": 1148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051224"}}, {"model": "wells.bcgs_numbers", "pk": 1149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051242"}}, {"model": "wells.bcgs_numbers", "pk": 1150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051243"}}, {"model": "wells.bcgs_numbers", "pk": 1151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051244"}}, {"model": "wells.bcgs_numbers", "pk": 1152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051312"}}, {"model": "wells.bcgs_numbers", "pk": 1153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051421"}}, {"model": "wells.bcgs_numbers", "pk": 1154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051422"}}, {"model": "wells.bcgs_numbers", "pk": 1155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051423"}}, {"model": "wells.bcgs_numbers", "pk": 1156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051424"}}, {"model": "wells.bcgs_numbers", "pk": 1157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051432"}}, {"model": "wells.bcgs_numbers", "pk": 1158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051433"}}, {"model": "wells.bcgs_numbers", "pk": 1159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051434"}}, {"model": "wells.bcgs_numbers", "pk": 1160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051441"}}, {"model": "wells.bcgs_numbers", "pk": 1161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051442"}}, {"model": "wells.bcgs_numbers", "pk": 1162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G051443"}}, {"model": "wells.bcgs_numbers", "pk": 1163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052111"}}, {"model": "wells.bcgs_numbers", "pk": 1164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052112"}}, {"model": "wells.bcgs_numbers", "pk": 1165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052113"}}, {"model": "wells.bcgs_numbers", "pk": 1166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052114"}}, {"model": "wells.bcgs_numbers", "pk": 1167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052121"}}, {"model": "wells.bcgs_numbers", "pk": 1168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052122"}}, {"model": "wells.bcgs_numbers", "pk": 1169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052123"}}, {"model": "wells.bcgs_numbers", "pk": 1170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052124"}}, {"model": "wells.bcgs_numbers", "pk": 1171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052131"}}, {"model": "wells.bcgs_numbers", "pk": 1172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052132"}}, {"model": "wells.bcgs_numbers", "pk": 1173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052133"}}, {"model": "wells.bcgs_numbers", "pk": 1174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052134"}}, {"model": "wells.bcgs_numbers", "pk": 1175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052141"}}, {"model": "wells.bcgs_numbers", "pk": 1176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052143"}}, {"model": "wells.bcgs_numbers", "pk": 1177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052311"}}, {"model": "wells.bcgs_numbers", "pk": 1178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052312"}}, {"model": "wells.bcgs_numbers", "pk": 1179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052313"}}, {"model": "wells.bcgs_numbers", "pk": 1180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052314"}}, {"model": "wells.bcgs_numbers", "pk": 1181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052321"}}, {"model": "wells.bcgs_numbers", "pk": 1182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052331"}}, {"model": "wells.bcgs_numbers", "pk": 1183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052332"}}, {"model": "wells.bcgs_numbers", "pk": 1184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052333"}}, {"model": "wells.bcgs_numbers", "pk": 1185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052334"}}, {"model": "wells.bcgs_numbers", "pk": 1186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052343"}}, {"model": "wells.bcgs_numbers", "pk": 1187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052414"}}, {"model": "wells.bcgs_numbers", "pk": 1188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052421"}}, {"model": "wells.bcgs_numbers", "pk": 1189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052422"}}, {"model": "wells.bcgs_numbers", "pk": 1190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052423"}}, {"model": "wells.bcgs_numbers", "pk": 1191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052433"}}, {"model": "wells.bcgs_numbers", "pk": 1192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G052442"}}, {"model": "wells.bcgs_numbers", "pk": 1193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G053134"}}, {"model": "wells.bcgs_numbers", "pk": 1194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G053214"}}, {"model": "wells.bcgs_numbers", "pk": 1195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G053231"}}, {"model": "wells.bcgs_numbers", "pk": 1196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G053234"}}, {"model": "wells.bcgs_numbers", "pk": 1197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G053332"}}, {"model": "wells.bcgs_numbers", "pk": 1198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G055212"}}, {"model": "wells.bcgs_numbers", "pk": 1199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G055241"}}, {"model": "wells.bcgs_numbers", "pk": 1200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G055243"}}, {"model": "wells.bcgs_numbers", "pk": 1201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G055422"}}, {"model": "wells.bcgs_numbers", "pk": 1202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G056331"}}, {"model": "wells.bcgs_numbers", "pk": 1203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G056332"}}, {"model": "wells.bcgs_numbers", "pk": 1204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G056334"}}, {"model": "wells.bcgs_numbers", "pk": 1205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G057214"}}, {"model": "wells.bcgs_numbers", "pk": 1206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061114"}}, {"model": "wells.bcgs_numbers", "pk": 1207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061124"}}, {"model": "wells.bcgs_numbers", "pk": 1208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061132"}}, {"model": "wells.bcgs_numbers", "pk": 1209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061134"}}, {"model": "wells.bcgs_numbers", "pk": 1210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061211"}}, {"model": "wells.bcgs_numbers", "pk": 1211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061212"}}, {"model": "wells.bcgs_numbers", "pk": 1212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061213"}}, {"model": "wells.bcgs_numbers", "pk": 1213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061214"}}, {"model": "wells.bcgs_numbers", "pk": 1214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061221"}}, {"model": "wells.bcgs_numbers", "pk": 1215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061222"}}, {"model": "wells.bcgs_numbers", "pk": 1216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061223"}}, {"model": "wells.bcgs_numbers", "pk": 1217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061224"}}, {"model": "wells.bcgs_numbers", "pk": 1218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061231"}}, {"model": "wells.bcgs_numbers", "pk": 1219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061232"}}, {"model": "wells.bcgs_numbers", "pk": 1220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061234"}}, {"model": "wells.bcgs_numbers", "pk": 1221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061242"}}, {"model": "wells.bcgs_numbers", "pk": 1222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061243"}}, {"model": "wells.bcgs_numbers", "pk": 1223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061312"}}, {"model": "wells.bcgs_numbers", "pk": 1224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061313"}}, {"model": "wells.bcgs_numbers", "pk": 1225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061314"}}, {"model": "wells.bcgs_numbers", "pk": 1226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061331"}}, {"model": "wells.bcgs_numbers", "pk": 1227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061332"}}, {"model": "wells.bcgs_numbers", "pk": 1228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061334"}}, {"model": "wells.bcgs_numbers", "pk": 1229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061343"}}, {"model": "wells.bcgs_numbers", "pk": 1230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061344"}}, {"model": "wells.bcgs_numbers", "pk": 1231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061411"}}, {"model": "wells.bcgs_numbers", "pk": 1232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061412"}}, {"model": "wells.bcgs_numbers", "pk": 1233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061421"}}, {"model": "wells.bcgs_numbers", "pk": 1234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061433"}}, {"model": "wells.bcgs_numbers", "pk": 1235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G061434"}}, {"model": "wells.bcgs_numbers", "pk": 1236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062111"}}, {"model": "wells.bcgs_numbers", "pk": 1237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062113"}}, {"model": "wells.bcgs_numbers", "pk": 1238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062122"}}, {"model": "wells.bcgs_numbers", "pk": 1239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062124"}}, {"model": "wells.bcgs_numbers", "pk": 1240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062143"}}, {"model": "wells.bcgs_numbers", "pk": 1241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062211"}}, {"model": "wells.bcgs_numbers", "pk": 1242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062212"}}, {"model": "wells.bcgs_numbers", "pk": 1243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062213"}}, {"model": "wells.bcgs_numbers", "pk": 1244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:39Z", "update_user": null, "update_date": null, "bcgs_number": "082G062221"}}, {"model": "wells.bcgs_numbers", "pk": 1245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062222"}}, {"model": "wells.bcgs_numbers", "pk": 1246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062223"}}, {"model": "wells.bcgs_numbers", "pk": 1247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062224"}}, {"model": "wells.bcgs_numbers", "pk": 1248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062231"}}, {"model": "wells.bcgs_numbers", "pk": 1249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062232"}}, {"model": "wells.bcgs_numbers", "pk": 1250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062233"}}, {"model": "wells.bcgs_numbers", "pk": 1251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062234"}}, {"model": "wells.bcgs_numbers", "pk": 1252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062242"}}, {"model": "wells.bcgs_numbers", "pk": 1253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062243"}}, {"model": "wells.bcgs_numbers", "pk": 1254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062313"}}, {"model": "wells.bcgs_numbers", "pk": 1255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062331"}}, {"model": "wells.bcgs_numbers", "pk": 1256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062342"}}, {"model": "wells.bcgs_numbers", "pk": 1257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062344"}}, {"model": "wells.bcgs_numbers", "pk": 1258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062414"}}, {"model": "wells.bcgs_numbers", "pk": 1259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062421"}}, {"model": "wells.bcgs_numbers", "pk": 1260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062423"}}, {"model": "wells.bcgs_numbers", "pk": 1261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G062432"}}, {"model": "wells.bcgs_numbers", "pk": 1262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G063111"}}, {"model": "wells.bcgs_numbers", "pk": 1263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G066431"}}, {"model": "wells.bcgs_numbers", "pk": 1264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G067231"}}, {"model": "wells.bcgs_numbers", "pk": 1265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G067234"}}, {"model": "wells.bcgs_numbers", "pk": 1266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G067323"}}, {"model": "wells.bcgs_numbers", "pk": 1267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G071122"}}, {"model": "wells.bcgs_numbers", "pk": 1268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G071211"}}, {"model": "wells.bcgs_numbers", "pk": 1269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G071212"}}, {"model": "wells.bcgs_numbers", "pk": 1270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G071221"}}, {"model": "wells.bcgs_numbers", "pk": 1271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G071222"}}, {"model": "wells.bcgs_numbers", "pk": 1272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072122"}}, {"model": "wells.bcgs_numbers", "pk": 1273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072124"}}, {"model": "wells.bcgs_numbers", "pk": 1274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072131"}}, {"model": "wells.bcgs_numbers", "pk": 1275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072313"}}, {"model": "wells.bcgs_numbers", "pk": 1276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072314"}}, {"model": "wells.bcgs_numbers", "pk": 1277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072321"}}, {"model": "wells.bcgs_numbers", "pk": 1278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072322"}}, {"model": "wells.bcgs_numbers", "pk": 1279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072323"}}, {"model": "wells.bcgs_numbers", "pk": 1280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072324"}}, {"model": "wells.bcgs_numbers", "pk": 1281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072331"}}, {"model": "wells.bcgs_numbers", "pk": 1282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072341"}}, {"model": "wells.bcgs_numbers", "pk": 1283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072342"}}, {"model": "wells.bcgs_numbers", "pk": 1284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G072343"}}, {"model": "wells.bcgs_numbers", "pk": 1285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076211"}}, {"model": "wells.bcgs_numbers", "pk": 1286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076213"}}, {"model": "wells.bcgs_numbers", "pk": 1287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076223"}}, {"model": "wells.bcgs_numbers", "pk": 1288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076231"}}, {"model": "wells.bcgs_numbers", "pk": 1289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076232"}}, {"model": "wells.bcgs_numbers", "pk": 1290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076233"}}, {"model": "wells.bcgs_numbers", "pk": 1291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076234"}}, {"model": "wells.bcgs_numbers", "pk": 1292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076241"}}, {"model": "wells.bcgs_numbers", "pk": 1293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076342"}}, {"model": "wells.bcgs_numbers", "pk": 1294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076411"}}, {"model": "wells.bcgs_numbers", "pk": 1295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076413"}}, {"model": "wells.bcgs_numbers", "pk": 1296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G076433"}}, {"model": "wells.bcgs_numbers", "pk": 1297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082112"}}, {"model": "wells.bcgs_numbers", "pk": 1298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082114"}}, {"model": "wells.bcgs_numbers", "pk": 1299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082121"}}, {"model": "wells.bcgs_numbers", "pk": 1300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082124"}}, {"model": "wells.bcgs_numbers", "pk": 1301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082132"}}, {"model": "wells.bcgs_numbers", "pk": 1302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082223"}}, {"model": "wells.bcgs_numbers", "pk": 1303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082231"}}, {"model": "wells.bcgs_numbers", "pk": 1304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082242"}}, {"model": "wells.bcgs_numbers", "pk": 1305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082321"}}, {"model": "wells.bcgs_numbers", "pk": 1306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G082323"}}, {"model": "wells.bcgs_numbers", "pk": 1307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G086213"}}, {"model": "wells.bcgs_numbers", "pk": 1308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G086231"}}, {"model": "wells.bcgs_numbers", "pk": 1309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G086322"}}, {"model": "wells.bcgs_numbers", "pk": 1310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G086433"}}, {"model": "wells.bcgs_numbers", "pk": 1311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G086443"}}, {"model": "wells.bcgs_numbers", "pk": 1312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092112"}}, {"model": "wells.bcgs_numbers", "pk": 1313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092114"}}, {"model": "wells.bcgs_numbers", "pk": 1314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092121"}}, {"model": "wells.bcgs_numbers", "pk": 1315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092123"}}, {"model": "wells.bcgs_numbers", "pk": 1316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092131"}}, {"model": "wells.bcgs_numbers", "pk": 1317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092133"}}, {"model": "wells.bcgs_numbers", "pk": 1318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092223"}}, {"model": "wells.bcgs_numbers", "pk": 1319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092233"}}, {"model": "wells.bcgs_numbers", "pk": 1320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092412"}}, {"model": "wells.bcgs_numbers", "pk": 1321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092414"}}, {"model": "wells.bcgs_numbers", "pk": 1322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092431"}}, {"model": "wells.bcgs_numbers", "pk": 1323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092432"}}, {"model": "wells.bcgs_numbers", "pk": 1324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G092434"}}, {"model": "wells.bcgs_numbers", "pk": 1325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G096142"}}, {"model": "wells.bcgs_numbers", "pk": 1326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G096144"}}, {"model": "wells.bcgs_numbers", "pk": 1327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G096324"}}, {"model": "wells.bcgs_numbers", "pk": 1328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G097134"}}, {"model": "wells.bcgs_numbers", "pk": 1329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082H008134"}}, {"model": "wells.bcgs_numbers", "pk": 1330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J002121"}}, {"model": "wells.bcgs_numbers", "pk": 1331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J002131"}}, {"model": "wells.bcgs_numbers", "pk": 1332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006121"}}, {"model": "wells.bcgs_numbers", "pk": 1333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006122"}}, {"model": "wells.bcgs_numbers", "pk": 1334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006124"}}, {"model": "wells.bcgs_numbers", "pk": 1335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006142"}}, {"model": "wells.bcgs_numbers", "pk": 1336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006234"}}, {"model": "wells.bcgs_numbers", "pk": 1337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006243"}}, {"model": "wells.bcgs_numbers", "pk": 1338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J006421"}}, {"model": "wells.bcgs_numbers", "pk": 1339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J011414"}}, {"model": "wells.bcgs_numbers", "pk": 1340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J011422"}}, {"model": "wells.bcgs_numbers", "pk": 1341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J011424"}}, {"model": "wells.bcgs_numbers", "pk": 1342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J011432"}}, {"model": "wells.bcgs_numbers", "pk": 1343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J012133"}}, {"model": "wells.bcgs_numbers", "pk": 1344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J013142"}}, {"model": "wells.bcgs_numbers", "pk": 1345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J016432"}}, {"model": "wells.bcgs_numbers", "pk": 1346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J021232"}}, {"model": "wells.bcgs_numbers", "pk": 1347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J021233"}}, {"model": "wells.bcgs_numbers", "pk": 1348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J021411"}}, {"model": "wells.bcgs_numbers", "pk": 1349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J021431"}}, {"model": "wells.bcgs_numbers", "pk": 1350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J021433"}}, {"model": "wells.bcgs_numbers", "pk": 1351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J026213"}}, {"model": "wells.bcgs_numbers", "pk": 1352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J026214"}}, {"model": "wells.bcgs_numbers", "pk": 1353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J026231"}}, {"model": "wells.bcgs_numbers", "pk": 1354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J026232"}}, {"model": "wells.bcgs_numbers", "pk": 1355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J031122"}}, {"model": "wells.bcgs_numbers", "pk": 1356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J031211"}}, {"model": "wells.bcgs_numbers", "pk": 1357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J031212"}}, {"model": "wells.bcgs_numbers", "pk": 1358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J031213"}}, {"model": "wells.bcgs_numbers", "pk": 1359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J031214"}}, {"model": "wells.bcgs_numbers", "pk": 1360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J031232"}}, {"model": "wells.bcgs_numbers", "pk": 1361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J031234"}}, {"model": "wells.bcgs_numbers", "pk": 1362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J031414"}}, {"model": "wells.bcgs_numbers", "pk": 1363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J031431"}}, {"model": "wells.bcgs_numbers", "pk": 1364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041112"}}, {"model": "wells.bcgs_numbers", "pk": 1365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041122"}}, {"model": "wells.bcgs_numbers", "pk": 1366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041124"}}, {"model": "wells.bcgs_numbers", "pk": 1367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041133"}}, {"model": "wells.bcgs_numbers", "pk": 1368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041141"}}, {"model": "wells.bcgs_numbers", "pk": 1369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041142"}}, {"model": "wells.bcgs_numbers", "pk": 1370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041143"}}, {"model": "wells.bcgs_numbers", "pk": 1371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041144"}}, {"model": "wells.bcgs_numbers", "pk": 1372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041211"}}, {"model": "wells.bcgs_numbers", "pk": 1373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041213"}}, {"model": "wells.bcgs_numbers", "pk": 1374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041311"}}, {"model": "wells.bcgs_numbers", "pk": 1375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041312"}}, {"model": "wells.bcgs_numbers", "pk": 1376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041313"}}, {"model": "wells.bcgs_numbers", "pk": 1377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041314"}}, {"model": "wells.bcgs_numbers", "pk": 1378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041321"}}, {"model": "wells.bcgs_numbers", "pk": 1379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041323"}}, {"model": "wells.bcgs_numbers", "pk": 1380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041331"}}, {"model": "wells.bcgs_numbers", "pk": 1381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041333"}}, {"model": "wells.bcgs_numbers", "pk": 1382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041334"}}, {"model": "wells.bcgs_numbers", "pk": 1383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J041341"}}, {"model": "wells.bcgs_numbers", "pk": 1384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J051111"}}, {"model": "wells.bcgs_numbers", "pk": 1385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J051113"}}, {"model": "wells.bcgs_numbers", "pk": 1386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J052334"}}, {"model": "wells.bcgs_numbers", "pk": 1387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J060244"}}, {"model": "wells.bcgs_numbers", "pk": 1388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082J071142"}}, {"model": "wells.bcgs_numbers", "pk": 1389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K001324"}}, {"model": "wells.bcgs_numbers", "pk": 1390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K001344"}}, {"model": "wells.bcgs_numbers", "pk": 1391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K003242"}}, {"model": "wells.bcgs_numbers", "pk": 1392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K004111"}}, {"model": "wells.bcgs_numbers", "pk": 1393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K006142"}}, {"model": "wells.bcgs_numbers", "pk": 1394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K011222"}}, {"model": "wells.bcgs_numbers", "pk": 1395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K012311"}}, {"model": "wells.bcgs_numbers", "pk": 1396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K012313"}}, {"model": "wells.bcgs_numbers", "pk": 1397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K013124"}}, {"model": "wells.bcgs_numbers", "pk": 1398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K013213"}}, {"model": "wells.bcgs_numbers", "pk": 1399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K016134"}}, {"model": "wells.bcgs_numbers", "pk": 1400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K016143"}}, {"model": "wells.bcgs_numbers", "pk": 1401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K016334"}}, {"model": "wells.bcgs_numbers", "pk": 1402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K016343"}}, {"model": "wells.bcgs_numbers", "pk": 1403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K021224"}}, {"model": "wells.bcgs_numbers", "pk": 1404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K021244"}}, {"model": "wells.bcgs_numbers", "pk": 1405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K021422"}}, {"model": "wells.bcgs_numbers", "pk": 1406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022111"}}, {"model": "wells.bcgs_numbers", "pk": 1407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022113"}}, {"model": "wells.bcgs_numbers", "pk": 1408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022114"}}, {"model": "wells.bcgs_numbers", "pk": 1409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022123"}}, {"model": "wells.bcgs_numbers", "pk": 1410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022131"}}, {"model": "wells.bcgs_numbers", "pk": 1411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022132"}}, {"model": "wells.bcgs_numbers", "pk": 1412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022133"}}, {"model": "wells.bcgs_numbers", "pk": 1413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022134"}}, {"model": "wells.bcgs_numbers", "pk": 1414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022311"}}, {"model": "wells.bcgs_numbers", "pk": 1415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K022312"}}, {"model": "wells.bcgs_numbers", "pk": 1416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K026112"}}, {"model": "wells.bcgs_numbers", "pk": 1417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K026133"}}, {"model": "wells.bcgs_numbers", "pk": 1418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K026134"}}, {"model": "wells.bcgs_numbers", "pk": 1419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K026311"}}, {"model": "wells.bcgs_numbers", "pk": 1420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K035433"}}, {"model": "wells.bcgs_numbers", "pk": 1421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K036111"}}, {"model": "wells.bcgs_numbers", "pk": 1422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K036112"}}, {"model": "wells.bcgs_numbers", "pk": 1423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K036141"}}, {"model": "wells.bcgs_numbers", "pk": 1424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K036143"}}, {"model": "wells.bcgs_numbers", "pk": 1425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K036321"}}, {"model": "wells.bcgs_numbers", "pk": 1426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K050423"}}, {"model": "wells.bcgs_numbers", "pk": 1427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K050424"}}, {"model": "wells.bcgs_numbers", "pk": 1428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K050441"}}, {"model": "wells.bcgs_numbers", "pk": 1429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K050443"}}, {"model": "wells.bcgs_numbers", "pk": 1430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K050444"}}, {"model": "wells.bcgs_numbers", "pk": 1431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K060122"}}, {"model": "wells.bcgs_numbers", "pk": 1432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K060123"}}, {"model": "wells.bcgs_numbers", "pk": 1433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K060141"}}, {"model": "wells.bcgs_numbers", "pk": 1434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K060142"}}, {"model": "wells.bcgs_numbers", "pk": 1435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K060211"}}, {"model": "wells.bcgs_numbers", "pk": 1436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K060213"}}, {"model": "wells.bcgs_numbers", "pk": 1437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060221"}}, {"model": "wells.bcgs_numbers", "pk": 1438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060222"}}, {"model": "wells.bcgs_numbers", "pk": 1439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060223"}}, {"model": "wells.bcgs_numbers", "pk": 1440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060224"}}, {"model": "wells.bcgs_numbers", "pk": 1441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060231"}}, {"model": "wells.bcgs_numbers", "pk": 1442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060232"}}, {"model": "wells.bcgs_numbers", "pk": 1443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060233"}}, {"model": "wells.bcgs_numbers", "pk": 1444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060234"}}, {"model": "wells.bcgs_numbers", "pk": 1445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060241"}}, {"model": "wells.bcgs_numbers", "pk": 1446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060242"}}, {"model": "wells.bcgs_numbers", "pk": 1447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060243"}}, {"model": "wells.bcgs_numbers", "pk": 1448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060244"}}, {"model": "wells.bcgs_numbers", "pk": 1449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060421"}}, {"model": "wells.bcgs_numbers", "pk": 1450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060422"}}, {"model": "wells.bcgs_numbers", "pk": 1451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060423"}}, {"model": "wells.bcgs_numbers", "pk": 1452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060424"}}, {"model": "wells.bcgs_numbers", "pk": 1453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060431"}}, {"model": "wells.bcgs_numbers", "pk": 1454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060434"}}, {"model": "wells.bcgs_numbers", "pk": 1455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060441"}}, {"model": "wells.bcgs_numbers", "pk": 1456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K060443"}}, {"model": "wells.bcgs_numbers", "pk": 1457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K061141"}}, {"model": "wells.bcgs_numbers", "pk": 1458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K062314"}}, {"model": "wells.bcgs_numbers", "pk": 1459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K063143"}}, {"model": "wells.bcgs_numbers", "pk": 1460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K070213"}}, {"model": "wells.bcgs_numbers", "pk": 1461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K070231"}}, {"model": "wells.bcgs_numbers", "pk": 1462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K070232"}}, {"model": "wells.bcgs_numbers", "pk": 1463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K070342"}}, {"model": "wells.bcgs_numbers", "pk": 1464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K070343"}}, {"model": "wells.bcgs_numbers", "pk": 1465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K070344"}}, {"model": "wells.bcgs_numbers", "pk": 1466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K071114"}}, {"model": "wells.bcgs_numbers", "pk": 1467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K079422"}}, {"model": "wells.bcgs_numbers", "pk": 1468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K079424"}}, {"model": "wells.bcgs_numbers", "pk": 1469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K080121"}}, {"model": "wells.bcgs_numbers", "pk": 1470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K080122"}}, {"model": "wells.bcgs_numbers", "pk": 1471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K080123"}}, {"model": "wells.bcgs_numbers", "pk": 1472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K080124"}}, {"model": "wells.bcgs_numbers", "pk": 1473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089112"}}, {"model": "wells.bcgs_numbers", "pk": 1474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089212"}}, {"model": "wells.bcgs_numbers", "pk": 1475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089214"}}, {"model": "wells.bcgs_numbers", "pk": 1476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089232"}}, {"model": "wells.bcgs_numbers", "pk": 1477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089334"}}, {"model": "wells.bcgs_numbers", "pk": 1478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089343"}}, {"model": "wells.bcgs_numbers", "pk": 1479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K089411"}}, {"model": "wells.bcgs_numbers", "pk": 1480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K090224"}}, {"model": "wells.bcgs_numbers", "pk": 1481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K090242"}}, {"model": "wells.bcgs_numbers", "pk": 1482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K090434"}}, {"model": "wells.bcgs_numbers", "pk": 1483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K098422"}}, {"model": "wells.bcgs_numbers", "pk": 1484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K098424"}}, {"model": "wells.bcgs_numbers", "pk": 1485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K098432"}}, {"model": "wells.bcgs_numbers", "pk": 1486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K099112"}}, {"model": "wells.bcgs_numbers", "pk": 1487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K099114"}}, {"model": "wells.bcgs_numbers", "pk": 1488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K099131"}}, {"model": "wells.bcgs_numbers", "pk": 1489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K100224"}}, {"model": "wells.bcgs_numbers", "pk": 1490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L"}}, {"model": "wells.bcgs_numbers", "pk": 1491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L.035"}}, {"model": "wells.bcgs_numbers", "pk": 1492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L.044.4"}}, {"model": "wells.bcgs_numbers", "pk": 1493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L.6"}}, {"model": "wells.bcgs_numbers", "pk": 1494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003144"}}, {"model": "wells.bcgs_numbers", "pk": 1495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003221"}}, {"model": "wells.bcgs_numbers", "pk": 1496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003222"}}, {"model": "wells.bcgs_numbers", "pk": 1497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003223"}}, {"model": "wells.bcgs_numbers", "pk": 1498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003224"}}, {"model": "wells.bcgs_numbers", "pk": 1499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003231"}}, {"model": "wells.bcgs_numbers", "pk": 1500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003241"}}, {"model": "wells.bcgs_numbers", "pk": 1501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003242"}}, {"model": "wells.bcgs_numbers", "pk": 1502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003243"}}, {"model": "wells.bcgs_numbers", "pk": 1503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003244"}}, {"model": "wells.bcgs_numbers", "pk": 1504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003421"}}, {"model": "wells.bcgs_numbers", "pk": 1505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L003422"}}, {"model": "wells.bcgs_numbers", "pk": 1506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L003423"}}, {"model": "wells.bcgs_numbers", "pk": 1507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L003424"}}, {"model": "wells.bcgs_numbers", "pk": 1508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L003441"}}, {"model": "wells.bcgs_numbers", "pk": 1509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L003443"}}, {"model": "wells.bcgs_numbers", "pk": 1510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L003444"}}, {"model": "wells.bcgs_numbers", "pk": 1511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004111"}}, {"model": "wells.bcgs_numbers", "pk": 1512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004112"}}, {"model": "wells.bcgs_numbers", "pk": 1513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004113"}}, {"model": "wells.bcgs_numbers", "pk": 1514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004131"}}, {"model": "wells.bcgs_numbers", "pk": 1515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004133"}}, {"model": "wells.bcgs_numbers", "pk": 1516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004311"}}, {"model": "wells.bcgs_numbers", "pk": 1517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004312"}}, {"model": "wells.bcgs_numbers", "pk": 1518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004313"}}, {"model": "wells.bcgs_numbers", "pk": 1519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004314"}}, {"model": "wells.bcgs_numbers", "pk": 1520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004331"}}, {"model": "wells.bcgs_numbers", "pk": 1521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004332"}}, {"model": "wells.bcgs_numbers", "pk": 1522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004334"}}, {"model": "wells.bcgs_numbers", "pk": 1523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L004343"}}, {"model": "wells.bcgs_numbers", "pk": 1524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013124"}}, {"model": "wells.bcgs_numbers", "pk": 1525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013142"}}, {"model": "wells.bcgs_numbers", "pk": 1526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013143"}}, {"model": "wells.bcgs_numbers", "pk": 1527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013144"}}, {"model": "wells.bcgs_numbers", "pk": 1528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013212"}}, {"model": "wells.bcgs_numbers", "pk": 1529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013214"}}, {"model": "wells.bcgs_numbers", "pk": 1530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013221"}}, {"model": "wells.bcgs_numbers", "pk": 1531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013231"}}, {"model": "wells.bcgs_numbers", "pk": 1532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013232"}}, {"model": "wells.bcgs_numbers", "pk": 1533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013241"}}, {"model": "wells.bcgs_numbers", "pk": 1534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013243"}}, {"model": "wells.bcgs_numbers", "pk": 1535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013244"}}, {"model": "wells.bcgs_numbers", "pk": 1536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013321"}}, {"model": "wells.bcgs_numbers", "pk": 1537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013322"}}, {"model": "wells.bcgs_numbers", "pk": 1538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013342"}}, {"model": "wells.bcgs_numbers", "pk": 1539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013421"}}, {"model": "wells.bcgs_numbers", "pk": 1540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013422"}}, {"model": "wells.bcgs_numbers", "pk": 1541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013423"}}, {"model": "wells.bcgs_numbers", "pk": 1542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013433"}}, {"model": "wells.bcgs_numbers", "pk": 1543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013442"}}, {"model": "wells.bcgs_numbers", "pk": 1544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L013444"}}, {"model": "wells.bcgs_numbers", "pk": 1545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014111"}}, {"model": "wells.bcgs_numbers", "pk": 1546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014112"}}, {"model": "wells.bcgs_numbers", "pk": 1547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014113"}}, {"model": "wells.bcgs_numbers", "pk": 1548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014114"}}, {"model": "wells.bcgs_numbers", "pk": 1549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014121"}}, {"model": "wells.bcgs_numbers", "pk": 1550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014131"}}, {"model": "wells.bcgs_numbers", "pk": 1551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014132"}}, {"model": "wells.bcgs_numbers", "pk": 1552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014133"}}, {"model": "wells.bcgs_numbers", "pk": 1553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014331"}}, {"model": "wells.bcgs_numbers", "pk": 1554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014334"}}, {"model": "wells.bcgs_numbers", "pk": 1555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014341"}}, {"model": "wells.bcgs_numbers", "pk": 1556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014343"}}, {"model": "wells.bcgs_numbers", "pk": 1557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014344"}}, {"model": "wells.bcgs_numbers", "pk": 1558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L014434"}}, {"model": "wells.bcgs_numbers", "pk": 1559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L017433"}}, {"model": "wells.bcgs_numbers", "pk": 1560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L023141"}}, {"model": "wells.bcgs_numbers", "pk": 1561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L023232"}}, {"model": "wells.bcgs_numbers", "pk": 1562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L023241"}}, {"model": "wells.bcgs_numbers", "pk": 1563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L023243"}}, {"model": "wells.bcgs_numbers", "pk": 1564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L023414"}}, {"model": "wells.bcgs_numbers", "pk": 1565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L024111"}}, {"model": "wells.bcgs_numbers", "pk": 1566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L024113"}}, {"model": "wells.bcgs_numbers", "pk": 1567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L024122"}}, {"model": "wells.bcgs_numbers", "pk": 1568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L024131"}}, {"model": "wells.bcgs_numbers", "pk": 1569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L024132"}}, {"model": "wells.bcgs_numbers", "pk": 1570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L024141"}}, {"model": "wells.bcgs_numbers", "pk": 1571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024142"}}, {"model": "wells.bcgs_numbers", "pk": 1572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024143"}}, {"model": "wells.bcgs_numbers", "pk": 1573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024144"}}, {"model": "wells.bcgs_numbers", "pk": 1574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024211"}}, {"model": "wells.bcgs_numbers", "pk": 1575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024213"}}, {"model": "wells.bcgs_numbers", "pk": 1576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024214"}}, {"model": "wells.bcgs_numbers", "pk": 1577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024224"}}, {"model": "wells.bcgs_numbers", "pk": 1578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024231"}}, {"model": "wells.bcgs_numbers", "pk": 1579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024232"}}, {"model": "wells.bcgs_numbers", "pk": 1580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024233"}}, {"model": "wells.bcgs_numbers", "pk": 1581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024234"}}, {"model": "wells.bcgs_numbers", "pk": 1582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024241"}}, {"model": "wells.bcgs_numbers", "pk": 1583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024242"}}, {"model": "wells.bcgs_numbers", "pk": 1584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024243"}}, {"model": "wells.bcgs_numbers", "pk": 1585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024244"}}, {"model": "wells.bcgs_numbers", "pk": 1586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024312"}}, {"model": "wells.bcgs_numbers", "pk": 1587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024321"}}, {"model": "wells.bcgs_numbers", "pk": 1588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024322"}}, {"model": "wells.bcgs_numbers", "pk": 1589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024324"}}, {"model": "wells.bcgs_numbers", "pk": 1590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024411"}}, {"model": "wells.bcgs_numbers", "pk": 1591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024412"}}, {"model": "wells.bcgs_numbers", "pk": 1592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024413"}}, {"model": "wells.bcgs_numbers", "pk": 1593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024414"}}, {"model": "wells.bcgs_numbers", "pk": 1594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024421"}}, {"model": "wells.bcgs_numbers", "pk": 1595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024422"}}, {"model": "wells.bcgs_numbers", "pk": 1596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024423"}}, {"model": "wells.bcgs_numbers", "pk": 1597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024424"}}, {"model": "wells.bcgs_numbers", "pk": 1598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024431"}}, {"model": "wells.bcgs_numbers", "pk": 1599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024432"}}, {"model": "wells.bcgs_numbers", "pk": 1600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024433"}}, {"model": "wells.bcgs_numbers", "pk": 1601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024434"}}, {"model": "wells.bcgs_numbers", "pk": 1602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024441"}}, {"model": "wells.bcgs_numbers", "pk": 1603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024442"}}, {"model": "wells.bcgs_numbers", "pk": 1604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024443"}}, {"model": "wells.bcgs_numbers", "pk": 1605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L024444"}}, {"model": "wells.bcgs_numbers", "pk": 1606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025113"}}, {"model": "wells.bcgs_numbers", "pk": 1607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025123"}}, {"model": "wells.bcgs_numbers", "pk": 1608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025124"}}, {"model": "wells.bcgs_numbers", "pk": 1609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025131"}}, {"model": "wells.bcgs_numbers", "pk": 1610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025132"}}, {"model": "wells.bcgs_numbers", "pk": 1611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025133"}}, {"model": "wells.bcgs_numbers", "pk": 1612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025141"}}, {"model": "wells.bcgs_numbers", "pk": 1613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025142"}}, {"model": "wells.bcgs_numbers", "pk": 1614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025144"}}, {"model": "wells.bcgs_numbers", "pk": 1615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025212"}}, {"model": "wells.bcgs_numbers", "pk": 1616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025213"}}, {"model": "wells.bcgs_numbers", "pk": 1617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025214"}}, {"model": "wells.bcgs_numbers", "pk": 1618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025221"}}, {"model": "wells.bcgs_numbers", "pk": 1619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025222"}}, {"model": "wells.bcgs_numbers", "pk": 1620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025223"}}, {"model": "wells.bcgs_numbers", "pk": 1621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025224"}}, {"model": "wells.bcgs_numbers", "pk": 1622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025231"}}, {"model": "wells.bcgs_numbers", "pk": 1623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025232"}}, {"model": "wells.bcgs_numbers", "pk": 1624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025234"}}, {"model": "wells.bcgs_numbers", "pk": 1625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025241"}}, {"model": "wells.bcgs_numbers", "pk": 1626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025242"}}, {"model": "wells.bcgs_numbers", "pk": 1627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025243"}}, {"model": "wells.bcgs_numbers", "pk": 1628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025244"}}, {"model": "wells.bcgs_numbers", "pk": 1629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L025331"}}, {"model": "wells.bcgs_numbers", "pk": 1630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L025333"}}, {"model": "wells.bcgs_numbers", "pk": 1631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026111"}}, {"model": "wells.bcgs_numbers", "pk": 1632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026113"}}, {"model": "wells.bcgs_numbers", "pk": 1633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026114"}}, {"model": "wells.bcgs_numbers", "pk": 1634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026124"}}, {"model": "wells.bcgs_numbers", "pk": 1635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026131"}}, {"model": "wells.bcgs_numbers", "pk": 1636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026132"}}, {"model": "wells.bcgs_numbers", "pk": 1637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026134"}}, {"model": "wells.bcgs_numbers", "pk": 1638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026141"}}, {"model": "wells.bcgs_numbers", "pk": 1639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026142"}}, {"model": "wells.bcgs_numbers", "pk": 1640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026143"}}, {"model": "wells.bcgs_numbers", "pk": 1641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026144"}}, {"model": "wells.bcgs_numbers", "pk": 1642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026211"}}, {"model": "wells.bcgs_numbers", "pk": 1643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026212"}}, {"model": "wells.bcgs_numbers", "pk": 1644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026223"}}, {"model": "wells.bcgs_numbers", "pk": 1645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026224"}}, {"model": "wells.bcgs_numbers", "pk": 1646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026233"}}, {"model": "wells.bcgs_numbers", "pk": 1647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026312"}}, {"model": "wells.bcgs_numbers", "pk": 1648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026314"}}, {"model": "wells.bcgs_numbers", "pk": 1649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026321"}}, {"model": "wells.bcgs_numbers", "pk": 1650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026322"}}, {"model": "wells.bcgs_numbers", "pk": 1651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026324"}}, {"model": "wells.bcgs_numbers", "pk": 1652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026332"}}, {"model": "wells.bcgs_numbers", "pk": 1653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026333"}}, {"model": "wells.bcgs_numbers", "pk": 1654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026334"}}, {"model": "wells.bcgs_numbers", "pk": 1655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026341"}}, {"model": "wells.bcgs_numbers", "pk": 1656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026342"}}, {"model": "wells.bcgs_numbers", "pk": 1657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026343"}}, {"model": "wells.bcgs_numbers", "pk": 1658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026344"}}, {"model": "wells.bcgs_numbers", "pk": 1659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026411"}}, {"model": "wells.bcgs_numbers", "pk": 1660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026412"}}, {"model": "wells.bcgs_numbers", "pk": 1661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026413"}}, {"model": "wells.bcgs_numbers", "pk": 1662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026421"}}, {"model": "wells.bcgs_numbers", "pk": 1663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026424"}}, {"model": "wells.bcgs_numbers", "pk": 1664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026431"}}, {"model": "wells.bcgs_numbers", "pk": 1665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026432"}}, {"model": "wells.bcgs_numbers", "pk": 1666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026433"}}, {"model": "wells.bcgs_numbers", "pk": 1667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026434"}}, {"model": "wells.bcgs_numbers", "pk": 1668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026442"}}, {"model": "wells.bcgs_numbers", "pk": 1669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026443"}}, {"model": "wells.bcgs_numbers", "pk": 1670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L026444"}}, {"model": "wells.bcgs_numbers", "pk": 1671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027113"}}, {"model": "wells.bcgs_numbers", "pk": 1672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027133"}}, {"model": "wells.bcgs_numbers", "pk": 1673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027134"}}, {"model": "wells.bcgs_numbers", "pk": 1674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027222"}}, {"model": "wells.bcgs_numbers", "pk": 1675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027224"}}, {"model": "wells.bcgs_numbers", "pk": 1676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027233"}}, {"model": "wells.bcgs_numbers", "pk": 1677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027234"}}, {"model": "wells.bcgs_numbers", "pk": 1678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027243"}}, {"model": "wells.bcgs_numbers", "pk": 1679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027244"}}, {"model": "wells.bcgs_numbers", "pk": 1680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027311"}}, {"model": "wells.bcgs_numbers", "pk": 1681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027321"}}, {"model": "wells.bcgs_numbers", "pk": 1682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027322"}}, {"model": "wells.bcgs_numbers", "pk": 1683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L027333"}}, {"model": "wells.bcgs_numbers", "pk": 1684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028111"}}, {"model": "wells.bcgs_numbers", "pk": 1685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028112"}}, {"model": "wells.bcgs_numbers", "pk": 1686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028113"}}, {"model": "wells.bcgs_numbers", "pk": 1687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028114"}}, {"model": "wells.bcgs_numbers", "pk": 1688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028131"}}, {"model": "wells.bcgs_numbers", "pk": 1689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028133"}}, {"model": "wells.bcgs_numbers", "pk": 1690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028143"}}, {"model": "wells.bcgs_numbers", "pk": 1691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028241"}}, {"model": "wells.bcgs_numbers", "pk": 1692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028242"}}, {"model": "wells.bcgs_numbers", "pk": 1693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028331"}}, {"model": "wells.bcgs_numbers", "pk": 1694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L028333"}}, {"model": "wells.bcgs_numbers", "pk": 1695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L031414"}}, {"model": "wells.bcgs_numbers", "pk": 1696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L031441"}}, {"model": "wells.bcgs_numbers", "pk": 1697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L031443"}}, {"model": "wells.bcgs_numbers", "pk": 1698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L033214"}}, {"model": "wells.bcgs_numbers", "pk": 1699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034114"}}, {"model": "wells.bcgs_numbers", "pk": 1700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034132"}}, {"model": "wells.bcgs_numbers", "pk": 1701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034143"}}, {"model": "wells.bcgs_numbers", "pk": 1702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034211"}}, {"model": "wells.bcgs_numbers", "pk": 1703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034212"}}, {"model": "wells.bcgs_numbers", "pk": 1704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034214"}}, {"model": "wells.bcgs_numbers", "pk": 1705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034221"}}, {"model": "wells.bcgs_numbers", "pk": 1706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034222"}}, {"model": "wells.bcgs_numbers", "pk": 1707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034223"}}, {"model": "wells.bcgs_numbers", "pk": 1708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034224"}}, {"model": "wells.bcgs_numbers", "pk": 1709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034232"}}, {"model": "wells.bcgs_numbers", "pk": 1710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034234"}}, {"model": "wells.bcgs_numbers", "pk": 1711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034241"}}, {"model": "wells.bcgs_numbers", "pk": 1712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034242"}}, {"model": "wells.bcgs_numbers", "pk": 1713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034243"}}, {"model": "wells.bcgs_numbers", "pk": 1714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034244"}}, {"model": "wells.bcgs_numbers", "pk": 1715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034321"}}, {"model": "wells.bcgs_numbers", "pk": 1716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034322"}}, {"model": "wells.bcgs_numbers", "pk": 1717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034324"}}, {"model": "wells.bcgs_numbers", "pk": 1718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034341"}}, {"model": "wells.bcgs_numbers", "pk": 1719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034342"}}, {"model": "wells.bcgs_numbers", "pk": 1720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034343"}}, {"model": "wells.bcgs_numbers", "pk": 1721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034344"}}, {"model": "wells.bcgs_numbers", "pk": 1722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034411"}}, {"model": "wells.bcgs_numbers", "pk": 1723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034412"}}, {"model": "wells.bcgs_numbers", "pk": 1724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034413"}}, {"model": "wells.bcgs_numbers", "pk": 1725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034421"}}, {"model": "wells.bcgs_numbers", "pk": 1726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034423"}}, {"model": "wells.bcgs_numbers", "pk": 1727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034431"}}, {"model": "wells.bcgs_numbers", "pk": 1728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034432"}}, {"model": "wells.bcgs_numbers", "pk": 1729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034433"}}, {"model": "wells.bcgs_numbers", "pk": 1730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034434"}}, {"model": "wells.bcgs_numbers", "pk": 1731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034441"}}, {"model": "wells.bcgs_numbers", "pk": 1732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034443"}}, {"model": "wells.bcgs_numbers", "pk": 1733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L034444"}}, {"model": "wells.bcgs_numbers", "pk": 1734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035111"}}, {"model": "wells.bcgs_numbers", "pk": 1735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035112"}}, {"model": "wells.bcgs_numbers", "pk": 1736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035113"}}, {"model": "wells.bcgs_numbers", "pk": 1737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035114"}}, {"model": "wells.bcgs_numbers", "pk": 1738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035123"}}, {"model": "wells.bcgs_numbers", "pk": 1739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035131"}}, {"model": "wells.bcgs_numbers", "pk": 1740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035132"}}, {"model": "wells.bcgs_numbers", "pk": 1741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035241"}}, {"model": "wells.bcgs_numbers", "pk": 1742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035243"}}, {"model": "wells.bcgs_numbers", "pk": 1743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035244"}}, {"model": "wells.bcgs_numbers", "pk": 1744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035312"}}, {"model": "wells.bcgs_numbers", "pk": 1745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035411"}}, {"model": "wells.bcgs_numbers", "pk": 1746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035412"}}, {"model": "wells.bcgs_numbers", "pk": 1747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L035423"}}, {"model": "wells.bcgs_numbers", "pk": 1748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036121"}}, {"model": "wells.bcgs_numbers", "pk": 1749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036122"}}, {"model": "wells.bcgs_numbers", "pk": 1750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036211"}}, {"model": "wells.bcgs_numbers", "pk": 1751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036212"}}, {"model": "wells.bcgs_numbers", "pk": 1752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036222"}}, {"model": "wells.bcgs_numbers", "pk": 1753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036321"}}, {"model": "wells.bcgs_numbers", "pk": 1754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036341"}}, {"model": "wells.bcgs_numbers", "pk": 1755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036342"}}, {"model": "wells.bcgs_numbers", "pk": 1756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L037313"}}, {"model": "wells.bcgs_numbers", "pk": 1757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L037332"}}, {"model": "wells.bcgs_numbers", "pk": 1758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L041222"}}, {"model": "wells.bcgs_numbers", "pk": 1759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L041242"}}, {"model": "wells.bcgs_numbers", "pk": 1760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L041244"}}, {"model": "wells.bcgs_numbers", "pk": 1761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L041442"}}, {"model": "wells.bcgs_numbers", "pk": 1762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L041443"}}, {"model": "wells.bcgs_numbers", "pk": 1763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042131"}}, {"model": "wells.bcgs_numbers", "pk": 1764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042133"}}, {"model": "wells.bcgs_numbers", "pk": 1765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042134"}}, {"model": "wells.bcgs_numbers", "pk": 1766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042311"}}, {"model": "wells.bcgs_numbers", "pk": 1767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042312"}}, {"model": "wells.bcgs_numbers", "pk": 1768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042313"}}, {"model": "wells.bcgs_numbers", "pk": 1769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042314"}}, {"model": "wells.bcgs_numbers", "pk": 1770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042321"}}, {"model": "wells.bcgs_numbers", "pk": 1771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042322"}}, {"model": "wells.bcgs_numbers", "pk": 1772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042323"}}, {"model": "wells.bcgs_numbers", "pk": 1773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042331"}}, {"model": "wells.bcgs_numbers", "pk": 1774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042332"}}, {"model": "wells.bcgs_numbers", "pk": 1775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042341"}}, {"model": "wells.bcgs_numbers", "pk": 1776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042411"}}, {"model": "wells.bcgs_numbers", "pk": 1777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042413"}}, {"model": "wells.bcgs_numbers", "pk": 1778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042414"}}, {"model": "wells.bcgs_numbers", "pk": 1779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042441"}}, {"model": "wells.bcgs_numbers", "pk": 1780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L042442"}}, {"model": "wells.bcgs_numbers", "pk": 1781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043142"}}, {"model": "wells.bcgs_numbers", "pk": 1782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043144"}}, {"model": "wells.bcgs_numbers", "pk": 1783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043231"}}, {"model": "wells.bcgs_numbers", "pk": 1784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043232"}}, {"model": "wells.bcgs_numbers", "pk": 1785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043233"}}, {"model": "wells.bcgs_numbers", "pk": 1786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043234"}}, {"model": "wells.bcgs_numbers", "pk": 1787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043243"}}, {"model": "wells.bcgs_numbers", "pk": 1788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043322"}}, {"model": "wells.bcgs_numbers", "pk": 1789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043324"}}, {"model": "wells.bcgs_numbers", "pk": 1790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043333"}}, {"model": "wells.bcgs_numbers", "pk": 1791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043334"}}, {"model": "wells.bcgs_numbers", "pk": 1792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043341"}}, {"model": "wells.bcgs_numbers", "pk": 1793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043342"}}, {"model": "wells.bcgs_numbers", "pk": 1794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043343"}}, {"model": "wells.bcgs_numbers", "pk": 1795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043344"}}, {"model": "wells.bcgs_numbers", "pk": 1796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043411"}}, {"model": "wells.bcgs_numbers", "pk": 1797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L043422"}}, {"model": "wells.bcgs_numbers", "pk": 1798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L044122"}}, {"model": "wells.bcgs_numbers", "pk": 1799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L044124"}}, {"model": "wells.bcgs_numbers", "pk": 1800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L044132"}}, {"model": "wells.bcgs_numbers", "pk": 1801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L044134"}}, {"model": "wells.bcgs_numbers", "pk": 1802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044141"}}, {"model": "wells.bcgs_numbers", "pk": 1803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044211"}}, {"model": "wells.bcgs_numbers", "pk": 1804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044212"}}, {"model": "wells.bcgs_numbers", "pk": 1805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044214"}}, {"model": "wells.bcgs_numbers", "pk": 1806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044221"}}, {"model": "wells.bcgs_numbers", "pk": 1807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044222"}}, {"model": "wells.bcgs_numbers", "pk": 1808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044223"}}, {"model": "wells.bcgs_numbers", "pk": 1809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044224"}}, {"model": "wells.bcgs_numbers", "pk": 1810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044241"}}, {"model": "wells.bcgs_numbers", "pk": 1811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044242"}}, {"model": "wells.bcgs_numbers", "pk": 1812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044243"}}, {"model": "wells.bcgs_numbers", "pk": 1813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044244"}}, {"model": "wells.bcgs_numbers", "pk": 1814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044311"}}, {"model": "wells.bcgs_numbers", "pk": 1815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044312"}}, {"model": "wells.bcgs_numbers", "pk": 1816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044313"}}, {"model": "wells.bcgs_numbers", "pk": 1817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044314"}}, {"model": "wells.bcgs_numbers", "pk": 1818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044323"}}, {"model": "wells.bcgs_numbers", "pk": 1819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044332"}}, {"model": "wells.bcgs_numbers", "pk": 1820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044334"}}, {"model": "wells.bcgs_numbers", "pk": 1821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044341"}}, {"model": "wells.bcgs_numbers", "pk": 1822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044343"}}, {"model": "wells.bcgs_numbers", "pk": 1823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044412"}}, {"model": "wells.bcgs_numbers", "pk": 1824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044413"}}, {"model": "wells.bcgs_numbers", "pk": 1825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044414"}}, {"model": "wells.bcgs_numbers", "pk": 1826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044421"}}, {"model": "wells.bcgs_numbers", "pk": 1827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044422"}}, {"model": "wells.bcgs_numbers", "pk": 1828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044423"}}, {"model": "wells.bcgs_numbers", "pk": 1829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044424"}}, {"model": "wells.bcgs_numbers", "pk": 1830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044431"}}, {"model": "wells.bcgs_numbers", "pk": 1831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044432"}}, {"model": "wells.bcgs_numbers", "pk": 1832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044433"}}, {"model": "wells.bcgs_numbers", "pk": 1833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044434"}}, {"model": "wells.bcgs_numbers", "pk": 1834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044441"}}, {"model": "wells.bcgs_numbers", "pk": 1835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044442"}}, {"model": "wells.bcgs_numbers", "pk": 1836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044443"}}, {"model": "wells.bcgs_numbers", "pk": 1837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L044444"}}, {"model": "wells.bcgs_numbers", "pk": 1838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045111"}}, {"model": "wells.bcgs_numbers", "pk": 1839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045113"}}, {"model": "wells.bcgs_numbers", "pk": 1840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045131"}}, {"model": "wells.bcgs_numbers", "pk": 1841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045132"}}, {"model": "wells.bcgs_numbers", "pk": 1842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045133"}}, {"model": "wells.bcgs_numbers", "pk": 1843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045134"}}, {"model": "wells.bcgs_numbers", "pk": 1844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045141"}}, {"model": "wells.bcgs_numbers", "pk": 1845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045143"}}, {"model": "wells.bcgs_numbers", "pk": 1846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045311"}}, {"model": "wells.bcgs_numbers", "pk": 1847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045312"}}, {"model": "wells.bcgs_numbers", "pk": 1848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045313"}}, {"model": "wells.bcgs_numbers", "pk": 1849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045314"}}, {"model": "wells.bcgs_numbers", "pk": 1850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045321"}}, {"model": "wells.bcgs_numbers", "pk": 1851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045323"}}, {"model": "wells.bcgs_numbers", "pk": 1852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045324"}}, {"model": "wells.bcgs_numbers", "pk": 1853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045331"}}, {"model": "wells.bcgs_numbers", "pk": 1854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045332"}}, {"model": "wells.bcgs_numbers", "pk": 1855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045333"}}, {"model": "wells.bcgs_numbers", "pk": 1856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045334"}}, {"model": "wells.bcgs_numbers", "pk": 1857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045341"}}, {"model": "wells.bcgs_numbers", "pk": 1858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045342"}}, {"model": "wells.bcgs_numbers", "pk": 1859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045343"}}, {"model": "wells.bcgs_numbers", "pk": 1860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L045344"}}, {"model": "wells.bcgs_numbers", "pk": 1861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L046123"}}, {"model": "wells.bcgs_numbers", "pk": 1862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L046132"}}, {"model": "wells.bcgs_numbers", "pk": 1863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L046213"}}, {"model": "wells.bcgs_numbers", "pk": 1864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L046232"}}, {"model": "wells.bcgs_numbers", "pk": 1865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L047114"}}, {"model": "wells.bcgs_numbers", "pk": 1866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L047321"}}, {"model": "wells.bcgs_numbers", "pk": 1867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L051221"}}, {"model": "wells.bcgs_numbers", "pk": 1868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L051223"}}, {"model": "wells.bcgs_numbers", "pk": 1869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L051241"}}, {"model": "wells.bcgs_numbers", "pk": 1870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L051242"}}, {"model": "wells.bcgs_numbers", "pk": 1871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L051433"}}, {"model": "wells.bcgs_numbers", "pk": 1872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L052244"}}, {"model": "wells.bcgs_numbers", "pk": 1873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L053112"}}, {"model": "wells.bcgs_numbers", "pk": 1874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L053121"}}, {"model": "wells.bcgs_numbers", "pk": 1875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L053131"}}, {"model": "wells.bcgs_numbers", "pk": 1876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054112"}}, {"model": "wells.bcgs_numbers", "pk": 1877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054113"}}, {"model": "wells.bcgs_numbers", "pk": 1878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054121"}}, {"model": "wells.bcgs_numbers", "pk": 1879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054123"}}, {"model": "wells.bcgs_numbers", "pk": 1880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054132"}}, {"model": "wells.bcgs_numbers", "pk": 1881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054133"}}, {"model": "wells.bcgs_numbers", "pk": 1882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054134"}}, {"model": "wells.bcgs_numbers", "pk": 1883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054141"}}, {"model": "wells.bcgs_numbers", "pk": 1884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054143"}}, {"model": "wells.bcgs_numbers", "pk": 1885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054212"}}, {"model": "wells.bcgs_numbers", "pk": 1886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054213"}}, {"model": "wells.bcgs_numbers", "pk": 1887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054214"}}, {"model": "wells.bcgs_numbers", "pk": 1888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054221"}}, {"model": "wells.bcgs_numbers", "pk": 1889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054222"}}, {"model": "wells.bcgs_numbers", "pk": 1890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L054223"}}, {"model": "wells.bcgs_numbers", "pk": 1891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054224"}}, {"model": "wells.bcgs_numbers", "pk": 1892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054241"}}, {"model": "wells.bcgs_numbers", "pk": 1893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054242"}}, {"model": "wells.bcgs_numbers", "pk": 1894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054243"}}, {"model": "wells.bcgs_numbers", "pk": 1895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054312"}}, {"model": "wells.bcgs_numbers", "pk": 1896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054314"}}, {"model": "wells.bcgs_numbers", "pk": 1897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054321"}}, {"model": "wells.bcgs_numbers", "pk": 1898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054323"}}, {"model": "wells.bcgs_numbers", "pk": 1899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054332"}}, {"model": "wells.bcgs_numbers", "pk": 1900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054334"}}, {"model": "wells.bcgs_numbers", "pk": 1901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054421"}}, {"model": "wells.bcgs_numbers", "pk": 1902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054423"}}, {"model": "wells.bcgs_numbers", "pk": 1903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054424"}}, {"model": "wells.bcgs_numbers", "pk": 1904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054441"}}, {"model": "wells.bcgs_numbers", "pk": 1905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054442"}}, {"model": "wells.bcgs_numbers", "pk": 1906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054443"}}, {"model": "wells.bcgs_numbers", "pk": 1907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L054444"}}, {"model": "wells.bcgs_numbers", "pk": 1908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055111"}}, {"model": "wells.bcgs_numbers", "pk": 1909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055112"}}, {"model": "wells.bcgs_numbers", "pk": 1910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055113"}}, {"model": "wells.bcgs_numbers", "pk": 1911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055121"}}, {"model": "wells.bcgs_numbers", "pk": 1912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055122"}}, {"model": "wells.bcgs_numbers", "pk": 1913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055123"}}, {"model": "wells.bcgs_numbers", "pk": 1914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055124"}}, {"model": "wells.bcgs_numbers", "pk": 1915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055131"}}, {"model": "wells.bcgs_numbers", "pk": 1916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055133"}}, {"model": "wells.bcgs_numbers", "pk": 1917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055134"}}, {"model": "wells.bcgs_numbers", "pk": 1918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055141"}}, {"model": "wells.bcgs_numbers", "pk": 1919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055142"}}, {"model": "wells.bcgs_numbers", "pk": 1920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055143"}}, {"model": "wells.bcgs_numbers", "pk": 1921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055144"}}, {"model": "wells.bcgs_numbers", "pk": 1922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055211"}}, {"model": "wells.bcgs_numbers", "pk": 1923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055233"}}, {"model": "wells.bcgs_numbers", "pk": 1924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055241"}}, {"model": "wells.bcgs_numbers", "pk": 1925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055244"}}, {"model": "wells.bcgs_numbers", "pk": 1926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055311"}}, {"model": "wells.bcgs_numbers", "pk": 1927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055312"}}, {"model": "wells.bcgs_numbers", "pk": 1928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055313"}}, {"model": "wells.bcgs_numbers", "pk": 1929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055314"}}, {"model": "wells.bcgs_numbers", "pk": 1930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055321"}}, {"model": "wells.bcgs_numbers", "pk": 1931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055322"}}, {"model": "wells.bcgs_numbers", "pk": 1932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055323"}}, {"model": "wells.bcgs_numbers", "pk": 1933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055324"}}, {"model": "wells.bcgs_numbers", "pk": 1934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055331"}}, {"model": "wells.bcgs_numbers", "pk": 1935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055332"}}, {"model": "wells.bcgs_numbers", "pk": 1936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055333"}}, {"model": "wells.bcgs_numbers", "pk": 1937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055334"}}, {"model": "wells.bcgs_numbers", "pk": 1938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055341"}}, {"model": "wells.bcgs_numbers", "pk": 1939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055342"}}, {"model": "wells.bcgs_numbers", "pk": 1940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055343"}}, {"model": "wells.bcgs_numbers", "pk": 1941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055344"}}, {"model": "wells.bcgs_numbers", "pk": 1942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055411"}}, {"model": "wells.bcgs_numbers", "pk": 1943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055412"}}, {"model": "wells.bcgs_numbers", "pk": 1944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055414"}}, {"model": "wells.bcgs_numbers", "pk": 1945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055421"}}, {"model": "wells.bcgs_numbers", "pk": 1946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055422"}}, {"model": "wells.bcgs_numbers", "pk": 1947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055423"}}, {"model": "wells.bcgs_numbers", "pk": 1948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L055442"}}, {"model": "wells.bcgs_numbers", "pk": 1949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056111"}}, {"model": "wells.bcgs_numbers", "pk": 1950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056114"}}, {"model": "wells.bcgs_numbers", "pk": 1951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056121"}}, {"model": "wells.bcgs_numbers", "pk": 1952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056132"}}, {"model": "wells.bcgs_numbers", "pk": 1953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056133"}}, {"model": "wells.bcgs_numbers", "pk": 1954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056134"}}, {"model": "wells.bcgs_numbers", "pk": 1955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056143"}}, {"model": "wells.bcgs_numbers", "pk": 1956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056311"}}, {"model": "wells.bcgs_numbers", "pk": 1957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056312"}}, {"model": "wells.bcgs_numbers", "pk": 1958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L056322"}}, {"model": "wells.bcgs_numbers", "pk": 1959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061112"}}, {"model": "wells.bcgs_numbers", "pk": 1960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061113"}}, {"model": "wells.bcgs_numbers", "pk": 1961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061114"}}, {"model": "wells.bcgs_numbers", "pk": 1962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061131"}}, {"model": "wells.bcgs_numbers", "pk": 1963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061132"}}, {"model": "wells.bcgs_numbers", "pk": 1964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061134"}}, {"model": "wells.bcgs_numbers", "pk": 1965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061143"}}, {"model": "wells.bcgs_numbers", "pk": 1966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061144"}}, {"model": "wells.bcgs_numbers", "pk": 1967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061211"}}, {"model": "wells.bcgs_numbers", "pk": 1968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061222"}}, {"model": "wells.bcgs_numbers", "pk": 1969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L061223"}}, {"model": "wells.bcgs_numbers", "pk": 1970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061224"}}, {"model": "wells.bcgs_numbers", "pk": 1971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061233"}}, {"model": "wells.bcgs_numbers", "pk": 1972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061241"}}, {"model": "wells.bcgs_numbers", "pk": 1973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061242"}}, {"model": "wells.bcgs_numbers", "pk": 1974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061243"}}, {"model": "wells.bcgs_numbers", "pk": 1975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061244"}}, {"model": "wells.bcgs_numbers", "pk": 1976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061311"}}, {"model": "wells.bcgs_numbers", "pk": 1977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061322"}}, {"model": "wells.bcgs_numbers", "pk": 1978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061332"}}, {"model": "wells.bcgs_numbers", "pk": 1979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061341"}}, {"model": "wells.bcgs_numbers", "pk": 1980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061411"}}, {"model": "wells.bcgs_numbers", "pk": 1981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061412"}}, {"model": "wells.bcgs_numbers", "pk": 1982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061414"}}, {"model": "wells.bcgs_numbers", "pk": 1983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061421"}}, {"model": "wells.bcgs_numbers", "pk": 1984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061422"}}, {"model": "wells.bcgs_numbers", "pk": 1985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061424"}}, {"model": "wells.bcgs_numbers", "pk": 1986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061431"}}, {"model": "wells.bcgs_numbers", "pk": 1987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061432"}}, {"model": "wells.bcgs_numbers", "pk": 1988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061433"}}, {"model": "wells.bcgs_numbers", "pk": 1989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061434"}}, {"model": "wells.bcgs_numbers", "pk": 1990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061442"}}, {"model": "wells.bcgs_numbers", "pk": 1991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062133"}}, {"model": "wells.bcgs_numbers", "pk": 1992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062134"}}, {"model": "wells.bcgs_numbers", "pk": 1993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062212"}}, {"model": "wells.bcgs_numbers", "pk": 1994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062214"}}, {"model": "wells.bcgs_numbers", "pk": 1995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062221"}}, {"model": "wells.bcgs_numbers", "pk": 1996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062231"}}, {"model": "wells.bcgs_numbers", "pk": 1997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062232"}}, {"model": "wells.bcgs_numbers", "pk": 1998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062312"}}, {"model": "wells.bcgs_numbers", "pk": 1999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062313"}}, {"model": "wells.bcgs_numbers", "pk": 2000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062314"}}, {"model": "wells.bcgs_numbers", "pk": 2001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062331"}}, {"model": "wells.bcgs_numbers", "pk": 2002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L062333"}}, {"model": "wells.bcgs_numbers", "pk": 2003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L063311"}}, {"model": "wells.bcgs_numbers", "pk": 2004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L063314"}}, {"model": "wells.bcgs_numbers", "pk": 2005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064112"}}, {"model": "wells.bcgs_numbers", "pk": 2006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064113"}}, {"model": "wells.bcgs_numbers", "pk": 2007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064114"}}, {"model": "wells.bcgs_numbers", "pk": 2008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064131"}}, {"model": "wells.bcgs_numbers", "pk": 2009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064132"}}, {"model": "wells.bcgs_numbers", "pk": 2010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064133"}}, {"model": "wells.bcgs_numbers", "pk": 2011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064134"}}, {"model": "wells.bcgs_numbers", "pk": 2012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064221"}}, {"model": "wells.bcgs_numbers", "pk": 2013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064222"}}, {"model": "wells.bcgs_numbers", "pk": 2014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064223"}}, {"model": "wells.bcgs_numbers", "pk": 2015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064224"}}, {"model": "wells.bcgs_numbers", "pk": 2016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064242"}}, {"model": "wells.bcgs_numbers", "pk": 2017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064312"}}, {"model": "wells.bcgs_numbers", "pk": 2018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064321"}}, {"model": "wells.bcgs_numbers", "pk": 2019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064323"}}, {"model": "wells.bcgs_numbers", "pk": 2020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064324"}}, {"model": "wells.bcgs_numbers", "pk": 2021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064332"}}, {"model": "wells.bcgs_numbers", "pk": 2022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064334"}}, {"model": "wells.bcgs_numbers", "pk": 2023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064341"}}, {"model": "wells.bcgs_numbers", "pk": 2024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064342"}}, {"model": "wells.bcgs_numbers", "pk": 2025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064343"}}, {"model": "wells.bcgs_numbers", "pk": 2026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064344"}}, {"model": "wells.bcgs_numbers", "pk": 2027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064422"}}, {"model": "wells.bcgs_numbers", "pk": 2028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064423"}}, {"model": "wells.bcgs_numbers", "pk": 2029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064424"}}, {"model": "wells.bcgs_numbers", "pk": 2030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064431"}}, {"model": "wells.bcgs_numbers", "pk": 2031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064432"}}, {"model": "wells.bcgs_numbers", "pk": 2032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064433"}}, {"model": "wells.bcgs_numbers", "pk": 2033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064434"}}, {"model": "wells.bcgs_numbers", "pk": 2034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064441"}}, {"model": "wells.bcgs_numbers", "pk": 2035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L064442"}}, {"model": "wells.bcgs_numbers", "pk": 2036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L064443"}}, {"model": "wells.bcgs_numbers", "pk": 2037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L064444"}}, {"model": "wells.bcgs_numbers", "pk": 2038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065111"}}, {"model": "wells.bcgs_numbers", "pk": 2039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065112"}}, {"model": "wells.bcgs_numbers", "pk": 2040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065113"}}, {"model": "wells.bcgs_numbers", "pk": 2041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065114"}}, {"model": "wells.bcgs_numbers", "pk": 2042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065121"}}, {"model": "wells.bcgs_numbers", "pk": 2043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065122"}}, {"model": "wells.bcgs_numbers", "pk": 2044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065123"}}, {"model": "wells.bcgs_numbers", "pk": 2045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065124"}}, {"model": "wells.bcgs_numbers", "pk": 2046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065131"}}, {"model": "wells.bcgs_numbers", "pk": 2047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065132"}}, {"model": "wells.bcgs_numbers", "pk": 2048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065133"}}, {"model": "wells.bcgs_numbers", "pk": 2049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065134"}}, {"model": "wells.bcgs_numbers", "pk": 2050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065141"}}, {"model": "wells.bcgs_numbers", "pk": 2051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065142"}}, {"model": "wells.bcgs_numbers", "pk": 2052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065143"}}, {"model": "wells.bcgs_numbers", "pk": 2053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065144"}}, {"model": "wells.bcgs_numbers", "pk": 2054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065213"}}, {"model": "wells.bcgs_numbers", "pk": 2055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065233"}}, {"model": "wells.bcgs_numbers", "pk": 2056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065311"}}, {"model": "wells.bcgs_numbers", "pk": 2057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065312"}}, {"model": "wells.bcgs_numbers", "pk": 2058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065313"}}, {"model": "wells.bcgs_numbers", "pk": 2059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065321"}}, {"model": "wells.bcgs_numbers", "pk": 2060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065322"}}, {"model": "wells.bcgs_numbers", "pk": 2061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065323"}}, {"model": "wells.bcgs_numbers", "pk": 2062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065331"}}, {"model": "wells.bcgs_numbers", "pk": 2063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065341"}}, {"model": "wells.bcgs_numbers", "pk": 2064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065413"}}, {"model": "wells.bcgs_numbers", "pk": 2065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065414"}}, {"model": "wells.bcgs_numbers", "pk": 2066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065432"}}, {"model": "wells.bcgs_numbers", "pk": 2067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065434"}}, {"model": "wells.bcgs_numbers", "pk": 2068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065441"}}, {"model": "wells.bcgs_numbers", "pk": 2069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L065443"}}, {"model": "wells.bcgs_numbers", "pk": 2070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L067111"}}, {"model": "wells.bcgs_numbers", "pk": 2071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L067114"}}, {"model": "wells.bcgs_numbers", "pk": 2072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L067121"}}, {"model": "wells.bcgs_numbers", "pk": 2073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L067123"}}, {"model": "wells.bcgs_numbers", "pk": 2074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L067124"}}, {"model": "wells.bcgs_numbers", "pk": 2075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L067142"}}, {"model": "wells.bcgs_numbers", "pk": 2076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071113"}}, {"model": "wells.bcgs_numbers", "pk": 2077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071123"}}, {"model": "wells.bcgs_numbers", "pk": 2078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071131"}}, {"model": "wells.bcgs_numbers", "pk": 2079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071132"}}, {"model": "wells.bcgs_numbers", "pk": 2080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071134"}}, {"model": "wells.bcgs_numbers", "pk": 2081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071141"}}, {"model": "wells.bcgs_numbers", "pk": 2082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071143"}}, {"model": "wells.bcgs_numbers", "pk": 2083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071211"}}, {"model": "wells.bcgs_numbers", "pk": 2084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L071312"}}, {"model": "wells.bcgs_numbers", "pk": 2085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072111"}}, {"model": "wells.bcgs_numbers", "pk": 2086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072113"}}, {"model": "wells.bcgs_numbers", "pk": 2087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072114"}}, {"model": "wells.bcgs_numbers", "pk": 2088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072223"}}, {"model": "wells.bcgs_numbers", "pk": 2089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072233"}}, {"model": "wells.bcgs_numbers", "pk": 2090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072321"}}, {"model": "wells.bcgs_numbers", "pk": 2091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072323"}}, {"model": "wells.bcgs_numbers", "pk": 2092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072324"}}, {"model": "wells.bcgs_numbers", "pk": 2093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072342"}}, {"model": "wells.bcgs_numbers", "pk": 2094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L072344"}}, {"model": "wells.bcgs_numbers", "pk": 2095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L072414"}}, {"model": "wells.bcgs_numbers", "pk": 2096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L072433"}}, {"model": "wells.bcgs_numbers", "pk": 2097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L072441"}}, {"model": "wells.bcgs_numbers", "pk": 2098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L072443"}}, {"model": "wells.bcgs_numbers", "pk": 2099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L072444"}}, {"model": "wells.bcgs_numbers", "pk": 2100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L073343"}}, {"model": "wells.bcgs_numbers", "pk": 2101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L073344"}}, {"model": "wells.bcgs_numbers", "pk": 2102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L073442"}}, {"model": "wells.bcgs_numbers", "pk": 2103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L073443"}}, {"model": "wells.bcgs_numbers", "pk": 2104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L073444"}}, {"model": "wells.bcgs_numbers", "pk": 2105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074112"}}, {"model": "wells.bcgs_numbers", "pk": 2106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074114"}}, {"model": "wells.bcgs_numbers", "pk": 2107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074121"}}, {"model": "wells.bcgs_numbers", "pk": 2108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074122"}}, {"model": "wells.bcgs_numbers", "pk": 2109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074123"}}, {"model": "wells.bcgs_numbers", "pk": 2110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074132"}}, {"model": "wells.bcgs_numbers", "pk": 2111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074141"}}, {"model": "wells.bcgs_numbers", "pk": 2112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074142"}}, {"model": "wells.bcgs_numbers", "pk": 2113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074143"}}, {"model": "wells.bcgs_numbers", "pk": 2114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074144"}}, {"model": "wells.bcgs_numbers", "pk": 2115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074211"}}, {"model": "wells.bcgs_numbers", "pk": 2116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074212"}}, {"model": "wells.bcgs_numbers", "pk": 2117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074214"}}, {"model": "wells.bcgs_numbers", "pk": 2118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074221"}}, {"model": "wells.bcgs_numbers", "pk": 2119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074223"}}, {"model": "wells.bcgs_numbers", "pk": 2120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074224"}}, {"model": "wells.bcgs_numbers", "pk": 2121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074234"}}, {"model": "wells.bcgs_numbers", "pk": 2122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074244"}}, {"model": "wells.bcgs_numbers", "pk": 2123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074321"}}, {"model": "wells.bcgs_numbers", "pk": 2124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074322"}}, {"model": "wells.bcgs_numbers", "pk": 2125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074323"}}, {"model": "wells.bcgs_numbers", "pk": 2126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074332"}}, {"model": "wells.bcgs_numbers", "pk": 2127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074334"}}, {"model": "wells.bcgs_numbers", "pk": 2128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074341"}}, {"model": "wells.bcgs_numbers", "pk": 2129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074343"}}, {"model": "wells.bcgs_numbers", "pk": 2130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074344"}}, {"model": "wells.bcgs_numbers", "pk": 2131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074412"}}, {"model": "wells.bcgs_numbers", "pk": 2132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074413"}}, {"model": "wells.bcgs_numbers", "pk": 2133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074414"}}, {"model": "wells.bcgs_numbers", "pk": 2134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074421"}}, {"model": "wells.bcgs_numbers", "pk": 2135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074422"}}, {"model": "wells.bcgs_numbers", "pk": 2136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074431"}}, {"model": "wells.bcgs_numbers", "pk": 2137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074433"}}, {"model": "wells.bcgs_numbers", "pk": 2138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074441"}}, {"model": "wells.bcgs_numbers", "pk": 2139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074442"}}, {"model": "wells.bcgs_numbers", "pk": 2140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L074444"}}, {"model": "wells.bcgs_numbers", "pk": 2141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L075221"}}, {"model": "wells.bcgs_numbers", "pk": 2142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L075223"}}, {"model": "wells.bcgs_numbers", "pk": 2143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L075244"}}, {"model": "wells.bcgs_numbers", "pk": 2144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L075333"}}, {"model": "wells.bcgs_numbers", "pk": 2145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L075334"}}, {"model": "wells.bcgs_numbers", "pk": 2146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L075424"}}, {"model": "wells.bcgs_numbers", "pk": 2147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L075442"}}, {"model": "wells.bcgs_numbers", "pk": 2148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L076313"}}, {"model": "wells.bcgs_numbers", "pk": 2149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L076331"}}, {"model": "wells.bcgs_numbers", "pk": 2150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L076333"}}, {"model": "wells.bcgs_numbers", "pk": 2151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L080444"}}, {"model": "wells.bcgs_numbers", "pk": 2152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L081134"}}, {"model": "wells.bcgs_numbers", "pk": 2153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L081311"}}, {"model": "wells.bcgs_numbers", "pk": 2154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L081312"}}, {"model": "wells.bcgs_numbers", "pk": 2155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L081314"}}, {"model": "wells.bcgs_numbers", "pk": 2156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L081342"}}, {"model": "wells.bcgs_numbers", "pk": 2157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L081431"}}, {"model": "wells.bcgs_numbers", "pk": 2158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082122"}}, {"model": "wells.bcgs_numbers", "pk": 2159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082124"}}, {"model": "wells.bcgs_numbers", "pk": 2160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082132"}}, {"model": "wells.bcgs_numbers", "pk": 2161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082142"}}, {"model": "wells.bcgs_numbers", "pk": 2162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082211"}}, {"model": "wells.bcgs_numbers", "pk": 2163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082212"}}, {"model": "wells.bcgs_numbers", "pk": 2164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082213"}}, {"model": "wells.bcgs_numbers", "pk": 2165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082231"}}, {"model": "wells.bcgs_numbers", "pk": 2166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L082232"}}, {"model": "wells.bcgs_numbers", "pk": 2167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083113"}}, {"model": "wells.bcgs_numbers", "pk": 2168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083114"}}, {"model": "wells.bcgs_numbers", "pk": 2169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083121"}}, {"model": "wells.bcgs_numbers", "pk": 2170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083123"}}, {"model": "wells.bcgs_numbers", "pk": 2171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083132"}}, {"model": "wells.bcgs_numbers", "pk": 2172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083134"}}, {"model": "wells.bcgs_numbers", "pk": 2173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083141"}}, {"model": "wells.bcgs_numbers", "pk": 2174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083243"}}, {"model": "wells.bcgs_numbers", "pk": 2175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083244"}}, {"model": "wells.bcgs_numbers", "pk": 2176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083311"}}, {"model": "wells.bcgs_numbers", "pk": 2177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083313"}}, {"model": "wells.bcgs_numbers", "pk": 2178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083332"}}, {"model": "wells.bcgs_numbers", "pk": 2179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083342"}}, {"model": "wells.bcgs_numbers", "pk": 2180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083343"}}, {"model": "wells.bcgs_numbers", "pk": 2181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083344"}}, {"model": "wells.bcgs_numbers", "pk": 2182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083412"}}, {"model": "wells.bcgs_numbers", "pk": 2183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083413"}}, {"model": "wells.bcgs_numbers", "pk": 2184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083414"}}, {"model": "wells.bcgs_numbers", "pk": 2185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083421"}}, {"model": "wells.bcgs_numbers", "pk": 2186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083422"}}, {"model": "wells.bcgs_numbers", "pk": 2187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083423"}}, {"model": "wells.bcgs_numbers", "pk": 2188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083424"}}, {"model": "wells.bcgs_numbers", "pk": 2189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083431"}}, {"model": "wells.bcgs_numbers", "pk": 2190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083432"}}, {"model": "wells.bcgs_numbers", "pk": 2191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083434"}}, {"model": "wells.bcgs_numbers", "pk": 2192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083441"}}, {"model": "wells.bcgs_numbers", "pk": 2193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L083442"}}, {"model": "wells.bcgs_numbers", "pk": 2194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L084112"}}, {"model": "wells.bcgs_numbers", "pk": 2195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L084114"}}, {"model": "wells.bcgs_numbers", "pk": 2196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L084121"}}, {"model": "wells.bcgs_numbers", "pk": 2197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L084122"}}, {"model": "wells.bcgs_numbers", "pk": 2198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084123"}}, {"model": "wells.bcgs_numbers", "pk": 2199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084124"}}, {"model": "wells.bcgs_numbers", "pk": 2200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084132"}}, {"model": "wells.bcgs_numbers", "pk": 2201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084133"}}, {"model": "wells.bcgs_numbers", "pk": 2202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084141"}}, {"model": "wells.bcgs_numbers", "pk": 2203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084142"}}, {"model": "wells.bcgs_numbers", "pk": 2204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084143"}}, {"model": "wells.bcgs_numbers", "pk": 2205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084144"}}, {"model": "wells.bcgs_numbers", "pk": 2206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084312"}}, {"model": "wells.bcgs_numbers", "pk": 2207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084313"}}, {"model": "wells.bcgs_numbers", "pk": 2208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084321"}}, {"model": "wells.bcgs_numbers", "pk": 2209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084322"}}, {"model": "wells.bcgs_numbers", "pk": 2210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084323"}}, {"model": "wells.bcgs_numbers", "pk": 2211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084324"}}, {"model": "wells.bcgs_numbers", "pk": 2212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084331"}}, {"model": "wells.bcgs_numbers", "pk": 2213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084332"}}, {"model": "wells.bcgs_numbers", "pk": 2214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084334"}}, {"model": "wells.bcgs_numbers", "pk": 2215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084342"}}, {"model": "wells.bcgs_numbers", "pk": 2216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084413"}}, {"model": "wells.bcgs_numbers", "pk": 2217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L084431"}}, {"model": "wells.bcgs_numbers", "pk": 2218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085111"}}, {"model": "wells.bcgs_numbers", "pk": 2219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085112"}}, {"model": "wells.bcgs_numbers", "pk": 2220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085222"}}, {"model": "wells.bcgs_numbers", "pk": 2221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085232"}}, {"model": "wells.bcgs_numbers", "pk": 2222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085234"}}, {"model": "wells.bcgs_numbers", "pk": 2223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085242"}}, {"model": "wells.bcgs_numbers", "pk": 2224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086111"}}, {"model": "wells.bcgs_numbers", "pk": 2225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086112"}}, {"model": "wells.bcgs_numbers", "pk": 2226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086113"}}, {"model": "wells.bcgs_numbers", "pk": 2227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086114"}}, {"model": "wells.bcgs_numbers", "pk": 2228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086133"}}, {"model": "wells.bcgs_numbers", "pk": 2229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086134"}}, {"model": "wells.bcgs_numbers", "pk": 2230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086143"}}, {"model": "wells.bcgs_numbers", "pk": 2231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086311"}}, {"model": "wells.bcgs_numbers", "pk": 2232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086312"}}, {"model": "wells.bcgs_numbers", "pk": 2233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086314"}}, {"model": "wells.bcgs_numbers", "pk": 2234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086321"}}, {"model": "wells.bcgs_numbers", "pk": 2235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086322"}}, {"model": "wells.bcgs_numbers", "pk": 2236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086323"}}, {"model": "wells.bcgs_numbers", "pk": 2237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086341"}}, {"model": "wells.bcgs_numbers", "pk": 2238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086342"}}, {"model": "wells.bcgs_numbers", "pk": 2239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086431"}}, {"model": "wells.bcgs_numbers", "pk": 2240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086433"}}, {"model": "wells.bcgs_numbers", "pk": 2241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086434"}}, {"model": "wells.bcgs_numbers", "pk": 2242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086443"}}, {"model": "wells.bcgs_numbers", "pk": 2243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086444"}}, {"model": "wells.bcgs_numbers", "pk": 2244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L090233"}}, {"model": "wells.bcgs_numbers", "pk": 2245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L090322"}}, {"model": "wells.bcgs_numbers", "pk": 2246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L092232"}}, {"model": "wells.bcgs_numbers", "pk": 2247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L092234"}}, {"model": "wells.bcgs_numbers", "pk": 2248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093111"}}, {"model": "wells.bcgs_numbers", "pk": 2249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093112"}}, {"model": "wells.bcgs_numbers", "pk": 2250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093121"}}, {"model": "wells.bcgs_numbers", "pk": 2251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093123"}}, {"model": "wells.bcgs_numbers", "pk": 2252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093124"}}, {"model": "wells.bcgs_numbers", "pk": 2253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093212"}}, {"model": "wells.bcgs_numbers", "pk": 2254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L093214"}}, {"model": "wells.bcgs_numbers", "pk": 2255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L093221"}}, {"model": "wells.bcgs_numbers", "pk": 2256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L093223"}}, {"model": "wells.bcgs_numbers", "pk": 2257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L093224"}}, {"model": "wells.bcgs_numbers", "pk": 2258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L093232"}}, {"model": "wells.bcgs_numbers", "pk": 2259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L093241"}}, {"model": "wells.bcgs_numbers", "pk": 2260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L093242"}}, {"model": "wells.bcgs_numbers", "pk": 2261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094123"}}, {"model": "wells.bcgs_numbers", "pk": 2262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094124"}}, {"model": "wells.bcgs_numbers", "pk": 2263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094133"}}, {"model": "wells.bcgs_numbers", "pk": 2264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094134"}}, {"model": "wells.bcgs_numbers", "pk": 2265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094143"}}, {"model": "wells.bcgs_numbers", "pk": 2266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094144"}}, {"model": "wells.bcgs_numbers", "pk": 2267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094231"}}, {"model": "wells.bcgs_numbers", "pk": 2268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094232"}}, {"model": "wells.bcgs_numbers", "pk": 2269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094233"}}, {"model": "wells.bcgs_numbers", "pk": 2270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094241"}}, {"model": "wells.bcgs_numbers", "pk": 2271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094242"}}, {"model": "wells.bcgs_numbers", "pk": 2272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094244"}}, {"model": "wells.bcgs_numbers", "pk": 2273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094311"}}, {"model": "wells.bcgs_numbers", "pk": 2274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094312"}}, {"model": "wells.bcgs_numbers", "pk": 2275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094314"}}, {"model": "wells.bcgs_numbers", "pk": 2276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094321"}}, {"model": "wells.bcgs_numbers", "pk": 2277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094322"}}, {"model": "wells.bcgs_numbers", "pk": 2278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094323"}}, {"model": "wells.bcgs_numbers", "pk": 2279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094324"}}, {"model": "wells.bcgs_numbers", "pk": 2280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094342"}}, {"model": "wells.bcgs_numbers", "pk": 2281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094411"}}, {"model": "wells.bcgs_numbers", "pk": 2282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094413"}}, {"model": "wells.bcgs_numbers", "pk": 2283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094414"}}, {"model": "wells.bcgs_numbers", "pk": 2284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094421"}}, {"model": "wells.bcgs_numbers", "pk": 2285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094422"}}, {"model": "wells.bcgs_numbers", "pk": 2286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094423"}}, {"model": "wells.bcgs_numbers", "pk": 2287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094424"}}, {"model": "wells.bcgs_numbers", "pk": 2288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095113"}}, {"model": "wells.bcgs_numbers", "pk": 2289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095131"}}, {"model": "wells.bcgs_numbers", "pk": 2290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095132"}}, {"model": "wells.bcgs_numbers", "pk": 2291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095313"}}, {"model": "wells.bcgs_numbers", "pk": 2292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095314"}}, {"model": "wells.bcgs_numbers", "pk": 2293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095322"}}, {"model": "wells.bcgs_numbers", "pk": 2294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095331"}}, {"model": "wells.bcgs_numbers", "pk": 2295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095342"}}, {"model": "wells.bcgs_numbers", "pk": 2296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L095431"}}, {"model": "wells.bcgs_numbers", "pk": 2297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L096222"}}, {"model": "wells.bcgs_numbers", "pk": 2298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L096224"}}, {"model": "wells.bcgs_numbers", "pk": 2299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L096242"}}, {"model": "wells.bcgs_numbers", "pk": 2300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L097113"}}, {"model": "wells.bcgs_numbers", "pk": 2301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L097131"}}, {"model": "wells.bcgs_numbers", "pk": 2302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L097133"}}, {"model": "wells.bcgs_numbers", "pk": 2303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L097134"}}, {"model": "wells.bcgs_numbers", "pk": 2304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L097312"}}, {"model": "wells.bcgs_numbers", "pk": 2305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L097321"}}, {"model": "wells.bcgs_numbers", "pk": 2306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L097324"}}, {"model": "wells.bcgs_numbers", "pk": 2307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L097433"}}, {"model": "wells.bcgs_numbers", "pk": 2308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L097443"}}, {"model": "wells.bcgs_numbers", "pk": 2309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L098232"}}, {"model": "wells.bcgs_numbers", "pk": 2310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L098341"}}, {"model": "wells.bcgs_numbers", "pk": 2311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099244"}}, {"model": "wells.bcgs_numbers", "pk": 2312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099342"}}, {"model": "wells.bcgs_numbers", "pk": 2313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099422"}}, {"model": "wells.bcgs_numbers", "pk": 2314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099424"}}, {"model": "wells.bcgs_numbers", "pk": 2315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099431"}}, {"model": "wells.bcgs_numbers", "pk": 2316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099433"}}, {"model": "wells.bcgs_numbers", "pk": 2317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099434"}}, {"model": "wells.bcgs_numbers", "pk": 2318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099443"}}, {"model": "wells.bcgs_numbers", "pk": 2319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L099444"}}, {"model": "wells.bcgs_numbers", "pk": 2320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100123"}}, {"model": "wells.bcgs_numbers", "pk": 2321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100134"}}, {"model": "wells.bcgs_numbers", "pk": 2322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100311"}}, {"model": "wells.bcgs_numbers", "pk": 2323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100312"}}, {"model": "wells.bcgs_numbers", "pk": 2324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100313"}}, {"model": "wells.bcgs_numbers", "pk": 2325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100314"}}, {"model": "wells.bcgs_numbers", "pk": 2326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100332"}}, {"model": "wells.bcgs_numbers", "pk": 2327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L100333"}}, {"model": "wells.bcgs_numbers", "pk": 2328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M002331"}}, {"model": "wells.bcgs_numbers", "pk": 2329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M007211"}}, {"model": "wells.bcgs_numbers", "pk": 2330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M007212"}}, {"model": "wells.bcgs_numbers", "pk": 2331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M009222"}}, {"model": "wells.bcgs_numbers", "pk": 2332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M009241"}}, {"model": "wells.bcgs_numbers", "pk": 2333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M010143"}}, {"model": "wells.bcgs_numbers", "pk": 2334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M010213"}}, {"model": "wells.bcgs_numbers", "pk": 2335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M011221"}}, {"model": "wells.bcgs_numbers", "pk": 2336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M011222"}}, {"model": "wells.bcgs_numbers", "pk": 2337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021133"}}, {"model": "wells.bcgs_numbers", "pk": 2338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021134"}}, {"model": "wells.bcgs_numbers", "pk": 2339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021143"}}, {"model": "wells.bcgs_numbers", "pk": 2340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021144"}}, {"model": "wells.bcgs_numbers", "pk": 2341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021321"}}, {"model": "wells.bcgs_numbers", "pk": 2342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021322"}}, {"model": "wells.bcgs_numbers", "pk": 2343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M021412"}}, {"model": "wells.bcgs_numbers", "pk": 2344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M026143"}}, {"model": "wells.bcgs_numbers", "pk": 2345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M026322"}}, {"model": "wells.bcgs_numbers", "pk": 2346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M051344"}}, {"model": "wells.bcgs_numbers", "pk": 2347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M051433"}}, {"model": "wells.bcgs_numbers", "pk": 2348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M051434"}}, {"model": "wells.bcgs_numbers", "pk": 2349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M051442"}}, {"model": "wells.bcgs_numbers", "pk": 2350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M051443"}}, {"model": "wells.bcgs_numbers", "pk": 2351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M051444"}}, {"model": "wells.bcgs_numbers", "pk": 2352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M052331"}}, {"model": "wells.bcgs_numbers", "pk": 2353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M052333"}}, {"model": "wells.bcgs_numbers", "pk": 2354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M052341"}}, {"model": "wells.bcgs_numbers", "pk": 2355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M052342"}}, {"model": "wells.bcgs_numbers", "pk": 2356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M052343"}}, {"model": "wells.bcgs_numbers", "pk": 2357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M052434"}}, {"model": "wells.bcgs_numbers", "pk": 2358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061114"}}, {"model": "wells.bcgs_numbers", "pk": 2359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061122"}}, {"model": "wells.bcgs_numbers", "pk": 2360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061123"}}, {"model": "wells.bcgs_numbers", "pk": 2361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061132"}}, {"model": "wells.bcgs_numbers", "pk": 2362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061133"}}, {"model": "wells.bcgs_numbers", "pk": 2363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061134"}}, {"model": "wells.bcgs_numbers", "pk": 2364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061141"}}, {"model": "wells.bcgs_numbers", "pk": 2365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061311"}}, {"model": "wells.bcgs_numbers", "pk": 2366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061313"}}, {"model": "wells.bcgs_numbers", "pk": 2367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061314"}}, {"model": "wells.bcgs_numbers", "pk": 2368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M061331"}}, {"model": "wells.bcgs_numbers", "pk": 2369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M062212"}}, {"model": "wells.bcgs_numbers", "pk": 2370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M062411"}}, {"model": "wells.bcgs_numbers", "pk": 2371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M063314"}}, {"model": "wells.bcgs_numbers", "pk": 2372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M063432"}}, {"model": "wells.bcgs_numbers", "pk": 2373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M077243"}}, {"model": "wells.bcgs_numbers", "pk": 2374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M094124"}}, {"model": "wells.bcgs_numbers", "pk": 2375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007421"}}, {"model": "wells.bcgs_numbers", "pk": 2376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007422"}}, {"model": "wells.bcgs_numbers", "pk": 2377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007423"}}, {"model": "wells.bcgs_numbers", "pk": 2378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007432"}}, {"model": "wells.bcgs_numbers", "pk": 2379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007433"}}, {"model": "wells.bcgs_numbers", "pk": 2380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007434"}}, {"model": "wells.bcgs_numbers", "pk": 2381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N007441"}}, {"model": "wells.bcgs_numbers", "pk": 2382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N008122"}}, {"model": "wells.bcgs_numbers", "pk": 2383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:55Z", "update_user": null, "update_date": null, "bcgs_number": "082N008123"}}, {"model": "wells.bcgs_numbers", "pk": 2384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008124"}}, {"model": "wells.bcgs_numbers", "pk": 2385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008132"}}, {"model": "wells.bcgs_numbers", "pk": 2386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008133"}}, {"model": "wells.bcgs_numbers", "pk": 2387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008134"}}, {"model": "wells.bcgs_numbers", "pk": 2388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008141"}}, {"model": "wells.bcgs_numbers", "pk": 2389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008213"}}, {"model": "wells.bcgs_numbers", "pk": 2390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N011233"}}, {"model": "wells.bcgs_numbers", "pk": 2391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N016422"}}, {"model": "wells.bcgs_numbers", "pk": 2392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N016434"}}, {"model": "wells.bcgs_numbers", "pk": 2393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N016441"}}, {"model": "wells.bcgs_numbers", "pk": 2394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N017134"}}, {"model": "wells.bcgs_numbers", "pk": 2395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N017141"}}, {"model": "wells.bcgs_numbers", "pk": 2396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N017142"}}, {"model": "wells.bcgs_numbers", "pk": 2397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N017213"}}, {"model": "wells.bcgs_numbers", "pk": 2398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N020142"}}, {"model": "wells.bcgs_numbers", "pk": 2399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N020323"}}, {"model": "wells.bcgs_numbers", "pk": 2400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N023312"}}, {"model": "wells.bcgs_numbers", "pk": 2401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N025434"}}, {"model": "wells.bcgs_numbers", "pk": 2402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N025441"}}, {"model": "wells.bcgs_numbers", "pk": 2403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N025443"}}, {"model": "wells.bcgs_numbers", "pk": 2404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026141"}}, {"model": "wells.bcgs_numbers", "pk": 2405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026142"}}, {"model": "wells.bcgs_numbers", "pk": 2406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026143"}}, {"model": "wells.bcgs_numbers", "pk": 2407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026144"}}, {"model": "wells.bcgs_numbers", "pk": 2408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026211"}}, {"model": "wells.bcgs_numbers", "pk": 2409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026213"}}, {"model": "wells.bcgs_numbers", "pk": 2410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026231"}}, {"model": "wells.bcgs_numbers", "pk": 2411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026322"}}, {"model": "wells.bcgs_numbers", "pk": 2412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026324"}}, {"model": "wells.bcgs_numbers", "pk": 2413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026334"}}, {"model": "wells.bcgs_numbers", "pk": 2414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026341"}}, {"model": "wells.bcgs_numbers", "pk": 2415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N026343"}}, {"model": "wells.bcgs_numbers", "pk": 2416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N027232"}}, {"model": "wells.bcgs_numbers", "pk": 2417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N027234"}}, {"model": "wells.bcgs_numbers", "pk": 2418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N028133"}}, {"model": "wells.bcgs_numbers", "pk": 2419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N035244"}}, {"model": "wells.bcgs_numbers", "pk": 2420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036112"}}, {"model": "wells.bcgs_numbers", "pk": 2421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036113"}}, {"model": "wells.bcgs_numbers", "pk": 2422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036114"}}, {"model": "wells.bcgs_numbers", "pk": 2423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036121"}}, {"model": "wells.bcgs_numbers", "pk": 2424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036123"}}, {"model": "wells.bcgs_numbers", "pk": 2425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036131"}}, {"model": "wells.bcgs_numbers", "pk": 2426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036132"}}, {"model": "wells.bcgs_numbers", "pk": 2427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036134"}}, {"model": "wells.bcgs_numbers", "pk": 2428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036141"}}, {"model": "wells.bcgs_numbers", "pk": 2429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036143"}}, {"model": "wells.bcgs_numbers", "pk": 2430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N036313"}}, {"model": "wells.bcgs_numbers", "pk": 2431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N038132"}}, {"model": "wells.bcgs_numbers", "pk": 2432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N038341"}}, {"model": "wells.bcgs_numbers", "pk": 2433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N039321"}}, {"model": "wells.bcgs_numbers", "pk": 2434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N039332"}}, {"model": "wells.bcgs_numbers", "pk": 2435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N045222"}}, {"model": "wells.bcgs_numbers", "pk": 2436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082N045234"}}, {"model": "wells.bcgs_numbers", "pk": 2437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082N045241"}}, {"model": "wells.bcgs_numbers", "pk": 2438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082N045242"}}, {"model": "wells.bcgs_numbers", "pk": 2439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082N045334"}}, {"model": "wells.bcgs_numbers", "pk": 2440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082N046312"}}, {"model": "wells.bcgs_numbers", "pk": 2441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082N048241"}}, {"model": "wells.bcgs_numbers", "pk": 2442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082O001131"}}, {"model": "wells.bcgs_numbers", "pk": 2443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "082O001133"}}, {"model": "wells.bcgs_numbers", "pk": 2444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D014122"}}, {"model": "wells.bcgs_numbers", "pk": 2445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D014231"}}, {"model": "wells.bcgs_numbers", "pk": 2446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D065132"}}, {"model": "wells.bcgs_numbers", "pk": 2447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D065311"}}, {"model": "wells.bcgs_numbers", "pk": 2448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D065313"}}, {"model": "wells.bcgs_numbers", "pk": 2449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D074432"}}, {"model": "wells.bcgs_numbers", "pk": 2450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D074434"}}, {"model": "wells.bcgs_numbers", "pk": 2451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D074441"}}, {"model": "wells.bcgs_numbers", "pk": 2452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D074443"}}, {"model": "wells.bcgs_numbers", "pk": 2453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D074444"}}, {"model": "wells.bcgs_numbers", "pk": 2454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D075233"}}, {"model": "wells.bcgs_numbers", "pk": 2455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D075334"}}, {"model": "wells.bcgs_numbers", "pk": 2456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084211"}}, {"model": "wells.bcgs_numbers", "pk": 2457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084212"}}, {"model": "wells.bcgs_numbers", "pk": 2458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084213"}}, {"model": "wells.bcgs_numbers", "pk": 2459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084222"}}, {"model": "wells.bcgs_numbers", "pk": 2460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084223"}}, {"model": "wells.bcgs_numbers", "pk": 2461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084231"}}, {"model": "wells.bcgs_numbers", "pk": 2462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084232"}}, {"model": "wells.bcgs_numbers", "pk": 2463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084233"}}, {"model": "wells.bcgs_numbers", "pk": 2464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084234"}}, {"model": "wells.bcgs_numbers", "pk": 2465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084243"}}, {"model": "wells.bcgs_numbers", "pk": 2466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084324"}}, {"model": "wells.bcgs_numbers", "pk": 2467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084342"}}, {"model": "wells.bcgs_numbers", "pk": 2468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084413"}}, {"model": "wells.bcgs_numbers", "pk": 2469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084423"}}, {"model": "wells.bcgs_numbers", "pk": 2470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D084431"}}, {"model": "wells.bcgs_numbers", "pk": 2471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D088143"}}, {"model": "wells.bcgs_numbers", "pk": 2472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093324"}}, {"model": "wells.bcgs_numbers", "pk": 2473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093413"}}, {"model": "wells.bcgs_numbers", "pk": 2474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093421"}}, {"model": "wells.bcgs_numbers", "pk": 2475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093423"}}, {"model": "wells.bcgs_numbers", "pk": 2476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093424"}}, {"model": "wells.bcgs_numbers", "pk": 2477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093432"}}, {"model": "wells.bcgs_numbers", "pk": 2478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093434"}}, {"model": "wells.bcgs_numbers", "pk": 2479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D093442"}}, {"model": "wells.bcgs_numbers", "pk": 2480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083D094311"}}, {"model": "wells.bcgs_numbers", "pk": 2481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083E003133"}}, {"model": "wells.bcgs_numbers", "pk": 2482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083E003134"}}, {"model": "wells.bcgs_numbers", "pk": 2483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083E003324"}}, {"model": "wells.bcgs_numbers", "pk": 2484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083E005133"}}, {"model": "wells.bcgs_numbers", "pk": 2485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083E005442"}}, {"model": "wells.bcgs_numbers", "pk": 2486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "083E011332"}}, {"model": "wells.bcgs_numbers", "pk": 2487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "092B001241"}}, {"model": "wells.bcgs_numbers", "pk": 2488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B001431"}}, {"model": "wells.bcgs_numbers", "pk": 2489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B002311"}}, {"model": "wells.bcgs_numbers", "pk": 2490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B003111"}}, {"model": "wells.bcgs_numbers", "pk": 2491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031342"}}, {"model": "wells.bcgs_numbers", "pk": 2492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031422"}}, {"model": "wells.bcgs_numbers", "pk": 2493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031423"}}, {"model": "wells.bcgs_numbers", "pk": 2494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031431"}}, {"model": "wells.bcgs_numbers", "pk": 2495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031432"}}, {"model": "wells.bcgs_numbers", "pk": 2496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031441"}}, {"model": "wells.bcgs_numbers", "pk": 2497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B031442"}}, {"model": "wells.bcgs_numbers", "pk": 2498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032234"}}, {"model": "wells.bcgs_numbers", "pk": 2499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032241"}}, {"model": "wells.bcgs_numbers", "pk": 2500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032244"}}, {"model": "wells.bcgs_numbers", "pk": 2501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032313"}}, {"model": "wells.bcgs_numbers", "pk": 2502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032314"}}, {"model": "wells.bcgs_numbers", "pk": 2503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032322"}}, {"model": "wells.bcgs_numbers", "pk": 2504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032324"}}, {"model": "wells.bcgs_numbers", "pk": 2505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032331"}}, {"model": "wells.bcgs_numbers", "pk": 2506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032333"}}, {"model": "wells.bcgs_numbers", "pk": 2507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032334"}}, {"model": "wells.bcgs_numbers", "pk": 2508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032341"}}, {"model": "wells.bcgs_numbers", "pk": 2509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032343"}}, {"model": "wells.bcgs_numbers", "pk": 2510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032344"}}, {"model": "wells.bcgs_numbers", "pk": 2511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032412"}}, {"model": "wells.bcgs_numbers", "pk": 2512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032413"}}, {"model": "wells.bcgs_numbers", "pk": 2513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032414"}}, {"model": "wells.bcgs_numbers", "pk": 2514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032421"}}, {"model": "wells.bcgs_numbers", "pk": 2515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032422"}}, {"model": "wells.bcgs_numbers", "pk": 2516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032423"}}, {"model": "wells.bcgs_numbers", "pk": 2517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032431"}}, {"model": "wells.bcgs_numbers", "pk": 2518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032434"}}, {"model": "wells.bcgs_numbers", "pk": 2519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032441"}}, {"model": "wells.bcgs_numbers", "pk": 2520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032442"}}, {"model": "wells.bcgs_numbers", "pk": 2521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032443"}}, {"model": "wells.bcgs_numbers", "pk": 2522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B032444"}}, {"model": "wells.bcgs_numbers", "pk": 2523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033133"}}, {"model": "wells.bcgs_numbers", "pk": 2524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033143"}}, {"model": "wells.bcgs_numbers", "pk": 2525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033311"}}, {"model": "wells.bcgs_numbers", "pk": 2526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033312"}}, {"model": "wells.bcgs_numbers", "pk": 2527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033313"}}, {"model": "wells.bcgs_numbers", "pk": 2528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033314"}}, {"model": "wells.bcgs_numbers", "pk": 2529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033321"}}, {"model": "wells.bcgs_numbers", "pk": 2530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033323"}}, {"model": "wells.bcgs_numbers", "pk": 2531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033331"}}, {"model": "wells.bcgs_numbers", "pk": 2532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033332"}}, {"model": "wells.bcgs_numbers", "pk": 2533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033333"}}, {"model": "wells.bcgs_numbers", "pk": 2534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033334"}}, {"model": "wells.bcgs_numbers", "pk": 2535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033341"}}, {"model": "wells.bcgs_numbers", "pk": 2536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033342"}}, {"model": "wells.bcgs_numbers", "pk": 2537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033343"}}, {"model": "wells.bcgs_numbers", "pk": 2538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033344"}}, {"model": "wells.bcgs_numbers", "pk": 2539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B033433"}}, {"model": "wells.bcgs_numbers", "pk": 2540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B041111"}}, {"model": "wells.bcgs_numbers", "pk": 2541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042111"}}, {"model": "wells.bcgs_numbers", "pk": 2542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042112"}}, {"model": "wells.bcgs_numbers", "pk": 2543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042114"}}, {"model": "wells.bcgs_numbers", "pk": 2544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042122"}}, {"model": "wells.bcgs_numbers", "pk": 2545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042124"}}, {"model": "wells.bcgs_numbers", "pk": 2546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042141"}}, {"model": "wells.bcgs_numbers", "pk": 2547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042142"}}, {"model": "wells.bcgs_numbers", "pk": 2548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042212"}}, {"model": "wells.bcgs_numbers", "pk": 2549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B042222"}}, {"model": "wells.bcgs_numbers", "pk": 2550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B043111"}}, {"model": "wells.bcgs_numbers", "pk": 2551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043112"}}, {"model": "wells.bcgs_numbers", "pk": 2552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043113"}}, {"model": "wells.bcgs_numbers", "pk": 2553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043114"}}, {"model": "wells.bcgs_numbers", "pk": 2554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043121"}}, {"model": "wells.bcgs_numbers", "pk": 2555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043122"}}, {"model": "wells.bcgs_numbers", "pk": 2556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043123"}}, {"model": "wells.bcgs_numbers", "pk": 2557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043124"}}, {"model": "wells.bcgs_numbers", "pk": 2558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043132"}}, {"model": "wells.bcgs_numbers", "pk": 2559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043141"}}, {"model": "wells.bcgs_numbers", "pk": 2560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043142"}}, {"model": "wells.bcgs_numbers", "pk": 2561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043143"}}, {"model": "wells.bcgs_numbers", "pk": 2562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043144"}}, {"model": "wells.bcgs_numbers", "pk": 2563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043211"}}, {"model": "wells.bcgs_numbers", "pk": 2564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043213"}}, {"model": "wells.bcgs_numbers", "pk": 2565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043233"}}, {"model": "wells.bcgs_numbers", "pk": 2566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043321"}}, {"model": "wells.bcgs_numbers", "pk": 2567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043322"}}, {"model": "wells.bcgs_numbers", "pk": 2568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043324"}}, {"model": "wells.bcgs_numbers", "pk": 2569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043341"}}, {"model": "wells.bcgs_numbers", "pk": 2570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043342"}}, {"model": "wells.bcgs_numbers", "pk": 2571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043343"}}, {"model": "wells.bcgs_numbers", "pk": 2572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043344"}}, {"model": "wells.bcgs_numbers", "pk": 2573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043413"}}, {"model": "wells.bcgs_numbers", "pk": 2574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043414"}}, {"model": "wells.bcgs_numbers", "pk": 2575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043421"}}, {"model": "wells.bcgs_numbers", "pk": 2576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043423"}}, {"model": "wells.bcgs_numbers", "pk": 2577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043431"}}, {"model": "wells.bcgs_numbers", "pk": 2578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043434"}}, {"model": "wells.bcgs_numbers", "pk": 2579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043441"}}, {"model": "wells.bcgs_numbers", "pk": 2580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043442"}}, {"model": "wells.bcgs_numbers", "pk": 2581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043443"}}, {"model": "wells.bcgs_numbers", "pk": 2582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043444"}}, {"model": "wells.bcgs_numbers", "pk": 2583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044113"}}, {"model": "wells.bcgs_numbers", "pk": 2584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044114"}}, {"model": "wells.bcgs_numbers", "pk": 2585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044132"}}, {"model": "wells.bcgs_numbers", "pk": 2586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044322"}}, {"model": "wells.bcgs_numbers", "pk": 2587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044324"}}, {"model": "wells.bcgs_numbers", "pk": 2588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044332"}}, {"model": "wells.bcgs_numbers", "pk": 2589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044333"}}, {"model": "wells.bcgs_numbers", "pk": 2590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044334"}}, {"model": "wells.bcgs_numbers", "pk": 2591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044341"}}, {"model": "wells.bcgs_numbers", "pk": 2592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044412"}}, {"model": "wells.bcgs_numbers", "pk": 2593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B044413"}}, {"model": "wells.bcgs_numbers", "pk": 2594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B052424"}}, {"model": "wells.bcgs_numbers", "pk": 2595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B052432"}}, {"model": "wells.bcgs_numbers", "pk": 2596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B052442"}}, {"model": "wells.bcgs_numbers", "pk": 2597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B052443"}}, {"model": "wells.bcgs_numbers", "pk": 2598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B052444"}}, {"model": "wells.bcgs_numbers", "pk": 2599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053112"}}, {"model": "wells.bcgs_numbers", "pk": 2600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053114"}}, {"model": "wells.bcgs_numbers", "pk": 2601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053121"}}, {"model": "wells.bcgs_numbers", "pk": 2602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053122"}}, {"model": "wells.bcgs_numbers", "pk": 2603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053123"}}, {"model": "wells.bcgs_numbers", "pk": 2604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053124"}}, {"model": "wells.bcgs_numbers", "pk": 2605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053132"}}, {"model": "wells.bcgs_numbers", "pk": 2606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053134"}}, {"model": "wells.bcgs_numbers", "pk": 2607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053141"}}, {"model": "wells.bcgs_numbers", "pk": 2608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053142"}}, {"model": "wells.bcgs_numbers", "pk": 2609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053144"}}, {"model": "wells.bcgs_numbers", "pk": 2610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053211"}}, {"model": "wells.bcgs_numbers", "pk": 2611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053212"}}, {"model": "wells.bcgs_numbers", "pk": 2612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053213"}}, {"model": "wells.bcgs_numbers", "pk": 2613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053214"}}, {"model": "wells.bcgs_numbers", "pk": 2614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053221"}}, {"model": "wells.bcgs_numbers", "pk": 2615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053222"}}, {"model": "wells.bcgs_numbers", "pk": 2616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053223"}}, {"model": "wells.bcgs_numbers", "pk": 2617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053224"}}, {"model": "wells.bcgs_numbers", "pk": 2618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053231"}}, {"model": "wells.bcgs_numbers", "pk": 2619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053232"}}, {"model": "wells.bcgs_numbers", "pk": 2620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053233"}}, {"model": "wells.bcgs_numbers", "pk": 2621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053234"}}, {"model": "wells.bcgs_numbers", "pk": 2622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053241"}}, {"model": "wells.bcgs_numbers", "pk": 2623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053242"}}, {"model": "wells.bcgs_numbers", "pk": 2624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053243"}}, {"model": "wells.bcgs_numbers", "pk": 2625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053244"}}, {"model": "wells.bcgs_numbers", "pk": 2626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053311"}}, {"model": "wells.bcgs_numbers", "pk": 2627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053312"}}, {"model": "wells.bcgs_numbers", "pk": 2628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053313"}}, {"model": "wells.bcgs_numbers", "pk": 2629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053314"}}, {"model": "wells.bcgs_numbers", "pk": 2630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053323"}}, {"model": "wells.bcgs_numbers", "pk": 2631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053332"}}, {"model": "wells.bcgs_numbers", "pk": 2632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053342"}}, {"model": "wells.bcgs_numbers", "pk": 2633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053343"}}, {"model": "wells.bcgs_numbers", "pk": 2634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053411"}}, {"model": "wells.bcgs_numbers", "pk": 2635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B053412"}}, {"model": "wells.bcgs_numbers", "pk": 2636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053413"}}, {"model": "wells.bcgs_numbers", "pk": 2637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053414"}}, {"model": "wells.bcgs_numbers", "pk": 2638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053421"}}, {"model": "wells.bcgs_numbers", "pk": 2639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053422"}}, {"model": "wells.bcgs_numbers", "pk": 2640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053423"}}, {"model": "wells.bcgs_numbers", "pk": 2641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053424"}}, {"model": "wells.bcgs_numbers", "pk": 2642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053431"}}, {"model": "wells.bcgs_numbers", "pk": 2643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053432"}}, {"model": "wells.bcgs_numbers", "pk": 2644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053433"}}, {"model": "wells.bcgs_numbers", "pk": 2645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053434"}}, {"model": "wells.bcgs_numbers", "pk": 2646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053441"}}, {"model": "wells.bcgs_numbers", "pk": 2647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053442"}}, {"model": "wells.bcgs_numbers", "pk": 2648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053443"}}, {"model": "wells.bcgs_numbers", "pk": 2649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B053444"}}, {"model": "wells.bcgs_numbers", "pk": 2650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054111"}}, {"model": "wells.bcgs_numbers", "pk": 2651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054112"}}, {"model": "wells.bcgs_numbers", "pk": 2652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054113"}}, {"model": "wells.bcgs_numbers", "pk": 2653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054114"}}, {"model": "wells.bcgs_numbers", "pk": 2654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054121"}}, {"model": "wells.bcgs_numbers", "pk": 2655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054131"}}, {"model": "wells.bcgs_numbers", "pk": 2656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054132"}}, {"model": "wells.bcgs_numbers", "pk": 2657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054133"}}, {"model": "wells.bcgs_numbers", "pk": 2658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054134"}}, {"model": "wells.bcgs_numbers", "pk": 2659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054311"}}, {"model": "wells.bcgs_numbers", "pk": 2660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054312"}}, {"model": "wells.bcgs_numbers", "pk": 2661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054313"}}, {"model": "wells.bcgs_numbers", "pk": 2662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054314"}}, {"model": "wells.bcgs_numbers", "pk": 2663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054331"}}, {"model": "wells.bcgs_numbers", "pk": 2664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054332"}}, {"model": "wells.bcgs_numbers", "pk": 2665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054333"}}, {"model": "wells.bcgs_numbers", "pk": 2666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B054433"}}, {"model": "wells.bcgs_numbers", "pk": 2667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B056423"}}, {"model": "wells.bcgs_numbers", "pk": 2668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B057132"}}, {"model": "wells.bcgs_numbers", "pk": 2669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062132"}}, {"model": "wells.bcgs_numbers", "pk": 2670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062144"}}, {"model": "wells.bcgs_numbers", "pk": 2671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062221"}}, {"model": "wells.bcgs_numbers", "pk": 2672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062222"}}, {"model": "wells.bcgs_numbers", "pk": 2673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062223"}}, {"model": "wells.bcgs_numbers", "pk": 2674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062224"}}, {"model": "wells.bcgs_numbers", "pk": 2675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062234"}}, {"model": "wells.bcgs_numbers", "pk": 2676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062241"}}, {"model": "wells.bcgs_numbers", "pk": 2677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062242"}}, {"model": "wells.bcgs_numbers", "pk": 2678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062243"}}, {"model": "wells.bcgs_numbers", "pk": 2679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062244"}}, {"model": "wells.bcgs_numbers", "pk": 2680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062322"}}, {"model": "wells.bcgs_numbers", "pk": 2681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062324"}}, {"model": "wells.bcgs_numbers", "pk": 2682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062341"}}, {"model": "wells.bcgs_numbers", "pk": 2683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062342"}}, {"model": "wells.bcgs_numbers", "pk": 2684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062412"}}, {"model": "wells.bcgs_numbers", "pk": 2685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062413"}}, {"model": "wells.bcgs_numbers", "pk": 2686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062421"}}, {"model": "wells.bcgs_numbers", "pk": 2687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062422"}}, {"model": "wells.bcgs_numbers", "pk": 2688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062423"}}, {"model": "wells.bcgs_numbers", "pk": 2689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062424"}}, {"model": "wells.bcgs_numbers", "pk": 2690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062431"}}, {"model": "wells.bcgs_numbers", "pk": 2691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062432"}}, {"model": "wells.bcgs_numbers", "pk": 2692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062434"}}, {"model": "wells.bcgs_numbers", "pk": 2693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062441"}}, {"model": "wells.bcgs_numbers", "pk": 2694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062442"}}, {"model": "wells.bcgs_numbers", "pk": 2695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062443"}}, {"model": "wells.bcgs_numbers", "pk": 2696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B062444"}}, {"model": "wells.bcgs_numbers", "pk": 2697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063121"}}, {"model": "wells.bcgs_numbers", "pk": 2698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063122"}}, {"model": "wells.bcgs_numbers", "pk": 2699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063124"}}, {"model": "wells.bcgs_numbers", "pk": 2700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063131"}}, {"model": "wells.bcgs_numbers", "pk": 2701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063132"}}, {"model": "wells.bcgs_numbers", "pk": 2702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063133"}}, {"model": "wells.bcgs_numbers", "pk": 2703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063134"}}, {"model": "wells.bcgs_numbers", "pk": 2704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063141"}}, {"model": "wells.bcgs_numbers", "pk": 2705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063143"}}, {"model": "wells.bcgs_numbers", "pk": 2706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063211"}}, {"model": "wells.bcgs_numbers", "pk": 2707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063212"}}, {"model": "wells.bcgs_numbers", "pk": 2708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063213"}}, {"model": "wells.bcgs_numbers", "pk": 2709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063214"}}, {"model": "wells.bcgs_numbers", "pk": 2710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063221"}}, {"model": "wells.bcgs_numbers", "pk": 2711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063222"}}, {"model": "wells.bcgs_numbers", "pk": 2712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063223"}}, {"model": "wells.bcgs_numbers", "pk": 2713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063224"}}, {"model": "wells.bcgs_numbers", "pk": 2714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063231"}}, {"model": "wells.bcgs_numbers", "pk": 2715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063232"}}, {"model": "wells.bcgs_numbers", "pk": 2716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063234"}}, {"model": "wells.bcgs_numbers", "pk": 2717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063241"}}, {"model": "wells.bcgs_numbers", "pk": 2718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063242"}}, {"model": "wells.bcgs_numbers", "pk": 2719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063243"}}, {"model": "wells.bcgs_numbers", "pk": 2720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063244"}}, {"model": "wells.bcgs_numbers", "pk": 2721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063311"}}, {"model": "wells.bcgs_numbers", "pk": 2722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063312"}}, {"model": "wells.bcgs_numbers", "pk": 2723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063313"}}, {"model": "wells.bcgs_numbers", "pk": 2724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063314"}}, {"model": "wells.bcgs_numbers", "pk": 2725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063321"}}, {"model": "wells.bcgs_numbers", "pk": 2726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063323"}}, {"model": "wells.bcgs_numbers", "pk": 2727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063331"}}, {"model": "wells.bcgs_numbers", "pk": 2728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063332"}}, {"model": "wells.bcgs_numbers", "pk": 2729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063333"}}, {"model": "wells.bcgs_numbers", "pk": 2730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063334"}}, {"model": "wells.bcgs_numbers", "pk": 2731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063341"}}, {"model": "wells.bcgs_numbers", "pk": 2732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063343"}}, {"model": "wells.bcgs_numbers", "pk": 2733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063412"}}, {"model": "wells.bcgs_numbers", "pk": 2734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063413"}}, {"model": "wells.bcgs_numbers", "pk": 2735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063414"}}, {"model": "wells.bcgs_numbers", "pk": 2736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063421"}}, {"model": "wells.bcgs_numbers", "pk": 2737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B063422"}}, {"model": "wells.bcgs_numbers", "pk": 2738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063423"}}, {"model": "wells.bcgs_numbers", "pk": 2739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063424"}}, {"model": "wells.bcgs_numbers", "pk": 2740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063431"}}, {"model": "wells.bcgs_numbers", "pk": 2741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063432"}}, {"model": "wells.bcgs_numbers", "pk": 2742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063433"}}, {"model": "wells.bcgs_numbers", "pk": 2743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063434"}}, {"model": "wells.bcgs_numbers", "pk": 2744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063441"}}, {"model": "wells.bcgs_numbers", "pk": 2745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063442"}}, {"model": "wells.bcgs_numbers", "pk": 2746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063443"}}, {"model": "wells.bcgs_numbers", "pk": 2747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B063444"}}, {"model": "wells.bcgs_numbers", "pk": 2748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064111"}}, {"model": "wells.bcgs_numbers", "pk": 2749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064113"}}, {"model": "wells.bcgs_numbers", "pk": 2750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064124"}}, {"model": "wells.bcgs_numbers", "pk": 2751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064133"}}, {"model": "wells.bcgs_numbers", "pk": 2752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064141"}}, {"model": "wells.bcgs_numbers", "pk": 2753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064211"}}, {"model": "wells.bcgs_numbers", "pk": 2754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064311"}}, {"model": "wells.bcgs_numbers", "pk": 2755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064313"}}, {"model": "wells.bcgs_numbers", "pk": 2756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064321"}}, {"model": "wells.bcgs_numbers", "pk": 2757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064331"}}, {"model": "wells.bcgs_numbers", "pk": 2758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064332"}}, {"model": "wells.bcgs_numbers", "pk": 2759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064333"}}, {"model": "wells.bcgs_numbers", "pk": 2760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B064413"}}, {"model": "wells.bcgs_numbers", "pk": 2761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071313"}}, {"model": "wells.bcgs_numbers", "pk": 2762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071332"}}, {"model": "wells.bcgs_numbers", "pk": 2763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071341"}}, {"model": "wells.bcgs_numbers", "pk": 2764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071343"}}, {"model": "wells.bcgs_numbers", "pk": 2765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071412"}}, {"model": "wells.bcgs_numbers", "pk": 2766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071413"}}, {"model": "wells.bcgs_numbers", "pk": 2767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071414"}}, {"model": "wells.bcgs_numbers", "pk": 2768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071421"}}, {"model": "wells.bcgs_numbers", "pk": 2769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071422"}}, {"model": "wells.bcgs_numbers", "pk": 2770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071423"}}, {"model": "wells.bcgs_numbers", "pk": 2771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071424"}}, {"model": "wells.bcgs_numbers", "pk": 2772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071431"}}, {"model": "wells.bcgs_numbers", "pk": 2773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071432"}}, {"model": "wells.bcgs_numbers", "pk": 2774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071433"}}, {"model": "wells.bcgs_numbers", "pk": 2775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071434"}}, {"model": "wells.bcgs_numbers", "pk": 2776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071441"}}, {"model": "wells.bcgs_numbers", "pk": 2777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071442"}}, {"model": "wells.bcgs_numbers", "pk": 2778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B071443"}}, {"model": "wells.bcgs_numbers", "pk": 2779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072122"}}, {"model": "wells.bcgs_numbers", "pk": 2780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072131"}}, {"model": "wells.bcgs_numbers", "pk": 2781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072132"}}, {"model": "wells.bcgs_numbers", "pk": 2782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072133"}}, {"model": "wells.bcgs_numbers", "pk": 2783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072134"}}, {"model": "wells.bcgs_numbers", "pk": 2784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072141"}}, {"model": "wells.bcgs_numbers", "pk": 2785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072142"}}, {"model": "wells.bcgs_numbers", "pk": 2786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072143"}}, {"model": "wells.bcgs_numbers", "pk": 2787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072144"}}, {"model": "wells.bcgs_numbers", "pk": 2788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072212"}}, {"model": "wells.bcgs_numbers", "pk": 2789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072213"}}, {"model": "wells.bcgs_numbers", "pk": 2790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072214"}}, {"model": "wells.bcgs_numbers", "pk": 2791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072221"}}, {"model": "wells.bcgs_numbers", "pk": 2792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072222"}}, {"model": "wells.bcgs_numbers", "pk": 2793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072223"}}, {"model": "wells.bcgs_numbers", "pk": 2794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072224"}}, {"model": "wells.bcgs_numbers", "pk": 2795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072231"}}, {"model": "wells.bcgs_numbers", "pk": 2796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072232"}}, {"model": "wells.bcgs_numbers", "pk": 2797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072233"}}, {"model": "wells.bcgs_numbers", "pk": 2798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072234"}}, {"model": "wells.bcgs_numbers", "pk": 2799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072241"}}, {"model": "wells.bcgs_numbers", "pk": 2800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072242"}}, {"model": "wells.bcgs_numbers", "pk": 2801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072243"}}, {"model": "wells.bcgs_numbers", "pk": 2802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072244"}}, {"model": "wells.bcgs_numbers", "pk": 2803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072311"}}, {"model": "wells.bcgs_numbers", "pk": 2804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072312"}}, {"model": "wells.bcgs_numbers", "pk": 2805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072313"}}, {"model": "wells.bcgs_numbers", "pk": 2806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072314"}}, {"model": "wells.bcgs_numbers", "pk": 2807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072321"}}, {"model": "wells.bcgs_numbers", "pk": 2808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072322"}}, {"model": "wells.bcgs_numbers", "pk": 2809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072323"}}, {"model": "wells.bcgs_numbers", "pk": 2810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072324"}}, {"model": "wells.bcgs_numbers", "pk": 2811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072331"}}, {"model": "wells.bcgs_numbers", "pk": 2812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072332"}}, {"model": "wells.bcgs_numbers", "pk": 2813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072333"}}, {"model": "wells.bcgs_numbers", "pk": 2814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072334"}}, {"model": "wells.bcgs_numbers", "pk": 2815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072341"}}, {"model": "wells.bcgs_numbers", "pk": 2816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072342"}}, {"model": "wells.bcgs_numbers", "pk": 2817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072343"}}, {"model": "wells.bcgs_numbers", "pk": 2818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072344"}}, {"model": "wells.bcgs_numbers", "pk": 2819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072411"}}, {"model": "wells.bcgs_numbers", "pk": 2820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072412"}}, {"model": "wells.bcgs_numbers", "pk": 2821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072413"}}, {"model": "wells.bcgs_numbers", "pk": 2822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072414"}}, {"model": "wells.bcgs_numbers", "pk": 2823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072421"}}, {"model": "wells.bcgs_numbers", "pk": 2824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072422"}}, {"model": "wells.bcgs_numbers", "pk": 2825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072423"}}, {"model": "wells.bcgs_numbers", "pk": 2826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072424"}}, {"model": "wells.bcgs_numbers", "pk": 2827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072431"}}, {"model": "wells.bcgs_numbers", "pk": 2828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072432"}}, {"model": "wells.bcgs_numbers", "pk": 2829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B072433"}}, {"model": "wells.bcgs_numbers", "pk": 2830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B072434"}}, {"model": "wells.bcgs_numbers", "pk": 2831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B072441"}}, {"model": "wells.bcgs_numbers", "pk": 2832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B072442"}}, {"model": "wells.bcgs_numbers", "pk": 2833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B072443"}}, {"model": "wells.bcgs_numbers", "pk": 2834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B072444"}}, {"model": "wells.bcgs_numbers", "pk": 2835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073111"}}, {"model": "wells.bcgs_numbers", "pk": 2836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073112"}}, {"model": "wells.bcgs_numbers", "pk": 2837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073113"}}, {"model": "wells.bcgs_numbers", "pk": 2838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073114"}}, {"model": "wells.bcgs_numbers", "pk": 2839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073121"}}, {"model": "wells.bcgs_numbers", "pk": 2840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073131"}}, {"model": "wells.bcgs_numbers", "pk": 2841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073132"}}, {"model": "wells.bcgs_numbers", "pk": 2842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073143"}}, {"model": "wells.bcgs_numbers", "pk": 2843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073144"}}, {"model": "wells.bcgs_numbers", "pk": 2844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073214"}}, {"model": "wells.bcgs_numbers", "pk": 2845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073222"}}, {"model": "wells.bcgs_numbers", "pk": 2846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073234"}}, {"model": "wells.bcgs_numbers", "pk": 2847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073241"}}, {"model": "wells.bcgs_numbers", "pk": 2848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073243"}}, {"model": "wells.bcgs_numbers", "pk": 2849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073244"}}, {"model": "wells.bcgs_numbers", "pk": 2850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073311"}}, {"model": "wells.bcgs_numbers", "pk": 2851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073312"}}, {"model": "wells.bcgs_numbers", "pk": 2852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073313"}}, {"model": "wells.bcgs_numbers", "pk": 2853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073314"}}, {"model": "wells.bcgs_numbers", "pk": 2854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073321"}}, {"model": "wells.bcgs_numbers", "pk": 2855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073331"}}, {"model": "wells.bcgs_numbers", "pk": 2856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073333"}}, {"model": "wells.bcgs_numbers", "pk": 2857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073334"}}, {"model": "wells.bcgs_numbers", "pk": 2858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073342"}}, {"model": "wells.bcgs_numbers", "pk": 2859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073343"}}, {"model": "wells.bcgs_numbers", "pk": 2860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073344"}}, {"model": "wells.bcgs_numbers", "pk": 2861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073412"}}, {"model": "wells.bcgs_numbers", "pk": 2862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073413"}}, {"model": "wells.bcgs_numbers", "pk": 2863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073414"}}, {"model": "wells.bcgs_numbers", "pk": 2864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073421"}}, {"model": "wells.bcgs_numbers", "pk": 2865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073422"}}, {"model": "wells.bcgs_numbers", "pk": 2866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073423"}}, {"model": "wells.bcgs_numbers", "pk": 2867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073424"}}, {"model": "wells.bcgs_numbers", "pk": 2868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073431"}}, {"model": "wells.bcgs_numbers", "pk": 2869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073432"}}, {"model": "wells.bcgs_numbers", "pk": 2870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073433"}}, {"model": "wells.bcgs_numbers", "pk": 2871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073441"}}, {"model": "wells.bcgs_numbers", "pk": 2872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073442"}}, {"model": "wells.bcgs_numbers", "pk": 2873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073443"}}, {"model": "wells.bcgs_numbers", "pk": 2874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B073444"}}, {"model": "wells.bcgs_numbers", "pk": 2875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074132"}}, {"model": "wells.bcgs_numbers", "pk": 2876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074234"}}, {"model": "wells.bcgs_numbers", "pk": 2877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074241"}}, {"model": "wells.bcgs_numbers", "pk": 2878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074242"}}, {"model": "wells.bcgs_numbers", "pk": 2879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074243"}}, {"model": "wells.bcgs_numbers", "pk": 2880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074244"}}, {"model": "wells.bcgs_numbers", "pk": 2881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074311"}}, {"model": "wells.bcgs_numbers", "pk": 2882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074313"}}, {"model": "wells.bcgs_numbers", "pk": 2883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074314"}}, {"model": "wells.bcgs_numbers", "pk": 2884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074324"}}, {"model": "wells.bcgs_numbers", "pk": 2885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074332"}}, {"model": "wells.bcgs_numbers", "pk": 2886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B074333"}}, {"model": "wells.bcgs_numbers", "pk": 2887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074342"}}, {"model": "wells.bcgs_numbers", "pk": 2888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074344"}}, {"model": "wells.bcgs_numbers", "pk": 2889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074411"}}, {"model": "wells.bcgs_numbers", "pk": 2890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074412"}}, {"model": "wells.bcgs_numbers", "pk": 2891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074413"}}, {"model": "wells.bcgs_numbers", "pk": 2892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074414"}}, {"model": "wells.bcgs_numbers", "pk": 2893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074421"}}, {"model": "wells.bcgs_numbers", "pk": 2894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074422"}}, {"model": "wells.bcgs_numbers", "pk": 2895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074423"}}, {"model": "wells.bcgs_numbers", "pk": 2896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074431"}}, {"model": "wells.bcgs_numbers", "pk": 2897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074432"}}, {"model": "wells.bcgs_numbers", "pk": 2898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074433"}}, {"model": "wells.bcgs_numbers", "pk": 2899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074434"}}, {"model": "wells.bcgs_numbers", "pk": 2900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074441"}}, {"model": "wells.bcgs_numbers", "pk": 2901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B074444"}}, {"model": "wells.bcgs_numbers", "pk": 2902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075131"}}, {"model": "wells.bcgs_numbers", "pk": 2903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075133"}}, {"model": "wells.bcgs_numbers", "pk": 2904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075311"}}, {"model": "wells.bcgs_numbers", "pk": 2905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075313"}}, {"model": "wells.bcgs_numbers", "pk": 2906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075331"}}, {"model": "wells.bcgs_numbers", "pk": 2907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075333"}}, {"model": "wells.bcgs_numbers", "pk": 2908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075334"}}, {"model": "wells.bcgs_numbers", "pk": 2909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075341"}}, {"model": "wells.bcgs_numbers", "pk": 2910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075342"}}, {"model": "wells.bcgs_numbers", "pk": 2911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075343"}}, {"model": "wells.bcgs_numbers", "pk": 2912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075344"}}, {"model": "wells.bcgs_numbers", "pk": 2913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075413"}}, {"model": "wells.bcgs_numbers", "pk": 2914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075431"}}, {"model": "wells.bcgs_numbers", "pk": 2915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075432"}}, {"model": "wells.bcgs_numbers", "pk": 2916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B075441"}}, {"model": "wells.bcgs_numbers", "pk": 2917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B081112"}}, {"model": "wells.bcgs_numbers", "pk": 2918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B081113"}}, {"model": "wells.bcgs_numbers", "pk": 2919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B081121"}}, {"model": "wells.bcgs_numbers", "pk": 2920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082112"}}, {"model": "wells.bcgs_numbers", "pk": 2921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082113"}}, {"model": "wells.bcgs_numbers", "pk": 2922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082121"}}, {"model": "wells.bcgs_numbers", "pk": 2923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082122"}}, {"model": "wells.bcgs_numbers", "pk": 2924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082123"}}, {"model": "wells.bcgs_numbers", "pk": 2925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082124"}}, {"model": "wells.bcgs_numbers", "pk": 2926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082141"}}, {"model": "wells.bcgs_numbers", "pk": 2927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082142"}}, {"model": "wells.bcgs_numbers", "pk": 2928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082143"}}, {"model": "wells.bcgs_numbers", "pk": 2929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082144"}}, {"model": "wells.bcgs_numbers", "pk": 2930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082211"}}, {"model": "wells.bcgs_numbers", "pk": 2931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082212"}}, {"model": "wells.bcgs_numbers", "pk": 2932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082213"}}, {"model": "wells.bcgs_numbers", "pk": 2933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082214"}}, {"model": "wells.bcgs_numbers", "pk": 2934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082221"}}, {"model": "wells.bcgs_numbers", "pk": 2935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082222"}}, {"model": "wells.bcgs_numbers", "pk": 2936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082223"}}, {"model": "wells.bcgs_numbers", "pk": 2937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082224"}}, {"model": "wells.bcgs_numbers", "pk": 2938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082231"}}, {"model": "wells.bcgs_numbers", "pk": 2939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082232"}}, {"model": "wells.bcgs_numbers", "pk": 2940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082233"}}, {"model": "wells.bcgs_numbers", "pk": 2941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082234"}}, {"model": "wells.bcgs_numbers", "pk": 2942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082241"}}, {"model": "wells.bcgs_numbers", "pk": 2943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082243"}}, {"model": "wells.bcgs_numbers", "pk": 2944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082321"}}, {"model": "wells.bcgs_numbers", "pk": 2945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082322"}}, {"model": "wells.bcgs_numbers", "pk": 2946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082324"}}, {"model": "wells.bcgs_numbers", "pk": 2947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082332"}}, {"model": "wells.bcgs_numbers", "pk": 2948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082334"}}, {"model": "wells.bcgs_numbers", "pk": 2949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082341"}}, {"model": "wells.bcgs_numbers", "pk": 2950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082342"}}, {"model": "wells.bcgs_numbers", "pk": 2951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082343"}}, {"model": "wells.bcgs_numbers", "pk": 2952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082344"}}, {"model": "wells.bcgs_numbers", "pk": 2953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082411"}}, {"model": "wells.bcgs_numbers", "pk": 2954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082413"}}, {"model": "wells.bcgs_numbers", "pk": 2955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082414"}}, {"model": "wells.bcgs_numbers", "pk": 2956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082421"}}, {"model": "wells.bcgs_numbers", "pk": 2957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082422"}}, {"model": "wells.bcgs_numbers", "pk": 2958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082431"}}, {"model": "wells.bcgs_numbers", "pk": 2959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082432"}}, {"model": "wells.bcgs_numbers", "pk": 2960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B082433"}}, {"model": "wells.bcgs_numbers", "pk": 2961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083111"}}, {"model": "wells.bcgs_numbers", "pk": 2962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083112"}}, {"model": "wells.bcgs_numbers", "pk": 2963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083113"}}, {"model": "wells.bcgs_numbers", "pk": 2964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083122"}}, {"model": "wells.bcgs_numbers", "pk": 2965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083124"}}, {"model": "wells.bcgs_numbers", "pk": 2966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083134"}}, {"model": "wells.bcgs_numbers", "pk": 2967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083142"}}, {"model": "wells.bcgs_numbers", "pk": 2968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083143"}}, {"model": "wells.bcgs_numbers", "pk": 2969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083144"}}, {"model": "wells.bcgs_numbers", "pk": 2970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083211"}}, {"model": "wells.bcgs_numbers", "pk": 2971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083212"}}, {"model": "wells.bcgs_numbers", "pk": 2972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083213"}}, {"model": "wells.bcgs_numbers", "pk": 2973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083214"}}, {"model": "wells.bcgs_numbers", "pk": 2974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083221"}}, {"model": "wells.bcgs_numbers", "pk": 2975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083223"}}, {"model": "wells.bcgs_numbers", "pk": 2976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083231"}}, {"model": "wells.bcgs_numbers", "pk": 2977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083232"}}, {"model": "wells.bcgs_numbers", "pk": 2978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083233"}}, {"model": "wells.bcgs_numbers", "pk": 2979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083234"}}, {"model": "wells.bcgs_numbers", "pk": 2980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083243"}}, {"model": "wells.bcgs_numbers", "pk": 2981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083244"}}, {"model": "wells.bcgs_numbers", "pk": 2982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B083312"}}, {"model": "wells.bcgs_numbers", "pk": 2983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083314"}}, {"model": "wells.bcgs_numbers", "pk": 2984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083321"}}, {"model": "wells.bcgs_numbers", "pk": 2985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083322"}}, {"model": "wells.bcgs_numbers", "pk": 2986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083323"}}, {"model": "wells.bcgs_numbers", "pk": 2987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083324"}}, {"model": "wells.bcgs_numbers", "pk": 2988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083331"}}, {"model": "wells.bcgs_numbers", "pk": 2989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083332"}}, {"model": "wells.bcgs_numbers", "pk": 2990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083333"}}, {"model": "wells.bcgs_numbers", "pk": 2991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083334"}}, {"model": "wells.bcgs_numbers", "pk": 2992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083341"}}, {"model": "wells.bcgs_numbers", "pk": 2993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083342"}}, {"model": "wells.bcgs_numbers", "pk": 2994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083343"}}, {"model": "wells.bcgs_numbers", "pk": 2995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083344"}}, {"model": "wells.bcgs_numbers", "pk": 2996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083411"}}, {"model": "wells.bcgs_numbers", "pk": 2997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083412"}}, {"model": "wells.bcgs_numbers", "pk": 2998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083413"}}, {"model": "wells.bcgs_numbers", "pk": 2999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083414"}}, {"model": "wells.bcgs_numbers", "pk": 3000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083421"}}, {"model": "wells.bcgs_numbers", "pk": 3001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083422"}}, {"model": "wells.bcgs_numbers", "pk": 3002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083431"}}, {"model": "wells.bcgs_numbers", "pk": 3003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083442"}}, {"model": "wells.bcgs_numbers", "pk": 3004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B083444"}}, {"model": "wells.bcgs_numbers", "pk": 3005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084113"}}, {"model": "wells.bcgs_numbers", "pk": 3006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084122"}}, {"model": "wells.bcgs_numbers", "pk": 3007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084124"}}, {"model": "wells.bcgs_numbers", "pk": 3008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084142"}}, {"model": "wells.bcgs_numbers", "pk": 3009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084143"}}, {"model": "wells.bcgs_numbers", "pk": 3010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084144"}}, {"model": "wells.bcgs_numbers", "pk": 3011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084211"}}, {"model": "wells.bcgs_numbers", "pk": 3012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084212"}}, {"model": "wells.bcgs_numbers", "pk": 3013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084213"}}, {"model": "wells.bcgs_numbers", "pk": 3014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084223"}}, {"model": "wells.bcgs_numbers", "pk": 3015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084231"}}, {"model": "wells.bcgs_numbers", "pk": 3016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084232"}}, {"model": "wells.bcgs_numbers", "pk": 3017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084233"}}, {"model": "wells.bcgs_numbers", "pk": 3018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084234"}}, {"model": "wells.bcgs_numbers", "pk": 3019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084241"}}, {"model": "wells.bcgs_numbers", "pk": 3020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084243"}}, {"model": "wells.bcgs_numbers", "pk": 3021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084312"}}, {"model": "wells.bcgs_numbers", "pk": 3022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084313"}}, {"model": "wells.bcgs_numbers", "pk": 3023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084314"}}, {"model": "wells.bcgs_numbers", "pk": 3024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084321"}}, {"model": "wells.bcgs_numbers", "pk": 3025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084322"}}, {"model": "wells.bcgs_numbers", "pk": 3026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084323"}}, {"model": "wells.bcgs_numbers", "pk": 3027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084324"}}, {"model": "wells.bcgs_numbers", "pk": 3028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084331"}}, {"model": "wells.bcgs_numbers", "pk": 3029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084332"}}, {"model": "wells.bcgs_numbers", "pk": 3030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084333"}}, {"model": "wells.bcgs_numbers", "pk": 3031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084334"}}, {"model": "wells.bcgs_numbers", "pk": 3032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084341"}}, {"model": "wells.bcgs_numbers", "pk": 3033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084342"}}, {"model": "wells.bcgs_numbers", "pk": 3034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084343"}}, {"model": "wells.bcgs_numbers", "pk": 3035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084344"}}, {"model": "wells.bcgs_numbers", "pk": 3036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084411"}}, {"model": "wells.bcgs_numbers", "pk": 3037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084412"}}, {"model": "wells.bcgs_numbers", "pk": 3038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084413"}}, {"model": "wells.bcgs_numbers", "pk": 3039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B084414"}}, {"model": "wells.bcgs_numbers", "pk": 3040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B085111"}}, {"model": "wells.bcgs_numbers", "pk": 3041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B087111"}}, {"model": "wells.bcgs_numbers", "pk": 3042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B091444"}}, {"model": "wells.bcgs_numbers", "pk": 3043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092121"}}, {"model": "wells.bcgs_numbers", "pk": 3044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092122"}}, {"model": "wells.bcgs_numbers", "pk": 3045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092123"}}, {"model": "wells.bcgs_numbers", "pk": 3046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092124"}}, {"model": "wells.bcgs_numbers", "pk": 3047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092132"}}, {"model": "wells.bcgs_numbers", "pk": 3048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092134"}}, {"model": "wells.bcgs_numbers", "pk": 3049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092141"}}, {"model": "wells.bcgs_numbers", "pk": 3050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092143"}}, {"model": "wells.bcgs_numbers", "pk": 3051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092211"}}, {"model": "wells.bcgs_numbers", "pk": 3052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B092241"}}, {"model": "wells.bcgs_numbers", "pk": 3053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092311"}}, {"model": "wells.bcgs_numbers", "pk": 3054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092312"}}, {"model": "wells.bcgs_numbers", "pk": 3055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092313"}}, {"model": "wells.bcgs_numbers", "pk": 3056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092314"}}, {"model": "wells.bcgs_numbers", "pk": 3057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092332"}}, {"model": "wells.bcgs_numbers", "pk": 3058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092333"}}, {"model": "wells.bcgs_numbers", "pk": 3059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092334"}}, {"model": "wells.bcgs_numbers", "pk": 3060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092413"}}, {"model": "wells.bcgs_numbers", "pk": 3061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092414"}}, {"model": "wells.bcgs_numbers", "pk": 3062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092424"}}, {"model": "wells.bcgs_numbers", "pk": 3063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092431"}}, {"model": "wells.bcgs_numbers", "pk": 3064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092432"}}, {"model": "wells.bcgs_numbers", "pk": 3065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092433"}}, {"model": "wells.bcgs_numbers", "pk": 3066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092434"}}, {"model": "wells.bcgs_numbers", "pk": 3067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092442"}}, {"model": "wells.bcgs_numbers", "pk": 3068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B092444"}}, {"model": "wells.bcgs_numbers", "pk": 3069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093111"}}, {"model": "wells.bcgs_numbers", "pk": 3070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093112"}}, {"model": "wells.bcgs_numbers", "pk": 3071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093113"}}, {"model": "wells.bcgs_numbers", "pk": 3072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093114"}}, {"model": "wells.bcgs_numbers", "pk": 3073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093121"}}, {"model": "wells.bcgs_numbers", "pk": 3074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093122"}}, {"model": "wells.bcgs_numbers", "pk": 3075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093123"}}, {"model": "wells.bcgs_numbers", "pk": 3076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093131"}}, {"model": "wells.bcgs_numbers", "pk": 3077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093132"}}, {"model": "wells.bcgs_numbers", "pk": 3078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093133"}}, {"model": "wells.bcgs_numbers", "pk": 3079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093134"}}, {"model": "wells.bcgs_numbers", "pk": 3080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093144"}}, {"model": "wells.bcgs_numbers", "pk": 3081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093214"}}, {"model": "wells.bcgs_numbers", "pk": 3082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093221"}}, {"model": "wells.bcgs_numbers", "pk": 3083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093222"}}, {"model": "wells.bcgs_numbers", "pk": 3084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093223"}}, {"model": "wells.bcgs_numbers", "pk": 3085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093224"}}, {"model": "wells.bcgs_numbers", "pk": 3086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093231"}}, {"model": "wells.bcgs_numbers", "pk": 3087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093232"}}, {"model": "wells.bcgs_numbers", "pk": 3088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093233"}}, {"model": "wells.bcgs_numbers", "pk": 3089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093234"}}, {"model": "wells.bcgs_numbers", "pk": 3090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093241"}}, {"model": "wells.bcgs_numbers", "pk": 3091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093242"}}, {"model": "wells.bcgs_numbers", "pk": 3092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093311"}}, {"model": "wells.bcgs_numbers", "pk": 3093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093314"}}, {"model": "wells.bcgs_numbers", "pk": 3094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093321"}}, {"model": "wells.bcgs_numbers", "pk": 3095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093322"}}, {"model": "wells.bcgs_numbers", "pk": 3096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093323"}}, {"model": "wells.bcgs_numbers", "pk": 3097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093324"}}, {"model": "wells.bcgs_numbers", "pk": 3098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093332"}}, {"model": "wells.bcgs_numbers", "pk": 3099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093333"}}, {"model": "wells.bcgs_numbers", "pk": 3100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093334"}}, {"model": "wells.bcgs_numbers", "pk": 3101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B093341"}}, {"model": "wells.bcgs_numbers", "pk": 3102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092B094111"}}, {"model": "wells.bcgs_numbers", "pk": 3103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092B094112"}}, {"model": "wells.bcgs_numbers", "pk": 3104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092B094113"}}, {"model": "wells.bcgs_numbers", "pk": 3105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092B094121"}}, {"model": "wells.bcgs_numbers", "pk": 3106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092B984323"}}, {"model": "wells.bcgs_numbers", "pk": 3107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C050312"}}, {"model": "wells.bcgs_numbers", "pk": 3108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C058422"}}, {"model": "wells.bcgs_numbers", "pk": 3109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C059311"}}, {"model": "wells.bcgs_numbers", "pk": 3110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C085122"}}, {"model": "wells.bcgs_numbers", "pk": 3111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C085141"}}, {"model": "wells.bcgs_numbers", "pk": 3112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C089442"}}, {"model": "wells.bcgs_numbers", "pk": 3113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090111"}}, {"model": "wells.bcgs_numbers", "pk": 3114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090113"}}, {"model": "wells.bcgs_numbers", "pk": 3115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090114"}}, {"model": "wells.bcgs_numbers", "pk": 3116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090122"}}, {"model": "wells.bcgs_numbers", "pk": 3117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090131"}}, {"model": "wells.bcgs_numbers", "pk": 3118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090142"}}, {"model": "wells.bcgs_numbers", "pk": 3119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090144"}}, {"model": "wells.bcgs_numbers", "pk": 3120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090223"}}, {"model": "wells.bcgs_numbers", "pk": 3121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090224"}}, {"model": "wells.bcgs_numbers", "pk": 3122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090231"}}, {"model": "wells.bcgs_numbers", "pk": 3123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090232"}}, {"model": "wells.bcgs_numbers", "pk": 3124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090233"}}, {"model": "wells.bcgs_numbers", "pk": 3125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090234"}}, {"model": "wells.bcgs_numbers", "pk": 3126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090241"}}, {"model": "wells.bcgs_numbers", "pk": 3127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090242"}}, {"model": "wells.bcgs_numbers", "pk": 3128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090243"}}, {"model": "wells.bcgs_numbers", "pk": 3129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090313"}}, {"model": "wells.bcgs_numbers", "pk": 3130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C090314"}}, {"model": "wells.bcgs_numbers", "pk": 3131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C093141"}}, {"model": "wells.bcgs_numbers", "pk": 3132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C093313"}}, {"model": "wells.bcgs_numbers", "pk": 3133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C093323"}}, {"model": "wells.bcgs_numbers", "pk": 3134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C093331"}}, {"model": "wells.bcgs_numbers", "pk": 3135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C093333"}}, {"model": "wells.bcgs_numbers", "pk": 3136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C093341"}}, {"model": "wells.bcgs_numbers", "pk": 3137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092E040313"}}, {"model": "wells.bcgs_numbers", "pk": 3138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092E070343"}}, {"model": "wells.bcgs_numbers", "pk": 3139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092E078443"}}, {"model": "wells.bcgs_numbers", "pk": 3140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092E080432"}}, {"model": "wells.bcgs_numbers", "pk": 3141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092E080441"}}, {"model": "wells.bcgs_numbers", "pk": 3142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092E096443"}}, {"model": "wells.bcgs_numbers", "pk": 3143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002214"}}, {"model": "wells.bcgs_numbers", "pk": 3144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002222"}}, {"model": "wells.bcgs_numbers", "pk": 3145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002313"}}, {"model": "wells.bcgs_numbers", "pk": 3146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002314"}}, {"model": "wells.bcgs_numbers", "pk": 3147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002322"}}, {"model": "wells.bcgs_numbers", "pk": 3148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002331"}}, {"model": "wells.bcgs_numbers", "pk": 3149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F002332"}}, {"model": "wells.bcgs_numbers", "pk": 3150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F003134"}}, {"model": "wells.bcgs_numbers", "pk": 3151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F011144"}}, {"model": "wells.bcgs_numbers", "pk": 3152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F017311"}}, {"model": "wells.bcgs_numbers", "pk": 3153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F017312"}}, {"model": "wells.bcgs_numbers", "pk": 3154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F020412"}}, {"model": "wells.bcgs_numbers", "pk": 3155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F020414"}}, {"model": "wells.bcgs_numbers", "pk": 3156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F020421"}}, {"model": "wells.bcgs_numbers", "pk": 3157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020423"}}, {"model": "wells.bcgs_numbers", "pk": 3158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020424"}}, {"model": "wells.bcgs_numbers", "pk": 3159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020431"}}, {"model": "wells.bcgs_numbers", "pk": 3160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020432"}}, {"model": "wells.bcgs_numbers", "pk": 3161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020434"}}, {"model": "wells.bcgs_numbers", "pk": 3162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020441"}}, {"model": "wells.bcgs_numbers", "pk": 3163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020442"}}, {"model": "wells.bcgs_numbers", "pk": 3164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020443"}}, {"model": "wells.bcgs_numbers", "pk": 3165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F020444"}}, {"model": "wells.bcgs_numbers", "pk": 3166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F025441"}}, {"model": "wells.bcgs_numbers", "pk": 3167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026222"}}, {"model": "wells.bcgs_numbers", "pk": 3168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026314"}}, {"model": "wells.bcgs_numbers", "pk": 3169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026322"}}, {"model": "wells.bcgs_numbers", "pk": 3170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026323"}}, {"model": "wells.bcgs_numbers", "pk": 3171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026324"}}, {"model": "wells.bcgs_numbers", "pk": 3172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026331"}}, {"model": "wells.bcgs_numbers", "pk": 3173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026332"}}, {"model": "wells.bcgs_numbers", "pk": 3174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026341"}}, {"model": "wells.bcgs_numbers", "pk": 3175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026342"}}, {"model": "wells.bcgs_numbers", "pk": 3176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026343"}}, {"model": "wells.bcgs_numbers", "pk": 3177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026344"}}, {"model": "wells.bcgs_numbers", "pk": 3178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026411"}}, {"model": "wells.bcgs_numbers", "pk": 3179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026413"}}, {"model": "wells.bcgs_numbers", "pk": 3180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026414"}}, {"model": "wells.bcgs_numbers", "pk": 3181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026423"}}, {"model": "wells.bcgs_numbers", "pk": 3182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026424"}}, {"model": "wells.bcgs_numbers", "pk": 3183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026431"}}, {"model": "wells.bcgs_numbers", "pk": 3184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026432"}}, {"model": "wells.bcgs_numbers", "pk": 3185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026433"}}, {"model": "wells.bcgs_numbers", "pk": 3186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026434"}}, {"model": "wells.bcgs_numbers", "pk": 3187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026441"}}, {"model": "wells.bcgs_numbers", "pk": 3188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026442"}}, {"model": "wells.bcgs_numbers", "pk": 3189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026443"}}, {"model": "wells.bcgs_numbers", "pk": 3190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F026444"}}, {"model": "wells.bcgs_numbers", "pk": 3191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F027112"}}, {"model": "wells.bcgs_numbers", "pk": 3192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F027134"}}, {"model": "wells.bcgs_numbers", "pk": 3193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F027314"}}, {"model": "wells.bcgs_numbers", "pk": 3194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F027323"}}, {"model": "wells.bcgs_numbers", "pk": 3195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F027331"}}, {"model": "wells.bcgs_numbers", "pk": 3196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F027333"}}, {"model": "wells.bcgs_numbers", "pk": 3197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F028424"}}, {"model": "wells.bcgs_numbers", "pk": 3198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F028432"}}, {"model": "wells.bcgs_numbers", "pk": 3199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F028433"}}, {"model": "wells.bcgs_numbers", "pk": 3200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F028434"}}, {"model": "wells.bcgs_numbers", "pk": 3201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F028441"}}, {"model": "wells.bcgs_numbers", "pk": 3202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F028442"}}, {"model": "wells.bcgs_numbers", "pk": 3203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F028443"}}, {"model": "wells.bcgs_numbers", "pk": 3204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F028444"}}, {"model": "wells.bcgs_numbers", "pk": 3205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029134"}}, {"model": "wells.bcgs_numbers", "pk": 3206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029312"}}, {"model": "wells.bcgs_numbers", "pk": 3207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029313"}}, {"model": "wells.bcgs_numbers", "pk": 3208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029314"}}, {"model": "wells.bcgs_numbers", "pk": 3209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029321"}}, {"model": "wells.bcgs_numbers", "pk": 3210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029323"}}, {"model": "wells.bcgs_numbers", "pk": 3211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029331"}}, {"model": "wells.bcgs_numbers", "pk": 3212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029332"}}, {"model": "wells.bcgs_numbers", "pk": 3213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029333"}}, {"model": "wells.bcgs_numbers", "pk": 3214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029334"}}, {"model": "wells.bcgs_numbers", "pk": 3215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029341"}}, {"model": "wells.bcgs_numbers", "pk": 3216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029343"}}, {"model": "wells.bcgs_numbers", "pk": 3217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029344"}}, {"model": "wells.bcgs_numbers", "pk": 3218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029412"}}, {"model": "wells.bcgs_numbers", "pk": 3219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029414"}}, {"model": "wells.bcgs_numbers", "pk": 3220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029421"}}, {"model": "wells.bcgs_numbers", "pk": 3221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029422"}}, {"model": "wells.bcgs_numbers", "pk": 3222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029423"}}, {"model": "wells.bcgs_numbers", "pk": 3223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029424"}}, {"model": "wells.bcgs_numbers", "pk": 3224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029431"}}, {"model": "wells.bcgs_numbers", "pk": 3225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029432"}}, {"model": "wells.bcgs_numbers", "pk": 3226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029433"}}, {"model": "wells.bcgs_numbers", "pk": 3227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029434"}}, {"model": "wells.bcgs_numbers", "pk": 3228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029441"}}, {"model": "wells.bcgs_numbers", "pk": 3229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029442"}}, {"model": "wells.bcgs_numbers", "pk": 3230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029443"}}, {"model": "wells.bcgs_numbers", "pk": 3231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F029444"}}, {"model": "wells.bcgs_numbers", "pk": 3232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030122"}}, {"model": "wells.bcgs_numbers", "pk": 3233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030133"}}, {"model": "wells.bcgs_numbers", "pk": 3234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030134"}}, {"model": "wells.bcgs_numbers", "pk": 3235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030143"}}, {"model": "wells.bcgs_numbers", "pk": 3236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030144"}}, {"model": "wells.bcgs_numbers", "pk": 3237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030212"}}, {"model": "wells.bcgs_numbers", "pk": 3238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030214"}}, {"model": "wells.bcgs_numbers", "pk": 3239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030221"}}, {"model": "wells.bcgs_numbers", "pk": 3240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030222"}}, {"model": "wells.bcgs_numbers", "pk": 3241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030223"}}, {"model": "wells.bcgs_numbers", "pk": 3242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030224"}}, {"model": "wells.bcgs_numbers", "pk": 3243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030231"}}, {"model": "wells.bcgs_numbers", "pk": 3244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F030232"}}, {"model": "wells.bcgs_numbers", "pk": 3245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030233"}}, {"model": "wells.bcgs_numbers", "pk": 3246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030234"}}, {"model": "wells.bcgs_numbers", "pk": 3247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030241"}}, {"model": "wells.bcgs_numbers", "pk": 3248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030242"}}, {"model": "wells.bcgs_numbers", "pk": 3249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030243"}}, {"model": "wells.bcgs_numbers", "pk": 3250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030244"}}, {"model": "wells.bcgs_numbers", "pk": 3251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030311"}}, {"model": "wells.bcgs_numbers", "pk": 3252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030312"}}, {"model": "wells.bcgs_numbers", "pk": 3253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030313"}}, {"model": "wells.bcgs_numbers", "pk": 3254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030314"}}, {"model": "wells.bcgs_numbers", "pk": 3255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030321"}}, {"model": "wells.bcgs_numbers", "pk": 3256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030322"}}, {"model": "wells.bcgs_numbers", "pk": 3257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030331"}}, {"model": "wells.bcgs_numbers", "pk": 3258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030332"}}, {"model": "wells.bcgs_numbers", "pk": 3259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030333"}}, {"model": "wells.bcgs_numbers", "pk": 3260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030334"}}, {"model": "wells.bcgs_numbers", "pk": 3261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030342"}}, {"model": "wells.bcgs_numbers", "pk": 3262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030411"}}, {"model": "wells.bcgs_numbers", "pk": 3263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F030412"}}, {"model": "wells.bcgs_numbers", "pk": 3264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F036121"}}, {"model": "wells.bcgs_numbers", "pk": 3265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036122"}}, {"model": "wells.bcgs_numbers", "pk": 3266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036131"}}, {"model": "wells.bcgs_numbers", "pk": 3267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036133"}}, {"model": "wells.bcgs_numbers", "pk": 3268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036142"}}, {"model": "wells.bcgs_numbers", "pk": 3269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036144"}}, {"model": "wells.bcgs_numbers", "pk": 3270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036212"}}, {"model": "wells.bcgs_numbers", "pk": 3271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036213"}}, {"model": "wells.bcgs_numbers", "pk": 3272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036214"}}, {"model": "wells.bcgs_numbers", "pk": 3273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036221"}}, {"model": "wells.bcgs_numbers", "pk": 3274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036222"}}, {"model": "wells.bcgs_numbers", "pk": 3275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036231"}}, {"model": "wells.bcgs_numbers", "pk": 3276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036311"}}, {"model": "wells.bcgs_numbers", "pk": 3277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036321"}}, {"model": "wells.bcgs_numbers", "pk": 3278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036322"}}, {"model": "wells.bcgs_numbers", "pk": 3279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036323"}}, {"model": "wells.bcgs_numbers", "pk": 3280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036332"}}, {"model": "wells.bcgs_numbers", "pk": 3281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F036343"}}, {"model": "wells.bcgs_numbers", "pk": 3282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037144"}}, {"model": "wells.bcgs_numbers", "pk": 3283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037243"}}, {"model": "wells.bcgs_numbers", "pk": 3284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037244"}}, {"model": "wells.bcgs_numbers", "pk": 3285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037421"}}, {"model": "wells.bcgs_numbers", "pk": 3286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037422"}}, {"model": "wells.bcgs_numbers", "pk": 3287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037423"}}, {"model": "wells.bcgs_numbers", "pk": 3288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037424"}}, {"model": "wells.bcgs_numbers", "pk": 3289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037442"}}, {"model": "wells.bcgs_numbers", "pk": 3290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F037444"}}, {"model": "wells.bcgs_numbers", "pk": 3291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038112"}}, {"model": "wells.bcgs_numbers", "pk": 3292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038114"}}, {"model": "wells.bcgs_numbers", "pk": 3293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038121"}}, {"model": "wells.bcgs_numbers", "pk": 3294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038122"}}, {"model": "wells.bcgs_numbers", "pk": 3295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038124"}}, {"model": "wells.bcgs_numbers", "pk": 3296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038132"}}, {"model": "wells.bcgs_numbers", "pk": 3297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038134"}}, {"model": "wells.bcgs_numbers", "pk": 3298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038143"}}, {"model": "wells.bcgs_numbers", "pk": 3299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038211"}}, {"model": "wells.bcgs_numbers", "pk": 3300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038212"}}, {"model": "wells.bcgs_numbers", "pk": 3301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038213"}}, {"model": "wells.bcgs_numbers", "pk": 3302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038221"}}, {"model": "wells.bcgs_numbers", "pk": 3303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038222"}}, {"model": "wells.bcgs_numbers", "pk": 3304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038224"}}, {"model": "wells.bcgs_numbers", "pk": 3305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038231"}}, {"model": "wells.bcgs_numbers", "pk": 3306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038232"}}, {"model": "wells.bcgs_numbers", "pk": 3307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038234"}}, {"model": "wells.bcgs_numbers", "pk": 3308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038241"}}, {"model": "wells.bcgs_numbers", "pk": 3309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038242"}}, {"model": "wells.bcgs_numbers", "pk": 3310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038243"}}, {"model": "wells.bcgs_numbers", "pk": 3311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038244"}}, {"model": "wells.bcgs_numbers", "pk": 3312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038312"}}, {"model": "wells.bcgs_numbers", "pk": 3313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038313"}}, {"model": "wells.bcgs_numbers", "pk": 3314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038314"}}, {"model": "wells.bcgs_numbers", "pk": 3315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038321"}}, {"model": "wells.bcgs_numbers", "pk": 3316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038322"}}, {"model": "wells.bcgs_numbers", "pk": 3317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038323"}}, {"model": "wells.bcgs_numbers", "pk": 3318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038324"}}, {"model": "wells.bcgs_numbers", "pk": 3319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038331"}}, {"model": "wells.bcgs_numbers", "pk": 3320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038332"}}, {"model": "wells.bcgs_numbers", "pk": 3321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038333"}}, {"model": "wells.bcgs_numbers", "pk": 3322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038341"}}, {"model": "wells.bcgs_numbers", "pk": 3323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038411"}}, {"model": "wells.bcgs_numbers", "pk": 3324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F038413"}}, {"model": "wells.bcgs_numbers", "pk": 3325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F038422"}}, {"model": "wells.bcgs_numbers", "pk": 3326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039111"}}, {"model": "wells.bcgs_numbers", "pk": 3327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039112"}}, {"model": "wells.bcgs_numbers", "pk": 3328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039114"}}, {"model": "wells.bcgs_numbers", "pk": 3329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039121"}}, {"model": "wells.bcgs_numbers", "pk": 3330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039122"}}, {"model": "wells.bcgs_numbers", "pk": 3331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039123"}}, {"model": "wells.bcgs_numbers", "pk": 3332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039124"}}, {"model": "wells.bcgs_numbers", "pk": 3333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039131"}}, {"model": "wells.bcgs_numbers", "pk": 3334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039132"}}, {"model": "wells.bcgs_numbers", "pk": 3335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039133"}}, {"model": "wells.bcgs_numbers", "pk": 3336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039134"}}, {"model": "wells.bcgs_numbers", "pk": 3337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039141"}}, {"model": "wells.bcgs_numbers", "pk": 3338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039143"}}, {"model": "wells.bcgs_numbers", "pk": 3339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039211"}}, {"model": "wells.bcgs_numbers", "pk": 3340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039212"}}, {"model": "wells.bcgs_numbers", "pk": 3341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039213"}}, {"model": "wells.bcgs_numbers", "pk": 3342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039214"}}, {"model": "wells.bcgs_numbers", "pk": 3343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039221"}}, {"model": "wells.bcgs_numbers", "pk": 3344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039222"}}, {"model": "wells.bcgs_numbers", "pk": 3345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039231"}}, {"model": "wells.bcgs_numbers", "pk": 3346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039311"}}, {"model": "wells.bcgs_numbers", "pk": 3347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F039312"}}, {"model": "wells.bcgs_numbers", "pk": 3348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F040111"}}, {"model": "wells.bcgs_numbers", "pk": 3349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045222"}}, {"model": "wells.bcgs_numbers", "pk": 3350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045232"}}, {"model": "wells.bcgs_numbers", "pk": 3351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045243"}}, {"model": "wells.bcgs_numbers", "pk": 3352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045344"}}, {"model": "wells.bcgs_numbers", "pk": 3353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045411"}}, {"model": "wells.bcgs_numbers", "pk": 3354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045413"}}, {"model": "wells.bcgs_numbers", "pk": 3355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045422"}}, {"model": "wells.bcgs_numbers", "pk": 3356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F045431"}}, {"model": "wells.bcgs_numbers", "pk": 3357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046422"}}, {"model": "wells.bcgs_numbers", "pk": 3358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046432"}}, {"model": "wells.bcgs_numbers", "pk": 3359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046433"}}, {"model": "wells.bcgs_numbers", "pk": 3360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046434"}}, {"model": "wells.bcgs_numbers", "pk": 3361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046441"}}, {"model": "wells.bcgs_numbers", "pk": 3362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046442"}}, {"model": "wells.bcgs_numbers", "pk": 3363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F046444"}}, {"model": "wells.bcgs_numbers", "pk": 3364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047142"}}, {"model": "wells.bcgs_numbers", "pk": 3365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047144"}}, {"model": "wells.bcgs_numbers", "pk": 3366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047214"}}, {"model": "wells.bcgs_numbers", "pk": 3367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047221"}}, {"model": "wells.bcgs_numbers", "pk": 3368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047222"}}, {"model": "wells.bcgs_numbers", "pk": 3369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047223"}}, {"model": "wells.bcgs_numbers", "pk": 3370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047231"}}, {"model": "wells.bcgs_numbers", "pk": 3371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047232"}}, {"model": "wells.bcgs_numbers", "pk": 3372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047233"}}, {"model": "wells.bcgs_numbers", "pk": 3373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047242"}}, {"model": "wells.bcgs_numbers", "pk": 3374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047311"}}, {"model": "wells.bcgs_numbers", "pk": 3375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047312"}}, {"model": "wells.bcgs_numbers", "pk": 3376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047313"}}, {"model": "wells.bcgs_numbers", "pk": 3377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047314"}}, {"model": "wells.bcgs_numbers", "pk": 3378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047322"}}, {"model": "wells.bcgs_numbers", "pk": 3379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047331"}}, {"model": "wells.bcgs_numbers", "pk": 3380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047333"}}, {"model": "wells.bcgs_numbers", "pk": 3381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047334"}}, {"model": "wells.bcgs_numbers", "pk": 3382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047341"}}, {"model": "wells.bcgs_numbers", "pk": 3383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047342"}}, {"model": "wells.bcgs_numbers", "pk": 3384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F047343"}}, {"model": "wells.bcgs_numbers", "pk": 3385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F047344"}}, {"model": "wells.bcgs_numbers", "pk": 3386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F047431"}}, {"model": "wells.bcgs_numbers", "pk": 3387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F047434"}}, {"model": "wells.bcgs_numbers", "pk": 3388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F047442"}}, {"model": "wells.bcgs_numbers", "pk": 3389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F047443"}}, {"model": "wells.bcgs_numbers", "pk": 3390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049344"}}, {"model": "wells.bcgs_numbers", "pk": 3391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049414"}}, {"model": "wells.bcgs_numbers", "pk": 3392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049421"}}, {"model": "wells.bcgs_numbers", "pk": 3393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049423"}}, {"model": "wells.bcgs_numbers", "pk": 3394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049424"}}, {"model": "wells.bcgs_numbers", "pk": 3395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049432"}}, {"model": "wells.bcgs_numbers", "pk": 3396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F049434"}}, {"model": "wells.bcgs_numbers", "pk": 3397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F050133"}}, {"model": "wells.bcgs_numbers", "pk": 3398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F050134"}}, {"model": "wells.bcgs_numbers", "pk": 3399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F050311"}}, {"model": "wells.bcgs_numbers", "pk": 3400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F050312"}}, {"model": "wells.bcgs_numbers", "pk": 3401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F050313"}}, {"model": "wells.bcgs_numbers", "pk": 3402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F050444"}}, {"model": "wells.bcgs_numbers", "pk": 3403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056221"}}, {"model": "wells.bcgs_numbers", "pk": 3404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056222"}}, {"model": "wells.bcgs_numbers", "pk": 3405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056223"}}, {"model": "wells.bcgs_numbers", "pk": 3406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056232"}}, {"model": "wells.bcgs_numbers", "pk": 3407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056234"}}, {"model": "wells.bcgs_numbers", "pk": 3408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056241"}}, {"model": "wells.bcgs_numbers", "pk": 3409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056242"}}, {"model": "wells.bcgs_numbers", "pk": 3410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056243"}}, {"model": "wells.bcgs_numbers", "pk": 3411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056244"}}, {"model": "wells.bcgs_numbers", "pk": 3412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056342"}}, {"model": "wells.bcgs_numbers", "pk": 3413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056412"}}, {"model": "wells.bcgs_numbers", "pk": 3414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056421"}}, {"model": "wells.bcgs_numbers", "pk": 3415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056423"}}, {"model": "wells.bcgs_numbers", "pk": 3416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056424"}}, {"model": "wells.bcgs_numbers", "pk": 3417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056431"}}, {"model": "wells.bcgs_numbers", "pk": 3418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056441"}}, {"model": "wells.bcgs_numbers", "pk": 3419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F056443"}}, {"model": "wells.bcgs_numbers", "pk": 3420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057112"}}, {"model": "wells.bcgs_numbers", "pk": 3421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057113"}}, {"model": "wells.bcgs_numbers", "pk": 3422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057114"}}, {"model": "wells.bcgs_numbers", "pk": 3423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057121"}}, {"model": "wells.bcgs_numbers", "pk": 3424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057122"}}, {"model": "wells.bcgs_numbers", "pk": 3425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057123"}}, {"model": "wells.bcgs_numbers", "pk": 3426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057124"}}, {"model": "wells.bcgs_numbers", "pk": 3427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057131"}}, {"model": "wells.bcgs_numbers", "pk": 3428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057132"}}, {"model": "wells.bcgs_numbers", "pk": 3429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057133"}}, {"model": "wells.bcgs_numbers", "pk": 3430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057134"}}, {"model": "wells.bcgs_numbers", "pk": 3431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057141"}}, {"model": "wells.bcgs_numbers", "pk": 3432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057142"}}, {"model": "wells.bcgs_numbers", "pk": 3433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057144"}}, {"model": "wells.bcgs_numbers", "pk": 3434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057211"}}, {"model": "wells.bcgs_numbers", "pk": 3435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057212"}}, {"model": "wells.bcgs_numbers", "pk": 3436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057213"}}, {"model": "wells.bcgs_numbers", "pk": 3437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057214"}}, {"model": "wells.bcgs_numbers", "pk": 3438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057221"}}, {"model": "wells.bcgs_numbers", "pk": 3439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057223"}}, {"model": "wells.bcgs_numbers", "pk": 3440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057224"}}, {"model": "wells.bcgs_numbers", "pk": 3441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057231"}}, {"model": "wells.bcgs_numbers", "pk": 3442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057232"}}, {"model": "wells.bcgs_numbers", "pk": 3443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057233"}}, {"model": "wells.bcgs_numbers", "pk": 3444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057234"}}, {"model": "wells.bcgs_numbers", "pk": 3445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057241"}}, {"model": "wells.bcgs_numbers", "pk": 3446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057242"}}, {"model": "wells.bcgs_numbers", "pk": 3447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F057243"}}, {"model": "wells.bcgs_numbers", "pk": 3448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F057311"}}, {"model": "wells.bcgs_numbers", "pk": 3449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F057411"}}, {"model": "wells.bcgs_numbers", "pk": 3450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F057412"}}, {"model": "wells.bcgs_numbers", "pk": 3451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F058113"}}, {"model": "wells.bcgs_numbers", "pk": 3452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F058131"}}, {"model": "wells.bcgs_numbers", "pk": 3453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F059121"}}, {"model": "wells.bcgs_numbers", "pk": 3454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F059122"}}, {"model": "wells.bcgs_numbers", "pk": 3455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F059211"}}, {"model": "wells.bcgs_numbers", "pk": 3456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F059212"}}, {"model": "wells.bcgs_numbers", "pk": 3457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F060422"}}, {"model": "wells.bcgs_numbers", "pk": 3458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F060424"}}, {"model": "wells.bcgs_numbers", "pk": 3459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F060442"}}, {"model": "wells.bcgs_numbers", "pk": 3460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F060444"}}, {"model": "wells.bcgs_numbers", "pk": 3461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F063123"}}, {"model": "wells.bcgs_numbers", "pk": 3462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F063141"}}, {"model": "wells.bcgs_numbers", "pk": 3463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F063142"}}, {"model": "wells.bcgs_numbers", "pk": 3464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F064423"}}, {"model": "wells.bcgs_numbers", "pk": 3465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065232"}}, {"model": "wells.bcgs_numbers", "pk": 3466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065242"}}, {"model": "wells.bcgs_numbers", "pk": 3467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065244"}}, {"model": "wells.bcgs_numbers", "pk": 3468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065324"}}, {"model": "wells.bcgs_numbers", "pk": 3469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065413"}}, {"model": "wells.bcgs_numbers", "pk": 3470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065421"}}, {"model": "wells.bcgs_numbers", "pk": 3471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065422"}}, {"model": "wells.bcgs_numbers", "pk": 3472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065423"}}, {"model": "wells.bcgs_numbers", "pk": 3473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065424"}}, {"model": "wells.bcgs_numbers", "pk": 3474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065433"}}, {"model": "wells.bcgs_numbers", "pk": 3475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065434"}}, {"model": "wells.bcgs_numbers", "pk": 3476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065441"}}, {"model": "wells.bcgs_numbers", "pk": 3477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065442"}}, {"model": "wells.bcgs_numbers", "pk": 3478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065443"}}, {"model": "wells.bcgs_numbers", "pk": 3479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F065444"}}, {"model": "wells.bcgs_numbers", "pk": 3480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066122"}}, {"model": "wells.bcgs_numbers", "pk": 3481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066131"}}, {"model": "wells.bcgs_numbers", "pk": 3482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066132"}}, {"model": "wells.bcgs_numbers", "pk": 3483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066133"}}, {"model": "wells.bcgs_numbers", "pk": 3484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066134"}}, {"model": "wells.bcgs_numbers", "pk": 3485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066211"}}, {"model": "wells.bcgs_numbers", "pk": 3486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066311"}}, {"model": "wells.bcgs_numbers", "pk": 3487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066313"}}, {"model": "wells.bcgs_numbers", "pk": 3488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066314"}}, {"model": "wells.bcgs_numbers", "pk": 3489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066324"}}, {"model": "wells.bcgs_numbers", "pk": 3490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066332"}}, {"model": "wells.bcgs_numbers", "pk": 3491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066333"}}, {"model": "wells.bcgs_numbers", "pk": 3492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066334"}}, {"model": "wells.bcgs_numbers", "pk": 3493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066341"}}, {"model": "wells.bcgs_numbers", "pk": 3494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066342"}}, {"model": "wells.bcgs_numbers", "pk": 3495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066343"}}, {"model": "wells.bcgs_numbers", "pk": 3496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066344"}}, {"model": "wells.bcgs_numbers", "pk": 3497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066413"}}, {"model": "wells.bcgs_numbers", "pk": 3498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066431"}}, {"model": "wells.bcgs_numbers", "pk": 3499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066432"}}, {"model": "wells.bcgs_numbers", "pk": 3500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066433"}}, {"model": "wells.bcgs_numbers", "pk": 3501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F066434"}}, {"model": "wells.bcgs_numbers", "pk": 3502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F068243"}}, {"model": "wells.bcgs_numbers", "pk": 3503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F068344"}}, {"model": "wells.bcgs_numbers", "pk": 3504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F068414"}}, {"model": "wells.bcgs_numbers", "pk": 3505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F069313"}}, {"model": "wells.bcgs_numbers", "pk": 3506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070214"}}, {"model": "wells.bcgs_numbers", "pk": 3507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070223"}}, {"model": "wells.bcgs_numbers", "pk": 3508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070224"}}, {"model": "wells.bcgs_numbers", "pk": 3509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070231"}}, {"model": "wells.bcgs_numbers", "pk": 3510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070241"}}, {"model": "wells.bcgs_numbers", "pk": 3511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070243"}}, {"model": "wells.bcgs_numbers", "pk": 3512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070244"}}, {"model": "wells.bcgs_numbers", "pk": 3513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070333"}}, {"model": "wells.bcgs_numbers", "pk": 3514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070422"}}, {"model": "wells.bcgs_numbers", "pk": 3515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F070424"}}, {"model": "wells.bcgs_numbers", "pk": 3516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F072134"}}, {"model": "wells.bcgs_numbers", "pk": 3517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075123"}}, {"model": "wells.bcgs_numbers", "pk": 3518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075144"}}, {"model": "wells.bcgs_numbers", "pk": 3519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075211"}}, {"model": "wells.bcgs_numbers", "pk": 3520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075212"}}, {"model": "wells.bcgs_numbers", "pk": 3521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075213"}}, {"model": "wells.bcgs_numbers", "pk": 3522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075214"}}, {"model": "wells.bcgs_numbers", "pk": 3523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075221"}}, {"model": "wells.bcgs_numbers", "pk": 3524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075222"}}, {"model": "wells.bcgs_numbers", "pk": 3525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075223"}}, {"model": "wells.bcgs_numbers", "pk": 3526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075224"}}, {"model": "wells.bcgs_numbers", "pk": 3527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075231"}}, {"model": "wells.bcgs_numbers", "pk": 3528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075232"}}, {"model": "wells.bcgs_numbers", "pk": 3529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075233"}}, {"model": "wells.bcgs_numbers", "pk": 3530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075234"}}, {"model": "wells.bcgs_numbers", "pk": 3531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075241"}}, {"model": "wells.bcgs_numbers", "pk": 3532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075242"}}, {"model": "wells.bcgs_numbers", "pk": 3533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075243"}}, {"model": "wells.bcgs_numbers", "pk": 3534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075244"}}, {"model": "wells.bcgs_numbers", "pk": 3535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075322"}}, {"model": "wells.bcgs_numbers", "pk": 3536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075324"}}, {"model": "wells.bcgs_numbers", "pk": 3537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075342"}}, {"model": "wells.bcgs_numbers", "pk": 3538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075343"}}, {"model": "wells.bcgs_numbers", "pk": 3539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075344"}}, {"model": "wells.bcgs_numbers", "pk": 3540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075411"}}, {"model": "wells.bcgs_numbers", "pk": 3541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075412"}}, {"model": "wells.bcgs_numbers", "pk": 3542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075413"}}, {"model": "wells.bcgs_numbers", "pk": 3543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075414"}}, {"model": "wells.bcgs_numbers", "pk": 3544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F075421"}}, {"model": "wells.bcgs_numbers", "pk": 3545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075422"}}, {"model": "wells.bcgs_numbers", "pk": 3546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075423"}}, {"model": "wells.bcgs_numbers", "pk": 3547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075424"}}, {"model": "wells.bcgs_numbers", "pk": 3548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075431"}}, {"model": "wells.bcgs_numbers", "pk": 3549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075432"}}, {"model": "wells.bcgs_numbers", "pk": 3550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075433"}}, {"model": "wells.bcgs_numbers", "pk": 3551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075434"}}, {"model": "wells.bcgs_numbers", "pk": 3552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075441"}}, {"model": "wells.bcgs_numbers", "pk": 3553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075442"}}, {"model": "wells.bcgs_numbers", "pk": 3554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075443"}}, {"model": "wells.bcgs_numbers", "pk": 3555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F075444"}}, {"model": "wells.bcgs_numbers", "pk": 3556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076111"}}, {"model": "wells.bcgs_numbers", "pk": 3557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076112"}}, {"model": "wells.bcgs_numbers", "pk": 3558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076113"}}, {"model": "wells.bcgs_numbers", "pk": 3559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076114"}}, {"model": "wells.bcgs_numbers", "pk": 3560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076121"}}, {"model": "wells.bcgs_numbers", "pk": 3561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076122"}}, {"model": "wells.bcgs_numbers", "pk": 3562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076123"}}, {"model": "wells.bcgs_numbers", "pk": 3563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076124"}}, {"model": "wells.bcgs_numbers", "pk": 3564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076131"}}, {"model": "wells.bcgs_numbers", "pk": 3565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076133"}}, {"model": "wells.bcgs_numbers", "pk": 3566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076134"}}, {"model": "wells.bcgs_numbers", "pk": 3567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076141"}}, {"model": "wells.bcgs_numbers", "pk": 3568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076142"}}, {"model": "wells.bcgs_numbers", "pk": 3569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076143"}}, {"model": "wells.bcgs_numbers", "pk": 3570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076144"}}, {"model": "wells.bcgs_numbers", "pk": 3571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076211"}}, {"model": "wells.bcgs_numbers", "pk": 3572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076212"}}, {"model": "wells.bcgs_numbers", "pk": 3573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076213"}}, {"model": "wells.bcgs_numbers", "pk": 3574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076231"}}, {"model": "wells.bcgs_numbers", "pk": 3575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076311"}}, {"model": "wells.bcgs_numbers", "pk": 3576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076312"}}, {"model": "wells.bcgs_numbers", "pk": 3577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076313"}}, {"model": "wells.bcgs_numbers", "pk": 3578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076314"}}, {"model": "wells.bcgs_numbers", "pk": 3579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076321"}}, {"model": "wells.bcgs_numbers", "pk": 3580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076331"}}, {"model": "wells.bcgs_numbers", "pk": 3581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F076333"}}, {"model": "wells.bcgs_numbers", "pk": 3582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078344"}}, {"model": "wells.bcgs_numbers", "pk": 3583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078423"}}, {"model": "wells.bcgs_numbers", "pk": 3584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078424"}}, {"model": "wells.bcgs_numbers", "pk": 3585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078432"}}, {"model": "wells.bcgs_numbers", "pk": 3586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078433"}}, {"model": "wells.bcgs_numbers", "pk": 3587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078434"}}, {"model": "wells.bcgs_numbers", "pk": 3588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078441"}}, {"model": "wells.bcgs_numbers", "pk": 3589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078442"}}, {"model": "wells.bcgs_numbers", "pk": 3590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078443"}}, {"model": "wells.bcgs_numbers", "pk": 3591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F078444"}}, {"model": "wells.bcgs_numbers", "pk": 3592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079242"}}, {"model": "wells.bcgs_numbers", "pk": 3593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079313"}}, {"model": "wells.bcgs_numbers", "pk": 3594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079314"}}, {"model": "wells.bcgs_numbers", "pk": 3595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079331"}}, {"model": "wells.bcgs_numbers", "pk": 3596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079332"}}, {"model": "wells.bcgs_numbers", "pk": 3597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079333"}}, {"model": "wells.bcgs_numbers", "pk": 3598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079334"}}, {"model": "wells.bcgs_numbers", "pk": 3599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079341"}}, {"model": "wells.bcgs_numbers", "pk": 3600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079411"}}, {"model": "wells.bcgs_numbers", "pk": 3601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079413"}}, {"model": "wells.bcgs_numbers", "pk": 3602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079431"}}, {"model": "wells.bcgs_numbers", "pk": 3603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F079442"}}, {"model": "wells.bcgs_numbers", "pk": 3604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F080331"}}, {"model": "wells.bcgs_numbers", "pk": 3605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F080422"}}, {"model": "wells.bcgs_numbers", "pk": 3606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F084442"}}, {"model": "wells.bcgs_numbers", "pk": 3607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F084443"}}, {"model": "wells.bcgs_numbers", "pk": 3608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085114"}}, {"model": "wells.bcgs_numbers", "pk": 3609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085121"}}, {"model": "wells.bcgs_numbers", "pk": 3610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085122"}}, {"model": "wells.bcgs_numbers", "pk": 3611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085123"}}, {"model": "wells.bcgs_numbers", "pk": 3612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085124"}}, {"model": "wells.bcgs_numbers", "pk": 3613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085132"}}, {"model": "wells.bcgs_numbers", "pk": 3614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085133"}}, {"model": "wells.bcgs_numbers", "pk": 3615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F085134"}}, {"model": "wells.bcgs_numbers", "pk": 3616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085141"}}, {"model": "wells.bcgs_numbers", "pk": 3617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085142"}}, {"model": "wells.bcgs_numbers", "pk": 3618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085143"}}, {"model": "wells.bcgs_numbers", "pk": 3619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085144"}}, {"model": "wells.bcgs_numbers", "pk": 3620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085211"}}, {"model": "wells.bcgs_numbers", "pk": 3621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085212"}}, {"model": "wells.bcgs_numbers", "pk": 3622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085213"}}, {"model": "wells.bcgs_numbers", "pk": 3623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085214"}}, {"model": "wells.bcgs_numbers", "pk": 3624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085223"}}, {"model": "wells.bcgs_numbers", "pk": 3625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085232"}}, {"model": "wells.bcgs_numbers", "pk": 3626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085233"}}, {"model": "wells.bcgs_numbers", "pk": 3627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085311"}}, {"model": "wells.bcgs_numbers", "pk": 3628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085312"}}, {"model": "wells.bcgs_numbers", "pk": 3629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085313"}}, {"model": "wells.bcgs_numbers", "pk": 3630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085321"}}, {"model": "wells.bcgs_numbers", "pk": 3631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085322"}}, {"model": "wells.bcgs_numbers", "pk": 3632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085323"}}, {"model": "wells.bcgs_numbers", "pk": 3633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085324"}}, {"model": "wells.bcgs_numbers", "pk": 3634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085331"}}, {"model": "wells.bcgs_numbers", "pk": 3635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085341"}}, {"model": "wells.bcgs_numbers", "pk": 3636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085342"}}, {"model": "wells.bcgs_numbers", "pk": 3637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085343"}}, {"model": "wells.bcgs_numbers", "pk": 3638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F085411"}}, {"model": "wells.bcgs_numbers", "pk": 3639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F088122"}}, {"model": "wells.bcgs_numbers", "pk": 3640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F088211"}}, {"model": "wells.bcgs_numbers", "pk": 3641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F088213"}}, {"model": "wells.bcgs_numbers", "pk": 3642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F088214"}}, {"model": "wells.bcgs_numbers", "pk": 3643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F088231"}}, {"model": "wells.bcgs_numbers", "pk": 3644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F088233"}}, {"model": "wells.bcgs_numbers", "pk": 3645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094222"}}, {"model": "wells.bcgs_numbers", "pk": 3646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094224"}}, {"model": "wells.bcgs_numbers", "pk": 3647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094234"}}, {"model": "wells.bcgs_numbers", "pk": 3648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094242"}}, {"model": "wells.bcgs_numbers", "pk": 3649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094314"}}, {"model": "wells.bcgs_numbers", "pk": 3650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094412"}}, {"model": "wells.bcgs_numbers", "pk": 3651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094421"}}, {"model": "wells.bcgs_numbers", "pk": 3652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094423"}}, {"model": "wells.bcgs_numbers", "pk": 3653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094424"}}, {"model": "wells.bcgs_numbers", "pk": 3654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094441"}}, {"model": "wells.bcgs_numbers", "pk": 3655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094442"}}, {"model": "wells.bcgs_numbers", "pk": 3656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F094443"}}, {"model": "wells.bcgs_numbers", "pk": 3657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F095111"}}, {"model": "wells.bcgs_numbers", "pk": 3658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F095112"}}, {"model": "wells.bcgs_numbers", "pk": 3659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F095113"}}, {"model": "wells.bcgs_numbers", "pk": 3660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F095131"}}, {"model": "wells.bcgs_numbers", "pk": 3661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F095133"}}, {"model": "wells.bcgs_numbers", "pk": 3662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F095334"}}, {"model": "wells.bcgs_numbers", "pk": 3663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097133"}}, {"model": "wells.bcgs_numbers", "pk": 3664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097214"}}, {"model": "wells.bcgs_numbers", "pk": 3665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097221"}}, {"model": "wells.bcgs_numbers", "pk": 3666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097223"}}, {"model": "wells.bcgs_numbers", "pk": 3667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097224"}}, {"model": "wells.bcgs_numbers", "pk": 3668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097231"}}, {"model": "wells.bcgs_numbers", "pk": 3669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097232"}}, {"model": "wells.bcgs_numbers", "pk": 3670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097233"}}, {"model": "wells.bcgs_numbers", "pk": 3671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097234"}}, {"model": "wells.bcgs_numbers", "pk": 3672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097323"}}, {"model": "wells.bcgs_numbers", "pk": 3673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097334"}}, {"model": "wells.bcgs_numbers", "pk": 3674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097341"}}, {"model": "wells.bcgs_numbers", "pk": 3675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097344"}}, {"model": "wells.bcgs_numbers", "pk": 3676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097411"}}, {"model": "wells.bcgs_numbers", "pk": 3677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F097412"}}, {"model": "wells.bcgs_numbers", "pk": 3678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G.008.3"}}, {"model": "wells.bcgs_numbers", "pk": 3679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G001144"}}, {"model": "wells.bcgs_numbers", "pk": 3680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G001214"}}, {"model": "wells.bcgs_numbers", "pk": 3681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001221"}}, {"model": "wells.bcgs_numbers", "pk": 3682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001222"}}, {"model": "wells.bcgs_numbers", "pk": 3683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001223"}}, {"model": "wells.bcgs_numbers", "pk": 3684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001224"}}, {"model": "wells.bcgs_numbers", "pk": 3685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001231"}}, {"model": "wells.bcgs_numbers", "pk": 3686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001232"}}, {"model": "wells.bcgs_numbers", "pk": 3687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001233"}}, {"model": "wells.bcgs_numbers", "pk": 3688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001234"}}, {"model": "wells.bcgs_numbers", "pk": 3689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001241"}}, {"model": "wells.bcgs_numbers", "pk": 3690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001242"}}, {"model": "wells.bcgs_numbers", "pk": 3691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001243"}}, {"model": "wells.bcgs_numbers", "pk": 3692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001244"}}, {"model": "wells.bcgs_numbers", "pk": 3693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001321"}}, {"model": "wells.bcgs_numbers", "pk": 3694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001322"}}, {"model": "wells.bcgs_numbers", "pk": 3695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001323"}}, {"model": "wells.bcgs_numbers", "pk": 3696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001324"}}, {"model": "wells.bcgs_numbers", "pk": 3697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001331"}}, {"model": "wells.bcgs_numbers", "pk": 3698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001341"}}, {"model": "wells.bcgs_numbers", "pk": 3699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001342"}}, {"model": "wells.bcgs_numbers", "pk": 3700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001343"}}, {"model": "wells.bcgs_numbers", "pk": 3701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001344"}}, {"model": "wells.bcgs_numbers", "pk": 3702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001411"}}, {"model": "wells.bcgs_numbers", "pk": 3703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001412"}}, {"model": "wells.bcgs_numbers", "pk": 3704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001413"}}, {"model": "wells.bcgs_numbers", "pk": 3705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001414"}}, {"model": "wells.bcgs_numbers", "pk": 3706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001421"}}, {"model": "wells.bcgs_numbers", "pk": 3707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001422"}}, {"model": "wells.bcgs_numbers", "pk": 3708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001423"}}, {"model": "wells.bcgs_numbers", "pk": 3709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001424"}}, {"model": "wells.bcgs_numbers", "pk": 3710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001431"}}, {"model": "wells.bcgs_numbers", "pk": 3711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001432"}}, {"model": "wells.bcgs_numbers", "pk": 3712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001433"}}, {"model": "wells.bcgs_numbers", "pk": 3713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001434"}}, {"model": "wells.bcgs_numbers", "pk": 3714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001441"}}, {"model": "wells.bcgs_numbers", "pk": 3715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001442"}}, {"model": "wells.bcgs_numbers", "pk": 3716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001443"}}, {"model": "wells.bcgs_numbers", "pk": 3717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G001444"}}, {"model": "wells.bcgs_numbers", "pk": 3718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002111"}}, {"model": "wells.bcgs_numbers", "pk": 3719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002113"}}, {"model": "wells.bcgs_numbers", "pk": 3720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002122"}}, {"model": "wells.bcgs_numbers", "pk": 3721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002124"}}, {"model": "wells.bcgs_numbers", "pk": 3722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002131"}}, {"model": "wells.bcgs_numbers", "pk": 3723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002132"}}, {"model": "wells.bcgs_numbers", "pk": 3724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002133"}}, {"model": "wells.bcgs_numbers", "pk": 3725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002134"}}, {"model": "wells.bcgs_numbers", "pk": 3726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002211"}}, {"model": "wells.bcgs_numbers", "pk": 3727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002212"}}, {"model": "wells.bcgs_numbers", "pk": 3728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002213"}}, {"model": "wells.bcgs_numbers", "pk": 3729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002214"}}, {"model": "wells.bcgs_numbers", "pk": 3730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002243"}}, {"model": "wells.bcgs_numbers", "pk": 3731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002311"}}, {"model": "wells.bcgs_numbers", "pk": 3732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002312"}}, {"model": "wells.bcgs_numbers", "pk": 3733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002313"}}, {"model": "wells.bcgs_numbers", "pk": 3734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002314"}}, {"model": "wells.bcgs_numbers", "pk": 3735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002331"}}, {"model": "wells.bcgs_numbers", "pk": 3736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002333"}}, {"model": "wells.bcgs_numbers", "pk": 3737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002342"}}, {"model": "wells.bcgs_numbers", "pk": 3738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002343"}}, {"model": "wells.bcgs_numbers", "pk": 3739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002413"}}, {"model": "wells.bcgs_numbers", "pk": 3740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G002431"}}, {"model": "wells.bcgs_numbers", "pk": 3741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G003111"}}, {"model": "wells.bcgs_numbers", "pk": 3742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G003112"}}, {"model": "wells.bcgs_numbers", "pk": 3743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005144"}}, {"model": "wells.bcgs_numbers", "pk": 3744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005211"}}, {"model": "wells.bcgs_numbers", "pk": 3745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005212"}}, {"model": "wells.bcgs_numbers", "pk": 3746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005213"}}, {"model": "wells.bcgs_numbers", "pk": 3747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005214"}}, {"model": "wells.bcgs_numbers", "pk": 3748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005221"}}, {"model": "wells.bcgs_numbers", "pk": 3749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005231"}}, {"model": "wells.bcgs_numbers", "pk": 3750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G005232"}}, {"model": "wells.bcgs_numbers", "pk": 3751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006224"}}, {"model": "wells.bcgs_numbers", "pk": 3752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006231"}}, {"model": "wells.bcgs_numbers", "pk": 3753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006232"}}, {"model": "wells.bcgs_numbers", "pk": 3754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006233"}}, {"model": "wells.bcgs_numbers", "pk": 3755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006234"}}, {"model": "wells.bcgs_numbers", "pk": 3756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006241"}}, {"model": "wells.bcgs_numbers", "pk": 3757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006242"}}, {"model": "wells.bcgs_numbers", "pk": 3758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006243"}}, {"model": "wells.bcgs_numbers", "pk": 3759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006244"}}, {"model": "wells.bcgs_numbers", "pk": 3760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006411"}}, {"model": "wells.bcgs_numbers", "pk": 3761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006412"}}, {"model": "wells.bcgs_numbers", "pk": 3762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006414"}}, {"model": "wells.bcgs_numbers", "pk": 3763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006421"}}, {"model": "wells.bcgs_numbers", "pk": 3764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006422"}}, {"model": "wells.bcgs_numbers", "pk": 3765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006423"}}, {"model": "wells.bcgs_numbers", "pk": 3766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006424"}}, {"model": "wells.bcgs_numbers", "pk": 3767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006433"}}, {"model": "wells.bcgs_numbers", "pk": 3768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G006434"}}, {"model": "wells.bcgs_numbers", "pk": 3769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G006441"}}, {"model": "wells.bcgs_numbers", "pk": 3770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G006442"}}, {"model": "wells.bcgs_numbers", "pk": 3771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G006443"}}, {"model": "wells.bcgs_numbers", "pk": 3772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G006444"}}, {"model": "wells.bcgs_numbers", "pk": 3773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007112"}}, {"model": "wells.bcgs_numbers", "pk": 3774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007113"}}, {"model": "wells.bcgs_numbers", "pk": 3775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007114"}}, {"model": "wells.bcgs_numbers", "pk": 3776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007121"}}, {"model": "wells.bcgs_numbers", "pk": 3777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007122"}}, {"model": "wells.bcgs_numbers", "pk": 3778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007123"}}, {"model": "wells.bcgs_numbers", "pk": 3779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007124"}}, {"model": "wells.bcgs_numbers", "pk": 3780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007131"}}, {"model": "wells.bcgs_numbers", "pk": 3781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007132"}}, {"model": "wells.bcgs_numbers", "pk": 3782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007133"}}, {"model": "wells.bcgs_numbers", "pk": 3783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007134"}}, {"model": "wells.bcgs_numbers", "pk": 3784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007141"}}, {"model": "wells.bcgs_numbers", "pk": 3785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007142"}}, {"model": "wells.bcgs_numbers", "pk": 3786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007143"}}, {"model": "wells.bcgs_numbers", "pk": 3787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007144"}}, {"model": "wells.bcgs_numbers", "pk": 3788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007211"}}, {"model": "wells.bcgs_numbers", "pk": 3789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007212"}}, {"model": "wells.bcgs_numbers", "pk": 3790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007213"}}, {"model": "wells.bcgs_numbers", "pk": 3791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007214"}}, {"model": "wells.bcgs_numbers", "pk": 3792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007221"}}, {"model": "wells.bcgs_numbers", "pk": 3793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007222"}}, {"model": "wells.bcgs_numbers", "pk": 3794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007223"}}, {"model": "wells.bcgs_numbers", "pk": 3795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007224"}}, {"model": "wells.bcgs_numbers", "pk": 3796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007231"}}, {"model": "wells.bcgs_numbers", "pk": 3797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007232"}}, {"model": "wells.bcgs_numbers", "pk": 3798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007233"}}, {"model": "wells.bcgs_numbers", "pk": 3799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007234"}}, {"model": "wells.bcgs_numbers", "pk": 3800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007241"}}, {"model": "wells.bcgs_numbers", "pk": 3801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007242"}}, {"model": "wells.bcgs_numbers", "pk": 3802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007243"}}, {"model": "wells.bcgs_numbers", "pk": 3803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007244"}}, {"model": "wells.bcgs_numbers", "pk": 3804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007311"}}, {"model": "wells.bcgs_numbers", "pk": 3805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007312"}}, {"model": "wells.bcgs_numbers", "pk": 3806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007313"}}, {"model": "wells.bcgs_numbers", "pk": 3807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007314"}}, {"model": "wells.bcgs_numbers", "pk": 3808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007321"}}, {"model": "wells.bcgs_numbers", "pk": 3809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007322"}}, {"model": "wells.bcgs_numbers", "pk": 3810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007323"}}, {"model": "wells.bcgs_numbers", "pk": 3811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007324"}}, {"model": "wells.bcgs_numbers", "pk": 3812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007331"}}, {"model": "wells.bcgs_numbers", "pk": 3813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007332"}}, {"model": "wells.bcgs_numbers", "pk": 3814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007333"}}, {"model": "wells.bcgs_numbers", "pk": 3815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007334"}}, {"model": "wells.bcgs_numbers", "pk": 3816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007341"}}, {"model": "wells.bcgs_numbers", "pk": 3817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007342"}}, {"model": "wells.bcgs_numbers", "pk": 3818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007343"}}, {"model": "wells.bcgs_numbers", "pk": 3819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007344"}}, {"model": "wells.bcgs_numbers", "pk": 3820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007411"}}, {"model": "wells.bcgs_numbers", "pk": 3821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007412"}}, {"model": "wells.bcgs_numbers", "pk": 3822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007413"}}, {"model": "wells.bcgs_numbers", "pk": 3823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007414"}}, {"model": "wells.bcgs_numbers", "pk": 3824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007421"}}, {"model": "wells.bcgs_numbers", "pk": 3825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007422"}}, {"model": "wells.bcgs_numbers", "pk": 3826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007423"}}, {"model": "wells.bcgs_numbers", "pk": 3827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007424"}}, {"model": "wells.bcgs_numbers", "pk": 3828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007431"}}, {"model": "wells.bcgs_numbers", "pk": 3829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007432"}}, {"model": "wells.bcgs_numbers", "pk": 3830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007433"}}, {"model": "wells.bcgs_numbers", "pk": 3831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007434"}}, {"model": "wells.bcgs_numbers", "pk": 3832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007441"}}, {"model": "wells.bcgs_numbers", "pk": 3833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007442"}}, {"model": "wells.bcgs_numbers", "pk": 3834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007443"}}, {"model": "wells.bcgs_numbers", "pk": 3835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G007444"}}, {"model": "wells.bcgs_numbers", "pk": 3836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008111"}}, {"model": "wells.bcgs_numbers", "pk": 3837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008112"}}, {"model": "wells.bcgs_numbers", "pk": 3838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008113"}}, {"model": "wells.bcgs_numbers", "pk": 3839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008114"}}, {"model": "wells.bcgs_numbers", "pk": 3840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008121"}}, {"model": "wells.bcgs_numbers", "pk": 3841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008122"}}, {"model": "wells.bcgs_numbers", "pk": 3842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008123"}}, {"model": "wells.bcgs_numbers", "pk": 3843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008124"}}, {"model": "wells.bcgs_numbers", "pk": 3844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008131"}}, {"model": "wells.bcgs_numbers", "pk": 3845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008132"}}, {"model": "wells.bcgs_numbers", "pk": 3846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008133"}}, {"model": "wells.bcgs_numbers", "pk": 3847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008134"}}, {"model": "wells.bcgs_numbers", "pk": 3848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008141"}}, {"model": "wells.bcgs_numbers", "pk": 3849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008142"}}, {"model": "wells.bcgs_numbers", "pk": 3850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G008143"}}, {"model": "wells.bcgs_numbers", "pk": 3851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008144"}}, {"model": "wells.bcgs_numbers", "pk": 3852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008211"}}, {"model": "wells.bcgs_numbers", "pk": 3853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008212"}}, {"model": "wells.bcgs_numbers", "pk": 3854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008213"}}, {"model": "wells.bcgs_numbers", "pk": 3855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008214"}}, {"model": "wells.bcgs_numbers", "pk": 3856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008221"}}, {"model": "wells.bcgs_numbers", "pk": 3857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008222"}}, {"model": "wells.bcgs_numbers", "pk": 3858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008223"}}, {"model": "wells.bcgs_numbers", "pk": 3859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008224"}}, {"model": "wells.bcgs_numbers", "pk": 3860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008231"}}, {"model": "wells.bcgs_numbers", "pk": 3861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008232"}}, {"model": "wells.bcgs_numbers", "pk": 3862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008233"}}, {"model": "wells.bcgs_numbers", "pk": 3863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008234"}}, {"model": "wells.bcgs_numbers", "pk": 3864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008241"}}, {"model": "wells.bcgs_numbers", "pk": 3865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008242"}}, {"model": "wells.bcgs_numbers", "pk": 3866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008243"}}, {"model": "wells.bcgs_numbers", "pk": 3867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008244"}}, {"model": "wells.bcgs_numbers", "pk": 3868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008311"}}, {"model": "wells.bcgs_numbers", "pk": 3869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008312"}}, {"model": "wells.bcgs_numbers", "pk": 3870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008313"}}, {"model": "wells.bcgs_numbers", "pk": 3871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008314"}}, {"model": "wells.bcgs_numbers", "pk": 3872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008321"}}, {"model": "wells.bcgs_numbers", "pk": 3873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008322"}}, {"model": "wells.bcgs_numbers", "pk": 3874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008323"}}, {"model": "wells.bcgs_numbers", "pk": 3875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008324"}}, {"model": "wells.bcgs_numbers", "pk": 3876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008331"}}, {"model": "wells.bcgs_numbers", "pk": 3877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008332"}}, {"model": "wells.bcgs_numbers", "pk": 3878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008333"}}, {"model": "wells.bcgs_numbers", "pk": 3879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008334"}}, {"model": "wells.bcgs_numbers", "pk": 3880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008341"}}, {"model": "wells.bcgs_numbers", "pk": 3881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008342"}}, {"model": "wells.bcgs_numbers", "pk": 3882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008343"}}, {"model": "wells.bcgs_numbers", "pk": 3883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008344"}}, {"model": "wells.bcgs_numbers", "pk": 3884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008411"}}, {"model": "wells.bcgs_numbers", "pk": 3885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008412"}}, {"model": "wells.bcgs_numbers", "pk": 3886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008413"}}, {"model": "wells.bcgs_numbers", "pk": 3887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008414"}}, {"model": "wells.bcgs_numbers", "pk": 3888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008421"}}, {"model": "wells.bcgs_numbers", "pk": 3889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008422"}}, {"model": "wells.bcgs_numbers", "pk": 3890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008423"}}, {"model": "wells.bcgs_numbers", "pk": 3891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008424"}}, {"model": "wells.bcgs_numbers", "pk": 3892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008431"}}, {"model": "wells.bcgs_numbers", "pk": 3893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008432"}}, {"model": "wells.bcgs_numbers", "pk": 3894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008433"}}, {"model": "wells.bcgs_numbers", "pk": 3895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008434"}}, {"model": "wells.bcgs_numbers", "pk": 3896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008441"}}, {"model": "wells.bcgs_numbers", "pk": 3897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008442"}}, {"model": "wells.bcgs_numbers", "pk": 3898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008443"}}, {"model": "wells.bcgs_numbers", "pk": 3899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G008444"}}, {"model": "wells.bcgs_numbers", "pk": 3900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009111"}}, {"model": "wells.bcgs_numbers", "pk": 3901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009112"}}, {"model": "wells.bcgs_numbers", "pk": 3902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009113"}}, {"model": "wells.bcgs_numbers", "pk": 3903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009114"}}, {"model": "wells.bcgs_numbers", "pk": 3904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009121"}}, {"model": "wells.bcgs_numbers", "pk": 3905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009122"}}, {"model": "wells.bcgs_numbers", "pk": 3906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009123"}}, {"model": "wells.bcgs_numbers", "pk": 3907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009124"}}, {"model": "wells.bcgs_numbers", "pk": 3908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009131"}}, {"model": "wells.bcgs_numbers", "pk": 3909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009132"}}, {"model": "wells.bcgs_numbers", "pk": 3910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009133"}}, {"model": "wells.bcgs_numbers", "pk": 3911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009134"}}, {"model": "wells.bcgs_numbers", "pk": 3912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G009141"}}, {"model": "wells.bcgs_numbers", "pk": 3913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009142"}}, {"model": "wells.bcgs_numbers", "pk": 3914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009143"}}, {"model": "wells.bcgs_numbers", "pk": 3915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009144"}}, {"model": "wells.bcgs_numbers", "pk": 3916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009211"}}, {"model": "wells.bcgs_numbers", "pk": 3917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009212"}}, {"model": "wells.bcgs_numbers", "pk": 3918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009213"}}, {"model": "wells.bcgs_numbers", "pk": 3919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009214"}}, {"model": "wells.bcgs_numbers", "pk": 3920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009221"}}, {"model": "wells.bcgs_numbers", "pk": 3921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009222"}}, {"model": "wells.bcgs_numbers", "pk": 3922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009223"}}, {"model": "wells.bcgs_numbers", "pk": 3923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009224"}}, {"model": "wells.bcgs_numbers", "pk": 3924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009231"}}, {"model": "wells.bcgs_numbers", "pk": 3925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009232"}}, {"model": "wells.bcgs_numbers", "pk": 3926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009233"}}, {"model": "wells.bcgs_numbers", "pk": 3927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009234"}}, {"model": "wells.bcgs_numbers", "pk": 3928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009241"}}, {"model": "wells.bcgs_numbers", "pk": 3929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009242"}}, {"model": "wells.bcgs_numbers", "pk": 3930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009243"}}, {"model": "wells.bcgs_numbers", "pk": 3931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009244"}}, {"model": "wells.bcgs_numbers", "pk": 3932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009311"}}, {"model": "wells.bcgs_numbers", "pk": 3933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009312"}}, {"model": "wells.bcgs_numbers", "pk": 3934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009313"}}, {"model": "wells.bcgs_numbers", "pk": 3935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009314"}}, {"model": "wells.bcgs_numbers", "pk": 3936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009321"}}, {"model": "wells.bcgs_numbers", "pk": 3937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009322"}}, {"model": "wells.bcgs_numbers", "pk": 3938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009323"}}, {"model": "wells.bcgs_numbers", "pk": 3939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009324"}}, {"model": "wells.bcgs_numbers", "pk": 3940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009331"}}, {"model": "wells.bcgs_numbers", "pk": 3941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009332"}}, {"model": "wells.bcgs_numbers", "pk": 3942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009333"}}, {"model": "wells.bcgs_numbers", "pk": 3943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009334"}}, {"model": "wells.bcgs_numbers", "pk": 3944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009341"}}, {"model": "wells.bcgs_numbers", "pk": 3945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009342"}}, {"model": "wells.bcgs_numbers", "pk": 3946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009344"}}, {"model": "wells.bcgs_numbers", "pk": 3947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009411"}}, {"model": "wells.bcgs_numbers", "pk": 3948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009412"}}, {"model": "wells.bcgs_numbers", "pk": 3949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009413"}}, {"model": "wells.bcgs_numbers", "pk": 3950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009414"}}, {"model": "wells.bcgs_numbers", "pk": 3951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009422"}}, {"model": "wells.bcgs_numbers", "pk": 3952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009423"}}, {"model": "wells.bcgs_numbers", "pk": 3953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009431"}}, {"model": "wells.bcgs_numbers", "pk": 3954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009432"}}, {"model": "wells.bcgs_numbers", "pk": 3955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009433"}}, {"model": "wells.bcgs_numbers", "pk": 3956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009434"}}, {"model": "wells.bcgs_numbers", "pk": 3957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009441"}}, {"model": "wells.bcgs_numbers", "pk": 3958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009442"}}, {"model": "wells.bcgs_numbers", "pk": 3959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009443"}}, {"model": "wells.bcgs_numbers", "pk": 3960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G009444"}}, {"model": "wells.bcgs_numbers", "pk": 3961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010111"}}, {"model": "wells.bcgs_numbers", "pk": 3962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010112"}}, {"model": "wells.bcgs_numbers", "pk": 3963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010113"}}, {"model": "wells.bcgs_numbers", "pk": 3964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010114"}}, {"model": "wells.bcgs_numbers", "pk": 3965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010124"}}, {"model": "wells.bcgs_numbers", "pk": 3966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010131"}}, {"model": "wells.bcgs_numbers", "pk": 3967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010132"}}, {"model": "wells.bcgs_numbers", "pk": 3968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010133"}}, {"model": "wells.bcgs_numbers", "pk": 3969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010134"}}, {"model": "wells.bcgs_numbers", "pk": 3970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G010141"}}, {"model": "wells.bcgs_numbers", "pk": 3971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010143"}}, {"model": "wells.bcgs_numbers", "pk": 3972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010144"}}, {"model": "wells.bcgs_numbers", "pk": 3973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010211"}}, {"model": "wells.bcgs_numbers", "pk": 3974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010212"}}, {"model": "wells.bcgs_numbers", "pk": 3975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010213"}}, {"model": "wells.bcgs_numbers", "pk": 3976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010214"}}, {"model": "wells.bcgs_numbers", "pk": 3977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010221"}}, {"model": "wells.bcgs_numbers", "pk": 3978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010223"}}, {"model": "wells.bcgs_numbers", "pk": 3979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010224"}}, {"model": "wells.bcgs_numbers", "pk": 3980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010241"}}, {"model": "wells.bcgs_numbers", "pk": 3981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010242"}}, {"model": "wells.bcgs_numbers", "pk": 3982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010244"}}, {"model": "wells.bcgs_numbers", "pk": 3983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010311"}}, {"model": "wells.bcgs_numbers", "pk": 3984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010312"}}, {"model": "wells.bcgs_numbers", "pk": 3985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010313"}}, {"model": "wells.bcgs_numbers", "pk": 3986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010314"}}, {"model": "wells.bcgs_numbers", "pk": 3987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010321"}}, {"model": "wells.bcgs_numbers", "pk": 3988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010322"}}, {"model": "wells.bcgs_numbers", "pk": 3989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010323"}}, {"model": "wells.bcgs_numbers", "pk": 3990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010324"}}, {"model": "wells.bcgs_numbers", "pk": 3991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010331"}}, {"model": "wells.bcgs_numbers", "pk": 3992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010332"}}, {"model": "wells.bcgs_numbers", "pk": 3993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010333"}}, {"model": "wells.bcgs_numbers", "pk": 3994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010341"}}, {"model": "wells.bcgs_numbers", "pk": 3995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010342"}}, {"model": "wells.bcgs_numbers", "pk": 3996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010343"}}, {"model": "wells.bcgs_numbers", "pk": 3997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010344"}}, {"model": "wells.bcgs_numbers", "pk": 3998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010411"}}, {"model": "wells.bcgs_numbers", "pk": 3999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010412"}}, {"model": "wells.bcgs_numbers", "pk": 4000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010414"}}, {"model": "wells.bcgs_numbers", "pk": 4001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010423"}}, {"model": "wells.bcgs_numbers", "pk": 4002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010431"}}, {"model": "wells.bcgs_numbers", "pk": 4003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010432"}}, {"model": "wells.bcgs_numbers", "pk": 4004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010434"}}, {"model": "wells.bcgs_numbers", "pk": 4005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010441"}}, {"model": "wells.bcgs_numbers", "pk": 4006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010442"}}, {"model": "wells.bcgs_numbers", "pk": 4007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010443"}}, {"model": "wells.bcgs_numbers", "pk": 4008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G010444"}}, {"model": "wells.bcgs_numbers", "pk": 4009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011112"}}, {"model": "wells.bcgs_numbers", "pk": 4010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011121"}}, {"model": "wells.bcgs_numbers", "pk": 4011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011122"}}, {"model": "wells.bcgs_numbers", "pk": 4012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011123"}}, {"model": "wells.bcgs_numbers", "pk": 4013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011124"}}, {"model": "wells.bcgs_numbers", "pk": 4014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011132"}}, {"model": "wells.bcgs_numbers", "pk": 4015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011134"}}, {"model": "wells.bcgs_numbers", "pk": 4016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011142"}}, {"model": "wells.bcgs_numbers", "pk": 4017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011211"}}, {"model": "wells.bcgs_numbers", "pk": 4018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011212"}}, {"model": "wells.bcgs_numbers", "pk": 4019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011213"}}, {"model": "wells.bcgs_numbers", "pk": 4020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011214"}}, {"model": "wells.bcgs_numbers", "pk": 4021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011221"}}, {"model": "wells.bcgs_numbers", "pk": 4022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011222"}}, {"model": "wells.bcgs_numbers", "pk": 4023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011223"}}, {"model": "wells.bcgs_numbers", "pk": 4024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011224"}}, {"model": "wells.bcgs_numbers", "pk": 4025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011231"}}, {"model": "wells.bcgs_numbers", "pk": 4026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011232"}}, {"model": "wells.bcgs_numbers", "pk": 4027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011234"}}, {"model": "wells.bcgs_numbers", "pk": 4028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011242"}}, {"model": "wells.bcgs_numbers", "pk": 4029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011244"}}, {"model": "wells.bcgs_numbers", "pk": 4030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011312"}}, {"model": "wells.bcgs_numbers", "pk": 4031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011313"}}, {"model": "wells.bcgs_numbers", "pk": 4032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011314"}}, {"model": "wells.bcgs_numbers", "pk": 4033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011324"}}, {"model": "wells.bcgs_numbers", "pk": 4034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011331"}}, {"model": "wells.bcgs_numbers", "pk": 4035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011333"}}, {"model": "wells.bcgs_numbers", "pk": 4036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011334"}}, {"model": "wells.bcgs_numbers", "pk": 4037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011341"}}, {"model": "wells.bcgs_numbers", "pk": 4038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011342"}}, {"model": "wells.bcgs_numbers", "pk": 4039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011412"}}, {"model": "wells.bcgs_numbers", "pk": 4040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011414"}}, {"model": "wells.bcgs_numbers", "pk": 4041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011422"}}, {"model": "wells.bcgs_numbers", "pk": 4042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011423"}}, {"model": "wells.bcgs_numbers", "pk": 4043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011424"}}, {"model": "wells.bcgs_numbers", "pk": 4044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011432"}}, {"model": "wells.bcgs_numbers", "pk": 4045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011434"}}, {"model": "wells.bcgs_numbers", "pk": 4046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011441"}}, {"model": "wells.bcgs_numbers", "pk": 4047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011442"}}, {"model": "wells.bcgs_numbers", "pk": 4048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011443"}}, {"model": "wells.bcgs_numbers", "pk": 4049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011444"}}, {"model": "wells.bcgs_numbers", "pk": 4050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G012112"}}, {"model": "wells.bcgs_numbers", "pk": 4051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G012114"}}, {"model": "wells.bcgs_numbers", "pk": 4052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012121"}}, {"model": "wells.bcgs_numbers", "pk": 4053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012131"}}, {"model": "wells.bcgs_numbers", "pk": 4054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012132"}}, {"model": "wells.bcgs_numbers", "pk": 4055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012133"}}, {"model": "wells.bcgs_numbers", "pk": 4056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012134"}}, {"model": "wells.bcgs_numbers", "pk": 4057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012141"}}, {"model": "wells.bcgs_numbers", "pk": 4058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012142"}}, {"model": "wells.bcgs_numbers", "pk": 4059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012143"}}, {"model": "wells.bcgs_numbers", "pk": 4060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012144"}}, {"model": "wells.bcgs_numbers", "pk": 4061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012231"}}, {"model": "wells.bcgs_numbers", "pk": 4062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012233"}}, {"model": "wells.bcgs_numbers", "pk": 4063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012311"}}, {"model": "wells.bcgs_numbers", "pk": 4064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012312"}}, {"model": "wells.bcgs_numbers", "pk": 4065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012313"}}, {"model": "wells.bcgs_numbers", "pk": 4066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012321"}}, {"model": "wells.bcgs_numbers", "pk": 4067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012322"}}, {"model": "wells.bcgs_numbers", "pk": 4068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012331"}}, {"model": "wells.bcgs_numbers", "pk": 4069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G012411"}}, {"model": "wells.bcgs_numbers", "pk": 4070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015214"}}, {"model": "wells.bcgs_numbers", "pk": 4071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015244"}}, {"model": "wells.bcgs_numbers", "pk": 4072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015314"}}, {"model": "wells.bcgs_numbers", "pk": 4073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015323"}}, {"model": "wells.bcgs_numbers", "pk": 4074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015334"}}, {"model": "wells.bcgs_numbers", "pk": 4075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015343"}}, {"model": "wells.bcgs_numbers", "pk": 4076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015423"}}, {"model": "wells.bcgs_numbers", "pk": 4077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G015433"}}, {"model": "wells.bcgs_numbers", "pk": 4078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016123"}}, {"model": "wells.bcgs_numbers", "pk": 4079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016124"}}, {"model": "wells.bcgs_numbers", "pk": 4080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016211"}}, {"model": "wells.bcgs_numbers", "pk": 4081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016212"}}, {"model": "wells.bcgs_numbers", "pk": 4082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016213"}}, {"model": "wells.bcgs_numbers", "pk": 4083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016214"}}, {"model": "wells.bcgs_numbers", "pk": 4084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016221"}}, {"model": "wells.bcgs_numbers", "pk": 4085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016222"}}, {"model": "wells.bcgs_numbers", "pk": 4086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016223"}}, {"model": "wells.bcgs_numbers", "pk": 4087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016224"}}, {"model": "wells.bcgs_numbers", "pk": 4088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016232"}}, {"model": "wells.bcgs_numbers", "pk": 4089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016241"}}, {"model": "wells.bcgs_numbers", "pk": 4090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016242"}}, {"model": "wells.bcgs_numbers", "pk": 4091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016244"}}, {"model": "wells.bcgs_numbers", "pk": 4092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016312"}}, {"model": "wells.bcgs_numbers", "pk": 4093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016332"}}, {"model": "wells.bcgs_numbers", "pk": 4094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016411"}}, {"model": "wells.bcgs_numbers", "pk": 4095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016412"}}, {"model": "wells.bcgs_numbers", "pk": 4096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016414"}}, {"model": "wells.bcgs_numbers", "pk": 4097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016422"}}, {"model": "wells.bcgs_numbers", "pk": 4098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016423"}}, {"model": "wells.bcgs_numbers", "pk": 4099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016424"}}, {"model": "wells.bcgs_numbers", "pk": 4100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016431"}}, {"model": "wells.bcgs_numbers", "pk": 4101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016433"}}, {"model": "wells.bcgs_numbers", "pk": 4102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016434"}}, {"model": "wells.bcgs_numbers", "pk": 4103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016441"}}, {"model": "wells.bcgs_numbers", "pk": 4104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016442"}}, {"model": "wells.bcgs_numbers", "pk": 4105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G016444"}}, {"model": "wells.bcgs_numbers", "pk": 4106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017111"}}, {"model": "wells.bcgs_numbers", "pk": 4107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017112"}}, {"model": "wells.bcgs_numbers", "pk": 4108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017113"}}, {"model": "wells.bcgs_numbers", "pk": 4109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017114"}}, {"model": "wells.bcgs_numbers", "pk": 4110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017121"}}, {"model": "wells.bcgs_numbers", "pk": 4111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017122"}}, {"model": "wells.bcgs_numbers", "pk": 4112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017123"}}, {"model": "wells.bcgs_numbers", "pk": 4113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017124"}}, {"model": "wells.bcgs_numbers", "pk": 4114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017131"}}, {"model": "wells.bcgs_numbers", "pk": 4115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017132"}}, {"model": "wells.bcgs_numbers", "pk": 4116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017133"}}, {"model": "wells.bcgs_numbers", "pk": 4117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017134"}}, {"model": "wells.bcgs_numbers", "pk": 4118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017141"}}, {"model": "wells.bcgs_numbers", "pk": 4119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017142"}}, {"model": "wells.bcgs_numbers", "pk": 4120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017143"}}, {"model": "wells.bcgs_numbers", "pk": 4121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017144"}}, {"model": "wells.bcgs_numbers", "pk": 4122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017211"}}, {"model": "wells.bcgs_numbers", "pk": 4123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017212"}}, {"model": "wells.bcgs_numbers", "pk": 4124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017213"}}, {"model": "wells.bcgs_numbers", "pk": 4125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017214"}}, {"model": "wells.bcgs_numbers", "pk": 4126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017221"}}, {"model": "wells.bcgs_numbers", "pk": 4127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017222"}}, {"model": "wells.bcgs_numbers", "pk": 4128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017223"}}, {"model": "wells.bcgs_numbers", "pk": 4129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017224"}}, {"model": "wells.bcgs_numbers", "pk": 4130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017231"}}, {"model": "wells.bcgs_numbers", "pk": 4131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017232"}}, {"model": "wells.bcgs_numbers", "pk": 4132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017233"}}, {"model": "wells.bcgs_numbers", "pk": 4133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017234"}}, {"model": "wells.bcgs_numbers", "pk": 4134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017241"}}, {"model": "wells.bcgs_numbers", "pk": 4135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017242"}}, {"model": "wells.bcgs_numbers", "pk": 4136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017243"}}, {"model": "wells.bcgs_numbers", "pk": 4137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017244"}}, {"model": "wells.bcgs_numbers", "pk": 4138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017311"}}, {"model": "wells.bcgs_numbers", "pk": 4139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017312"}}, {"model": "wells.bcgs_numbers", "pk": 4140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017313"}}, {"model": "wells.bcgs_numbers", "pk": 4141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017314"}}, {"model": "wells.bcgs_numbers", "pk": 4142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017321"}}, {"model": "wells.bcgs_numbers", "pk": 4143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017322"}}, {"model": "wells.bcgs_numbers", "pk": 4144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017323"}}, {"model": "wells.bcgs_numbers", "pk": 4145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017324"}}, {"model": "wells.bcgs_numbers", "pk": 4146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017331"}}, {"model": "wells.bcgs_numbers", "pk": 4147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017332"}}, {"model": "wells.bcgs_numbers", "pk": 4148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G017333"}}, {"model": "wells.bcgs_numbers", "pk": 4149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017334"}}, {"model": "wells.bcgs_numbers", "pk": 4150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017341"}}, {"model": "wells.bcgs_numbers", "pk": 4151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017342"}}, {"model": "wells.bcgs_numbers", "pk": 4152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017343"}}, {"model": "wells.bcgs_numbers", "pk": 4153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017344"}}, {"model": "wells.bcgs_numbers", "pk": 4154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017411"}}, {"model": "wells.bcgs_numbers", "pk": 4155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017412"}}, {"model": "wells.bcgs_numbers", "pk": 4156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017413"}}, {"model": "wells.bcgs_numbers", "pk": 4157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017414"}}, {"model": "wells.bcgs_numbers", "pk": 4158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017421"}}, {"model": "wells.bcgs_numbers", "pk": 4159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017422"}}, {"model": "wells.bcgs_numbers", "pk": 4160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017423"}}, {"model": "wells.bcgs_numbers", "pk": 4161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017424"}}, {"model": "wells.bcgs_numbers", "pk": 4162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017431"}}, {"model": "wells.bcgs_numbers", "pk": 4163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017432"}}, {"model": "wells.bcgs_numbers", "pk": 4164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017433"}}, {"model": "wells.bcgs_numbers", "pk": 4165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017434"}}, {"model": "wells.bcgs_numbers", "pk": 4166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017441"}}, {"model": "wells.bcgs_numbers", "pk": 4167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017442"}}, {"model": "wells.bcgs_numbers", "pk": 4168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017443"}}, {"model": "wells.bcgs_numbers", "pk": 4169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G017444"}}, {"model": "wells.bcgs_numbers", "pk": 4170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018111"}}, {"model": "wells.bcgs_numbers", "pk": 4171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018112"}}, {"model": "wells.bcgs_numbers", "pk": 4172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018113"}}, {"model": "wells.bcgs_numbers", "pk": 4173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018114"}}, {"model": "wells.bcgs_numbers", "pk": 4174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018121"}}, {"model": "wells.bcgs_numbers", "pk": 4175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018122"}}, {"model": "wells.bcgs_numbers", "pk": 4176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018123"}}, {"model": "wells.bcgs_numbers", "pk": 4177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018124"}}, {"model": "wells.bcgs_numbers", "pk": 4178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018131"}}, {"model": "wells.bcgs_numbers", "pk": 4179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018132"}}, {"model": "wells.bcgs_numbers", "pk": 4180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018133"}}, {"model": "wells.bcgs_numbers", "pk": 4181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018134"}}, {"model": "wells.bcgs_numbers", "pk": 4182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018141"}}, {"model": "wells.bcgs_numbers", "pk": 4183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018142"}}, {"model": "wells.bcgs_numbers", "pk": 4184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018143"}}, {"model": "wells.bcgs_numbers", "pk": 4185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018144"}}, {"model": "wells.bcgs_numbers", "pk": 4186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018211"}}, {"model": "wells.bcgs_numbers", "pk": 4187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018212"}}, {"model": "wells.bcgs_numbers", "pk": 4188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018213"}}, {"model": "wells.bcgs_numbers", "pk": 4189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018214"}}, {"model": "wells.bcgs_numbers", "pk": 4190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018221"}}, {"model": "wells.bcgs_numbers", "pk": 4191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018222"}}, {"model": "wells.bcgs_numbers", "pk": 4192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018223"}}, {"model": "wells.bcgs_numbers", "pk": 4193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018224"}}, {"model": "wells.bcgs_numbers", "pk": 4194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018231"}}, {"model": "wells.bcgs_numbers", "pk": 4195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018232"}}, {"model": "wells.bcgs_numbers", "pk": 4196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018233"}}, {"model": "wells.bcgs_numbers", "pk": 4197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018234"}}, {"model": "wells.bcgs_numbers", "pk": 4198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018241"}}, {"model": "wells.bcgs_numbers", "pk": 4199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018242"}}, {"model": "wells.bcgs_numbers", "pk": 4200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018243"}}, {"model": "wells.bcgs_numbers", "pk": 4201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018244"}}, {"model": "wells.bcgs_numbers", "pk": 4202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018311"}}, {"model": "wells.bcgs_numbers", "pk": 4203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018312"}}, {"model": "wells.bcgs_numbers", "pk": 4204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018313"}}, {"model": "wells.bcgs_numbers", "pk": 4205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018314"}}, {"model": "wells.bcgs_numbers", "pk": 4206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018321"}}, {"model": "wells.bcgs_numbers", "pk": 4207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018322"}}, {"model": "wells.bcgs_numbers", "pk": 4208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018323"}}, {"model": "wells.bcgs_numbers", "pk": 4209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018324"}}, {"model": "wells.bcgs_numbers", "pk": 4210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018331"}}, {"model": "wells.bcgs_numbers", "pk": 4211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018332"}}, {"model": "wells.bcgs_numbers", "pk": 4212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018333"}}, {"model": "wells.bcgs_numbers", "pk": 4213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018334"}}, {"model": "wells.bcgs_numbers", "pk": 4214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018341"}}, {"model": "wells.bcgs_numbers", "pk": 4215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018342"}}, {"model": "wells.bcgs_numbers", "pk": 4216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018343"}}, {"model": "wells.bcgs_numbers", "pk": 4217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018344"}}, {"model": "wells.bcgs_numbers", "pk": 4218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018411"}}, {"model": "wells.bcgs_numbers", "pk": 4219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018412"}}, {"model": "wells.bcgs_numbers", "pk": 4220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018413"}}, {"model": "wells.bcgs_numbers", "pk": 4221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018414"}}, {"model": "wells.bcgs_numbers", "pk": 4222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018421"}}, {"model": "wells.bcgs_numbers", "pk": 4223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018422"}}, {"model": "wells.bcgs_numbers", "pk": 4224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018423"}}, {"model": "wells.bcgs_numbers", "pk": 4225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018424"}}, {"model": "wells.bcgs_numbers", "pk": 4226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018431"}}, {"model": "wells.bcgs_numbers", "pk": 4227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018432"}}, {"model": "wells.bcgs_numbers", "pk": 4228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018433"}}, {"model": "wells.bcgs_numbers", "pk": 4229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018434"}}, {"model": "wells.bcgs_numbers", "pk": 4230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018441"}}, {"model": "wells.bcgs_numbers", "pk": 4231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018442"}}, {"model": "wells.bcgs_numbers", "pk": 4232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018443"}}, {"model": "wells.bcgs_numbers", "pk": 4233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G018444"}}, {"model": "wells.bcgs_numbers", "pk": 4234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019111"}}, {"model": "wells.bcgs_numbers", "pk": 4235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019112"}}, {"model": "wells.bcgs_numbers", "pk": 4236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019113"}}, {"model": "wells.bcgs_numbers", "pk": 4237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019114"}}, {"model": "wells.bcgs_numbers", "pk": 4238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019121"}}, {"model": "wells.bcgs_numbers", "pk": 4239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019122"}}, {"model": "wells.bcgs_numbers", "pk": 4240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019124"}}, {"model": "wells.bcgs_numbers", "pk": 4241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019131"}}, {"model": "wells.bcgs_numbers", "pk": 4242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019132"}}, {"model": "wells.bcgs_numbers", "pk": 4243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019133"}}, {"model": "wells.bcgs_numbers", "pk": 4244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019134"}}, {"model": "wells.bcgs_numbers", "pk": 4245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019141"}}, {"model": "wells.bcgs_numbers", "pk": 4246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019142"}}, {"model": "wells.bcgs_numbers", "pk": 4247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019143"}}, {"model": "wells.bcgs_numbers", "pk": 4248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019144"}}, {"model": "wells.bcgs_numbers", "pk": 4249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019211"}}, {"model": "wells.bcgs_numbers", "pk": 4250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019212"}}, {"model": "wells.bcgs_numbers", "pk": 4251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019213"}}, {"model": "wells.bcgs_numbers", "pk": 4252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019214"}}, {"model": "wells.bcgs_numbers", "pk": 4253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019221"}}, {"model": "wells.bcgs_numbers", "pk": 4254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G019223"}}, {"model": "wells.bcgs_numbers", "pk": 4255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019231"}}, {"model": "wells.bcgs_numbers", "pk": 4256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019232"}}, {"model": "wells.bcgs_numbers", "pk": 4257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019233"}}, {"model": "wells.bcgs_numbers", "pk": 4258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019234"}}, {"model": "wells.bcgs_numbers", "pk": 4259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019241"}}, {"model": "wells.bcgs_numbers", "pk": 4260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019243"}}, {"model": "wells.bcgs_numbers", "pk": 4261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019244"}}, {"model": "wells.bcgs_numbers", "pk": 4262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019311"}}, {"model": "wells.bcgs_numbers", "pk": 4263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019312"}}, {"model": "wells.bcgs_numbers", "pk": 4264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019313"}}, {"model": "wells.bcgs_numbers", "pk": 4265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019314"}}, {"model": "wells.bcgs_numbers", "pk": 4266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019321"}}, {"model": "wells.bcgs_numbers", "pk": 4267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019322"}}, {"model": "wells.bcgs_numbers", "pk": 4268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019323"}}, {"model": "wells.bcgs_numbers", "pk": 4269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019324"}}, {"model": "wells.bcgs_numbers", "pk": 4270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019331"}}, {"model": "wells.bcgs_numbers", "pk": 4271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019332"}}, {"model": "wells.bcgs_numbers", "pk": 4272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019333"}}, {"model": "wells.bcgs_numbers", "pk": 4273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019334"}}, {"model": "wells.bcgs_numbers", "pk": 4274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019341"}}, {"model": "wells.bcgs_numbers", "pk": 4275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019342"}}, {"model": "wells.bcgs_numbers", "pk": 4276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019411"}}, {"model": "wells.bcgs_numbers", "pk": 4277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019412"}}, {"model": "wells.bcgs_numbers", "pk": 4278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019413"}}, {"model": "wells.bcgs_numbers", "pk": 4279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019414"}}, {"model": "wells.bcgs_numbers", "pk": 4280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019421"}}, {"model": "wells.bcgs_numbers", "pk": 4281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019422"}}, {"model": "wells.bcgs_numbers", "pk": 4282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019423"}}, {"model": "wells.bcgs_numbers", "pk": 4283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019424"}}, {"model": "wells.bcgs_numbers", "pk": 4284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019431"}}, {"model": "wells.bcgs_numbers", "pk": 4285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019432"}}, {"model": "wells.bcgs_numbers", "pk": 4286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019434"}}, {"model": "wells.bcgs_numbers", "pk": 4287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G019443"}}, {"model": "wells.bcgs_numbers", "pk": 4288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020113"}}, {"model": "wells.bcgs_numbers", "pk": 4289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020122"}}, {"model": "wells.bcgs_numbers", "pk": 4290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020133"}}, {"model": "wells.bcgs_numbers", "pk": 4291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020211"}}, {"model": "wells.bcgs_numbers", "pk": 4292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020212"}}, {"model": "wells.bcgs_numbers", "pk": 4293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020213"}}, {"model": "wells.bcgs_numbers", "pk": 4294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020214"}}, {"model": "wells.bcgs_numbers", "pk": 4295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020221"}}, {"model": "wells.bcgs_numbers", "pk": 4296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020222"}}, {"model": "wells.bcgs_numbers", "pk": 4297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020223"}}, {"model": "wells.bcgs_numbers", "pk": 4298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020224"}}, {"model": "wells.bcgs_numbers", "pk": 4299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020231"}}, {"model": "wells.bcgs_numbers", "pk": 4300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020232"}}, {"model": "wells.bcgs_numbers", "pk": 4301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020234"}}, {"model": "wells.bcgs_numbers", "pk": 4302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020241"}}, {"model": "wells.bcgs_numbers", "pk": 4303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020242"}}, {"model": "wells.bcgs_numbers", "pk": 4304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020243"}}, {"model": "wells.bcgs_numbers", "pk": 4305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020244"}}, {"model": "wells.bcgs_numbers", "pk": 4306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020311"}}, {"model": "wells.bcgs_numbers", "pk": 4307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020313"}}, {"model": "wells.bcgs_numbers", "pk": 4308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020314"}}, {"model": "wells.bcgs_numbers", "pk": 4309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020321"}}, {"model": "wells.bcgs_numbers", "pk": 4310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020322"}}, {"model": "wells.bcgs_numbers", "pk": 4311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020323"}}, {"model": "wells.bcgs_numbers", "pk": 4312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020324"}}, {"model": "wells.bcgs_numbers", "pk": 4313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020331"}}, {"model": "wells.bcgs_numbers", "pk": 4314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020332"}}, {"model": "wells.bcgs_numbers", "pk": 4315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020342"}}, {"model": "wells.bcgs_numbers", "pk": 4316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020411"}}, {"model": "wells.bcgs_numbers", "pk": 4317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020413"}}, {"model": "wells.bcgs_numbers", "pk": 4318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020414"}}, {"model": "wells.bcgs_numbers", "pk": 4319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020421"}}, {"model": "wells.bcgs_numbers", "pk": 4320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020422"}}, {"model": "wells.bcgs_numbers", "pk": 4321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020424"}}, {"model": "wells.bcgs_numbers", "pk": 4322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020431"}}, {"model": "wells.bcgs_numbers", "pk": 4323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020432"}}, {"model": "wells.bcgs_numbers", "pk": 4324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020433"}}, {"model": "wells.bcgs_numbers", "pk": 4325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020434"}}, {"model": "wells.bcgs_numbers", "pk": 4326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G020441"}}, {"model": "wells.bcgs_numbers", "pk": 4327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021111"}}, {"model": "wells.bcgs_numbers", "pk": 4328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021112"}}, {"model": "wells.bcgs_numbers", "pk": 4329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021113"}}, {"model": "wells.bcgs_numbers", "pk": 4330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021114"}}, {"model": "wells.bcgs_numbers", "pk": 4331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021123"}}, {"model": "wells.bcgs_numbers", "pk": 4332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021131"}}, {"model": "wells.bcgs_numbers", "pk": 4333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021132"}}, {"model": "wells.bcgs_numbers", "pk": 4334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021221"}}, {"model": "wells.bcgs_numbers", "pk": 4335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G021222"}}, {"model": "wells.bcgs_numbers", "pk": 4336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G024244"}}, {"model": "wells.bcgs_numbers", "pk": 4337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G024414"}}, {"model": "wells.bcgs_numbers", "pk": 4338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G024423"}}, {"model": "wells.bcgs_numbers", "pk": 4339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025113"}}, {"model": "wells.bcgs_numbers", "pk": 4340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025114"}}, {"model": "wells.bcgs_numbers", "pk": 4341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025132"}}, {"model": "wells.bcgs_numbers", "pk": 4342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025133"}}, {"model": "wells.bcgs_numbers", "pk": 4343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025212"}}, {"model": "wells.bcgs_numbers", "pk": 4344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025221"}}, {"model": "wells.bcgs_numbers", "pk": 4345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025311"}}, {"model": "wells.bcgs_numbers", "pk": 4346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025423"}}, {"model": "wells.bcgs_numbers", "pk": 4347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G025442"}}, {"model": "wells.bcgs_numbers", "pk": 4348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026111"}}, {"model": "wells.bcgs_numbers", "pk": 4349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026112"}}, {"model": "wells.bcgs_numbers", "pk": 4350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026114"}}, {"model": "wells.bcgs_numbers", "pk": 4351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026121"}}, {"model": "wells.bcgs_numbers", "pk": 4352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026122"}}, {"model": "wells.bcgs_numbers", "pk": 4353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026124"}}, {"model": "wells.bcgs_numbers", "pk": 4354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026214"}}, {"model": "wells.bcgs_numbers", "pk": 4355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026222"}}, {"model": "wells.bcgs_numbers", "pk": 4356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026224"}}, {"model": "wells.bcgs_numbers", "pk": 4357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026231"}}, {"model": "wells.bcgs_numbers", "pk": 4358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026233"}}, {"model": "wells.bcgs_numbers", "pk": 4359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026332"}}, {"model": "wells.bcgs_numbers", "pk": 4360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026411"}}, {"model": "wells.bcgs_numbers", "pk": 4361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026432"}}, {"model": "wells.bcgs_numbers", "pk": 4362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G026443"}}, {"model": "wells.bcgs_numbers", "pk": 4363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027111"}}, {"model": "wells.bcgs_numbers", "pk": 4364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027112"}}, {"model": "wells.bcgs_numbers", "pk": 4365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027122"}}, {"model": "wells.bcgs_numbers", "pk": 4366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027123"}}, {"model": "wells.bcgs_numbers", "pk": 4367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027124"}}, {"model": "wells.bcgs_numbers", "pk": 4368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027134"}}, {"model": "wells.bcgs_numbers", "pk": 4369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027212"}}, {"model": "wells.bcgs_numbers", "pk": 4370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G027213"}}, {"model": "wells.bcgs_numbers", "pk": 4371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027214"}}, {"model": "wells.bcgs_numbers", "pk": 4372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027221"}}, {"model": "wells.bcgs_numbers", "pk": 4373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027222"}}, {"model": "wells.bcgs_numbers", "pk": 4374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027223"}}, {"model": "wells.bcgs_numbers", "pk": 4375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027224"}}, {"model": "wells.bcgs_numbers", "pk": 4376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027232"}}, {"model": "wells.bcgs_numbers", "pk": 4377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027241"}}, {"model": "wells.bcgs_numbers", "pk": 4378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027244"}}, {"model": "wells.bcgs_numbers", "pk": 4379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027311"}}, {"model": "wells.bcgs_numbers", "pk": 4380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027312"}}, {"model": "wells.bcgs_numbers", "pk": 4381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027314"}}, {"model": "wells.bcgs_numbers", "pk": 4382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027321"}}, {"model": "wells.bcgs_numbers", "pk": 4383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027333"}}, {"model": "wells.bcgs_numbers", "pk": 4384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027334"}}, {"model": "wells.bcgs_numbers", "pk": 4385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027341"}}, {"model": "wells.bcgs_numbers", "pk": 4386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027342"}}, {"model": "wells.bcgs_numbers", "pk": 4387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027343"}}, {"model": "wells.bcgs_numbers", "pk": 4388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027344"}}, {"model": "wells.bcgs_numbers", "pk": 4389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027424"}}, {"model": "wells.bcgs_numbers", "pk": 4390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G027433"}}, {"model": "wells.bcgs_numbers", "pk": 4391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028112"}}, {"model": "wells.bcgs_numbers", "pk": 4392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028113"}}, {"model": "wells.bcgs_numbers", "pk": 4393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028114"}}, {"model": "wells.bcgs_numbers", "pk": 4394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028121"}}, {"model": "wells.bcgs_numbers", "pk": 4395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028122"}}, {"model": "wells.bcgs_numbers", "pk": 4396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028123"}}, {"model": "wells.bcgs_numbers", "pk": 4397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028124"}}, {"model": "wells.bcgs_numbers", "pk": 4398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028131"}}, {"model": "wells.bcgs_numbers", "pk": 4399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028132"}}, {"model": "wells.bcgs_numbers", "pk": 4400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028133"}}, {"model": "wells.bcgs_numbers", "pk": 4401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028134"}}, {"model": "wells.bcgs_numbers", "pk": 4402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028141"}}, {"model": "wells.bcgs_numbers", "pk": 4403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028142"}}, {"model": "wells.bcgs_numbers", "pk": 4404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028143"}}, {"model": "wells.bcgs_numbers", "pk": 4405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028144"}}, {"model": "wells.bcgs_numbers", "pk": 4406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028211"}}, {"model": "wells.bcgs_numbers", "pk": 4407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028212"}}, {"model": "wells.bcgs_numbers", "pk": 4408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028213"}}, {"model": "wells.bcgs_numbers", "pk": 4409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028214"}}, {"model": "wells.bcgs_numbers", "pk": 4410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028221"}}, {"model": "wells.bcgs_numbers", "pk": 4411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028222"}}, {"model": "wells.bcgs_numbers", "pk": 4412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028223"}}, {"model": "wells.bcgs_numbers", "pk": 4413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028224"}}, {"model": "wells.bcgs_numbers", "pk": 4414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028231"}}, {"model": "wells.bcgs_numbers", "pk": 4415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028232"}}, {"model": "wells.bcgs_numbers", "pk": 4416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028242"}}, {"model": "wells.bcgs_numbers", "pk": 4417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028311"}}, {"model": "wells.bcgs_numbers", "pk": 4418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028312"}}, {"model": "wells.bcgs_numbers", "pk": 4419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028314"}}, {"model": "wells.bcgs_numbers", "pk": 4420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028342"}}, {"model": "wells.bcgs_numbers", "pk": 4421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G028433"}}, {"model": "wells.bcgs_numbers", "pk": 4422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029112"}}, {"model": "wells.bcgs_numbers", "pk": 4423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029113"}}, {"model": "wells.bcgs_numbers", "pk": 4424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029114"}}, {"model": "wells.bcgs_numbers", "pk": 4425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029121"}}, {"model": "wells.bcgs_numbers", "pk": 4426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029122"}}, {"model": "wells.bcgs_numbers", "pk": 4427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029124"}}, {"model": "wells.bcgs_numbers", "pk": 4428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029131"}}, {"model": "wells.bcgs_numbers", "pk": 4429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029132"}}, {"model": "wells.bcgs_numbers", "pk": 4430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029133"}}, {"model": "wells.bcgs_numbers", "pk": 4431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029141"}}, {"model": "wells.bcgs_numbers", "pk": 4432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029142"}}, {"model": "wells.bcgs_numbers", "pk": 4433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029144"}}, {"model": "wells.bcgs_numbers", "pk": 4434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029212"}}, {"model": "wells.bcgs_numbers", "pk": 4435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029213"}}, {"model": "wells.bcgs_numbers", "pk": 4436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029221"}}, {"model": "wells.bcgs_numbers", "pk": 4437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029223"}}, {"model": "wells.bcgs_numbers", "pk": 4438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029224"}}, {"model": "wells.bcgs_numbers", "pk": 4439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029231"}}, {"model": "wells.bcgs_numbers", "pk": 4440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029233"}}, {"model": "wells.bcgs_numbers", "pk": 4441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029241"}}, {"model": "wells.bcgs_numbers", "pk": 4442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029243"}}, {"model": "wells.bcgs_numbers", "pk": 4443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029244"}}, {"model": "wells.bcgs_numbers", "pk": 4444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029412"}}, {"model": "wells.bcgs_numbers", "pk": 4445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029421"}}, {"model": "wells.bcgs_numbers", "pk": 4446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029422"}}, {"model": "wells.bcgs_numbers", "pk": 4447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029423"}}, {"model": "wells.bcgs_numbers", "pk": 4448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029424"}}, {"model": "wells.bcgs_numbers", "pk": 4449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G029442"}}, {"model": "wells.bcgs_numbers", "pk": 4450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G030221"}}, {"model": "wells.bcgs_numbers", "pk": 4451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G030222"}}, {"model": "wells.bcgs_numbers", "pk": 4452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G030224"}}, {"model": "wells.bcgs_numbers", "pk": 4453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G030242"}}, {"model": "wells.bcgs_numbers", "pk": 4454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G030244"}}, {"model": "wells.bcgs_numbers", "pk": 4455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033334"}}, {"model": "wells.bcgs_numbers", "pk": 4456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033341"}}, {"model": "wells.bcgs_numbers", "pk": 4457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033342"}}, {"model": "wells.bcgs_numbers", "pk": 4458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033343"}}, {"model": "wells.bcgs_numbers", "pk": 4459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033344"}}, {"model": "wells.bcgs_numbers", "pk": 4460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033422"}}, {"model": "wells.bcgs_numbers", "pk": 4461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033424"}}, {"model": "wells.bcgs_numbers", "pk": 4462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033433"}}, {"model": "wells.bcgs_numbers", "pk": 4463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033434"}}, {"model": "wells.bcgs_numbers", "pk": 4464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033443"}}, {"model": "wells.bcgs_numbers", "pk": 4465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034243"}}, {"model": "wells.bcgs_numbers", "pk": 4466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034311"}}, {"model": "wells.bcgs_numbers", "pk": 4467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034313"}}, {"model": "wells.bcgs_numbers", "pk": 4468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034314"}}, {"model": "wells.bcgs_numbers", "pk": 4469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034323"}}, {"model": "wells.bcgs_numbers", "pk": 4470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034332"}}, {"model": "wells.bcgs_numbers", "pk": 4471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034334"}}, {"model": "wells.bcgs_numbers", "pk": 4472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034341"}}, {"model": "wells.bcgs_numbers", "pk": 4473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034343"}}, {"model": "wells.bcgs_numbers", "pk": 4474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G034344"}}, {"model": "wells.bcgs_numbers", "pk": 4475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035122"}}, {"model": "wells.bcgs_numbers", "pk": 4476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035123"}}, {"model": "wells.bcgs_numbers", "pk": 4477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035124"}}, {"model": "wells.bcgs_numbers", "pk": 4478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035211"}}, {"model": "wells.bcgs_numbers", "pk": 4479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035213"}}, {"model": "wells.bcgs_numbers", "pk": 4480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035221"}}, {"model": "wells.bcgs_numbers", "pk": 4481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035222"}}, {"model": "wells.bcgs_numbers", "pk": 4482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035223"}}, {"model": "wells.bcgs_numbers", "pk": 4483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035224"}}, {"model": "wells.bcgs_numbers", "pk": 4484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035234"}}, {"model": "wells.bcgs_numbers", "pk": 4485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G035412"}}, {"model": "wells.bcgs_numbers", "pk": 4486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036123"}}, {"model": "wells.bcgs_numbers", "pk": 4487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036124"}}, {"model": "wells.bcgs_numbers", "pk": 4488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036132"}}, {"model": "wells.bcgs_numbers", "pk": 4489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036212"}}, {"model": "wells.bcgs_numbers", "pk": 4490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036213"}}, {"model": "wells.bcgs_numbers", "pk": 4491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036214"}}, {"model": "wells.bcgs_numbers", "pk": 4492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036221"}}, {"model": "wells.bcgs_numbers", "pk": 4493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036223"}}, {"model": "wells.bcgs_numbers", "pk": 4494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036231"}}, {"model": "wells.bcgs_numbers", "pk": 4495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G036232"}}, {"model": "wells.bcgs_numbers", "pk": 4496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G037112"}}, {"model": "wells.bcgs_numbers", "pk": 4497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G037114"}}, {"model": "wells.bcgs_numbers", "pk": 4498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G037121"}}, {"model": "wells.bcgs_numbers", "pk": 4499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G037122"}}, {"model": "wells.bcgs_numbers", "pk": 4500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G037212"}}, {"model": "wells.bcgs_numbers", "pk": 4501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G037214"}}, {"model": "wells.bcgs_numbers", "pk": 4502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G038213"}}, {"model": "wells.bcgs_numbers", "pk": 4503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G038214"}}, {"model": "wells.bcgs_numbers", "pk": 4504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G038234"}}, {"model": "wells.bcgs_numbers", "pk": 4505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G038241"}}, {"model": "wells.bcgs_numbers", "pk": 4506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G038433"}}, {"model": "wells.bcgs_numbers", "pk": 4507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041333"}}, {"model": "wells.bcgs_numbers", "pk": 4508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041342"}}, {"model": "wells.bcgs_numbers", "pk": 4509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041413"}}, {"model": "wells.bcgs_numbers", "pk": 4510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041414"}}, {"model": "wells.bcgs_numbers", "pk": 4511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041423"}}, {"model": "wells.bcgs_numbers", "pk": 4512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041431"}}, {"model": "wells.bcgs_numbers", "pk": 4513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041432"}}, {"model": "wells.bcgs_numbers", "pk": 4514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041434"}}, {"model": "wells.bcgs_numbers", "pk": 4515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041442"}}, {"model": "wells.bcgs_numbers", "pk": 4516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G041444"}}, {"model": "wells.bcgs_numbers", "pk": 4517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042144"}}, {"model": "wells.bcgs_numbers", "pk": 4518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042222"}}, {"model": "wells.bcgs_numbers", "pk": 4519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042223"}}, {"model": "wells.bcgs_numbers", "pk": 4520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042224"}}, {"model": "wells.bcgs_numbers", "pk": 4521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042232"}}, {"model": "wells.bcgs_numbers", "pk": 4522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042233"}}, {"model": "wells.bcgs_numbers", "pk": 4523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042234"}}, {"model": "wells.bcgs_numbers", "pk": 4524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042241"}}, {"model": "wells.bcgs_numbers", "pk": 4525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042242"}}, {"model": "wells.bcgs_numbers", "pk": 4526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042243"}}, {"model": "wells.bcgs_numbers", "pk": 4527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042311"}}, {"model": "wells.bcgs_numbers", "pk": 4528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042313"}}, {"model": "wells.bcgs_numbers", "pk": 4529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042321"}}, {"model": "wells.bcgs_numbers", "pk": 4530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042323"}}, {"model": "wells.bcgs_numbers", "pk": 4531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042331"}}, {"model": "wells.bcgs_numbers", "pk": 4532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042332"}}, {"model": "wells.bcgs_numbers", "pk": 4533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042333"}}, {"model": "wells.bcgs_numbers", "pk": 4534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042334"}}, {"model": "wells.bcgs_numbers", "pk": 4535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042343"}}, {"model": "wells.bcgs_numbers", "pk": 4536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042412"}}, {"model": "wells.bcgs_numbers", "pk": 4537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G042421"}}, {"model": "wells.bcgs_numbers", "pk": 4538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043111"}}, {"model": "wells.bcgs_numbers", "pk": 4539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043112"}}, {"model": "wells.bcgs_numbers", "pk": 4540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043113"}}, {"model": "wells.bcgs_numbers", "pk": 4541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043121"}}, {"model": "wells.bcgs_numbers", "pk": 4542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043122"}}, {"model": "wells.bcgs_numbers", "pk": 4543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043123"}}, {"model": "wells.bcgs_numbers", "pk": 4544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043124"}}, {"model": "wells.bcgs_numbers", "pk": 4545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043211"}}, {"model": "wells.bcgs_numbers", "pk": 4546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043212"}}, {"model": "wells.bcgs_numbers", "pk": 4547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043213"}}, {"model": "wells.bcgs_numbers", "pk": 4548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043221"}}, {"model": "wells.bcgs_numbers", "pk": 4549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043231"}}, {"model": "wells.bcgs_numbers", "pk": 4550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043232"}}, {"model": "wells.bcgs_numbers", "pk": 4551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043233"}}, {"model": "wells.bcgs_numbers", "pk": 4552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043243"}}, {"model": "wells.bcgs_numbers", "pk": 4553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043412"}}, {"model": "wells.bcgs_numbers", "pk": 4554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043421"}}, {"model": "wells.bcgs_numbers", "pk": 4555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G043422"}}, {"model": "wells.bcgs_numbers", "pk": 4556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G044122"}}, {"model": "wells.bcgs_numbers", "pk": 4557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G044123"}}, {"model": "wells.bcgs_numbers", "pk": 4558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G044124"}}, {"model": "wells.bcgs_numbers", "pk": 4559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G046413"}}, {"model": "wells.bcgs_numbers", "pk": 4560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051111"}}, {"model": "wells.bcgs_numbers", "pk": 4561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051121"}}, {"model": "wells.bcgs_numbers", "pk": 4562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051124"}}, {"model": "wells.bcgs_numbers", "pk": 4563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051132"}}, {"model": "wells.bcgs_numbers", "pk": 4564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051133"}}, {"model": "wells.bcgs_numbers", "pk": 4565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051134"}}, {"model": "wells.bcgs_numbers", "pk": 4566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051213"}}, {"model": "wells.bcgs_numbers", "pk": 4567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051311"}}, {"model": "wells.bcgs_numbers", "pk": 4568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051313"}}, {"model": "wells.bcgs_numbers", "pk": 4569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G051331"}}, {"model": "wells.bcgs_numbers", "pk": 4570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G052111"}}, {"model": "wells.bcgs_numbers", "pk": 4571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G052112"}}, {"model": "wells.bcgs_numbers", "pk": 4572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G052114"}}, {"model": "wells.bcgs_numbers", "pk": 4573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G052121"}}, {"model": "wells.bcgs_numbers", "pk": 4574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G052134"}}, {"model": "wells.bcgs_numbers", "pk": 4575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G053211"}}, {"model": "wells.bcgs_numbers", "pk": 4576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G053213"}}, {"model": "wells.bcgs_numbers", "pk": 4577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G053231"}}, {"model": "wells.bcgs_numbers", "pk": 4578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G054421"}}, {"model": "wells.bcgs_numbers", "pk": 4579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G054424"}}, {"model": "wells.bcgs_numbers", "pk": 4580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G054442"}}, {"model": "wells.bcgs_numbers", "pk": 4581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G061131"}}, {"model": "wells.bcgs_numbers", "pk": 4582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G061132"}}, {"model": "wells.bcgs_numbers", "pk": 4583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G061133"}}, {"model": "wells.bcgs_numbers", "pk": 4584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G061134"}}, {"model": "wells.bcgs_numbers", "pk": 4585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G061314"}}, {"model": "wells.bcgs_numbers", "pk": 4586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G065314"}}, {"model": "wells.bcgs_numbers", "pk": 4587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G065332"}}, {"model": "wells.bcgs_numbers", "pk": 4588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G070244"}}, {"model": "wells.bcgs_numbers", "pk": 4589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G070321"}}, {"model": "wells.bcgs_numbers", "pk": 4590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071112"}}, {"model": "wells.bcgs_numbers", "pk": 4591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071143"}}, {"model": "wells.bcgs_numbers", "pk": 4592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071212"}}, {"model": "wells.bcgs_numbers", "pk": 4593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071311"}}, {"model": "wells.bcgs_numbers", "pk": 4594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071312"}}, {"model": "wells.bcgs_numbers", "pk": 4595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071314"}}, {"model": "wells.bcgs_numbers", "pk": 4596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071321"}}, {"model": "wells.bcgs_numbers", "pk": 4597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G071323"}}, {"model": "wells.bcgs_numbers", "pk": 4598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075123"}}, {"model": "wells.bcgs_numbers", "pk": 4599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075141"}}, {"model": "wells.bcgs_numbers", "pk": 4600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075142"}}, {"model": "wells.bcgs_numbers", "pk": 4601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075143"}}, {"model": "wells.bcgs_numbers", "pk": 4602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075213"}}, {"model": "wells.bcgs_numbers", "pk": 4603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075314"}}, {"model": "wells.bcgs_numbers", "pk": 4604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075321"}}, {"model": "wells.bcgs_numbers", "pk": 4605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075323"}}, {"model": "wells.bcgs_numbers", "pk": 4606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075332"}}, {"model": "wells.bcgs_numbers", "pk": 4607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075334"}}, {"model": "wells.bcgs_numbers", "pk": 4608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075341"}}, {"model": "wells.bcgs_numbers", "pk": 4609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075342"}}, {"model": "wells.bcgs_numbers", "pk": 4610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G075343"}}, {"model": "wells.bcgs_numbers", "pk": 4611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G080311"}}, {"model": "wells.bcgs_numbers", "pk": 4612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G084433"}}, {"model": "wells.bcgs_numbers", "pk": 4613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G085111"}}, {"model": "wells.bcgs_numbers", "pk": 4614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G085112"}}, {"model": "wells.bcgs_numbers", "pk": 4615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G085114"}}, {"model": "wells.bcgs_numbers", "pk": 4616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G085132"}}, {"model": "wells.bcgs_numbers", "pk": 4617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G085134"}}, {"model": "wells.bcgs_numbers", "pk": 4618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G085141"}}, {"model": "wells.bcgs_numbers", "pk": 4619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G085313"}}, {"model": "wells.bcgs_numbers", "pk": 4620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G085314"}}, {"model": "wells.bcgs_numbers", "pk": 4621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G085331"}}, {"model": "wells.bcgs_numbers", "pk": 4622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G092133"}}, {"model": "wells.bcgs_numbers", "pk": 4623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G095314"}}, {"model": "wells.bcgs_numbers", "pk": 4624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G097233"}}, {"model": "wells.bcgs_numbers", "pk": 4625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001114"}}, {"model": "wells.bcgs_numbers", "pk": 4626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001134"}}, {"model": "wells.bcgs_numbers", "pk": 4627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001312"}}, {"model": "wells.bcgs_numbers", "pk": 4628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001314"}}, {"model": "wells.bcgs_numbers", "pk": 4629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001331"}}, {"model": "wells.bcgs_numbers", "pk": 4630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001332"}}, {"model": "wells.bcgs_numbers", "pk": 4631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001333"}}, {"model": "wells.bcgs_numbers", "pk": 4632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001334"}}, {"model": "wells.bcgs_numbers", "pk": 4633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001341"}}, {"model": "wells.bcgs_numbers", "pk": 4634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001342"}}, {"model": "wells.bcgs_numbers", "pk": 4635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001343"}}, {"model": "wells.bcgs_numbers", "pk": 4636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001344"}}, {"model": "wells.bcgs_numbers", "pk": 4637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001423"}}, {"model": "wells.bcgs_numbers", "pk": 4638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001431"}}, {"model": "wells.bcgs_numbers", "pk": 4639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001432"}}, {"model": "wells.bcgs_numbers", "pk": 4640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001433"}}, {"model": "wells.bcgs_numbers", "pk": 4641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001434"}}, {"model": "wells.bcgs_numbers", "pk": 4642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001441"}}, {"model": "wells.bcgs_numbers", "pk": 4643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001442"}}, {"model": "wells.bcgs_numbers", "pk": 4644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001443"}}, {"model": "wells.bcgs_numbers", "pk": 4645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H001444"}}, {"model": "wells.bcgs_numbers", "pk": 4646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H002312"}}, {"model": "wells.bcgs_numbers", "pk": 4647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H002341"}}, {"model": "wells.bcgs_numbers", "pk": 4648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H003434"}}, {"model": "wells.bcgs_numbers", "pk": 4649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H005212"}}, {"model": "wells.bcgs_numbers", "pk": 4650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011111"}}, {"model": "wells.bcgs_numbers", "pk": 4651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011112"}}, {"model": "wells.bcgs_numbers", "pk": 4652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011113"}}, {"model": "wells.bcgs_numbers", "pk": 4653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011114"}}, {"model": "wells.bcgs_numbers", "pk": 4654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011121"}}, {"model": "wells.bcgs_numbers", "pk": 4655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011122"}}, {"model": "wells.bcgs_numbers", "pk": 4656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011123"}}, {"model": "wells.bcgs_numbers", "pk": 4657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H011124"}}, {"model": "wells.bcgs_numbers", "pk": 4658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011132"}}, {"model": "wells.bcgs_numbers", "pk": 4659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011133"}}, {"model": "wells.bcgs_numbers", "pk": 4660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011134"}}, {"model": "wells.bcgs_numbers", "pk": 4661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011141"}}, {"model": "wells.bcgs_numbers", "pk": 4662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011143"}}, {"model": "wells.bcgs_numbers", "pk": 4663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011144"}}, {"model": "wells.bcgs_numbers", "pk": 4664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011211"}}, {"model": "wells.bcgs_numbers", "pk": 4665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011212"}}, {"model": "wells.bcgs_numbers", "pk": 4666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011213"}}, {"model": "wells.bcgs_numbers", "pk": 4667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011214"}}, {"model": "wells.bcgs_numbers", "pk": 4668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011221"}}, {"model": "wells.bcgs_numbers", "pk": 4669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011231"}}, {"model": "wells.bcgs_numbers", "pk": 4670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011233"}}, {"model": "wells.bcgs_numbers", "pk": 4671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011234"}}, {"model": "wells.bcgs_numbers", "pk": 4672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011243"}}, {"model": "wells.bcgs_numbers", "pk": 4673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011244"}}, {"model": "wells.bcgs_numbers", "pk": 4674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011311"}}, {"model": "wells.bcgs_numbers", "pk": 4675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011312"}}, {"model": "wells.bcgs_numbers", "pk": 4676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011313"}}, {"model": "wells.bcgs_numbers", "pk": 4677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011314"}}, {"model": "wells.bcgs_numbers", "pk": 4678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011323"}}, {"model": "wells.bcgs_numbers", "pk": 4679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011331"}}, {"model": "wells.bcgs_numbers", "pk": 4680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011334"}}, {"model": "wells.bcgs_numbers", "pk": 4681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011341"}}, {"model": "wells.bcgs_numbers", "pk": 4682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011342"}}, {"model": "wells.bcgs_numbers", "pk": 4683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011343"}}, {"model": "wells.bcgs_numbers", "pk": 4684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011344"}}, {"model": "wells.bcgs_numbers", "pk": 4685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011411"}}, {"model": "wells.bcgs_numbers", "pk": 4686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011412"}}, {"model": "wells.bcgs_numbers", "pk": 4687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011414"}}, {"model": "wells.bcgs_numbers", "pk": 4688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011421"}}, {"model": "wells.bcgs_numbers", "pk": 4689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011422"}}, {"model": "wells.bcgs_numbers", "pk": 4690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011423"}}, {"model": "wells.bcgs_numbers", "pk": 4691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011424"}}, {"model": "wells.bcgs_numbers", "pk": 4692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011431"}}, {"model": "wells.bcgs_numbers", "pk": 4693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011432"}}, {"model": "wells.bcgs_numbers", "pk": 4694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011434"}}, {"model": "wells.bcgs_numbers", "pk": 4695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011441"}}, {"model": "wells.bcgs_numbers", "pk": 4696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011442"}}, {"model": "wells.bcgs_numbers", "pk": 4697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011443"}}, {"model": "wells.bcgs_numbers", "pk": 4698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H011444"}}, {"model": "wells.bcgs_numbers", "pk": 4699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012212"}}, {"model": "wells.bcgs_numbers", "pk": 4700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012313"}}, {"model": "wells.bcgs_numbers", "pk": 4701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012331"}}, {"model": "wells.bcgs_numbers", "pk": 4702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012332"}}, {"model": "wells.bcgs_numbers", "pk": 4703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012333"}}, {"model": "wells.bcgs_numbers", "pk": 4704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012334"}}, {"model": "wells.bcgs_numbers", "pk": 4705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012341"}}, {"model": "wells.bcgs_numbers", "pk": 4706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012343"}}, {"model": "wells.bcgs_numbers", "pk": 4707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H012344"}}, {"model": "wells.bcgs_numbers", "pk": 4708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H013121"}}, {"model": "wells.bcgs_numbers", "pk": 4709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H015132"}}, {"model": "wells.bcgs_numbers", "pk": 4710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H017242"}}, {"model": "wells.bcgs_numbers", "pk": 4711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H021121"}}, {"model": "wells.bcgs_numbers", "pk": 4712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H021122"}}, {"model": "wells.bcgs_numbers", "pk": 4713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021131"}}, {"model": "wells.bcgs_numbers", "pk": 4714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021132"}}, {"model": "wells.bcgs_numbers", "pk": 4715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021133"}}, {"model": "wells.bcgs_numbers", "pk": 4716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021134"}}, {"model": "wells.bcgs_numbers", "pk": 4717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021141"}}, {"model": "wells.bcgs_numbers", "pk": 4718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021142"}}, {"model": "wells.bcgs_numbers", "pk": 4719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021143"}}, {"model": "wells.bcgs_numbers", "pk": 4720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021221"}}, {"model": "wells.bcgs_numbers", "pk": 4721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021222"}}, {"model": "wells.bcgs_numbers", "pk": 4722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021231"}}, {"model": "wells.bcgs_numbers", "pk": 4723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021242"}}, {"model": "wells.bcgs_numbers", "pk": 4724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021243"}}, {"model": "wells.bcgs_numbers", "pk": 4725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021244"}}, {"model": "wells.bcgs_numbers", "pk": 4726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021312"}}, {"model": "wells.bcgs_numbers", "pk": 4727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021321"}}, {"model": "wells.bcgs_numbers", "pk": 4728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021323"}}, {"model": "wells.bcgs_numbers", "pk": 4729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021334"}}, {"model": "wells.bcgs_numbers", "pk": 4730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021343"}}, {"model": "wells.bcgs_numbers", "pk": 4731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021344"}}, {"model": "wells.bcgs_numbers", "pk": 4732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021421"}}, {"model": "wells.bcgs_numbers", "pk": 4733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021422"}}, {"model": "wells.bcgs_numbers", "pk": 4734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H021423"}}, {"model": "wells.bcgs_numbers", "pk": 4735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022114"}}, {"model": "wells.bcgs_numbers", "pk": 4736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022121"}}, {"model": "wells.bcgs_numbers", "pk": 4737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022122"}}, {"model": "wells.bcgs_numbers", "pk": 4738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022123"}}, {"model": "wells.bcgs_numbers", "pk": 4739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022131"}}, {"model": "wells.bcgs_numbers", "pk": 4740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022132"}}, {"model": "wells.bcgs_numbers", "pk": 4741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022133"}}, {"model": "wells.bcgs_numbers", "pk": 4742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022134"}}, {"model": "wells.bcgs_numbers", "pk": 4743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022141"}}, {"model": "wells.bcgs_numbers", "pk": 4744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H022213"}}, {"model": "wells.bcgs_numbers", "pk": 4745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022311"}}, {"model": "wells.bcgs_numbers", "pk": 4746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022312"}}, {"model": "wells.bcgs_numbers", "pk": 4747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022313"}}, {"model": "wells.bcgs_numbers", "pk": 4748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022321"}}, {"model": "wells.bcgs_numbers", "pk": 4749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022322"}}, {"model": "wells.bcgs_numbers", "pk": 4750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022323"}}, {"model": "wells.bcgs_numbers", "pk": 4751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022324"}}, {"model": "wells.bcgs_numbers", "pk": 4752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022331"}}, {"model": "wells.bcgs_numbers", "pk": 4753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022333"}}, {"model": "wells.bcgs_numbers", "pk": 4754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022341"}}, {"model": "wells.bcgs_numbers", "pk": 4755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022344"}}, {"model": "wells.bcgs_numbers", "pk": 4756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022411"}}, {"model": "wells.bcgs_numbers", "pk": 4757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022433"}}, {"model": "wells.bcgs_numbers", "pk": 4758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H022434"}}, {"model": "wells.bcgs_numbers", "pk": 4759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H030422"}}, {"model": "wells.bcgs_numbers", "pk": 4760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H030423"}}, {"model": "wells.bcgs_numbers", "pk": 4761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H030424"}}, {"model": "wells.bcgs_numbers", "pk": 4762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H030441"}}, {"model": "wells.bcgs_numbers", "pk": 4763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H030442"}}, {"model": "wells.bcgs_numbers", "pk": 4764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H030443"}}, {"model": "wells.bcgs_numbers", "pk": 4765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H031213"}}, {"model": "wells.bcgs_numbers", "pk": 4766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032111"}}, {"model": "wells.bcgs_numbers", "pk": 4767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032112"}}, {"model": "wells.bcgs_numbers", "pk": 4768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032114"}}, {"model": "wells.bcgs_numbers", "pk": 4769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032122"}}, {"model": "wells.bcgs_numbers", "pk": 4770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032132"}}, {"model": "wells.bcgs_numbers", "pk": 4771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032141"}}, {"model": "wells.bcgs_numbers", "pk": 4772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032143"}}, {"model": "wells.bcgs_numbers", "pk": 4773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032144"}}, {"model": "wells.bcgs_numbers", "pk": 4774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032212"}}, {"model": "wells.bcgs_numbers", "pk": 4775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032224"}}, {"model": "wells.bcgs_numbers", "pk": 4776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H032244"}}, {"model": "wells.bcgs_numbers", "pk": 4777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H033133"}}, {"model": "wells.bcgs_numbers", "pk": 4778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H033234"}}, {"model": "wells.bcgs_numbers", "pk": 4779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H033311"}}, {"model": "wells.bcgs_numbers", "pk": 4780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H033313"}}, {"model": "wells.bcgs_numbers", "pk": 4781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033322"}}, {"model": "wells.bcgs_numbers", "pk": 4782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033324"}}, {"model": "wells.bcgs_numbers", "pk": 4783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033412"}}, {"model": "wells.bcgs_numbers", "pk": 4784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033413"}}, {"model": "wells.bcgs_numbers", "pk": 4785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033414"}}, {"model": "wells.bcgs_numbers", "pk": 4786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033423"}}, {"model": "wells.bcgs_numbers", "pk": 4787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033432"}}, {"model": "wells.bcgs_numbers", "pk": 4788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033441"}}, {"model": "wells.bcgs_numbers", "pk": 4789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033442"}}, {"model": "wells.bcgs_numbers", "pk": 4790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033443"}}, {"model": "wells.bcgs_numbers", "pk": 4791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033444"}}, {"model": "wells.bcgs_numbers", "pk": 4792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H034313"}}, {"model": "wells.bcgs_numbers", "pk": 4793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H034321"}}, {"model": "wells.bcgs_numbers", "pk": 4794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H034323"}}, {"model": "wells.bcgs_numbers", "pk": 4795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H034331"}}, {"model": "wells.bcgs_numbers", "pk": 4796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H034332"}}, {"model": "wells.bcgs_numbers", "pk": 4797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H038142"}}, {"model": "wells.bcgs_numbers", "pk": 4798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H038314"}}, {"model": "wells.bcgs_numbers", "pk": 4799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H038334"}}, {"model": "wells.bcgs_numbers", "pk": 4800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H038341"}}, {"model": "wells.bcgs_numbers", "pk": 4801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H038413"}}, {"model": "wells.bcgs_numbers", "pk": 4802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H039444"}}, {"model": "wells.bcgs_numbers", "pk": 4803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H040221"}}, {"model": "wells.bcgs_numbers", "pk": 4804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040223"}}, {"model": "wells.bcgs_numbers", "pk": 4805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040232"}}, {"model": "wells.bcgs_numbers", "pk": 4806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040234"}}, {"model": "wells.bcgs_numbers", "pk": 4807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040241"}}, {"model": "wells.bcgs_numbers", "pk": 4808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040322"}}, {"model": "wells.bcgs_numbers", "pk": 4809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040323"}}, {"model": "wells.bcgs_numbers", "pk": 4810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040324"}}, {"model": "wells.bcgs_numbers", "pk": 4811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040331"}}, {"model": "wells.bcgs_numbers", "pk": 4812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040332"}}, {"model": "wells.bcgs_numbers", "pk": 4813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040412"}}, {"model": "wells.bcgs_numbers", "pk": 4814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040421"}}, {"model": "wells.bcgs_numbers", "pk": 4815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040422"}}, {"model": "wells.bcgs_numbers", "pk": 4816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040423"}}, {"model": "wells.bcgs_numbers", "pk": 4817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040424"}}, {"model": "wells.bcgs_numbers", "pk": 4818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H040441"}}, {"model": "wells.bcgs_numbers", "pk": 4819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H042243"}}, {"model": "wells.bcgs_numbers", "pk": 4820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H043221"}}, {"model": "wells.bcgs_numbers", "pk": 4821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H043223"}}, {"model": "wells.bcgs_numbers", "pk": 4822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H043423"}}, {"model": "wells.bcgs_numbers", "pk": 4823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H043441"}}, {"model": "wells.bcgs_numbers", "pk": 4824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H043442"}}, {"model": "wells.bcgs_numbers", "pk": 4825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H043444"}}, {"model": "wells.bcgs_numbers", "pk": 4826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H047443"}}, {"model": "wells.bcgs_numbers", "pk": 4827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048132"}}, {"model": "wells.bcgs_numbers", "pk": 4828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048133"}}, {"model": "wells.bcgs_numbers", "pk": 4829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048134"}}, {"model": "wells.bcgs_numbers", "pk": 4830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048142"}}, {"model": "wells.bcgs_numbers", "pk": 4831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048143"}}, {"model": "wells.bcgs_numbers", "pk": 4832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048144"}}, {"model": "wells.bcgs_numbers", "pk": 4833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048213"}}, {"model": "wells.bcgs_numbers", "pk": 4834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H048243"}}, {"model": "wells.bcgs_numbers", "pk": 4835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:36Z", "update_user": null, "update_date": null, "bcgs_number": "092H048312"}}, {"model": "wells.bcgs_numbers", "pk": 4836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048321"}}, {"model": "wells.bcgs_numbers", "pk": 4837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048322"}}, {"model": "wells.bcgs_numbers", "pk": 4838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048323"}}, {"model": "wells.bcgs_numbers", "pk": 4839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048324"}}, {"model": "wells.bcgs_numbers", "pk": 4840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048331"}}, {"model": "wells.bcgs_numbers", "pk": 4841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048342"}}, {"model": "wells.bcgs_numbers", "pk": 4842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048344"}}, {"model": "wells.bcgs_numbers", "pk": 4843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048411"}}, {"model": "wells.bcgs_numbers", "pk": 4844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048412"}}, {"model": "wells.bcgs_numbers", "pk": 4845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048413"}}, {"model": "wells.bcgs_numbers", "pk": 4846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048414"}}, {"model": "wells.bcgs_numbers", "pk": 4847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048421"}}, {"model": "wells.bcgs_numbers", "pk": 4848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048422"}}, {"model": "wells.bcgs_numbers", "pk": 4849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048423"}}, {"model": "wells.bcgs_numbers", "pk": 4850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048431"}}, {"model": "wells.bcgs_numbers", "pk": 4851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H048433"}}, {"model": "wells.bcgs_numbers", "pk": 4852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049141"}}, {"model": "wells.bcgs_numbers", "pk": 4853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049144"}}, {"model": "wells.bcgs_numbers", "pk": 4854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049212"}}, {"model": "wells.bcgs_numbers", "pk": 4855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049214"}}, {"model": "wells.bcgs_numbers", "pk": 4856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049221"}}, {"model": "wells.bcgs_numbers", "pk": 4857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049231"}}, {"model": "wells.bcgs_numbers", "pk": 4858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049232"}}, {"model": "wells.bcgs_numbers", "pk": 4859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H049311"}}, {"model": "wells.bcgs_numbers", "pk": 4860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H049312"}}, {"model": "wells.bcgs_numbers", "pk": 4861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H049313"}}, {"model": "wells.bcgs_numbers", "pk": 4862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H049314"}}, {"model": "wells.bcgs_numbers", "pk": 4863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H049321"}}, {"model": "wells.bcgs_numbers", "pk": 4864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H049422"}}, {"model": "wells.bcgs_numbers", "pk": 4865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H053423"}}, {"model": "wells.bcgs_numbers", "pk": 4866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057124"}}, {"model": "wells.bcgs_numbers", "pk": 4867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057134"}}, {"model": "wells.bcgs_numbers", "pk": 4868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057141"}}, {"model": "wells.bcgs_numbers", "pk": 4869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057211"}}, {"model": "wells.bcgs_numbers", "pk": 4870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057312"}}, {"model": "wells.bcgs_numbers", "pk": 4871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057332"}}, {"model": "wells.bcgs_numbers", "pk": 4872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H057424"}}, {"model": "wells.bcgs_numbers", "pk": 4873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058123"}}, {"model": "wells.bcgs_numbers", "pk": 4874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058124"}}, {"model": "wells.bcgs_numbers", "pk": 4875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058142"}}, {"model": "wells.bcgs_numbers", "pk": 4876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058143"}}, {"model": "wells.bcgs_numbers", "pk": 4877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058144"}}, {"model": "wells.bcgs_numbers", "pk": 4878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058211"}}, {"model": "wells.bcgs_numbers", "pk": 4879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058221"}}, {"model": "wells.bcgs_numbers", "pk": 4880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058223"}}, {"model": "wells.bcgs_numbers", "pk": 4881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058233"}}, {"model": "wells.bcgs_numbers", "pk": 4882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058234"}}, {"model": "wells.bcgs_numbers", "pk": 4883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058241"}}, {"model": "wells.bcgs_numbers", "pk": 4884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058321"}}, {"model": "wells.bcgs_numbers", "pk": 4885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058412"}}, {"model": "wells.bcgs_numbers", "pk": 4886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058422"}}, {"model": "wells.bcgs_numbers", "pk": 4887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058424"}}, {"model": "wells.bcgs_numbers", "pk": 4888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H058441"}}, {"model": "wells.bcgs_numbers", "pk": 4889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H059331"}}, {"model": "wells.bcgs_numbers", "pk": 4890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H063421"}}, {"model": "wells.bcgs_numbers", "pk": 4891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H063442"}}, {"model": "wells.bcgs_numbers", "pk": 4892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H065244"}}, {"model": "wells.bcgs_numbers", "pk": 4893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H067211"}}, {"model": "wells.bcgs_numbers", "pk": 4894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H067244"}}, {"model": "wells.bcgs_numbers", "pk": 4895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H067442"}}, {"model": "wells.bcgs_numbers", "pk": 4896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H068113"}}, {"model": "wells.bcgs_numbers", "pk": 4897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069112"}}, {"model": "wells.bcgs_numbers", "pk": 4898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069114"}}, {"model": "wells.bcgs_numbers", "pk": 4899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069132"}}, {"model": "wells.bcgs_numbers", "pk": 4900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069134"}}, {"model": "wells.bcgs_numbers", "pk": 4901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069222"}}, {"model": "wells.bcgs_numbers", "pk": 4902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069312"}}, {"model": "wells.bcgs_numbers", "pk": 4903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069321"}}, {"model": "wells.bcgs_numbers", "pk": 4904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069323"}}, {"model": "wells.bcgs_numbers", "pk": 4905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069324"}}, {"model": "wells.bcgs_numbers", "pk": 4906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H069413"}}, {"model": "wells.bcgs_numbers", "pk": 4907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H069431"}}, {"model": "wells.bcgs_numbers", "pk": 4908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H069433"}}, {"model": "wells.bcgs_numbers", "pk": 4909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H069434"}}, {"model": "wells.bcgs_numbers", "pk": 4910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H077112"}}, {"model": "wells.bcgs_numbers", "pk": 4911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H077222"}}, {"model": "wells.bcgs_numbers", "pk": 4912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H077224"}}, {"model": "wells.bcgs_numbers", "pk": 4913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H077432"}}, {"model": "wells.bcgs_numbers", "pk": 4914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H079212"}}, {"model": "wells.bcgs_numbers", "pk": 4915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H079214"}}, {"model": "wells.bcgs_numbers", "pk": 4916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H079221"}}, {"model": "wells.bcgs_numbers", "pk": 4917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H079222"}}, {"model": "wells.bcgs_numbers", "pk": 4919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H079224"}}, {"model": "wells.bcgs_numbers", "pk": 4920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H086214"}}, {"model": "wells.bcgs_numbers", "pk": 4921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H089413"}}, {"model": "wells.bcgs_numbers", "pk": 4922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H093223"}}, {"model": "wells.bcgs_numbers", "pk": 4923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096122"}}, {"model": "wells.bcgs_numbers", "pk": 4924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096211"}}, {"model": "wells.bcgs_numbers", "pk": 4925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096213"}}, {"model": "wells.bcgs_numbers", "pk": 4926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096214"}}, {"model": "wells.bcgs_numbers", "pk": 4927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096321"}}, {"model": "wells.bcgs_numbers", "pk": 4928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096322"}}, {"model": "wells.bcgs_numbers", "pk": 4929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H096333"}}, {"model": "wells.bcgs_numbers", "pk": 4930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H097124"}}, {"model": "wells.bcgs_numbers", "pk": 4931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H097132"}}, {"model": "wells.bcgs_numbers", "pk": 4932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H097142"}}, {"model": "wells.bcgs_numbers", "pk": 4933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H097241"}}, {"model": "wells.bcgs_numbers", "pk": 4934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H097243"}}, {"model": "wells.bcgs_numbers", "pk": 4935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H098112"}}, {"model": "wells.bcgs_numbers", "pk": 4936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H100231"}}, {"model": "wells.bcgs_numbers", "pk": 4937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H100343"}}, {"model": "wells.bcgs_numbers", "pk": 4938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I.026.1"}}, {"model": "wells.bcgs_numbers", "pk": 4939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I.061.3"}}, {"model": "wells.bcgs_numbers", "pk": 4940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I005224"}}, {"model": "wells.bcgs_numbers", "pk": 4941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006111"}}, {"model": "wells.bcgs_numbers", "pk": 4942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006211"}}, {"model": "wells.bcgs_numbers", "pk": 4943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006214"}}, {"model": "wells.bcgs_numbers", "pk": 4944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006232"}}, {"model": "wells.bcgs_numbers", "pk": 4945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006234"}}, {"model": "wells.bcgs_numbers", "pk": 4946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006241"}}, {"model": "wells.bcgs_numbers", "pk": 4947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006422"}}, {"model": "wells.bcgs_numbers", "pk": 4948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I006424"}}, {"model": "wells.bcgs_numbers", "pk": 4949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007231"}}, {"model": "wells.bcgs_numbers", "pk": 4950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007234"}}, {"model": "wells.bcgs_numbers", "pk": 4951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007241"}}, {"model": "wells.bcgs_numbers", "pk": 4952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007314"}}, {"model": "wells.bcgs_numbers", "pk": 4953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007332"}}, {"model": "wells.bcgs_numbers", "pk": 4954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007333"}}, {"model": "wells.bcgs_numbers", "pk": 4955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007334"}}, {"model": "wells.bcgs_numbers", "pk": 4956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I007343"}}, {"model": "wells.bcgs_numbers", "pk": 4957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I009113"}}, {"model": "wells.bcgs_numbers", "pk": 4958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I014311"}}, {"model": "wells.bcgs_numbers", "pk": 4959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015212"}}, {"model": "wells.bcgs_numbers", "pk": 4960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015213"}}, {"model": "wells.bcgs_numbers", "pk": 4961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015214"}}, {"model": "wells.bcgs_numbers", "pk": 4962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015223"}}, {"model": "wells.bcgs_numbers", "pk": 4963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015232"}}, {"model": "wells.bcgs_numbers", "pk": 4964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015241"}}, {"model": "wells.bcgs_numbers", "pk": 4965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015242"}}, {"model": "wells.bcgs_numbers", "pk": 4966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015243"}}, {"model": "wells.bcgs_numbers", "pk": 4967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I015244"}}, {"model": "wells.bcgs_numbers", "pk": 4968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I015421"}}, {"model": "wells.bcgs_numbers", "pk": 4969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I015422"}}, {"model": "wells.bcgs_numbers", "pk": 4970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I015444"}}, {"model": "wells.bcgs_numbers", "pk": 4971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016113"}}, {"model": "wells.bcgs_numbers", "pk": 4972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016131"}}, {"model": "wells.bcgs_numbers", "pk": 4973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016132"}}, {"model": "wells.bcgs_numbers", "pk": 4974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016133"}}, {"model": "wells.bcgs_numbers", "pk": 4975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016134"}}, {"model": "wells.bcgs_numbers", "pk": 4976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016141"}}, {"model": "wells.bcgs_numbers", "pk": 4977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016143"}}, {"model": "wells.bcgs_numbers", "pk": 4978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016144"}}, {"model": "wells.bcgs_numbers", "pk": 4979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016222"}}, {"model": "wells.bcgs_numbers", "pk": 4980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016223"}}, {"model": "wells.bcgs_numbers", "pk": 4981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016224"}}, {"model": "wells.bcgs_numbers", "pk": 4982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016232"}}, {"model": "wells.bcgs_numbers", "pk": 4983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016233"}}, {"model": "wells.bcgs_numbers", "pk": 4984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016234"}}, {"model": "wells.bcgs_numbers", "pk": 4985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016241"}}, {"model": "wells.bcgs_numbers", "pk": 4986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016243"}}, {"model": "wells.bcgs_numbers", "pk": 4987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016321"}}, {"model": "wells.bcgs_numbers", "pk": 4988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016411"}}, {"model": "wells.bcgs_numbers", "pk": 4989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016412"}}, {"model": "wells.bcgs_numbers", "pk": 4990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016413"}}, {"model": "wells.bcgs_numbers", "pk": 4991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016414"}}, {"model": "wells.bcgs_numbers", "pk": 4992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016431"}}, {"model": "wells.bcgs_numbers", "pk": 4993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I016432"}}, {"model": "wells.bcgs_numbers", "pk": 4994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017111"}}, {"model": "wells.bcgs_numbers", "pk": 4995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017112"}}, {"model": "wells.bcgs_numbers", "pk": 4996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017113"}}, {"model": "wells.bcgs_numbers", "pk": 4997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017114"}}, {"model": "wells.bcgs_numbers", "pk": 4998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017131"}}, {"model": "wells.bcgs_numbers", "pk": 4999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017141"}}, {"model": "wells.bcgs_numbers", "pk": 5000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017144"}}, {"model": "wells.bcgs_numbers", "pk": 5001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017233"}}, {"model": "wells.bcgs_numbers", "pk": 5002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017412"}}, {"model": "wells.bcgs_numbers", "pk": 5003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017413"}}, {"model": "wells.bcgs_numbers", "pk": 5004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017414"}}, {"model": "wells.bcgs_numbers", "pk": 5005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017422"}}, {"model": "wells.bcgs_numbers", "pk": 5006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I017432"}}, {"model": "wells.bcgs_numbers", "pk": 5007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I018311"}}, {"model": "wells.bcgs_numbers", "pk": 5008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I018322"}}, {"model": "wells.bcgs_numbers", "pk": 5009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I018323"}}, {"model": "wells.bcgs_numbers", "pk": 5010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I018324"}}, {"model": "wells.bcgs_numbers", "pk": 5011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I018341"}}, {"model": "wells.bcgs_numbers", "pk": 5012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I018413"}}, {"model": "wells.bcgs_numbers", "pk": 5013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I018434"}}, {"model": "wells.bcgs_numbers", "pk": 5014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I019231"}}, {"model": "wells.bcgs_numbers", "pk": 5015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I019233"}}, {"model": "wells.bcgs_numbers", "pk": 5016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I019313"}}, {"model": "wells.bcgs_numbers", "pk": 5017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I019332"}}, {"model": "wells.bcgs_numbers", "pk": 5018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I019421"}}, {"model": "wells.bcgs_numbers", "pk": 5019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I020313"}}, {"model": "wells.bcgs_numbers", "pk": 5020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I020323"}}, {"model": "wells.bcgs_numbers", "pk": 5021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I022441"}}, {"model": "wells.bcgs_numbers", "pk": 5022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I023111"}}, {"model": "wells.bcgs_numbers", "pk": 5023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I023112"}}, {"model": "wells.bcgs_numbers", "pk": 5024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I023312"}}, {"model": "wells.bcgs_numbers", "pk": 5025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I023321"}}, {"model": "wells.bcgs_numbers", "pk": 5026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I023322"}}, {"model": "wells.bcgs_numbers", "pk": 5027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I025233"}}, {"model": "wells.bcgs_numbers", "pk": 5028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I025333"}}, {"model": "wells.bcgs_numbers", "pk": 5029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I025334"}}, {"model": "wells.bcgs_numbers", "pk": 5030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I026423"}}, {"model": "wells.bcgs_numbers", "pk": 5031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I026424"}}, {"model": "wells.bcgs_numbers", "pk": 5032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I026444"}}, {"model": "wells.bcgs_numbers", "pk": 5033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I027221"}}, {"model": "wells.bcgs_numbers", "pk": 5034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I028212"}}, {"model": "wells.bcgs_numbers", "pk": 5035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I028213"}}, {"model": "wells.bcgs_numbers", "pk": 5036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I028234"}}, {"model": "wells.bcgs_numbers", "pk": 5037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I028412"}}, {"model": "wells.bcgs_numbers", "pk": 5038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I028423"}}, {"model": "wells.bcgs_numbers", "pk": 5039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I029133"}}, {"model": "wells.bcgs_numbers", "pk": 5040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I029333"}}, {"model": "wells.bcgs_numbers", "pk": 5041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I029412"}}, {"model": "wells.bcgs_numbers", "pk": 5042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I030241"}}, {"model": "wells.bcgs_numbers", "pk": 5043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I030412"}}, {"model": "wells.bcgs_numbers", "pk": 5044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I030424"}}, {"model": "wells.bcgs_numbers", "pk": 5045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I033114"}}, {"model": "wells.bcgs_numbers", "pk": 5046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I033123"}}, {"model": "wells.bcgs_numbers", "pk": 5047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I033141"}}, {"model": "wells.bcgs_numbers", "pk": 5048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I034133"}}, {"model": "wells.bcgs_numbers", "pk": 5049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I034224"}}, {"model": "wells.bcgs_numbers", "pk": 5050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I034243"}}, {"model": "wells.bcgs_numbers", "pk": 5051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I034331"}}, {"model": "wells.bcgs_numbers", "pk": 5052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I034423"}}, {"model": "wells.bcgs_numbers", "pk": 5053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I036221"}}, {"model": "wells.bcgs_numbers", "pk": 5054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I036223"}}, {"model": "wells.bcgs_numbers", "pk": 5055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I036224"}}, {"model": "wells.bcgs_numbers", "pk": 5056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I036242"}}, {"model": "wells.bcgs_numbers", "pk": 5057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I036244"}}, {"model": "wells.bcgs_numbers", "pk": 5058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I036424"}}, {"model": "wells.bcgs_numbers", "pk": 5059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I038223"}}, {"model": "wells.bcgs_numbers", "pk": 5060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I039111"}}, {"model": "wells.bcgs_numbers", "pk": 5061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I039311"}}, {"model": "wells.bcgs_numbers", "pk": 5062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I039323"}}, {"model": "wells.bcgs_numbers", "pk": 5063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I039341"}}, {"model": "wells.bcgs_numbers", "pk": 5064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I039343"}}, {"model": "wells.bcgs_numbers", "pk": 5065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I044124"}}, {"model": "wells.bcgs_numbers", "pk": 5066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I044142"}}, {"model": "wells.bcgs_numbers", "pk": 5067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I044211"}}, {"model": "wells.bcgs_numbers", "pk": 5068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I044324"}}, {"model": "wells.bcgs_numbers", "pk": 5069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I045421"}}, {"model": "wells.bcgs_numbers", "pk": 5070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I045441"}}, {"model": "wells.bcgs_numbers", "pk": 5071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I045442"}}, {"model": "wells.bcgs_numbers", "pk": 5072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I046323"}}, {"model": "wells.bcgs_numbers", "pk": 5073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I046331"}}, {"model": "wells.bcgs_numbers", "pk": 5074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I046424"}}, {"model": "wells.bcgs_numbers", "pk": 5075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I046443"}}, {"model": "wells.bcgs_numbers", "pk": 5076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I046444"}}, {"model": "wells.bcgs_numbers", "pk": 5077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I048413"}}, {"model": "wells.bcgs_numbers", "pk": 5078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I048431"}}, {"model": "wells.bcgs_numbers", "pk": 5079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I048433"}}, {"model": "wells.bcgs_numbers", "pk": 5080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049121"}}, {"model": "wells.bcgs_numbers", "pk": 5081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049124"}}, {"model": "wells.bcgs_numbers", "pk": 5082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049322"}}, {"model": "wells.bcgs_numbers", "pk": 5083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049324"}}, {"model": "wells.bcgs_numbers", "pk": 5084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049341"}}, {"model": "wells.bcgs_numbers", "pk": 5085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049342"}}, {"model": "wells.bcgs_numbers", "pk": 5086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049421"}}, {"model": "wells.bcgs_numbers", "pk": 5087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049432"}}, {"model": "wells.bcgs_numbers", "pk": 5088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049434"}}, {"model": "wells.bcgs_numbers", "pk": 5089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I049443"}}, {"model": "wells.bcgs_numbers", "pk": 5090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I050341"}}, {"model": "wells.bcgs_numbers", "pk": 5091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I051434"}}, {"model": "wells.bcgs_numbers", "pk": 5092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I053112"}}, {"model": "wells.bcgs_numbers", "pk": 5093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I054411"}}, {"model": "wells.bcgs_numbers", "pk": 5094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I054413"}}, {"model": "wells.bcgs_numbers", "pk": 5095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I054442"}}, {"model": "wells.bcgs_numbers", "pk": 5096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I055144"}}, {"model": "wells.bcgs_numbers", "pk": 5097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I055214"}}, {"model": "wells.bcgs_numbers", "pk": 5098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I055232"}}, {"model": "wells.bcgs_numbers", "pk": 5099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I055321"}}, {"model": "wells.bcgs_numbers", "pk": 5100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I056412"}}, {"model": "wells.bcgs_numbers", "pk": 5101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I057241"}}, {"model": "wells.bcgs_numbers", "pk": 5102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I058232"}}, {"model": "wells.bcgs_numbers", "pk": 5103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I058443"}}, {"model": "wells.bcgs_numbers", "pk": 5104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059121"}}, {"model": "wells.bcgs_numbers", "pk": 5105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059122"}}, {"model": "wells.bcgs_numbers", "pk": 5106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059124"}}, {"model": "wells.bcgs_numbers", "pk": 5107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059221"}}, {"model": "wells.bcgs_numbers", "pk": 5108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059234"}}, {"model": "wells.bcgs_numbers", "pk": 5109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059322"}}, {"model": "wells.bcgs_numbers", "pk": 5110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059332"}}, {"model": "wells.bcgs_numbers", "pk": 5111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059341"}}, {"model": "wells.bcgs_numbers", "pk": 5112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059342"}}, {"model": "wells.bcgs_numbers", "pk": 5113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059344"}}, {"model": "wells.bcgs_numbers", "pk": 5114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059411"}}, {"model": "wells.bcgs_numbers", "pk": 5115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059412"}}, {"model": "wells.bcgs_numbers", "pk": 5116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059413"}}, {"model": "wells.bcgs_numbers", "pk": 5117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059423"}}, {"model": "wells.bcgs_numbers", "pk": 5118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059434"}}, {"model": "wells.bcgs_numbers", "pk": 5119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I059444"}}, {"model": "wells.bcgs_numbers", "pk": 5120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I060243"}}, {"model": "wells.bcgs_numbers", "pk": 5121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I060342"}}, {"model": "wells.bcgs_numbers", "pk": 5122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I060414"}}, {"model": "wells.bcgs_numbers", "pk": 5123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I060431"}}, {"model": "wells.bcgs_numbers", "pk": 5124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I060442"}}, {"model": "wells.bcgs_numbers", "pk": 5125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I061132"}}, {"model": "wells.bcgs_numbers", "pk": 5126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I061213"}}, {"model": "wells.bcgs_numbers", "pk": 5127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I061214"}}, {"model": "wells.bcgs_numbers", "pk": 5128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I061233"}}, {"model": "wells.bcgs_numbers", "pk": 5129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061313"}}, {"model": "wells.bcgs_numbers", "pk": 5130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061322"}}, {"model": "wells.bcgs_numbers", "pk": 5131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061323"}}, {"model": "wells.bcgs_numbers", "pk": 5132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061324"}}, {"model": "wells.bcgs_numbers", "pk": 5133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061334"}}, {"model": "wells.bcgs_numbers", "pk": 5134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061341"}}, {"model": "wells.bcgs_numbers", "pk": 5135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061342"}}, {"model": "wells.bcgs_numbers", "pk": 5136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061343"}}, {"model": "wells.bcgs_numbers", "pk": 5137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061344"}}, {"model": "wells.bcgs_numbers", "pk": 5138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061411"}}, {"model": "wells.bcgs_numbers", "pk": 5139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061413"}}, {"model": "wells.bcgs_numbers", "pk": 5140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I061431"}}, {"model": "wells.bcgs_numbers", "pk": 5141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064122"}}, {"model": "wells.bcgs_numbers", "pk": 5142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064124"}}, {"model": "wells.bcgs_numbers", "pk": 5143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064134"}}, {"model": "wells.bcgs_numbers", "pk": 5144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064141"}}, {"model": "wells.bcgs_numbers", "pk": 5145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064142"}}, {"model": "wells.bcgs_numbers", "pk": 5146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064312"}}, {"model": "wells.bcgs_numbers", "pk": 5147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064314"}}, {"model": "wells.bcgs_numbers", "pk": 5148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064321"}}, {"model": "wells.bcgs_numbers", "pk": 5149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064323"}}, {"model": "wells.bcgs_numbers", "pk": 5150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I064434"}}, {"model": "wells.bcgs_numbers", "pk": 5151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I066212"}}, {"model": "wells.bcgs_numbers", "pk": 5152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I067442"}}, {"model": "wells.bcgs_numbers", "pk": 5153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I067443"}}, {"model": "wells.bcgs_numbers", "pk": 5154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I067444"}}, {"model": "wells.bcgs_numbers", "pk": 5155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068134"}}, {"model": "wells.bcgs_numbers", "pk": 5156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068144"}}, {"model": "wells.bcgs_numbers", "pk": 5157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068223"}}, {"model": "wells.bcgs_numbers", "pk": 5158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068224"}}, {"model": "wells.bcgs_numbers", "pk": 5159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068231"}}, {"model": "wells.bcgs_numbers", "pk": 5160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068234"}}, {"model": "wells.bcgs_numbers", "pk": 5161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068244"}}, {"model": "wells.bcgs_numbers", "pk": 5162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068311"}}, {"model": "wells.bcgs_numbers", "pk": 5163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068312"}}, {"model": "wells.bcgs_numbers", "pk": 5164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068314"}}, {"model": "wells.bcgs_numbers", "pk": 5165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068323"}}, {"model": "wells.bcgs_numbers", "pk": 5166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068331"}}, {"model": "wells.bcgs_numbers", "pk": 5167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068332"}}, {"model": "wells.bcgs_numbers", "pk": 5168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068333"}}, {"model": "wells.bcgs_numbers", "pk": 5169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068334"}}, {"model": "wells.bcgs_numbers", "pk": 5170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068411"}}, {"model": "wells.bcgs_numbers", "pk": 5171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068422"}}, {"model": "wells.bcgs_numbers", "pk": 5172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068424"}}, {"model": "wells.bcgs_numbers", "pk": 5173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068443"}}, {"model": "wells.bcgs_numbers", "pk": 5174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I068444"}}, {"model": "wells.bcgs_numbers", "pk": 5175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I069121"}}, {"model": "wells.bcgs_numbers", "pk": 5176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069122"}}, {"model": "wells.bcgs_numbers", "pk": 5177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069123"}}, {"model": "wells.bcgs_numbers", "pk": 5178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069124"}}, {"model": "wells.bcgs_numbers", "pk": 5179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069132"}}, {"model": "wells.bcgs_numbers", "pk": 5180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069141"}}, {"model": "wells.bcgs_numbers", "pk": 5181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069143"}}, {"model": "wells.bcgs_numbers", "pk": 5182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069211"}}, {"model": "wells.bcgs_numbers", "pk": 5183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069212"}}, {"model": "wells.bcgs_numbers", "pk": 5184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069213"}}, {"model": "wells.bcgs_numbers", "pk": 5185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069231"}}, {"model": "wells.bcgs_numbers", "pk": 5186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069241"}}, {"model": "wells.bcgs_numbers", "pk": 5187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069331"}}, {"model": "wells.bcgs_numbers", "pk": 5188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069333"}}, {"model": "wells.bcgs_numbers", "pk": 5189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069334"}}, {"model": "wells.bcgs_numbers", "pk": 5190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069341"}}, {"model": "wells.bcgs_numbers", "pk": 5191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069342"}}, {"model": "wells.bcgs_numbers", "pk": 5192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069343"}}, {"model": "wells.bcgs_numbers", "pk": 5193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069344"}}, {"model": "wells.bcgs_numbers", "pk": 5194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069413"}}, {"model": "wells.bcgs_numbers", "pk": 5195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069414"}}, {"model": "wells.bcgs_numbers", "pk": 5196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069421"}}, {"model": "wells.bcgs_numbers", "pk": 5197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069423"}}, {"model": "wells.bcgs_numbers", "pk": 5198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I069442"}}, {"model": "wells.bcgs_numbers", "pk": 5199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070111"}}, {"model": "wells.bcgs_numbers", "pk": 5200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070113"}}, {"model": "wells.bcgs_numbers", "pk": 5201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070114"}}, {"model": "wells.bcgs_numbers", "pk": 5202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070123"}}, {"model": "wells.bcgs_numbers", "pk": 5203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070131"}}, {"model": "wells.bcgs_numbers", "pk": 5204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070132"}}, {"model": "wells.bcgs_numbers", "pk": 5205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070133"}}, {"model": "wells.bcgs_numbers", "pk": 5206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070134"}}, {"model": "wells.bcgs_numbers", "pk": 5207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070141"}}, {"model": "wells.bcgs_numbers", "pk": 5208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070142"}}, {"model": "wells.bcgs_numbers", "pk": 5209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070143"}}, {"model": "wells.bcgs_numbers", "pk": 5210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070144"}}, {"model": "wells.bcgs_numbers", "pk": 5211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070213"}}, {"model": "wells.bcgs_numbers", "pk": 5212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070214"}}, {"model": "wells.bcgs_numbers", "pk": 5213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070231"}}, {"model": "wells.bcgs_numbers", "pk": 5214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070232"}}, {"model": "wells.bcgs_numbers", "pk": 5215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070233"}}, {"model": "wells.bcgs_numbers", "pk": 5216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070241"}}, {"model": "wells.bcgs_numbers", "pk": 5217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070244"}}, {"model": "wells.bcgs_numbers", "pk": 5218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070311"}}, {"model": "wells.bcgs_numbers", "pk": 5219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070312"}}, {"model": "wells.bcgs_numbers", "pk": 5220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070314"}}, {"model": "wells.bcgs_numbers", "pk": 5221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070321"}}, {"model": "wells.bcgs_numbers", "pk": 5222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070323"}}, {"model": "wells.bcgs_numbers", "pk": 5223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070411"}}, {"model": "wells.bcgs_numbers", "pk": 5224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070412"}}, {"model": "wells.bcgs_numbers", "pk": 5225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I070413"}}, {"model": "wells.bcgs_numbers", "pk": 5226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I070421"}}, {"model": "wells.bcgs_numbers", "pk": 5227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I070422"}}, {"model": "wells.bcgs_numbers", "pk": 5228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I070423"}}, {"model": "wells.bcgs_numbers", "pk": 5229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I071122"}}, {"model": "wells.bcgs_numbers", "pk": 5230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I071124"}}, {"model": "wells.bcgs_numbers", "pk": 5231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I071222"}}, {"model": "wells.bcgs_numbers", "pk": 5232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I071232"}}, {"model": "wells.bcgs_numbers", "pk": 5233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I071323"}}, {"model": "wells.bcgs_numbers", "pk": 5234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I071411"}}, {"model": "wells.bcgs_numbers", "pk": 5235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I073313"}}, {"model": "wells.bcgs_numbers", "pk": 5236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074121"}}, {"model": "wells.bcgs_numbers", "pk": 5237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074123"}}, {"model": "wells.bcgs_numbers", "pk": 5238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074124"}}, {"model": "wells.bcgs_numbers", "pk": 5239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074214"}}, {"model": "wells.bcgs_numbers", "pk": 5240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074234"}}, {"model": "wells.bcgs_numbers", "pk": 5241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074324"}}, {"model": "wells.bcgs_numbers", "pk": 5242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074342"}}, {"model": "wells.bcgs_numbers", "pk": 5243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074412"}}, {"model": "wells.bcgs_numbers", "pk": 5244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074413"}}, {"model": "wells.bcgs_numbers", "pk": 5245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074433"}}, {"model": "wells.bcgs_numbers", "pk": 5246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074434"}}, {"model": "wells.bcgs_numbers", "pk": 5247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074442"}}, {"model": "wells.bcgs_numbers", "pk": 5248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I074443"}}, {"model": "wells.bcgs_numbers", "pk": 5249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I075113"}}, {"model": "wells.bcgs_numbers", "pk": 5250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I075342"}}, {"model": "wells.bcgs_numbers", "pk": 5251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076311"}}, {"model": "wells.bcgs_numbers", "pk": 5252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076312"}}, {"model": "wells.bcgs_numbers", "pk": 5253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076314"}}, {"model": "wells.bcgs_numbers", "pk": 5254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076322"}}, {"model": "wells.bcgs_numbers", "pk": 5255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076323"}}, {"model": "wells.bcgs_numbers", "pk": 5256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076343"}}, {"model": "wells.bcgs_numbers", "pk": 5257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I076422"}}, {"model": "wells.bcgs_numbers", "pk": 5258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I077214"}}, {"model": "wells.bcgs_numbers", "pk": 5259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I077221"}}, {"model": "wells.bcgs_numbers", "pk": 5260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I077222"}}, {"model": "wells.bcgs_numbers", "pk": 5261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I077223"}}, {"model": "wells.bcgs_numbers", "pk": 5262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I077224"}}, {"model": "wells.bcgs_numbers", "pk": 5263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I078111"}}, {"model": "wells.bcgs_numbers", "pk": 5264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I078212"}}, {"model": "wells.bcgs_numbers", "pk": 5265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I078213"}}, {"model": "wells.bcgs_numbers", "pk": 5266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I078214"}}, {"model": "wells.bcgs_numbers", "pk": 5267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I078221"}}, {"model": "wells.bcgs_numbers", "pk": 5268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I078222"}}, {"model": "wells.bcgs_numbers", "pk": 5269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079114"}}, {"model": "wells.bcgs_numbers", "pk": 5270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079121"}}, {"model": "wells.bcgs_numbers", "pk": 5271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079122"}}, {"model": "wells.bcgs_numbers", "pk": 5272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079123"}}, {"model": "wells.bcgs_numbers", "pk": 5273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079134"}}, {"model": "wells.bcgs_numbers", "pk": 5274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079143"}}, {"model": "wells.bcgs_numbers", "pk": 5275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079343"}}, {"model": "wells.bcgs_numbers", "pk": 5276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079344"}}, {"model": "wells.bcgs_numbers", "pk": 5277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I079442"}}, {"model": "wells.bcgs_numbers", "pk": 5278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080133"}}, {"model": "wells.bcgs_numbers", "pk": 5279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080134"}}, {"model": "wells.bcgs_numbers", "pk": 5280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080144"}}, {"model": "wells.bcgs_numbers", "pk": 5281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080223"}}, {"model": "wells.bcgs_numbers", "pk": 5282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080224"}}, {"model": "wells.bcgs_numbers", "pk": 5283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080233"}}, {"model": "wells.bcgs_numbers", "pk": 5284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080241"}}, {"model": "wells.bcgs_numbers", "pk": 5285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080242"}}, {"model": "wells.bcgs_numbers", "pk": 5286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080311"}}, {"model": "wells.bcgs_numbers", "pk": 5287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080333"}}, {"model": "wells.bcgs_numbers", "pk": 5288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080334"}}, {"model": "wells.bcgs_numbers", "pk": 5289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I081423"}}, {"model": "wells.bcgs_numbers", "pk": 5290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I081442"}}, {"model": "wells.bcgs_numbers", "pk": 5291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I082214"}}, {"model": "wells.bcgs_numbers", "pk": 5292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I082223"}}, {"model": "wells.bcgs_numbers", "pk": 5293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I082232"}}, {"model": "wells.bcgs_numbers", "pk": 5294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I082322"}}, {"model": "wells.bcgs_numbers", "pk": 5295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I082323"}}, {"model": "wells.bcgs_numbers", "pk": 5296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I082332"}}, {"model": "wells.bcgs_numbers", "pk": 5297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I083143"}}, {"model": "wells.bcgs_numbers", "pk": 5298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I083424"}}, {"model": "wells.bcgs_numbers", "pk": 5299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I083432"}}, {"model": "wells.bcgs_numbers", "pk": 5300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I083442"}}, {"model": "wells.bcgs_numbers", "pk": 5301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I083444"}}, {"model": "wells.bcgs_numbers", "pk": 5302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I084121"}}, {"model": "wells.bcgs_numbers", "pk": 5303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I084122"}}, {"model": "wells.bcgs_numbers", "pk": 5304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I084123"}}, {"model": "wells.bcgs_numbers", "pk": 5305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I084124"}}, {"model": "wells.bcgs_numbers", "pk": 5306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084132"}}, {"model": "wells.bcgs_numbers", "pk": 5307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084133"}}, {"model": "wells.bcgs_numbers", "pk": 5308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084141"}}, {"model": "wells.bcgs_numbers", "pk": 5309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084211"}}, {"model": "wells.bcgs_numbers", "pk": 5310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084212"}}, {"model": "wells.bcgs_numbers", "pk": 5311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084213"}}, {"model": "wells.bcgs_numbers", "pk": 5312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084311"}}, {"model": "wells.bcgs_numbers", "pk": 5313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084313"}}, {"model": "wells.bcgs_numbers", "pk": 5314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I084331"}}, {"model": "wells.bcgs_numbers", "pk": 5315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086121"}}, {"model": "wells.bcgs_numbers", "pk": 5316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086123"}}, {"model": "wells.bcgs_numbers", "pk": 5317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086141"}}, {"model": "wells.bcgs_numbers", "pk": 5318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086143"}}, {"model": "wells.bcgs_numbers", "pk": 5319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086312"}}, {"model": "wells.bcgs_numbers", "pk": 5320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086314"}}, {"model": "wells.bcgs_numbers", "pk": 5321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086332"}}, {"model": "wells.bcgs_numbers", "pk": 5322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I086422"}}, {"model": "wells.bcgs_numbers", "pk": 5323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I087133"}}, {"model": "wells.bcgs_numbers", "pk": 5324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I087311"}}, {"model": "wells.bcgs_numbers", "pk": 5325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I087333"}}, {"model": "wells.bcgs_numbers", "pk": 5326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I087412"}}, {"model": "wells.bcgs_numbers", "pk": 5327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I087413"}}, {"model": "wells.bcgs_numbers", "pk": 5328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I088241"}}, {"model": "wells.bcgs_numbers", "pk": 5329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089121"}}, {"model": "wells.bcgs_numbers", "pk": 5330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089122"}}, {"model": "wells.bcgs_numbers", "pk": 5331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089123"}}, {"model": "wells.bcgs_numbers", "pk": 5332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089124"}}, {"model": "wells.bcgs_numbers", "pk": 5333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089142"}}, {"model": "wells.bcgs_numbers", "pk": 5334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089211"}}, {"model": "wells.bcgs_numbers", "pk": 5335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089213"}}, {"model": "wells.bcgs_numbers", "pk": 5336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089231"}}, {"model": "wells.bcgs_numbers", "pk": 5337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089232"}}, {"model": "wells.bcgs_numbers", "pk": 5338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089233"}}, {"model": "wells.bcgs_numbers", "pk": 5339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089234"}}, {"model": "wells.bcgs_numbers", "pk": 5340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089411"}}, {"model": "wells.bcgs_numbers", "pk": 5341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089412"}}, {"model": "wells.bcgs_numbers", "pk": 5342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089414"}}, {"model": "wells.bcgs_numbers", "pk": 5343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089422"}}, {"model": "wells.bcgs_numbers", "pk": 5344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089423"}}, {"model": "wells.bcgs_numbers", "pk": 5345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089424"}}, {"model": "wells.bcgs_numbers", "pk": 5346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089431"}}, {"model": "wells.bcgs_numbers", "pk": 5347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I089434"}}, {"model": "wells.bcgs_numbers", "pk": 5348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090144"}}, {"model": "wells.bcgs_numbers", "pk": 5349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090234"}}, {"model": "wells.bcgs_numbers", "pk": 5350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090243"}}, {"model": "wells.bcgs_numbers", "pk": 5351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090311"}}, {"model": "wells.bcgs_numbers", "pk": 5352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090312"}}, {"model": "wells.bcgs_numbers", "pk": 5353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090313"}}, {"model": "wells.bcgs_numbers", "pk": 5354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I090321"}}, {"model": "wells.bcgs_numbers", "pk": 5355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I090322"}}, {"model": "wells.bcgs_numbers", "pk": 5356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I090343"}}, {"model": "wells.bcgs_numbers", "pk": 5357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I092333"}}, {"model": "wells.bcgs_numbers", "pk": 5358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I093222"}}, {"model": "wells.bcgs_numbers", "pk": 5359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I093224"}}, {"model": "wells.bcgs_numbers", "pk": 5360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I093414"}}, {"model": "wells.bcgs_numbers", "pk": 5361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I093421"}}, {"model": "wells.bcgs_numbers", "pk": 5362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I093432"}}, {"model": "wells.bcgs_numbers", "pk": 5363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I093434"}}, {"model": "wells.bcgs_numbers", "pk": 5364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I094111"}}, {"model": "wells.bcgs_numbers", "pk": 5365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096111"}}, {"model": "wells.bcgs_numbers", "pk": 5366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096113"}}, {"model": "wells.bcgs_numbers", "pk": 5367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096214"}}, {"model": "wells.bcgs_numbers", "pk": 5368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096242"}}, {"model": "wells.bcgs_numbers", "pk": 5369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096244"}}, {"model": "wells.bcgs_numbers", "pk": 5370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096311"}}, {"model": "wells.bcgs_numbers", "pk": 5371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096314"}}, {"model": "wells.bcgs_numbers", "pk": 5372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I096341"}}, {"model": "wells.bcgs_numbers", "pk": 5373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I097112"}}, {"model": "wells.bcgs_numbers", "pk": 5374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I097131"}}, {"model": "wells.bcgs_numbers", "pk": 5375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099221"}}, {"model": "wells.bcgs_numbers", "pk": 5376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099223"}}, {"model": "wells.bcgs_numbers", "pk": 5377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099232"}}, {"model": "wells.bcgs_numbers", "pk": 5378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099241"}}, {"model": "wells.bcgs_numbers", "pk": 5379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099243"}}, {"model": "wells.bcgs_numbers", "pk": 5380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099421"}}, {"model": "wells.bcgs_numbers", "pk": 5381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099423"}}, {"model": "wells.bcgs_numbers", "pk": 5382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I099441"}}, {"model": "wells.bcgs_numbers", "pk": 5383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100111"}}, {"model": "wells.bcgs_numbers", "pk": 5384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100134"}}, {"model": "wells.bcgs_numbers", "pk": 5385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100224"}}, {"model": "wells.bcgs_numbers", "pk": 5386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100244"}}, {"model": "wells.bcgs_numbers", "pk": 5387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100321"}}, {"model": "wells.bcgs_numbers", "pk": 5388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100322"}}, {"model": "wells.bcgs_numbers", "pk": 5389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100324"}}, {"model": "wells.bcgs_numbers", "pk": 5390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100342"}}, {"model": "wells.bcgs_numbers", "pk": 5391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J.048.3"}}, {"model": "wells.bcgs_numbers", "pk": 5392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J.079.2"}}, {"model": "wells.bcgs_numbers", "pk": 5393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J.086.4"}}, {"model": "wells.bcgs_numbers", "pk": 5394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J005121"}}, {"model": "wells.bcgs_numbers", "pk": 5395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J005441"}}, {"model": "wells.bcgs_numbers", "pk": 5396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J005443"}}, {"model": "wells.bcgs_numbers", "pk": 5397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J005444"}}, {"model": "wells.bcgs_numbers", "pk": 5398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J006242"}}, {"model": "wells.bcgs_numbers", "pk": 5399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J006323"}}, {"model": "wells.bcgs_numbers", "pk": 5400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J006332"}}, {"model": "wells.bcgs_numbers", "pk": 5401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J006333"}}, {"model": "wells.bcgs_numbers", "pk": 5402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J006433"}}, {"model": "wells.bcgs_numbers", "pk": 5403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016111"}}, {"model": "wells.bcgs_numbers", "pk": 5404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016112"}}, {"model": "wells.bcgs_numbers", "pk": 5405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016113"}}, {"model": "wells.bcgs_numbers", "pk": 5406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016114"}}, {"model": "wells.bcgs_numbers", "pk": 5407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016132"}}, {"model": "wells.bcgs_numbers", "pk": 5408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016134"}}, {"model": "wells.bcgs_numbers", "pk": 5409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016312"}}, {"model": "wells.bcgs_numbers", "pk": 5410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016321"}}, {"model": "wells.bcgs_numbers", "pk": 5411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J016324"}}, {"model": "wells.bcgs_numbers", "pk": 5412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J026444"}}, {"model": "wells.bcgs_numbers", "pk": 5413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J027433"}}, {"model": "wells.bcgs_numbers", "pk": 5414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J036224"}}, {"model": "wells.bcgs_numbers", "pk": 5415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J037114"}}, {"model": "wells.bcgs_numbers", "pk": 5416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J037121"}}, {"model": "wells.bcgs_numbers", "pk": 5417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J037124"}}, {"model": "wells.bcgs_numbers", "pk": 5418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J037141"}}, {"model": "wells.bcgs_numbers", "pk": 5419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J037142"}}, {"model": "wells.bcgs_numbers", "pk": 5420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J037143"}}, {"model": "wells.bcgs_numbers", "pk": 5421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J047441"}}, {"model": "wells.bcgs_numbers", "pk": 5422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J047442"}}, {"model": "wells.bcgs_numbers", "pk": 5423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J048331"}}, {"model": "wells.bcgs_numbers", "pk": 5424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J048333"}}, {"model": "wells.bcgs_numbers", "pk": 5425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J048334"}}, {"model": "wells.bcgs_numbers", "pk": 5426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J053432"}}, {"model": "wells.bcgs_numbers", "pk": 5427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J057424"}}, {"model": "wells.bcgs_numbers", "pk": 5428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J058213"}}, {"model": "wells.bcgs_numbers", "pk": 5429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J058231"}}, {"model": "wells.bcgs_numbers", "pk": 5430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J058233"}}, {"model": "wells.bcgs_numbers", "pk": 5431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J058234"}}, {"model": "wells.bcgs_numbers", "pk": 5432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J058412"}}, {"model": "wells.bcgs_numbers", "pk": 5433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J079211"}}, {"model": "wells.bcgs_numbers", "pk": 5434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J079212"}}, {"model": "wells.bcgs_numbers", "pk": 5435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J079424"}}, {"model": "wells.bcgs_numbers", "pk": 5436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J086144"}}, {"model": "wells.bcgs_numbers", "pk": 5437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J086233"}}, {"model": "wells.bcgs_numbers", "pk": 5438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J086414"}}, {"model": "wells.bcgs_numbers", "pk": 5439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J090314"}}, {"model": "wells.bcgs_numbers", "pk": 5440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J097131"}}, {"model": "wells.bcgs_numbers", "pk": 5441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092J097133"}}, {"model": "wells.bcgs_numbers", "pk": 5442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004112"}}, {"model": "wells.bcgs_numbers", "pk": 5443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004114"}}, {"model": "wells.bcgs_numbers", "pk": 5444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004212"}}, {"model": "wells.bcgs_numbers", "pk": 5445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004213"}}, {"model": "wells.bcgs_numbers", "pk": 5446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004214"}}, {"model": "wells.bcgs_numbers", "pk": 5447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004221"}}, {"model": "wells.bcgs_numbers", "pk": 5448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004231"}}, {"model": "wells.bcgs_numbers", "pk": 5449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004232"}}, {"model": "wells.bcgs_numbers", "pk": 5450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004242"}}, {"model": "wells.bcgs_numbers", "pk": 5451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004244"}}, {"model": "wells.bcgs_numbers", "pk": 5452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004324"}}, {"model": "wells.bcgs_numbers", "pk": 5453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004341"}}, {"model": "wells.bcgs_numbers", "pk": 5454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004342"}}, {"model": "wells.bcgs_numbers", "pk": 5455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004421"}}, {"model": "wells.bcgs_numbers", "pk": 5456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004422"}}, {"model": "wells.bcgs_numbers", "pk": 5457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004423"}}, {"model": "wells.bcgs_numbers", "pk": 5458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004424"}}, {"model": "wells.bcgs_numbers", "pk": 5459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004441"}}, {"model": "wells.bcgs_numbers", "pk": 5460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004442"}}, {"model": "wells.bcgs_numbers", "pk": 5461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004443"}}, {"model": "wells.bcgs_numbers", "pk": 5462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K004444"}}, {"model": "wells.bcgs_numbers", "pk": 5463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005111"}}, {"model": "wells.bcgs_numbers", "pk": 5464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005112"}}, {"model": "wells.bcgs_numbers", "pk": 5465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005113"}}, {"model": "wells.bcgs_numbers", "pk": 5466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005114"}}, {"model": "wells.bcgs_numbers", "pk": 5467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005121"}}, {"model": "wells.bcgs_numbers", "pk": 5468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005123"}}, {"model": "wells.bcgs_numbers", "pk": 5469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005131"}}, {"model": "wells.bcgs_numbers", "pk": 5470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005133"}}, {"model": "wells.bcgs_numbers", "pk": 5471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005134"}}, {"model": "wells.bcgs_numbers", "pk": 5472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005313"}}, {"model": "wells.bcgs_numbers", "pk": 5473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005331"}}, {"model": "wells.bcgs_numbers", "pk": 5474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005333"}}, {"model": "wells.bcgs_numbers", "pk": 5475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005443"}}, {"model": "wells.bcgs_numbers", "pk": 5476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K005444"}}, {"model": "wells.bcgs_numbers", "pk": 5477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K006113"}}, {"model": "wells.bcgs_numbers", "pk": 5478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K006121"}}, {"model": "wells.bcgs_numbers", "pk": 5479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006131"}}, {"model": "wells.bcgs_numbers", "pk": 5480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006133"}}, {"model": "wells.bcgs_numbers", "pk": 5481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006134"}}, {"model": "wells.bcgs_numbers", "pk": 5482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006311"}}, {"model": "wells.bcgs_numbers", "pk": 5483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006312"}}, {"model": "wells.bcgs_numbers", "pk": 5484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006313"}}, {"model": "wells.bcgs_numbers", "pk": 5485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006314"}}, {"model": "wells.bcgs_numbers", "pk": 5486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006321"}}, {"model": "wells.bcgs_numbers", "pk": 5487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006323"}}, {"model": "wells.bcgs_numbers", "pk": 5488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006324"}}, {"model": "wells.bcgs_numbers", "pk": 5489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006331"}}, {"model": "wells.bcgs_numbers", "pk": 5490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006332"}}, {"model": "wells.bcgs_numbers", "pk": 5491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K006333"}}, {"model": "wells.bcgs_numbers", "pk": 5492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K013231"}}, {"model": "wells.bcgs_numbers", "pk": 5493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014113"}}, {"model": "wells.bcgs_numbers", "pk": 5494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014121"}}, {"model": "wells.bcgs_numbers", "pk": 5495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014123"}}, {"model": "wells.bcgs_numbers", "pk": 5496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014213"}}, {"model": "wells.bcgs_numbers", "pk": 5497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014222"}}, {"model": "wells.bcgs_numbers", "pk": 5498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014223"}}, {"model": "wells.bcgs_numbers", "pk": 5499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014341"}}, {"model": "wells.bcgs_numbers", "pk": 5500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K014342"}}, {"model": "wells.bcgs_numbers", "pk": 5501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K015212"}}, {"model": "wells.bcgs_numbers", "pk": 5502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K015214"}}, {"model": "wells.bcgs_numbers", "pk": 5503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K015221"}}, {"model": "wells.bcgs_numbers", "pk": 5504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K015222"}}, {"model": "wells.bcgs_numbers", "pk": 5505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K015223"}}, {"model": "wells.bcgs_numbers", "pk": 5506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K016111"}}, {"model": "wells.bcgs_numbers", "pk": 5507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K016123"}}, {"model": "wells.bcgs_numbers", "pk": 5508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K016124"}}, {"model": "wells.bcgs_numbers", "pk": 5509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K031142"}}, {"model": "wells.bcgs_numbers", "pk": 5510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K049311"}}, {"model": "wells.bcgs_numbers", "pk": 5511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L015414"}}, {"model": "wells.bcgs_numbers", "pk": 5512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L015421"}}, {"model": "wells.bcgs_numbers", "pk": 5513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L015422"}}, {"model": "wells.bcgs_numbers", "pk": 5514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L015432"}}, {"model": "wells.bcgs_numbers", "pk": 5515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L027223"}}, {"model": "wells.bcgs_numbers", "pk": 5516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L027224"}}, {"model": "wells.bcgs_numbers", "pk": 5517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L033434"}}, {"model": "wells.bcgs_numbers", "pk": 5518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L041422"}}, {"model": "wells.bcgs_numbers", "pk": 5519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L043231"}}, {"model": "wells.bcgs_numbers", "pk": 5520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L053333"}}, {"model": "wells.bcgs_numbers", "pk": 5521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L054342"}}, {"model": "wells.bcgs_numbers", "pk": 5522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055244"}}, {"model": "wells.bcgs_numbers", "pk": 5523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055342"}}, {"model": "wells.bcgs_numbers", "pk": 5524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055422"}}, {"model": "wells.bcgs_numbers", "pk": 5525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055424"}}, {"model": "wells.bcgs_numbers", "pk": 5526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055431"}}, {"model": "wells.bcgs_numbers", "pk": 5527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055432"}}, {"model": "wells.bcgs_numbers", "pk": 5528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055433"}}, {"model": "wells.bcgs_numbers", "pk": 5529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055442"}}, {"model": "wells.bcgs_numbers", "pk": 5530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L056342"}}, {"model": "wells.bcgs_numbers", "pk": 5531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L056343"}}, {"model": "wells.bcgs_numbers", "pk": 5532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L063111"}}, {"model": "wells.bcgs_numbers", "pk": 5533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L063433"}}, {"model": "wells.bcgs_numbers", "pk": 5534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L063434"}}, {"model": "wells.bcgs_numbers", "pk": 5535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L063444"}}, {"model": "wells.bcgs_numbers", "pk": 5536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L064211"}}, {"model": "wells.bcgs_numbers", "pk": 5537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L064314"}}, {"model": "wells.bcgs_numbers", "pk": 5538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L064333"}}, {"model": "wells.bcgs_numbers", "pk": 5539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L065224"}}, {"model": "wells.bcgs_numbers", "pk": 5540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L065242"}}, {"model": "wells.bcgs_numbers", "pk": 5541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L066123"}}, {"model": "wells.bcgs_numbers", "pk": 5542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L066131"}}, {"model": "wells.bcgs_numbers", "pk": 5543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L066223"}}, {"model": "wells.bcgs_numbers", "pk": 5544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L066241"}}, {"model": "wells.bcgs_numbers", "pk": 5545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L073211"}}, {"model": "wells.bcgs_numbers", "pk": 5546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L073213"}}, {"model": "wells.bcgs_numbers", "pk": 5547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L073214"}}, {"model": "wells.bcgs_numbers", "pk": 5548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L073221"}}, {"model": "wells.bcgs_numbers", "pk": 5549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L073231"}}, {"model": "wells.bcgs_numbers", "pk": 5550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N078241"}}, {"model": "wells.bcgs_numbers", "pk": 5551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N078443"}}, {"model": "wells.bcgs_numbers", "pk": 5552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N080132"}}, {"model": "wells.bcgs_numbers", "pk": 5553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N088232"}}, {"model": "wells.bcgs_numbers", "pk": 5554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N095442"}}, {"model": "wells.bcgs_numbers", "pk": 5555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N097221"}}, {"model": "wells.bcgs_numbers", "pk": 5556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092N097222"}}, {"model": "wells.bcgs_numbers", "pk": 5557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O020343"}}, {"model": "wells.bcgs_numbers", "pk": 5558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O038333"}}, {"model": "wells.bcgs_numbers", "pk": 5559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O040442"}}, {"model": "wells.bcgs_numbers", "pk": 5560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O041314"}}, {"model": "wells.bcgs_numbers", "pk": 5561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O059243"}}, {"model": "wells.bcgs_numbers", "pk": 5562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O059441"}}, {"model": "wells.bcgs_numbers", "pk": 5563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O060433"}}, {"model": "wells.bcgs_numbers", "pk": 5564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O065341"}}, {"model": "wells.bcgs_numbers", "pk": 5565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O065411"}}, {"model": "wells.bcgs_numbers", "pk": 5566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O069242"}}, {"model": "wells.bcgs_numbers", "pk": 5567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O070242"}}, {"model": "wells.bcgs_numbers", "pk": 5568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O076423"}}, {"model": "wells.bcgs_numbers", "pk": 5569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O078434"}}, {"model": "wells.bcgs_numbers", "pk": 5570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O079443"}}, {"model": "wells.bcgs_numbers", "pk": 5571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O090131"}}, {"model": "wells.bcgs_numbers", "pk": 5572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O090134"}}, {"model": "wells.bcgs_numbers", "pk": 5573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O095214"}}, {"model": "wells.bcgs_numbers", "pk": 5574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O095233"}}, {"model": "wells.bcgs_numbers", "pk": 5575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O095332"}}, {"model": "wells.bcgs_numbers", "pk": 5576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O097414"}}, {"model": "wells.bcgs_numbers", "pk": 5577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O097441"}}, {"model": "wells.bcgs_numbers", "pk": 5578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O098144"}}, {"model": "wells.bcgs_numbers", "pk": 5579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O098322"}}, {"model": "wells.bcgs_numbers", "pk": 5580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O098323"}}, {"model": "wells.bcgs_numbers", "pk": 5581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O098331"}}, {"model": "wells.bcgs_numbers", "pk": 5582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O099314"}}, {"model": "wells.bcgs_numbers", "pk": 5583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O099434"}}, {"model": "wells.bcgs_numbers", "pk": 5584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100123"}}, {"model": "wells.bcgs_numbers", "pk": 5585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100124"}}, {"model": "wells.bcgs_numbers", "pk": 5586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100141"}}, {"model": "wells.bcgs_numbers", "pk": 5587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100142"}}, {"model": "wells.bcgs_numbers", "pk": 5588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100144"}}, {"model": "wells.bcgs_numbers", "pk": 5589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100213"}}, {"model": "wells.bcgs_numbers", "pk": 5590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100321"}}, {"model": "wells.bcgs_numbers", "pk": 5591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100322"}}, {"model": "wells.bcgs_numbers", "pk": 5592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100333"}}, {"model": "wells.bcgs_numbers", "pk": 5593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100334"}}, {"model": "wells.bcgs_numbers", "pk": 5594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100341"}}, {"model": "wells.bcgs_numbers", "pk": 5595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O100442"}}, {"model": "wells.bcgs_numbers", "pk": 5596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P002111"}}, {"model": "wells.bcgs_numbers", "pk": 5597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P002112"}}, {"model": "wells.bcgs_numbers", "pk": 5598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P002124"}}, {"model": "wells.bcgs_numbers", "pk": 5599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P002231"}}, {"model": "wells.bcgs_numbers", "pk": 5600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P002233"}}, {"model": "wells.bcgs_numbers", "pk": 5601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P002442"}}, {"model": "wells.bcgs_numbers", "pk": 5602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P003312"}}, {"model": "wells.bcgs_numbers", "pk": 5603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P003313"}}, {"model": "wells.bcgs_numbers", "pk": 5604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P003333"}}, {"model": "wells.bcgs_numbers", "pk": 5605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P003334"}}, {"model": "wells.bcgs_numbers", "pk": 5606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P004312"}}, {"model": "wells.bcgs_numbers", "pk": 5607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P004323"}}, {"model": "wells.bcgs_numbers", "pk": 5608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P004324"}}, {"model": "wells.bcgs_numbers", "pk": 5609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P004342"}}, {"model": "wells.bcgs_numbers", "pk": 5610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P004434"}}, {"model": "wells.bcgs_numbers", "pk": 5611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P006411"}}, {"model": "wells.bcgs_numbers", "pk": 5612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009221"}}, {"model": "wells.bcgs_numbers", "pk": 5613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009222"}}, {"model": "wells.bcgs_numbers", "pk": 5614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009223"}}, {"model": "wells.bcgs_numbers", "pk": 5615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009224"}}, {"model": "wells.bcgs_numbers", "pk": 5616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009241"}}, {"model": "wells.bcgs_numbers", "pk": 5617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009242"}}, {"model": "wells.bcgs_numbers", "pk": 5618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009244"}}, {"model": "wells.bcgs_numbers", "pk": 5619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009421"}}, {"model": "wells.bcgs_numbers", "pk": 5620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009422"}}, {"model": "wells.bcgs_numbers", "pk": 5621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P009424"}}, {"model": "wells.bcgs_numbers", "pk": 5622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P010332"}}, {"model": "wells.bcgs_numbers", "pk": 5623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P010334"}}, {"model": "wells.bcgs_numbers", "pk": 5624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P010432"}}, {"model": "wells.bcgs_numbers", "pk": 5625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013112"}}, {"model": "wells.bcgs_numbers", "pk": 5626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013121"}}, {"model": "wells.bcgs_numbers", "pk": 5627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013123"}}, {"model": "wells.bcgs_numbers", "pk": 5628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013124"}}, {"model": "wells.bcgs_numbers", "pk": 5629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013322"}}, {"model": "wells.bcgs_numbers", "pk": 5630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013331"}}, {"model": "wells.bcgs_numbers", "pk": 5631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013343"}}, {"model": "wells.bcgs_numbers", "pk": 5632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P013433"}}, {"model": "wells.bcgs_numbers", "pk": 5633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P014212"}}, {"model": "wells.bcgs_numbers", "pk": 5634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P014242"}}, {"model": "wells.bcgs_numbers", "pk": 5635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P015131"}}, {"model": "wells.bcgs_numbers", "pk": 5636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020123"}}, {"model": "wells.bcgs_numbers", "pk": 5637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020141"}}, {"model": "wells.bcgs_numbers", "pk": 5638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020142"}}, {"model": "wells.bcgs_numbers", "pk": 5639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020144"}}, {"model": "wells.bcgs_numbers", "pk": 5640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020214"}}, {"model": "wells.bcgs_numbers", "pk": 5641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020231"}}, {"model": "wells.bcgs_numbers", "pk": 5642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020232"}}, {"model": "wells.bcgs_numbers", "pk": 5643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020233"}}, {"model": "wells.bcgs_numbers", "pk": 5644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020321"}}, {"model": "wells.bcgs_numbers", "pk": 5645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020323"}}, {"model": "wells.bcgs_numbers", "pk": 5646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020341"}}, {"model": "wells.bcgs_numbers", "pk": 5647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020342"}}, {"model": "wells.bcgs_numbers", "pk": 5648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020343"}}, {"model": "wells.bcgs_numbers", "pk": 5649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020344"}}, {"model": "wells.bcgs_numbers", "pk": 5650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020411"}}, {"model": "wells.bcgs_numbers", "pk": 5651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020431"}}, {"model": "wells.bcgs_numbers", "pk": 5652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P020433"}}, {"model": "wells.bcgs_numbers", "pk": 5653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P021312"}}, {"model": "wells.bcgs_numbers", "pk": 5654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P022243"}}, {"model": "wells.bcgs_numbers", "pk": 5655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P022412"}}, {"model": "wells.bcgs_numbers", "pk": 5656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P022424"}}, {"model": "wells.bcgs_numbers", "pk": 5657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P022442"}}, {"model": "wells.bcgs_numbers", "pk": 5658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023121"}}, {"model": "wells.bcgs_numbers", "pk": 5659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023122"}}, {"model": "wells.bcgs_numbers", "pk": 5660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023124"}}, {"model": "wells.bcgs_numbers", "pk": 5661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023132"}}, {"model": "wells.bcgs_numbers", "pk": 5662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023211"}}, {"model": "wells.bcgs_numbers", "pk": 5663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023213"}}, {"model": "wells.bcgs_numbers", "pk": 5664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023231"}}, {"model": "wells.bcgs_numbers", "pk": 5665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P023233"}}, {"model": "wells.bcgs_numbers", "pk": 5666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P023441"}}, {"model": "wells.bcgs_numbers", "pk": 5667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P024333"}}, {"model": "wells.bcgs_numbers", "pk": 5668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P024443"}}, {"model": "wells.bcgs_numbers", "pk": 5669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P025442"}}, {"model": "wells.bcgs_numbers", "pk": 5670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P026323"}}, {"model": "wells.bcgs_numbers", "pk": 5671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P029424"}}, {"model": "wells.bcgs_numbers", "pk": 5672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030121"}}, {"model": "wells.bcgs_numbers", "pk": 5673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030122"}}, {"model": "wells.bcgs_numbers", "pk": 5674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030123"}}, {"model": "wells.bcgs_numbers", "pk": 5675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030124"}}, {"model": "wells.bcgs_numbers", "pk": 5676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030134"}}, {"model": "wells.bcgs_numbers", "pk": 5677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030141"}}, {"model": "wells.bcgs_numbers", "pk": 5678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030143"}}, {"model": "wells.bcgs_numbers", "pk": 5679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030211"}}, {"model": "wells.bcgs_numbers", "pk": 5680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030212"}}, {"model": "wells.bcgs_numbers", "pk": 5681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030214"}}, {"model": "wells.bcgs_numbers", "pk": 5682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030223"}}, {"model": "wells.bcgs_numbers", "pk": 5683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030314"}}, {"model": "wells.bcgs_numbers", "pk": 5684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030323"}}, {"model": "wells.bcgs_numbers", "pk": 5685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P030334"}}, {"model": "wells.bcgs_numbers", "pk": 5686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P032324"}}, {"model": "wells.bcgs_numbers", "pk": 5687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P033244"}}, {"model": "wells.bcgs_numbers", "pk": 5688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034111"}}, {"model": "wells.bcgs_numbers", "pk": 5689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034112"}}, {"model": "wells.bcgs_numbers", "pk": 5690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034113"}}, {"model": "wells.bcgs_numbers", "pk": 5691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034334"}}, {"model": "wells.bcgs_numbers", "pk": 5692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034344"}}, {"model": "wells.bcgs_numbers", "pk": 5693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034414"}}, {"model": "wells.bcgs_numbers", "pk": 5694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034422"}}, {"model": "wells.bcgs_numbers", "pk": 5695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034432"}}, {"model": "wells.bcgs_numbers", "pk": 5696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034433"}}, {"model": "wells.bcgs_numbers", "pk": 5697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034434"}}, {"model": "wells.bcgs_numbers", "pk": 5698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034441"}}, {"model": "wells.bcgs_numbers", "pk": 5699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034443"}}, {"model": "wells.bcgs_numbers", "pk": 5700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P034444"}}, {"model": "wells.bcgs_numbers", "pk": 5701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P035244"}}, {"model": "wells.bcgs_numbers", "pk": 5702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P035311"}}, {"model": "wells.bcgs_numbers", "pk": 5703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P035423"}}, {"model": "wells.bcgs_numbers", "pk": 5704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P035441"}}, {"model": "wells.bcgs_numbers", "pk": 5705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P035442"}}, {"model": "wells.bcgs_numbers", "pk": 5706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P036344"}}, {"model": "wells.bcgs_numbers", "pk": 5707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P037133"}}, {"model": "wells.bcgs_numbers", "pk": 5708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P037231"}}, {"model": "wells.bcgs_numbers", "pk": 5709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P037314"}}, {"model": "wells.bcgs_numbers", "pk": 5710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P037334"}}, {"model": "wells.bcgs_numbers", "pk": 5711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P037341"}}, {"model": "wells.bcgs_numbers", "pk": 5712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P037342"}}, {"model": "wells.bcgs_numbers", "pk": 5713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040111"}}, {"model": "wells.bcgs_numbers", "pk": 5714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040123"}}, {"model": "wells.bcgs_numbers", "pk": 5715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040131"}}, {"model": "wells.bcgs_numbers", "pk": 5716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040132"}}, {"model": "wells.bcgs_numbers", "pk": 5717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040133"}}, {"model": "wells.bcgs_numbers", "pk": 5718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040134"}}, {"model": "wells.bcgs_numbers", "pk": 5719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040311"}}, {"model": "wells.bcgs_numbers", "pk": 5720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040313"}}, {"model": "wells.bcgs_numbers", "pk": 5721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040341"}}, {"model": "wells.bcgs_numbers", "pk": 5722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P040411"}}, {"model": "wells.bcgs_numbers", "pk": 5723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P041441"}}, {"model": "wells.bcgs_numbers", "pk": 5724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P043442"}}, {"model": "wells.bcgs_numbers", "pk": 5725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P043444"}}, {"model": "wells.bcgs_numbers", "pk": 5726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044111"}}, {"model": "wells.bcgs_numbers", "pk": 5727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044122"}}, {"model": "wells.bcgs_numbers", "pk": 5728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044131"}}, {"model": "wells.bcgs_numbers", "pk": 5729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044144"}}, {"model": "wells.bcgs_numbers", "pk": 5730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044212"}}, {"model": "wells.bcgs_numbers", "pk": 5731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044221"}}, {"model": "wells.bcgs_numbers", "pk": 5732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044222"}}, {"model": "wells.bcgs_numbers", "pk": 5733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044223"}}, {"model": "wells.bcgs_numbers", "pk": 5734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044224"}}, {"model": "wells.bcgs_numbers", "pk": 5735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044312"}}, {"model": "wells.bcgs_numbers", "pk": 5736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044321"}}, {"model": "wells.bcgs_numbers", "pk": 5737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044334"}}, {"model": "wells.bcgs_numbers", "pk": 5738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044414"}}, {"model": "wells.bcgs_numbers", "pk": 5739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044422"}}, {"model": "wells.bcgs_numbers", "pk": 5740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044443"}}, {"model": "wells.bcgs_numbers", "pk": 5741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P044444"}}, {"model": "wells.bcgs_numbers", "pk": 5742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045111"}}, {"model": "wells.bcgs_numbers", "pk": 5743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045113"}}, {"model": "wells.bcgs_numbers", "pk": 5744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045114"}}, {"model": "wells.bcgs_numbers", "pk": 5745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045134"}}, {"model": "wells.bcgs_numbers", "pk": 5746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045143"}}, {"model": "wells.bcgs_numbers", "pk": 5747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045144"}}, {"model": "wells.bcgs_numbers", "pk": 5748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045233"}}, {"model": "wells.bcgs_numbers", "pk": 5749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045321"}}, {"model": "wells.bcgs_numbers", "pk": 5750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045322"}}, {"model": "wells.bcgs_numbers", "pk": 5751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045324"}}, {"model": "wells.bcgs_numbers", "pk": 5752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045344"}}, {"model": "wells.bcgs_numbers", "pk": 5753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045413"}}, {"model": "wells.bcgs_numbers", "pk": 5754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P045414"}}, {"model": "wells.bcgs_numbers", "pk": 5755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P046122"}}, {"model": "wells.bcgs_numbers", "pk": 5756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P046134"}}, {"model": "wells.bcgs_numbers", "pk": 5757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P046443"}}, {"model": "wells.bcgs_numbers", "pk": 5758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047242"}}, {"model": "wells.bcgs_numbers", "pk": 5759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047311"}}, {"model": "wells.bcgs_numbers", "pk": 5760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047313"}}, {"model": "wells.bcgs_numbers", "pk": 5761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047322"}}, {"model": "wells.bcgs_numbers", "pk": 5762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047323"}}, {"model": "wells.bcgs_numbers", "pk": 5763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047324"}}, {"model": "wells.bcgs_numbers", "pk": 5764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047331"}}, {"model": "wells.bcgs_numbers", "pk": 5765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047333"}}, {"model": "wells.bcgs_numbers", "pk": 5766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047341"}}, {"model": "wells.bcgs_numbers", "pk": 5767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047342"}}, {"model": "wells.bcgs_numbers", "pk": 5768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047343"}}, {"model": "wells.bcgs_numbers", "pk": 5769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P047413"}}, {"model": "wells.bcgs_numbers", "pk": 5770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047414"}}, {"model": "wells.bcgs_numbers", "pk": 5771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047421"}}, {"model": "wells.bcgs_numbers", "pk": 5772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047423"}}, {"model": "wells.bcgs_numbers", "pk": 5773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047424"}}, {"model": "wells.bcgs_numbers", "pk": 5774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047431"}}, {"model": "wells.bcgs_numbers", "pk": 5775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047432"}}, {"model": "wells.bcgs_numbers", "pk": 5776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047433"}}, {"model": "wells.bcgs_numbers", "pk": 5777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047434"}}, {"model": "wells.bcgs_numbers", "pk": 5778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P047441"}}, {"model": "wells.bcgs_numbers", "pk": 5779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P048324"}}, {"model": "wells.bcgs_numbers", "pk": 5780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P048333"}}, {"model": "wells.bcgs_numbers", "pk": 5781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P049222"}}, {"model": "wells.bcgs_numbers", "pk": 5782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P049224"}}, {"model": "wells.bcgs_numbers", "pk": 5783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P049242"}}, {"model": "wells.bcgs_numbers", "pk": 5784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P049244"}}, {"model": "wells.bcgs_numbers", "pk": 5785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P049441"}}, {"model": "wells.bcgs_numbers", "pk": 5786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P050321"}}, {"model": "wells.bcgs_numbers", "pk": 5787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P050333"}}, {"model": "wells.bcgs_numbers", "pk": 5788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054132"}}, {"model": "wells.bcgs_numbers", "pk": 5789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054133"}}, {"model": "wells.bcgs_numbers", "pk": 5790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054134"}}, {"model": "wells.bcgs_numbers", "pk": 5791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054232"}}, {"model": "wells.bcgs_numbers", "pk": 5792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054234"}}, {"model": "wells.bcgs_numbers", "pk": 5793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054243"}}, {"model": "wells.bcgs_numbers", "pk": 5794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054311"}}, {"model": "wells.bcgs_numbers", "pk": 5795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054312"}}, {"model": "wells.bcgs_numbers", "pk": 5796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054314"}}, {"model": "wells.bcgs_numbers", "pk": 5797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054323"}}, {"model": "wells.bcgs_numbers", "pk": 5798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054324"}}, {"model": "wells.bcgs_numbers", "pk": 5799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054332"}}, {"model": "wells.bcgs_numbers", "pk": 5800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054341"}}, {"model": "wells.bcgs_numbers", "pk": 5801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054342"}}, {"model": "wells.bcgs_numbers", "pk": 5802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054343"}}, {"model": "wells.bcgs_numbers", "pk": 5803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054344"}}, {"model": "wells.bcgs_numbers", "pk": 5804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054411"}}, {"model": "wells.bcgs_numbers", "pk": 5805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054413"}}, {"model": "wells.bcgs_numbers", "pk": 5806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054421"}}, {"model": "wells.bcgs_numbers", "pk": 5807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054422"}}, {"model": "wells.bcgs_numbers", "pk": 5808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054423"}}, {"model": "wells.bcgs_numbers", "pk": 5809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054424"}}, {"model": "wells.bcgs_numbers", "pk": 5810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054433"}}, {"model": "wells.bcgs_numbers", "pk": 5811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P054444"}}, {"model": "wells.bcgs_numbers", "pk": 5812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055121"}}, {"model": "wells.bcgs_numbers", "pk": 5813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055123"}}, {"model": "wells.bcgs_numbers", "pk": 5814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055133"}}, {"model": "wells.bcgs_numbers", "pk": 5815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055134"}}, {"model": "wells.bcgs_numbers", "pk": 5816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055142"}}, {"model": "wells.bcgs_numbers", "pk": 5817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055143"}}, {"model": "wells.bcgs_numbers", "pk": 5819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055212"}}, {"model": "wells.bcgs_numbers", "pk": 5820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055222"}}, {"model": "wells.bcgs_numbers", "pk": 5821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055233"}}, {"model": "wells.bcgs_numbers", "pk": 5822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P055241"}}, {"model": "wells.bcgs_numbers", "pk": 5823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055242"}}, {"model": "wells.bcgs_numbers", "pk": 5824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055244"}}, {"model": "wells.bcgs_numbers", "pk": 5825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055311"}}, {"model": "wells.bcgs_numbers", "pk": 5826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055312"}}, {"model": "wells.bcgs_numbers", "pk": 5827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055313"}}, {"model": "wells.bcgs_numbers", "pk": 5828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055314"}}, {"model": "wells.bcgs_numbers", "pk": 5829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055321"}}, {"model": "wells.bcgs_numbers", "pk": 5830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055322"}}, {"model": "wells.bcgs_numbers", "pk": 5831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055323"}}, {"model": "wells.bcgs_numbers", "pk": 5832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055324"}}, {"model": "wells.bcgs_numbers", "pk": 5833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055331"}}, {"model": "wells.bcgs_numbers", "pk": 5834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055332"}}, {"model": "wells.bcgs_numbers", "pk": 5835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055333"}}, {"model": "wells.bcgs_numbers", "pk": 5836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055334"}}, {"model": "wells.bcgs_numbers", "pk": 5837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055341"}}, {"model": "wells.bcgs_numbers", "pk": 5838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055342"}}, {"model": "wells.bcgs_numbers", "pk": 5839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055343"}}, {"model": "wells.bcgs_numbers", "pk": 5840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055411"}}, {"model": "wells.bcgs_numbers", "pk": 5841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055413"}}, {"model": "wells.bcgs_numbers", "pk": 5842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055414"}}, {"model": "wells.bcgs_numbers", "pk": 5843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055422"}}, {"model": "wells.bcgs_numbers", "pk": 5844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055424"}}, {"model": "wells.bcgs_numbers", "pk": 5845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055431"}}, {"model": "wells.bcgs_numbers", "pk": 5846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055434"}}, {"model": "wells.bcgs_numbers", "pk": 5847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P055441"}}, {"model": "wells.bcgs_numbers", "pk": 5848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056121"}}, {"model": "wells.bcgs_numbers", "pk": 5849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056123"}}, {"model": "wells.bcgs_numbers", "pk": 5850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056124"}}, {"model": "wells.bcgs_numbers", "pk": 5851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056131"}}, {"model": "wells.bcgs_numbers", "pk": 5852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056132"}}, {"model": "wells.bcgs_numbers", "pk": 5853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056133"}}, {"model": "wells.bcgs_numbers", "pk": 5854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056134"}}, {"model": "wells.bcgs_numbers", "pk": 5855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056141"}}, {"model": "wells.bcgs_numbers", "pk": 5856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056143"}}, {"model": "wells.bcgs_numbers", "pk": 5857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056144"}}, {"model": "wells.bcgs_numbers", "pk": 5858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056213"}}, {"model": "wells.bcgs_numbers", "pk": 5859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056214"}}, {"model": "wells.bcgs_numbers", "pk": 5860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056221"}}, {"model": "wells.bcgs_numbers", "pk": 5861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056222"}}, {"model": "wells.bcgs_numbers", "pk": 5862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056223"}}, {"model": "wells.bcgs_numbers", "pk": 5863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056231"}}, {"model": "wells.bcgs_numbers", "pk": 5864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056233"}}, {"model": "wells.bcgs_numbers", "pk": 5865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056241"}}, {"model": "wells.bcgs_numbers", "pk": 5866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056242"}}, {"model": "wells.bcgs_numbers", "pk": 5867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056244"}}, {"model": "wells.bcgs_numbers", "pk": 5868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056311"}}, {"model": "wells.bcgs_numbers", "pk": 5869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056341"}}, {"model": "wells.bcgs_numbers", "pk": 5870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056342"}}, {"model": "wells.bcgs_numbers", "pk": 5871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056343"}}, {"model": "wells.bcgs_numbers", "pk": 5872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056413"}}, {"model": "wells.bcgs_numbers", "pk": 5873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P056414"}}, {"model": "wells.bcgs_numbers", "pk": 5874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P057111"}}, {"model": "wells.bcgs_numbers", "pk": 5875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P057112"}}, {"model": "wells.bcgs_numbers", "pk": 5876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P057113"}}, {"model": "wells.bcgs_numbers", "pk": 5877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P057114"}}, {"model": "wells.bcgs_numbers", "pk": 5878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057123"}}, {"model": "wells.bcgs_numbers", "pk": 5879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057124"}}, {"model": "wells.bcgs_numbers", "pk": 5880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057131"}}, {"model": "wells.bcgs_numbers", "pk": 5881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057132"}}, {"model": "wells.bcgs_numbers", "pk": 5882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057133"}}, {"model": "wells.bcgs_numbers", "pk": 5883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057141"}}, {"model": "wells.bcgs_numbers", "pk": 5884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057212"}}, {"model": "wells.bcgs_numbers", "pk": 5885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057213"}}, {"model": "wells.bcgs_numbers", "pk": 5886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057222"}}, {"model": "wells.bcgs_numbers", "pk": 5887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P057231"}}, {"model": "wells.bcgs_numbers", "pk": 5888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P059242"}}, {"model": "wells.bcgs_numbers", "pk": 5889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060141"}}, {"model": "wells.bcgs_numbers", "pk": 5890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060142"}}, {"model": "wells.bcgs_numbers", "pk": 5891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060144"}}, {"model": "wells.bcgs_numbers", "pk": 5892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060312"}}, {"model": "wells.bcgs_numbers", "pk": 5893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060322"}}, {"model": "wells.bcgs_numbers", "pk": 5894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060323"}}, {"model": "wells.bcgs_numbers", "pk": 5895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060324"}}, {"model": "wells.bcgs_numbers", "pk": 5896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060341"}}, {"model": "wells.bcgs_numbers", "pk": 5897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060342"}}, {"model": "wells.bcgs_numbers", "pk": 5898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P060344"}}, {"model": "wells.bcgs_numbers", "pk": 5899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P063344"}}, {"model": "wells.bcgs_numbers", "pk": 5900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P063444"}}, {"model": "wells.bcgs_numbers", "pk": 5901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064142"}}, {"model": "wells.bcgs_numbers", "pk": 5902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064143"}}, {"model": "wells.bcgs_numbers", "pk": 5903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064211"}}, {"model": "wells.bcgs_numbers", "pk": 5904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064213"}}, {"model": "wells.bcgs_numbers", "pk": 5905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064214"}}, {"model": "wells.bcgs_numbers", "pk": 5906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064221"}}, {"model": "wells.bcgs_numbers", "pk": 5907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064222"}}, {"model": "wells.bcgs_numbers", "pk": 5908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064223"}}, {"model": "wells.bcgs_numbers", "pk": 5909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064224"}}, {"model": "wells.bcgs_numbers", "pk": 5910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064231"}}, {"model": "wells.bcgs_numbers", "pk": 5911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064233"}}, {"model": "wells.bcgs_numbers", "pk": 5912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064312"}}, {"model": "wells.bcgs_numbers", "pk": 5913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064321"}}, {"model": "wells.bcgs_numbers", "pk": 5914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064322"}}, {"model": "wells.bcgs_numbers", "pk": 5915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064324"}}, {"model": "wells.bcgs_numbers", "pk": 5916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064333"}}, {"model": "wells.bcgs_numbers", "pk": 5917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064334"}}, {"model": "wells.bcgs_numbers", "pk": 5918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064342"}}, {"model": "wells.bcgs_numbers", "pk": 5919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064344"}}, {"model": "wells.bcgs_numbers", "pk": 5920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064411"}}, {"model": "wells.bcgs_numbers", "pk": 5921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064423"}}, {"model": "wells.bcgs_numbers", "pk": 5922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064424"}}, {"model": "wells.bcgs_numbers", "pk": 5923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P064433"}}, {"model": "wells.bcgs_numbers", "pk": 5924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P064434"}}, {"model": "wells.bcgs_numbers", "pk": 5925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P064442"}}, {"model": "wells.bcgs_numbers", "pk": 5926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P064444"}}, {"model": "wells.bcgs_numbers", "pk": 5927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065111"}}, {"model": "wells.bcgs_numbers", "pk": 5928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065112"}}, {"model": "wells.bcgs_numbers", "pk": 5929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065113"}}, {"model": "wells.bcgs_numbers", "pk": 5930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065114"}}, {"model": "wells.bcgs_numbers", "pk": 5931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065124"}}, {"model": "wells.bcgs_numbers", "pk": 5932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065212"}}, {"model": "wells.bcgs_numbers", "pk": 5933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065221"}}, {"model": "wells.bcgs_numbers", "pk": 5934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065222"}}, {"model": "wells.bcgs_numbers", "pk": 5935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065244"}}, {"model": "wells.bcgs_numbers", "pk": 5936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065314"}}, {"model": "wells.bcgs_numbers", "pk": 5937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065321"}}, {"model": "wells.bcgs_numbers", "pk": 5938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065324"}}, {"model": "wells.bcgs_numbers", "pk": 5939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065331"}}, {"model": "wells.bcgs_numbers", "pk": 5940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065332"}}, {"model": "wells.bcgs_numbers", "pk": 5941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065334"}}, {"model": "wells.bcgs_numbers", "pk": 5942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065343"}}, {"model": "wells.bcgs_numbers", "pk": 5943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065344"}}, {"model": "wells.bcgs_numbers", "pk": 5944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P065443"}}, {"model": "wells.bcgs_numbers", "pk": 5945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066211"}}, {"model": "wells.bcgs_numbers", "pk": 5946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066212"}}, {"model": "wells.bcgs_numbers", "pk": 5947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066213"}}, {"model": "wells.bcgs_numbers", "pk": 5948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066221"}}, {"model": "wells.bcgs_numbers", "pk": 5950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066223"}}, {"model": "wells.bcgs_numbers", "pk": 5951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066224"}}, {"model": "wells.bcgs_numbers", "pk": 5952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066231"}}, {"model": "wells.bcgs_numbers", "pk": 5953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066232"}}, {"model": "wells.bcgs_numbers", "pk": 5954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066241"}}, {"model": "wells.bcgs_numbers", "pk": 5955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066243"}}, {"model": "wells.bcgs_numbers", "pk": 5956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P066442"}}, {"model": "wells.bcgs_numbers", "pk": 5957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070122"}}, {"model": "wells.bcgs_numbers", "pk": 5958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070124"}}, {"model": "wells.bcgs_numbers", "pk": 5959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070132"}}, {"model": "wells.bcgs_numbers", "pk": 5960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070142"}}, {"model": "wells.bcgs_numbers", "pk": 5961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070143"}}, {"model": "wells.bcgs_numbers", "pk": 5962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070144"}}, {"model": "wells.bcgs_numbers", "pk": 5963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070211"}}, {"model": "wells.bcgs_numbers", "pk": 5964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070213"}}, {"model": "wells.bcgs_numbers", "pk": 5965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070231"}}, {"model": "wells.bcgs_numbers", "pk": 5966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070233"}}, {"model": "wells.bcgs_numbers", "pk": 5967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070234"}}, {"model": "wells.bcgs_numbers", "pk": 5968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070243"}}, {"model": "wells.bcgs_numbers", "pk": 5969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070244"}}, {"model": "wells.bcgs_numbers", "pk": 5970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P070411"}}, {"model": "wells.bcgs_numbers", "pk": 5971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P070412"}}, {"model": "wells.bcgs_numbers", "pk": 5972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P070421"}}, {"model": "wells.bcgs_numbers", "pk": 5973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P070422"}}, {"model": "wells.bcgs_numbers", "pk": 5974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P070441"}}, {"model": "wells.bcgs_numbers", "pk": 5975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P070442"}}, {"model": "wells.bcgs_numbers", "pk": 5976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P070444"}}, {"model": "wells.bcgs_numbers", "pk": 5977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P072423"}}, {"model": "wells.bcgs_numbers", "pk": 5978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073132"}}, {"model": "wells.bcgs_numbers", "pk": 5979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073212"}}, {"model": "wells.bcgs_numbers", "pk": 5980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073213"}}, {"model": "wells.bcgs_numbers", "pk": 5981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073214"}}, {"model": "wells.bcgs_numbers", "pk": 5982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073221"}}, {"model": "wells.bcgs_numbers", "pk": 5983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073243"}}, {"model": "wells.bcgs_numbers", "pk": 5984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073422"}}, {"model": "wells.bcgs_numbers", "pk": 5985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073434"}}, {"model": "wells.bcgs_numbers", "pk": 5986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073441"}}, {"model": "wells.bcgs_numbers", "pk": 5987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073442"}}, {"model": "wells.bcgs_numbers", "pk": 5988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P073444"}}, {"model": "wells.bcgs_numbers", "pk": 5989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074111"}}, {"model": "wells.bcgs_numbers", "pk": 5990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074112"}}, {"model": "wells.bcgs_numbers", "pk": 5991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074114"}}, {"model": "wells.bcgs_numbers", "pk": 5992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074121"}}, {"model": "wells.bcgs_numbers", "pk": 5993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074122"}}, {"model": "wells.bcgs_numbers", "pk": 5994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074123"}}, {"model": "wells.bcgs_numbers", "pk": 5995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074124"}}, {"model": "wells.bcgs_numbers", "pk": 5996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074132"}}, {"model": "wells.bcgs_numbers", "pk": 5997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074133"}}, {"model": "wells.bcgs_numbers", "pk": 5998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074141"}}, {"model": "wells.bcgs_numbers", "pk": 5999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074143"}}, {"model": "wells.bcgs_numbers", "pk": 6000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074214"}}, {"model": "wells.bcgs_numbers", "pk": 6001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074221"}}, {"model": "wells.bcgs_numbers", "pk": 6002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074222"}}, {"model": "wells.bcgs_numbers", "pk": 6003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074223"}}, {"model": "wells.bcgs_numbers", "pk": 6004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074232"}}, {"model": "wells.bcgs_numbers", "pk": 6005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074241"}}, {"model": "wells.bcgs_numbers", "pk": 6006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074311"}}, {"model": "wells.bcgs_numbers", "pk": 6007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074313"}}, {"model": "wells.bcgs_numbers", "pk": 6008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P074414"}}, {"model": "wells.bcgs_numbers", "pk": 6009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P075111"}}, {"model": "wells.bcgs_numbers", "pk": 6010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P075112"}}, {"model": "wells.bcgs_numbers", "pk": 6011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P075114"}}, {"model": "wells.bcgs_numbers", "pk": 6012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P075122"}}, {"model": "wells.bcgs_numbers", "pk": 6013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P075123"}}, {"model": "wells.bcgs_numbers", "pk": 6014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075131"}}, {"model": "wells.bcgs_numbers", "pk": 6015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075134"}}, {"model": "wells.bcgs_numbers", "pk": 6016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075141"}}, {"model": "wells.bcgs_numbers", "pk": 6017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075143"}}, {"model": "wells.bcgs_numbers", "pk": 6018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075144"}}, {"model": "wells.bcgs_numbers", "pk": 6019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075211"}}, {"model": "wells.bcgs_numbers", "pk": 6020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075233"}}, {"model": "wells.bcgs_numbers", "pk": 6021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075321"}}, {"model": "wells.bcgs_numbers", "pk": 6022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075322"}}, {"model": "wells.bcgs_numbers", "pk": 6023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075323"}}, {"model": "wells.bcgs_numbers", "pk": 6024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075324"}}, {"model": "wells.bcgs_numbers", "pk": 6025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075342"}}, {"model": "wells.bcgs_numbers", "pk": 6026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075411"}}, {"model": "wells.bcgs_numbers", "pk": 6027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075412"}}, {"model": "wells.bcgs_numbers", "pk": 6028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075413"}}, {"model": "wells.bcgs_numbers", "pk": 6029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075414"}}, {"model": "wells.bcgs_numbers", "pk": 6030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075423"}}, {"model": "wells.bcgs_numbers", "pk": 6031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075431"}}, {"model": "wells.bcgs_numbers", "pk": 6032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075432"}}, {"model": "wells.bcgs_numbers", "pk": 6033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075433"}}, {"model": "wells.bcgs_numbers", "pk": 6034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075434"}}, {"model": "wells.bcgs_numbers", "pk": 6035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P075443"}}, {"model": "wells.bcgs_numbers", "pk": 6036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076313"}}, {"model": "wells.bcgs_numbers", "pk": 6037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076323"}}, {"model": "wells.bcgs_numbers", "pk": 6038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076324"}}, {"model": "wells.bcgs_numbers", "pk": 6039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076331"}}, {"model": "wells.bcgs_numbers", "pk": 6040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076342"}}, {"model": "wells.bcgs_numbers", "pk": 6041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076413"}}, {"model": "wells.bcgs_numbers", "pk": 6042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076414"}}, {"model": "wells.bcgs_numbers", "pk": 6043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076432"}}, {"model": "wells.bcgs_numbers", "pk": 6044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P076433"}}, {"model": "wells.bcgs_numbers", "pk": 6045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P077331"}}, {"model": "wells.bcgs_numbers", "pk": 6046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P082244"}}, {"model": "wells.bcgs_numbers", "pk": 6047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P082341"}}, {"model": "wells.bcgs_numbers", "pk": 6048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P082414"}}, {"model": "wells.bcgs_numbers", "pk": 6049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P082421"}}, {"model": "wells.bcgs_numbers", "pk": 6050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P082422"}}, {"model": "wells.bcgs_numbers", "pk": 6051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P082423"}}, {"model": "wells.bcgs_numbers", "pk": 6052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P082432"}}, {"model": "wells.bcgs_numbers", "pk": 6053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083121"}}, {"model": "wells.bcgs_numbers", "pk": 6054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083122"}}, {"model": "wells.bcgs_numbers", "pk": 6055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083124"}}, {"model": "wells.bcgs_numbers", "pk": 6056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083132"}}, {"model": "wells.bcgs_numbers", "pk": 6057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083133"}}, {"model": "wells.bcgs_numbers", "pk": 6058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083134"}}, {"model": "wells.bcgs_numbers", "pk": 6059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083141"}}, {"model": "wells.bcgs_numbers", "pk": 6060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083211"}}, {"model": "wells.bcgs_numbers", "pk": 6061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083212"}}, {"model": "wells.bcgs_numbers", "pk": 6062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083213"}}, {"model": "wells.bcgs_numbers", "pk": 6063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083214"}}, {"model": "wells.bcgs_numbers", "pk": 6064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083221"}}, {"model": "wells.bcgs_numbers", "pk": 6065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083232"}}, {"model": "wells.bcgs_numbers", "pk": 6066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083241"}}, {"model": "wells.bcgs_numbers", "pk": 6067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083311"}}, {"model": "wells.bcgs_numbers", "pk": 6068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084124"}}, {"model": "wells.bcgs_numbers", "pk": 6069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084241"}}, {"model": "wells.bcgs_numbers", "pk": 6070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084311"}}, {"model": "wells.bcgs_numbers", "pk": 6071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084321"}}, {"model": "wells.bcgs_numbers", "pk": 6072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084322"}}, {"model": "wells.bcgs_numbers", "pk": 6073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084411"}}, {"model": "wells.bcgs_numbers", "pk": 6074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084412"}}, {"model": "wells.bcgs_numbers", "pk": 6075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084421"}}, {"model": "wells.bcgs_numbers", "pk": 6076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085122"}}, {"model": "wells.bcgs_numbers", "pk": 6077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085123"}}, {"model": "wells.bcgs_numbers", "pk": 6078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085124"}}, {"model": "wells.bcgs_numbers", "pk": 6079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085131"}}, {"model": "wells.bcgs_numbers", "pk": 6080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085212"}}, {"model": "wells.bcgs_numbers", "pk": 6081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085214"}}, {"model": "wells.bcgs_numbers", "pk": 6082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085243"}}, {"model": "wells.bcgs_numbers", "pk": 6083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085244"}}, {"model": "wells.bcgs_numbers", "pk": 6084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086213"}}, {"model": "wells.bcgs_numbers", "pk": 6085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086214"}}, {"model": "wells.bcgs_numbers", "pk": 6086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086232"}}, {"model": "wells.bcgs_numbers", "pk": 6087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086233"}}, {"model": "wells.bcgs_numbers", "pk": 6088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086411"}}, {"model": "wells.bcgs_numbers", "pk": 6089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086412"}}, {"model": "wells.bcgs_numbers", "pk": 6090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P086414"}}, {"model": "wells.bcgs_numbers", "pk": 6091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P087134"}}, {"model": "wells.bcgs_numbers", "pk": 6092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P087243"}}, {"model": "wells.bcgs_numbers", "pk": 6093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P087412"}}, {"model": "wells.bcgs_numbers", "pk": 6094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P088322"}}, {"model": "wells.bcgs_numbers", "pk": 6095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P088332"}}, {"model": "wells.bcgs_numbers", "pk": 6096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090223"}}, {"model": "wells.bcgs_numbers", "pk": 6097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090243"}}, {"model": "wells.bcgs_numbers", "pk": 6098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090244"}}, {"model": "wells.bcgs_numbers", "pk": 6099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090422"}}, {"model": "wells.bcgs_numbers", "pk": 6100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090424"}}, {"model": "wells.bcgs_numbers", "pk": 6101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090442"}}, {"model": "wells.bcgs_numbers", "pk": 6102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P090444"}}, {"model": "wells.bcgs_numbers", "pk": 6103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091113"}}, {"model": "wells.bcgs_numbers", "pk": 6104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091114"}}, {"model": "wells.bcgs_numbers", "pk": 6105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091121"}}, {"model": "wells.bcgs_numbers", "pk": 6106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091122"}}, {"model": "wells.bcgs_numbers", "pk": 6107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091123"}}, {"model": "wells.bcgs_numbers", "pk": 6108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091131"}}, {"model": "wells.bcgs_numbers", "pk": 6109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091311"}}, {"model": "wells.bcgs_numbers", "pk": 6110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091424"}}, {"model": "wells.bcgs_numbers", "pk": 6111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091434"}}, {"model": "wells.bcgs_numbers", "pk": 6112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P091443"}}, {"model": "wells.bcgs_numbers", "pk": 6113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P092123"}}, {"model": "wells.bcgs_numbers", "pk": 6114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P093223"}}, {"model": "wells.bcgs_numbers", "pk": 6115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P100222"}}, {"model": "wells.bcgs_numbers", "pk": 6116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P100234"}}, {"model": "wells.bcgs_numbers", "pk": 6117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P100241"}}, {"model": "wells.bcgs_numbers", "pk": 6118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P100324"}}, {"model": "wells.bcgs_numbers", "pk": 6119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "092T009323"}}, {"model": "wells.bcgs_numbers", "pk": 6120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A001212"}}, {"model": "wells.bcgs_numbers", "pk": 6121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A001314"}}, {"model": "wells.bcgs_numbers", "pk": 6122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A001322"}}, {"model": "wells.bcgs_numbers", "pk": 6123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A001324"}}, {"model": "wells.bcgs_numbers", "pk": 6124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A001331"}}, {"model": "wells.bcgs_numbers", "pk": 6125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A001333"}}, {"model": "wells.bcgs_numbers", "pk": 6126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A002113"}}, {"model": "wells.bcgs_numbers", "pk": 6127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011121"}}, {"model": "wells.bcgs_numbers", "pk": 6128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011122"}}, {"model": "wells.bcgs_numbers", "pk": 6129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011123"}}, {"model": "wells.bcgs_numbers", "pk": 6130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011124"}}, {"model": "wells.bcgs_numbers", "pk": 6131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011141"}}, {"model": "wells.bcgs_numbers", "pk": 6132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011142"}}, {"model": "wells.bcgs_numbers", "pk": 6133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011143"}}, {"model": "wells.bcgs_numbers", "pk": 6134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011211"}}, {"model": "wells.bcgs_numbers", "pk": 6135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011212"}}, {"model": "wells.bcgs_numbers", "pk": 6136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011213"}}, {"model": "wells.bcgs_numbers", "pk": 6137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011214"}}, {"model": "wells.bcgs_numbers", "pk": 6138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011221"}}, {"model": "wells.bcgs_numbers", "pk": 6139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011224"}}, {"model": "wells.bcgs_numbers", "pk": 6140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011231"}}, {"model": "wells.bcgs_numbers", "pk": 6141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011232"}}, {"model": "wells.bcgs_numbers", "pk": 6142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011244"}}, {"model": "wells.bcgs_numbers", "pk": 6143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011321"}}, {"model": "wells.bcgs_numbers", "pk": 6144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011322"}}, {"model": "wells.bcgs_numbers", "pk": 6145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011323"}}, {"model": "wells.bcgs_numbers", "pk": 6146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011324"}}, {"model": "wells.bcgs_numbers", "pk": 6147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011332"}}, {"model": "wells.bcgs_numbers", "pk": 6148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011334"}}, {"model": "wells.bcgs_numbers", "pk": 6149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011342"}}, {"model": "wells.bcgs_numbers", "pk": 6150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011343"}}, {"model": "wells.bcgs_numbers", "pk": 6151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011413"}}, {"model": "wells.bcgs_numbers", "pk": 6152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011431"}}, {"model": "wells.bcgs_numbers", "pk": 6153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011433"}}, {"model": "wells.bcgs_numbers", "pk": 6154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011434"}}, {"model": "wells.bcgs_numbers", "pk": 6155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011443"}}, {"model": "wells.bcgs_numbers", "pk": 6156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A011444"}}, {"model": "wells.bcgs_numbers", "pk": 6157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012323"}}, {"model": "wells.bcgs_numbers", "pk": 6158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012331"}}, {"model": "wells.bcgs_numbers", "pk": 6159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012332"}}, {"model": "wells.bcgs_numbers", "pk": 6160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012333"}}, {"model": "wells.bcgs_numbers", "pk": 6161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012341"}}, {"model": "wells.bcgs_numbers", "pk": 6162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012344"}}, {"model": "wells.bcgs_numbers", "pk": 6163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012423"}}, {"model": "wells.bcgs_numbers", "pk": 6164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A012431"}}, {"model": "wells.bcgs_numbers", "pk": 6165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A013311"}}, {"model": "wells.bcgs_numbers", "pk": 6166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A021112"}}, {"model": "wells.bcgs_numbers", "pk": 6167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A021114"}}, {"model": "wells.bcgs_numbers", "pk": 6168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A021124"}}, {"model": "wells.bcgs_numbers", "pk": 6169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A021212"}}, {"model": "wells.bcgs_numbers", "pk": 6170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A021214"}}, {"model": "wells.bcgs_numbers", "pk": 6171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A021221"}}, {"model": "wells.bcgs_numbers", "pk": 6172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021222"}}, {"model": "wells.bcgs_numbers", "pk": 6173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021223"}}, {"model": "wells.bcgs_numbers", "pk": 6174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021241"}}, {"model": "wells.bcgs_numbers", "pk": 6175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021242"}}, {"model": "wells.bcgs_numbers", "pk": 6176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021324"}}, {"model": "wells.bcgs_numbers", "pk": 6177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021342"}}, {"model": "wells.bcgs_numbers", "pk": 6178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A021412"}}, {"model": "wells.bcgs_numbers", "pk": 6179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022131"}}, {"model": "wells.bcgs_numbers", "pk": 6180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022132"}}, {"model": "wells.bcgs_numbers", "pk": 6181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022133"}}, {"model": "wells.bcgs_numbers", "pk": 6182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022134"}}, {"model": "wells.bcgs_numbers", "pk": 6183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022143"}}, {"model": "wells.bcgs_numbers", "pk": 6184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022232"}}, {"model": "wells.bcgs_numbers", "pk": 6185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022311"}}, {"model": "wells.bcgs_numbers", "pk": 6186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022312"}}, {"model": "wells.bcgs_numbers", "pk": 6187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022313"}}, {"model": "wells.bcgs_numbers", "pk": 6188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022322"}}, {"model": "wells.bcgs_numbers", "pk": 6189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022323"}}, {"model": "wells.bcgs_numbers", "pk": 6190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022324"}}, {"model": "wells.bcgs_numbers", "pk": 6191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022413"}}, {"model": "wells.bcgs_numbers", "pk": 6192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022431"}}, {"model": "wells.bcgs_numbers", "pk": 6193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022432"}}, {"model": "wells.bcgs_numbers", "pk": 6194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022441"}}, {"model": "wells.bcgs_numbers", "pk": 6195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A022442"}}, {"model": "wells.bcgs_numbers", "pk": 6196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A023411"}}, {"model": "wells.bcgs_numbers", "pk": 6197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A023412"}}, {"model": "wells.bcgs_numbers", "pk": 6198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A031342"}}, {"model": "wells.bcgs_numbers", "pk": 6199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A031413"}}, {"model": "wells.bcgs_numbers", "pk": 6200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A031431"}}, {"model": "wells.bcgs_numbers", "pk": 6201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A031433"}}, {"model": "wells.bcgs_numbers", "pk": 6202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A031434"}}, {"model": "wells.bcgs_numbers", "pk": 6203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A031443"}}, {"model": "wells.bcgs_numbers", "pk": 6204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033123"}}, {"model": "wells.bcgs_numbers", "pk": 6205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033131"}}, {"model": "wells.bcgs_numbers", "pk": 6206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033223"}}, {"model": "wells.bcgs_numbers", "pk": 6207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033224"}}, {"model": "wells.bcgs_numbers", "pk": 6208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033241"}}, {"model": "wells.bcgs_numbers", "pk": 6209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033242"}}, {"model": "wells.bcgs_numbers", "pk": 6210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033244"}}, {"model": "wells.bcgs_numbers", "pk": 6211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033332"}}, {"model": "wells.bcgs_numbers", "pk": 6212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033421"}}, {"model": "wells.bcgs_numbers", "pk": 6213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033422"}}, {"model": "wells.bcgs_numbers", "pk": 6214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A033424"}}, {"model": "wells.bcgs_numbers", "pk": 6215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034133"}}, {"model": "wells.bcgs_numbers", "pk": 6216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034143"}}, {"model": "wells.bcgs_numbers", "pk": 6217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034311"}}, {"model": "wells.bcgs_numbers", "pk": 6218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034312"}}, {"model": "wells.bcgs_numbers", "pk": 6219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034321"}}, {"model": "wells.bcgs_numbers", "pk": 6220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034322"}}, {"model": "wells.bcgs_numbers", "pk": 6221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034342"}}, {"model": "wells.bcgs_numbers", "pk": 6222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A034431"}}, {"model": "wells.bcgs_numbers", "pk": 6223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A035211"}}, {"model": "wells.bcgs_numbers", "pk": 6224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A041114"}}, {"model": "wells.bcgs_numbers", "pk": 6225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A041121"}}, {"model": "wells.bcgs_numbers", "pk": 6226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A041122"}}, {"model": "wells.bcgs_numbers", "pk": 6227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A041143"}}, {"model": "wells.bcgs_numbers", "pk": 6228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093A041144"}}, {"model": "wells.bcgs_numbers", "pk": 6229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041211"}}, {"model": "wells.bcgs_numbers", "pk": 6230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041212"}}, {"model": "wells.bcgs_numbers", "pk": 6231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041213"}}, {"model": "wells.bcgs_numbers", "pk": 6232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041214"}}, {"model": "wells.bcgs_numbers", "pk": 6233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041222"}}, {"model": "wells.bcgs_numbers", "pk": 6234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041232"}}, {"model": "wells.bcgs_numbers", "pk": 6235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041314"}}, {"model": "wells.bcgs_numbers", "pk": 6236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041321"}}, {"model": "wells.bcgs_numbers", "pk": 6237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041323"}}, {"model": "wells.bcgs_numbers", "pk": 6238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A041432"}}, {"model": "wells.bcgs_numbers", "pk": 6239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A042123"}}, {"model": "wells.bcgs_numbers", "pk": 6240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A051144"}}, {"model": "wells.bcgs_numbers", "pk": 6241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A053114"}}, {"model": "wells.bcgs_numbers", "pk": 6242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A053314"}}, {"model": "wells.bcgs_numbers", "pk": 6243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A053323"}}, {"model": "wells.bcgs_numbers", "pk": 6244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A053341"}}, {"model": "wells.bcgs_numbers", "pk": 6245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A053343"}}, {"model": "wells.bcgs_numbers", "pk": 6246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A062111"}}, {"model": "wells.bcgs_numbers", "pk": 6247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A062121"}}, {"model": "wells.bcgs_numbers", "pk": 6248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A062122"}}, {"model": "wells.bcgs_numbers", "pk": 6249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A062124"}}, {"model": "wells.bcgs_numbers", "pk": 6250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A063113"}}, {"model": "wells.bcgs_numbers", "pk": 6251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A063114"}}, {"model": "wells.bcgs_numbers", "pk": 6252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A063121"}}, {"model": "wells.bcgs_numbers", "pk": 6253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A097242"}}, {"model": "wells.bcgs_numbers", "pk": 6254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B002442"}}, {"model": "wells.bcgs_numbers", "pk": 6255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B002443"}}, {"model": "wells.bcgs_numbers", "pk": 6256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B003343"}}, {"model": "wells.bcgs_numbers", "pk": 6257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B003434"}}, {"model": "wells.bcgs_numbers", "pk": 6258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B004331"}}, {"model": "wells.bcgs_numbers", "pk": 6259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B004341"}}, {"model": "wells.bcgs_numbers", "pk": 6260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B004342"}}, {"model": "wells.bcgs_numbers", "pk": 6261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B004411"}}, {"model": "wells.bcgs_numbers", "pk": 6262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B004432"}}, {"model": "wells.bcgs_numbers", "pk": 6263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009212"}}, {"model": "wells.bcgs_numbers", "pk": 6264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009214"}}, {"model": "wells.bcgs_numbers", "pk": 6265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009223"}}, {"model": "wells.bcgs_numbers", "pk": 6266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009241"}}, {"model": "wells.bcgs_numbers", "pk": 6267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009412"}}, {"model": "wells.bcgs_numbers", "pk": 6268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009424"}}, {"model": "wells.bcgs_numbers", "pk": 6269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B009442"}}, {"model": "wells.bcgs_numbers", "pk": 6270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010111"}}, {"model": "wells.bcgs_numbers", "pk": 6271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010112"}}, {"model": "wells.bcgs_numbers", "pk": 6272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010114"}}, {"model": "wells.bcgs_numbers", "pk": 6273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010141"}}, {"model": "wells.bcgs_numbers", "pk": 6274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010143"}}, {"model": "wells.bcgs_numbers", "pk": 6275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010144"}}, {"model": "wells.bcgs_numbers", "pk": 6276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010211"}}, {"model": "wells.bcgs_numbers", "pk": 6277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010312"}}, {"model": "wells.bcgs_numbers", "pk": 6278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010313"}}, {"model": "wells.bcgs_numbers", "pk": 6279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010314"}}, {"model": "wells.bcgs_numbers", "pk": 6280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010321"}}, {"model": "wells.bcgs_numbers", "pk": 6281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010322"}}, {"model": "wells.bcgs_numbers", "pk": 6282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010323"}}, {"model": "wells.bcgs_numbers", "pk": 6283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010324"}}, {"model": "wells.bcgs_numbers", "pk": 6284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010331"}}, {"model": "wells.bcgs_numbers", "pk": 6285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010332"}}, {"model": "wells.bcgs_numbers", "pk": 6286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010333"}}, {"model": "wells.bcgs_numbers", "pk": 6287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010342"}}, {"model": "wells.bcgs_numbers", "pk": 6288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010343"}}, {"model": "wells.bcgs_numbers", "pk": 6289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010344"}}, {"model": "wells.bcgs_numbers", "pk": 6290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010411"}}, {"model": "wells.bcgs_numbers", "pk": 6291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B010413"}}, {"model": "wells.bcgs_numbers", "pk": 6292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B010431"}}, {"model": "wells.bcgs_numbers", "pk": 6293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B012233"}}, {"model": "wells.bcgs_numbers", "pk": 6294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B013222"}}, {"model": "wells.bcgs_numbers", "pk": 6295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B018114"}}, {"model": "wells.bcgs_numbers", "pk": 6296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B019422"}}, {"model": "wells.bcgs_numbers", "pk": 6297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B019423"}}, {"model": "wells.bcgs_numbers", "pk": 6298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B019424"}}, {"model": "wells.bcgs_numbers", "pk": 6299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B019434"}}, {"model": "wells.bcgs_numbers", "pk": 6300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B019441"}}, {"model": "wells.bcgs_numbers", "pk": 6301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020111"}}, {"model": "wells.bcgs_numbers", "pk": 6302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020112"}}, {"model": "wells.bcgs_numbers", "pk": 6303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020113"}}, {"model": "wells.bcgs_numbers", "pk": 6304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020114"}}, {"model": "wells.bcgs_numbers", "pk": 6305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020121"}}, {"model": "wells.bcgs_numbers", "pk": 6306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020122"}}, {"model": "wells.bcgs_numbers", "pk": 6307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020123"}}, {"model": "wells.bcgs_numbers", "pk": 6308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020124"}}, {"model": "wells.bcgs_numbers", "pk": 6309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020141"}}, {"model": "wells.bcgs_numbers", "pk": 6310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020142"}}, {"model": "wells.bcgs_numbers", "pk": 6311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020143"}}, {"model": "wells.bcgs_numbers", "pk": 6312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020144"}}, {"model": "wells.bcgs_numbers", "pk": 6313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020211"}}, {"model": "wells.bcgs_numbers", "pk": 6314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020212"}}, {"model": "wells.bcgs_numbers", "pk": 6315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020213"}}, {"model": "wells.bcgs_numbers", "pk": 6316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020214"}}, {"model": "wells.bcgs_numbers", "pk": 6317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020221"}}, {"model": "wells.bcgs_numbers", "pk": 6318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020222"}}, {"model": "wells.bcgs_numbers", "pk": 6319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020223"}}, {"model": "wells.bcgs_numbers", "pk": 6320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020224"}}, {"model": "wells.bcgs_numbers", "pk": 6321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020231"}}, {"model": "wells.bcgs_numbers", "pk": 6322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020232"}}, {"model": "wells.bcgs_numbers", "pk": 6323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020233"}}, {"model": "wells.bcgs_numbers", "pk": 6324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020234"}}, {"model": "wells.bcgs_numbers", "pk": 6325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020244"}}, {"model": "wells.bcgs_numbers", "pk": 6326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020311"}}, {"model": "wells.bcgs_numbers", "pk": 6327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020313"}}, {"model": "wells.bcgs_numbers", "pk": 6328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020314"}}, {"model": "wells.bcgs_numbers", "pk": 6329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020321"}}, {"model": "wells.bcgs_numbers", "pk": 6330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020323"}}, {"model": "wells.bcgs_numbers", "pk": 6331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020324"}}, {"model": "wells.bcgs_numbers", "pk": 6332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020342"}}, {"model": "wells.bcgs_numbers", "pk": 6333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020411"}}, {"model": "wells.bcgs_numbers", "pk": 6334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020412"}}, {"model": "wells.bcgs_numbers", "pk": 6335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020413"}}, {"model": "wells.bcgs_numbers", "pk": 6336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020414"}}, {"model": "wells.bcgs_numbers", "pk": 6337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020423"}}, {"model": "wells.bcgs_numbers", "pk": 6338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020431"}}, {"model": "wells.bcgs_numbers", "pk": 6339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020432"}}, {"model": "wells.bcgs_numbers", "pk": 6340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020433"}}, {"model": "wells.bcgs_numbers", "pk": 6341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B020434"}}, {"model": "wells.bcgs_numbers", "pk": 6342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B023323"}}, {"model": "wells.bcgs_numbers", "pk": 6343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B029212"}}, {"model": "wells.bcgs_numbers", "pk": 6344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030142"}}, {"model": "wells.bcgs_numbers", "pk": 6345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030144"}}, {"model": "wells.bcgs_numbers", "pk": 6346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030211"}}, {"model": "wells.bcgs_numbers", "pk": 6347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030213"}}, {"model": "wells.bcgs_numbers", "pk": 6348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030214"}}, {"model": "wells.bcgs_numbers", "pk": 6349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030231"}}, {"model": "wells.bcgs_numbers", "pk": 6350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030332"}}, {"model": "wells.bcgs_numbers", "pk": 6351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B030333"}}, {"model": "wells.bcgs_numbers", "pk": 6352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039122"}}, {"model": "wells.bcgs_numbers", "pk": 6353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039222"}}, {"model": "wells.bcgs_numbers", "pk": 6354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039231"}}, {"model": "wells.bcgs_numbers", "pk": 6355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039232"}}, {"model": "wells.bcgs_numbers", "pk": 6356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039233"}}, {"model": "wells.bcgs_numbers", "pk": 6357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039241"}}, {"model": "wells.bcgs_numbers", "pk": 6358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039312"}}, {"model": "wells.bcgs_numbers", "pk": 6359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039321"}}, {"model": "wells.bcgs_numbers", "pk": 6360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039413"}}, {"model": "wells.bcgs_numbers", "pk": 6361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039431"}}, {"model": "wells.bcgs_numbers", "pk": 6362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039432"}}, {"model": "wells.bcgs_numbers", "pk": 6363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B039433"}}, {"model": "wells.bcgs_numbers", "pk": 6364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B040431"}}, {"model": "wells.bcgs_numbers", "pk": 6365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B048244"}}, {"model": "wells.bcgs_numbers", "pk": 6366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B048422"}}, {"model": "wells.bcgs_numbers", "pk": 6367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B048423"}}, {"model": "wells.bcgs_numbers", "pk": 6368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B048442"}}, {"model": "wells.bcgs_numbers", "pk": 6369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049124"}}, {"model": "wells.bcgs_numbers", "pk": 6370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049131"}}, {"model": "wells.bcgs_numbers", "pk": 6371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049132"}}, {"model": "wells.bcgs_numbers", "pk": 6372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049141"}}, {"model": "wells.bcgs_numbers", "pk": 6373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049142"}}, {"model": "wells.bcgs_numbers", "pk": 6374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049211"}}, {"model": "wells.bcgs_numbers", "pk": 6375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049213"}}, {"model": "wells.bcgs_numbers", "pk": 6376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049231"}}, {"model": "wells.bcgs_numbers", "pk": 6377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B049233"}}, {"model": "wells.bcgs_numbers", "pk": 6378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B050314"}}, {"model": "wells.bcgs_numbers", "pk": 6379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B050411"}}, {"model": "wells.bcgs_numbers", "pk": 6380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B050432"}}, {"model": "wells.bcgs_numbers", "pk": 6381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058212"}}, {"model": "wells.bcgs_numbers", "pk": 6382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058221"}}, {"model": "wells.bcgs_numbers", "pk": 6383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058231"}}, {"model": "wells.bcgs_numbers", "pk": 6384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058232"}}, {"model": "wells.bcgs_numbers", "pk": 6385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058234"}}, {"model": "wells.bcgs_numbers", "pk": 6386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058241"}}, {"model": "wells.bcgs_numbers", "pk": 6387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058411"}}, {"model": "wells.bcgs_numbers", "pk": 6388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058412"}}, {"model": "wells.bcgs_numbers", "pk": 6389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B058414"}}, {"model": "wells.bcgs_numbers", "pk": 6390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B059321"}}, {"model": "wells.bcgs_numbers", "pk": 6391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B062424"}}, {"model": "wells.bcgs_numbers", "pk": 6392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068214"}}, {"model": "wells.bcgs_numbers", "pk": 6393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068231"}}, {"model": "wells.bcgs_numbers", "pk": 6394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068232"}}, {"model": "wells.bcgs_numbers", "pk": 6395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068241"}}, {"model": "wells.bcgs_numbers", "pk": 6396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068242"}}, {"model": "wells.bcgs_numbers", "pk": 6397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068243"}}, {"model": "wells.bcgs_numbers", "pk": 6398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068412"}}, {"model": "wells.bcgs_numbers", "pk": 6399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B068434"}}, {"model": "wells.bcgs_numbers", "pk": 6400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B078114"}}, {"model": "wells.bcgs_numbers", "pk": 6401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B078142"}}, {"model": "wells.bcgs_numbers", "pk": 6402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078143"}}, {"model": "wells.bcgs_numbers", "pk": 6403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078144"}}, {"model": "wells.bcgs_numbers", "pk": 6404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078212"}}, {"model": "wells.bcgs_numbers", "pk": 6405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078223"}}, {"model": "wells.bcgs_numbers", "pk": 6406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078232"}}, {"model": "wells.bcgs_numbers", "pk": 6407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078234"}}, {"model": "wells.bcgs_numbers", "pk": 6408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078241"}}, {"model": "wells.bcgs_numbers", "pk": 6409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078243"}}, {"model": "wells.bcgs_numbers", "pk": 6410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078421"}}, {"model": "wells.bcgs_numbers", "pk": 6411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078423"}}, {"model": "wells.bcgs_numbers", "pk": 6412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078432"}}, {"model": "wells.bcgs_numbers", "pk": 6413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078441"}}, {"model": "wells.bcgs_numbers", "pk": 6414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078442"}}, {"model": "wells.bcgs_numbers", "pk": 6415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B078443"}}, {"model": "wells.bcgs_numbers", "pk": 6416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B084332"}}, {"model": "wells.bcgs_numbers", "pk": 6417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B086144"}}, {"model": "wells.bcgs_numbers", "pk": 6418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088144"}}, {"model": "wells.bcgs_numbers", "pk": 6419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088214"}}, {"model": "wells.bcgs_numbers", "pk": 6420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088221"}}, {"model": "wells.bcgs_numbers", "pk": 6421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088222"}}, {"model": "wells.bcgs_numbers", "pk": 6422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088223"}}, {"model": "wells.bcgs_numbers", "pk": 6423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088224"}}, {"model": "wells.bcgs_numbers", "pk": 6424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088241"}}, {"model": "wells.bcgs_numbers", "pk": 6425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088242"}}, {"model": "wells.bcgs_numbers", "pk": 6426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088243"}}, {"model": "wells.bcgs_numbers", "pk": 6427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088244"}}, {"model": "wells.bcgs_numbers", "pk": 6428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088414"}}, {"model": "wells.bcgs_numbers", "pk": 6429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088421"}}, {"model": "wells.bcgs_numbers", "pk": 6430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088422"}}, {"model": "wells.bcgs_numbers", "pk": 6431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088423"}}, {"model": "wells.bcgs_numbers", "pk": 6432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088424"}}, {"model": "wells.bcgs_numbers", "pk": 6433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088432"}}, {"model": "wells.bcgs_numbers", "pk": 6434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088433"}}, {"model": "wells.bcgs_numbers", "pk": 6435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088434"}}, {"model": "wells.bcgs_numbers", "pk": 6436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088441"}}, {"model": "wells.bcgs_numbers", "pk": 6437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088442"}}, {"model": "wells.bcgs_numbers", "pk": 6438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088443"}}, {"model": "wells.bcgs_numbers", "pk": 6439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B088444"}}, {"model": "wells.bcgs_numbers", "pk": 6440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089113"}}, {"model": "wells.bcgs_numbers", "pk": 6441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089114"}}, {"model": "wells.bcgs_numbers", "pk": 6442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089131"}}, {"model": "wells.bcgs_numbers", "pk": 6443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089132"}}, {"model": "wells.bcgs_numbers", "pk": 6444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089242"}}, {"model": "wells.bcgs_numbers", "pk": 6445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089243"}}, {"model": "wells.bcgs_numbers", "pk": 6446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089313"}}, {"model": "wells.bcgs_numbers", "pk": 6447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089331"}}, {"model": "wells.bcgs_numbers", "pk": 6448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089333"}}, {"model": "wells.bcgs_numbers", "pk": 6449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089344"}}, {"model": "wells.bcgs_numbers", "pk": 6450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089414"}}, {"model": "wells.bcgs_numbers", "pk": 6451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089421"}}, {"model": "wells.bcgs_numbers", "pk": 6452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B089431"}}, {"model": "wells.bcgs_numbers", "pk": 6453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B093133"}}, {"model": "wells.bcgs_numbers", "pk": 6454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B093331"}}, {"model": "wells.bcgs_numbers", "pk": 6455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B095242"}}, {"model": "wells.bcgs_numbers", "pk": 6456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B095414"}}, {"model": "wells.bcgs_numbers", "pk": 6457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B095422"}}, {"model": "wells.bcgs_numbers", "pk": 6458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B095444"}}, {"model": "wells.bcgs_numbers", "pk": 6459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B096314"}}, {"model": "wells.bcgs_numbers", "pk": 6460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B096343"}}, {"model": "wells.bcgs_numbers", "pk": 6461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B096423"}}, {"model": "wells.bcgs_numbers", "pk": 6462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B096442"}}, {"model": "wells.bcgs_numbers", "pk": 6463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B097244"}}, {"model": "wells.bcgs_numbers", "pk": 6464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B097431"}}, {"model": "wells.bcgs_numbers", "pk": 6465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B097433"}}, {"model": "wells.bcgs_numbers", "pk": 6466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098123"}}, {"model": "wells.bcgs_numbers", "pk": 6467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098134"}}, {"model": "wells.bcgs_numbers", "pk": 6468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098142"}}, {"model": "wells.bcgs_numbers", "pk": 6469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098143"}}, {"model": "wells.bcgs_numbers", "pk": 6470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098144"}}, {"model": "wells.bcgs_numbers", "pk": 6471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098211"}}, {"model": "wells.bcgs_numbers", "pk": 6472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098212"}}, {"model": "wells.bcgs_numbers", "pk": 6473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098213"}}, {"model": "wells.bcgs_numbers", "pk": 6474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098214"}}, {"model": "wells.bcgs_numbers", "pk": 6475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098221"}}, {"model": "wells.bcgs_numbers", "pk": 6476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098222"}}, {"model": "wells.bcgs_numbers", "pk": 6477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B098223"}}, {"model": "wells.bcgs_numbers", "pk": 6478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098224"}}, {"model": "wells.bcgs_numbers", "pk": 6479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098231"}}, {"model": "wells.bcgs_numbers", "pk": 6480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098232"}}, {"model": "wells.bcgs_numbers", "pk": 6481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098233"}}, {"model": "wells.bcgs_numbers", "pk": 6482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098234"}}, {"model": "wells.bcgs_numbers", "pk": 6483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098241"}}, {"model": "wells.bcgs_numbers", "pk": 6484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098242"}}, {"model": "wells.bcgs_numbers", "pk": 6485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098243"}}, {"model": "wells.bcgs_numbers", "pk": 6486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098244"}}, {"model": "wells.bcgs_numbers", "pk": 6487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098322"}}, {"model": "wells.bcgs_numbers", "pk": 6488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098324"}}, {"model": "wells.bcgs_numbers", "pk": 6489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098334"}}, {"model": "wells.bcgs_numbers", "pk": 6490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098341"}}, {"model": "wells.bcgs_numbers", "pk": 6491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098342"}}, {"model": "wells.bcgs_numbers", "pk": 6492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098343"}}, {"model": "wells.bcgs_numbers", "pk": 6493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098344"}}, {"model": "wells.bcgs_numbers", "pk": 6494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098411"}}, {"model": "wells.bcgs_numbers", "pk": 6495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098412"}}, {"model": "wells.bcgs_numbers", "pk": 6496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098413"}}, {"model": "wells.bcgs_numbers", "pk": 6497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098414"}}, {"model": "wells.bcgs_numbers", "pk": 6498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098415"}}, {"model": "wells.bcgs_numbers", "pk": 6499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098421"}}, {"model": "wells.bcgs_numbers", "pk": 6500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098422"}}, {"model": "wells.bcgs_numbers", "pk": 6501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098423"}}, {"model": "wells.bcgs_numbers", "pk": 6502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098424"}}, {"model": "wells.bcgs_numbers", "pk": 6503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098431"}}, {"model": "wells.bcgs_numbers", "pk": 6504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098432"}}, {"model": "wells.bcgs_numbers", "pk": 6505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098433"}}, {"model": "wells.bcgs_numbers", "pk": 6506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098434"}}, {"model": "wells.bcgs_numbers", "pk": 6507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098441"}}, {"model": "wells.bcgs_numbers", "pk": 6508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098442"}}, {"model": "wells.bcgs_numbers", "pk": 6509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B098443"}}, {"model": "wells.bcgs_numbers", "pk": 6510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099111"}}, {"model": "wells.bcgs_numbers", "pk": 6511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099113"}}, {"model": "wells.bcgs_numbers", "pk": 6512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099121"}}, {"model": "wells.bcgs_numbers", "pk": 6513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099122"}}, {"model": "wells.bcgs_numbers", "pk": 6514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099123"}}, {"model": "wells.bcgs_numbers", "pk": 6515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099124"}}, {"model": "wells.bcgs_numbers", "pk": 6516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099131"}}, {"model": "wells.bcgs_numbers", "pk": 6517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099132"}}, {"model": "wells.bcgs_numbers", "pk": 6518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099133"}}, {"model": "wells.bcgs_numbers", "pk": 6519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099142"}}, {"model": "wells.bcgs_numbers", "pk": 6520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093B099311"}}, {"model": "wells.bcgs_numbers", "pk": 6521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C010133"}}, {"model": "wells.bcgs_numbers", "pk": 6522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020123"}}, {"model": "wells.bcgs_numbers", "pk": 6523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020212"}}, {"model": "wells.bcgs_numbers", "pk": 6524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020213"}}, {"model": "wells.bcgs_numbers", "pk": 6525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020214"}}, {"model": "wells.bcgs_numbers", "pk": 6526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020414"}}, {"model": "wells.bcgs_numbers", "pk": 6527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020431"}}, {"model": "wells.bcgs_numbers", "pk": 6528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C020433"}}, {"model": "wells.bcgs_numbers", "pk": 6529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C030212"}}, {"model": "wells.bcgs_numbers", "pk": 6530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C034423"}}, {"model": "wells.bcgs_numbers", "pk": 6531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C035114"}}, {"model": "wells.bcgs_numbers", "pk": 6532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C035121"}}, {"model": "wells.bcgs_numbers", "pk": 6533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C035133"}}, {"model": "wells.bcgs_numbers", "pk": 6534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C035143"}}, {"model": "wells.bcgs_numbers", "pk": 6535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C041121"}}, {"model": "wells.bcgs_numbers", "pk": 6536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C041122"}}, {"model": "wells.bcgs_numbers", "pk": 6537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044223"}}, {"model": "wells.bcgs_numbers", "pk": 6538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044322"}}, {"model": "wells.bcgs_numbers", "pk": 6539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044324"}}, {"model": "wells.bcgs_numbers", "pk": 6540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044342"}}, {"model": "wells.bcgs_numbers", "pk": 6541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044411"}}, {"model": "wells.bcgs_numbers", "pk": 6542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044413"}}, {"model": "wells.bcgs_numbers", "pk": 6543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044414"}}, {"model": "wells.bcgs_numbers", "pk": 6544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044431"}}, {"model": "wells.bcgs_numbers", "pk": 6545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C044433"}}, {"model": "wells.bcgs_numbers", "pk": 6546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C045131"}}, {"model": "wells.bcgs_numbers", "pk": 6547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C045223"}}, {"model": "wells.bcgs_numbers", "pk": 6548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C045314"}}, {"model": "wells.bcgs_numbers", "pk": 6549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C045432"}}, {"model": "wells.bcgs_numbers", "pk": 6550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C050222"}}, {"model": "wells.bcgs_numbers", "pk": 6551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C054121"}}, {"model": "wells.bcgs_numbers", "pk": 6552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C054144"}}, {"model": "wells.bcgs_numbers", "pk": 6553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C055211"}}, {"model": "wells.bcgs_numbers", "pk": 6554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C063414"}}, {"model": "wells.bcgs_numbers", "pk": 6555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093C073233"}}, {"model": "wells.bcgs_numbers", "pk": 6556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D034341"}}, {"model": "wells.bcgs_numbers", "pk": 6557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037321"}}, {"model": "wells.bcgs_numbers", "pk": 6558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037322"}}, {"model": "wells.bcgs_numbers", "pk": 6559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037323"}}, {"model": "wells.bcgs_numbers", "pk": 6560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037413"}}, {"model": "wells.bcgs_numbers", "pk": 6561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037414"}}, {"model": "wells.bcgs_numbers", "pk": 6562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037441"}}, {"model": "wells.bcgs_numbers", "pk": 6563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D037442"}}, {"model": "wells.bcgs_numbers", "pk": 6564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D038334"}}, {"model": "wells.bcgs_numbers", "pk": 6565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D038344"}}, {"model": "wells.bcgs_numbers", "pk": 6566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D038433"}}, {"model": "wells.bcgs_numbers", "pk": 6567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D038434"}}, {"model": "wells.bcgs_numbers", "pk": 6568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D040233"}}, {"model": "wells.bcgs_numbers", "pk": 6569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D040413"}}, {"model": "wells.bcgs_numbers", "pk": 6570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D048122"}}, {"model": "wells.bcgs_numbers", "pk": 6571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D048211"}}, {"model": "wells.bcgs_numbers", "pk": 6572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D048212"}}, {"model": "wells.bcgs_numbers", "pk": 6573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D048221"}}, {"model": "wells.bcgs_numbers", "pk": 6574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D049144"}}, {"model": "wells.bcgs_numbers", "pk": 6575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D049233"}}, {"model": "wells.bcgs_numbers", "pk": 6576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D049242"}}, {"model": "wells.bcgs_numbers", "pk": 6577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093D050131"}}, {"model": "wells.bcgs_numbers", "pk": 6578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E051321"}}, {"model": "wells.bcgs_numbers", "pk": 6579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E051323"}}, {"model": "wells.bcgs_numbers", "pk": 6580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E088441"}}, {"model": "wells.bcgs_numbers", "pk": 6581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E089233"}}, {"model": "wells.bcgs_numbers", "pk": 6582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E089234"}}, {"model": "wells.bcgs_numbers", "pk": 6583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E089341"}}, {"model": "wells.bcgs_numbers", "pk": 6584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E090213"}}, {"model": "wells.bcgs_numbers", "pk": 6585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E090221"}}, {"model": "wells.bcgs_numbers", "pk": 6586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E090243"}}, {"model": "wells.bcgs_numbers", "pk": 6587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E098431"}}, {"model": "wells.bcgs_numbers", "pk": 6588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093E100441"}}, {"model": "wells.bcgs_numbers", "pk": 6589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F044234"}}, {"model": "wells.bcgs_numbers", "pk": 6590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F066143"}}, {"model": "wells.bcgs_numbers", "pk": 6591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F071144"}}, {"model": "wells.bcgs_numbers", "pk": 6592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F071214"}}, {"model": "wells.bcgs_numbers", "pk": 6593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F071234"}}, {"model": "wells.bcgs_numbers", "pk": 6594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081113"}}, {"model": "wells.bcgs_numbers", "pk": 6595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081212"}}, {"model": "wells.bcgs_numbers", "pk": 6596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081222"}}, {"model": "wells.bcgs_numbers", "pk": 6597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081232"}}, {"model": "wells.bcgs_numbers", "pk": 6598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081234"}}, {"model": "wells.bcgs_numbers", "pk": 6599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081414"}}, {"model": "wells.bcgs_numbers", "pk": 6600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F081421"}}, {"model": "wells.bcgs_numbers", "pk": 6601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F084314"}}, {"model": "wells.bcgs_numbers", "pk": 6602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093F088441"}}, {"model": "wells.bcgs_numbers", "pk": 6603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F089331"}}, {"model": "wells.bcgs_numbers", "pk": 6604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F089441"}}, {"model": "wells.bcgs_numbers", "pk": 6605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F090333"}}, {"model": "wells.bcgs_numbers", "pk": 6606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F090334"}}, {"model": "wells.bcgs_numbers", "pk": 6607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F090433"}}, {"model": "wells.bcgs_numbers", "pk": 6608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F090434"}}, {"model": "wells.bcgs_numbers", "pk": 6609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F090443"}}, {"model": "wells.bcgs_numbers", "pk": 6610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F090444"}}, {"model": "wells.bcgs_numbers", "pk": 6611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091144"}}, {"model": "wells.bcgs_numbers", "pk": 6612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091233"}}, {"model": "wells.bcgs_numbers", "pk": 6613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091314"}}, {"model": "wells.bcgs_numbers", "pk": 6614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091324"}}, {"model": "wells.bcgs_numbers", "pk": 6615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091411"}}, {"model": "wells.bcgs_numbers", "pk": 6616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091413"}}, {"model": "wells.bcgs_numbers", "pk": 6617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091422"}}, {"model": "wells.bcgs_numbers", "pk": 6618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091423"}}, {"model": "wells.bcgs_numbers", "pk": 6619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091424"}}, {"model": "wells.bcgs_numbers", "pk": 6620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091431"}}, {"model": "wells.bcgs_numbers", "pk": 6621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091434"}}, {"model": "wells.bcgs_numbers", "pk": 6622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091443"}}, {"model": "wells.bcgs_numbers", "pk": 6623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F091444"}}, {"model": "wells.bcgs_numbers", "pk": 6624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092232"}}, {"model": "wells.bcgs_numbers", "pk": 6625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092323"}}, {"model": "wells.bcgs_numbers", "pk": 6626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092331"}}, {"model": "wells.bcgs_numbers", "pk": 6627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092332"}}, {"model": "wells.bcgs_numbers", "pk": 6628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092333"}}, {"model": "wells.bcgs_numbers", "pk": 6629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092412"}}, {"model": "wells.bcgs_numbers", "pk": 6630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F092433"}}, {"model": "wells.bcgs_numbers", "pk": 6631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F096332"}}, {"model": "wells.bcgs_numbers", "pk": 6632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F097232"}}, {"model": "wells.bcgs_numbers", "pk": 6633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F097422"}}, {"model": "wells.bcgs_numbers", "pk": 6634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098111"}}, {"model": "wells.bcgs_numbers", "pk": 6635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098123"}}, {"model": "wells.bcgs_numbers", "pk": 6636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098143"}}, {"model": "wells.bcgs_numbers", "pk": 6637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098321"}}, {"model": "wells.bcgs_numbers", "pk": 6638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098344"}}, {"model": "wells.bcgs_numbers", "pk": 6639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098431"}}, {"model": "wells.bcgs_numbers", "pk": 6640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F098441"}}, {"model": "wells.bcgs_numbers", "pk": 6641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099222"}}, {"model": "wells.bcgs_numbers", "pk": 6642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099223"}}, {"model": "wells.bcgs_numbers", "pk": 6643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099224"}}, {"model": "wells.bcgs_numbers", "pk": 6644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099234"}}, {"model": "wells.bcgs_numbers", "pk": 6645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099241"}}, {"model": "wells.bcgs_numbers", "pk": 6646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099312"}}, {"model": "wells.bcgs_numbers", "pk": 6647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099322"}}, {"model": "wells.bcgs_numbers", "pk": 6648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099332"}}, {"model": "wells.bcgs_numbers", "pk": 6649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099334"}}, {"model": "wells.bcgs_numbers", "pk": 6650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F099341"}}, {"model": "wells.bcgs_numbers", "pk": 6651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F099343"}}, {"model": "wells.bcgs_numbers", "pk": 6652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F099344"}}, {"model": "wells.bcgs_numbers", "pk": 6653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F099444"}}, {"model": "wells.bcgs_numbers", "pk": 6654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100113"}}, {"model": "wells.bcgs_numbers", "pk": 6655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100123"}}, {"model": "wells.bcgs_numbers", "pk": 6656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100141"}}, {"model": "wells.bcgs_numbers", "pk": 6657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100144"}}, {"model": "wells.bcgs_numbers", "pk": 6658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100211"}}, {"model": "wells.bcgs_numbers", "pk": 6659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100212"}}, {"model": "wells.bcgs_numbers", "pk": 6660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100213"}}, {"model": "wells.bcgs_numbers", "pk": 6661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100214"}}, {"model": "wells.bcgs_numbers", "pk": 6662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100221"}}, {"model": "wells.bcgs_numbers", "pk": 6663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100222"}}, {"model": "wells.bcgs_numbers", "pk": 6664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100223"}}, {"model": "wells.bcgs_numbers", "pk": 6665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100224"}}, {"model": "wells.bcgs_numbers", "pk": 6666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100231"}}, {"model": "wells.bcgs_numbers", "pk": 6667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100232"}}, {"model": "wells.bcgs_numbers", "pk": 6668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100244"}}, {"model": "wells.bcgs_numbers", "pk": 6669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100322"}}, {"model": "wells.bcgs_numbers", "pk": 6670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100324"}}, {"model": "wells.bcgs_numbers", "pk": 6671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100333"}}, {"model": "wells.bcgs_numbers", "pk": 6672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100342"}}, {"model": "wells.bcgs_numbers", "pk": 6673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100412"}}, {"model": "wells.bcgs_numbers", "pk": 6674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100413"}}, {"model": "wells.bcgs_numbers", "pk": 6675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100414"}}, {"model": "wells.bcgs_numbers", "pk": 6676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100421"}}, {"model": "wells.bcgs_numbers", "pk": 6677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100423"}}, {"model": "wells.bcgs_numbers", "pk": 6678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100431"}}, {"model": "wells.bcgs_numbers", "pk": 6679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100433"}}, {"model": "wells.bcgs_numbers", "pk": 6680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100434"}}, {"model": "wells.bcgs_numbers", "pk": 6681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100442"}}, {"model": "wells.bcgs_numbers", "pk": 6682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100443"}}, {"model": "wells.bcgs_numbers", "pk": 6683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093F100444"}}, {"model": "wells.bcgs_numbers", "pk": 6684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G002422"}}, {"model": "wells.bcgs_numbers", "pk": 6685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007211"}}, {"model": "wells.bcgs_numbers", "pk": 6686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007212"}}, {"model": "wells.bcgs_numbers", "pk": 6687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007213"}}, {"model": "wells.bcgs_numbers", "pk": 6688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007214"}}, {"model": "wells.bcgs_numbers", "pk": 6689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007221"}}, {"model": "wells.bcgs_numbers", "pk": 6690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007222"}}, {"model": "wells.bcgs_numbers", "pk": 6691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007223"}}, {"model": "wells.bcgs_numbers", "pk": 6692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007224"}}, {"model": "wells.bcgs_numbers", "pk": 6693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007231"}}, {"model": "wells.bcgs_numbers", "pk": 6694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007232"}}, {"model": "wells.bcgs_numbers", "pk": 6695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007233"}}, {"model": "wells.bcgs_numbers", "pk": 6696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007234"}}, {"model": "wells.bcgs_numbers", "pk": 6697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007241"}}, {"model": "wells.bcgs_numbers", "pk": 6698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G007242"}}, {"model": "wells.bcgs_numbers", "pk": 6699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007243"}}, {"model": "wells.bcgs_numbers", "pk": 6700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007244"}}, {"model": "wells.bcgs_numbers", "pk": 6701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007342"}}, {"model": "wells.bcgs_numbers", "pk": 6702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007412"}}, {"model": "wells.bcgs_numbers", "pk": 6703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007413"}}, {"model": "wells.bcgs_numbers", "pk": 6704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007421"}}, {"model": "wells.bcgs_numbers", "pk": 6705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007423"}}, {"model": "wells.bcgs_numbers", "pk": 6706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007431"}}, {"model": "wells.bcgs_numbers", "pk": 6707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007432"}}, {"model": "wells.bcgs_numbers", "pk": 6708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007434"}}, {"model": "wells.bcgs_numbers", "pk": 6709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007442"}}, {"model": "wells.bcgs_numbers", "pk": 6710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G007443"}}, {"model": "wells.bcgs_numbers", "pk": 6711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008111"}}, {"model": "wells.bcgs_numbers", "pk": 6712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008112"}}, {"model": "wells.bcgs_numbers", "pk": 6713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008113"}}, {"model": "wells.bcgs_numbers", "pk": 6714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008114"}}, {"model": "wells.bcgs_numbers", "pk": 6715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008121"}}, {"model": "wells.bcgs_numbers", "pk": 6716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008122"}}, {"model": "wells.bcgs_numbers", "pk": 6717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008124"}}, {"model": "wells.bcgs_numbers", "pk": 6718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008131"}}, {"model": "wells.bcgs_numbers", "pk": 6719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008133"}}, {"model": "wells.bcgs_numbers", "pk": 6720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008134"}}, {"model": "wells.bcgs_numbers", "pk": 6721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008141"}}, {"model": "wells.bcgs_numbers", "pk": 6722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008142"}}, {"model": "wells.bcgs_numbers", "pk": 6723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008143"}}, {"model": "wells.bcgs_numbers", "pk": 6724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008144"}}, {"model": "wells.bcgs_numbers", "pk": 6725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008211"}}, {"model": "wells.bcgs_numbers", "pk": 6726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008212"}}, {"model": "wells.bcgs_numbers", "pk": 6727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008213"}}, {"model": "wells.bcgs_numbers", "pk": 6728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008214"}}, {"model": "wells.bcgs_numbers", "pk": 6729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008221"}}, {"model": "wells.bcgs_numbers", "pk": 6730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008223"}}, {"model": "wells.bcgs_numbers", "pk": 6731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008224"}}, {"model": "wells.bcgs_numbers", "pk": 6732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008231"}}, {"model": "wells.bcgs_numbers", "pk": 6733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008232"}}, {"model": "wells.bcgs_numbers", "pk": 6734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008234"}}, {"model": "wells.bcgs_numbers", "pk": 6735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008241"}}, {"model": "wells.bcgs_numbers", "pk": 6736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008242"}}, {"model": "wells.bcgs_numbers", "pk": 6737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008244"}}, {"model": "wells.bcgs_numbers", "pk": 6738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008312"}}, {"model": "wells.bcgs_numbers", "pk": 6739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008313"}}, {"model": "wells.bcgs_numbers", "pk": 6740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008314"}}, {"model": "wells.bcgs_numbers", "pk": 6741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008321"}}, {"model": "wells.bcgs_numbers", "pk": 6742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008322"}}, {"model": "wells.bcgs_numbers", "pk": 6743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G008324"}}, {"model": "wells.bcgs_numbers", "pk": 6744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008333"}}, {"model": "wells.bcgs_numbers", "pk": 6745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008342"}}, {"model": "wells.bcgs_numbers", "pk": 6746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008344"}}, {"model": "wells.bcgs_numbers", "pk": 6747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008412"}}, {"model": "wells.bcgs_numbers", "pk": 6748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008414"}}, {"model": "wells.bcgs_numbers", "pk": 6749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008421"}}, {"model": "wells.bcgs_numbers", "pk": 6750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008423"}}, {"model": "wells.bcgs_numbers", "pk": 6751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008424"}}, {"model": "wells.bcgs_numbers", "pk": 6752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008431"}}, {"model": "wells.bcgs_numbers", "pk": 6753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008433"}}, {"model": "wells.bcgs_numbers", "pk": 6754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008434"}}, {"model": "wells.bcgs_numbers", "pk": 6755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008441"}}, {"model": "wells.bcgs_numbers", "pk": 6756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G008443"}}, {"model": "wells.bcgs_numbers", "pk": 6757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009113"}}, {"model": "wells.bcgs_numbers", "pk": 6758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009114"}}, {"model": "wells.bcgs_numbers", "pk": 6759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009123"}}, {"model": "wells.bcgs_numbers", "pk": 6760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009131"}}, {"model": "wells.bcgs_numbers", "pk": 6761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009132"}}, {"model": "wells.bcgs_numbers", "pk": 6762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009133"}}, {"model": "wells.bcgs_numbers", "pk": 6763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009141"}}, {"model": "wells.bcgs_numbers", "pk": 6764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009234"}}, {"model": "wells.bcgs_numbers", "pk": 6765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009311"}}, {"model": "wells.bcgs_numbers", "pk": 6766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009312"}}, {"model": "wells.bcgs_numbers", "pk": 6767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009313"}}, {"model": "wells.bcgs_numbers", "pk": 6768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009314"}}, {"model": "wells.bcgs_numbers", "pk": 6769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G009331"}}, {"model": "wells.bcgs_numbers", "pk": 6770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G010124"}}, {"model": "wells.bcgs_numbers", "pk": 6771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G010142"}}, {"model": "wells.bcgs_numbers", "pk": 6772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G010143"}}, {"model": "wells.bcgs_numbers", "pk": 6773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G010312"}}, {"model": "wells.bcgs_numbers", "pk": 6774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G016223"}}, {"model": "wells.bcgs_numbers", "pk": 6775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G017122"}}, {"model": "wells.bcgs_numbers", "pk": 6776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G017222"}}, {"model": "wells.bcgs_numbers", "pk": 6777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G017224"}}, {"model": "wells.bcgs_numbers", "pk": 6778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G018114"}}, {"model": "wells.bcgs_numbers", "pk": 6779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G018121"}}, {"model": "wells.bcgs_numbers", "pk": 6780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G018122"}}, {"model": "wells.bcgs_numbers", "pk": 6781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G018123"}}, {"model": "wells.bcgs_numbers", "pk": 6782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G018124"}}, {"model": "wells.bcgs_numbers", "pk": 6783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G018142"}}, {"model": "wells.bcgs_numbers", "pk": 6784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018211"}}, {"model": "wells.bcgs_numbers", "pk": 6785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018213"}}, {"model": "wells.bcgs_numbers", "pk": 6786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018223"}}, {"model": "wells.bcgs_numbers", "pk": 6787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018233"}}, {"model": "wells.bcgs_numbers", "pk": 6788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018234"}}, {"model": "wells.bcgs_numbers", "pk": 6789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018342"}}, {"model": "wells.bcgs_numbers", "pk": 6790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018411"}}, {"model": "wells.bcgs_numbers", "pk": 6791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018413"}}, {"model": "wells.bcgs_numbers", "pk": 6792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G018431"}}, {"model": "wells.bcgs_numbers", "pk": 6793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G019331"}}, {"model": "wells.bcgs_numbers", "pk": 6794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G025312"}}, {"model": "wells.bcgs_numbers", "pk": 6795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G027241"}}, {"model": "wells.bcgs_numbers", "pk": 6796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G027243"}}, {"model": "wells.bcgs_numbers", "pk": 6797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G028223"}}, {"model": "wells.bcgs_numbers", "pk": 6798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G028342"}}, {"model": "wells.bcgs_numbers", "pk": 6799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G028431"}}, {"model": "wells.bcgs_numbers", "pk": 6800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G028432"}}, {"model": "wells.bcgs_numbers", "pk": 6801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G028433"}}, {"model": "wells.bcgs_numbers", "pk": 6802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G036231"}}, {"model": "wells.bcgs_numbers", "pk": 6803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038114"}}, {"model": "wells.bcgs_numbers", "pk": 6804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038132"}}, {"model": "wells.bcgs_numbers", "pk": 6805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038134"}}, {"model": "wells.bcgs_numbers", "pk": 6806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038312"}}, {"model": "wells.bcgs_numbers", "pk": 6807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038314"}}, {"model": "wells.bcgs_numbers", "pk": 6808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038332"}}, {"model": "wells.bcgs_numbers", "pk": 6809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038334"}}, {"model": "wells.bcgs_numbers", "pk": 6810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038341"}}, {"model": "wells.bcgs_numbers", "pk": 6811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G038344"}}, {"model": "wells.bcgs_numbers", "pk": 6812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G044424"}}, {"model": "wells.bcgs_numbers", "pk": 6813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G044442"}}, {"model": "wells.bcgs_numbers", "pk": 6814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G045224"}}, {"model": "wells.bcgs_numbers", "pk": 6815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G045311"}}, {"model": "wells.bcgs_numbers", "pk": 6816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G047222"}}, {"model": "wells.bcgs_numbers", "pk": 6817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G047223"}}, {"model": "wells.bcgs_numbers", "pk": 6818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G047243"}}, {"model": "wells.bcgs_numbers", "pk": 6819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G047244"}}, {"model": "wells.bcgs_numbers", "pk": 6820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G047434"}}, {"model": "wells.bcgs_numbers", "pk": 6821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G047443"}}, {"model": "wells.bcgs_numbers", "pk": 6822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G048112"}}, {"model": "wells.bcgs_numbers", "pk": 6823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G048113"}}, {"model": "wells.bcgs_numbers", "pk": 6824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G048131"}}, {"model": "wells.bcgs_numbers", "pk": 6825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G048133"}}, {"model": "wells.bcgs_numbers", "pk": 6826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G048311"}}, {"model": "wells.bcgs_numbers", "pk": 6827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G048313"}}, {"model": "wells.bcgs_numbers", "pk": 6828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G048331"}}, {"model": "wells.bcgs_numbers", "pk": 6829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057142"}}, {"model": "wells.bcgs_numbers", "pk": 6830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057144"}}, {"model": "wells.bcgs_numbers", "pk": 6831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057212"}}, {"model": "wells.bcgs_numbers", "pk": 6832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057221"}}, {"model": "wells.bcgs_numbers", "pk": 6833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057224"}}, {"model": "wells.bcgs_numbers", "pk": 6834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057233"}}, {"model": "wells.bcgs_numbers", "pk": 6835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057241"}}, {"model": "wells.bcgs_numbers", "pk": 6836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057423"}}, {"model": "wells.bcgs_numbers", "pk": 6837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057434"}}, {"model": "wells.bcgs_numbers", "pk": 6838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G057441"}}, {"model": "wells.bcgs_numbers", "pk": 6839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G060234"}}, {"model": "wells.bcgs_numbers", "pk": 6840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G063324"}}, {"model": "wells.bcgs_numbers", "pk": 6841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066114"}}, {"model": "wells.bcgs_numbers", "pk": 6842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066123"}}, {"model": "wells.bcgs_numbers", "pk": 6843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066124"}}, {"model": "wells.bcgs_numbers", "pk": 6844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066141"}}, {"model": "wells.bcgs_numbers", "pk": 6845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066142"}}, {"model": "wells.bcgs_numbers", "pk": 6846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066143"}}, {"model": "wells.bcgs_numbers", "pk": 6847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066231"}}, {"model": "wells.bcgs_numbers", "pk": 6848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066413"}}, {"model": "wells.bcgs_numbers", "pk": 6849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066432"}}, {"model": "wells.bcgs_numbers", "pk": 6850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066442"}}, {"model": "wells.bcgs_numbers", "pk": 6851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G066443"}}, {"model": "wells.bcgs_numbers", "pk": 6852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067214"}}, {"model": "wells.bcgs_numbers", "pk": 6853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067232"}}, {"model": "wells.bcgs_numbers", "pk": 6854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067342"}}, {"model": "wells.bcgs_numbers", "pk": 6855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067411"}}, {"model": "wells.bcgs_numbers", "pk": 6856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067413"}}, {"model": "wells.bcgs_numbers", "pk": 6857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067431"}}, {"model": "wells.bcgs_numbers", "pk": 6858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067432"}}, {"model": "wells.bcgs_numbers", "pk": 6859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G067434"}}, {"model": "wells.bcgs_numbers", "pk": 6860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G072442"}}, {"model": "wells.bcgs_numbers", "pk": 6861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G074332"}}, {"model": "wells.bcgs_numbers", "pk": 6862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075123"}}, {"model": "wells.bcgs_numbers", "pk": 6863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075142"}}, {"model": "wells.bcgs_numbers", "pk": 6864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075242"}}, {"model": "wells.bcgs_numbers", "pk": 6865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075411"}}, {"model": "wells.bcgs_numbers", "pk": 6866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075422"}}, {"model": "wells.bcgs_numbers", "pk": 6867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075432"}}, {"model": "wells.bcgs_numbers", "pk": 6868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G075443"}}, {"model": "wells.bcgs_numbers", "pk": 6869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076144"}}, {"model": "wells.bcgs_numbers", "pk": 6870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076211"}}, {"model": "wells.bcgs_numbers", "pk": 6871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076212"}}, {"model": "wells.bcgs_numbers", "pk": 6872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076213"}}, {"model": "wells.bcgs_numbers", "pk": 6873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076214"}}, {"model": "wells.bcgs_numbers", "pk": 6874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076221"}}, {"model": "wells.bcgs_numbers", "pk": 6875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076222"}}, {"model": "wells.bcgs_numbers", "pk": 6876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076231"}}, {"model": "wells.bcgs_numbers", "pk": 6877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076232"}}, {"model": "wells.bcgs_numbers", "pk": 6878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076234"}}, {"model": "wells.bcgs_numbers", "pk": 6879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076241"}}, {"model": "wells.bcgs_numbers", "pk": 6880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076312"}}, {"model": "wells.bcgs_numbers", "pk": 6881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076313"}}, {"model": "wells.bcgs_numbers", "pk": 6882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076331"}}, {"model": "wells.bcgs_numbers", "pk": 6883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076333"}}, {"model": "wells.bcgs_numbers", "pk": 6884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076344"}}, {"model": "wells.bcgs_numbers", "pk": 6885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076412"}}, {"model": "wells.bcgs_numbers", "pk": 6886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076414"}}, {"model": "wells.bcgs_numbers", "pk": 6887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076421"}}, {"model": "wells.bcgs_numbers", "pk": 6888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076423"}}, {"model": "wells.bcgs_numbers", "pk": 6889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076432"}}, {"model": "wells.bcgs_numbers", "pk": 6890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G076434"}}, {"model": "wells.bcgs_numbers", "pk": 6891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G076441"}}, {"model": "wells.bcgs_numbers", "pk": 6892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077212"}}, {"model": "wells.bcgs_numbers", "pk": 6893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077214"}}, {"model": "wells.bcgs_numbers", "pk": 6894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077221"}}, {"model": "wells.bcgs_numbers", "pk": 6895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077223"}}, {"model": "wells.bcgs_numbers", "pk": 6896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077232"}}, {"model": "wells.bcgs_numbers", "pk": 6897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077233"}}, {"model": "wells.bcgs_numbers", "pk": 6898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077234"}}, {"model": "wells.bcgs_numbers", "pk": 6899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077243"}}, {"model": "wells.bcgs_numbers", "pk": 6900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077324"}}, {"model": "wells.bcgs_numbers", "pk": 6901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077344"}}, {"model": "wells.bcgs_numbers", "pk": 6902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077411"}}, {"model": "wells.bcgs_numbers", "pk": 6903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077412"}}, {"model": "wells.bcgs_numbers", "pk": 6904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077413"}}, {"model": "wells.bcgs_numbers", "pk": 6905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077414"}}, {"model": "wells.bcgs_numbers", "pk": 6906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077424"}}, {"model": "wells.bcgs_numbers", "pk": 6907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077431"}}, {"model": "wells.bcgs_numbers", "pk": 6908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077432"}}, {"model": "wells.bcgs_numbers", "pk": 6909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077433"}}, {"model": "wells.bcgs_numbers", "pk": 6910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077434"}}, {"model": "wells.bcgs_numbers", "pk": 6911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077443"}}, {"model": "wells.bcgs_numbers", "pk": 6912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G077444"}}, {"model": "wells.bcgs_numbers", "pk": 6913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G078322"}}, {"model": "wells.bcgs_numbers", "pk": 6914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G078323"}}, {"model": "wells.bcgs_numbers", "pk": 6915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G078324"}}, {"model": "wells.bcgs_numbers", "pk": 6916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G078333"}}, {"model": "wells.bcgs_numbers", "pk": 6917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G078341"}}, {"model": "wells.bcgs_numbers", "pk": 6918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G079231"}}, {"model": "wells.bcgs_numbers", "pk": 6919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G080444"}}, {"model": "wells.bcgs_numbers", "pk": 6920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081243"}}, {"model": "wells.bcgs_numbers", "pk": 6921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081334"}}, {"model": "wells.bcgs_numbers", "pk": 6922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081342"}}, {"model": "wells.bcgs_numbers", "pk": 6923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081343"}}, {"model": "wells.bcgs_numbers", "pk": 6924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081412"}}, {"model": "wells.bcgs_numbers", "pk": 6925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081413"}}, {"model": "wells.bcgs_numbers", "pk": 6926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081414"}}, {"model": "wells.bcgs_numbers", "pk": 6927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081421"}}, {"model": "wells.bcgs_numbers", "pk": 6928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081422"}}, {"model": "wells.bcgs_numbers", "pk": 6929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081423"}}, {"model": "wells.bcgs_numbers", "pk": 6930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081431"}}, {"model": "wells.bcgs_numbers", "pk": 6931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081432"}}, {"model": "wells.bcgs_numbers", "pk": 6932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081433"}}, {"model": "wells.bcgs_numbers", "pk": 6933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081434"}}, {"model": "wells.bcgs_numbers", "pk": 6934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081441"}}, {"model": "wells.bcgs_numbers", "pk": 6935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081442"}}, {"model": "wells.bcgs_numbers", "pk": 6936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G081444"}}, {"model": "wells.bcgs_numbers", "pk": 6937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082124"}}, {"model": "wells.bcgs_numbers", "pk": 6938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082141"}}, {"model": "wells.bcgs_numbers", "pk": 6939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082142"}}, {"model": "wells.bcgs_numbers", "pk": 6940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082144"}}, {"model": "wells.bcgs_numbers", "pk": 6941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082311"}}, {"model": "wells.bcgs_numbers", "pk": 6942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082314"}}, {"model": "wells.bcgs_numbers", "pk": 6943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082322"}}, {"model": "wells.bcgs_numbers", "pk": 6944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082323"}}, {"model": "wells.bcgs_numbers", "pk": 6945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082324"}}, {"model": "wells.bcgs_numbers", "pk": 6946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082332"}}, {"model": "wells.bcgs_numbers", "pk": 6947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082333"}}, {"model": "wells.bcgs_numbers", "pk": 6948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082334"}}, {"model": "wells.bcgs_numbers", "pk": 6949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082341"}}, {"model": "wells.bcgs_numbers", "pk": 6950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082343"}}, {"model": "wells.bcgs_numbers", "pk": 6951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082414"}}, {"model": "wells.bcgs_numbers", "pk": 6952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082441"}}, {"model": "wells.bcgs_numbers", "pk": 6953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082443"}}, {"model": "wells.bcgs_numbers", "pk": 6954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G082444"}}, {"model": "wells.bcgs_numbers", "pk": 6955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083332"}}, {"model": "wells.bcgs_numbers", "pk": 6956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083333"}}, {"model": "wells.bcgs_numbers", "pk": 6957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083342"}}, {"model": "wells.bcgs_numbers", "pk": 6958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083343"}}, {"model": "wells.bcgs_numbers", "pk": 6959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083344"}}, {"model": "wells.bcgs_numbers", "pk": 6960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083432"}}, {"model": "wells.bcgs_numbers", "pk": 6961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083434"}}, {"model": "wells.bcgs_numbers", "pk": 6962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G083442"}}, {"model": "wells.bcgs_numbers", "pk": 6963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G084134"}}, {"model": "wells.bcgs_numbers", "pk": 6964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G084223"}}, {"model": "wells.bcgs_numbers", "pk": 6965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G084242"}}, {"model": "wells.bcgs_numbers", "pk": 6966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G084311"}}, {"model": "wells.bcgs_numbers", "pk": 6967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G084414"}}, {"model": "wells.bcgs_numbers", "pk": 6968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G084423"}}, {"model": "wells.bcgs_numbers", "pk": 6969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085131"}}, {"model": "wells.bcgs_numbers", "pk": 6970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085142"}}, {"model": "wells.bcgs_numbers", "pk": 6971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085212"}}, {"model": "wells.bcgs_numbers", "pk": 6972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085213"}}, {"model": "wells.bcgs_numbers", "pk": 6973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085214"}}, {"model": "wells.bcgs_numbers", "pk": 6974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085221"}}, {"model": "wells.bcgs_numbers", "pk": 6975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085222"}}, {"model": "wells.bcgs_numbers", "pk": 6976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085223"}}, {"model": "wells.bcgs_numbers", "pk": 6977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085224"}}, {"model": "wells.bcgs_numbers", "pk": 6978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085231"}}, {"model": "wells.bcgs_numbers", "pk": 6979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085234"}}, {"model": "wells.bcgs_numbers", "pk": 6980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085241"}}, {"model": "wells.bcgs_numbers", "pk": 6981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085242"}}, {"model": "wells.bcgs_numbers", "pk": 6982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085243"}}, {"model": "wells.bcgs_numbers", "pk": 6983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085244"}}, {"model": "wells.bcgs_numbers", "pk": 6984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085311"}}, {"model": "wells.bcgs_numbers", "pk": 6985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085312"}}, {"model": "wells.bcgs_numbers", "pk": 6986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085313"}}, {"model": "wells.bcgs_numbers", "pk": 6987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085321"}}, {"model": "wells.bcgs_numbers", "pk": 6988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085322"}}, {"model": "wells.bcgs_numbers", "pk": 6989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085323"}}, {"model": "wells.bcgs_numbers", "pk": 6990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G085422"}}, {"model": "wells.bcgs_numbers", "pk": 6991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086112"}}, {"model": "wells.bcgs_numbers", "pk": 6992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086114"}}, {"model": "wells.bcgs_numbers", "pk": 6993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086121"}}, {"model": "wells.bcgs_numbers", "pk": 6994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086122"}}, {"model": "wells.bcgs_numbers", "pk": 6995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086123"}}, {"model": "wells.bcgs_numbers", "pk": 6996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086124"}}, {"model": "wells.bcgs_numbers", "pk": 6997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086132"}}, {"model": "wells.bcgs_numbers", "pk": 6998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086134"}}, {"model": "wells.bcgs_numbers", "pk": 6999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086141"}}, {"model": "wells.bcgs_numbers", "pk": 7000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086142"}}, {"model": "wells.bcgs_numbers", "pk": 7001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086143"}}, {"model": "wells.bcgs_numbers", "pk": 7002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086144"}}, {"model": "wells.bcgs_numbers", "pk": 7003, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086211"}}, {"model": "wells.bcgs_numbers", "pk": 7004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086212"}}, {"model": "wells.bcgs_numbers", "pk": 7005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086213"}}, {"model": "wells.bcgs_numbers", "pk": 7006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086214"}}, {"model": "wells.bcgs_numbers", "pk": 7007, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086221"}}, {"model": "wells.bcgs_numbers", "pk": 7008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086223"}}, {"model": "wells.bcgs_numbers", "pk": 7009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086224"}}, {"model": "wells.bcgs_numbers", "pk": 7010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086231"}}, {"model": "wells.bcgs_numbers", "pk": 7011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086232"}}, {"model": "wells.bcgs_numbers", "pk": 7012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086233"}}, {"model": "wells.bcgs_numbers", "pk": 7013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086241"}}, {"model": "wells.bcgs_numbers", "pk": 7014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086242"}}, {"model": "wells.bcgs_numbers", "pk": 7015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086243"}}, {"model": "wells.bcgs_numbers", "pk": 7016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086244"}}, {"model": "wells.bcgs_numbers", "pk": 7017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086311"}}, {"model": "wells.bcgs_numbers", "pk": 7018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086321"}}, {"model": "wells.bcgs_numbers", "pk": 7019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086322"}}, {"model": "wells.bcgs_numbers", "pk": 7020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086332"}}, {"model": "wells.bcgs_numbers", "pk": 7021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086342"}}, {"model": "wells.bcgs_numbers", "pk": 7022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086411"}}, {"model": "wells.bcgs_numbers", "pk": 7023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086421"}}, {"model": "wells.bcgs_numbers", "pk": 7024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086422"}}, {"model": "wells.bcgs_numbers", "pk": 7025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G086432"}}, {"model": "wells.bcgs_numbers", "pk": 7026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087113"}}, {"model": "wells.bcgs_numbers", "pk": 7027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087124"}}, {"model": "wells.bcgs_numbers", "pk": 7028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087141"}}, {"model": "wells.bcgs_numbers", "pk": 7029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087143"}}, {"model": "wells.bcgs_numbers", "pk": 7030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087144"}}, {"model": "wells.bcgs_numbers", "pk": 7031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087211"}}, {"model": "wells.bcgs_numbers", "pk": 7032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087212"}}, {"model": "wells.bcgs_numbers", "pk": 7033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087214"}}, {"model": "wells.bcgs_numbers", "pk": 7034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087221"}}, {"model": "wells.bcgs_numbers", "pk": 7035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087222"}}, {"model": "wells.bcgs_numbers", "pk": 7036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087224"}}, {"model": "wells.bcgs_numbers", "pk": 7037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087231"}}, {"model": "wells.bcgs_numbers", "pk": 7038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087232"}}, {"model": "wells.bcgs_numbers", "pk": 7039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087233"}}, {"model": "wells.bcgs_numbers", "pk": 7040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087241"}}, {"model": "wells.bcgs_numbers", "pk": 7041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087242"}}, {"model": "wells.bcgs_numbers", "pk": 7042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087243"}}, {"model": "wells.bcgs_numbers", "pk": 7043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087311"}}, {"model": "wells.bcgs_numbers", "pk": 7044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087312"}}, {"model": "wells.bcgs_numbers", "pk": 7045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087313"}}, {"model": "wells.bcgs_numbers", "pk": 7046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087314"}}, {"model": "wells.bcgs_numbers", "pk": 7047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087321"}}, {"model": "wells.bcgs_numbers", "pk": 7048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087322"}}, {"model": "wells.bcgs_numbers", "pk": 7049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087331"}}, {"model": "wells.bcgs_numbers", "pk": 7050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087332"}}, {"model": "wells.bcgs_numbers", "pk": 7051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087333"}}, {"model": "wells.bcgs_numbers", "pk": 7052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087334"}}, {"model": "wells.bcgs_numbers", "pk": 7053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087341"}}, {"model": "wells.bcgs_numbers", "pk": 7054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087343"}}, {"model": "wells.bcgs_numbers", "pk": 7055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087411"}}, {"model": "wells.bcgs_numbers", "pk": 7056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087412"}}, {"model": "wells.bcgs_numbers", "pk": 7057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087413"}}, {"model": "wells.bcgs_numbers", "pk": 7058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087414"}}, {"model": "wells.bcgs_numbers", "pk": 7059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087422"}}, {"model": "wells.bcgs_numbers", "pk": 7060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087423"}}, {"model": "wells.bcgs_numbers", "pk": 7061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087424"}}, {"model": "wells.bcgs_numbers", "pk": 7062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087432"}}, {"model": "wells.bcgs_numbers", "pk": 7063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087433"}}, {"model": "wells.bcgs_numbers", "pk": 7064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087434"}}, {"model": "wells.bcgs_numbers", "pk": 7065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087441"}}, {"model": "wells.bcgs_numbers", "pk": 7066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087443"}}, {"model": "wells.bcgs_numbers", "pk": 7067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G087444"}}, {"model": "wells.bcgs_numbers", "pk": 7068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088112"}}, {"model": "wells.bcgs_numbers", "pk": 7069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088114"}}, {"model": "wells.bcgs_numbers", "pk": 7070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088121"}}, {"model": "wells.bcgs_numbers", "pk": 7071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088131"}}, {"model": "wells.bcgs_numbers", "pk": 7072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088132"}}, {"model": "wells.bcgs_numbers", "pk": 7073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088133"}}, {"model": "wells.bcgs_numbers", "pk": 7074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088134"}}, {"model": "wells.bcgs_numbers", "pk": 7075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088141"}}, {"model": "wells.bcgs_numbers", "pk": 7076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088311"}}, {"model": "wells.bcgs_numbers", "pk": 7077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G088333"}}, {"model": "wells.bcgs_numbers", "pk": 7078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G091112"}}, {"model": "wells.bcgs_numbers", "pk": 7079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G091113"}}, {"model": "wells.bcgs_numbers", "pk": 7080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G091114"}}, {"model": "wells.bcgs_numbers", "pk": 7081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G091121"}}, {"model": "wells.bcgs_numbers", "pk": 7082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091132"}}, {"model": "wells.bcgs_numbers", "pk": 7083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091133"}}, {"model": "wells.bcgs_numbers", "pk": 7084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091134"}}, {"model": "wells.bcgs_numbers", "pk": 7085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091143"}}, {"model": "wells.bcgs_numbers", "pk": 7086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091211"}}, {"model": "wells.bcgs_numbers", "pk": 7087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091212"}}, {"model": "wells.bcgs_numbers", "pk": 7088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091214"}}, {"model": "wells.bcgs_numbers", "pk": 7089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091223"}}, {"model": "wells.bcgs_numbers", "pk": 7090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091241"}}, {"model": "wells.bcgs_numbers", "pk": 7091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091242"}}, {"model": "wells.bcgs_numbers", "pk": 7092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091243"}}, {"model": "wells.bcgs_numbers", "pk": 7093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091244"}}, {"model": "wells.bcgs_numbers", "pk": 7094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091311"}}, {"model": "wells.bcgs_numbers", "pk": 7095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091312"}}, {"model": "wells.bcgs_numbers", "pk": 7096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091313"}}, {"model": "wells.bcgs_numbers", "pk": 7097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091314"}}, {"model": "wells.bcgs_numbers", "pk": 7098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091321"}}, {"model": "wells.bcgs_numbers", "pk": 7099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091322"}}, {"model": "wells.bcgs_numbers", "pk": 7100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091331"}}, {"model": "wells.bcgs_numbers", "pk": 7101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091332"}}, {"model": "wells.bcgs_numbers", "pk": 7102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091333"}}, {"model": "wells.bcgs_numbers", "pk": 7103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091334"}}, {"model": "wells.bcgs_numbers", "pk": 7104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091342"}}, {"model": "wells.bcgs_numbers", "pk": 7105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091343"}}, {"model": "wells.bcgs_numbers", "pk": 7106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091411"}}, {"model": "wells.bcgs_numbers", "pk": 7107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091412"}}, {"model": "wells.bcgs_numbers", "pk": 7108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091413"}}, {"model": "wells.bcgs_numbers", "pk": 7109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091414"}}, {"model": "wells.bcgs_numbers", "pk": 7110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091421"}}, {"model": "wells.bcgs_numbers", "pk": 7111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091442"}}, {"model": "wells.bcgs_numbers", "pk": 7112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G091444"}}, {"model": "wells.bcgs_numbers", "pk": 7113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092112"}}, {"model": "wells.bcgs_numbers", "pk": 7114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092114"}}, {"model": "wells.bcgs_numbers", "pk": 7115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092134"}}, {"model": "wells.bcgs_numbers", "pk": 7116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092141"}}, {"model": "wells.bcgs_numbers", "pk": 7117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092142"}}, {"model": "wells.bcgs_numbers", "pk": 7118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092213"}}, {"model": "wells.bcgs_numbers", "pk": 7119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092221"}}, {"model": "wells.bcgs_numbers", "pk": 7120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092222"}}, {"model": "wells.bcgs_numbers", "pk": 7121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092224"}}, {"model": "wells.bcgs_numbers", "pk": 7122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092242"}}, {"model": "wells.bcgs_numbers", "pk": 7123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G093111"}}, {"model": "wells.bcgs_numbers", "pk": 7124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G093113"}}, {"model": "wells.bcgs_numbers", "pk": 7125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G094234"}}, {"model": "wells.bcgs_numbers", "pk": 7126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G094412"}}, {"model": "wells.bcgs_numbers", "pk": 7127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G094421"}}, {"model": "wells.bcgs_numbers", "pk": 7128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095233"}}, {"model": "wells.bcgs_numbers", "pk": 7129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095324"}}, {"model": "wells.bcgs_numbers", "pk": 7130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095334"}}, {"model": "wells.bcgs_numbers", "pk": 7131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095342"}}, {"model": "wells.bcgs_numbers", "pk": 7132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095343"}}, {"model": "wells.bcgs_numbers", "pk": 7133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095344"}}, {"model": "wells.bcgs_numbers", "pk": 7134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095412"}}, {"model": "wells.bcgs_numbers", "pk": 7135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095413"}}, {"model": "wells.bcgs_numbers", "pk": 7136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G095434"}}, {"model": "wells.bcgs_numbers", "pk": 7137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G096112"}}, {"model": "wells.bcgs_numbers", "pk": 7138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G096132"}}, {"model": "wells.bcgs_numbers", "pk": 7139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G096134"}}, {"model": "wells.bcgs_numbers", "pk": 7140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G096141"}}, {"model": "wells.bcgs_numbers", "pk": 7141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G096142"}}, {"model": "wells.bcgs_numbers", "pk": 7142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096143"}}, {"model": "wells.bcgs_numbers", "pk": 7143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096144"}}, {"model": "wells.bcgs_numbers", "pk": 7144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096213"}}, {"model": "wells.bcgs_numbers", "pk": 7145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096214"}}, {"model": "wells.bcgs_numbers", "pk": 7146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096222"}}, {"model": "wells.bcgs_numbers", "pk": 7147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096223"}}, {"model": "wells.bcgs_numbers", "pk": 7148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096232"}}, {"model": "wells.bcgs_numbers", "pk": 7149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096241"}}, {"model": "wells.bcgs_numbers", "pk": 7150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096242"}}, {"model": "wells.bcgs_numbers", "pk": 7151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096243"}}, {"model": "wells.bcgs_numbers", "pk": 7152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096244"}}, {"model": "wells.bcgs_numbers", "pk": 7153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096321"}}, {"model": "wells.bcgs_numbers", "pk": 7154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096322"}}, {"model": "wells.bcgs_numbers", "pk": 7155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096414"}}, {"model": "wells.bcgs_numbers", "pk": 7156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096421"}}, {"model": "wells.bcgs_numbers", "pk": 7157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096422"}}, {"model": "wells.bcgs_numbers", "pk": 7158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096423"}}, {"model": "wells.bcgs_numbers", "pk": 7159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096431"}}, {"model": "wells.bcgs_numbers", "pk": 7160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096432"}}, {"model": "wells.bcgs_numbers", "pk": 7161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096442"}}, {"model": "wells.bcgs_numbers", "pk": 7162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G096444"}}, {"model": "wells.bcgs_numbers", "pk": 7163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097111"}}, {"model": "wells.bcgs_numbers", "pk": 7164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097112"}}, {"model": "wells.bcgs_numbers", "pk": 7165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097122"}}, {"model": "wells.bcgs_numbers", "pk": 7166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097123"}}, {"model": "wells.bcgs_numbers", "pk": 7167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097124"}}, {"model": "wells.bcgs_numbers", "pk": 7168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097131"}}, {"model": "wells.bcgs_numbers", "pk": 7169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097132"}}, {"model": "wells.bcgs_numbers", "pk": 7170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097133"}}, {"model": "wells.bcgs_numbers", "pk": 7171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097134"}}, {"model": "wells.bcgs_numbers", "pk": 7172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097141"}}, {"model": "wells.bcgs_numbers", "pk": 7173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097142"}}, {"model": "wells.bcgs_numbers", "pk": 7174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097144"}}, {"model": "wells.bcgs_numbers", "pk": 7175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097211"}}, {"model": "wells.bcgs_numbers", "pk": 7176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097212"}}, {"model": "wells.bcgs_numbers", "pk": 7177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097213"}}, {"model": "wells.bcgs_numbers", "pk": 7178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097214"}}, {"model": "wells.bcgs_numbers", "pk": 7179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097221"}}, {"model": "wells.bcgs_numbers", "pk": 7180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097222"}}, {"model": "wells.bcgs_numbers", "pk": 7181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097223"}}, {"model": "wells.bcgs_numbers", "pk": 7182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097224"}}, {"model": "wells.bcgs_numbers", "pk": 7183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097232"}}, {"model": "wells.bcgs_numbers", "pk": 7184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G097233"}}, {"model": "wells.bcgs_numbers", "pk": 7185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097234"}}, {"model": "wells.bcgs_numbers", "pk": 7186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097242"}}, {"model": "wells.bcgs_numbers", "pk": 7187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097312"}}, {"model": "wells.bcgs_numbers", "pk": 7188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097313"}}, {"model": "wells.bcgs_numbers", "pk": 7189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097314"}}, {"model": "wells.bcgs_numbers", "pk": 7190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097321"}}, {"model": "wells.bcgs_numbers", "pk": 7191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097323"}}, {"model": "wells.bcgs_numbers", "pk": 7192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097324"}}, {"model": "wells.bcgs_numbers", "pk": 7193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097331"}}, {"model": "wells.bcgs_numbers", "pk": 7194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097332"}}, {"model": "wells.bcgs_numbers", "pk": 7195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097333"}}, {"model": "wells.bcgs_numbers", "pk": 7196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097341"}}, {"model": "wells.bcgs_numbers", "pk": 7197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097342"}}, {"model": "wells.bcgs_numbers", "pk": 7198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097343"}}, {"model": "wells.bcgs_numbers", "pk": 7199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097344"}}, {"model": "wells.bcgs_numbers", "pk": 7200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097411"}}, {"model": "wells.bcgs_numbers", "pk": 7201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097412"}}, {"model": "wells.bcgs_numbers", "pk": 7202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097413"}}, {"model": "wells.bcgs_numbers", "pk": 7203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097423"}}, {"model": "wells.bcgs_numbers", "pk": 7204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097424"}}, {"model": "wells.bcgs_numbers", "pk": 7205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097431"}}, {"model": "wells.bcgs_numbers", "pk": 7206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097433"}}, {"model": "wells.bcgs_numbers", "pk": 7207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097441"}}, {"model": "wells.bcgs_numbers", "pk": 7208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097442"}}, {"model": "wells.bcgs_numbers", "pk": 7209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G097444"}}, {"model": "wells.bcgs_numbers", "pk": 7210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098111"}}, {"model": "wells.bcgs_numbers", "pk": 7211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098112"}}, {"model": "wells.bcgs_numbers", "pk": 7212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098113"}}, {"model": "wells.bcgs_numbers", "pk": 7213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098114"}}, {"model": "wells.bcgs_numbers", "pk": 7214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098121"}}, {"model": "wells.bcgs_numbers", "pk": 7215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098123"}}, {"model": "wells.bcgs_numbers", "pk": 7216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098132"}}, {"model": "wells.bcgs_numbers", "pk": 7217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098141"}}, {"model": "wells.bcgs_numbers", "pk": 7218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098142"}}, {"model": "wells.bcgs_numbers", "pk": 7219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098143"}}, {"model": "wells.bcgs_numbers", "pk": 7220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098144"}}, {"model": "wells.bcgs_numbers", "pk": 7221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098233"}}, {"model": "wells.bcgs_numbers", "pk": 7222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098311"}}, {"model": "wells.bcgs_numbers", "pk": 7223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098312"}}, {"model": "wells.bcgs_numbers", "pk": 7224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098313"}}, {"model": "wells.bcgs_numbers", "pk": 7225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098314"}}, {"model": "wells.bcgs_numbers", "pk": 7226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098323"}}, {"model": "wells.bcgs_numbers", "pk": 7227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098324"}}, {"model": "wells.bcgs_numbers", "pk": 7228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098331"}}, {"model": "wells.bcgs_numbers", "pk": 7229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098332"}}, {"model": "wells.bcgs_numbers", "pk": 7230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098341"}}, {"model": "wells.bcgs_numbers", "pk": 7231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098342"}}, {"model": "wells.bcgs_numbers", "pk": 7232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098343"}}, {"model": "wells.bcgs_numbers", "pk": 7233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098344"}}, {"model": "wells.bcgs_numbers", "pk": 7234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098411"}}, {"model": "wells.bcgs_numbers", "pk": 7235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098413"}}, {"model": "wells.bcgs_numbers", "pk": 7236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098414"}}, {"model": "wells.bcgs_numbers", "pk": 7237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098431"}}, {"model": "wells.bcgs_numbers", "pk": 7238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098432"}}, {"model": "wells.bcgs_numbers", "pk": 7239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G098441"}}, {"model": "wells.bcgs_numbers", "pk": 7240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G099333"}}, {"model": "wells.bcgs_numbers", "pk": 7241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H001133"}}, {"model": "wells.bcgs_numbers", "pk": 7242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H001314"}}, {"model": "wells.bcgs_numbers", "pk": 7243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H003324"}}, {"model": "wells.bcgs_numbers", "pk": 7244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H003334"}}, {"model": "wells.bcgs_numbers", "pk": 7245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H003342"}}, {"model": "wells.bcgs_numbers", "pk": 7246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H003411"}}, {"model": "wells.bcgs_numbers", "pk": 7247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H012222"}}, {"model": "wells.bcgs_numbers", "pk": 7248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H013112"}}, {"model": "wells.bcgs_numbers", "pk": 7249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H030341"}}, {"model": "wells.bcgs_numbers", "pk": 7250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H039234"}}, {"model": "wells.bcgs_numbers", "pk": 7251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H039241"}}, {"model": "wells.bcgs_numbers", "pk": 7252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H039322"}}, {"model": "wells.bcgs_numbers", "pk": 7253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H040122"}}, {"model": "wells.bcgs_numbers", "pk": 7254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H057413"}}, {"model": "wells.bcgs_numbers", "pk": 7255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H057431"}}, {"model": "wells.bcgs_numbers", "pk": 7256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H058111"}}, {"model": "wells.bcgs_numbers", "pk": 7257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H072323"}}, {"model": "wells.bcgs_numbers", "pk": 7258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H075124"}}, {"model": "wells.bcgs_numbers", "pk": 7259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H075141"}}, {"model": "wells.bcgs_numbers", "pk": 7260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H075421"}}, {"model": "wells.bcgs_numbers", "pk": 7261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H081314"}}, {"model": "wells.bcgs_numbers", "pk": 7262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093I001423"}}, {"model": "wells.bcgs_numbers", "pk": 7263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093I011123"}}, {"model": "wells.bcgs_numbers", "pk": 7264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001111"}}, {"model": "wells.bcgs_numbers", "pk": 7265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001112"}}, {"model": "wells.bcgs_numbers", "pk": 7266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001113"}}, {"model": "wells.bcgs_numbers", "pk": 7267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001114"}}, {"model": "wells.bcgs_numbers", "pk": 7268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001121"}}, {"model": "wells.bcgs_numbers", "pk": 7269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001122"}}, {"model": "wells.bcgs_numbers", "pk": 7270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001123"}}, {"model": "wells.bcgs_numbers", "pk": 7271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001124"}}, {"model": "wells.bcgs_numbers", "pk": 7272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001131"}}, {"model": "wells.bcgs_numbers", "pk": 7273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001132"}}, {"model": "wells.bcgs_numbers", "pk": 7274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001133"}}, {"model": "wells.bcgs_numbers", "pk": 7275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001134"}}, {"model": "wells.bcgs_numbers", "pk": 7276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001141"}}, {"model": "wells.bcgs_numbers", "pk": 7277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001142"}}, {"model": "wells.bcgs_numbers", "pk": 7278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001143"}}, {"model": "wells.bcgs_numbers", "pk": 7279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001144"}}, {"model": "wells.bcgs_numbers", "pk": 7280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001212"}}, {"model": "wells.bcgs_numbers", "pk": 7281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001213"}}, {"model": "wells.bcgs_numbers", "pk": 7282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001234"}}, {"model": "wells.bcgs_numbers", "pk": 7283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001311"}}, {"model": "wells.bcgs_numbers", "pk": 7284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001313"}}, {"model": "wells.bcgs_numbers", "pk": 7285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001321"}}, {"model": "wells.bcgs_numbers", "pk": 7286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001322"}}, {"model": "wells.bcgs_numbers", "pk": 7287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001323"}}, {"model": "wells.bcgs_numbers", "pk": 7288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001324"}}, {"model": "wells.bcgs_numbers", "pk": 7289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001342"}}, {"model": "wells.bcgs_numbers", "pk": 7290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001411"}}, {"model": "wells.bcgs_numbers", "pk": 7291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001412"}}, {"model": "wells.bcgs_numbers", "pk": 7292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001413"}}, {"model": "wells.bcgs_numbers", "pk": 7293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001414"}}, {"model": "wells.bcgs_numbers", "pk": 7294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001421"}}, {"model": "wells.bcgs_numbers", "pk": 7295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J001423"}}, {"model": "wells.bcgs_numbers", "pk": 7296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002222"}}, {"model": "wells.bcgs_numbers", "pk": 7297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002243"}}, {"model": "wells.bcgs_numbers", "pk": 7298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002311"}}, {"model": "wells.bcgs_numbers", "pk": 7299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002312"}}, {"model": "wells.bcgs_numbers", "pk": 7300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002321"}}, {"model": "wells.bcgs_numbers", "pk": 7301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002322"}}, {"model": "wells.bcgs_numbers", "pk": 7302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002331"}}, {"model": "wells.bcgs_numbers", "pk": 7303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002332"}}, {"model": "wells.bcgs_numbers", "pk": 7304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002333"}}, {"model": "wells.bcgs_numbers", "pk": 7305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002412"}}, {"model": "wells.bcgs_numbers", "pk": 7306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002414"}}, {"model": "wells.bcgs_numbers", "pk": 7307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002421"}}, {"model": "wells.bcgs_numbers", "pk": 7308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002434"}}, {"model": "wells.bcgs_numbers", "pk": 7309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002441"}}, {"model": "wells.bcgs_numbers", "pk": 7310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J002443"}}, {"model": "wells.bcgs_numbers", "pk": 7311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J004213"}}, {"model": "wells.bcgs_numbers", "pk": 7312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J004231"}}, {"model": "wells.bcgs_numbers", "pk": 7313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005113"}}, {"model": "wells.bcgs_numbers", "pk": 7314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005114"}}, {"model": "wells.bcgs_numbers", "pk": 7315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005123"}}, {"model": "wells.bcgs_numbers", "pk": 7316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005124"}}, {"model": "wells.bcgs_numbers", "pk": 7317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005141"}}, {"model": "wells.bcgs_numbers", "pk": 7318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005142"}}, {"model": "wells.bcgs_numbers", "pk": 7319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005211"}}, {"model": "wells.bcgs_numbers", "pk": 7320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005212"}}, {"model": "wells.bcgs_numbers", "pk": 7321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005213"}}, {"model": "wells.bcgs_numbers", "pk": 7322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005214"}}, {"model": "wells.bcgs_numbers", "pk": 7323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005221"}}, {"model": "wells.bcgs_numbers", "pk": 7324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005222"}}, {"model": "wells.bcgs_numbers", "pk": 7325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005223"}}, {"model": "wells.bcgs_numbers", "pk": 7326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005243"}}, {"model": "wells.bcgs_numbers", "pk": 7327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005244"}}, {"model": "wells.bcgs_numbers", "pk": 7328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005422"}}, {"model": "wells.bcgs_numbers", "pk": 7329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J005433"}}, {"model": "wells.bcgs_numbers", "pk": 7330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J005434"}}, {"model": "wells.bcgs_numbers", "pk": 7331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J005443"}}, {"model": "wells.bcgs_numbers", "pk": 7332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J005444"}}, {"model": "wells.bcgs_numbers", "pk": 7333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006111"}}, {"model": "wells.bcgs_numbers", "pk": 7334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006112"}}, {"model": "wells.bcgs_numbers", "pk": 7335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006113"}}, {"model": "wells.bcgs_numbers", "pk": 7336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006121"}}, {"model": "wells.bcgs_numbers", "pk": 7337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006122"}}, {"model": "wells.bcgs_numbers", "pk": 7338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006123"}}, {"model": "wells.bcgs_numbers", "pk": 7339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006124"}}, {"model": "wells.bcgs_numbers", "pk": 7340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006131"}}, {"model": "wells.bcgs_numbers", "pk": 7341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006133"}}, {"model": "wells.bcgs_numbers", "pk": 7342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006212"}}, {"model": "wells.bcgs_numbers", "pk": 7343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006214"}}, {"model": "wells.bcgs_numbers", "pk": 7344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006221"}}, {"model": "wells.bcgs_numbers", "pk": 7345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006222"}}, {"model": "wells.bcgs_numbers", "pk": 7346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006223"}}, {"model": "wells.bcgs_numbers", "pk": 7347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006224"}}, {"model": "wells.bcgs_numbers", "pk": 7348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006232"}}, {"model": "wells.bcgs_numbers", "pk": 7349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006241"}}, {"model": "wells.bcgs_numbers", "pk": 7350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006242"}}, {"model": "wells.bcgs_numbers", "pk": 7351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006244"}}, {"model": "wells.bcgs_numbers", "pk": 7352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006313"}}, {"model": "wells.bcgs_numbers", "pk": 7353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006331"}}, {"model": "wells.bcgs_numbers", "pk": 7354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006333"}}, {"model": "wells.bcgs_numbers", "pk": 7355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J006422"}}, {"model": "wells.bcgs_numbers", "pk": 7356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007111"}}, {"model": "wells.bcgs_numbers", "pk": 7357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007113"}}, {"model": "wells.bcgs_numbers", "pk": 7358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007121"}}, {"model": "wells.bcgs_numbers", "pk": 7359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007123"}}, {"model": "wells.bcgs_numbers", "pk": 7360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007124"}}, {"model": "wells.bcgs_numbers", "pk": 7361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007131"}}, {"model": "wells.bcgs_numbers", "pk": 7362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007132"}}, {"model": "wells.bcgs_numbers", "pk": 7363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007133"}}, {"model": "wells.bcgs_numbers", "pk": 7364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007134"}}, {"model": "wells.bcgs_numbers", "pk": 7365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007141"}}, {"model": "wells.bcgs_numbers", "pk": 7366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007143"}}, {"model": "wells.bcgs_numbers", "pk": 7367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007213"}}, {"model": "wells.bcgs_numbers", "pk": 7368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007221"}}, {"model": "wells.bcgs_numbers", "pk": 7369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007222"}}, {"model": "wells.bcgs_numbers", "pk": 7370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007224"}}, {"model": "wells.bcgs_numbers", "pk": 7371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007311"}}, {"model": "wells.bcgs_numbers", "pk": 7372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007312"}}, {"model": "wells.bcgs_numbers", "pk": 7373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007324"}}, {"model": "wells.bcgs_numbers", "pk": 7374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007334"}}, {"model": "wells.bcgs_numbers", "pk": 7375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007342"}}, {"model": "wells.bcgs_numbers", "pk": 7376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007343"}}, {"model": "wells.bcgs_numbers", "pk": 7377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "093J007433"}}, {"model": "wells.bcgs_numbers", "pk": 7378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J007434"}}, {"model": "wells.bcgs_numbers", "pk": 7379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J007442"}}, {"model": "wells.bcgs_numbers", "pk": 7380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J007443"}}, {"model": "wells.bcgs_numbers", "pk": 7381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J007444"}}, {"model": "wells.bcgs_numbers", "pk": 7382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008211"}}, {"model": "wells.bcgs_numbers", "pk": 7383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008234"}}, {"model": "wells.bcgs_numbers", "pk": 7384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008331"}}, {"model": "wells.bcgs_numbers", "pk": 7385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008333"}}, {"model": "wells.bcgs_numbers", "pk": 7386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008334"}}, {"model": "wells.bcgs_numbers", "pk": 7387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008341"}}, {"model": "wells.bcgs_numbers", "pk": 7388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008342"}}, {"model": "wells.bcgs_numbers", "pk": 7389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008343"}}, {"model": "wells.bcgs_numbers", "pk": 7390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008413"}}, {"model": "wells.bcgs_numbers", "pk": 7391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J008414"}}, {"model": "wells.bcgs_numbers", "pk": 7392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J009311"}}, {"model": "wells.bcgs_numbers", "pk": 7393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J009313"}}, {"model": "wells.bcgs_numbers", "pk": 7394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J009314"}}, {"model": "wells.bcgs_numbers", "pk": 7395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J009331"}}, {"model": "wells.bcgs_numbers", "pk": 7396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J009332"}}, {"model": "wells.bcgs_numbers", "pk": 7397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015123"}}, {"model": "wells.bcgs_numbers", "pk": 7398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015124"}}, {"model": "wells.bcgs_numbers", "pk": 7399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015143"}}, {"model": "wells.bcgs_numbers", "pk": 7400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015211"}}, {"model": "wells.bcgs_numbers", "pk": 7401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015222"}}, {"model": "wells.bcgs_numbers", "pk": 7402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015312"}}, {"model": "wells.bcgs_numbers", "pk": 7403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015321"}}, {"model": "wells.bcgs_numbers", "pk": 7404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015322"}}, {"model": "wells.bcgs_numbers", "pk": 7405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015323"}}, {"model": "wells.bcgs_numbers", "pk": 7406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015422"}}, {"model": "wells.bcgs_numbers", "pk": 7407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J016111"}}, {"model": "wells.bcgs_numbers", "pk": 7408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J017123"}}, {"model": "wells.bcgs_numbers", "pk": 7409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J017132"}}, {"model": "wells.bcgs_numbers", "pk": 7410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J017134"}}, {"model": "wells.bcgs_numbers", "pk": 7411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017212"}}, {"model": "wells.bcgs_numbers", "pk": 7412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017214"}}, {"model": "wells.bcgs_numbers", "pk": 7413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017221"}}, {"model": "wells.bcgs_numbers", "pk": 7414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017223"}}, {"model": "wells.bcgs_numbers", "pk": 7415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017232"}}, {"model": "wells.bcgs_numbers", "pk": 7416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017233"}}, {"model": "wells.bcgs_numbers", "pk": 7417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017241"}}, {"model": "wells.bcgs_numbers", "pk": 7418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017243"}}, {"model": "wells.bcgs_numbers", "pk": 7419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017244"}}, {"model": "wells.bcgs_numbers", "pk": 7420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017324"}}, {"model": "wells.bcgs_numbers", "pk": 7421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J017413"}}, {"model": "wells.bcgs_numbers", "pk": 7422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J020122"}}, {"model": "wells.bcgs_numbers", "pk": 7423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J020211"}}, {"model": "wells.bcgs_numbers", "pk": 7424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J020212"}}, {"model": "wells.bcgs_numbers", "pk": 7425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J020214"}}, {"model": "wells.bcgs_numbers", "pk": 7426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J020224"}}, {"model": "wells.bcgs_numbers", "pk": 7427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J025344"}}, {"model": "wells.bcgs_numbers", "pk": 7428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J027441"}}, {"model": "wells.bcgs_numbers", "pk": 7429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J028121"}}, {"model": "wells.bcgs_numbers", "pk": 7430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J028124"}}, {"model": "wells.bcgs_numbers", "pk": 7431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J030114"}}, {"model": "wells.bcgs_numbers", "pk": 7432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J037214"}}, {"model": "wells.bcgs_numbers", "pk": 7433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J037423"}}, {"model": "wells.bcgs_numbers", "pk": 7434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J044133"}}, {"model": "wells.bcgs_numbers", "pk": 7435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J047431"}}, {"model": "wells.bcgs_numbers", "pk": 7436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J047432"}}, {"model": "wells.bcgs_numbers", "pk": 7437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J047433"}}, {"model": "wells.bcgs_numbers", "pk": 7438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J047434"}}, {"model": "wells.bcgs_numbers", "pk": 7439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J057142"}}, {"model": "wells.bcgs_numbers", "pk": 7440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J057211"}}, {"model": "wells.bcgs_numbers", "pk": 7441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J078142"}}, {"model": "wells.bcgs_numbers", "pk": 7442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J078324"}}, {"model": "wells.bcgs_numbers", "pk": 7443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J078411"}}, {"model": "wells.bcgs_numbers", "pk": 7444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J078413"}}, {"model": "wells.bcgs_numbers", "pk": 7445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J084123"}}, {"model": "wells.bcgs_numbers", "pk": 7446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J095424"}}, {"model": "wells.bcgs_numbers", "pk": 7447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J095441"}}, {"model": "wells.bcgs_numbers", "pk": 7448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J095442"}}, {"model": "wells.bcgs_numbers", "pk": 7449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J095443"}}, {"model": "wells.bcgs_numbers", "pk": 7450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J096121"}}, {"model": "wells.bcgs_numbers", "pk": 7451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K001412"}}, {"model": "wells.bcgs_numbers", "pk": 7452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K001423"}}, {"model": "wells.bcgs_numbers", "pk": 7453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K001424"}}, {"model": "wells.bcgs_numbers", "pk": 7454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002111"}}, {"model": "wells.bcgs_numbers", "pk": 7455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002112"}}, {"model": "wells.bcgs_numbers", "pk": 7456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002113"}}, {"model": "wells.bcgs_numbers", "pk": 7457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002114"}}, {"model": "wells.bcgs_numbers", "pk": 7458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002121"}}, {"model": "wells.bcgs_numbers", "pk": 7459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002122"}}, {"model": "wells.bcgs_numbers", "pk": 7460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002131"}}, {"model": "wells.bcgs_numbers", "pk": 7461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002233"}}, {"model": "wells.bcgs_numbers", "pk": 7462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002321"}}, {"model": "wells.bcgs_numbers", "pk": 7463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002323"}}, {"model": "wells.bcgs_numbers", "pk": 7464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002324"}}, {"model": "wells.bcgs_numbers", "pk": 7465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002331"}}, {"model": "wells.bcgs_numbers", "pk": 7466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K002341"}}, {"model": "wells.bcgs_numbers", "pk": 7467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K004212"}}, {"model": "wells.bcgs_numbers", "pk": 7468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K004433"}}, {"model": "wells.bcgs_numbers", "pk": 7469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005212"}}, {"model": "wells.bcgs_numbers", "pk": 7470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005222"}}, {"model": "wells.bcgs_numbers", "pk": 7471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005333"}}, {"model": "wells.bcgs_numbers", "pk": 7472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005342"}}, {"model": "wells.bcgs_numbers", "pk": 7473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005343"}}, {"model": "wells.bcgs_numbers", "pk": 7474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005344"}}, {"model": "wells.bcgs_numbers", "pk": 7475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K005424"}}, {"model": "wells.bcgs_numbers", "pk": 7476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K005442"}}, {"model": "wells.bcgs_numbers", "pk": 7477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K005443"}}, {"model": "wells.bcgs_numbers", "pk": 7478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K005444"}}, {"model": "wells.bcgs_numbers", "pk": 7479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006111"}}, {"model": "wells.bcgs_numbers", "pk": 7480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006141"}}, {"model": "wells.bcgs_numbers", "pk": 7481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006142"}}, {"model": "wells.bcgs_numbers", "pk": 7482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006143"}}, {"model": "wells.bcgs_numbers", "pk": 7483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006144"}}, {"model": "wells.bcgs_numbers", "pk": 7484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006223"}}, {"model": "wells.bcgs_numbers", "pk": 7485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006233"}}, {"model": "wells.bcgs_numbers", "pk": 7486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006234"}}, {"model": "wells.bcgs_numbers", "pk": 7487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006243"}}, {"model": "wells.bcgs_numbers", "pk": 7488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006314"}}, {"model": "wells.bcgs_numbers", "pk": 7489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006322"}}, {"model": "wells.bcgs_numbers", "pk": 7490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006323"}}, {"model": "wells.bcgs_numbers", "pk": 7491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006324"}}, {"model": "wells.bcgs_numbers", "pk": 7492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006331"}}, {"model": "wells.bcgs_numbers", "pk": 7493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006412"}}, {"model": "wells.bcgs_numbers", "pk": 7494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006413"}}, {"model": "wells.bcgs_numbers", "pk": 7495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006414"}}, {"model": "wells.bcgs_numbers", "pk": 7496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006421"}}, {"model": "wells.bcgs_numbers", "pk": 7497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006422"}}, {"model": "wells.bcgs_numbers", "pk": 7498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006431"}}, {"model": "wells.bcgs_numbers", "pk": 7499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006432"}}, {"model": "wells.bcgs_numbers", "pk": 7500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K006444"}}, {"model": "wells.bcgs_numbers", "pk": 7501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007312"}}, {"model": "wells.bcgs_numbers", "pk": 7502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007314"}}, {"model": "wells.bcgs_numbers", "pk": 7503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007321"}}, {"model": "wells.bcgs_numbers", "pk": 7504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007322"}}, {"model": "wells.bcgs_numbers", "pk": 7505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007333"}}, {"model": "wells.bcgs_numbers", "pk": 7506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007411"}}, {"model": "wells.bcgs_numbers", "pk": 7507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007412"}}, {"model": "wells.bcgs_numbers", "pk": 7508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007421"}}, {"model": "wells.bcgs_numbers", "pk": 7509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007423"}}, {"model": "wells.bcgs_numbers", "pk": 7510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007424"}}, {"model": "wells.bcgs_numbers", "pk": 7511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007442"}}, {"model": "wells.bcgs_numbers", "pk": 7512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K007444"}}, {"model": "wells.bcgs_numbers", "pk": 7513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008212"}}, {"model": "wells.bcgs_numbers", "pk": 7514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008214"}}, {"model": "wells.bcgs_numbers", "pk": 7515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008221"}}, {"model": "wells.bcgs_numbers", "pk": 7516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008223"}}, {"model": "wells.bcgs_numbers", "pk": 7517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008233"}}, {"model": "wells.bcgs_numbers", "pk": 7518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008241"}}, {"model": "wells.bcgs_numbers", "pk": 7519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008242"}}, {"model": "wells.bcgs_numbers", "pk": 7520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008243"}}, {"model": "wells.bcgs_numbers", "pk": 7521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008312"}}, {"model": "wells.bcgs_numbers", "pk": 7522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008314"}}, {"model": "wells.bcgs_numbers", "pk": 7523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008321"}}, {"model": "wells.bcgs_numbers", "pk": 7524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008322"}}, {"model": "wells.bcgs_numbers", "pk": 7525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008324"}}, {"model": "wells.bcgs_numbers", "pk": 7526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008331"}}, {"model": "wells.bcgs_numbers", "pk": 7527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008341"}}, {"model": "wells.bcgs_numbers", "pk": 7528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008411"}}, {"model": "wells.bcgs_numbers", "pk": 7529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008412"}}, {"model": "wells.bcgs_numbers", "pk": 7530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008421"}}, {"model": "wells.bcgs_numbers", "pk": 7531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008422"}}, {"model": "wells.bcgs_numbers", "pk": 7532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008423"}}, {"model": "wells.bcgs_numbers", "pk": 7533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008441"}}, {"model": "wells.bcgs_numbers", "pk": 7534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K008442"}}, {"model": "wells.bcgs_numbers", "pk": 7535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009111"}}, {"model": "wells.bcgs_numbers", "pk": 7536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009122"}}, {"model": "wells.bcgs_numbers", "pk": 7537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009123"}}, {"model": "wells.bcgs_numbers", "pk": 7538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009124"}}, {"model": "wells.bcgs_numbers", "pk": 7539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009131"}}, {"model": "wells.bcgs_numbers", "pk": 7540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009132"}}, {"model": "wells.bcgs_numbers", "pk": 7541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009134"}}, {"model": "wells.bcgs_numbers", "pk": 7542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009141"}}, {"model": "wells.bcgs_numbers", "pk": 7543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009142"}}, {"model": "wells.bcgs_numbers", "pk": 7544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009144"}}, {"model": "wells.bcgs_numbers", "pk": 7545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009213"}}, {"model": "wells.bcgs_numbers", "pk": 7546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009214"}}, {"model": "wells.bcgs_numbers", "pk": 7547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009221"}}, {"model": "wells.bcgs_numbers", "pk": 7548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K009222"}}, {"model": "wells.bcgs_numbers", "pk": 7549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009224"}}, {"model": "wells.bcgs_numbers", "pk": 7550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009231"}}, {"model": "wells.bcgs_numbers", "pk": 7551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009232"}}, {"model": "wells.bcgs_numbers", "pk": 7552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009233"}}, {"model": "wells.bcgs_numbers", "pk": 7553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009241"}}, {"model": "wells.bcgs_numbers", "pk": 7554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009242"}}, {"model": "wells.bcgs_numbers", "pk": 7555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009243"}}, {"model": "wells.bcgs_numbers", "pk": 7556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009244"}}, {"model": "wells.bcgs_numbers", "pk": 7557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009313"}}, {"model": "wells.bcgs_numbers", "pk": 7558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009334"}}, {"model": "wells.bcgs_numbers", "pk": 7559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009411"}}, {"model": "wells.bcgs_numbers", "pk": 7560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009413"}}, {"model": "wells.bcgs_numbers", "pk": 7561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009423"}}, {"model": "wells.bcgs_numbers", "pk": 7562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009431"}}, {"model": "wells.bcgs_numbers", "pk": 7563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009432"}}, {"model": "wells.bcgs_numbers", "pk": 7564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009433"}}, {"model": "wells.bcgs_numbers", "pk": 7565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009434"}}, {"model": "wells.bcgs_numbers", "pk": 7566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009441"}}, {"model": "wells.bcgs_numbers", "pk": 7567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009442"}}, {"model": "wells.bcgs_numbers", "pk": 7568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K009443"}}, {"model": "wells.bcgs_numbers", "pk": 7569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010112"}}, {"model": "wells.bcgs_numbers", "pk": 7570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010114"}}, {"model": "wells.bcgs_numbers", "pk": 7571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010121"}}, {"model": "wells.bcgs_numbers", "pk": 7572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010122"}}, {"model": "wells.bcgs_numbers", "pk": 7573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010123"}}, {"model": "wells.bcgs_numbers", "pk": 7574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010124"}}, {"model": "wells.bcgs_numbers", "pk": 7575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010131"}}, {"model": "wells.bcgs_numbers", "pk": 7576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010132"}}, {"model": "wells.bcgs_numbers", "pk": 7577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010133"}}, {"model": "wells.bcgs_numbers", "pk": 7578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010142"}}, {"model": "wells.bcgs_numbers", "pk": 7579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010143"}}, {"model": "wells.bcgs_numbers", "pk": 7580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010144"}}, {"model": "wells.bcgs_numbers", "pk": 7581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010211"}}, {"model": "wells.bcgs_numbers", "pk": 7582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010212"}}, {"model": "wells.bcgs_numbers", "pk": 7583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010213"}}, {"model": "wells.bcgs_numbers", "pk": 7584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010214"}}, {"model": "wells.bcgs_numbers", "pk": 7585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010221"}}, {"model": "wells.bcgs_numbers", "pk": 7586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010222"}}, {"model": "wells.bcgs_numbers", "pk": 7587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010223"}}, {"model": "wells.bcgs_numbers", "pk": 7588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010224"}}, {"model": "wells.bcgs_numbers", "pk": 7589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010232"}}, {"model": "wells.bcgs_numbers", "pk": 7590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010233"}}, {"model": "wells.bcgs_numbers", "pk": 7591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010234"}}, {"model": "wells.bcgs_numbers", "pk": 7592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010241"}}, {"model": "wells.bcgs_numbers", "pk": 7593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010242"}}, {"model": "wells.bcgs_numbers", "pk": 7594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010244"}}, {"model": "wells.bcgs_numbers", "pk": 7595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010314"}}, {"model": "wells.bcgs_numbers", "pk": 7596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010321"}}, {"model": "wells.bcgs_numbers", "pk": 7597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010322"}}, {"model": "wells.bcgs_numbers", "pk": 7598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010323"}}, {"model": "wells.bcgs_numbers", "pk": 7599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010324"}}, {"model": "wells.bcgs_numbers", "pk": 7600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010332"}}, {"model": "wells.bcgs_numbers", "pk": 7601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010333"}}, {"model": "wells.bcgs_numbers", "pk": 7602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010334"}}, {"model": "wells.bcgs_numbers", "pk": 7603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010341"}}, {"model": "wells.bcgs_numbers", "pk": 7604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010342"}}, {"model": "wells.bcgs_numbers", "pk": 7605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K010411"}}, {"model": "wells.bcgs_numbers", "pk": 7606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010412"}}, {"model": "wells.bcgs_numbers", "pk": 7607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010413"}}, {"model": "wells.bcgs_numbers", "pk": 7608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010421"}}, {"model": "wells.bcgs_numbers", "pk": 7609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010422"}}, {"model": "wells.bcgs_numbers", "pk": 7610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010423"}}, {"model": "wells.bcgs_numbers", "pk": 7611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010424"}}, {"model": "wells.bcgs_numbers", "pk": 7612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K010441"}}, {"model": "wells.bcgs_numbers", "pk": 7613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012122"}}, {"model": "wells.bcgs_numbers", "pk": 7614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012141"}}, {"model": "wells.bcgs_numbers", "pk": 7615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012142"}}, {"model": "wells.bcgs_numbers", "pk": 7616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012143"}}, {"model": "wells.bcgs_numbers", "pk": 7617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012213"}}, {"model": "wells.bcgs_numbers", "pk": 7618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012334"}}, {"model": "wells.bcgs_numbers", "pk": 7619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012341"}}, {"model": "wells.bcgs_numbers", "pk": 7620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K012343"}}, {"model": "wells.bcgs_numbers", "pk": 7621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K013333"}}, {"model": "wells.bcgs_numbers", "pk": 7622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K013334"}}, {"model": "wells.bcgs_numbers", "pk": 7623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K013344"}}, {"model": "wells.bcgs_numbers", "pk": 7624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K013431"}}, {"model": "wells.bcgs_numbers", "pk": 7625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K014133"}}, {"model": "wells.bcgs_numbers", "pk": 7626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K014143"}}, {"model": "wells.bcgs_numbers", "pk": 7627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K016212"}}, {"model": "wells.bcgs_numbers", "pk": 7628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K016222"}}, {"model": "wells.bcgs_numbers", "pk": 7629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K017122"}}, {"model": "wells.bcgs_numbers", "pk": 7630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K018122"}}, {"model": "wells.bcgs_numbers", "pk": 7631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K018132"}}, {"model": "wells.bcgs_numbers", "pk": 7632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K018213"}}, {"model": "wells.bcgs_numbers", "pk": 7633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K019122"}}, {"model": "wells.bcgs_numbers", "pk": 7634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K019211"}}, {"model": "wells.bcgs_numbers", "pk": 7635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K019212"}}, {"model": "wells.bcgs_numbers", "pk": 7636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K019213"}}, {"model": "wells.bcgs_numbers", "pk": 7637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K019221"}}, {"model": "wells.bcgs_numbers", "pk": 7638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K019223"}}, {"model": "wells.bcgs_numbers", "pk": 7639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K020121"}}, {"model": "wells.bcgs_numbers", "pk": 7640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K021424"}}, {"model": "wells.bcgs_numbers", "pk": 7641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K021442"}}, {"model": "wells.bcgs_numbers", "pk": 7642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K021443"}}, {"model": "wells.bcgs_numbers", "pk": 7643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K021444"}}, {"model": "wells.bcgs_numbers", "pk": 7644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022112"}}, {"model": "wells.bcgs_numbers", "pk": 7645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022113"}}, {"model": "wells.bcgs_numbers", "pk": 7646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022114"}}, {"model": "wells.bcgs_numbers", "pk": 7647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022121"}}, {"model": "wells.bcgs_numbers", "pk": 7648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022123"}}, {"model": "wells.bcgs_numbers", "pk": 7649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022124"}}, {"model": "wells.bcgs_numbers", "pk": 7650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022131"}}, {"model": "wells.bcgs_numbers", "pk": 7651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022132"}}, {"model": "wells.bcgs_numbers", "pk": 7652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022133"}}, {"model": "wells.bcgs_numbers", "pk": 7653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022134"}}, {"model": "wells.bcgs_numbers", "pk": 7654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022141"}}, {"model": "wells.bcgs_numbers", "pk": 7655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022142"}}, {"model": "wells.bcgs_numbers", "pk": 7656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022143"}}, {"model": "wells.bcgs_numbers", "pk": 7657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022211"}}, {"model": "wells.bcgs_numbers", "pk": 7658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022212"}}, {"model": "wells.bcgs_numbers", "pk": 7659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022214"}}, {"model": "wells.bcgs_numbers", "pk": 7660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022222"}}, {"model": "wells.bcgs_numbers", "pk": 7661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022223"}}, {"model": "wells.bcgs_numbers", "pk": 7662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K022224"}}, {"model": "wells.bcgs_numbers", "pk": 7663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K022311"}}, {"model": "wells.bcgs_numbers", "pk": 7664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K022312"}}, {"model": "wells.bcgs_numbers", "pk": 7665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K022313"}}, {"model": "wells.bcgs_numbers", "pk": 7666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K022314"}}, {"model": "wells.bcgs_numbers", "pk": 7667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K023111"}}, {"model": "wells.bcgs_numbers", "pk": 7668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K029432"}}, {"model": "wells.bcgs_numbers", "pk": 7669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031212"}}, {"model": "wells.bcgs_numbers", "pk": 7670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031214"}}, {"model": "wells.bcgs_numbers", "pk": 7671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031221"}}, {"model": "wells.bcgs_numbers", "pk": 7672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031231"}}, {"model": "wells.bcgs_numbers", "pk": 7673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031232"}}, {"model": "wells.bcgs_numbers", "pk": 7674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031233"}}, {"model": "wells.bcgs_numbers", "pk": 7675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031234"}}, {"model": "wells.bcgs_numbers", "pk": 7676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031321"}}, {"model": "wells.bcgs_numbers", "pk": 7677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031322"}}, {"model": "wells.bcgs_numbers", "pk": 7678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031332"}}, {"model": "wells.bcgs_numbers", "pk": 7679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031411"}}, {"model": "wells.bcgs_numbers", "pk": 7680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031413"}}, {"model": "wells.bcgs_numbers", "pk": 7681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K031414"}}, {"model": "wells.bcgs_numbers", "pk": 7682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039214"}}, {"model": "wells.bcgs_numbers", "pk": 7683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039324"}}, {"model": "wells.bcgs_numbers", "pk": 7684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039411"}}, {"model": "wells.bcgs_numbers", "pk": 7685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039414"}}, {"model": "wells.bcgs_numbers", "pk": 7686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039423"}}, {"model": "wells.bcgs_numbers", "pk": 7687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039432"}}, {"model": "wells.bcgs_numbers", "pk": 7688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K039434"}}, {"model": "wells.bcgs_numbers", "pk": 7689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K040131"}}, {"model": "wells.bcgs_numbers", "pk": 7690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K040341"}}, {"model": "wells.bcgs_numbers", "pk": 7691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K040342"}}, {"model": "wells.bcgs_numbers", "pk": 7692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K042213"}}, {"model": "wells.bcgs_numbers", "pk": 7693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K042433"}}, {"model": "wells.bcgs_numbers", "pk": 7694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049113"}}, {"model": "wells.bcgs_numbers", "pk": 7695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049114"}}, {"model": "wells.bcgs_numbers", "pk": 7696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049123"}}, {"model": "wells.bcgs_numbers", "pk": 7697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049124"}}, {"model": "wells.bcgs_numbers", "pk": 7698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049142"}}, {"model": "wells.bcgs_numbers", "pk": 7699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049212"}}, {"model": "wells.bcgs_numbers", "pk": 7700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049213"}}, {"model": "wells.bcgs_numbers", "pk": 7701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049214"}}, {"model": "wells.bcgs_numbers", "pk": 7702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049223"}}, {"model": "wells.bcgs_numbers", "pk": 7703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049231"}}, {"model": "wells.bcgs_numbers", "pk": 7704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049232"}}, {"model": "wells.bcgs_numbers", "pk": 7705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049234"}}, {"model": "wells.bcgs_numbers", "pk": 7706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049243"}}, {"model": "wells.bcgs_numbers", "pk": 7707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049411"}}, {"model": "wells.bcgs_numbers", "pk": 7708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049412"}}, {"model": "wells.bcgs_numbers", "pk": 7709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "093K049421"}}, {"model": "wells.bcgs_numbers", "pk": 7710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K049422"}}, {"model": "wells.bcgs_numbers", "pk": 7711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K049423"}}, {"model": "wells.bcgs_numbers", "pk": 7712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K049424"}}, {"model": "wells.bcgs_numbers", "pk": 7713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K049442"}}, {"model": "wells.bcgs_numbers", "pk": 7714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K049444"}}, {"model": "wells.bcgs_numbers", "pk": 7715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K050312"}}, {"model": "wells.bcgs_numbers", "pk": 7716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K050313"}}, {"model": "wells.bcgs_numbers", "pk": 7717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K050314"}}, {"model": "wells.bcgs_numbers", "pk": 7718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K050331"}}, {"model": "wells.bcgs_numbers", "pk": 7719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K060333"}}, {"model": "wells.bcgs_numbers", "pk": 7720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K067223"}}, {"model": "wells.bcgs_numbers", "pk": 7721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K067231"}}, {"model": "wells.bcgs_numbers", "pk": 7722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K067312"}}, {"model": "wells.bcgs_numbers", "pk": 7723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K067322"}}, {"model": "wells.bcgs_numbers", "pk": 7724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K069221"}}, {"model": "wells.bcgs_numbers", "pk": 7725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K069222"}}, {"model": "wells.bcgs_numbers", "pk": 7726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K070111"}}, {"model": "wells.bcgs_numbers", "pk": 7727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093K084422"}}, {"model": "wells.bcgs_numbers", "pk": 7728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L005342"}}, {"model": "wells.bcgs_numbers", "pk": 7729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L022311"}}, {"model": "wells.bcgs_numbers", "pk": 7730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L022314"}}, {"model": "wells.bcgs_numbers", "pk": 7731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037323"}}, {"model": "wells.bcgs_numbers", "pk": 7732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037341"}}, {"model": "wells.bcgs_numbers", "pk": 7733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037342"}}, {"model": "wells.bcgs_numbers", "pk": 7734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037343"}}, {"model": "wells.bcgs_numbers", "pk": 7735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037344"}}, {"model": "wells.bcgs_numbers", "pk": 7736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037411"}}, {"model": "wells.bcgs_numbers", "pk": 7737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037412"}}, {"model": "wells.bcgs_numbers", "pk": 7738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037413"}}, {"model": "wells.bcgs_numbers", "pk": 7739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037414"}}, {"model": "wells.bcgs_numbers", "pk": 7740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037423"}}, {"model": "wells.bcgs_numbers", "pk": 7741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037431"}}, {"model": "wells.bcgs_numbers", "pk": 7742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037432"}}, {"model": "wells.bcgs_numbers", "pk": 7743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037433"}}, {"model": "wells.bcgs_numbers", "pk": 7744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037434"}}, {"model": "wells.bcgs_numbers", "pk": 7745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037441"}}, {"model": "wells.bcgs_numbers", "pk": 7746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037442"}}, {"model": "wells.bcgs_numbers", "pk": 7747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037443"}}, {"model": "wells.bcgs_numbers", "pk": 7748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L037444"}}, {"model": "wells.bcgs_numbers", "pk": 7749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L040341"}}, {"model": "wells.bcgs_numbers", "pk": 7750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L040342"}}, {"model": "wells.bcgs_numbers", "pk": 7751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L040443"}}, {"model": "wells.bcgs_numbers", "pk": 7752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047122"}}, {"model": "wells.bcgs_numbers", "pk": 7753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047123"}}, {"model": "wells.bcgs_numbers", "pk": 7754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047124"}}, {"model": "wells.bcgs_numbers", "pk": 7755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047131"}}, {"model": "wells.bcgs_numbers", "pk": 7756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047134"}}, {"model": "wells.bcgs_numbers", "pk": 7757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047144"}}, {"model": "wells.bcgs_numbers", "pk": 7758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047212"}}, {"model": "wells.bcgs_numbers", "pk": 7759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047221"}}, {"model": "wells.bcgs_numbers", "pk": 7760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047223"}}, {"model": "wells.bcgs_numbers", "pk": 7761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047242"}}, {"model": "wells.bcgs_numbers", "pk": 7762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047244"}}, {"model": "wells.bcgs_numbers", "pk": 7763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047324"}}, {"model": "wells.bcgs_numbers", "pk": 7764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047332"}}, {"model": "wells.bcgs_numbers", "pk": 7765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:37Z", "update_user": null, "update_date": null, "bcgs_number": "093L047334"}}, {"model": "wells.bcgs_numbers", "pk": 7766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L047341"}}, {"model": "wells.bcgs_numbers", "pk": 7767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L047343"}}, {"model": "wells.bcgs_numbers", "pk": 7768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L048114"}}, {"model": "wells.bcgs_numbers", "pk": 7769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L048133"}}, {"model": "wells.bcgs_numbers", "pk": 7770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L048134"}}, {"model": "wells.bcgs_numbers", "pk": 7771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L048223"}}, {"model": "wells.bcgs_numbers", "pk": 7772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L048312"}}, {"model": "wells.bcgs_numbers", "pk": 7773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L049341"}}, {"model": "wells.bcgs_numbers", "pk": 7774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L049422"}}, {"model": "wells.bcgs_numbers", "pk": 7775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L049434"}}, {"model": "wells.bcgs_numbers", "pk": 7776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L049441"}}, {"model": "wells.bcgs_numbers", "pk": 7777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L049442"}}, {"model": "wells.bcgs_numbers", "pk": 7778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050114"}}, {"model": "wells.bcgs_numbers", "pk": 7779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050122"}}, {"model": "wells.bcgs_numbers", "pk": 7780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050123"}}, {"model": "wells.bcgs_numbers", "pk": 7781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050131"}}, {"model": "wells.bcgs_numbers", "pk": 7782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050212"}}, {"model": "wells.bcgs_numbers", "pk": 7783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050213"}}, {"model": "wells.bcgs_numbers", "pk": 7784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050221"}}, {"model": "wells.bcgs_numbers", "pk": 7785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L050222"}}, {"model": "wells.bcgs_numbers", "pk": 7786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L056232"}}, {"model": "wells.bcgs_numbers", "pk": 7787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L056422"}}, {"model": "wells.bcgs_numbers", "pk": 7788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L056444"}}, {"model": "wells.bcgs_numbers", "pk": 7789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L057112"}}, {"model": "wells.bcgs_numbers", "pk": 7790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L057113"}}, {"model": "wells.bcgs_numbers", "pk": 7791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L057114"}}, {"model": "wells.bcgs_numbers", "pk": 7792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L057121"}}, {"model": "wells.bcgs_numbers", "pk": 7793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L058212"}}, {"model": "wells.bcgs_numbers", "pk": 7794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L058214"}}, {"model": "wells.bcgs_numbers", "pk": 7795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L058223"}}, {"model": "wells.bcgs_numbers", "pk": 7796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L058224"}}, {"model": "wells.bcgs_numbers", "pk": 7797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L058241"}}, {"model": "wells.bcgs_numbers", "pk": 7798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L059121"}}, {"model": "wells.bcgs_numbers", "pk": 7799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L059122"}}, {"model": "wells.bcgs_numbers", "pk": 7800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L059123"}}, {"model": "wells.bcgs_numbers", "pk": 7801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L059211"}}, {"model": "wells.bcgs_numbers", "pk": 7802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L059212"}}, {"model": "wells.bcgs_numbers", "pk": 7803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065322"}}, {"model": "wells.bcgs_numbers", "pk": 7804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065411"}}, {"model": "wells.bcgs_numbers", "pk": 7805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065412"}}, {"model": "wells.bcgs_numbers", "pk": 7806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065413"}}, {"model": "wells.bcgs_numbers", "pk": 7807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065414"}}, {"model": "wells.bcgs_numbers", "pk": 7808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065431"}}, {"model": "wells.bcgs_numbers", "pk": 7809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065432"}}, {"model": "wells.bcgs_numbers", "pk": 7810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065434"}}, {"model": "wells.bcgs_numbers", "pk": 7811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065441"}}, {"model": "wells.bcgs_numbers", "pk": 7812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L065442"}}, {"model": "wells.bcgs_numbers", "pk": 7813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066124"}}, {"model": "wells.bcgs_numbers", "pk": 7814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066134"}}, {"model": "wells.bcgs_numbers", "pk": 7815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066142"}}, {"model": "wells.bcgs_numbers", "pk": 7816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066143"}}, {"model": "wells.bcgs_numbers", "pk": 7817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066144"}}, {"model": "wells.bcgs_numbers", "pk": 7818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066213"}}, {"model": "wells.bcgs_numbers", "pk": 7819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066214"}}, {"model": "wells.bcgs_numbers", "pk": 7820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066221"}}, {"model": "wells.bcgs_numbers", "pk": 7821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066223"}}, {"model": "wells.bcgs_numbers", "pk": 7822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066224"}}, {"model": "wells.bcgs_numbers", "pk": 7823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066312"}}, {"model": "wells.bcgs_numbers", "pk": 7824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066313"}}, {"model": "wells.bcgs_numbers", "pk": 7825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066314"}}, {"model": "wells.bcgs_numbers", "pk": 7826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066322"}}, {"model": "wells.bcgs_numbers", "pk": 7827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066324"}}, {"model": "wells.bcgs_numbers", "pk": 7828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L066331"}}, {"model": "wells.bcgs_numbers", "pk": 7829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L066341"}}, {"model": "wells.bcgs_numbers", "pk": 7830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L066343"}}, {"model": "wells.bcgs_numbers", "pk": 7831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L066411"}}, {"model": "wells.bcgs_numbers", "pk": 7832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L066413"}}, {"model": "wells.bcgs_numbers", "pk": 7833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L066432"}}, {"model": "wells.bcgs_numbers", "pk": 7834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L066433"}}, {"model": "wells.bcgs_numbers", "pk": 7835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L067113"}}, {"model": "wells.bcgs_numbers", "pk": 7836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L067133"}}, {"model": "wells.bcgs_numbers", "pk": 7837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L074414"}}, {"model": "wells.bcgs_numbers", "pk": 7838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L074444"}}, {"model": "wells.bcgs_numbers", "pk": 7839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075047"}}, {"model": "wells.bcgs_numbers", "pk": 7840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075121"}}, {"model": "wells.bcgs_numbers", "pk": 7841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075124"}}, {"model": "wells.bcgs_numbers", "pk": 7842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075134"}}, {"model": "wells.bcgs_numbers", "pk": 7843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075141"}}, {"model": "wells.bcgs_numbers", "pk": 7844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075142"}}, {"model": "wells.bcgs_numbers", "pk": 7845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075143"}}, {"model": "wells.bcgs_numbers", "pk": 7846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075144"}}, {"model": "wells.bcgs_numbers", "pk": 7847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075212"}}, {"model": "wells.bcgs_numbers", "pk": 7848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075214"}}, {"model": "wells.bcgs_numbers", "pk": 7849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075221"}}, {"model": "wells.bcgs_numbers", "pk": 7850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075222"}}, {"model": "wells.bcgs_numbers", "pk": 7851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075232"}}, {"model": "wells.bcgs_numbers", "pk": 7852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075233"}}, {"model": "wells.bcgs_numbers", "pk": 7853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075234"}}, {"model": "wells.bcgs_numbers", "pk": 7854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075241"}}, {"model": "wells.bcgs_numbers", "pk": 7855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075243"}}, {"model": "wells.bcgs_numbers", "pk": 7856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075312"}}, {"model": "wells.bcgs_numbers", "pk": 7857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075314"}}, {"model": "wells.bcgs_numbers", "pk": 7858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075321"}}, {"model": "wells.bcgs_numbers", "pk": 7859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075322"}}, {"model": "wells.bcgs_numbers", "pk": 7860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075323"}}, {"model": "wells.bcgs_numbers", "pk": 7861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075324"}}, {"model": "wells.bcgs_numbers", "pk": 7862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075332"}}, {"model": "wells.bcgs_numbers", "pk": 7863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075333"}}, {"model": "wells.bcgs_numbers", "pk": 7864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075334"}}, {"model": "wells.bcgs_numbers", "pk": 7865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075341"}}, {"model": "wells.bcgs_numbers", "pk": 7866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075342"}}, {"model": "wells.bcgs_numbers", "pk": 7867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075343"}}, {"model": "wells.bcgs_numbers", "pk": 7868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075344"}}, {"model": "wells.bcgs_numbers", "pk": 7869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075411"}}, {"model": "wells.bcgs_numbers", "pk": 7870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075423"}}, {"model": "wells.bcgs_numbers", "pk": 7871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075431"}}, {"model": "wells.bcgs_numbers", "pk": 7872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075433"}}, {"model": "wells.bcgs_numbers", "pk": 7873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L076111"}}, {"model": "wells.bcgs_numbers", "pk": 7874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L076112"}}, {"model": "wells.bcgs_numbers", "pk": 7875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L076113"}}, {"model": "wells.bcgs_numbers", "pk": 7876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L076324"}}, {"model": "wells.bcgs_numbers", "pk": 7877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084222"}}, {"model": "wells.bcgs_numbers", "pk": 7878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084224"}}, {"model": "wells.bcgs_numbers", "pk": 7879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084241"}}, {"model": "wells.bcgs_numbers", "pk": 7880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084242"}}, {"model": "wells.bcgs_numbers", "pk": 7881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084243"}}, {"model": "wells.bcgs_numbers", "pk": 7882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084244"}}, {"model": "wells.bcgs_numbers", "pk": 7883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084421"}}, {"model": "wells.bcgs_numbers", "pk": 7884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084422"}}, {"model": "wells.bcgs_numbers", "pk": 7885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084431"}}, {"model": "wells.bcgs_numbers", "pk": 7886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084433"}}, {"model": "wells.bcgs_numbers", "pk": 7887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084434"}}, {"model": "wells.bcgs_numbers", "pk": 7888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L084441"}}, {"model": "wells.bcgs_numbers", "pk": 7889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085111"}}, {"model": "wells.bcgs_numbers", "pk": 7890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085113"}}, {"model": "wells.bcgs_numbers", "pk": 7891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085121"}}, {"model": "wells.bcgs_numbers", "pk": 7892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085122"}}, {"model": "wells.bcgs_numbers", "pk": 7893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085123"}}, {"model": "wells.bcgs_numbers", "pk": 7894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085124"}}, {"model": "wells.bcgs_numbers", "pk": 7895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085131"}}, {"model": "wells.bcgs_numbers", "pk": 7896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085141"}}, {"model": "wells.bcgs_numbers", "pk": 7897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085144"}}, {"model": "wells.bcgs_numbers", "pk": 7898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085212"}}, {"model": "wells.bcgs_numbers", "pk": 7899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085213"}}, {"model": "wells.bcgs_numbers", "pk": 7900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085214"}}, {"model": "wells.bcgs_numbers", "pk": 7901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085222"}}, {"model": "wells.bcgs_numbers", "pk": 7902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085231"}}, {"model": "wells.bcgs_numbers", "pk": 7903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085232"}}, {"model": "wells.bcgs_numbers", "pk": 7904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085233"}}, {"model": "wells.bcgs_numbers", "pk": 7905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085241"}}, {"model": "wells.bcgs_numbers", "pk": 7906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085321"}}, {"model": "wells.bcgs_numbers", "pk": 7907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L085322"}}, {"model": "wells.bcgs_numbers", "pk": 7908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L085331"}}, {"model": "wells.bcgs_numbers", "pk": 7909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L085341"}}, {"model": "wells.bcgs_numbers", "pk": 7910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L085411"}}, {"model": "wells.bcgs_numbers", "pk": 7911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L090112"}}, {"model": "wells.bcgs_numbers", "pk": 7912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L090121"}}, {"model": "wells.bcgs_numbers", "pk": 7913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L090123"}}, {"model": "wells.bcgs_numbers", "pk": 7914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L090133"}}, {"model": "wells.bcgs_numbers", "pk": 7915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L090311"}}, {"model": "wells.bcgs_numbers", "pk": 7916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L093231"}}, {"model": "wells.bcgs_numbers", "pk": 7917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L093234"}}, {"model": "wells.bcgs_numbers", "pk": 7918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094144"}}, {"model": "wells.bcgs_numbers", "pk": 7919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094211"}}, {"model": "wells.bcgs_numbers", "pk": 7920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094212"}}, {"model": "wells.bcgs_numbers", "pk": 7921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094214"}}, {"model": "wells.bcgs_numbers", "pk": 7922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094224"}}, {"model": "wells.bcgs_numbers", "pk": 7923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094231"}}, {"model": "wells.bcgs_numbers", "pk": 7924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094234"}}, {"model": "wells.bcgs_numbers", "pk": 7925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094312"}}, {"model": "wells.bcgs_numbers", "pk": 7926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094321"}}, {"model": "wells.bcgs_numbers", "pk": 7927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094323"}}, {"model": "wells.bcgs_numbers", "pk": 7928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094341"}}, {"model": "wells.bcgs_numbers", "pk": 7929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094342"}}, {"model": "wells.bcgs_numbers", "pk": 7930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094412"}}, {"model": "wells.bcgs_numbers", "pk": 7931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M004122"}}, {"model": "wells.bcgs_numbers", "pk": 7932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M004143"}}, {"model": "wells.bcgs_numbers", "pk": 7933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M004144"}}, {"model": "wells.bcgs_numbers", "pk": 7934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M011113"}}, {"model": "wells.bcgs_numbers", "pk": 7935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M012133"}}, {"model": "wells.bcgs_numbers", "pk": 7936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M012341"}}, {"model": "wells.bcgs_numbers", "pk": 7937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M014113"}}, {"model": "wells.bcgs_numbers", "pk": 7938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M014332"}}, {"model": "wells.bcgs_numbers", "pk": 7939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022124"}}, {"model": "wells.bcgs_numbers", "pk": 7940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022211"}}, {"model": "wells.bcgs_numbers", "pk": 7941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022213"}}, {"model": "wells.bcgs_numbers", "pk": 7942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022214"}}, {"model": "wells.bcgs_numbers", "pk": 7943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022231"}}, {"model": "wells.bcgs_numbers", "pk": 7944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022232"}}, {"model": "wells.bcgs_numbers", "pk": 7945, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022243"}}, {"model": "wells.bcgs_numbers", "pk": 7946, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022244"}}, {"model": "wells.bcgs_numbers", "pk": 7947, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022411"}}, {"model": "wells.bcgs_numbers", "pk": 7948, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022422"}}, {"model": "wells.bcgs_numbers", "pk": 7949, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022423"}}, {"model": "wells.bcgs_numbers", "pk": 7950, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022424"}}, {"model": "wells.bcgs_numbers", "pk": 7951, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M022434"}}, {"model": "wells.bcgs_numbers", "pk": 7952, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M023133"}}, {"model": "wells.bcgs_numbers", "pk": 7953, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "093M023242"}}, {"model": "wells.bcgs_numbers", "pk": 7954, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M023313"}}, {"model": "wells.bcgs_numbers", "pk": 7955, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M023322"}}, {"model": "wells.bcgs_numbers", "pk": 7956, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M024131"}}, {"model": "wells.bcgs_numbers", "pk": 7957, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M032211"}}, {"model": "wells.bcgs_numbers", "pk": 7958, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M032233"}}, {"model": "wells.bcgs_numbers", "pk": 7959, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M032432"}}, {"model": "wells.bcgs_numbers", "pk": 7960, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042141"}}, {"model": "wells.bcgs_numbers", "pk": 7961, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042142"}}, {"model": "wells.bcgs_numbers", "pk": 7962, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042211"}}, {"model": "wells.bcgs_numbers", "pk": 7963, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042212"}}, {"model": "wells.bcgs_numbers", "pk": 7964, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042213"}}, {"model": "wells.bcgs_numbers", "pk": 7965, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042241"}}, {"model": "wells.bcgs_numbers", "pk": 7966, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042321"}}, {"model": "wells.bcgs_numbers", "pk": 7967, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042323"}}, {"model": "wells.bcgs_numbers", "pk": 7968, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042333"}}, {"model": "wells.bcgs_numbers", "pk": 7969, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M042334"}}, {"model": "wells.bcgs_numbers", "pk": 7970, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M051222"}}, {"model": "wells.bcgs_numbers", "pk": 7971, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093N004312"}}, {"model": "wells.bcgs_numbers", "pk": 7972, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O005221"}}, {"model": "wells.bcgs_numbers", "pk": 7973, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O016114"}}, {"model": "wells.bcgs_numbers", "pk": 7974, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O016132"}}, {"model": "wells.bcgs_numbers", "pk": 7975, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O016224"}}, {"model": "wells.bcgs_numbers", "pk": 7976, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O016244"}}, {"model": "wells.bcgs_numbers", "pk": 7977, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O025334"}}, {"model": "wells.bcgs_numbers", "pk": 7978, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O034133"}}, {"model": "wells.bcgs_numbers", "pk": 7979, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035112"}}, {"model": "wells.bcgs_numbers", "pk": 7980, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035114"}}, {"model": "wells.bcgs_numbers", "pk": 7981, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035121"}}, {"model": "wells.bcgs_numbers", "pk": 7982, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035131"}}, {"model": "wells.bcgs_numbers", "pk": 7983, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035133"}}, {"model": "wells.bcgs_numbers", "pk": 7984, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035144"}}, {"model": "wells.bcgs_numbers", "pk": 7985, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035234"}}, {"model": "wells.bcgs_numbers", "pk": 7986, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035324"}}, {"model": "wells.bcgs_numbers", "pk": 7987, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035334"}}, {"model": "wells.bcgs_numbers", "pk": 7988, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035343"}}, {"model": "wells.bcgs_numbers", "pk": 7989, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O035411"}}, {"model": "wells.bcgs_numbers", "pk": 7990, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O037424"}}, {"model": "wells.bcgs_numbers", "pk": 7991, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O045214"}}, {"model": "wells.bcgs_numbers", "pk": 7992, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O049123"}}, {"model": "wells.bcgs_numbers", "pk": 7993, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O058213"}}, {"model": "wells.bcgs_numbers", "pk": 7994, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O058231"}}, {"model": "wells.bcgs_numbers", "pk": 7995, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O058233"}}, {"model": "wells.bcgs_numbers", "pk": 7996, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O060444"}}, {"model": "wells.bcgs_numbers", "pk": 7997, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O069214"}}, {"model": "wells.bcgs_numbers", "pk": 7998, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O070224"}}, {"model": "wells.bcgs_numbers", "pk": 7999, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O070231"}}, {"model": "wells.bcgs_numbers", "pk": 8000, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O070311"}}, {"model": "wells.bcgs_numbers", "pk": 8001, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "093O092311"}}, {"model": "wells.bcgs_numbers", "pk": 8002, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P015223"}}, {"model": "wells.bcgs_numbers", "pk": 8004, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P015241"}}, {"model": "wells.bcgs_numbers", "pk": 8005, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P016121"}}, {"model": "wells.bcgs_numbers", "pk": 8006, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P016131"}}, {"model": "wells.bcgs_numbers", "pk": 8008, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P024332"}}, {"model": "wells.bcgs_numbers", "pk": 8009, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P030412"}}, {"model": "wells.bcgs_numbers", "pk": 8010, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P030421"}}, {"model": "wells.bcgs_numbers", "pk": 8011, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P031331"}}, {"model": "wells.bcgs_numbers", "pk": 8012, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P034134"}}, {"model": "wells.bcgs_numbers", "pk": 8013, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P050312"}}, {"model": "wells.bcgs_numbers", "pk": 8014, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P050442"}}, {"model": "wells.bcgs_numbers", "pk": 8015, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P050443"}}, {"model": "wells.bcgs_numbers", "pk": 8016, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P053133"}}, {"model": "wells.bcgs_numbers", "pk": 8017, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P053423"}}, {"model": "wells.bcgs_numbers", "pk": 8018, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P053444"}}, {"model": "wells.bcgs_numbers", "pk": 8019, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054234"}}, {"model": "wells.bcgs_numbers", "pk": 8020, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054324"}}, {"model": "wells.bcgs_numbers", "pk": 8021, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054333"}}, {"model": "wells.bcgs_numbers", "pk": 8022, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054342"}}, {"model": "wells.bcgs_numbers", "pk": 8023, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054344"}}, {"model": "wells.bcgs_numbers", "pk": 8024, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054412"}}, {"model": "wells.bcgs_numbers", "pk": 8025, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054421"}}, {"model": "wells.bcgs_numbers", "pk": 8026, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054431"}}, {"model": "wells.bcgs_numbers", "pk": 8027, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054432"}}, {"model": "wells.bcgs_numbers", "pk": 8028, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054434"}}, {"model": "wells.bcgs_numbers", "pk": 8029, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P054443"}}, {"model": "wells.bcgs_numbers", "pk": 8030, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P056214"}}, {"model": "wells.bcgs_numbers", "pk": 8031, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P058242"}}, {"model": "wells.bcgs_numbers", "pk": 8032, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P058333"}}, {"model": "wells.bcgs_numbers", "pk": 8033, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P058334"}}, {"model": "wells.bcgs_numbers", "pk": 8034, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060213"}}, {"model": "wells.bcgs_numbers", "pk": 8035, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060221"}}, {"model": "wells.bcgs_numbers", "pk": 8036, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060232"}}, {"model": "wells.bcgs_numbers", "pk": 8037, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060233"}}, {"model": "wells.bcgs_numbers", "pk": 8038, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060241"}}, {"model": "wells.bcgs_numbers", "pk": 8039, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060243"}}, {"model": "wells.bcgs_numbers", "pk": 8040, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060411"}}, {"model": "wells.bcgs_numbers", "pk": 8041, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060412"}}, {"model": "wells.bcgs_numbers", "pk": 8042, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060414"}}, {"model": "wells.bcgs_numbers", "pk": 8043, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060421"}}, {"model": "wells.bcgs_numbers", "pk": 8044, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060432"}}, {"model": "wells.bcgs_numbers", "pk": 8045, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060442"}}, {"model": "wells.bcgs_numbers", "pk": 8046, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P060444"}}, {"model": "wells.bcgs_numbers", "pk": 8047, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P061124"}}, {"model": "wells.bcgs_numbers", "pk": 8048, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P061223"}}, {"model": "wells.bcgs_numbers", "pk": 8049, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062143"}}, {"model": "wells.bcgs_numbers", "pk": 8050, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062321"}}, {"model": "wells.bcgs_numbers", "pk": 8051, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062322"}}, {"model": "wells.bcgs_numbers", "pk": 8052, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062323"}}, {"model": "wells.bcgs_numbers", "pk": 8053, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062324"}}, {"model": "wells.bcgs_numbers", "pk": 8054, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062342"}}, {"model": "wells.bcgs_numbers", "pk": 8055, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062423"}}, {"model": "wells.bcgs_numbers", "pk": 8056, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062431"}}, {"model": "wells.bcgs_numbers", "pk": 8057, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062433"}}, {"model": "wells.bcgs_numbers", "pk": 8058, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062434"}}, {"model": "wells.bcgs_numbers", "pk": 8059, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062441"}}, {"model": "wells.bcgs_numbers", "pk": 8060, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062442"}}, {"model": "wells.bcgs_numbers", "pk": 8061, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062443"}}, {"model": "wells.bcgs_numbers", "pk": 8062, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P062444"}}, {"model": "wells.bcgs_numbers", "pk": 8063, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063222"}}, {"model": "wells.bcgs_numbers", "pk": 8064, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063314"}}, {"model": "wells.bcgs_numbers", "pk": 8065, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063323"}}, {"model": "wells.bcgs_numbers", "pk": 8066, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063331"}}, {"model": "wells.bcgs_numbers", "pk": 8067, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063333"}}, {"model": "wells.bcgs_numbers", "pk": 8068, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063341"}}, {"model": "wells.bcgs_numbers", "pk": 8069, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063343"}}, {"model": "wells.bcgs_numbers", "pk": 8070, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063431"}}, {"model": "wells.bcgs_numbers", "pk": 8071, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P063434"}}, {"model": "wells.bcgs_numbers", "pk": 8072, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P064112"}}, {"model": "wells.bcgs_numbers", "pk": 8073, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P068112"}}, {"model": "wells.bcgs_numbers", "pk": 8074, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P068124"}}, {"model": "wells.bcgs_numbers", "pk": 8075, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P068132"}}, {"model": "wells.bcgs_numbers", "pk": 8076, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P068332"}}, {"model": "wells.bcgs_numbers", "pk": 8077, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P069221"}}, {"model": "wells.bcgs_numbers", "pk": 8078, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P069334"}}, {"model": "wells.bcgs_numbers", "pk": 8079, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P069424"}}, {"model": "wells.bcgs_numbers", "pk": 8080, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P070111"}}, {"model": "wells.bcgs_numbers", "pk": 8081, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P070122"}}, {"model": "wells.bcgs_numbers", "pk": 8082, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P070124"}}, {"model": "wells.bcgs_numbers", "pk": 8083, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P070141"}}, {"model": "wells.bcgs_numbers", "pk": 8084, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P070143"}}, {"model": "wells.bcgs_numbers", "pk": 8085, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P070144"}}, {"model": "wells.bcgs_numbers", "pk": 8086, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P070221"}}, {"model": "wells.bcgs_numbers", "pk": 8087, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P070323"}}, {"model": "wells.bcgs_numbers", "pk": 8088, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P070324"}}, {"model": "wells.bcgs_numbers", "pk": 8089, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P070343"}}, {"model": "wells.bcgs_numbers", "pk": 8090, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P072212"}}, {"model": "wells.bcgs_numbers", "pk": 8091, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P072221"}}, {"model": "wells.bcgs_numbers", "pk": 8092, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P072222"}}, {"model": "wells.bcgs_numbers", "pk": 8093, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P072224"}}, {"model": "wells.bcgs_numbers", "pk": 8094, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073113"}}, {"model": "wells.bcgs_numbers", "pk": 8095, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073132"}}, {"model": "wells.bcgs_numbers", "pk": 8096, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073221"}}, {"model": "wells.bcgs_numbers", "pk": 8097, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073321"}}, {"model": "wells.bcgs_numbers", "pk": 8098, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073322"}}, {"model": "wells.bcgs_numbers", "pk": 8099, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073324"}}, {"model": "wells.bcgs_numbers", "pk": 8100, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073433"}}, {"model": "wells.bcgs_numbers", "pk": 8101, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P073443"}}, {"model": "wells.bcgs_numbers", "pk": 8102, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074111"}}, {"model": "wells.bcgs_numbers", "pk": 8103, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074113"}}, {"model": "wells.bcgs_numbers", "pk": 8104, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074122"}}, {"model": "wells.bcgs_numbers", "pk": 8105, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074141"}}, {"model": "wells.bcgs_numbers", "pk": 8106, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074211"}}, {"model": "wells.bcgs_numbers", "pk": 8107, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074213"}}, {"model": "wells.bcgs_numbers", "pk": 8108, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074223"}}, {"model": "wells.bcgs_numbers", "pk": 8109, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074224"}}, {"model": "wells.bcgs_numbers", "pk": 8110, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074232"}}, {"model": "wells.bcgs_numbers", "pk": 8111, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P074242"}}, {"model": "wells.bcgs_numbers", "pk": 8112, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075113"}}, {"model": "wells.bcgs_numbers", "pk": 8113, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075132"}}, {"model": "wells.bcgs_numbers", "pk": 8114, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075321"}}, {"model": "wells.bcgs_numbers", "pk": 8115, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075323"}}, {"model": "wells.bcgs_numbers", "pk": 8116, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075413"}}, {"model": "wells.bcgs_numbers", "pk": 8117, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075414"}}, {"model": "wells.bcgs_numbers", "pk": 8118, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075421"}}, {"model": "wells.bcgs_numbers", "pk": 8119, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075423"}}, {"model": "wells.bcgs_numbers", "pk": 8120, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075424"}}, {"model": "wells.bcgs_numbers", "pk": 8121, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075442"}}, {"model": "wells.bcgs_numbers", "pk": 8122, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P075443"}}, {"model": "wells.bcgs_numbers", "pk": 8123, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P076124"}}, {"model": "wells.bcgs_numbers", "pk": 8124, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P076134"}}, {"model": "wells.bcgs_numbers", "pk": 8125, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P076144"}}, {"model": "wells.bcgs_numbers", "pk": 8126, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P076232"}}, {"model": "wells.bcgs_numbers", "pk": 8127, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P076234"}}, {"model": "wells.bcgs_numbers", "pk": 8128, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P076243"}}, {"model": "wells.bcgs_numbers", "pk": 8129, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076312"}}, {"model": "wells.bcgs_numbers", "pk": 8130, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076313"}}, {"model": "wells.bcgs_numbers", "pk": 8131, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076314"}}, {"model": "wells.bcgs_numbers", "pk": 8132, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076321"}}, {"model": "wells.bcgs_numbers", "pk": 8133, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076322"}}, {"model": "wells.bcgs_numbers", "pk": 8134, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076323"}}, {"model": "wells.bcgs_numbers", "pk": 8135, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076324"}}, {"model": "wells.bcgs_numbers", "pk": 8136, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076332"}}, {"model": "wells.bcgs_numbers", "pk": 8137, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076333"}}, {"model": "wells.bcgs_numbers", "pk": 8138, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076342"}}, {"model": "wells.bcgs_numbers", "pk": 8139, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076343"}}, {"model": "wells.bcgs_numbers", "pk": 8140, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076411"}}, {"model": "wells.bcgs_numbers", "pk": 8141, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076412"}}, {"model": "wells.bcgs_numbers", "pk": 8142, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076414"}}, {"model": "wells.bcgs_numbers", "pk": 8143, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076424"}}, {"model": "wells.bcgs_numbers", "pk": 8144, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076441"}}, {"model": "wells.bcgs_numbers", "pk": 8145, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076442"}}, {"model": "wells.bcgs_numbers", "pk": 8146, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P076443"}}, {"model": "wells.bcgs_numbers", "pk": 8147, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077133"}}, {"model": "wells.bcgs_numbers", "pk": 8148, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077144"}}, {"model": "wells.bcgs_numbers", "pk": 8149, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077214"}}, {"model": "wells.bcgs_numbers", "pk": 8150, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077234"}}, {"model": "wells.bcgs_numbers", "pk": 8151, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077312"}}, {"model": "wells.bcgs_numbers", "pk": 8152, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077314"}}, {"model": "wells.bcgs_numbers", "pk": 8153, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077323"}}, {"model": "wells.bcgs_numbers", "pk": 8154, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077331"}}, {"model": "wells.bcgs_numbers", "pk": 8155, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077332"}}, {"model": "wells.bcgs_numbers", "pk": 8156, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077341"}}, {"model": "wells.bcgs_numbers", "pk": 8157, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077342"}}, {"model": "wells.bcgs_numbers", "pk": 8158, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077343"}}, {"model": "wells.bcgs_numbers", "pk": 8159, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077344"}}, {"model": "wells.bcgs_numbers", "pk": 8160, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077413"}}, {"model": "wells.bcgs_numbers", "pk": 8161, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077423"}}, {"model": "wells.bcgs_numbers", "pk": 8162, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077424"}}, {"model": "wells.bcgs_numbers", "pk": 8163, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077431"}}, {"model": "wells.bcgs_numbers", "pk": 8164, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077433"}}, {"model": "wells.bcgs_numbers", "pk": 8165, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P077434"}}, {"model": "wells.bcgs_numbers", "pk": 8166, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P078113"}}, {"model": "wells.bcgs_numbers", "pk": 8167, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P078141"}}, {"model": "wells.bcgs_numbers", "pk": 8168, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P078143"}}, {"model": "wells.bcgs_numbers", "pk": 8169, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P078223"}}, {"model": "wells.bcgs_numbers", "pk": 8170, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P078241"}}, {"model": "wells.bcgs_numbers", "pk": 8171, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P078411"}}, {"model": "wells.bcgs_numbers", "pk": 8172, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P078413"}}, {"model": "wells.bcgs_numbers", "pk": 8173, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P078414"}}, {"model": "wells.bcgs_numbers", "pk": 8174, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P078423"}}, {"model": "wells.bcgs_numbers", "pk": 8175, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079113"}}, {"model": "wells.bcgs_numbers", "pk": 8176, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079132"}}, {"model": "wells.bcgs_numbers", "pk": 8177, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079134"}}, {"model": "wells.bcgs_numbers", "pk": 8178, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079212"}}, {"model": "wells.bcgs_numbers", "pk": 8179, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079213"}}, {"model": "wells.bcgs_numbers", "pk": 8180, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079214"}}, {"model": "wells.bcgs_numbers", "pk": 8181, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079222"}}, {"model": "wells.bcgs_numbers", "pk": 8182, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079323"}}, {"model": "wells.bcgs_numbers", "pk": 8183, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079332"}}, {"model": "wells.bcgs_numbers", "pk": 8184, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079333"}}, {"model": "wells.bcgs_numbers", "pk": 8185, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079341"}}, {"model": "wells.bcgs_numbers", "pk": 8186, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079411"}}, {"model": "wells.bcgs_numbers", "pk": 8187, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079412"}}, {"model": "wells.bcgs_numbers", "pk": 8188, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079422"}}, {"model": "wells.bcgs_numbers", "pk": 8189, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P079441"}}, {"model": "wells.bcgs_numbers", "pk": 8190, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080111"}}, {"model": "wells.bcgs_numbers", "pk": 8191, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080114"}}, {"model": "wells.bcgs_numbers", "pk": 8192, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080123"}}, {"model": "wells.bcgs_numbers", "pk": 8193, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080124"}}, {"model": "wells.bcgs_numbers", "pk": 8194, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080214"}}, {"model": "wells.bcgs_numbers", "pk": 8195, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080311"}}, {"model": "wells.bcgs_numbers", "pk": 8196, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080332"}}, {"model": "wells.bcgs_numbers", "pk": 8197, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080341"}}, {"model": "wells.bcgs_numbers", "pk": 8198, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080411"}}, {"model": "wells.bcgs_numbers", "pk": 8199, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080412"}}, {"model": "wells.bcgs_numbers", "pk": 8200, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P080442"}}, {"model": "wells.bcgs_numbers", "pk": 8201, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P081222"}}, {"model": "wells.bcgs_numbers", "pk": 8202, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P081231"}}, {"model": "wells.bcgs_numbers", "pk": 8203, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P081242"}}, {"model": "wells.bcgs_numbers", "pk": 8204, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082123"}}, {"model": "wells.bcgs_numbers", "pk": 8205, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082131"}}, {"model": "wells.bcgs_numbers", "pk": 8206, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082132"}}, {"model": "wells.bcgs_numbers", "pk": 8207, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082141"}}, {"model": "wells.bcgs_numbers", "pk": 8208, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082144"}}, {"model": "wells.bcgs_numbers", "pk": 8209, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082211"}}, {"model": "wells.bcgs_numbers", "pk": 8210, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082232"}}, {"model": "wells.bcgs_numbers", "pk": 8211, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082234"}}, {"model": "wells.bcgs_numbers", "pk": 8212, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082412"}}, {"model": "wells.bcgs_numbers", "pk": 8213, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082423"}}, {"model": "wells.bcgs_numbers", "pk": 8214, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P082443"}}, {"model": "wells.bcgs_numbers", "pk": 8215, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P083122"}}, {"model": "wells.bcgs_numbers", "pk": 8216, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P083211"}}, {"model": "wells.bcgs_numbers", "pk": 8217, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P083212"}}, {"model": "wells.bcgs_numbers", "pk": 8218, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P083221"}}, {"model": "wells.bcgs_numbers", "pk": 8219, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P083223"}}, {"model": "wells.bcgs_numbers", "pk": 8220, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P086113"}}, {"model": "wells.bcgs_numbers", "pk": 8221, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P086114"}}, {"model": "wells.bcgs_numbers", "pk": 8222, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P086121"}}, {"model": "wells.bcgs_numbers", "pk": 8223, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086131"}}, {"model": "wells.bcgs_numbers", "pk": 8224, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086132"}}, {"model": "wells.bcgs_numbers", "pk": 8225, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086133"}}, {"model": "wells.bcgs_numbers", "pk": 8226, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086134"}}, {"model": "wells.bcgs_numbers", "pk": 8227, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086141"}}, {"model": "wells.bcgs_numbers", "pk": 8228, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086144"}}, {"model": "wells.bcgs_numbers", "pk": 8229, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086224"}}, {"model": "wells.bcgs_numbers", "pk": 8230, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086232"}}, {"model": "wells.bcgs_numbers", "pk": 8231, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086234"}}, {"model": "wells.bcgs_numbers", "pk": 8232, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086241"}}, {"model": "wells.bcgs_numbers", "pk": 8233, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086242"}}, {"model": "wells.bcgs_numbers", "pk": 8234, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086243"}}, {"model": "wells.bcgs_numbers", "pk": 8235, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086244"}}, {"model": "wells.bcgs_numbers", "pk": 8236, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086311"}}, {"model": "wells.bcgs_numbers", "pk": 8237, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086321"}}, {"model": "wells.bcgs_numbers", "pk": 8238, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086322"}}, {"model": "wells.bcgs_numbers", "pk": 8239, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086412"}}, {"model": "wells.bcgs_numbers", "pk": 8240, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086414"}}, {"model": "wells.bcgs_numbers", "pk": 8241, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086421"}}, {"model": "wells.bcgs_numbers", "pk": 8242, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086423"}}, {"model": "wells.bcgs_numbers", "pk": 8243, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086424"}}, {"model": "wells.bcgs_numbers", "pk": 8244, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086432"}}, {"model": "wells.bcgs_numbers", "pk": 8245, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P086441"}}, {"model": "wells.bcgs_numbers", "pk": 8246, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087111"}}, {"model": "wells.bcgs_numbers", "pk": 8247, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087112"}}, {"model": "wells.bcgs_numbers", "pk": 8248, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087113"}}, {"model": "wells.bcgs_numbers", "pk": 8249, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087121"}}, {"model": "wells.bcgs_numbers", "pk": 8250, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087122"}}, {"model": "wells.bcgs_numbers", "pk": 8251, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087132"}}, {"model": "wells.bcgs_numbers", "pk": 8252, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087141"}}, {"model": "wells.bcgs_numbers", "pk": 8253, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087143"}}, {"model": "wells.bcgs_numbers", "pk": 8254, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087213"}}, {"model": "wells.bcgs_numbers", "pk": 8255, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087231"}}, {"model": "wells.bcgs_numbers", "pk": 8256, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087311"}}, {"model": "wells.bcgs_numbers", "pk": 8257, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087313"}}, {"model": "wells.bcgs_numbers", "pk": 8258, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087314"}}, {"model": "wells.bcgs_numbers", "pk": 8259, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087321"}}, {"model": "wells.bcgs_numbers", "pk": 8260, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087322"}}, {"model": "wells.bcgs_numbers", "pk": 8261, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087332"}}, {"model": "wells.bcgs_numbers", "pk": 8262, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087431"}}, {"model": "wells.bcgs_numbers", "pk": 8263, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P087442"}}, {"model": "wells.bcgs_numbers", "pk": 8264, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088112"}}, {"model": "wells.bcgs_numbers", "pk": 8265, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088113"}}, {"model": "wells.bcgs_numbers", "pk": 8266, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088114"}}, {"model": "wells.bcgs_numbers", "pk": 8267, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088121"}}, {"model": "wells.bcgs_numbers", "pk": 8268, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088122"}}, {"model": "wells.bcgs_numbers", "pk": 8269, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088132"}}, {"model": "wells.bcgs_numbers", "pk": 8270, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088133"}}, {"model": "wells.bcgs_numbers", "pk": 8271, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088134"}}, {"model": "wells.bcgs_numbers", "pk": 8272, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088141"}}, {"model": "wells.bcgs_numbers", "pk": 8273, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088144"}}, {"model": "wells.bcgs_numbers", "pk": 8274, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088212"}}, {"model": "wells.bcgs_numbers", "pk": 8275, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088221"}}, {"model": "wells.bcgs_numbers", "pk": 8276, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088222"}}, {"model": "wells.bcgs_numbers", "pk": 8277, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088313"}}, {"model": "wells.bcgs_numbers", "pk": 8278, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088323"}}, {"model": "wells.bcgs_numbers", "pk": 8279, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088343"}}, {"model": "wells.bcgs_numbers", "pk": 8280, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088413"}}, {"model": "wells.bcgs_numbers", "pk": 8281, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088414"}}, {"model": "wells.bcgs_numbers", "pk": 8282, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088431"}}, {"model": "wells.bcgs_numbers", "pk": 8283, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088432"}}, {"model": "wells.bcgs_numbers", "pk": 8284, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088433"}}, {"model": "wells.bcgs_numbers", "pk": 8285, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P088434"}}, {"model": "wells.bcgs_numbers", "pk": 8286, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P088441"}}, {"model": "wells.bcgs_numbers", "pk": 8287, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P088442"}}, {"model": "wells.bcgs_numbers", "pk": 8288, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P088443"}}, {"model": "wells.bcgs_numbers", "pk": 8289, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P088444"}}, {"model": "wells.bcgs_numbers", "pk": 8290, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089123"}}, {"model": "wells.bcgs_numbers", "pk": 8291, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089141"}}, {"model": "wells.bcgs_numbers", "pk": 8292, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089144"}}, {"model": "wells.bcgs_numbers", "pk": 8293, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089234"}}, {"model": "wells.bcgs_numbers", "pk": 8294, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089322"}}, {"model": "wells.bcgs_numbers", "pk": 8295, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089323"}}, {"model": "wells.bcgs_numbers", "pk": 8296, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089342"}}, {"model": "wells.bcgs_numbers", "pk": 8297, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089344"}}, {"model": "wells.bcgs_numbers", "pk": 8298, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089423"}}, {"model": "wells.bcgs_numbers", "pk": 8299, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089442"}}, {"model": "wells.bcgs_numbers", "pk": 8300, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089443"}}, {"model": "wells.bcgs_numbers", "pk": 8301, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P089444"}}, {"model": "wells.bcgs_numbers", "pk": 8302, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090134"}}, {"model": "wells.bcgs_numbers", "pk": 8303, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090311"}}, {"model": "wells.bcgs_numbers", "pk": 8304, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090313"}}, {"model": "wells.bcgs_numbers", "pk": 8305, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090323"}}, {"model": "wells.bcgs_numbers", "pk": 8306, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090333"}}, {"model": "wells.bcgs_numbers", "pk": 8307, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090341"}}, {"model": "wells.bcgs_numbers", "pk": 8308, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P090343"}}, {"model": "wells.bcgs_numbers", "pk": 8309, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P092222"}}, {"model": "wells.bcgs_numbers", "pk": 8310, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P092422"}}, {"model": "wells.bcgs_numbers", "pk": 8311, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P093113"}}, {"model": "wells.bcgs_numbers", "pk": 8312, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P093131"}}, {"model": "wells.bcgs_numbers", "pk": 8313, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P094144"}}, {"model": "wells.bcgs_numbers", "pk": 8314, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P097121"}}, {"model": "wells.bcgs_numbers", "pk": 8315, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P097442"}}, {"model": "wells.bcgs_numbers", "pk": 8316, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P097444"}}, {"model": "wells.bcgs_numbers", "pk": 8317, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098112"}}, {"model": "wells.bcgs_numbers", "pk": 8318, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098122"}}, {"model": "wells.bcgs_numbers", "pk": 8319, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098131"}}, {"model": "wells.bcgs_numbers", "pk": 8320, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098141"}}, {"model": "wells.bcgs_numbers", "pk": 8321, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098211"}}, {"model": "wells.bcgs_numbers", "pk": 8322, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098213"}}, {"model": "wells.bcgs_numbers", "pk": 8323, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098312"}}, {"model": "wells.bcgs_numbers", "pk": 8324, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P098313"}}, {"model": "wells.bcgs_numbers", "pk": 8325, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P098321"}}, {"model": "wells.bcgs_numbers", "pk": 8326, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P098324"}}, {"model": "wells.bcgs_numbers", "pk": 8327, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P098331"}}, {"model": "wells.bcgs_numbers", "pk": 8328, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099112"}}, {"model": "wells.bcgs_numbers", "pk": 8329, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099122"}}, {"model": "wells.bcgs_numbers", "pk": 8330, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099124"}}, {"model": "wells.bcgs_numbers", "pk": 8331, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099231"}}, {"model": "wells.bcgs_numbers", "pk": 8332, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099232"}}, {"model": "wells.bcgs_numbers", "pk": 8333, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099341"}}, {"model": "wells.bcgs_numbers", "pk": 8334, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P099433"}}, {"model": "wells.bcgs_numbers", "pk": 8335, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P100134"}}, {"model": "wells.bcgs_numbers", "pk": 8336, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P100222"}}, {"model": "wells.bcgs_numbers", "pk": 8337, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P100333"}}, {"model": "wells.bcgs_numbers", "pk": 8338, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P100344"}}, {"model": "wells.bcgs_numbers", "pk": 8339, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P100422"}}, {"model": "wells.bcgs_numbers", "pk": 8340, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P100433"}}, {"model": "wells.bcgs_numbers", "pk": 8341, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001132"}}, {"model": "wells.bcgs_numbers", "pk": 8342, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001141"}}, {"model": "wells.bcgs_numbers", "pk": 8343, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001142"}}, {"model": "wells.bcgs_numbers", "pk": 8344, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001233"}}, {"model": "wells.bcgs_numbers", "pk": 8345, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001334"}}, {"model": "wells.bcgs_numbers", "pk": 8346, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001411"}}, {"model": "wells.bcgs_numbers", "pk": 8347, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001412"}}, {"model": "wells.bcgs_numbers", "pk": 8348, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001414"}}, {"model": "wells.bcgs_numbers", "pk": 8349, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001423"}}, {"model": "wells.bcgs_numbers", "pk": 8350, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001441"}}, {"model": "wells.bcgs_numbers", "pk": 8351, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A001443"}}, {"model": "wells.bcgs_numbers", "pk": 8352, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007111"}}, {"model": "wells.bcgs_numbers", "pk": 8353, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007222"}}, {"model": "wells.bcgs_numbers", "pk": 8354, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007223"}}, {"model": "wells.bcgs_numbers", "pk": 8355, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007224"}}, {"model": "wells.bcgs_numbers", "pk": 8356, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007243"}}, {"model": "wells.bcgs_numbers", "pk": 8357, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007244"}}, {"model": "wells.bcgs_numbers", "pk": 8358, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007414"}}, {"model": "wells.bcgs_numbers", "pk": 8359, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007421"}}, {"model": "wells.bcgs_numbers", "pk": 8360, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007432"}}, {"model": "wells.bcgs_numbers", "pk": 8361, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007434"}}, {"model": "wells.bcgs_numbers", "pk": 8362, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007442"}}, {"model": "wells.bcgs_numbers", "pk": 8363, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A007443"}}, {"model": "wells.bcgs_numbers", "pk": 8364, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A008211"}}, {"model": "wells.bcgs_numbers", "pk": 8365, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A008244"}}, {"model": "wells.bcgs_numbers", "pk": 8366, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A008313"}}, {"model": "wells.bcgs_numbers", "pk": 8367, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A009414"}}, {"model": "wells.bcgs_numbers", "pk": 8368, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A009423"}}, {"model": "wells.bcgs_numbers", "pk": 8369, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010112"}}, {"model": "wells.bcgs_numbers", "pk": 8370, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010121"}}, {"model": "wells.bcgs_numbers", "pk": 8371, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010122"}}, {"model": "wells.bcgs_numbers", "pk": 8372, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010124"}}, {"model": "wells.bcgs_numbers", "pk": 8373, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010143"}}, {"model": "wells.bcgs_numbers", "pk": 8374, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010211"}}, {"model": "wells.bcgs_numbers", "pk": 8375, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010212"}}, {"model": "wells.bcgs_numbers", "pk": 8376, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010213"}}, {"model": "wells.bcgs_numbers", "pk": 8377, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010231"}}, {"model": "wells.bcgs_numbers", "pk": 8378, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010233"}}, {"model": "wells.bcgs_numbers", "pk": 8379, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010313"}}, {"model": "wells.bcgs_numbers", "pk": 8380, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010314"}}, {"model": "wells.bcgs_numbers", "pk": 8381, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A010411"}}, {"model": "wells.bcgs_numbers", "pk": 8382, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A011224"}}, {"model": "wells.bcgs_numbers", "pk": 8383, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A012113"}}, {"model": "wells.bcgs_numbers", "pk": 8384, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A012114"}}, {"model": "wells.bcgs_numbers", "pk": 8385, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A012243"}}, {"model": "wells.bcgs_numbers", "pk": 8386, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A013332"}}, {"model": "wells.bcgs_numbers", "pk": 8387, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A014121"}}, {"model": "wells.bcgs_numbers", "pk": 8388, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A014122"}}, {"model": "wells.bcgs_numbers", "pk": 8389, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017142"}}, {"model": "wells.bcgs_numbers", "pk": 8390, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017214"}}, {"model": "wells.bcgs_numbers", "pk": 8391, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017231"}}, {"model": "wells.bcgs_numbers", "pk": 8392, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017232"}}, {"model": "wells.bcgs_numbers", "pk": 8393, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017233"}}, {"model": "wells.bcgs_numbers", "pk": 8394, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017241"}}, {"model": "wells.bcgs_numbers", "pk": 8395, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017342"}}, {"model": "wells.bcgs_numbers", "pk": 8396, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017413"}}, {"model": "wells.bcgs_numbers", "pk": 8397, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017431"}}, {"model": "wells.bcgs_numbers", "pk": 8398, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A017443"}}, {"model": "wells.bcgs_numbers", "pk": 8399, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A018321"}}, {"model": "wells.bcgs_numbers", "pk": 8400, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A018332"}}, {"model": "wells.bcgs_numbers", "pk": 8401, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A018334"}}, {"model": "wells.bcgs_numbers", "pk": 8402, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A019321"}}, {"model": "wells.bcgs_numbers", "pk": 8403, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A019441"}}, {"model": "wells.bcgs_numbers", "pk": 8404, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A020112"}}, {"model": "wells.bcgs_numbers", "pk": 8405, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A020123"}}, {"model": "wells.bcgs_numbers", "pk": 8406, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A020124"}}, {"model": "wells.bcgs_numbers", "pk": 8407, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A020214"}}, {"model": "wells.bcgs_numbers", "pk": 8408, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A020421"}}, {"model": "wells.bcgs_numbers", "pk": 8409, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A020423"}}, {"model": "wells.bcgs_numbers", "pk": 8410, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A020434"}}, {"model": "wells.bcgs_numbers", "pk": 8411, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A020441"}}, {"model": "wells.bcgs_numbers", "pk": 8412, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A020443"}}, {"model": "wells.bcgs_numbers", "pk": 8413, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A022313"}}, {"model": "wells.bcgs_numbers", "pk": 8414, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A023214"}}, {"model": "wells.bcgs_numbers", "pk": 8415, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A023244"}}, {"model": "wells.bcgs_numbers", "pk": 8416, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A023431"}}, {"model": "wells.bcgs_numbers", "pk": 8417, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A024233"}}, {"model": "wells.bcgs_numbers", "pk": 8418, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A024333"}}, {"model": "wells.bcgs_numbers", "pk": 8419, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025334"}}, {"model": "wells.bcgs_numbers", "pk": 8420, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025342"}}, {"model": "wells.bcgs_numbers", "pk": 8421, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025343"}}, {"model": "wells.bcgs_numbers", "pk": 8422, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025344"}}, {"model": "wells.bcgs_numbers", "pk": 8423, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025421"}}, {"model": "wells.bcgs_numbers", "pk": 8424, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025422"}}, {"model": "wells.bcgs_numbers", "pk": 8425, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025423"}}, {"model": "wells.bcgs_numbers", "pk": 8426, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025424"}}, {"model": "wells.bcgs_numbers", "pk": 8427, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025433"}}, {"model": "wells.bcgs_numbers", "pk": 8428, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025434"}}, {"model": "wells.bcgs_numbers", "pk": 8429, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025442"}}, {"model": "wells.bcgs_numbers", "pk": 8430, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025443"}}, {"model": "wells.bcgs_numbers", "pk": 8431, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A025444"}}, {"model": "wells.bcgs_numbers", "pk": 8432, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026134"}}, {"model": "wells.bcgs_numbers", "pk": 8433, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026143"}}, {"model": "wells.bcgs_numbers", "pk": 8434, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026144"}}, {"model": "wells.bcgs_numbers", "pk": 8435, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026221"}}, {"model": "wells.bcgs_numbers", "pk": 8436, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026222"}}, {"model": "wells.bcgs_numbers", "pk": 8437, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026223"}}, {"model": "wells.bcgs_numbers", "pk": 8438, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026231"}}, {"model": "wells.bcgs_numbers", "pk": 8439, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026233"}}, {"model": "wells.bcgs_numbers", "pk": 8440, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026234"}}, {"model": "wells.bcgs_numbers", "pk": 8441, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026241"}}, {"model": "wells.bcgs_numbers", "pk": 8442, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026313"}}, {"model": "wells.bcgs_numbers", "pk": 8443, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026314"}}, {"model": "wells.bcgs_numbers", "pk": 8444, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026321"}}, {"model": "wells.bcgs_numbers", "pk": 8445, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026322"}}, {"model": "wells.bcgs_numbers", "pk": 8446, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026323"}}, {"model": "wells.bcgs_numbers", "pk": 8447, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026324"}}, {"model": "wells.bcgs_numbers", "pk": 8448, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026331"}}, {"model": "wells.bcgs_numbers", "pk": 8449, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A026332"}}, {"model": "wells.bcgs_numbers", "pk": 8450, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026333"}}, {"model": "wells.bcgs_numbers", "pk": 8451, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026334"}}, {"model": "wells.bcgs_numbers", "pk": 8452, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026341"}}, {"model": "wells.bcgs_numbers", "pk": 8453, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026342"}}, {"model": "wells.bcgs_numbers", "pk": 8454, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026343"}}, {"model": "wells.bcgs_numbers", "pk": 8455, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026411"}}, {"model": "wells.bcgs_numbers", "pk": 8456, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026413"}}, {"model": "wells.bcgs_numbers", "pk": 8457, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026414"}}, {"model": "wells.bcgs_numbers", "pk": 8458, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026421"}}, {"model": "wells.bcgs_numbers", "pk": 8459, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026422"}}, {"model": "wells.bcgs_numbers", "pk": 8460, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026424"}}, {"model": "wells.bcgs_numbers", "pk": 8461, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026431"}}, {"model": "wells.bcgs_numbers", "pk": 8462, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026432"}}, {"model": "wells.bcgs_numbers", "pk": 8463, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026433"}}, {"model": "wells.bcgs_numbers", "pk": 8464, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026434"}}, {"model": "wells.bcgs_numbers", "pk": 8465, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026441"}}, {"model": "wells.bcgs_numbers", "pk": 8466, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A026443"}}, {"model": "wells.bcgs_numbers", "pk": 8467, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027111"}}, {"model": "wells.bcgs_numbers", "pk": 8468, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027113"}}, {"model": "wells.bcgs_numbers", "pk": 8469, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027114"}}, {"model": "wells.bcgs_numbers", "pk": 8470, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027122"}}, {"model": "wells.bcgs_numbers", "pk": 8471, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027123"}}, {"model": "wells.bcgs_numbers", "pk": 8472, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027124"}}, {"model": "wells.bcgs_numbers", "pk": 8473, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027131"}}, {"model": "wells.bcgs_numbers", "pk": 8474, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027132"}}, {"model": "wells.bcgs_numbers", "pk": 8475, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027133"}}, {"model": "wells.bcgs_numbers", "pk": 8476, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027134"}}, {"model": "wells.bcgs_numbers", "pk": 8477, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027142"}}, {"model": "wells.bcgs_numbers", "pk": 8478, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027143"}}, {"model": "wells.bcgs_numbers", "pk": 8479, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027144"}}, {"model": "wells.bcgs_numbers", "pk": 8480, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027213"}}, {"model": "wells.bcgs_numbers", "pk": 8481, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027214"}}, {"model": "wells.bcgs_numbers", "pk": 8482, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027221"}}, {"model": "wells.bcgs_numbers", "pk": 8483, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027243"}}, {"model": "wells.bcgs_numbers", "pk": 8484, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027313"}}, {"model": "wells.bcgs_numbers", "pk": 8485, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027321"}}, {"model": "wells.bcgs_numbers", "pk": 8486, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A027322"}}, {"model": "wells.bcgs_numbers", "pk": 8487, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027324"}}, {"model": "wells.bcgs_numbers", "pk": 8488, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027344"}}, {"model": "wells.bcgs_numbers", "pk": 8489, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027412"}}, {"model": "wells.bcgs_numbers", "pk": 8490, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027432"}}, {"model": "wells.bcgs_numbers", "pk": 8491, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027433"}}, {"model": "wells.bcgs_numbers", "pk": 8492, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027441"}}, {"model": "wells.bcgs_numbers", "pk": 8493, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A027442"}}, {"model": "wells.bcgs_numbers", "pk": 8494, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028114"}}, {"model": "wells.bcgs_numbers", "pk": 8495, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028123"}}, {"model": "wells.bcgs_numbers", "pk": 8496, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028131"}}, {"model": "wells.bcgs_numbers", "pk": 8497, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028132"}}, {"model": "wells.bcgs_numbers", "pk": 8498, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028133"}}, {"model": "wells.bcgs_numbers", "pk": 8499, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028243"}}, {"model": "wells.bcgs_numbers", "pk": 8500, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028333"}}, {"model": "wells.bcgs_numbers", "pk": 8501, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028343"}}, {"model": "wells.bcgs_numbers", "pk": 8502, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028412"}}, {"model": "wells.bcgs_numbers", "pk": 8503, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A028421"}}, {"model": "wells.bcgs_numbers", "pk": 8504, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A029113"}}, {"model": "wells.bcgs_numbers", "pk": 8505, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A029143"}}, {"model": "wells.bcgs_numbers", "pk": 8506, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A029213"}}, {"model": "wells.bcgs_numbers", "pk": 8507, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A029233"}}, {"model": "wells.bcgs_numbers", "pk": 8508, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A029423"}}, {"model": "wells.bcgs_numbers", "pk": 8509, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A029432"}}, {"model": "wells.bcgs_numbers", "pk": 8510, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030113"}}, {"model": "wells.bcgs_numbers", "pk": 8511, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030114"}}, {"model": "wells.bcgs_numbers", "pk": 8512, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030124"}}, {"model": "wells.bcgs_numbers", "pk": 8513, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030132"}}, {"model": "wells.bcgs_numbers", "pk": 8514, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030212"}}, {"model": "wells.bcgs_numbers", "pk": 8515, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030214"}}, {"model": "wells.bcgs_numbers", "pk": 8516, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030224"}}, {"model": "wells.bcgs_numbers", "pk": 8517, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A030241"}}, {"model": "wells.bcgs_numbers", "pk": 8518, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A033332"}}, {"model": "wells.bcgs_numbers", "pk": 8519, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A033433"}}, {"model": "wells.bcgs_numbers", "pk": 8520, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A034224"}}, {"model": "wells.bcgs_numbers", "pk": 8521, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A034243"}}, {"model": "wells.bcgs_numbers", "pk": 8522, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A034244"}}, {"model": "wells.bcgs_numbers", "pk": 8523, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035111"}}, {"model": "wells.bcgs_numbers", "pk": 8524, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035112"}}, {"model": "wells.bcgs_numbers", "pk": 8525, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035121"}}, {"model": "wells.bcgs_numbers", "pk": 8526, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035124"}}, {"model": "wells.bcgs_numbers", "pk": 8527, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035211"}}, {"model": "wells.bcgs_numbers", "pk": 8528, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035212"}}, {"model": "wells.bcgs_numbers", "pk": 8529, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035213"}}, {"model": "wells.bcgs_numbers", "pk": 8530, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035214"}}, {"model": "wells.bcgs_numbers", "pk": 8531, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035221"}}, {"model": "wells.bcgs_numbers", "pk": 8532, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035222"}}, {"model": "wells.bcgs_numbers", "pk": 8533, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035223"}}, {"model": "wells.bcgs_numbers", "pk": 8534, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035224"}}, {"model": "wells.bcgs_numbers", "pk": 8535, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035231"}}, {"model": "wells.bcgs_numbers", "pk": 8536, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035232"}}, {"model": "wells.bcgs_numbers", "pk": 8537, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035233"}}, {"model": "wells.bcgs_numbers", "pk": 8538, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035234"}}, {"model": "wells.bcgs_numbers", "pk": 8539, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035241"}}, {"model": "wells.bcgs_numbers", "pk": 8540, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035242"}}, {"model": "wells.bcgs_numbers", "pk": 8541, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035322"}}, {"model": "wells.bcgs_numbers", "pk": 8542, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035343"}}, {"model": "wells.bcgs_numbers", "pk": 8543, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035411"}}, {"model": "wells.bcgs_numbers", "pk": 8544, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035413"}}, {"model": "wells.bcgs_numbers", "pk": 8545, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035414"}}, {"model": "wells.bcgs_numbers", "pk": 8546, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035424"}}, {"model": "wells.bcgs_numbers", "pk": 8547, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035431"}}, {"model": "wells.bcgs_numbers", "pk": 8548, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A035441"}}, {"model": "wells.bcgs_numbers", "pk": 8549, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036111"}}, {"model": "wells.bcgs_numbers", "pk": 8550, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036121"}}, {"model": "wells.bcgs_numbers", "pk": 8551, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036122"}}, {"model": "wells.bcgs_numbers", "pk": 8552, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036123"}}, {"model": "wells.bcgs_numbers", "pk": 8553, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036132"}}, {"model": "wells.bcgs_numbers", "pk": 8554, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036134"}}, {"model": "wells.bcgs_numbers", "pk": 8555, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036143"}}, {"model": "wells.bcgs_numbers", "pk": 8556, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036211"}}, {"model": "wells.bcgs_numbers", "pk": 8557, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036212"}}, {"model": "wells.bcgs_numbers", "pk": 8558, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A036214"}}, {"model": "wells.bcgs_numbers", "pk": 8559, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A036223"}}, {"model": "wells.bcgs_numbers", "pk": 8560, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A036224"}}, {"model": "wells.bcgs_numbers", "pk": 8561, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A036232"}}, {"model": "wells.bcgs_numbers", "pk": 8562, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A036233"}}, {"model": "wells.bcgs_numbers", "pk": 8563, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A036313"}}, {"model": "wells.bcgs_numbers", "pk": 8564, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A036321"}}, {"model": "wells.bcgs_numbers", "pk": 8565, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037122"}}, {"model": "wells.bcgs_numbers", "pk": 8566, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037142"}}, {"model": "wells.bcgs_numbers", "pk": 8567, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037221"}}, {"model": "wells.bcgs_numbers", "pk": 8568, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037232"}}, {"model": "wells.bcgs_numbers", "pk": 8569, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037333"}}, {"model": "wells.bcgs_numbers", "pk": 8570, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037421"}}, {"model": "wells.bcgs_numbers", "pk": 8571, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037422"}}, {"model": "wells.bcgs_numbers", "pk": 8572, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A037423"}}, {"model": "wells.bcgs_numbers", "pk": 8573, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038112"}}, {"model": "wells.bcgs_numbers", "pk": 8574, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038121"}}, {"model": "wells.bcgs_numbers", "pk": 8575, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038132"}}, {"model": "wells.bcgs_numbers", "pk": 8576, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038211"}}, {"model": "wells.bcgs_numbers", "pk": 8577, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038221"}}, {"model": "wells.bcgs_numbers", "pk": 8578, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038222"}}, {"model": "wells.bcgs_numbers", "pk": 8579, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038311"}}, {"model": "wells.bcgs_numbers", "pk": 8580, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038312"}}, {"model": "wells.bcgs_numbers", "pk": 8581, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A038422"}}, {"model": "wells.bcgs_numbers", "pk": 8582, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A039142"}}, {"model": "wells.bcgs_numbers", "pk": 8583, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A039231"}}, {"model": "wells.bcgs_numbers", "pk": 8584, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A039242"}}, {"model": "wells.bcgs_numbers", "pk": 8585, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A039412"}}, {"model": "wells.bcgs_numbers", "pk": 8586, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A039434"}}, {"model": "wells.bcgs_numbers", "pk": 8587, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A040112"}}, {"model": "wells.bcgs_numbers", "pk": 8588, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A040124"}}, {"model": "wells.bcgs_numbers", "pk": 8589, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A040141"}}, {"model": "wells.bcgs_numbers", "pk": 8590, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A040142"}}, {"model": "wells.bcgs_numbers", "pk": 8591, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A044222"}}, {"model": "wells.bcgs_numbers", "pk": 8592, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A044434"}}, {"model": "wells.bcgs_numbers", "pk": 8593, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045111"}}, {"model": "wells.bcgs_numbers", "pk": 8594, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045114"}}, {"model": "wells.bcgs_numbers", "pk": 8595, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045122"}}, {"model": "wells.bcgs_numbers", "pk": 8596, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045123"}}, {"model": "wells.bcgs_numbers", "pk": 8597, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045124"}}, {"model": "wells.bcgs_numbers", "pk": 8598, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045143"}}, {"model": "wells.bcgs_numbers", "pk": 8599, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045214"}}, {"model": "wells.bcgs_numbers", "pk": 8600, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045224"}}, {"model": "wells.bcgs_numbers", "pk": 8601, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045234"}}, {"model": "wells.bcgs_numbers", "pk": 8602, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045244"}}, {"model": "wells.bcgs_numbers", "pk": 8603, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A045311"}}, {"model": "wells.bcgs_numbers", "pk": 8604, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045321"}}, {"model": "wells.bcgs_numbers", "pk": 8605, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045323"}}, {"model": "wells.bcgs_numbers", "pk": 8606, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045341"}}, {"model": "wells.bcgs_numbers", "pk": 8607, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045411"}}, {"model": "wells.bcgs_numbers", "pk": 8608, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045421"}}, {"model": "wells.bcgs_numbers", "pk": 8609, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045422"}}, {"model": "wells.bcgs_numbers", "pk": 8610, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045431"}}, {"model": "wells.bcgs_numbers", "pk": 8611, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045442"}}, {"model": "wells.bcgs_numbers", "pk": 8612, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046114"}}, {"model": "wells.bcgs_numbers", "pk": 8613, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046123"}}, {"model": "wells.bcgs_numbers", "pk": 8614, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046133"}}, {"model": "wells.bcgs_numbers", "pk": 8615, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046134"}}, {"model": "wells.bcgs_numbers", "pk": 8616, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046141"}}, {"model": "wells.bcgs_numbers", "pk": 8617, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046143"}}, {"model": "wells.bcgs_numbers", "pk": 8618, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046144"}}, {"model": "wells.bcgs_numbers", "pk": 8619, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046211"}}, {"model": "wells.bcgs_numbers", "pk": 8620, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046212"}}, {"model": "wells.bcgs_numbers", "pk": 8621, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046214"}}, {"model": "wells.bcgs_numbers", "pk": 8622, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046234"}}, {"model": "wells.bcgs_numbers", "pk": 8623, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046243"}}, {"model": "wells.bcgs_numbers", "pk": 8624, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046244"}}, {"model": "wells.bcgs_numbers", "pk": 8625, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046311"}}, {"model": "wells.bcgs_numbers", "pk": 8626, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046321"}}, {"model": "wells.bcgs_numbers", "pk": 8627, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046322"}}, {"model": "wells.bcgs_numbers", "pk": 8628, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046331"}}, {"model": "wells.bcgs_numbers", "pk": 8629, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046332"}}, {"model": "wells.bcgs_numbers", "pk": 8630, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046342"}}, {"model": "wells.bcgs_numbers", "pk": 8631, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046343"}}, {"model": "wells.bcgs_numbers", "pk": 8632, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A046441"}}, {"model": "wells.bcgs_numbers", "pk": 8633, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A047124"}}, {"model": "wells.bcgs_numbers", "pk": 8634, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A047134"}}, {"model": "wells.bcgs_numbers", "pk": 8635, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A047314"}}, {"model": "wells.bcgs_numbers", "pk": 8636, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A047343"}}, {"model": "wells.bcgs_numbers", "pk": 8637, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A048114"}}, {"model": "wells.bcgs_numbers", "pk": 8638, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A048131"}}, {"model": "wells.bcgs_numbers", "pk": 8639, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A051214"}}, {"model": "wells.bcgs_numbers", "pk": 8640, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A054211"}}, {"model": "wells.bcgs_numbers", "pk": 8641, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A054223"}}, {"model": "wells.bcgs_numbers", "pk": 8642, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A054241"}}, {"model": "wells.bcgs_numbers", "pk": 8643, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A055134"}}, {"model": "wells.bcgs_numbers", "pk": 8644, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A055241"}}, {"model": "wells.bcgs_numbers", "pk": 8645, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A055424"}}, {"model": "wells.bcgs_numbers", "pk": 8646, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056211"}}, {"model": "wells.bcgs_numbers", "pk": 8647, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056222"}}, {"model": "wells.bcgs_numbers", "pk": 8648, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056224"}}, {"model": "wells.bcgs_numbers", "pk": 8649, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056234"}}, {"model": "wells.bcgs_numbers", "pk": 8650, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056241"}}, {"model": "wells.bcgs_numbers", "pk": 8651, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056242"}}, {"model": "wells.bcgs_numbers", "pk": 8652, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056413"}}, {"model": "wells.bcgs_numbers", "pk": 8653, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056424"}}, {"model": "wells.bcgs_numbers", "pk": 8654, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056442"}}, {"model": "wells.bcgs_numbers", "pk": 8655, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056444"}}, {"model": "wells.bcgs_numbers", "pk": 8656, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A057111"}}, {"model": "wells.bcgs_numbers", "pk": 8657, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A057131"}}, {"model": "wells.bcgs_numbers", "pk": 8658, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A057134"}}, {"model": "wells.bcgs_numbers", "pk": 8659, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A057142"}}, {"model": "wells.bcgs_numbers", "pk": 8660, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A057311"}}, {"model": "wells.bcgs_numbers", "pk": 8661, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A057321"}}, {"model": "wells.bcgs_numbers", "pk": 8662, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A057322"}}, {"model": "wells.bcgs_numbers", "pk": 8663, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A062234"}}, {"model": "wells.bcgs_numbers", "pk": 8664, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A063442"}}, {"model": "wells.bcgs_numbers", "pk": 8665, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A064321"}}, {"model": "wells.bcgs_numbers", "pk": 8666, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A066123"}}, {"model": "wells.bcgs_numbers", "pk": 8667, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A066233"}}, {"model": "wells.bcgs_numbers", "pk": 8668, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A066244"}}, {"model": "wells.bcgs_numbers", "pk": 8669, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A067444"}}, {"model": "wells.bcgs_numbers", "pk": 8670, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A071224"}}, {"model": "wells.bcgs_numbers", "pk": 8671, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A071234"}}, {"model": "wells.bcgs_numbers", "pk": 8672, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A071241"}}, {"model": "wells.bcgs_numbers", "pk": 8673, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A071242"}}, {"model": "wells.bcgs_numbers", "pk": 8674, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A071243"}}, {"model": "wells.bcgs_numbers", "pk": 8675, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A072131"}}, {"model": "wells.bcgs_numbers", "pk": 8676, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A074214"}}, {"model": "wells.bcgs_numbers", "pk": 8677, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A074412"}}, {"model": "wells.bcgs_numbers", "pk": 8678, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A074442"}}, {"model": "wells.bcgs_numbers", "pk": 8679, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A075212"}}, {"model": "wells.bcgs_numbers", "pk": 8680, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A075222"}}, {"model": "wells.bcgs_numbers", "pk": 8681, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A075233"}}, {"model": "wells.bcgs_numbers", "pk": 8682, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A075333"}}, {"model": "wells.bcgs_numbers", "pk": 8683, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A075412"}}, {"model": "wells.bcgs_numbers", "pk": 8684, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A076112"}}, {"model": "wells.bcgs_numbers", "pk": 8685, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A076124"}}, {"model": "wells.bcgs_numbers", "pk": 8686, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A078111"}}, {"model": "wells.bcgs_numbers", "pk": 8687, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A084214"}}, {"model": "wells.bcgs_numbers", "pk": 8688, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A084224"}}, {"model": "wells.bcgs_numbers", "pk": 8689, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A084443"}}, {"model": "wells.bcgs_numbers", "pk": 8690, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085113"}}, {"model": "wells.bcgs_numbers", "pk": 8691, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085243"}}, {"model": "wells.bcgs_numbers", "pk": 8692, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085344"}}, {"model": "wells.bcgs_numbers", "pk": 8693, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085422"}}, {"model": "wells.bcgs_numbers", "pk": 8694, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085424"}}, {"model": "wells.bcgs_numbers", "pk": 8695, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085432"}}, {"model": "wells.bcgs_numbers", "pk": 8696, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085441"}}, {"model": "wells.bcgs_numbers", "pk": 8697, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A085442"}}, {"model": "wells.bcgs_numbers", "pk": 8698, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A086321"}}, {"model": "wells.bcgs_numbers", "pk": 8699, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A086341"}}, {"model": "wells.bcgs_numbers", "pk": 8700, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A087442"}}, {"model": "wells.bcgs_numbers", "pk": 8701, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A094212"}}, {"model": "wells.bcgs_numbers", "pk": 8702, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095211"}}, {"model": "wells.bcgs_numbers", "pk": 8703, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095212"}}, {"model": "wells.bcgs_numbers", "pk": 8704, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095222"}}, {"model": "wells.bcgs_numbers", "pk": 8705, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095223"}}, {"model": "wells.bcgs_numbers", "pk": 8706, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095232"}}, {"model": "wells.bcgs_numbers", "pk": 8707, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095241"}}, {"model": "wells.bcgs_numbers", "pk": 8708, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095243"}}, {"model": "wells.bcgs_numbers", "pk": 8709, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A095412"}}, {"model": "wells.bcgs_numbers", "pk": 8710, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A096124"}}, {"model": "wells.bcgs_numbers", "pk": 8711, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A096231"}}, {"model": "wells.bcgs_numbers", "pk": 8712, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B005413"}}, {"model": "wells.bcgs_numbers", "pk": 8713, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B010243"}}, {"model": "wells.bcgs_numbers", "pk": 8714, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B010421"}}, {"model": "wells.bcgs_numbers", "pk": 8715, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B010434"}}, {"model": "wells.bcgs_numbers", "pk": 8716, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B010441"}}, {"model": "wells.bcgs_numbers", "pk": 8717, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B010443"}}, {"model": "wells.bcgs_numbers", "pk": 8718, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B020342"}}, {"model": "wells.bcgs_numbers", "pk": 8719, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B020431"}}, {"model": "wells.bcgs_numbers", "pk": 8720, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B059214"}}, {"model": "wells.bcgs_numbers", "pk": 8721, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B059223"}}, {"model": "wells.bcgs_numbers", "pk": 8722, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B060113"}}, {"model": "wells.bcgs_numbers", "pk": 8723, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B077242"}}, {"model": "wells.bcgs_numbers", "pk": 8724, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B077424"}}, {"model": "wells.bcgs_numbers", "pk": 8725, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B087224"}}, {"model": "wells.bcgs_numbers", "pk": 8726, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094B097442"}}, {"model": "wells.bcgs_numbers", "pk": 8727, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094C075243"}}, {"model": "wells.bcgs_numbers", "pk": 8728, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094C076431"}}, {"model": "wells.bcgs_numbers", "pk": 8729, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G008143"}}, {"model": "wells.bcgs_numbers", "pk": 8730, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G008144"}}, {"model": "wells.bcgs_numbers", "pk": 8731, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G008313"}}, {"model": "wells.bcgs_numbers", "pk": 8732, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G027232"}}, {"model": "wells.bcgs_numbers", "pk": 8733, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G027331"}}, {"model": "wells.bcgs_numbers", "pk": 8734, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G036443"}}, {"model": "wells.bcgs_numbers", "pk": 8735, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G097314"}}, {"model": "wells.bcgs_numbers", "pk": 8736, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094H026322"}}, {"model": "wells.bcgs_numbers", "pk": 8737, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094H033441"}}, {"model": "wells.bcgs_numbers", "pk": 8738, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094H033442"}}, {"model": "wells.bcgs_numbers", "pk": 8739, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J007324"}}, {"model": "wells.bcgs_numbers", "pk": 8740, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J017122"}}, {"model": "wells.bcgs_numbers", "pk": 8741, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J057441"}}, {"model": "wells.bcgs_numbers", "pk": 8742, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J057443"}}, {"model": "wells.bcgs_numbers", "pk": 8743, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J067212"}}, {"model": "wells.bcgs_numbers", "pk": 8744, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J077231"}}, {"model": "wells.bcgs_numbers", "pk": 8745, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J077233"}}, {"model": "wells.bcgs_numbers", "pk": 8746, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J077413"}}, {"model": "wells.bcgs_numbers", "pk": 8747, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J077414"}}, {"model": "wells.bcgs_numbers", "pk": 8748, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J077443"}}, {"model": "wells.bcgs_numbers", "pk": 8749, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J083231"}}, {"model": "wells.bcgs_numbers", "pk": 8750, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J086144"}}, {"model": "wells.bcgs_numbers", "pk": 8751, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J086224"}}, {"model": "wells.bcgs_numbers", "pk": 8752, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "094J086232"}}, {"model": "wells.bcgs_numbers", "pk": 8753, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J086242"}}, {"model": "wells.bcgs_numbers", "pk": 8754, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J086244"}}, {"model": "wells.bcgs_numbers", "pk": 8755, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J086333"}}, {"model": "wells.bcgs_numbers", "pk": 8756, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J086341"}}, {"model": "wells.bcgs_numbers", "pk": 8757, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J086421"}}, {"model": "wells.bcgs_numbers", "pk": 8758, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J087112"}}, {"model": "wells.bcgs_numbers", "pk": 8759, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J087113"}}, {"model": "wells.bcgs_numbers", "pk": 8760, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J087114"}}, {"model": "wells.bcgs_numbers", "pk": 8761, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J087141"}}, {"model": "wells.bcgs_numbers", "pk": 8762, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J087211"}}, {"model": "wells.bcgs_numbers", "pk": 8763, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J087323"}}, {"model": "wells.bcgs_numbers", "pk": 8764, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094J088132"}}, {"model": "wells.bcgs_numbers", "pk": 8765, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094K067421"}}, {"model": "wells.bcgs_numbers", "pk": 8766, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094K076124"}}, {"model": "wells.bcgs_numbers", "pk": 8767, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094K076313"}}, {"model": "wells.bcgs_numbers", "pk": 8768, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094K084243"}}, {"model": "wells.bcgs_numbers", "pk": 8769, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094K085123"}}, {"model": "wells.bcgs_numbers", "pk": 8770, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094M050211"}}, {"model": "wells.bcgs_numbers", "pk": 8771, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "102I070414"}}, {"model": "wells.bcgs_numbers", "pk": 8772, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F030244"}}, {"model": "wells.bcgs_numbers", "pk": 8773, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F030322"}}, {"model": "wells.bcgs_numbers", "pk": 8774, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F030411"}}, {"model": "wells.bcgs_numbers", "pk": 8775, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F030412"}}, {"model": "wells.bcgs_numbers", "pk": 8776, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F030421"}}, {"model": "wells.bcgs_numbers", "pk": 8777, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F059224"}}, {"model": "wells.bcgs_numbers", "pk": 8778, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F060113"}}, {"model": "wells.bcgs_numbers", "pk": 8779, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F068133"}}, {"model": "wells.bcgs_numbers", "pk": 8780, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F069124"}}, {"model": "wells.bcgs_numbers", "pk": 8781, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F070331"}}, {"model": "wells.bcgs_numbers", "pk": 8782, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F070332"}}, {"model": "wells.bcgs_numbers", "pk": 8783, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F070333"}}, {"model": "wells.bcgs_numbers", "pk": 8784, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F070334"}}, {"model": "wells.bcgs_numbers", "pk": 8785, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F070344"}}, {"model": "wells.bcgs_numbers", "pk": 8786, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F080112"}}, {"model": "wells.bcgs_numbers", "pk": 8787, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F080121"}}, {"model": "wells.bcgs_numbers", "pk": 8788, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F090124"}}, {"model": "wells.bcgs_numbers", "pk": 8789, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103F090142"}}, {"model": "wells.bcgs_numbers", "pk": 8790, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103G012334"}}, {"model": "wells.bcgs_numbers", "pk": 8791, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103G021111"}}, {"model": "wells.bcgs_numbers", "pk": 8792, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103G021141"}}, {"model": "wells.bcgs_numbers", "pk": 8793, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103G021231"}}, {"model": "wells.bcgs_numbers", "pk": 8794, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "103G021232"}}, {"model": "wells.bcgs_numbers", "pk": 8795, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G021241"}}, {"model": "wells.bcgs_numbers", "pk": 8796, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G021242"}}, {"model": "wells.bcgs_numbers", "pk": 8797, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G021244"}}, {"model": "wells.bcgs_numbers", "pk": 8798, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G021313"}}, {"model": "wells.bcgs_numbers", "pk": 8799, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G021422"}}, {"model": "wells.bcgs_numbers", "pk": 8800, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G031323"}}, {"model": "wells.bcgs_numbers", "pk": 8801, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G031343"}}, {"model": "wells.bcgs_numbers", "pk": 8802, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G041341"}}, {"model": "wells.bcgs_numbers", "pk": 8803, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051112"}}, {"model": "wells.bcgs_numbers", "pk": 8804, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051114"}}, {"model": "wells.bcgs_numbers", "pk": 8805, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051321"}}, {"model": "wells.bcgs_numbers", "pk": 8806, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051323"}}, {"model": "wells.bcgs_numbers", "pk": 8807, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051333"}}, {"model": "wells.bcgs_numbers", "pk": 8808, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051341"}}, {"model": "wells.bcgs_numbers", "pk": 8809, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G051343"}}, {"model": "wells.bcgs_numbers", "pk": 8810, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103G061121"}}, {"model": "wells.bcgs_numbers", "pk": 8811, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007211"}}, {"model": "wells.bcgs_numbers", "pk": 8812, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007233"}}, {"model": "wells.bcgs_numbers", "pk": 8813, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007411"}}, {"model": "wells.bcgs_numbers", "pk": 8814, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007412"}}, {"model": "wells.bcgs_numbers", "pk": 8815, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007413"}}, {"model": "wells.bcgs_numbers", "pk": 8816, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007422"}}, {"model": "wells.bcgs_numbers", "pk": 8817, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007423"}}, {"model": "wells.bcgs_numbers", "pk": 8818, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007424"}}, {"model": "wells.bcgs_numbers", "pk": 8819, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007442"}}, {"model": "wells.bcgs_numbers", "pk": 8820, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I007444"}}, {"model": "wells.bcgs_numbers", "pk": 8821, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I012423"}}, {"model": "wells.bcgs_numbers", "pk": 8822, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I012443"}}, {"model": "wells.bcgs_numbers", "pk": 8823, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I027441"}}, {"model": "wells.bcgs_numbers", "pk": 8824, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I027442"}}, {"model": "wells.bcgs_numbers", "pk": 8825, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I027444"}}, {"model": "wells.bcgs_numbers", "pk": 8826, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I028331"}}, {"model": "wells.bcgs_numbers", "pk": 8827, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I034123"}}, {"model": "wells.bcgs_numbers", "pk": 8828, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I034233"}}, {"model": "wells.bcgs_numbers", "pk": 8829, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I038314"}}, {"model": "wells.bcgs_numbers", "pk": 8830, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I038323"}}, {"model": "wells.bcgs_numbers", "pk": 8831, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I038332"}}, {"model": "wells.bcgs_numbers", "pk": 8832, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I038341"}}, {"model": "wells.bcgs_numbers", "pk": 8833, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I045221"}}, {"model": "wells.bcgs_numbers", "pk": 8834, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047332"}}, {"model": "wells.bcgs_numbers", "pk": 8835, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047341"}}, {"model": "wells.bcgs_numbers", "pk": 8836, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047344"}}, {"model": "wells.bcgs_numbers", "pk": 8837, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047421"}}, {"model": "wells.bcgs_numbers", "pk": 8838, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047423"}}, {"model": "wells.bcgs_numbers", "pk": 8839, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047424"}}, {"model": "wells.bcgs_numbers", "pk": 8840, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I047442"}}, {"model": "wells.bcgs_numbers", "pk": 8841, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048231"}}, {"model": "wells.bcgs_numbers", "pk": 8842, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048233"}}, {"model": "wells.bcgs_numbers", "pk": 8843, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048331"}}, {"model": "wells.bcgs_numbers", "pk": 8844, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048333"}}, {"model": "wells.bcgs_numbers", "pk": 8845, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048343"}}, {"model": "wells.bcgs_numbers", "pk": 8846, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048411"}}, {"model": "wells.bcgs_numbers", "pk": 8847, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048412"}}, {"model": "wells.bcgs_numbers", "pk": 8848, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048413"}}, {"model": "wells.bcgs_numbers", "pk": 8849, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048433"}}, {"model": "wells.bcgs_numbers", "pk": 8850, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I048434"}}, {"model": "wells.bcgs_numbers", "pk": 8851, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057122"}}, {"model": "wells.bcgs_numbers", "pk": 8852, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057214"}}, {"model": "wells.bcgs_numbers", "pk": 8853, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057221"}}, {"model": "wells.bcgs_numbers", "pk": 8854, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057223"}}, {"model": "wells.bcgs_numbers", "pk": 8855, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057224"}}, {"model": "wells.bcgs_numbers", "pk": 8856, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057243"}}, {"model": "wells.bcgs_numbers", "pk": 8857, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057244"}}, {"model": "wells.bcgs_numbers", "pk": 8858, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057414"}}, {"model": "wells.bcgs_numbers", "pk": 8859, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057421"}}, {"model": "wells.bcgs_numbers", "pk": 8860, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057422"}}, {"model": "wells.bcgs_numbers", "pk": 8861, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057423"}}, {"model": "wells.bcgs_numbers", "pk": 8862, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057424"}}, {"model": "wells.bcgs_numbers", "pk": 8863, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057432"}}, {"model": "wells.bcgs_numbers", "pk": 8864, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057441"}}, {"model": "wells.bcgs_numbers", "pk": 8865, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I057442"}}, {"model": "wells.bcgs_numbers", "pk": 8866, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058112"}}, {"model": "wells.bcgs_numbers", "pk": 8867, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058113"}}, {"model": "wells.bcgs_numbers", "pk": 8868, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058114"}}, {"model": "wells.bcgs_numbers", "pk": 8869, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058121"}}, {"model": "wells.bcgs_numbers", "pk": 8870, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058122"}}, {"model": "wells.bcgs_numbers", "pk": 8871, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058123"}}, {"model": "wells.bcgs_numbers", "pk": 8872, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058124"}}, {"model": "wells.bcgs_numbers", "pk": 8873, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058133"}}, {"model": "wells.bcgs_numbers", "pk": 8874, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058141"}}, {"model": "wells.bcgs_numbers", "pk": 8875, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058142"}}, {"model": "wells.bcgs_numbers", "pk": 8876, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058231"}}, {"model": "wells.bcgs_numbers", "pk": 8877, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058234"}}, {"model": "wells.bcgs_numbers", "pk": 8878, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058311"}}, {"model": "wells.bcgs_numbers", "pk": 8879, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058414"}}, {"model": "wells.bcgs_numbers", "pk": 8880, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058423"}}, {"model": "wells.bcgs_numbers", "pk": 8881, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058424"}}, {"model": "wells.bcgs_numbers", "pk": 8882, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058441"}}, {"model": "wells.bcgs_numbers", "pk": 8883, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I058442"}}, {"model": "wells.bcgs_numbers", "pk": 8884, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I059333"}}, {"model": "wells.bcgs_numbers", "pk": 8885, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I067221"}}, {"model": "wells.bcgs_numbers", "pk": 8886, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I067223"}}, {"model": "wells.bcgs_numbers", "pk": 8887, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I068222"}}, {"model": "wells.bcgs_numbers", "pk": 8888, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I068244"}}, {"model": "wells.bcgs_numbers", "pk": 8889, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I069111"}}, {"model": "wells.bcgs_numbers", "pk": 8890, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I069113"}}, {"model": "wells.bcgs_numbers", "pk": 8891, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I069133"}}, {"model": "wells.bcgs_numbers", "pk": 8892, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I069311"}}, {"model": "wells.bcgs_numbers", "pk": 8893, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I069312"}}, {"model": "wells.bcgs_numbers", "pk": 8894, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I079124"}}, {"model": "wells.bcgs_numbers", "pk": 8895, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I086422"}}, {"model": "wells.bcgs_numbers", "pk": 8896, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I087112"}}, {"model": "wells.bcgs_numbers", "pk": 8897, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I087311"}}, {"model": "wells.bcgs_numbers", "pk": 8898, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I089331"}}, {"model": "wells.bcgs_numbers", "pk": 8899, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J001132"}}, {"model": "wells.bcgs_numbers", "pk": 8900, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J001424"}}, {"model": "wells.bcgs_numbers", "pk": 8901, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J019444"}}, {"model": "wells.bcgs_numbers", "pk": 8902, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J029432"}}, {"model": "wells.bcgs_numbers", "pk": 8903, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J030114"}}, {"model": "wells.bcgs_numbers", "pk": 8904, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J030141"}}, {"model": "wells.bcgs_numbers", "pk": 8905, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103J038243"}}, {"model": "wells.bcgs_numbers", "pk": 8906, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103K010121"}}, {"model": "wells.bcgs_numbers", "pk": 8907, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103K010122"}}, {"model": "wells.bcgs_numbers", "pk": 8908, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103K010124"}}, {"model": "wells.bcgs_numbers", "pk": 8909, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103K010133"}}, {"model": "wells.bcgs_numbers", "pk": 8910, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103K010231"}}, {"model": "wells.bcgs_numbers", "pk": 8911, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "103P003131"}}, {"model": "wells.bcgs_numbers", "pk": 8912, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P009123"}}, {"model": "wells.bcgs_numbers", "pk": 8913, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P009124"}}, {"model": "wells.bcgs_numbers", "pk": 8914, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P009231"}}, {"model": "wells.bcgs_numbers", "pk": 8915, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P009421"}}, {"model": "wells.bcgs_numbers", "pk": 8916, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P010332"}}, {"model": "wells.bcgs_numbers", "pk": 8917, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P010341"}}, {"model": "wells.bcgs_numbers", "pk": 8918, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P020221"}}, {"model": "wells.bcgs_numbers", "pk": 8919, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P020222"}}, {"model": "wells.bcgs_numbers", "pk": 8920, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P020223"}}, {"model": "wells.bcgs_numbers", "pk": 8921, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P020224"}}, {"model": "wells.bcgs_numbers", "pk": 8922, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P020242"}}, {"model": "wells.bcgs_numbers", "pk": 8923, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P025211"}}, {"model": "wells.bcgs_numbers", "pk": 8924, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P025213"}}, {"model": "wells.bcgs_numbers", "pk": 8925, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P025241"}}, {"model": "wells.bcgs_numbers", "pk": 8926, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P025243"}}, {"model": "wells.bcgs_numbers", "pk": 8927, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P030414"}}, {"model": "wells.bcgs_numbers", "pk": 8928, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "103P086142"}}, {"model": "wells.bcgs_numbers", "pk": 8929, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104A004344"}}, {"model": "wells.bcgs_numbers", "pk": 8930, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104G095111"}}, {"model": "wells.bcgs_numbers", "pk": 8931, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104G095124"}}, {"model": "wells.bcgs_numbers", "pk": 8932, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104H081114"}}, {"model": "wells.bcgs_numbers", "pk": 8933, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104I041131"}}, {"model": "wells.bcgs_numbers", "pk": 8934, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104I041133"}}, {"model": "wells.bcgs_numbers", "pk": 8935, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104I041311"}}, {"model": "wells.bcgs_numbers", "pk": 8936, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104J050242"}}, {"model": "wells.bcgs_numbers", "pk": 8937, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104J050244"}}, {"model": "wells.bcgs_numbers", "pk": 8938, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104J050321"}}, {"model": "wells.bcgs_numbers", "pk": 8939, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104P021434"}}, {"model": "wells.bcgs_numbers", "pk": 8940, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104P021441"}}, {"model": "wells.bcgs_numbers", "pk": 8941, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104P021442"}}, {"model": "wells.bcgs_numbers", "pk": 8942, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104P021443"}}, {"model": "wells.bcgs_numbers", "pk": 8943, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "104P100312"}}, {"model": "wells.bcgs_numbers", "pk": 8944, "fields": {"create_user": "WELLS", "create_date": "2003-08-13T16:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "82L.024"}}, {"model": "wells.bcgs_numbers", "pk": 8945, "fields": {"create_user": "SYSTEM", "create_date": "2004-10-01T23:24:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I015414"}}, {"model": "wells.bcgs_numbers", "pk": 8946, "fields": {"create_user": "SYSTEM", "create_date": "2004-10-01T23:24:32Z", "update_user": null, "update_date": null, "bcgs_number": "092I015432"}}, {"model": "wells.bcgs_numbers", "pk": 8947, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:09:48Z", "update_user": null, "update_date": null, "bcgs_number": "082E004111"}}, {"model": "wells.bcgs_numbers", "pk": 8948, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:19:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E004114"}}, {"model": "wells.bcgs_numbers", "pk": 8949, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:20:21Z", "update_user": null, "update_date": null, "bcgs_number": "082E004132"}}, {"model": "wells.bcgs_numbers", "pk": 8950, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:20:44Z", "update_user": null, "update_date": null, "bcgs_number": "082E004133"}}, {"model": "wells.bcgs_numbers", "pk": 8951, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:21:11Z", "update_user": null, "update_date": null, "bcgs_number": "082E004134"}}, {"model": "wells.bcgs_numbers", "pk": 8952, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:21:36Z", "update_user": null, "update_date": null, "bcgs_number": "082E012424"}}, {"model": "wells.bcgs_numbers", "pk": 8953, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:22:04Z", "update_user": null, "update_date": null, "bcgs_number": "082012441"}}, {"model": "wells.bcgs_numbers", "pk": 8954, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:22:21Z", "update_user": null, "update_date": null, "bcgs_number": "082E012443"}}, {"model": "wells.bcgs_numbers", "pk": 8955, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:22:47Z", "update_user": null, "update_date": null, "bcgs_number": "082E012444"}}, {"model": "wells.bcgs_numbers", "pk": 8956, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:23:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E013243"}}, {"model": "wells.bcgs_numbers", "pk": 8957, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:23:44Z", "update_user": null, "update_date": null, "bcgs_number": "082E013333"}}, {"model": "wells.bcgs_numbers", "pk": 8958, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:24:22Z", "update_user": null, "update_date": null, "bcgs_number": "082E013421"}}, {"model": "wells.bcgs_numbers", "pk": 8959, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:24:41Z", "update_user": null, "update_date": null, "bcgs_number": "082E013344"}}, {"model": "wells.bcgs_numbers", "pk": 8960, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:25:05Z", "update_user": null, "update_date": null, "bcgs_number": "082E014243"}}, {"model": "wells.bcgs_numbers", "pk": 8961, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:25:19Z", "update_user": null, "update_date": null, "bcgs_number": "082E014421"}}, {"model": "wells.bcgs_numbers", "pk": 8962, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:25:36Z", "update_user": null, "update_date": null, "bcgs_number": "082E021424"}}, {"model": "wells.bcgs_numbers", "pk": 8963, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:25:53Z", "update_user": null, "update_date": null, "bcgs_number": "082E022221"}}, {"model": "wells.bcgs_numbers", "pk": 8964, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:26:14Z", "update_user": null, "update_date": null, "bcgs_number": "082E022342"}}, {"model": "wells.bcgs_numbers", "pk": 8965, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:26:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E022344"}}, {"model": "wells.bcgs_numbers", "pk": 8966, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:29:35Z", "update_user": null, "update_date": null, "bcgs_number": "082E022443"}}, {"model": "wells.bcgs_numbers", "pk": 8967, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:29:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E023343"}}, {"model": "wells.bcgs_numbers", "pk": 8968, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:30:12Z", "update_user": null, "update_date": null, "bcgs_number": "082E031222"}}, {"model": "wells.bcgs_numbers", "pk": 8969, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:30:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E032121"}}, {"model": "wells.bcgs_numbers", "pk": 8970, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:30:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E032314"}}, {"model": "wells.bcgs_numbers", "pk": 8971, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:31:07Z", "update_user": null, "update_date": null, "bcgs_number": "082E032441"}}, {"model": "wells.bcgs_numbers", "pk": 8972, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:31:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E034233"}}, {"model": "wells.bcgs_numbers", "pk": 8973, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:31:46Z", "update_user": null, "update_date": null, "bcgs_number": "083034111"}}, {"model": "wells.bcgs_numbers", "pk": 8974, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:32:08Z", "update_user": null, "update_date": null, "bcgs_number": "082E041222"}}, {"model": "wells.bcgs_numbers", "pk": 8975, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:32:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E041223"}}, {"model": "wells.bcgs_numbers", "pk": 8976, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:32:56Z", "update_user": null, "update_date": null, "bcgs_number": "082E041224"}}, {"model": "wells.bcgs_numbers", "pk": 8977, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:33:23Z", "update_user": null, "update_date": null, "bcgs_number": "082E042113"}}, {"model": "wells.bcgs_numbers", "pk": 8979, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:33:56Z", "update_user": null, "update_date": null, "bcgs_number": "082E043113"}}, {"model": "wells.bcgs_numbers", "pk": 8980, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:34:18Z", "update_user": null, "update_date": null, "bcgs_number": "082E052413"}}, {"model": "wells.bcgs_numbers", "pk": 8981, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:34:41Z", "update_user": null, "update_date": null, "bcgs_number": "082E052431"}}, {"model": "wells.bcgs_numbers", "pk": 8982, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:35:15Z", "update_user": null, "update_date": null, "bcgs_number": "082E053142"}}, {"model": "wells.bcgs_numbers", "pk": 8983, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:35:35Z", "update_user": null, "update_date": null, "bcgs_number": "082E061212"}}, {"model": "wells.bcgs_numbers", "pk": 8984, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:35:56Z", "update_user": null, "update_date": null, "bcgs_number": "082E062133"}}, {"model": "wells.bcgs_numbers", "pk": 8985, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:36:21Z", "update_user": null, "update_date": null, "bcgs_number": "082E062224"}}, {"model": "wells.bcgs_numbers", "pk": 8986, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:36:38Z", "update_user": null, "update_date": null, "bcgs_number": "082E071212"}}, {"model": "wells.bcgs_numbers", "pk": 8987, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:36:59Z", "update_user": null, "update_date": null, "bcgs_number": "082E072132"}}, {"model": "wells.bcgs_numbers", "pk": 8988, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:37:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E073344"}}, {"model": "wells.bcgs_numbers", "pk": 8989, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:37:50Z", "update_user": null, "update_date": null, "bcgs_number": "082E074333"}}, {"model": "wells.bcgs_numbers", "pk": 8990, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:38:09Z", "update_user": null, "update_date": null, "bcgs_number": "082E075332"}}, {"model": "wells.bcgs_numbers", "pk": 8991, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:38:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E082122"}}, {"model": "wells.bcgs_numbers", "pk": 8992, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:38:41Z", "update_user": null, "update_date": null, "bcgs_number": "082E083221"}}, {"model": "wells.bcgs_numbers", "pk": 8993, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:39:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E083443"}}, {"model": "wells.bcgs_numbers", "pk": 8994, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:39:17Z", "update_user": null, "update_date": null, "bcgs_number": "082E084114"}}, {"model": "wells.bcgs_numbers", "pk": 8995, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:39:40Z", "update_user": null, "update_date": null, "bcgs_number": "082E084322"}}, {"model": "wells.bcgs_numbers", "pk": 8996, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:40:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E092143"}}, {"model": "wells.bcgs_numbers", "pk": 8997, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:40:18Z", "update_user": null, "update_date": null, "bcgs_number": "082E093234"}}, {"model": "wells.bcgs_numbers", "pk": 8998, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:40:37Z", "update_user": null, "update_date": null, "bcgs_number": "082E093333"}}, {"model": "wells.bcgs_numbers", "pk": 8999, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:40:54Z", "update_user": null, "update_date": null, "bcgs_number": "082E093343"}}, {"model": "wells.bcgs_numbers", "pk": 9000, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:42:46Z", "update_user": null, "update_date": null, "bcgs_number": "082E094144"}}, {"model": "wells.bcgs_numbers", "pk": 9001, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:43:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E094322"}}, {"model": "wells.bcgs_numbers", "pk": 9002, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:43:22Z", "update_user": null, "update_date": null, "bcgs_number": "082G033443"}}, {"model": "wells.bcgs_numbers", "pk": 9003, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:43:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L003431"}}, {"model": "wells.bcgs_numbers", "pk": 9004, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:44:07Z", "update_user": null, "update_date": null, "bcgs_number": "082L004234"}}, {"model": "wells.bcgs_numbers", "pk": 9005, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:44:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L004333"}}, {"model": "wells.bcgs_numbers", "pk": 9006, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:44:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L008312"}}, {"model": "wells.bcgs_numbers", "pk": 9007, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:45:14Z", "update_user": null, "update_date": null, "bcgs_number": "082L013324"}}, {"model": "wells.bcgs_numbers", "pk": 9008, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:45:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L013424"}}, {"model": "wells.bcgs_numbers", "pk": 9010, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:46:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L014123"}}, {"model": "wells.bcgs_numbers", "pk": 9011, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:46:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L014314"}}, {"model": "wells.bcgs_numbers", "pk": 9012, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:47:03Z", "update_user": null, "update_date": null, "bcgs_number": "082L023412"}}, {"model": "wells.bcgs_numbers", "pk": 9013, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:47:24Z", "update_user": null, "update_date": null, "bcgs_number": "082L023444"}}, {"model": "wells.bcgs_numbers", "pk": 9014, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:47:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L025122"}}, {"model": "wells.bcgs_numbers", "pk": 9015, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:48:00Z", "update_user": null, "update_date": null, "bcgs_number": "082L026214"}}, {"model": "wells.bcgs_numbers", "pk": 9016, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:48:19Z", "update_user": null, "update_date": null, "bcgs_number": "082L026221"}}, {"model": "wells.bcgs_numbers", "pk": 9017, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:48:39Z", "update_user": null, "update_date": null, "bcgs_number": "082L026234"}}, {"model": "wells.bcgs_numbers", "pk": 9018, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:48:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L027111"}}, {"model": "wells.bcgs_numbers", "pk": 9019, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:49:09Z", "update_user": null, "update_date": null, "bcgs_number": "082L027121"}}, {"model": "wells.bcgs_numbers", "pk": 9020, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:49:24Z", "update_user": null, "update_date": null, "bcgs_number": "082L027331"}}, {"model": "wells.bcgs_numbers", "pk": 9021, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:49:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L028141"}}, {"model": "wells.bcgs_numbers", "pk": 9022, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:50:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L033232"}}, {"model": "wells.bcgs_numbers", "pk": 9023, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:50:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L034323"}}, {"model": "wells.bcgs_numbers", "pk": 9024, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:53:37Z", "update_user": null, "update_date": null, "bcgs_number": "082L035141"}}, {"model": "wells.bcgs_numbers", "pk": 9025, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:54:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L035324"}}, {"model": "wells.bcgs_numbers", "pk": 9026, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:54:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L035414"}}, {"model": "wells.bcgs_numbers", "pk": 9027, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:54:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L035421"}}, {"model": "wells.bcgs_numbers", "pk": 9028, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:55:16Z", "update_user": null, "update_date": null, "bcgs_number": "082L035441"}}, {"model": "wells.bcgs_numbers", "pk": 9029, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:56:00Z", "update_user": null, "update_date": null, "bcgs_number": "082L035444"}}, {"model": "wells.bcgs_numbers", "pk": 9030, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:56:14Z", "update_user": null, "update_date": null, "bcgs_number": "082L036123"}}, {"model": "wells.bcgs_numbers", "pk": 9031, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:56:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L037311"}}, {"model": "wells.bcgs_numbers", "pk": 9032, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:57:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L038321"}}, {"model": "wells.bcgs_numbers", "pk": 9033, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:57:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L043414"}}, {"model": "wells.bcgs_numbers", "pk": 9034, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:57:41Z", "update_user": null, "update_date": null, "bcgs_number": "082L044232"}}, {"model": "wells.bcgs_numbers", "pk": 9035, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:57:57Z", "update_user": null, "update_date": null, "bcgs_number": "082L046141"}}, {"model": "wells.bcgs_numbers", "pk": 9036, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:58:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L046313"}}, {"model": "wells.bcgs_numbers", "pk": 9037, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:58:43Z", "update_user": null, "update_date": null, "bcgs_number": "082L046331"}}, {"model": "wells.bcgs_numbers", "pk": 9038, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:59:03Z", "update_user": null, "update_date": null, "bcgs_number": "082L047132"}}, {"model": "wells.bcgs_numbers", "pk": 9039, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:59:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L056431"}}, {"model": "wells.bcgs_numbers", "pk": 9040, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T21:59:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L056432"}}, {"model": "wells.bcgs_numbers", "pk": 9041, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L061121"}}, {"model": "wells.bcgs_numbers", "pk": 9042, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L065411"}}, {"model": "wells.bcgs_numbers", "pk": 9043, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L067141"}}, {"model": "wells.bcgs_numbers", "pk": 9044, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "092B032243"}}, {"model": "wells.bcgs_numbers", "pk": 9045, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:01:44Z", "update_user": null, "update_date": null, "bcgs_number": "09C059314"}}, {"model": "wells.bcgs_numbers", "pk": 9046, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:02:00Z", "update_user": null, "update_date": null, "bcgs_number": "092C090124"}}, {"model": "wells.bcgs_numbers", "pk": 9047, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:02:16Z", "update_user": null, "update_date": null, "bcgs_number": "092C050234"}}, {"model": "wells.bcgs_numbers", "pk": 9048, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:02:32Z", "update_user": null, "update_date": null, "bcgs_number": "092C090143"}}, {"model": "wells.bcgs_numbers", "pk": 9049, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:02:54Z", "update_user": null, "update_date": null, "bcgs_number": "092C090211"}}, {"model": "wells.bcgs_numbers", "pk": 9050, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:03:08Z", "update_user": null, "update_date": null, "bcgs_number": "092F065231"}}, {"model": "wells.bcgs_numbers", "pk": 9051, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:03:24Z", "update_user": null, "update_date": null, "bcgs_number": "092F084332"}}, {"model": "wells.bcgs_numbers", "pk": 9053, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:04:54Z", "update_user": null, "update_date": null, "bcgs_number": "092F084432"}}, {"model": "wells.bcgs_numbers", "pk": 9054, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:05:10Z", "update_user": null, "update_date": null, "bcgs_number": "092H030244"}}, {"model": "wells.bcgs_numbers", "pk": 9055, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:05:24Z", "update_user": null, "update_date": null, "bcgs_number": "092H079223"}}, {"model": "wells.bcgs_numbers", "pk": 9056, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:05:44Z", "update_user": null, "update_date": null, "bcgs_number": "092H057334"}}, {"model": "wells.bcgs_numbers", "pk": 9057, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:06:07Z", "update_user": null, "update_date": null, "bcgs_number": "092H057314"}}, {"model": "wells.bcgs_numbers", "pk": 9058, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:06:30Z", "update_user": null, "update_date": null, "bcgs_number": "092I018433"}}, {"model": "wells.bcgs_numbers", "pk": 9059, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:06:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I018344"}}, {"model": "wells.bcgs_numbers", "pk": 9060, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:07:12Z", "update_user": null, "update_date": null, "bcgs_number": "092J016331"}}, {"model": "wells.bcgs_numbers", "pk": 9061, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:07:36Z", "update_user": null, "update_date": null, "bcgs_number": "092J016431"}}, {"model": "wells.bcgs_numbers", "pk": 9062, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:08:03Z", "update_user": null, "update_date": null, "bcgs_number": "092J016413"}}, {"model": "wells.bcgs_numbers", "pk": 9063, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:08:30Z", "update_user": null, "update_date": null, "bcgs_number": "092K014311"}}, {"model": "wells.bcgs_numbers", "pk": 9064, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:08:55Z", "update_user": null, "update_date": null, "bcgs_number": "093J047243"}}, {"model": "wells.bcgs_numbers", "pk": 9065, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:09:19Z", "update_user": null, "update_date": null, "bcgs_number": "093P024331"}}, {"model": "wells.bcgs_numbers", "pk": 9066, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:09:37Z", "update_user": null, "update_date": null, "bcgs_number": "094A020244"}}, {"model": "wells.bcgs_numbers", "pk": 9067, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T22:21:22Z", "update_user": null, "update_date": null, "bcgs_number": "082E012441"}}, {"model": "wells.bcgs_numbers", "pk": 9068, "fields": {"create_user": "WELLS", "create_date": "2006-07-05T23:15:17Z", "update_user": null, "update_date": null, "bcgs_number": "083E034111"}}, {"model": "wells.bcgs_numbers", "pk": 9069, "fields": {"create_user": "WELLS", "create_date": "2006-07-06T16:41:35Z", "update_user": null, "update_date": null, "bcgs_number": "092C059314"}}, {"model": "wells.bcgs_numbers", "pk": 9070, "fields": {"create_user": "WELLS", "create_date": "2006-07-18T23:23:09Z", "update_user": null, "update_date": null, "bcgs_number": "082E055333"}}, {"model": "wells.bcgs_numbers", "pk": 9071, "fields": {"create_user": "WELLS", "create_date": "2006-07-20T18:41:41Z", "update_user": "WELLS", "update_date": "2006-07-20T18:56:14Z", "bcgs_number": "083D008114"}}, {"model": "wells.bcgs_numbers", "pk": 9072, "fields": {"create_user": "WELLS", "create_date": "2006-08-18T21:59:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L065421"}}, {"model": "wells.bcgs_numbers", "pk": 9073, "fields": {"create_user": "WELLS", "create_date": "2006-09-08T18:02:22Z", "update_user": null, "update_date": null, "bcgs_number": "092B043433"}}, {"model": "wells.bcgs_numbers", "pk": 9074, "fields": {"create_user": "WELLS", "create_date": "2006-09-28T16:06:39Z", "update_user": null, "update_date": null, "bcgs_number": "082L081141"}}, {"model": "wells.bcgs_numbers", "pk": 9075, "fields": {"create_user": "WELLS", "create_date": "2006-09-28T17:21:14Z", "update_user": null, "update_date": null, "bcgs_number": "082J041114"}}, {"model": "wells.bcgs_numbers", "pk": 9076, "fields": {"create_user": "WELLS", "create_date": "2006-09-28T22:46:31Z", "update_user": null, "update_date": null, "bcgs_number": "092P034124"}}, {"model": "wells.bcgs_numbers", "pk": 9077, "fields": {"create_user": "WELLS", "create_date": "2006-10-02T21:58:28Z", "update_user": null, "update_date": null, "bcgs_number": "092P065133"}}, {"model": "wells.bcgs_numbers", "pk": 9078, "fields": {"create_user": "WELLS", "create_date": "2006-10-12T19:41:09Z", "update_user": null, "update_date": null, "bcgs_number": "083D014124"}}, {"model": "wells.bcgs_numbers", "pk": 9079, "fields": {"create_user": "WELLS", "create_date": "2006-11-14T17:54:23Z", "update_user": null, "update_date": null, "bcgs_number": "092F038111"}}, {"model": "wells.bcgs_numbers", "pk": 9080, "fields": {"create_user": "WELLS", "create_date": "2006-11-14T20:08:41Z", "update_user": null, "update_date": null, "bcgs_number": "092J036412"}}, {"model": "wells.bcgs_numbers", "pk": 9081, "fields": {"create_user": "WELLS", "create_date": "2006-12-14T00:17:50Z", "update_user": null, "update_date": null, "bcgs_number": "093B096341"}}, {"model": "wells.bcgs_numbers", "pk": 9082, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-03T21:15:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I066221"}}, {"model": "wells.bcgs_numbers", "pk": 9083, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-03T22:39:57Z", "update_user": null, "update_date": null, "bcgs_number": "082L095444"}}, {"model": "wells.bcgs_numbers", "pk": 9084, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-04T19:15:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I066223"}}, {"model": "wells.bcgs_numbers", "pk": 9085, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-04T23:10:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H100431"}}, {"model": "wells.bcgs_numbers", "pk": 9086, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-12T17:47:50Z", "update_user": null, "update_date": null, "bcgs_number": "093P034312"}}, {"model": "wells.bcgs_numbers", "pk": 9087, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-12T18:09:25Z", "update_user": null, "update_date": null, "bcgs_number": "093P039211"}}, {"model": "wells.bcgs_numbers", "pk": 9088, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-12T18:26:48Z", "update_user": null, "update_date": null, "bcgs_number": "094G036441"}}, {"model": "wells.bcgs_numbers", "pk": 9089, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-12T18:42:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P060424"}}, {"model": "wells.bcgs_numbers", "pk": 9090, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-12T18:43:51Z", "update_user": null, "update_date": null, "bcgs_number": "092P060242"}}, {"model": "wells.bcgs_numbers", "pk": 9091, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-17T23:14:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H005234"}}, {"model": "wells.bcgs_numbers", "pk": 9092, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-19T20:39:19Z", "update_user": "PROXY_WELLS", "update_date": "2007-12-17T20:36:25Z", "bcgs_number": "092H001133"}}, {"model": "wells.bcgs_numbers", "pk": 9093, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-19T21:24:59Z", "update_user": null, "update_date": null, "bcgs_number": "092J032233"}}, {"model": "wells.bcgs_numbers", "pk": 9094, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-19T21:26:36Z", "update_user": null, "update_date": null, "bcgs_number": "092H032233"}}, {"model": "wells.bcgs_numbers", "pk": 9095, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-20T19:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H033224"}}, {"model": "wells.bcgs_numbers", "pk": 9096, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-20T21:03:19Z", "update_user": null, "update_date": null, "bcgs_number": "092H032413"}}, {"model": "wells.bcgs_numbers", "pk": 9097, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-23T16:17:36Z", "update_user": null, "update_date": null, "bcgs_number": "093M012433"}}, {"model": "wells.bcgs_numbers", "pk": 9098, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-23T16:36:44Z", "update_user": null, "update_date": null, "bcgs_number": "103I038342"}}, {"model": "wells.bcgs_numbers", "pk": 9099, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-23T17:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "104P035324"}}, {"model": "wells.bcgs_numbers", "pk": 9100, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-23T17:23:13Z", "update_user": null, "update_date": null, "bcgs_number": "103I048124"}}, {"model": "wells.bcgs_numbers", "pk": 9101, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-23T19:25:05Z", "update_user": "PROXY_WELLS", "update_date": "2007-06-19T21:52:29Z", "bcgs_number": "103P015344"}}, {"model": "wells.bcgs_numbers", "pk": 9102, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-23T22:11:19Z", "update_user": null, "update_date": null, "bcgs_number": "093H024311"}}, {"model": "wells.bcgs_numbers", "pk": 9103, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-24T18:49:10Z", "update_user": null, "update_date": null, "bcgs_number": "092N070114"}}, {"model": "wells.bcgs_numbers", "pk": 9104, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-24T19:01:59Z", "update_user": null, "update_date": null, "bcgs_number": "092N040344"}}, {"model": "wells.bcgs_numbers", "pk": 9105, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-24T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "082G066141"}}, {"model": "wells.bcgs_numbers", "pk": 9106, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-24T22:09:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J013421"}}, {"model": "wells.bcgs_numbers", "pk": 9107, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-25T15:52:37Z", "update_user": null, "update_date": null, "bcgs_number": "082J013412"}}, {"model": "wells.bcgs_numbers", "pk": 9108, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-26T21:05:40Z", "update_user": null, "update_date": null, "bcgs_number": "082E014241"}}, {"model": "wells.bcgs_numbers", "pk": 9109, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T16:21:45Z", "update_user": null, "update_date": null, "bcgs_number": "092B042323"}}, {"model": "wells.bcgs_numbers", "pk": 9110, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T16:22:00Z", "update_user": null, "update_date": null, "bcgs_number": "093K007422"}}, {"model": "wells.bcgs_numbers", "pk": 9111, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T16:51:57Z", "update_user": null, "update_date": null, "bcgs_number": "093K048223"}}, {"model": "wells.bcgs_numbers", "pk": 9112, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T18:17:18Z", "update_user": null, "update_date": null, "bcgs_number": "092B042143"}}, {"model": "wells.bcgs_numbers", "pk": 9113, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T18:20:06Z", "update_user": null, "update_date": null, "bcgs_number": "092B042144"}}, {"model": "wells.bcgs_numbers", "pk": 9114, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T18:31:59Z", "update_user": null, "update_date": null, "bcgs_number": "083D088311"}}, {"model": "wells.bcgs_numbers", "pk": 9115, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-02T21:16:18Z", "update_user": "PROXY_WELLS", "update_date": "2009-05-04T16:54:51Z", "bcgs_number": "092G038232"}}, {"model": "wells.bcgs_numbers", "pk": 9116, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-03T16:18:56Z", "update_user": null, "update_date": null, "bcgs_number": "092C090321"}}, {"model": "wells.bcgs_numbers", "pk": 9117, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-04T22:51:14Z", "update_user": null, "update_date": null, "bcgs_number": "092C050232"}}, {"model": "wells.bcgs_numbers", "pk": 9118, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-09T19:13:41Z", "update_user": null, "update_date": null, "bcgs_number": "092G075344"}}, {"model": "wells.bcgs_numbers", "pk": 9119, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-09T21:58:48Z", "update_user": null, "update_date": null, "bcgs_number": "093M047122"}}, {"model": "wells.bcgs_numbers", "pk": 9121, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-05-29T17:14:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I075431"}}, {"model": "wells.bcgs_numbers", "pk": 9122, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-07T19:00:19Z", "update_user": null, "update_date": null, "bcgs_number": "083E004241"}}, {"model": "wells.bcgs_numbers", "pk": 9123, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-07T21:46:08Z", "update_user": null, "update_date": null, "bcgs_number": "092J057412"}}, {"model": "wells.bcgs_numbers", "pk": 9124, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-11T19:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "092H012221"}}, {"model": "wells.bcgs_numbers", "pk": 9125, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-14T18:07:06Z", "update_user": null, "update_date": null, "bcgs_number": "092H065242"}}, {"model": "wells.bcgs_numbers", "pk": 9126, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-14T21:27:46Z", "update_user": null, "update_date": null, "bcgs_number": "093G044413"}}, {"model": "wells.bcgs_numbers", "pk": 9127, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-14T22:12:32Z", "update_user": null, "update_date": null, "bcgs_number": "093G044322"}}, {"model": "wells.bcgs_numbers", "pk": 9128, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-15T17:21:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G067322"}}, {"model": "wells.bcgs_numbers", "pk": 9129, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-18T16:03:13Z", "update_user": null, "update_date": null, "bcgs_number": "104J050224"}}, {"model": "wells.bcgs_numbers", "pk": 9130, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-18T17:59:30Z", "update_user": null, "update_date": null, "bcgs_number": "104N052342"}}, {"model": "wells.bcgs_numbers", "pk": 9131, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-19T20:46:18Z", "update_user": null, "update_date": null, "bcgs_number": "082F005421"}}, {"model": "wells.bcgs_numbers", "pk": 9132, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-20T18:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "093K052211"}}, {"model": "wells.bcgs_numbers", "pk": 9133, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-20T19:03:01Z", "update_user": null, "update_date": null, "bcgs_number": "104G060131"}}, {"model": "wells.bcgs_numbers", "pk": 9134, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-06-27T15:43:49Z", "update_user": null, "update_date": null, "bcgs_number": "093G066311"}}, {"model": "wells.bcgs_numbers", "pk": 9135, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-10T22:51:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G090313"}}, {"model": "wells.bcgs_numbers", "pk": 9136, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-27T17:58:18Z", "update_user": null, "update_date": null, "bcgs_number": "092B043242"}}, {"model": "wells.bcgs_numbers", "pk": 9137, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-27T18:06:28Z", "update_user": null, "update_date": null, "bcgs_number": "092B043244"}}, {"model": "wells.bcgs_numbers", "pk": 9138, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-27T18:42:45Z", "update_user": null, "update_date": null, "bcgs_number": "092B044144"}}, {"model": "wells.bcgs_numbers", "pk": 9139, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-27T18:45:37Z", "update_user": null, "update_date": null, "bcgs_number": "092B044133"}}, {"model": "wells.bcgs_numbers", "pk": 9140, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-27T19:03:28Z", "update_user": null, "update_date": null, "bcgs_number": "092C058442"}}, {"model": "wells.bcgs_numbers", "pk": 9141, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-27T23:10:48Z", "update_user": null, "update_date": null, "bcgs_number": "092G012314"}}, {"model": "wells.bcgs_numbers", "pk": 9142, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-09-28T15:15:02Z", "update_user": null, "update_date": null, "bcgs_number": "092C059343"}}, {"model": "wells.bcgs_numbers", "pk": 9143, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-03T20:46:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F029342"}}, {"model": "wells.bcgs_numbers", "pk": 9144, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-04T17:48:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B072211"}}, {"model": "wells.bcgs_numbers", "pk": 9145, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-17T18:44:12Z", "update_user": null, "update_date": null, "bcgs_number": "082G021443"}}, {"model": "wells.bcgs_numbers", "pk": 9146, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-22T21:50:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B073332"}}, {"model": "wells.bcgs_numbers", "pk": 9147, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-23T22:52:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I069134"}}, {"model": "wells.bcgs_numbers", "pk": 9148, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-24T16:53:22Z", "update_user": null, "update_date": null, "bcgs_number": "082G057213"}}, {"model": "wells.bcgs_numbers", "pk": 9149, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-24T17:26:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G057221"}}, {"model": "wells.bcgs_numbers", "pk": 9150, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-24T17:49:08Z", "update_user": null, "update_date": null, "bcgs_number": "093O003321"}}, {"model": "wells.bcgs_numbers", "pk": 9151, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-26T23:21:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I017411"}}, {"model": "wells.bcgs_numbers", "pk": 9152, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-29T17:48:50Z", "update_user": null, "update_date": null, "bcgs_number": "092C089441"}}, {"model": "wells.bcgs_numbers", "pk": 9153, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-30T15:53:36Z", "update_user": null, "update_date": null, "bcgs_number": "082E093132"}}, {"model": "wells.bcgs_numbers", "pk": 9154, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-30T19:22:29Z", "update_user": null, "update_date": null, "bcgs_number": "103I007144"}}, {"model": "wells.bcgs_numbers", "pk": 9155, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-30T19:32:35Z", "update_user": null, "update_date": null, "bcgs_number": "103I007213"}}, {"model": "wells.bcgs_numbers", "pk": 9156, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-31T15:15:10Z", "update_user": null, "update_date": null, "bcgs_number": "092C050214"}}, {"model": "wells.bcgs_numbers", "pk": 9157, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-31T17:54:35Z", "update_user": null, "update_date": null, "bcgs_number": "092B071342"}}, {"model": "wells.bcgs_numbers", "pk": 9158, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-31T18:13:57Z", "update_user": null, "update_date": null, "bcgs_number": "092B073213"}}, {"model": "wells.bcgs_numbers", "pk": 9159, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-31T18:25:45Z", "update_user": null, "update_date": null, "bcgs_number": "092B073124"}}, {"model": "wells.bcgs_numbers", "pk": 9160, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T00:52:08Z", "update_user": null, "update_date": null, "bcgs_number": "092K014314"}}, {"model": "wells.bcgs_numbers", "pk": 9161, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T20:38:08Z", "update_user": null, "update_date": null, "bcgs_number": "092F038412"}}, {"model": "wells.bcgs_numbers", "pk": 9162, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T20:45:24Z", "update_user": null, "update_date": null, "bcgs_number": "082N045421"}}, {"model": "wells.bcgs_numbers", "pk": 9163, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T21:20:53Z", "update_user": null, "update_date": null, "bcgs_number": "092F020121"}}, {"model": "wells.bcgs_numbers", "pk": 9164, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T21:24:39Z", "update_user": null, "update_date": null, "bcgs_number": "092F010343"}}, {"model": "wells.bcgs_numbers", "pk": 9165, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T21:25:56Z", "update_user": null, "update_date": null, "bcgs_number": "092F010334"}}, {"model": "wells.bcgs_numbers", "pk": 9166, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T21:36:47Z", "update_user": null, "update_date": null, "bcgs_number": "094A061414"}}, {"model": "wells.bcgs_numbers", "pk": 9167, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T21:40:20Z", "update_user": null, "update_date": null, "bcgs_number": "093O051111"}}, {"model": "wells.bcgs_numbers", "pk": 9168, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T21:41:08Z", "update_user": null, "update_date": null, "bcgs_number": "094A061421"}}, {"model": "wells.bcgs_numbers", "pk": 9169, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-06T22:00:45Z", "update_user": null, "update_date": null, "bcgs_number": "093K013343"}}, {"model": "wells.bcgs_numbers", "pk": 9170, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-08T18:22:44Z", "update_user": null, "update_date": null, "bcgs_number": "092F038141"}}, {"model": "wells.bcgs_numbers", "pk": 9171, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-08T19:01:37Z", "update_user": null, "update_date": null, "bcgs_number": "094D097334"}}, {"model": "wells.bcgs_numbers", "pk": 9172, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-14T17:39:18Z", "update_user": null, "update_date": null, "bcgs_number": "082N025431"}}, {"model": "wells.bcgs_numbers", "pk": 9173, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-14T18:09:36Z", "update_user": null, "update_date": null, "bcgs_number": "092G026311"}}, {"model": "wells.bcgs_numbers", "pk": 9174, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-14T23:00:16Z", "update_user": null, "update_date": null, "bcgs_number": "092G001212"}}, {"model": "wells.bcgs_numbers", "pk": 9175, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-15T18:48:35Z", "update_user": null, "update_date": null, "bcgs_number": "092K045112"}}, {"model": "wells.bcgs_numbers", "pk": 9176, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-15T18:50:55Z", "update_user": null, "update_date": null, "bcgs_number": "092F096244"}}, {"model": "wells.bcgs_numbers", "pk": 9177, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-15T22:46:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P073114"}}, {"model": "wells.bcgs_numbers", "pk": 9178, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-15T23:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "082K071113"}}, {"model": "wells.bcgs_numbers", "pk": 9179, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-21T23:47:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F085221"}}, {"model": "wells.bcgs_numbers", "pk": 9180, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-22T21:34:37Z", "update_user": null, "update_date": null, "bcgs_number": "092L052232"}}, {"model": "wells.bcgs_numbers", "pk": 9181, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-22T22:49:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F029413"}}, {"model": "wells.bcgs_numbers", "pk": 9183, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-22T22:59:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F030341"}}, {"model": "wells.bcgs_numbers", "pk": 9184, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-23T01:13:12Z", "update_user": null, "update_date": null, "bcgs_number": "092G064242"}}, {"model": "wells.bcgs_numbers", "pk": 9185, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-26T19:56:12Z", "update_user": null, "update_date": null, "bcgs_number": "092C089424"}}, {"model": "wells.bcgs_numbers", "pk": 9186, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-26T20:16:10Z", "update_user": null, "update_date": null, "bcgs_number": "092B064114"}}, {"model": "wells.bcgs_numbers", "pk": 9187, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-26T20:34:34Z", "update_user": null, "update_date": null, "bcgs_number": "092B054343"}}, {"model": "wells.bcgs_numbers", "pk": 9188, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-26T22:34:43Z", "update_user": null, "update_date": null, "bcgs_number": "092C090222"}}, {"model": "wells.bcgs_numbers", "pk": 9189, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-29T23:16:55Z", "update_user": null, "update_date": null, "bcgs_number": "092H021211"}}, {"model": "wells.bcgs_numbers", "pk": 9190, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-03T22:09:20Z", "update_user": null, "update_date": null, "bcgs_number": "092K015322"}}, {"model": "wells.bcgs_numbers", "pk": 9191, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-03T22:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "092K014212"}}, {"model": "wells.bcgs_numbers", "pk": 9192, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-03T22:29:27Z", "update_user": null, "update_date": null, "bcgs_number": "092K015241"}}, {"model": "wells.bcgs_numbers", "pk": 9193, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-03T22:35:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G002224"}}, {"model": "wells.bcgs_numbers", "pk": 9194, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-04T20:41:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B044141"}}, {"model": "wells.bcgs_numbers", "pk": 9195, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-04T22:03:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F019331"}}, {"model": "wells.bcgs_numbers", "pk": 9196, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-05T00:58:10Z", "update_user": null, "update_date": null, "bcgs_number": "092J046144"}}, {"model": "wells.bcgs_numbers", "pk": 9197, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-05T20:49:24Z", "update_user": null, "update_date": null, "bcgs_number": "092H038331"}}, {"model": "wells.bcgs_numbers", "pk": 9198, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-10T18:19:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B053131"}}, {"model": "wells.bcgs_numbers", "pk": 9199, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-10T18:42:56Z", "update_user": null, "update_date": null, "bcgs_number": "092B064121"}}, {"model": "wells.bcgs_numbers", "pk": 9200, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-10T19:53:25Z", "update_user": null, "update_date": null, "bcgs_number": "092E062241"}}, {"model": "wells.bcgs_numbers", "pk": 9201, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T19:17:31Z", "update_user": null, "update_date": null, "bcgs_number": "092B032433"}}, {"model": "wells.bcgs_numbers", "pk": 9203, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T20:37:46Z", "update_user": null, "update_date": null, "bcgs_number": "093O005241"}}, {"model": "wells.bcgs_numbers", "pk": 9204, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T20:48:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G096441"}}, {"model": "wells.bcgs_numbers", "pk": 9205, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T21:06:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P002133"}}, {"model": "wells.bcgs_numbers", "pk": 9206, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T22:14:13Z", "update_user": null, "update_date": null, "bcgs_number": "092J079241"}}, {"model": "wells.bcgs_numbers", "pk": 9207, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T22:46:35Z", "update_user": null, "update_date": null, "bcgs_number": "092G094231"}}, {"model": "wells.bcgs_numbers", "pk": 9209, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-11T23:20:55Z", "update_user": null, "update_date": null, "bcgs_number": "083D008112"}}, {"model": "wells.bcgs_numbers", "pk": 9210, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-12T20:54:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L003233"}}, {"model": "wells.bcgs_numbers", "pk": 9211, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-12T21:10:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G082434"}}, {"model": "wells.bcgs_numbers", "pk": 9212, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T17:26:56Z", "update_user": null, "update_date": null, "bcgs_number": "082G061123"}}, {"model": "wells.bcgs_numbers", "pk": 9213, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T17:35:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F086344"}}, {"model": "wells.bcgs_numbers", "pk": 9214, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T17:39:01Z", "update_user": null, "update_date": null, "bcgs_number": "082F043121"}}, {"model": "wells.bcgs_numbers", "pk": 9215, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T17:49:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E008441"}}, {"model": "wells.bcgs_numbers", "pk": 9216, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T17:53:10Z", "update_user": null, "update_date": null, "bcgs_number": "082F022413"}}, {"model": "wells.bcgs_numbers", "pk": 9217, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T18:19:12Z", "update_user": null, "update_date": null, "bcgs_number": "082F043434"}}, {"model": "wells.bcgs_numbers", "pk": 9218, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T18:45:07Z", "update_user": null, "update_date": null, "bcgs_number": "082F032411"}}, {"model": "wells.bcgs_numbers", "pk": 9219, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T20:59:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B062231"}}, {"model": "wells.bcgs_numbers", "pk": 9220, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-13T22:17:58Z", "update_user": null, "update_date": null, "bcgs_number": "082F042211"}}, {"model": "wells.bcgs_numbers", "pk": 9221, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T17:25:12Z", "update_user": null, "update_date": null, "bcgs_number": "082F066434"}}, {"model": "wells.bcgs_numbers", "pk": 9222, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T17:31:07Z", "update_user": null, "update_date": null, "bcgs_number": "082F052234"}}, {"model": "wells.bcgs_numbers", "pk": 9223, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T17:51:10Z", "update_user": null, "update_date": null, "bcgs_number": "082F052442"}}, {"model": "wells.bcgs_numbers", "pk": 9225, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T18:29:12Z", "update_user": null, "update_date": null, "bcgs_number": "082F018232"}}, {"model": "wells.bcgs_numbers", "pk": 9226, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T18:35:21Z", "update_user": null, "update_date": null, "bcgs_number": "082F037144"}}, {"model": "wells.bcgs_numbers", "pk": 9227, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T18:37:53Z", "update_user": null, "update_date": null, "bcgs_number": "082F002434"}}, {"model": "wells.bcgs_numbers", "pk": 9228, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-17T23:07:20Z", "update_user": null, "update_date": null, "bcgs_number": "092J057414"}}, {"model": "wells.bcgs_numbers", "pk": 9229, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-18T17:37:08Z", "update_user": null, "update_date": null, "bcgs_number": "082K021424"}}, {"model": "wells.bcgs_numbers", "pk": 9230, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-18T17:40:09Z", "update_user": null, "update_date": null, "bcgs_number": "082F054343"}}, {"model": "wells.bcgs_numbers", "pk": 9231, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-18T17:44:49Z", "update_user": null, "update_date": null, "bcgs_number": "082F032134"}}, {"model": "wells.bcgs_numbers", "pk": 9232, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-18T18:29:08Z", "update_user": null, "update_date": null, "bcgs_number": "092H096144"}}, {"model": "wells.bcgs_numbers", "pk": 9233, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-18T18:53:56Z", "update_user": null, "update_date": null, "bcgs_number": "082M012423"}}, {"model": "wells.bcgs_numbers", "pk": 9234, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-18T23:25:22Z", "update_user": null, "update_date": null, "bcgs_number": "092K031144"}}, {"model": "wells.bcgs_numbers", "pk": 9235, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T17:10:30Z", "update_user": null, "update_date": null, "bcgs_number": "092B092112"}}, {"model": "wells.bcgs_numbers", "pk": 9236, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T17:24:53Z", "update_user": null, "update_date": null, "bcgs_number": "092K013334"}}, {"model": "wells.bcgs_numbers", "pk": 9237, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T17:37:08Z", "update_user": null, "update_date": null, "bcgs_number": "092K023112"}}, {"model": "wells.bcgs_numbers", "pk": 9238, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T18:06:06Z", "update_user": null, "update_date": null, "bcgs_number": "092K031143"}}, {"model": "wells.bcgs_numbers", "pk": 9239, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T18:49:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I084214"}}, {"model": "wells.bcgs_numbers", "pk": 9240, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T19:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092P056122"}}, {"model": "wells.bcgs_numbers", "pk": 9241, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T19:15:48Z", "update_user": null, "update_date": null, "bcgs_number": "092P056444"}}, {"model": "wells.bcgs_numbers", "pk": 9242, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T19:19:43Z", "update_user": null, "update_date": null, "bcgs_number": "092P014223"}}, {"model": "wells.bcgs_numbers", "pk": 9243, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T19:46:53Z", "update_user": null, "update_date": null, "bcgs_number": "092P064421"}}, {"model": "wells.bcgs_numbers", "pk": 9244, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T20:06:57Z", "update_user": null, "update_date": null, "bcgs_number": "093G091424"}}, {"model": "wells.bcgs_numbers", "pk": 9245, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-19T23:26:55Z", "update_user": null, "update_date": null, "bcgs_number": "092N087444"}}, {"model": "wells.bcgs_numbers", "pk": 9246, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T22:18:54Z", "update_user": null, "update_date": null, "bcgs_number": "092K023244"}}, {"model": "wells.bcgs_numbers", "pk": 9247, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T22:27:36Z", "update_user": null, "update_date": null, "bcgs_number": "092B044411"}}, {"model": "wells.bcgs_numbers", "pk": 9248, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T22:32:02Z", "update_user": null, "update_date": null, "bcgs_number": "092I047341"}}, {"model": "wells.bcgs_numbers", "pk": 9249, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T22:35:33Z", "update_user": null, "update_date": null, "bcgs_number": "092I047342"}}, {"model": "wells.bcgs_numbers", "pk": 9250, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T23:08:08Z", "update_user": null, "update_date": null, "bcgs_number": "092L056331"}}, {"model": "wells.bcgs_numbers", "pk": 9251, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T23:47:04Z", "update_user": null, "update_date": null, "bcgs_number": "092L065243"}}, {"model": "wells.bcgs_numbers", "pk": 9252, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-20T23:57:35Z", "update_user": null, "update_date": null, "bcgs_number": "092K021433"}}, {"model": "wells.bcgs_numbers", "pk": 9253, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T16:37:49Z", "update_user": null, "update_date": null, "bcgs_number": "082N016442"}}, {"model": "wells.bcgs_numbers", "pk": 9254, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T17:17:43Z", "update_user": null, "update_date": null, "bcgs_number": "082F014333"}}, {"model": "wells.bcgs_numbers", "pk": 9255, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T17:29:18Z", "update_user": null, "update_date": null, "bcgs_number": "082F028111"}}, {"model": "wells.bcgs_numbers", "pk": 9256, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T18:12:49Z", "update_user": null, "update_date": null, "bcgs_number": "093K049222"}}, {"model": "wells.bcgs_numbers", "pk": 9257, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T18:26:59Z", "update_user": null, "update_date": null, "bcgs_number": "093P076331"}}, {"model": "wells.bcgs_numbers", "pk": 9258, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T18:34:40Z", "update_user": null, "update_date": null, "bcgs_number": "082F067111"}}, {"model": "wells.bcgs_numbers", "pk": 9259, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T18:42:02Z", "update_user": null, "update_date": null, "bcgs_number": "093K020112"}}, {"model": "wells.bcgs_numbers", "pk": 9260, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-21T22:23:54Z", "update_user": null, "update_date": null, "bcgs_number": "082F009242"}}, {"model": "wells.bcgs_numbers", "pk": 9261, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-28T18:45:40Z", "update_user": null, "update_date": null, "bcgs_number": "092I059142"}}, {"model": "wells.bcgs_numbers", "pk": 9262, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-12-28T22:10:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F030433"}}, {"model": "wells.bcgs_numbers", "pk": 9263, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-02T17:47:29Z", "update_user": null, "update_date": null, "bcgs_number": "082F019243"}}, {"model": "wells.bcgs_numbers", "pk": 9264, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-02T18:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F014334"}}, {"model": "wells.bcgs_numbers", "pk": 9265, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-03T18:49:02Z", "update_user": null, "update_date": null, "bcgs_number": "093J005342"}}, {"model": "wells.bcgs_numbers", "pk": 9266, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-03T19:14:40Z", "update_user": null, "update_date": null, "bcgs_number": "093F098443"}}, {"model": "wells.bcgs_numbers", "pk": 9267, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-03T19:21:55Z", "update_user": null, "update_date": null, "bcgs_number": "093G091141"}}, {"model": "wells.bcgs_numbers", "pk": 9268, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-03T22:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "092H048211"}}, {"model": "wells.bcgs_numbers", "pk": 9269, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-03T23:59:11Z", "update_user": null, "update_date": null, "bcgs_number": "093B096332"}}, {"model": "wells.bcgs_numbers", "pk": 9270, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T00:02:51Z", "update_user": null, "update_date": null, "bcgs_number": "093B088431"}}, {"model": "wells.bcgs_numbers", "pk": 9271, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T00:04:00Z", "update_user": null, "update_date": null, "bcgs_number": "093G038133"}}, {"model": "wells.bcgs_numbers", "pk": 9272, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T17:58:56Z", "update_user": null, "update_date": null, "bcgs_number": "092G042322"}}, {"model": "wells.bcgs_numbers", "pk": 9273, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T18:04:27Z", "update_user": null, "update_date": null, "bcgs_number": "092J016122"}}, {"model": "wells.bcgs_numbers", "pk": 9274, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T18:24:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H058342"}}, {"model": "wells.bcgs_numbers", "pk": 9275, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T22:42:14Z", "update_user": null, "update_date": null, "bcgs_number": "092H095444"}}, {"model": "wells.bcgs_numbers", "pk": 9276, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-04T22:50:59Z", "update_user": null, "update_date": null, "bcgs_number": "092I016421"}}, {"model": "wells.bcgs_numbers", "pk": 9277, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T19:54:29Z", "update_user": null, "update_date": null, "bcgs_number": "092F011142"}}, {"model": "wells.bcgs_numbers", "pk": 9278, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-07T20:30:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L034144"}}, {"model": "wells.bcgs_numbers", "pk": 9279, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-08T16:41:18Z", "update_user": null, "update_date": null, "bcgs_number": "093P097441"}}, {"model": "wells.bcgs_numbers", "pk": 9280, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-08T17:04:57Z", "update_user": null, "update_date": null, "bcgs_number": "092G054223"}}, {"model": "wells.bcgs_numbers", "pk": 9281, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-09T17:30:13Z", "update_user": null, "update_date": null, "bcgs_number": "082L097111"}}, {"model": "wells.bcgs_numbers", "pk": 9282, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-09T18:30:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L035142"}}, {"model": "wells.bcgs_numbers", "pk": 9283, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-09T18:34:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L053122"}}, {"model": "wells.bcgs_numbers", "pk": 9284, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-09T18:45:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L053113"}}, {"model": "wells.bcgs_numbers", "pk": 9285, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-09T18:49:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L038123"}}, {"model": "wells.bcgs_numbers", "pk": 9286, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-09T19:08:20Z", "update_user": null, "update_date": null, "bcgs_number": "082L051343"}}, {"model": "wells.bcgs_numbers", "pk": 9287, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T16:16:29Z", "update_user": null, "update_date": null, "bcgs_number": "082L071114"}}, {"model": "wells.bcgs_numbers", "pk": 9288, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T16:25:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E036231"}}, {"model": "wells.bcgs_numbers", "pk": 9289, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T17:32:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L036343"}}, {"model": "wells.bcgs_numbers", "pk": 9290, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T17:50:39Z", "update_user": null, "update_date": null, "bcgs_number": "082E080343"}}, {"model": "wells.bcgs_numbers", "pk": 9291, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T17:54:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E100144"}}, {"model": "wells.bcgs_numbers", "pk": 9292, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T18:03:14Z", "update_user": null, "update_date": null, "bcgs_number": "082L066222"}}, {"model": "wells.bcgs_numbers", "pk": 9293, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T19:35:08Z", "update_user": null, "update_date": null, "bcgs_number": "094A057333"}}, {"model": "wells.bcgs_numbers", "pk": 9294, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T19:38:03Z", "update_user": null, "update_date": null, "bcgs_number": "093K067321"}}, {"model": "wells.bcgs_numbers", "pk": 9295, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T22:09:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P066222"}}, {"model": "wells.bcgs_numbers", "pk": 9296, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T22:27:16Z", "update_user": null, "update_date": null, "bcgs_number": "092I059431"}}, {"model": "wells.bcgs_numbers", "pk": 9297, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T22:30:49Z", "update_user": null, "update_date": null, "bcgs_number": "092P056423"}}, {"model": "wells.bcgs_numbers", "pk": 9298, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-10T23:22:34Z", "update_user": null, "update_date": null, "bcgs_number": "092O098324"}}, {"model": "wells.bcgs_numbers", "pk": 9299, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T00:03:22Z", "update_user": null, "update_date": null, "bcgs_number": "092O100143"}}, {"model": "wells.bcgs_numbers", "pk": 9300, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T16:22:28Z", "update_user": null, "update_date": null, "bcgs_number": "092P075441"}}, {"model": "wells.bcgs_numbers", "pk": 9301, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T16:42:38Z", "update_user": null, "update_date": null, "bcgs_number": "092P086441"}}, {"model": "wells.bcgs_numbers", "pk": 9302, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T17:03:11Z", "update_user": null, "update_date": null, "bcgs_number": "092J037322"}}, {"model": "wells.bcgs_numbers", "pk": 9303, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T18:29:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F096243"}}, {"model": "wells.bcgs_numbers", "pk": 9304, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T18:35:21Z", "update_user": null, "update_date": null, "bcgs_number": "092F097134"}}, {"model": "wells.bcgs_numbers", "pk": 9305, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T18:42:36Z", "update_user": null, "update_date": null, "bcgs_number": "092F096241"}}, {"model": "wells.bcgs_numbers", "pk": 9306, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-11T19:49:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I049414"}}, {"model": "wells.bcgs_numbers", "pk": 9307, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-15T16:32:32Z", "update_user": null, "update_date": null, "bcgs_number": "092P047321"}}, {"model": "wells.bcgs_numbers", "pk": 9308, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-15T22:09:24Z", "update_user": null, "update_date": null, "bcgs_number": "092K005311"}}, {"model": "wells.bcgs_numbers", "pk": 9309, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-16T17:38:51Z", "update_user": null, "update_date": null, "bcgs_number": "092B031343"}}, {"model": "wells.bcgs_numbers", "pk": 9310, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-16T21:58:27Z", "update_user": null, "update_date": null, "bcgs_number": "092C090312"}}, {"model": "wells.bcgs_numbers", "pk": 9311, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-17T00:35:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P056232"}}, {"model": "wells.bcgs_numbers", "pk": 9312, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-17T20:37:00Z", "update_user": null, "update_date": null, "bcgs_number": "082F052222"}}, {"model": "wells.bcgs_numbers", "pk": 9313, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-17T20:45:01Z", "update_user": null, "update_date": null, "bcgs_number": "092K006342"}}, {"model": "wells.bcgs_numbers", "pk": 9314, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-17T20:46:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E028421"}}, {"model": "wells.bcgs_numbers", "pk": 9315, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-17T20:59:24Z", "update_user": null, "update_date": null, "bcgs_number": "092K014244"}}, {"model": "wells.bcgs_numbers", "pk": 9316, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-17T21:13:18Z", "update_user": null, "update_date": null, "bcgs_number": "092H057133"}}, {"model": "wells.bcgs_numbers", "pk": 9317, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-18T20:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "092B043432"}}, {"model": "wells.bcgs_numbers", "pk": 9318, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-18T20:18:51Z", "update_user": null, "update_date": null, "bcgs_number": "092K015332"}}, {"model": "wells.bcgs_numbers", "pk": 9319, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-19T00:22:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P031224"}}, {"model": "wells.bcgs_numbers", "pk": 9320, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T21:53:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I046422"}}, {"model": "wells.bcgs_numbers", "pk": 9321, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T22:16:59Z", "update_user": null, "update_date": null, "bcgs_number": "092K016142"}}, {"model": "wells.bcgs_numbers", "pk": 9322, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T22:24:58Z", "update_user": null, "update_date": null, "bcgs_number": "092K025211"}}, {"model": "wells.bcgs_numbers", "pk": 9323, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T22:31:01Z", "update_user": null, "update_date": null, "bcgs_number": "092F037143"}}, {"model": "wells.bcgs_numbers", "pk": 9324, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T22:57:25Z", "update_user": null, "update_date": null, "bcgs_number": "092K016122"}}, {"model": "wells.bcgs_numbers", "pk": 9325, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:08:17Z", "update_user": null, "update_date": null, "bcgs_number": "092K025434"}}, {"model": "wells.bcgs_numbers", "pk": 9326, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:20:32Z", "update_user": null, "update_date": null, "bcgs_number": "092B092443"}}, {"model": "wells.bcgs_numbers", "pk": 9327, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:27:00Z", "update_user": null, "update_date": null, "bcgs_number": "092G002222"}}, {"model": "wells.bcgs_numbers", "pk": 9328, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:32:38Z", "update_user": null, "update_date": null, "bcgs_number": "092G002221"}}, {"model": "wells.bcgs_numbers", "pk": 9329, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:38:14Z", "update_user": null, "update_date": null, "bcgs_number": "082K026312"}}, {"model": "wells.bcgs_numbers", "pk": 9330, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:40:39Z", "update_user": null, "update_date": null, "bcgs_number": "082F044331"}}, {"model": "wells.bcgs_numbers", "pk": 9331, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:44:55Z", "update_user": null, "update_date": null, "bcgs_number": "092O092131"}}, {"model": "wells.bcgs_numbers", "pk": 9332, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-21T23:55:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A038423"}}, {"model": "wells.bcgs_numbers", "pk": 9333, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T16:30:56Z", "update_user": null, "update_date": null, "bcgs_number": "082G031414"}}, {"model": "wells.bcgs_numbers", "pk": 9334, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T16:36:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E062341"}}, {"model": "wells.bcgs_numbers", "pk": 9335, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T16:39:00Z", "update_user": null, "update_date": null, "bcgs_number": "082F096124"}}, {"model": "wells.bcgs_numbers", "pk": 9336, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T17:52:29Z", "update_user": null, "update_date": null, "bcgs_number": "092B063631"}}, {"model": "wells.bcgs_numbers", "pk": 9337, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T18:32:24Z", "update_user": null, "update_date": null, "bcgs_number": "092L033433"}}, {"model": "wells.bcgs_numbers", "pk": 9338, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T18:34:38Z", "update_user": null, "update_date": null, "bcgs_number": "092L052242"}}, {"model": "wells.bcgs_numbers", "pk": 9339, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T18:36:36Z", "update_user": null, "update_date": null, "bcgs_number": "092L052244"}}, {"model": "wells.bcgs_numbers", "pk": 9340, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T18:43:01Z", "update_user": null, "update_date": null, "bcgs_number": "092L052243"}}, {"model": "wells.bcgs_numbers", "pk": 9341, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T18:54:27Z", "update_user": null, "update_date": null, "bcgs_number": "092L065234"}}, {"model": "wells.bcgs_numbers", "pk": 9342, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:41:13Z", "update_user": null, "update_date": null, "bcgs_number": "092B052422"}}, {"model": "wells.bcgs_numbers", "pk": 9343, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:43:17Z", "update_user": null, "update_date": null, "bcgs_number": "092B071334"}}, {"model": "wells.bcgs_numbers", "pk": 9344, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:43:38Z", "update_user": null, "update_date": null, "bcgs_number": "082F024232"}}, {"model": "wells.bcgs_numbers", "pk": 9345, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:49:06Z", "update_user": null, "update_date": null, "bcgs_number": "082F052411"}}, {"model": "wells.bcgs_numbers", "pk": 9346, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:51:56Z", "update_user": null, "update_date": null, "bcgs_number": "082K012412"}}, {"model": "wells.bcgs_numbers", "pk": 9347, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:53:26Z", "update_user": null, "update_date": null, "bcgs_number": "082F043443"}}, {"model": "wells.bcgs_numbers", "pk": 9348, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T20:56:06Z", "update_user": null, "update_date": null, "bcgs_number": "082K004113"}}, {"model": "wells.bcgs_numbers", "pk": 9349, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-22T21:02:28Z", "update_user": null, "update_date": null, "bcgs_number": "082F025313"}}, {"model": "wells.bcgs_numbers", "pk": 9350, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-23T20:56:43Z", "update_user": null, "update_date": null, "bcgs_number": "082D005311"}}, {"model": "wells.bcgs_numbers", "pk": 9351, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-23T21:04:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L061213"}}, {"model": "wells.bcgs_numbers", "pk": 9352, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-23T21:18:18Z", "update_user": null, "update_date": null, "bcgs_number": "092I090233"}}, {"model": "wells.bcgs_numbers", "pk": 9353, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T16:36:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I016212"}}, {"model": "wells.bcgs_numbers", "pk": 9354, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T16:56:16Z", "update_user": null, "update_date": null, "bcgs_number": "092I060413"}}, {"model": "wells.bcgs_numbers", "pk": 9355, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T17:22:22Z", "update_user": null, "update_date": null, "bcgs_number": "092F084424"}}, {"model": "wells.bcgs_numbers", "pk": 9356, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T18:08:18Z", "update_user": null, "update_date": null, "bcgs_number": "082G042344"}}, {"model": "wells.bcgs_numbers", "pk": 9357, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T18:11:08Z", "update_user": null, "update_date": null, "bcgs_number": "082F070241"}}, {"model": "wells.bcgs_numbers", "pk": 9358, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T18:14:45Z", "update_user": null, "update_date": null, "bcgs_number": "082J021413"}}, {"model": "wells.bcgs_numbers", "pk": 9359, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T20:19:04Z", "update_user": null, "update_date": null, "bcgs_number": "092L066232"}}, {"model": "wells.bcgs_numbers", "pk": 9360, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T20:22:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G033244"}}, {"model": "wells.bcgs_numbers", "pk": 9361, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T21:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092L066132"}}, {"model": "wells.bcgs_numbers", "pk": 9362, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T22:09:53Z", "update_user": null, "update_date": null, "bcgs_number": "104N052414"}}, {"model": "wells.bcgs_numbers", "pk": 9363, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T22:50:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L055341"}}, {"model": "wells.bcgs_numbers", "pk": 9364, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-24T22:53:04Z", "update_user": null, "update_date": null, "bcgs_number": "104G095112"}}, {"model": "wells.bcgs_numbers", "pk": 9366, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-25T17:50:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I082341"}}, {"model": "wells.bcgs_numbers", "pk": 9367, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-25T20:12:05Z", "update_user": null, "update_date": null, "bcgs_number": "104I041113"}}, {"model": "wells.bcgs_numbers", "pk": 9368, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-25T20:20:53Z", "update_user": null, "update_date": null, "bcgs_number": "092L052241"}}, {"model": "wells.bcgs_numbers", "pk": 9370, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-25T22:40:47Z", "update_user": null, "update_date": null, "bcgs_number": "092B044142"}}, {"model": "wells.bcgs_numbers", "pk": 9371, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-25T23:09:46Z", "update_user": null, "update_date": null, "bcgs_number": "092B052441"}}, {"model": "wells.bcgs_numbers", "pk": 9372, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T16:30:27Z", "update_user": null, "update_date": null, "bcgs_number": "092L052422"}}, {"model": "wells.bcgs_numbers", "pk": 9373, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T16:59:01Z", "update_user": null, "update_date": null, "bcgs_number": "092K021344"}}, {"model": "wells.bcgs_numbers", "pk": 9374, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T17:42:48Z", "update_user": null, "update_date": null, "bcgs_number": "083D093441"}}, {"model": "wells.bcgs_numbers", "pk": 9375, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T17:44:17Z", "update_user": null, "update_date": null, "bcgs_number": "082L061321"}}, {"model": "wells.bcgs_numbers", "pk": 9377, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T17:57:10Z", "update_user": null, "update_date": null, "bcgs_number": "083D074412"}}, {"model": "wells.bcgs_numbers", "pk": 9378, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T18:03:48Z", "update_user": null, "update_date": null, "bcgs_number": "082M061124"}}, {"model": "wells.bcgs_numbers", "pk": 9379, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T18:10:07Z", "update_user": null, "update_date": null, "bcgs_number": "083D084221"}}, {"model": "wells.bcgs_numbers", "pk": 9380, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T18:16:39Z", "update_user": null, "update_date": null, "bcgs_number": "082L062143"}}, {"model": "wells.bcgs_numbers", "pk": 9381, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T18:27:35Z", "update_user": null, "update_date": null, "bcgs_number": "093M032324"}}, {"model": "wells.bcgs_numbers", "pk": 9382, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T21:15:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P072244"}}, {"model": "wells.bcgs_numbers", "pk": 9383, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-28T22:09:09Z", "update_user": null, "update_date": null, "bcgs_number": "092K031324"}}, {"model": "wells.bcgs_numbers", "pk": 9384, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-29T19:21:39Z", "update_user": null, "update_date": null, "bcgs_number": "092J016414"}}, {"model": "wells.bcgs_numbers", "pk": 9385, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-29T20:45:41Z", "update_user": null, "update_date": null, "bcgs_number": "092G024421"}}, {"model": "wells.bcgs_numbers", "pk": 9386, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-29T21:06:57Z", "update_user": null, "update_date": null, "bcgs_number": "092K031321"}}, {"model": "wells.bcgs_numbers", "pk": 9387, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-29T21:09:01Z", "update_user": null, "update_date": null, "bcgs_number": "092K023441"}}, {"model": "wells.bcgs_numbers", "pk": 9388, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-29T21:23:46Z", "update_user": null, "update_date": null, "bcgs_number": "092G036142"}}, {"model": "wells.bcgs_numbers", "pk": 9389, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T17:48:56Z", "update_user": null, "update_date": null, "bcgs_number": "092F085222"}}, {"model": "wells.bcgs_numbers", "pk": 9390, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T19:28:40Z", "update_user": null, "update_date": null, "bcgs_number": "082L094224"}}, {"model": "wells.bcgs_numbers", "pk": 9391, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T19:43:09Z", "update_user": null, "update_date": null, "bcgs_number": "082L054114"}}, {"model": "wells.bcgs_numbers", "pk": 9392, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T19:58:13Z", "update_user": null, "update_date": null, "bcgs_number": "082L051244"}}, {"model": "wells.bcgs_numbers", "pk": 9393, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T20:29:04Z", "update_user": null, "update_date": null, "bcgs_number": "092I018233"}}, {"model": "wells.bcgs_numbers", "pk": 9394, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T20:50:28Z", "update_user": null, "update_date": null, "bcgs_number": "092B044143"}}, {"model": "wells.bcgs_numbers", "pk": 9395, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T22:46:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H058324"}}, {"model": "wells.bcgs_numbers", "pk": 9396, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T22:55:07Z", "update_user": null, "update_date": null, "bcgs_number": "082E022113"}}, {"model": "wells.bcgs_numbers", "pk": 9397, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-30T23:28:49Z", "update_user": null, "update_date": null, "bcgs_number": "082N045214"}}, {"model": "wells.bcgs_numbers", "pk": 9398, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T18:08:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B066431"}}, {"model": "wells.bcgs_numbers", "pk": 9399, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T20:03:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G043114"}}, {"model": "wells.bcgs_numbers", "pk": 9400, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T21:27:31Z", "update_user": null, "update_date": null, "bcgs_number": "092O050233"}}, {"model": "wells.bcgs_numbers", "pk": 9401, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T21:30:24Z", "update_user": null, "update_date": null, "bcgs_number": "082G024423"}}, {"model": "wells.bcgs_numbers", "pk": 9402, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T21:39:40Z", "update_user": null, "update_date": null, "bcgs_number": "092I060324"}}, {"model": "wells.bcgs_numbers", "pk": 9404, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T21:47:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I060411"}}, {"model": "wells.bcgs_numbers", "pk": 9405, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T22:53:26Z", "update_user": null, "update_date": null, "bcgs_number": "082M052334"}}, {"model": "wells.bcgs_numbers", "pk": 9406, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T23:05:03Z", "update_user": null, "update_date": null, "bcgs_number": "092C089434"}}, {"model": "wells.bcgs_numbers", "pk": 9407, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T23:14:23Z", "update_user": null, "update_date": null, "bcgs_number": "092C089334"}}, {"model": "wells.bcgs_numbers", "pk": 9408, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-01-31T23:29:29Z", "update_user": null, "update_date": null, "bcgs_number": "092K004224"}}, {"model": "wells.bcgs_numbers", "pk": 9409, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T17:21:22Z", "update_user": null, "update_date": null, "bcgs_number": "082K089233"}}, {"model": "wells.bcgs_numbers", "pk": 9410, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T17:31:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G043213"}}, {"model": "wells.bcgs_numbers", "pk": 9411, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T17:48:59Z", "update_user": null, "update_date": null, "bcgs_number": "082F037213"}}, {"model": "wells.bcgs_numbers", "pk": 9412, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T18:07:49Z", "update_user": null, "update_date": null, "bcgs_number": "082K001342"}}, {"model": "wells.bcgs_numbers", "pk": 9413, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T18:15:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P057214"}}, {"model": "wells.bcgs_numbers", "pk": 9414, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T19:13:21Z", "update_user": null, "update_date": null, "bcgs_number": "082K011211"}}, {"model": "wells.bcgs_numbers", "pk": 9415, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T19:18:00Z", "update_user": null, "update_date": null, "bcgs_number": "092F032332"}}, {"model": "wells.bcgs_numbers", "pk": 9416, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T20:34:27Z", "update_user": null, "update_date": null, "bcgs_number": "082F054212"}}, {"model": "wells.bcgs_numbers", "pk": 9417, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T21:43:09Z", "update_user": null, "update_date": null, "bcgs_number": "082K012414"}}, {"model": "wells.bcgs_numbers", "pk": 9418, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T22:06:27Z", "update_user": null, "update_date": null, "bcgs_number": "092P075214"}}, {"model": "wells.bcgs_numbers", "pk": 9419, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T22:49:45Z", "update_user": null, "update_date": null, "bcgs_number": "092P066311"}}, {"model": "wells.bcgs_numbers", "pk": 9420, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T23:05:13Z", "update_user": null, "update_date": null, "bcgs_number": "082K045124"}}, {"model": "wells.bcgs_numbers", "pk": 9421, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T23:48:38Z", "update_user": null, "update_date": null, "bcgs_number": "082E005212"}}, {"model": "wells.bcgs_numbers", "pk": 9422, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-01T23:53:44Z", "update_user": null, "update_date": null, "bcgs_number": "082K013211"}}, {"model": "wells.bcgs_numbers", "pk": 9423, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-04T16:42:58Z", "update_user": null, "update_date": null, "bcgs_number": "082F024424"}}, {"model": "wells.bcgs_numbers", "pk": 9424, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-04T18:30:01Z", "update_user": null, "update_date": null, "bcgs_number": "092I069112"}}, {"model": "wells.bcgs_numbers", "pk": 9425, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-04T18:37:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P056113"}}, {"model": "wells.bcgs_numbers", "pk": 9426, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-04T19:18:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I028231"}}, {"model": "wells.bcgs_numbers", "pk": 9427, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-04T22:28:37Z", "update_user": null, "update_date": null, "bcgs_number": "082L023442"}}, {"model": "wells.bcgs_numbers", "pk": 9428, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-05T16:56:38Z", "update_user": null, "update_date": null, "bcgs_number": "092B037444"}}, {"model": "wells.bcgs_numbers", "pk": 9429, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-05T17:09:32Z", "update_user": null, "update_date": null, "bcgs_number": "092B032424"}}, {"model": "wells.bcgs_numbers", "pk": 9430, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-05T17:30:45Z", "update_user": null, "update_date": null, "bcgs_number": "092B043234"}}, {"model": "wells.bcgs_numbers", "pk": 9431, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-06T17:07:34Z", "update_user": null, "update_date": null, "bcgs_number": "092F057312"}}, {"model": "wells.bcgs_numbers", "pk": 9432, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-06T21:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "092B032342"}}, {"model": "wells.bcgs_numbers", "pk": 9433, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-08T16:49:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B063114"}}, {"model": "wells.bcgs_numbers", "pk": 9434, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-08T16:56:30Z", "update_user": null, "update_date": null, "bcgs_number": "092B063112"}}, {"model": "wells.bcgs_numbers", "pk": 9435, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-08T18:17:57Z", "update_user": null, "update_date": null, "bcgs_number": "092H002332"}}, {"model": "wells.bcgs_numbers", "pk": 9436, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-11T22:29:15Z", "update_user": null, "update_date": null, "bcgs_number": "092I039324"}}, {"model": "wells.bcgs_numbers", "pk": 9437, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-11T23:11:07Z", "update_user": null, "update_date": null, "bcgs_number": "092I067434"}}, {"model": "wells.bcgs_numbers", "pk": 9438, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:08:05Z", "update_user": null, "update_date": null, "bcgs_number": "093E099432"}}, {"model": "wells.bcgs_numbers", "pk": 9439, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:10:35Z", "update_user": null, "update_date": null, "bcgs_number": "093I001433"}}, {"model": "wells.bcgs_numbers", "pk": 9440, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:15:51Z", "update_user": null, "update_date": null, "bcgs_number": "093B096331"}}, {"model": "wells.bcgs_numbers", "pk": 9441, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:17:05Z", "update_user": null, "update_date": null, "bcgs_number": "092G098143"}}, {"model": "wells.bcgs_numbers", "pk": 9442, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:18:51Z", "update_user": null, "update_date": null, "bcgs_number": "093H030231"}}, {"model": "wells.bcgs_numbers", "pk": 9443, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:21:05Z", "update_user": null, "update_date": null, "bcgs_number": "083E012113"}}, {"model": "wells.bcgs_numbers", "pk": 9444, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:28:16Z", "update_user": null, "update_date": null, "bcgs_number": "093K092432"}}, {"model": "wells.bcgs_numbers", "pk": 9445, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:33:43Z", "update_user": null, "update_date": null, "bcgs_number": "093K004124"}}, {"model": "wells.bcgs_numbers", "pk": 9446, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T17:41:27Z", "update_user": null, "update_date": null, "bcgs_number": "093K029441"}}, {"model": "wells.bcgs_numbers", "pk": 9447, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:01:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I007224"}}, {"model": "wells.bcgs_numbers", "pk": 9448, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:04:18Z", "update_user": null, "update_date": null, "bcgs_number": "093J001232"}}, {"model": "wells.bcgs_numbers", "pk": 9449, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:07:27Z", "update_user": null, "update_date": null, "bcgs_number": "093K012132"}}, {"model": "wells.bcgs_numbers", "pk": 9450, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:10:04Z", "update_user": null, "update_date": null, "bcgs_number": "093G084312"}}, {"model": "wells.bcgs_numbers", "pk": 9451, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:14:24Z", "update_user": null, "update_date": null, "bcgs_number": "093K006434"}}, {"model": "wells.bcgs_numbers", "pk": 9452, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:16:03Z", "update_user": null, "update_date": null, "bcgs_number": "093J006444"}}, {"model": "wells.bcgs_numbers", "pk": 9453, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:17:36Z", "update_user": null, "update_date": null, "bcgs_number": "092G009343"}}, {"model": "wells.bcgs_numbers", "pk": 9454, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:23:12Z", "update_user": null, "update_date": null, "bcgs_number": "082N011232"}}, {"model": "wells.bcgs_numbers", "pk": 9455, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T18:42:19Z", "update_user": null, "update_date": null, "bcgs_number": "082F044341"}}, {"model": "wells.bcgs_numbers", "pk": 9456, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T19:14:18Z", "update_user": null, "update_date": null, "bcgs_number": "092I064443"}}, {"model": "wells.bcgs_numbers", "pk": 9457, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T19:33:18Z", "update_user": null, "update_date": null, "bcgs_number": "092P014224"}}, {"model": "wells.bcgs_numbers", "pk": 9458, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T19:38:47Z", "update_user": null, "update_date": null, "bcgs_number": "092F096234"}}, {"model": "wells.bcgs_numbers", "pk": 9459, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-12T19:41:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F096232"}}, {"model": "wells.bcgs_numbers", "pk": 9460, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-13T18:31:25Z", "update_user": null, "update_date": null, "bcgs_number": "092C050223"}}, {"model": "wells.bcgs_numbers", "pk": 9461, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-14T18:22:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B031344"}}, {"model": "wells.bcgs_numbers", "pk": 9462, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-14T18:33:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P020334"}}, {"model": "wells.bcgs_numbers", "pk": 9463, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-14T20:34:41Z", "update_user": null, "update_date": null, "bcgs_number": "082M001444"}}, {"model": "wells.bcgs_numbers", "pk": 9464, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-14T21:13:36Z", "update_user": null, "update_date": null, "bcgs_number": "092K016241"}}, {"model": "wells.bcgs_numbers", "pk": 9465, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-14T21:42:19Z", "update_user": null, "update_date": null, "bcgs_number": "092P092222"}}, {"model": "wells.bcgs_numbers", "pk": 9466, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-14T22:21:44Z", "update_user": null, "update_date": null, "bcgs_number": "092P020413"}}, {"model": "wells.bcgs_numbers", "pk": 9467, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-15T17:18:47Z", "update_user": null, "update_date": null, "bcgs_number": "083E011333"}}, {"model": "wells.bcgs_numbers", "pk": 9468, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-15T17:43:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I069332"}}, {"model": "wells.bcgs_numbers", "pk": 9469, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-15T18:49:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P010421"}}, {"model": "wells.bcgs_numbers", "pk": 9470, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-15T19:05:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P010243"}}, {"model": "wells.bcgs_numbers", "pk": 9471, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-15T20:08:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P010434"}}, {"model": "wells.bcgs_numbers", "pk": 9472, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-19T17:37:36Z", "update_user": null, "update_date": null, "bcgs_number": "092P085241"}}, {"model": "wells.bcgs_numbers", "pk": 9473, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-19T17:52:19Z", "update_user": null, "update_date": null, "bcgs_number": "092P021133"}}, {"model": "wells.bcgs_numbers", "pk": 9474, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-19T17:57:56Z", "update_user": null, "update_date": null, "bcgs_number": "092P032111"}}, {"model": "wells.bcgs_numbers", "pk": 9475, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-02-22T23:15:30Z", "update_user": null, "update_date": null, "bcgs_number": "092B054434"}}, {"model": "wells.bcgs_numbers", "pk": 9476, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-03T18:22:24Z", "update_user": null, "update_date": null, "bcgs_number": "092B043214"}}, {"model": "wells.bcgs_numbers", "pk": 9477, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-10T15:27:15Z", "update_user": null, "update_date": null, "bcgs_number": "093K008323"}}, {"model": "wells.bcgs_numbers", "pk": 9478, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-10T20:40:56Z", "update_user": null, "update_date": null, "bcgs_number": "093G008442"}}, {"model": "wells.bcgs_numbers", "pk": 9479, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-10T21:02:59Z", "update_user": null, "update_date": null, "bcgs_number": "093F090344"}}, {"model": "wells.bcgs_numbers", "pk": 9480, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-10T21:10:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H032242"}}, {"model": "wells.bcgs_numbers", "pk": 9481, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-10T21:32:28Z", "update_user": null, "update_date": null, "bcgs_number": "092H053243"}}, {"model": "wells.bcgs_numbers", "pk": 9482, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-12T17:00:15Z", "update_user": null, "update_date": null, "bcgs_number": "094A009124"}}, {"model": "wells.bcgs_numbers", "pk": 9483, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-12T18:07:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G026213"}}, {"model": "wells.bcgs_numbers", "pk": 9484, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T15:21:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B001234"}}, {"model": "wells.bcgs_numbers", "pk": 9485, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T15:22:51Z", "update_user": null, "update_date": null, "bcgs_number": "092B047314"}}, {"model": "wells.bcgs_numbers", "pk": 9486, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T15:34:09Z", "update_user": null, "update_date": null, "bcgs_number": "092G094112"}}, {"model": "wells.bcgs_numbers", "pk": 9487, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T16:18:26Z", "update_user": null, "update_date": null, "bcgs_number": "092P076222"}}, {"model": "wells.bcgs_numbers", "pk": 9488, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T18:25:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F065233"}}, {"model": "wells.bcgs_numbers", "pk": 9489, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T20:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E008332"}}, {"model": "wells.bcgs_numbers", "pk": 9490, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:31:47Z", "update_user": null, "update_date": null, "bcgs_number": "082E013244"}}, {"model": "wells.bcgs_numbers", "pk": 9491, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:40:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G003332"}}, {"model": "wells.bcgs_numbers", "pk": 9492, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:45:53Z", "update_user": null, "update_date": null, "bcgs_number": "093G008311"}}, {"model": "wells.bcgs_numbers", "pk": 9493, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:56:05Z", "update_user": null, "update_date": null, "bcgs_number": "093G009333"}}, {"model": "wells.bcgs_numbers", "pk": 9494, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:56:39Z", "update_user": null, "update_date": null, "bcgs_number": "093G018222"}}, {"model": "wells.bcgs_numbers", "pk": 9495, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:57:39Z", "update_user": null, "update_date": null, "bcgs_number": "093G028344"}}, {"model": "wells.bcgs_numbers", "pk": 9496, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-13T21:58:09Z", "update_user": null, "update_date": null, "bcgs_number": "093G048114"}}, {"model": "wells.bcgs_numbers", "pk": 9497, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:09:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G016112"}}, {"model": "wells.bcgs_numbers", "pk": 9499, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:40:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G027313"}}, {"model": "wells.bcgs_numbers", "pk": 9500, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:41:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G085312"}}, {"model": "wells.bcgs_numbers", "pk": 9501, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:43:18Z", "update_user": null, "update_date": null, "bcgs_number": "092H021129"}}, {"model": "wells.bcgs_numbers", "pk": 9504, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:46:30Z", "update_user": null, "update_date": null, "bcgs_number": "092I029411"}}, {"model": "wells.bcgs_numbers", "pk": 9505, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:48:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P074211"}}, {"model": "wells.bcgs_numbers", "pk": 9506, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:49:30Z", "update_user": null, "update_date": null, "bcgs_number": "092P084211"}}, {"model": "wells.bcgs_numbers", "pk": 9507, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T17:59:55Z", "update_user": null, "update_date": null, "bcgs_number": "092B083123"}}, {"model": "wells.bcgs_numbers", "pk": 9508, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T18:25:08Z", "update_user": null, "update_date": null, "bcgs_number": "092H080113"}}, {"model": "wells.bcgs_numbers", "pk": 9509, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T18:41:59Z", "update_user": null, "update_date": null, "bcgs_number": "092F080112"}}, {"model": "wells.bcgs_numbers", "pk": 9510, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T21:08:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H033434"}}, {"model": "wells.bcgs_numbers", "pk": 9511, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T21:48:31Z", "update_user": null, "update_date": null, "bcgs_number": "092G029134"}}, {"model": "wells.bcgs_numbers", "pk": 9512, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-17T22:21:53Z", "update_user": null, "update_date": null, "bcgs_number": "092B083433"}}, {"model": "wells.bcgs_numbers", "pk": 9513, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-18T16:42:56Z", "update_user": null, "update_date": null, "bcgs_number": "092P034411"}}, {"model": "wells.bcgs_numbers", "pk": 9514, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-18T17:18:32Z", "update_user": null, "update_date": null, "bcgs_number": "092P057232"}}, {"model": "wells.bcgs_numbers", "pk": 9515, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-18T18:03:38Z", "update_user": null, "update_date": null, "bcgs_number": "092H002331"}}, {"model": "wells.bcgs_numbers", "pk": 9516, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-18T18:07:08Z", "update_user": null, "update_date": null, "bcgs_number": "092I028211"}}, {"model": "wells.bcgs_numbers", "pk": 9517, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-18T18:17:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G033423"}}, {"model": "wells.bcgs_numbers", "pk": 9518, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-18T18:19:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B053341"}}, {"model": "wells.bcgs_numbers", "pk": 9519, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-19T17:42:46Z", "update_user": null, "update_date": null, "bcgs_number": "082G024244"}}, {"model": "wells.bcgs_numbers", "pk": 9520, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-19T18:03:57Z", "update_user": null, "update_date": null, "bcgs_number": "092J036421"}}, {"model": "wells.bcgs_numbers", "pk": 9521, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-19T18:17:50Z", "update_user": null, "update_date": null, "bcgs_number": "082F008344"}}, {"model": "wells.bcgs_numbers", "pk": 9522, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-20T20:23:47Z", "update_user": null, "update_date": null, "bcgs_number": "092C099122"}}, {"model": "wells.bcgs_numbers", "pk": 9523, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-20T20:31:26Z", "update_user": null, "update_date": null, "bcgs_number": "092C089324"}}, {"model": "wells.bcgs_numbers", "pk": 9524, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-20T20:34:43Z", "update_user": null, "update_date": null, "bcgs_number": "092C089413"}}, {"model": "wells.bcgs_numbers", "pk": 9525, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-20T20:41:10Z", "update_user": null, "update_date": null, "bcgs_number": "092C059331"}}, {"model": "wells.bcgs_numbers", "pk": 9526, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T20:46:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A046113"}}, {"model": "wells.bcgs_numbers", "pk": 9527, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T20:51:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A044423"}}, {"model": "wells.bcgs_numbers", "pk": 9528, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T21:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A095214"}}, {"model": "wells.bcgs_numbers", "pk": 9529, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T21:04:39Z", "update_user": null, "update_date": null, "bcgs_number": "094A011434"}}, {"model": "wells.bcgs_numbers", "pk": 9530, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T21:08:11Z", "update_user": null, "update_date": null, "bcgs_number": "094A063141"}}, {"model": "wells.bcgs_numbers", "pk": 9531, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T22:02:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A012333"}}, {"model": "wells.bcgs_numbers", "pk": 9532, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T22:26:02Z", "update_user": null, "update_date": null, "bcgs_number": "083D094342"}}, {"model": "wells.bcgs_numbers", "pk": 9533, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-25T22:26:58Z", "update_user": null, "update_date": null, "bcgs_number": "082L034111"}}, {"model": "wells.bcgs_numbers", "pk": 9534, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-26T15:54:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P065433"}}, {"model": "wells.bcgs_numbers", "pk": 9535, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-26T16:57:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I027313"}}, {"model": "wells.bcgs_numbers", "pk": 9536, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-26T18:39:41Z", "update_user": null, "update_date": null, "bcgs_number": "092B031433"}}, {"model": "wells.bcgs_numbers", "pk": 9537, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-26T21:45:33Z", "update_user": null, "update_date": null, "bcgs_number": "092B063233"}}, {"model": "wells.bcgs_numbers", "pk": 9538, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-27T16:00:00Z", "update_user": null, "update_date": null, "bcgs_number": "092F011324"}}, {"model": "wells.bcgs_numbers", "pk": 9539, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-27T16:10:35Z", "update_user": null, "update_date": null, "bcgs_number": "092F066323"}}, {"model": "wells.bcgs_numbers", "pk": 9540, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-27T19:09:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B062344"}}, {"model": "wells.bcgs_numbers", "pk": 9541, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-27T20:40:04Z", "update_user": null, "update_date": null, "bcgs_number": "092G061331"}}, {"model": "wells.bcgs_numbers", "pk": 9542, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-28T19:31:25Z", "update_user": null, "update_date": null, "bcgs_number": "092H048314"}}, {"model": "wells.bcgs_numbers", "pk": 9543, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-28T19:39:21Z", "update_user": null, "update_date": null, "bcgs_number": "092H058122"}}, {"model": "wells.bcgs_numbers", "pk": 9544, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-28T19:42:55Z", "update_user": null, "update_date": null, "bcgs_number": "082F063321"}}, {"model": "wells.bcgs_numbers", "pk": 9545, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-31T16:38:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G001332"}}, {"model": "wells.bcgs_numbers", "pk": 9546, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-31T17:04:10Z", "update_user": null, "update_date": null, "bcgs_number": "082F017221"}}, {"model": "wells.bcgs_numbers", "pk": 9547, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-31T17:06:07Z", "update_user": null, "update_date": null, "bcgs_number": "092I080141"}}, {"model": "wells.bcgs_numbers", "pk": 9548, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-31T17:07:33Z", "update_user": null, "update_date": null, "bcgs_number": "092I077144"}}, {"model": "wells.bcgs_numbers", "pk": 9549, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-31T22:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "092P034144"}}, {"model": "wells.bcgs_numbers", "pk": 9550, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-03-31T23:11:12Z", "update_user": null, "update_date": null, "bcgs_number": "092p031222"}}, {"model": "wells.bcgs_numbers", "pk": 9551, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T15:48:03Z", "update_user": null, "update_date": null, "bcgs_number": "082E006234"}}, {"model": "wells.bcgs_numbers", "pk": 9552, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T16:03:31Z", "update_user": null, "update_date": null, "bcgs_number": "093B059212"}}, {"model": "wells.bcgs_numbers", "pk": 9553, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T16:07:40Z", "update_user": null, "update_date": null, "bcgs_number": "093B096414"}}, {"model": "wells.bcgs_numbers", "pk": 9554, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T17:06:13Z", "update_user": null, "update_date": null, "bcgs_number": "093D040414"}}, {"model": "wells.bcgs_numbers", "pk": 9555, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T17:26:29Z", "update_user": null, "update_date": null, "bcgs_number": "093D040431"}}, {"model": "wells.bcgs_numbers", "pk": 9556, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T18:28:45Z", "update_user": null, "update_date": null, "bcgs_number": "093B004333"}}, {"model": "wells.bcgs_numbers", "pk": 9557, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T18:48:08Z", "update_user": null, "update_date": null, "bcgs_number": "092H022342"}}, {"model": "wells.bcgs_numbers", "pk": 9558, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-01T21:20:32Z", "update_user": null, "update_date": null, "bcgs_number": "092G020131"}}, {"model": "wells.bcgs_numbers", "pk": 9559, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-02T16:22:12Z", "update_user": null, "update_date": null, "bcgs_number": "082E010112"}}, {"model": "wells.bcgs_numbers", "pk": 9560, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-02T16:25:21Z", "update_user": null, "update_date": null, "bcgs_number": "082F014342"}}, {"model": "wells.bcgs_numbers", "pk": 9561, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-02T20:39:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F038421"}}, {"model": "wells.bcgs_numbers", "pk": 9562, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-02T21:05:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G011323"}}, {"model": "wells.bcgs_numbers", "pk": 9563, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-02T21:31:35Z", "update_user": null, "update_date": null, "bcgs_number": "092B082423"}}, {"model": "wells.bcgs_numbers", "pk": 9564, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-02T21:49:24Z", "update_user": null, "update_date": null, "bcgs_number": "092B091443"}}, {"model": "wells.bcgs_numbers", "pk": 9565, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-03T15:49:37Z", "update_user": null, "update_date": null, "bcgs_number": "093A020211"}}, {"model": "wells.bcgs_numbers", "pk": 9566, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T16:24:13Z", "update_user": null, "update_date": null, "bcgs_number": "094A062242"}}, {"model": "wells.bcgs_numbers", "pk": 9567, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T18:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "092L057332"}}, {"model": "wells.bcgs_numbers", "pk": 9568, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T18:16:30Z", "update_user": null, "update_date": null, "bcgs_number": "092K035343"}}, {"model": "wells.bcgs_numbers", "pk": 9569, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T18:16:38Z", "update_user": null, "update_date": null, "bcgs_number": "092C050241"}}, {"model": "wells.bcgs_numbers", "pk": 9570, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T18:18:19Z", "update_user": null, "update_date": null, "bcgs_number": "092F056442"}}, {"model": "wells.bcgs_numbers", "pk": 9571, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T18:26:19Z", "update_user": null, "update_date": null, "bcgs_number": "092K031124"}}, {"model": "wells.bcgs_numbers", "pk": 9572, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T18:28:47Z", "update_user": null, "update_date": null, "bcgs_number": "092F066144"}}, {"model": "wells.bcgs_numbers", "pk": 9573, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T20:15:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H038431"}}, {"model": "wells.bcgs_numbers", "pk": 9574, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T20:16:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H078411"}}, {"model": "wells.bcgs_numbers", "pk": 9575, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T20:37:55Z", "update_user": null, "update_date": null, "bcgs_number": "092H078144"}}, {"model": "wells.bcgs_numbers", "pk": 9576, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T22:01:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G029441"}}, {"model": "wells.bcgs_numbers", "pk": 9577, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-07T22:25:52Z", "update_user": null, "update_date": null, "bcgs_number": "092H001424"}}, {"model": "wells.bcgs_numbers", "pk": 9578, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-08T15:48:47Z", "update_user": null, "update_date": null, "bcgs_number": "092G044112"}}, {"model": "wells.bcgs_numbers", "pk": 9579, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-08T16:22:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H078233"}}, {"model": "wells.bcgs_numbers", "pk": 9580, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-08T16:46:06Z", "update_user": null, "update_date": null, "bcgs_number": "093G067212"}}, {"model": "wells.bcgs_numbers", "pk": 9581, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-08T16:46:13Z", "update_user": null, "update_date": null, "bcgs_number": "093F100341"}}, {"model": "wells.bcgs_numbers", "pk": 9582, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-08T16:46:21Z", "update_user": null, "update_date": null, "bcgs_number": "082G042222"}}, {"model": "wells.bcgs_numbers", "pk": 9583, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-08T21:20:34Z", "update_user": null, "update_date": null, "bcgs_number": "092G029242"}}, {"model": "wells.bcgs_numbers", "pk": 9584, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:30:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E028414"}}, {"model": "wells.bcgs_numbers", "pk": 9585, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:32:20Z", "update_user": null, "update_date": null, "bcgs_number": "082E082414"}}, {"model": "wells.bcgs_numbers", "pk": 9586, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:55:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A023433"}}, {"model": "wells.bcgs_numbers", "pk": 9587, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:55:19Z", "update_user": null, "update_date": null, "bcgs_number": "094A036124"}}, {"model": "wells.bcgs_numbers", "pk": 9588, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:55:55Z", "update_user": null, "update_date": null, "bcgs_number": "093F098114"}}, {"model": "wells.bcgs_numbers", "pk": 9589, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:56:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A033331"}}, {"model": "wells.bcgs_numbers", "pk": 9590, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:56:19Z", "update_user": null, "update_date": null, "bcgs_number": "094A035342"}}, {"model": "wells.bcgs_numbers", "pk": 9591, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:56:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A024443"}}, {"model": "wells.bcgs_numbers", "pk": 9592, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:56:46Z", "update_user": null, "update_date": null, "bcgs_number": "094A001432"}}, {"model": "wells.bcgs_numbers", "pk": 9593, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-09T21:57:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H011433"}}, {"model": "wells.bcgs_numbers", "pk": 9594, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:02:27Z", "update_user": null, "update_date": null, "bcgs_number": "092B032242"}}, {"model": "wells.bcgs_numbers", "pk": 9595, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:24:15Z", "update_user": null, "update_date": null, "bcgs_number": "093K009332"}}, {"model": "wells.bcgs_numbers", "pk": 9596, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:24:27Z", "update_user": null, "update_date": null, "bcgs_number": "093P073143"}}, {"model": "wells.bcgs_numbers", "pk": 9597, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:24:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P054411"}}, {"model": "wells.bcgs_numbers", "pk": 9598, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:24:50Z", "update_user": null, "update_date": null, "bcgs_number": "093O035132"}}, {"model": "wells.bcgs_numbers", "pk": 9599, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:25:05Z", "update_user": null, "update_date": null, "bcgs_number": "093P082444"}}, {"model": "wells.bcgs_numbers", "pk": 9600, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:25:20Z", "update_user": null, "update_date": null, "bcgs_number": "093K018221"}}, {"model": "wells.bcgs_numbers", "pk": 9601, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:25:52Z", "update_user": null, "update_date": null, "bcgs_number": "093K067214"}}, {"model": "wells.bcgs_numbers", "pk": 9602, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:26:06Z", "update_user": null, "update_date": null, "bcgs_number": "093K039413"}}, {"model": "wells.bcgs_numbers", "pk": 9603, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:26:15Z", "update_user": null, "update_date": null, "bcgs_number": "093K049211"}}, {"model": "wells.bcgs_numbers", "pk": 9604, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:26:26Z", "update_user": null, "update_date": null, "bcgs_number": "093K010442"}}, {"model": "wells.bcgs_numbers", "pk": 9605, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:26:40Z", "update_user": null, "update_date": null, "bcgs_number": "082J034233"}}, {"model": "wells.bcgs_numbers", "pk": 9606, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:27:00Z", "update_user": null, "update_date": null, "bcgs_number": "082L004423"}}, {"model": "wells.bcgs_numbers", "pk": 9607, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:27:12Z", "update_user": null, "update_date": null, "bcgs_number": "092H058421"}}, {"model": "wells.bcgs_numbers", "pk": 9608, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:27:27Z", "update_user": null, "update_date": null, "bcgs_number": "104G095123"}}, {"model": "wells.bcgs_numbers", "pk": 9609, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:27:39Z", "update_user": null, "update_date": null, "bcgs_number": "094G027233"}}, {"model": "wells.bcgs_numbers", "pk": 9610, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-11T16:29:06Z", "update_user": null, "update_date": null, "bcgs_number": "082G004423"}}, {"model": "wells.bcgs_numbers", "pk": 9611, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-14T16:09:09Z", "update_user": null, "update_date": null, "bcgs_number": "083D014211"}}, {"model": "wells.bcgs_numbers", "pk": 9612, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-14T16:16:21Z", "update_user": null, "update_date": null, "bcgs_number": "092B032323"}}, {"model": "wells.bcgs_numbers", "pk": 9613, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-14T22:36:49Z", "update_user": null, "update_date": null, "bcgs_number": "093K065212"}}, {"model": "wells.bcgs_numbers", "pk": 9614, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-15T22:26:02Z", "update_user": null, "update_date": null, "bcgs_number": "093D040342"}}, {"model": "wells.bcgs_numbers", "pk": 9615, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-16T16:21:15Z", "update_user": null, "update_date": null, "bcgs_number": "092K014142"}}, {"model": "wells.bcgs_numbers", "pk": 9616, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-16T16:24:06Z", "update_user": null, "update_date": null, "bcgs_number": "092K024144"}}, {"model": "wells.bcgs_numbers", "pk": 9617, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-16T23:05:54Z", "update_user": null, "update_date": null, "bcgs_number": "092K015314"}}, {"model": "wells.bcgs_numbers", "pk": 9618, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-17T17:21:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B085112"}}, {"model": "wells.bcgs_numbers", "pk": 9619, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-17T18:44:47Z", "update_user": null, "update_date": null, "bcgs_number": "092E080423"}}, {"model": "wells.bcgs_numbers", "pk": 9620, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-22T16:15:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J006332"}}, {"model": "wells.bcgs_numbers", "pk": 9621, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-22T19:04:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B071344"}}, {"model": "wells.bcgs_numbers", "pk": 9622, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-23T21:27:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G043411"}}, {"model": "wells.bcgs_numbers", "pk": 9623, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T15:51:30Z", "update_user": null, "update_date": null, "bcgs_number": "093B039414"}}, {"model": "wells.bcgs_numbers", "pk": 9624, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T16:28:11Z", "update_user": null, "update_date": null, "bcgs_number": "082G061341"}}, {"model": "wells.bcgs_numbers", "pk": 9625, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T16:48:55Z", "update_user": null, "update_date": null, "bcgs_number": "082F042223"}}, {"model": "wells.bcgs_numbers", "pk": 9626, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T17:03:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F067333"}}, {"model": "wells.bcgs_numbers", "pk": 9627, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T17:05:14Z", "update_user": null, "update_date": null, "bcgs_number": "082F019323"}}, {"model": "wells.bcgs_numbers", "pk": 9628, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T20:17:16Z", "update_user": null, "update_date": null, "bcgs_number": "092G044222"}}, {"model": "wells.bcgs_numbers", "pk": 9629, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-24T20:48:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G064244"}}, {"model": "wells.bcgs_numbers", "pk": 9630, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-25T22:40:07Z", "update_user": null, "update_date": null, "bcgs_number": "082G024434"}}, {"model": "wells.bcgs_numbers", "pk": 9631, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-28T15:57:06Z", "update_user": null, "update_date": null, "bcgs_number": "092H032422"}}, {"model": "wells.bcgs_numbers", "pk": 9632, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-28T16:06:25Z", "update_user": null, "update_date": null, "bcgs_number": "082G025112"}}, {"model": "wells.bcgs_numbers", "pk": 9633, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-28T16:54:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H053224"}}, {"model": "wells.bcgs_numbers", "pk": 9634, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-28T16:57:39Z", "update_user": "PROXY_WELLS", "update_date": "2013-04-24T15:44:41Z", "bcgs_number": "093A063123"}}, {"model": "wells.bcgs_numbers", "pk": 9635, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-28T19:23:41Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T21:16:33Z", "bcgs_number": "094M050142"}}, {"model": "wells.bcgs_numbers", "pk": 9636, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-28T21:54:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B071444"}}, {"model": "wells.bcgs_numbers", "pk": 9637, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-29T17:46:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G011131"}}, {"model": "wells.bcgs_numbers", "pk": 9638, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-29T19:53:05Z", "update_user": null, "update_date": null, "bcgs_number": "092H021213"}}, {"model": "wells.bcgs_numbers", "pk": 9639, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-29T20:06:24Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T18:10:23Z", "bcgs_number": "082G014243"}}, {"model": "wells.bcgs_numbers", "pk": 9640, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-29T20:08:19Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T18:10:16Z", "bcgs_number": "082G014241"}}, {"model": "wells.bcgs_numbers", "pk": 9641, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-29T20:21:14Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T18:10:42Z", "bcgs_number": "082G014211"}}, {"model": "wells.bcgs_numbers", "pk": 9642, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T15:05:45Z", "update_user": null, "update_date": null, "bcgs_number": "092G011241"}}, {"model": "wells.bcgs_numbers", "pk": 9643, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T15:29:41Z", "update_user": null, "update_date": null, "bcgs_number": "093B059223"}}, {"model": "wells.bcgs_numbers", "pk": 9644, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T15:59:27Z", "update_user": null, "update_date": null, "bcgs_number": "093A012334"}}, {"model": "wells.bcgs_numbers", "pk": 9645, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T16:05:24Z", "update_user": null, "update_date": null, "bcgs_number": "093A011114"}}, {"model": "wells.bcgs_numbers", "pk": 9646, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T18:34:30Z", "update_user": null, "update_date": null, "bcgs_number": "093O005421"}}, {"model": "wells.bcgs_numbers", "pk": 9647, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T18:57:18Z", "update_user": null, "update_date": null, "bcgs_number": "093J005134"}}, {"model": "wells.bcgs_numbers", "pk": 9648, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T20:44:49Z", "update_user": null, "update_date": null, "bcgs_number": "093J084114"}}, {"model": "wells.bcgs_numbers", "pk": 9649, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T21:59:05Z", "update_user": null, "update_date": null, "bcgs_number": "093J084412"}}, {"model": "wells.bcgs_numbers", "pk": 9651, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-04-30T22:32:50Z", "update_user": null, "update_date": null, "bcgs_number": "092P003331"}}, {"model": "wells.bcgs_numbers", "pk": 9652, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-01T17:04:10Z", "update_user": null, "update_date": null, "bcgs_number": "083D088134"}}, {"model": "wells.bcgs_numbers", "pk": 9653, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-01T22:18:23Z", "update_user": null, "update_date": null, "bcgs_number": "092P047334"}}, {"model": "wells.bcgs_numbers", "pk": 9654, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-01T22:28:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P066214"}}, {"model": "wells.bcgs_numbers", "pk": 9655, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-01T22:31:55Z", "update_user": null, "update_date": null, "bcgs_number": "093B020132"}}, {"model": "wells.bcgs_numbers", "pk": 9656, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-01T22:37:44Z", "update_user": null, "update_date": null, "bcgs_number": "093A022123"}}, {"model": "wells.bcgs_numbers", "pk": 9657, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-02T16:43:16Z", "update_user": null, "update_date": null, "bcgs_number": "082F034423"}}, {"model": "wells.bcgs_numbers", "pk": 9658, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-02T16:48:00Z", "update_user": null, "update_date": null, "bcgs_number": "082F063123"}}, {"model": "wells.bcgs_numbers", "pk": 9659, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-02T17:17:30Z", "update_user": null, "update_date": null, "bcgs_number": "082F096112"}}, {"model": "wells.bcgs_numbers", "pk": 9660, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-02T17:37:38Z", "update_user": null, "update_date": null, "bcgs_number": "082F022412"}}, {"model": "wells.bcgs_numbers", "pk": 9661, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-02T18:37:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F024444"}}, {"model": "wells.bcgs_numbers", "pk": 9662, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-02T19:06:54Z", "update_user": null, "update_date": null, "bcgs_number": "082F024212"}}, {"model": "wells.bcgs_numbers", "pk": 9663, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-05T16:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "092O090132"}}, {"model": "wells.bcgs_numbers", "pk": 9664, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-05T16:40:02Z", "update_user": null, "update_date": null, "bcgs_number": "093B059232"}}, {"model": "wells.bcgs_numbers", "pk": 9665, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-05T18:56:22Z", "update_user": null, "update_date": null, "bcgs_number": "093D037314"}}, {"model": "wells.bcgs_numbers", "pk": 9666, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-05T20:37:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A017414"}}, {"model": "wells.bcgs_numbers", "pk": 9667, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-05T22:28:52Z", "update_user": null, "update_date": null, "bcgs_number": "093B088344"}}, {"model": "wells.bcgs_numbers", "pk": 9668, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T15:57:11Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T18:12:27Z", "bcgs_number": "082G034231"}}, {"model": "wells.bcgs_numbers", "pk": 9669, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T17:51:57Z", "update_user": null, "update_date": null, "bcgs_number": "082G053233"}}, {"model": "wells.bcgs_numbers", "pk": 9670, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T18:18:54Z", "update_user": null, "update_date": null, "bcgs_number": "082J013234"}}, {"model": "wells.bcgs_numbers", "pk": 9671, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T18:30:21Z", "update_user": null, "update_date": null, "bcgs_number": "082J013123"}}, {"model": "wells.bcgs_numbers", "pk": 9672, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T19:09:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I089432"}}, {"model": "wells.bcgs_numbers", "pk": 9673, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T20:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "092I071333"}}, {"model": "wells.bcgs_numbers", "pk": 9674, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T20:44:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F001123"}}, {"model": "wells.bcgs_numbers", "pk": 9675, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T20:57:55Z", "update_user": null, "update_date": null, "bcgs_number": "082E017242"}}, {"model": "wells.bcgs_numbers", "pk": 9676, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T21:53:34Z", "update_user": null, "update_date": null, "bcgs_number": "093P094232"}}, {"model": "wells.bcgs_numbers", "pk": 9677, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-06T22:18:03Z", "update_user": null, "update_date": null, "bcgs_number": "093G091222"}}, {"model": "wells.bcgs_numbers", "pk": 9678, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-07T18:51:32Z", "update_user": null, "update_date": null, "bcgs_number": "093B048443"}}, {"model": "wells.bcgs_numbers", "pk": 9679, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-07T20:22:51Z", "update_user": null, "update_date": null, "bcgs_number": "093A073422"}}, {"model": "wells.bcgs_numbers", "pk": 9680, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-07T21:04:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I042231"}}, {"model": "wells.bcgs_numbers", "pk": 9681, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-07T21:13:45Z", "update_user": null, "update_date": null, "bcgs_number": "082G024421"}}, {"model": "wells.bcgs_numbers", "pk": 9682, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-07T22:05:42Z", "update_user": null, "update_date": null, "bcgs_number": "082N036111"}}, {"model": "wells.bcgs_numbers", "pk": 9683, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-07T23:40:11Z", "update_user": null, "update_date": null, "bcgs_number": "082G067233"}}, {"model": "wells.bcgs_numbers", "pk": 9684, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-08T19:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "093K085342"}}, {"model": "wells.bcgs_numbers", "pk": 9686, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T15:30:40Z", "update_user": null, "update_date": null, "bcgs_number": "093B059214"}}, {"model": "wells.bcgs_numbers", "pk": 9687, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T15:44:05Z", "update_user": null, "update_date": null, "bcgs_number": "093A052423"}}, {"model": "wells.bcgs_numbers", "pk": 9688, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T16:06:45Z", "update_user": null, "update_date": null, "bcgs_number": "093B058432"}}, {"model": "wells.bcgs_numbers", "pk": 9689, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T16:14:39Z", "update_user": null, "update_date": null, "bcgs_number": "093B020341"}}, {"model": "wells.bcgs_numbers", "pk": 9690, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T19:01:58Z", "update_user": null, "update_date": null, "bcgs_number": "082K080313"}}, {"model": "wells.bcgs_numbers", "pk": 9691, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T19:17:37Z", "update_user": null, "update_date": null, "bcgs_number": "082N026444"}}, {"model": "wells.bcgs_numbers", "pk": 9692, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T19:34:22Z", "update_user": null, "update_date": null, "bcgs_number": "082K060214"}}, {"model": "wells.bcgs_numbers", "pk": 9693, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T19:44:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F084331"}}, {"model": "wells.bcgs_numbers", "pk": 9694, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T19:50:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F066123"}}, {"model": "wells.bcgs_numbers", "pk": 9695, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T20:39:56Z", "update_user": null, "update_date": null, "bcgs_number": "082G056311"}}, {"model": "wells.bcgs_numbers", "pk": 9696, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T20:50:13Z", "update_user": null, "update_date": null, "bcgs_number": "092O100312"}}, {"model": "wells.bcgs_numbers", "pk": 9697, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T20:59:06Z", "update_user": null, "update_date": null, "bcgs_number": "082F083424"}}, {"model": "wells.bcgs_numbers", "pk": 9698, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T21:07:58Z", "update_user": null, "update_date": null, "bcgs_number": "082F032412"}}, {"model": "wells.bcgs_numbers", "pk": 9699, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T21:25:05Z", "update_user": null, "update_date": null, "bcgs_number": "082N017311"}}, {"model": "wells.bcgs_numbers", "pk": 9700, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092G054114"}}, {"model": "wells.bcgs_numbers", "pk": 9701, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T22:55:38Z", "update_user": null, "update_date": null, "bcgs_number": "092B044122"}}, {"model": "wells.bcgs_numbers", "pk": 9702, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T23:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I080322"}}, {"model": "wells.bcgs_numbers", "pk": 9703, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-12T23:23:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I080132"}}, {"model": "wells.bcgs_numbers", "pk": 9704, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T16:00:12Z", "update_user": null, "update_date": null, "bcgs_number": "092I082231"}}, {"model": "wells.bcgs_numbers", "pk": 9705, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T18:24:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L097342"}}, {"model": "wells.bcgs_numbers", "pk": 9706, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T19:00:26Z", "update_user": null, "update_date": null, "bcgs_number": "092P088342"}}, {"model": "wells.bcgs_numbers", "pk": 9707, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T21:45:11Z", "update_user": null, "update_date": null, "bcgs_number": "092B044213"}}, {"model": "wells.bcgs_numbers", "pk": 9708, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T22:32:39Z", "update_user": null, "update_date": null, "bcgs_number": "092B044321"}}, {"model": "wells.bcgs_numbers", "pk": 9709, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T22:48:08Z", "update_user": null, "update_date": null, "bcgs_number": "092L066142"}}, {"model": "wells.bcgs_numbers", "pk": 9710, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T22:52:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F028343"}}, {"model": "wells.bcgs_numbers", "pk": 9711, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-13T23:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G011421"}}, {"model": "wells.bcgs_numbers", "pk": 9712, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-14T21:23:54Z", "update_user": null, "update_date": null, "bcgs_number": "092P047144"}}, {"model": "wells.bcgs_numbers", "pk": 9713, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-14T21:49:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P083123"}}, {"model": "wells.bcgs_numbers", "pk": 9714, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-14T21:58:15Z", "update_user": null, "update_date": null, "bcgs_number": "092P066244"}}, {"model": "wells.bcgs_numbers", "pk": 9715, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-14T22:30:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P054322"}}, {"model": "wells.bcgs_numbers", "pk": 9716, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-14T22:38:51Z", "update_user": null, "update_date": null, "bcgs_number": "092P056411"}}, {"model": "wells.bcgs_numbers", "pk": 9717, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T00:35:34Z", "update_user": null, "update_date": null, "bcgs_number": "092P032113"}}, {"model": "wells.bcgs_numbers", "pk": 9718, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:05:55Z", "update_user": null, "update_date": null, "bcgs_number": "092B031341"}}, {"model": "wells.bcgs_numbers", "pk": 9719, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:18:06Z", "update_user": null, "update_date": null, "bcgs_number": "093B095244"}}, {"model": "wells.bcgs_numbers", "pk": 9720, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:25:18Z", "update_user": null, "update_date": null, "bcgs_number": "093J007212"}}, {"model": "wells.bcgs_numbers", "pk": 9721, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:28:32Z", "update_user": null, "update_date": null, "bcgs_number": "093B098333"}}, {"model": "wells.bcgs_numbers", "pk": 9722, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:30:18Z", "update_user": null, "update_date": null, "bcgs_number": "093L027422"}}, {"model": "wells.bcgs_numbers", "pk": 9723, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:33:15Z", "update_user": null, "update_date": null, "bcgs_number": "093J006114"}}, {"model": "wells.bcgs_numbers", "pk": 9724, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:35:32Z", "update_user": null, "update_date": null, "bcgs_number": "093H091121"}}, {"model": "wells.bcgs_numbers", "pk": 9725, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T19:56:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H058244"}}, {"model": "wells.bcgs_numbers", "pk": 9726, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T20:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "092C093143"}}, {"model": "wells.bcgs_numbers", "pk": 9727, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T20:25:00Z", "update_user": null, "update_date": null, "bcgs_number": "093M012312"}}, {"model": "wells.bcgs_numbers", "pk": 9728, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T20:47:58Z", "update_user": null, "update_date": null, "bcgs_number": "093L018334"}}, {"model": "wells.bcgs_numbers", "pk": 9729, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T20:51:10Z", "update_user": null, "update_date": null, "bcgs_number": "093G095214"}}, {"model": "wells.bcgs_numbers", "pk": 9730, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T20:53:14Z", "update_user": null, "update_date": null, "bcgs_number": "093H030242"}}, {"model": "wells.bcgs_numbers", "pk": 9731, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T20:57:26Z", "update_user": null, "update_date": null, "bcgs_number": "092B032411"}}, {"model": "wells.bcgs_numbers", "pk": 9732, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T21:25:10Z", "update_user": null, "update_date": null, "bcgs_number": "092L056311"}}, {"model": "wells.bcgs_numbers", "pk": 9733, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T21:59:18Z", "update_user": null, "update_date": null, "bcgs_number": "082J041322"}}, {"model": "wells.bcgs_numbers", "pk": 9734, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082K050414"}}, {"model": "wells.bcgs_numbers", "pk": 9736, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-15T22:16:52Z", "update_user": null, "update_date": null, "bcgs_number": "093K017211"}}, {"model": "wells.bcgs_numbers", "pk": 9737, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T18:25:09Z", "update_user": null, "update_date": null, "bcgs_number": "092G038413"}}, {"model": "wells.bcgs_numbers", "pk": 9738, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T18:59:16Z", "update_user": null, "update_date": null, "bcgs_number": "082G053333"}}, {"model": "wells.bcgs_numbers", "pk": 9739, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T19:32:22Z", "update_user": null, "update_date": null, "bcgs_number": "103I067212"}}, {"model": "wells.bcgs_numbers", "pk": 9740, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T19:52:34Z", "update_user": null, "update_date": null, "bcgs_number": "092P022413"}}, {"model": "wells.bcgs_numbers", "pk": 9741, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T19:54:15Z", "update_user": null, "update_date": null, "bcgs_number": "093G098433"}}, {"model": "wells.bcgs_numbers", "pk": 9742, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T19:54:34Z", "update_user": null, "update_date": null, "bcgs_number": "093G057412"}}, {"model": "wells.bcgs_numbers", "pk": 9743, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T20:29:58Z", "update_user": null, "update_date": null, "bcgs_number": "092C090214"}}, {"model": "wells.bcgs_numbers", "pk": 9744, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T20:56:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G082412"}}, {"model": "wells.bcgs_numbers", "pk": 9745, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T21:26:59Z", "update_user": null, "update_date": null, "bcgs_number": "093G086312"}}, {"model": "wells.bcgs_numbers", "pk": 9746, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T21:57:16Z", "update_user": null, "update_date": null, "bcgs_number": "093G096234"}}, {"model": "wells.bcgs_numbers", "pk": 9747, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T22:09:24Z", "update_user": null, "update_date": null, "bcgs_number": "093J005341"}}, {"model": "wells.bcgs_numbers", "pk": 9748, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-20T22:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "093J015314"}}, {"model": "wells.bcgs_numbers", "pk": 9749, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T17:46:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G082423"}}, {"model": "wells.bcgs_numbers", "pk": 9750, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T17:51:41Z", "update_user": null, "update_date": null, "bcgs_number": "093G076223"}}, {"model": "wells.bcgs_numbers", "pk": 9751, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T18:20:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G098134"}}, {"model": "wells.bcgs_numbers", "pk": 9752, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T18:29:59Z", "update_user": null, "update_date": null, "bcgs_number": "093G096231"}}, {"model": "wells.bcgs_numbers", "pk": 9753, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T18:36:43Z", "update_user": null, "update_date": null, "bcgs_number": "093G076413"}}, {"model": "wells.bcgs_numbers", "pk": 9754, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T18:43:04Z", "update_user": null, "update_date": null, "bcgs_number": "092I039132"}}, {"model": "wells.bcgs_numbers", "pk": 9755, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T19:15:51Z", "update_user": null, "update_date": null, "bcgs_number": "082M052332"}}, {"model": "wells.bcgs_numbers", "pk": 9756, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T19:32:12Z", "update_user": null, "update_date": null, "bcgs_number": "092I096343"}}, {"model": "wells.bcgs_numbers", "pk": 9757, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T19:44:23Z", "update_user": null, "update_date": null, "bcgs_number": "092P085232"}}, {"model": "wells.bcgs_numbers", "pk": 9758, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T21:09:22Z", "update_user": null, "update_date": null, "bcgs_number": "082L023234"}}, {"model": "wells.bcgs_numbers", "pk": 9759, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T21:37:41Z", "update_user": null, "update_date": null, "bcgs_number": "092F047321"}}, {"model": "wells.bcgs_numbers", "pk": 9760, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-21T22:11:06Z", "update_user": null, "update_date": null, "bcgs_number": "092I061424"}}, {"model": "wells.bcgs_numbers", "pk": 9761, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T16:51:31Z", "update_user": null, "update_date": null, "bcgs_number": "093G057414"}}, {"model": "wells.bcgs_numbers", "pk": 9762, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T17:47:15Z", "update_user": null, "update_date": null, "bcgs_number": "093C075424"}}, {"model": "wells.bcgs_numbers", "pk": 9763, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T19:04:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P029422"}}, {"model": "wells.bcgs_numbers", "pk": 9764, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T19:35:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L090411"}}, {"model": "wells.bcgs_numbers", "pk": 9765, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T19:38:27Z", "update_user": null, "update_date": null, "bcgs_number": "082G014432"}}, {"model": "wells.bcgs_numbers", "pk": 9766, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T20:18:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I090244"}}, {"model": "wells.bcgs_numbers", "pk": 9767, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T21:58:44Z", "update_user": null, "update_date": null, "bcgs_number": "092B031424"}}, {"model": "wells.bcgs_numbers", "pk": 9768, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T22:04:16Z", "update_user": null, "update_date": null, "bcgs_number": "082F053224"}}, {"model": "wells.bcgs_numbers", "pk": 9769, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T22:04:23Z", "update_user": null, "update_date": null, "bcgs_number": "082F044344"}}, {"model": "wells.bcgs_numbers", "pk": 9770, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T22:04:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F052241"}}, {"model": "wells.bcgs_numbers", "pk": 9771, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T22:04:40Z", "update_user": null, "update_date": null, "bcgs_number": "082P074441"}}, {"model": "wells.bcgs_numbers", "pk": 9772, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T23:15:30Z", "update_user": null, "update_date": null, "bcgs_number": "092F046443"}}, {"model": "wells.bcgs_numbers", "pk": 9773, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-22T23:26:06Z", "update_user": null, "update_date": null, "bcgs_number": "092F049343"}}, {"model": "wells.bcgs_numbers", "pk": 9774, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T17:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "092O090311"}}, {"model": "wells.bcgs_numbers", "pk": 9775, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T17:58:52Z", "update_user": null, "update_date": null, "bcgs_number": "093B039331"}}, {"model": "wells.bcgs_numbers", "pk": 9776, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T18:03:09Z", "update_user": null, "update_date": null, "bcgs_number": "093A001231"}}, {"model": "wells.bcgs_numbers", "pk": 9777, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:10:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F049422"}}, {"model": "wells.bcgs_numbers", "pk": 9778, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "092F059123"}}, {"model": "wells.bcgs_numbers", "pk": 9779, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "092F065341"}}, {"model": "wells.bcgs_numbers", "pk": 9780, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:14:29Z", "update_user": null, "update_date": null, "bcgs_number": "092F065342"}}, {"model": "wells.bcgs_numbers", "pk": 9781, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:15:04Z", "update_user": null, "update_date": null, "bcgs_number": "092F066142"}}, {"model": "wells.bcgs_numbers", "pk": 9782, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:19:38Z", "update_user": null, "update_date": null, "bcgs_number": "092F084434"}}, {"model": "wells.bcgs_numbers", "pk": 9783, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T19:33:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P009442"}}, {"model": "wells.bcgs_numbers", "pk": 9784, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T21:48:51Z", "update_user": null, "update_date": null, "bcgs_number": "082E008433"}}, {"model": "wells.bcgs_numbers", "pk": 9785, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T22:29:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E054234"}}, {"model": "wells.bcgs_numbers", "pk": 9786, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T22:47:22Z", "update_user": null, "update_date": null, "bcgs_number": "082F003233"}}, {"model": "wells.bcgs_numbers", "pk": 9787, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-23T22:49:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F022432"}}, {"model": "wells.bcgs_numbers", "pk": 9788, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T18:28:57Z", "update_user": null, "update_date": null, "bcgs_number": "092K031323"}}, {"model": "wells.bcgs_numbers", "pk": 9789, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T18:45:25Z", "update_user": null, "update_date": null, "bcgs_number": "092B053133"}}, {"model": "wells.bcgs_numbers", "pk": 9790, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T19:06:10Z", "update_user": null, "update_date": null, "bcgs_number": "082F043412"}}, {"model": "wells.bcgs_numbers", "pk": 9791, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T21:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B092421"}}, {"model": "wells.bcgs_numbers", "pk": 9792, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T21:55:07Z", "update_user": null, "update_date": null, "bcgs_number": "093P063432"}}, {"model": "wells.bcgs_numbers", "pk": 9793, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T22:01:48Z", "update_user": null, "update_date": null, "bcgs_number": "092K060414"}}, {"model": "wells.bcgs_numbers", "pk": 9794, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T22:27:51Z", "update_user": null, "update_date": null, "bcgs_number": "092B031333"}}, {"model": "wells.bcgs_numbers", "pk": 9795, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T22:34:20Z", "update_user": null, "update_date": null, "bcgs_number": "092B074442"}}, {"model": "wells.bcgs_numbers", "pk": 9796, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T22:47:11Z", "update_user": null, "update_date": null, "bcgs_number": "093B093132"}}, {"model": "wells.bcgs_numbers", "pk": 9797, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T23:09:56Z", "update_user": null, "update_date": null, "bcgs_number": "092F020422"}}, {"model": "wells.bcgs_numbers", "pk": 9798, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T23:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F058421"}}, {"model": "wells.bcgs_numbers", "pk": 9799, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-26T23:57:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G011321"}}, {"model": "wells.bcgs_numbers", "pk": 9800, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-27T22:34:20Z", "update_user": null, "update_date": null, "bcgs_number": "092H033411"}}, {"model": "wells.bcgs_numbers", "pk": 9801, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-27T22:36:15Z", "update_user": null, "update_date": null, "bcgs_number": "092P092311"}}, {"model": "wells.bcgs_numbers", "pk": 9802, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-27T22:39:14Z", "update_user": null, "update_date": null, "bcgs_number": "092O091121"}}, {"model": "wells.bcgs_numbers", "pk": 9803, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:19:10Z", "update_user": null, "update_date": null, "bcgs_number": "092N087122"}}, {"model": "wells.bcgs_numbers", "pk": 9804, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:19:43Z", "update_user": null, "update_date": null, "bcgs_number": "092O060331"}}, {"model": "wells.bcgs_numbers", "pk": 9805, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:36:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P012441"}}, {"model": "wells.bcgs_numbers", "pk": 9806, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:36:29Z", "update_user": null, "update_date": null, "bcgs_number": "092P012442"}}, {"model": "wells.bcgs_numbers", "pk": 9807, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:40:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P045342"}}, {"model": "wells.bcgs_numbers", "pk": 9808, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:40:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P045431"}}, {"model": "wells.bcgs_numbers", "pk": 9809, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T16:41:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P045433"}}, {"model": "wells.bcgs_numbers", "pk": 9810, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:48:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P047143"}}, {"model": "wells.bcgs_numbers", "pk": 9811, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:49:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P047411"}}, {"model": "wells.bcgs_numbers", "pk": 9812, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:51:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P054223"}}, {"model": "wells.bcgs_numbers", "pk": 9814, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:52:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P055114"}}, {"model": "wells.bcgs_numbers", "pk": 9815, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:53:23Z", "update_user": null, "update_date": null, "bcgs_number": "092P055122"}}, {"model": "wells.bcgs_numbers", "pk": 9816, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:53:33Z", "update_user": null, "update_date": null, "bcgs_number": "092P055144"}}, {"model": "wells.bcgs_numbers", "pk": 9817, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T17:55:47Z", "update_user": null, "update_date": null, "bcgs_number": "092P056212"}}, {"model": "wells.bcgs_numbers", "pk": 9819, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T18:23:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F056422"}}, {"model": "wells.bcgs_numbers", "pk": 9820, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T19:02:22Z", "update_user": null, "update_date": null, "bcgs_number": "092K021434"}}, {"model": "wells.bcgs_numbers", "pk": 9821, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T19:05:55Z", "update_user": null, "update_date": null, "bcgs_number": "082F011224"}}, {"model": "wells.bcgs_numbers", "pk": 9822, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T19:09:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F063144"}}, {"model": "wells.bcgs_numbers", "pk": 9823, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T19:52:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P057211"}}, {"model": "wells.bcgs_numbers", "pk": 9824, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T19:52:30Z", "update_user": null, "update_date": null, "bcgs_number": "092P058133"}}, {"model": "wells.bcgs_numbers", "pk": 9826, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T20:46:44Z", "update_user": null, "update_date": null, "bcgs_number": "092F037142"}}, {"model": "wells.bcgs_numbers", "pk": 9827, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T20:53:40Z", "update_user": null, "update_date": null, "bcgs_number": "082F076434"}}, {"model": "wells.bcgs_numbers", "pk": 9828, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T21:21:55Z", "update_user": null, "update_date": null, "bcgs_number": "092P075221"}}, {"model": "wells.bcgs_numbers", "pk": 9829, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T21:23:18Z", "update_user": null, "update_date": null, "bcgs_number": "092P091112"}}, {"model": "wells.bcgs_numbers", "pk": 9830, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T21:24:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P092221"}}, {"model": "wells.bcgs_numbers", "pk": 9831, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-28T22:31:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B078434"}}, {"model": "wells.bcgs_numbers", "pk": 9832, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T16:44:37Z", "update_user": null, "update_date": null, "bcgs_number": "082N046311"}}, {"model": "wells.bcgs_numbers", "pk": 9833, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T16:47:00Z", "update_user": null, "update_date": null, "bcgs_number": "082N046134"}}, {"model": "wells.bcgs_numbers", "pk": 9834, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T16:49:47Z", "update_user": null, "update_date": null, "bcgs_number": "082N026233"}}, {"model": "wells.bcgs_numbers", "pk": 9835, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T17:16:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010434"}}, {"model": "wells.bcgs_numbers", "pk": 9836, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T17:38:20Z", "update_user": null, "update_date": null, "bcgs_number": "082G072333"}}, {"model": "wells.bcgs_numbers", "pk": 9837, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T18:17:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F076212"}}, {"model": "wells.bcgs_numbers", "pk": 9838, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T19:07:17Z", "update_user": null, "update_date": null, "bcgs_number": "082F067133"}}, {"model": "wells.bcgs_numbers", "pk": 9839, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T19:10:28Z", "update_user": null, "update_date": null, "bcgs_number": "082J021234"}}, {"model": "wells.bcgs_numbers", "pk": 9840, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T19:15:58Z", "update_user": null, "update_date": null, "bcgs_number": "082F019421"}}, {"model": "wells.bcgs_numbers", "pk": 9841, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T19:36:43Z", "update_user": null, "update_date": null, "bcgs_number": "093G002222"}}, {"model": "wells.bcgs_numbers", "pk": 9842, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T20:24:04Z", "update_user": null, "update_date": null, "bcgs_number": "082J051133"}}, {"model": "wells.bcgs_numbers", "pk": 9843, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T20:30:43Z", "update_user": null, "update_date": null, "bcgs_number": "082F076214"}}, {"model": "wells.bcgs_numbers", "pk": 9844, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T20:34:49Z", "update_user": null, "update_date": null, "bcgs_number": "082N045243"}}, {"model": "wells.bcgs_numbers", "pk": 9845, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T21:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A085334"}}, {"model": "wells.bcgs_numbers", "pk": 9846, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T21:58:56Z", "update_user": null, "update_date": null, "bcgs_number": "082K070413"}}, {"model": "wells.bcgs_numbers", "pk": 9847, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T22:01:42Z", "update_user": null, "update_date": null, "bcgs_number": "082J011244"}}, {"model": "wells.bcgs_numbers", "pk": 9848, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T22:08:00Z", "update_user": null, "update_date": null, "bcgs_number": "082J041332"}}, {"model": "wells.bcgs_numbers", "pk": 9849, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T22:52:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A046323"}}, {"model": "wells.bcgs_numbers", "pk": 9850, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T23:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092P030313"}}, {"model": "wells.bcgs_numbers", "pk": 9851, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-05-29T23:24:20Z", "update_user": null, "update_date": null, "bcgs_number": "092I089324"}}, {"model": "wells.bcgs_numbers", "pk": 9852, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-02T16:23:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G092234"}}, {"model": "wells.bcgs_numbers", "pk": 9853, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-02T17:34:35Z", "update_user": null, "update_date": null, "bcgs_number": "092P057223"}}, {"model": "wells.bcgs_numbers", "pk": 9854, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-02T17:50:58Z", "update_user": null, "update_date": null, "bcgs_number": "082G045344"}}, {"model": "wells.bcgs_numbers", "pk": 9855, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-02T18:22:03Z", "update_user": null, "update_date": null, "bcgs_number": "082F069224"}}, {"model": "wells.bcgs_numbers", "pk": 9856, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-02T18:53:36Z", "update_user": null, "update_date": null, "bcgs_number": "082F008231"}}, {"model": "wells.bcgs_numbers", "pk": 9857, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-04T16:55:25Z", "update_user": null, "update_date": null, "bcgs_number": "082K070431"}}, {"model": "wells.bcgs_numbers", "pk": 9858, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-04T16:56:52Z", "update_user": null, "update_date": null, "bcgs_number": "082K070433"}}, {"model": "wells.bcgs_numbers", "pk": 9859, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-04T19:28:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P056321"}}, {"model": "wells.bcgs_numbers", "pk": 9860, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-04T19:40:01Z", "update_user": null, "update_date": null, "bcgs_number": "092P056224"}}, {"model": "wells.bcgs_numbers", "pk": 9861, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-04T21:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "092B043412"}}, {"model": "wells.bcgs_numbers", "pk": 9862, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-05T15:53:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A046313"}}, {"model": "wells.bcgs_numbers", "pk": 9863, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-05T23:10:52Z", "update_user": null, "update_date": null, "bcgs_number": "092P056344"}}, {"model": "wells.bcgs_numbers", "pk": 9864, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T18:40:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F010432"}}, {"model": "wells.bcgs_numbers", "pk": 9865, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T22:06:51Z", "update_user": null, "update_date": null, "bcgs_number": "092P073242"}}, {"model": "wells.bcgs_numbers", "pk": 9866, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T22:25:18Z", "update_user": null, "update_date": null, "bcgs_number": "092I100332"}}, {"model": "wells.bcgs_numbers", "pk": 9867, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T22:27:05Z", "update_user": null, "update_date": null, "bcgs_number": "092I049433"}}, {"model": "wells.bcgs_numbers", "pk": 9868, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T23:04:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L061133"}}, {"model": "wells.bcgs_numbers", "pk": 9869, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T23:07:04Z", "update_user": null, "update_date": null, "bcgs_number": "092H096142"}}, {"model": "wells.bcgs_numbers", "pk": 9870, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T23:18:24Z", "update_user": null, "update_date": null, "bcgs_number": "092I070212"}}, {"model": "wells.bcgs_numbers", "pk": 9871, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-10T23:20:15Z", "update_user": null, "update_date": null, "bcgs_number": "092I100311"}}, {"model": "wells.bcgs_numbers", "pk": 9872, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T17:32:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G026331"}}, {"model": "wells.bcgs_numbers", "pk": 9873, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T18:29:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G071411"}}, {"model": "wells.bcgs_numbers", "pk": 9874, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T19:14:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G071342"}}, {"model": "wells.bcgs_numbers", "pk": 9875, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:10:01Z", "update_user": null, "update_date": null, "bcgs_number": "092I060433"}}, {"model": "wells.bcgs_numbers", "pk": 9876, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:16:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I099214"}}, {"model": "wells.bcgs_numbers", "pk": 9877, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:22:16Z", "update_user": null, "update_date": null, "bcgs_number": "092J086432"}}, {"model": "wells.bcgs_numbers", "pk": 9878, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:33:13Z", "update_user": null, "update_date": null, "bcgs_number": "092P074113"}}, {"model": "wells.bcgs_numbers", "pk": 9879, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:40:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P055243"}}, {"model": "wells.bcgs_numbers", "pk": 9880, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:42:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I059144"}}, {"model": "wells.bcgs_numbers", "pk": 9881, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T21:46:38Z", "update_user": null, "update_date": null, "bcgs_number": "092J097134"}}, {"model": "wells.bcgs_numbers", "pk": 9882, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I049221"}}, {"model": "wells.bcgs_numbers", "pk": 9883, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T22:06:20Z", "update_user": null, "update_date": null, "bcgs_number": "082M051441"}}, {"model": "wells.bcgs_numbers", "pk": 9884, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-11T23:27:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G011322"}}, {"model": "wells.bcgs_numbers", "pk": 9885, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-12T17:02:57Z", "update_user": null, "update_date": null, "bcgs_number": "092L043324"}}, {"model": "wells.bcgs_numbers", "pk": 9886, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-12T22:44:09Z", "update_user": null, "update_date": null, "bcgs_number": "082M011123"}}, {"model": "wells.bcgs_numbers", "pk": 9887, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-12T23:05:39Z", "update_user": null, "update_date": null, "bcgs_number": "092J097312"}}, {"model": "wells.bcgs_numbers", "pk": 9889, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-13T21:17:01Z", "update_user": null, "update_date": null, "bcgs_number": "094G027333"}}, {"model": "wells.bcgs_numbers", "pk": 9890, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-13T21:18:23Z", "update_user": null, "update_date": null, "bcgs_number": "094A038341"}}, {"model": "wells.bcgs_numbers", "pk": 9891, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-13T21:20:47Z", "update_user": null, "update_date": null, "bcgs_number": "094B068232"}}, {"model": "wells.bcgs_numbers", "pk": 9892, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-13T21:24:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A038332"}}, {"model": "wells.bcgs_numbers", "pk": 9895, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-17T21:34:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B052244"}}, {"model": "wells.bcgs_numbers", "pk": 9896, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-17T21:51:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B062414"}}, {"model": "wells.bcgs_numbers", "pk": 9897, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T17:55:40Z", "update_user": null, "update_date": null, "bcgs_number": "082E006421"}}, {"model": "wells.bcgs_numbers", "pk": 9898, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T17:56:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E008344"}}, {"model": "wells.bcgs_numbers", "pk": 9899, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T17:57:37Z", "update_user": null, "update_date": null, "bcgs_number": "082E025124"}}, {"model": "wells.bcgs_numbers", "pk": 9900, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:01:50Z", "update_user": null, "update_date": null, "bcgs_number": "082E090411"}}, {"model": "wells.bcgs_numbers", "pk": 9901, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:36:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F010334"}}, {"model": "wells.bcgs_numbers", "pk": 9902, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:38:16Z", "update_user": null, "update_date": null, "bcgs_number": "082F044433"}}, {"model": "wells.bcgs_numbers", "pk": 9903, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:43:19Z", "update_user": null, "update_date": null, "bcgs_number": "082F084334"}}, {"model": "wells.bcgs_numbers", "pk": 9904, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:45:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L034233"}}, {"model": "wells.bcgs_numbers", "pk": 9905, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:45:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L038114"}}, {"model": "wells.bcgs_numbers", "pk": 9906, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:47:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L047124"}}, {"model": "wells.bcgs_numbers", "pk": 9907, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T18:47:29Z", "update_user": null, "update_date": null, "bcgs_number": "082L047143"}}, {"model": "wells.bcgs_numbers", "pk": 9908, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T20:10:58Z", "update_user": null, "update_date": null, "bcgs_number": "082L081133"}}, {"model": "wells.bcgs_numbers", "pk": 9909, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-18T20:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "083D004344"}}, {"model": "wells.bcgs_numbers", "pk": 9910, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-20T17:54:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B044313"}}, {"model": "wells.bcgs_numbers", "pk": 9911, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-20T18:17:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H048124"}}, {"model": "wells.bcgs_numbers", "pk": 9912, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-20T18:36:23Z", "update_user": null, "update_date": null, "bcgs_number": "092H048432"}}, {"model": "wells.bcgs_numbers", "pk": 9913, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-20T18:36:45Z", "update_user": null, "update_date": null, "bcgs_number": "092H048434"}}, {"model": "wells.bcgs_numbers", "pk": 9914, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-20T20:50:12Z", "update_user": null, "update_date": null, "bcgs_number": "082L062243"}}, {"model": "wells.bcgs_numbers", "pk": 9915, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T17:52:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G011143"}}, {"model": "wells.bcgs_numbers", "pk": 9916, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T18:02:19Z", "update_user": null, "update_date": null, "bcgs_number": "092B062411"}}, {"model": "wells.bcgs_numbers", "pk": 9917, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T18:11:53Z", "update_user": null, "update_date": null, "bcgs_number": "092C090123"}}, {"model": "wells.bcgs_numbers", "pk": 9918, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T19:10:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B044124"}}, {"model": "wells.bcgs_numbers", "pk": 9919, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T21:45:48Z", "update_user": null, "update_date": null, "bcgs_number": "082M021411"}}, {"model": "wells.bcgs_numbers", "pk": 9920, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T21:46:14Z", "update_user": null, "update_date": null, "bcgs_number": "083D084214"}}, {"model": "wells.bcgs_numbers", "pk": 9921, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T21:46:46Z", "update_user": null, "update_date": null, "bcgs_number": "083E003132"}}, {"model": "wells.bcgs_numbers", "pk": 9922, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-23T21:47:19Z", "update_user": null, "update_date": null, "bcgs_number": "083E011324"}}, {"model": "wells.bcgs_numbers", "pk": 9923, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T00:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B044314"}}, {"model": "wells.bcgs_numbers", "pk": 9924, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T00:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092B044342"}}, {"model": "wells.bcgs_numbers", "pk": 9926, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T17:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "092F059112"}}, {"model": "wells.bcgs_numbers", "pk": 9927, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T17:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "092F059114"}}, {"model": "wells.bcgs_numbers", "pk": 9928, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T17:25:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G011233"}}, {"model": "wells.bcgs_numbers", "pk": 9929, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T18:48:44Z", "update_user": null, "update_date": null, "bcgs_number": "103I086441"}}, {"model": "wells.bcgs_numbers", "pk": 9930, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T20:28:14Z", "update_user": null, "update_date": null, "bcgs_number": "082G024414"}}, {"model": "wells.bcgs_numbers", "pk": 9931, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T20:49:30Z", "update_user": null, "update_date": null, "bcgs_number": "082N026214"}}, {"model": "wells.bcgs_numbers", "pk": 9932, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T21:18:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F054113"}}, {"model": "wells.bcgs_numbers", "pk": 9933, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T21:21:31Z", "update_user": null, "update_date": null, "bcgs_number": "082N036122"}}, {"model": "wells.bcgs_numbers", "pk": 9934, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-24T21:24:14Z", "update_user": null, "update_date": null, "bcgs_number": "082N017211"}}, {"model": "wells.bcgs_numbers", "pk": 9935, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T18:10:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P097144"}}, {"model": "wells.bcgs_numbers", "pk": 9936, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T18:47:55Z", "update_user": null, "update_date": null, "bcgs_number": "082F066423"}}, {"model": "wells.bcgs_numbers", "pk": 9937, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T18:51:13Z", "update_user": null, "update_date": null, "bcgs_number": "082N016424"}}, {"model": "wells.bcgs_numbers", "pk": 9938, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T19:06:57Z", "update_user": null, "update_date": null, "bcgs_number": "082F019321"}}, {"model": "wells.bcgs_numbers", "pk": 9939, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T20:43:20Z", "update_user": null, "update_date": null, "bcgs_number": "082N045332"}}, {"model": "wells.bcgs_numbers", "pk": 9940, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T21:22:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I070334"}}, {"model": "wells.bcgs_numbers", "pk": 9941, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T21:30:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I039142"}}, {"model": "wells.bcgs_numbers", "pk": 9942, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:31:34Z", "update_user": null, "update_date": null, "bcgs_number": "082E028243"}}, {"model": "wells.bcgs_numbers", "pk": 9943, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:39:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E019242"}}, {"model": "wells.bcgs_numbers", "pk": 9944, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:46:37Z", "update_user": null, "update_date": null, "bcgs_number": "082F047121"}}, {"model": "wells.bcgs_numbers", "pk": 9945, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:52:45Z", "update_user": null, "update_date": null, "bcgs_number": "092H058121"}}, {"model": "wells.bcgs_numbers", "pk": 9946, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:53:30Z", "update_user": null, "update_date": null, "bcgs_number": "092H058243"}}, {"model": "wells.bcgs_numbers", "pk": 9947, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:53:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H058411"}}, {"model": "wells.bcgs_numbers", "pk": 9948, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:54:18Z", "update_user": null, "update_date": null, "bcgs_number": "092H059333"}}, {"model": "wells.bcgs_numbers", "pk": 9949, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:56:38Z", "update_user": null, "update_date": null, "bcgs_number": "092H069344"}}, {"model": "wells.bcgs_numbers", "pk": 9950, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T22:57:17Z", "update_user": null, "update_date": null, "bcgs_number": "092H080114"}}, {"model": "wells.bcgs_numbers", "pk": 9951, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T23:31:10Z", "update_user": null, "update_date": null, "bcgs_number": "092I069233"}}, {"model": "wells.bcgs_numbers", "pk": 9952, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T23:32:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I087421"}}, {"model": "wells.bcgs_numbers", "pk": 9953, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T23:33:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I093422"}}, {"model": "wells.bcgs_numbers", "pk": 9954, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T23:33:57Z", "update_user": null, "update_date": null, "bcgs_number": "092I100344"}}, {"model": "wells.bcgs_numbers", "pk": 9955, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T23:34:35Z", "update_user": null, "update_date": null, "bcgs_number": "092J046321"}}, {"model": "wells.bcgs_numbers", "pk": 9956, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-25T23:35:22Z", "update_user": null, "update_date": null, "bcgs_number": "092O095223"}}, {"model": "wells.bcgs_numbers", "pk": 9957, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T00:05:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P020124"}}, {"model": "wells.bcgs_numbers", "pk": 9958, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T00:06:15Z", "update_user": null, "update_date": null, "bcgs_number": "092P022213"}}, {"model": "wells.bcgs_numbers", "pk": 9959, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T00:07:27Z", "update_user": null, "update_date": null, "bcgs_number": "092P024444"}}, {"model": "wells.bcgs_numbers", "pk": 9960, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T00:12:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P030241"}}, {"model": "wells.bcgs_numbers", "pk": 9961, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T18:00:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F057313"}}, {"model": "wells.bcgs_numbers", "pk": 9962, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T19:10:13Z", "update_user": null, "update_date": null, "bcgs_number": "092I046244"}}, {"model": "wells.bcgs_numbers", "pk": 9963, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T19:12:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G081333"}}, {"model": "wells.bcgs_numbers", "pk": 9964, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T19:15:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B099114"}}, {"model": "wells.bcgs_numbers", "pk": 9965, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T19:18:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L027243"}}, {"model": "wells.bcgs_numbers", "pk": 9966, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T19:19:53Z", "update_user": null, "update_date": null, "bcgs_number": "093L027443"}}, {"model": "wells.bcgs_numbers", "pk": 9967, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:08:50Z", "update_user": null, "update_date": null, "bcgs_number": "82K003433"}}, {"model": "wells.bcgs_numbers", "pk": 9968, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:09:11Z", "update_user": null, "update_date": null, "bcgs_number": "082K003433"}}, {"model": "wells.bcgs_numbers", "pk": 9969, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:11:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G087234"}}, {"model": "wells.bcgs_numbers", "pk": 9970, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:15:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G096322"}}, {"model": "wells.bcgs_numbers", "pk": 9971, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:17:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G071322"}}, {"model": "wells.bcgs_numbers", "pk": 9972, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:28:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P087143"}}, {"model": "wells.bcgs_numbers", "pk": 9973, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:30:32Z", "update_user": null, "update_date": null, "bcgs_number": "092P090224"}}, {"model": "wells.bcgs_numbers", "pk": 9974, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:33:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G082424"}}, {"model": "wells.bcgs_numbers", "pk": 9975, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T20:42:19Z", "update_user": null, "update_date": null, "bcgs_number": "082E036414"}}, {"model": "wells.bcgs_numbers", "pk": 9976, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T21:11:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P003212"}}, {"model": "wells.bcgs_numbers", "pk": 9977, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T21:12:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058412"}}, {"model": "wells.bcgs_numbers", "pk": 9978, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T21:15:53Z", "update_user": null, "update_date": null, "bcgs_number": "093A021243"}}, {"model": "wells.bcgs_numbers", "pk": 9979, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T21:16:27Z", "update_user": null, "update_date": null, "bcgs_number": "093A023233"}}, {"model": "wells.bcgs_numbers", "pk": 9980, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T21:17:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A043241"}}, {"model": "wells.bcgs_numbers", "pk": 9981, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-26T21:48:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F088144"}}, {"model": "wells.bcgs_numbers", "pk": 9982, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "092B044344"}}, {"model": "wells.bcgs_numbers", "pk": 9983, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "082F070444"}}, {"model": "wells.bcgs_numbers", "pk": 9984, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:17:56Z", "update_user": null, "update_date": null, "bcgs_number": "082N008212"}}, {"model": "wells.bcgs_numbers", "pk": 9985, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:19:56Z", "update_user": null, "update_date": null, "bcgs_number": "082E090141"}}, {"model": "wells.bcgs_numbers", "pk": 9986, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:26:15Z", "update_user": null, "update_date": null, "bcgs_number": "082F002343"}}, {"model": "wells.bcgs_numbers", "pk": 9987, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:28:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G012313"}}, {"model": "wells.bcgs_numbers", "pk": 9988, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:42:46Z", "update_user": null, "update_date": null, "bcgs_number": "092B044414"}}, {"model": "wells.bcgs_numbers", "pk": 9989, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T17:47:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F019242"}}, {"model": "wells.bcgs_numbers", "pk": 9990, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:04:43Z", "update_user": null, "update_date": null, "bcgs_number": "082G043344"}}, {"model": "wells.bcgs_numbers", "pk": 9991, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:06:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B044233"}}, {"model": "wells.bcgs_numbers", "pk": 9992, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:34:28Z", "update_user": null, "update_date": null, "bcgs_number": "082G008314"}}, {"model": "wells.bcgs_numbers", "pk": 9993, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:36:27Z", "update_user": null, "update_date": null, "bcgs_number": "082G045223"}}, {"model": "wells.bcgs_numbers", "pk": 9994, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:44:59Z", "update_user": null, "update_date": null, "bcgs_number": "093B029243"}}, {"model": "wells.bcgs_numbers", "pk": 9995, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:46:22Z", "update_user": null, "update_date": null, "bcgs_number": "093B068234"}}, {"model": "wells.bcgs_numbers", "pk": 9996, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:46:32Z", "update_user": null, "update_date": null, "bcgs_number": "082G056313"}}, {"model": "wells.bcgs_numbers", "pk": 9997, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T18:48:40Z", "update_user": null, "update_date": null, "bcgs_number": "103G041144"}}, {"model": "wells.bcgs_numbers", "pk": 9998, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T19:10:25Z", "update_user": null, "update_date": null, "bcgs_number": "103I048142"}}, {"model": "wells.bcgs_numbers", "pk": 9999, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T19:43:35Z", "update_user": null, "update_date": null, "bcgs_number": "103F090213"}}, {"model": "wells.bcgs_numbers", "pk": 10000, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T19:46:17Z", "update_user": null, "update_date": null, "bcgs_number": "103J001113"}}, {"model": "wells.bcgs_numbers", "pk": 10001, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T19:49:35Z", "update_user": null, "update_date": null, "bcgs_number": "103I058144"}}, {"model": "wells.bcgs_numbers", "pk": 10002, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T19:51:54Z", "update_user": null, "update_date": null, "bcgs_number": "103I067231"}}, {"model": "wells.bcgs_numbers", "pk": 10003, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T19:55:17Z", "update_user": null, "update_date": null, "bcgs_number": "103I087133"}}, {"model": "wells.bcgs_numbers", "pk": 10004, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T20:27:50Z", "update_user": null, "update_date": null, "bcgs_number": "082N016443"}}, {"model": "wells.bcgs_numbers", "pk": 10005, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:07:01Z", "update_user": null, "update_date": null, "bcgs_number": "093C030223"}}, {"model": "wells.bcgs_numbers", "pk": 10006, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:07:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G006121"}}, {"model": "wells.bcgs_numbers", "pk": 10007, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:08:11Z", "update_user": null, "update_date": null, "bcgs_number": "093G031224"}}, {"model": "wells.bcgs_numbers", "pk": 10008, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:10:14Z", "update_user": null, "update_date": null, "bcgs_number": "093P081434"}}, {"model": "wells.bcgs_numbers", "pk": 10009, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:10:40Z", "update_user": null, "update_date": null, "bcgs_number": "094A020444"}}, {"model": "wells.bcgs_numbers", "pk": 10010, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:13:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A037113"}}, {"model": "wells.bcgs_numbers", "pk": 10011, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:14:26Z", "update_user": null, "update_date": null, "bcgs_number": "094A044442"}}, {"model": "wells.bcgs_numbers", "pk": 10012, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-06-27T21:14:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A076122"}}, {"model": "wells.bcgs_numbers", "pk": 10013, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-02T17:41:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G026344"}}, {"model": "wells.bcgs_numbers", "pk": 10014, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-04T17:26:54Z", "update_user": null, "update_date": null, "bcgs_number": "092G093333"}}, {"model": "wells.bcgs_numbers", "pk": 10015, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-04T23:49:32Z", "update_user": null, "update_date": null, "bcgs_number": "092J016211"}}, {"model": "wells.bcgs_numbers", "pk": 10016, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-07T16:56:12Z", "update_user": null, "update_date": null, "bcgs_number": "092G071231"}}, {"model": "wells.bcgs_numbers", "pk": 10017, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-07T18:20:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G043413"}}, {"model": "wells.bcgs_numbers", "pk": 10018, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-07T23:17:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H006421"}}, {"model": "wells.bcgs_numbers", "pk": 10019, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-10T16:54:18Z", "update_user": null, "update_date": null, "bcgs_number": "092J006314"}}, {"model": "wells.bcgs_numbers", "pk": 10020, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-16T00:05:51Z", "update_user": null, "update_date": null, "bcgs_number": "094M050231"}}, {"model": "wells.bcgs_numbers", "pk": 10021, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-16T17:48:53Z", "update_user": null, "update_date": null, "bcgs_number": "094N002114"}}, {"model": "wells.bcgs_numbers", "pk": 10022, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-16T18:08:54Z", "update_user": null, "update_date": null, "bcgs_number": "094K092134"}}, {"model": "wells.bcgs_numbers", "pk": 10023, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-17T18:40:15Z", "update_user": null, "update_date": null, "bcgs_number": "094J083142"}}, {"model": "wells.bcgs_numbers", "pk": 10024, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-18T18:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "103I034231"}}, {"model": "wells.bcgs_numbers", "pk": 10025, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-18T23:06:35Z", "update_user": null, "update_date": null, "bcgs_number": "093A021421"}}, {"model": "wells.bcgs_numbers", "pk": 10026, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-21T17:13:25Z", "update_user": null, "update_date": null, "bcgs_number": "092F082244"}}, {"model": "wells.bcgs_numbers", "pk": 10027, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-21T18:07:45Z", "update_user": null, "update_date": null, "bcgs_number": "092H021212"}}, {"model": "wells.bcgs_numbers", "pk": 10028, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-21T18:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F082241"}}, {"model": "wells.bcgs_numbers", "pk": 10029, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-21T19:08:51Z", "update_user": null, "update_date": null, "bcgs_number": "092F082242"}}, {"model": "wells.bcgs_numbers", "pk": 10030, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-22T18:08:00Z", "update_user": null, "update_date": null, "bcgs_number": "093G097113"}}, {"model": "wells.bcgs_numbers", "pk": 10031, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-22T18:09:36Z", "update_user": null, "update_date": null, "bcgs_number": "093A062123"}}, {"model": "wells.bcgs_numbers", "pk": 10032, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-23T20:52:41Z", "update_user": null, "update_date": null, "bcgs_number": "092F080212"}}, {"model": "wells.bcgs_numbers", "pk": 10033, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-24T19:40:56Z", "update_user": null, "update_date": null, "bcgs_number": "092F065314"}}, {"model": "wells.bcgs_numbers", "pk": 10034, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-24T23:04:33Z", "update_user": null, "update_date": null, "bcgs_number": "092E078322"}}, {"model": "wells.bcgs_numbers", "pk": 10035, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-24T23:13:54Z", "update_user": "PROXY_WELLS", "update_date": "2010-01-20T18:37:58Z", "bcgs_number": "092E078144"}}, {"model": "wells.bcgs_numbers", "pk": 10036, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-31T16:59:19Z", "update_user": null, "update_date": null, "bcgs_number": "092B054444"}}, {"model": "wells.bcgs_numbers", "pk": 10037, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-31T18:48:17Z", "update_user": null, "update_date": null, "bcgs_number": "092K031122"}}, {"model": "wells.bcgs_numbers", "pk": 10038, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-01T21:41:36Z", "update_user": null, "update_date": null, "bcgs_number": "092G092334"}}, {"model": "wells.bcgs_numbers", "pk": 10039, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-06T16:53:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E042122"}}, {"model": "wells.bcgs_numbers", "pk": 10040, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-06T17:17:10Z", "update_user": null, "update_date": null, "bcgs_number": "083E004223"}}, {"model": "wells.bcgs_numbers", "pk": 10041, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-13T20:37:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G071341"}}, {"model": "wells.bcgs_numbers", "pk": 10042, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-13T21:04:32Z", "update_user": null, "update_date": null, "bcgs_number": "092G071232"}}, {"model": "wells.bcgs_numbers", "pk": 10043, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-18T23:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "082E010113"}}, {"model": "wells.bcgs_numbers", "pk": 10044, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-18T23:13:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E019241"}}, {"model": "wells.bcgs_numbers", "pk": 10045, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T16:15:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F035111"}}, {"model": "wells.bcgs_numbers", "pk": 10046, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T16:28:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F024442"}}, {"model": "wells.bcgs_numbers", "pk": 10047, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T17:14:14Z", "update_user": null, "update_date": null, "bcgs_number": "082F066443"}}, {"model": "wells.bcgs_numbers", "pk": 10048, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T17:45:58Z", "update_user": null, "update_date": null, "bcgs_number": "082G045342"}}, {"model": "wells.bcgs_numbers", "pk": 10049, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T17:47:49Z", "update_user": null, "update_date": null, "bcgs_number": "082G061413"}}, {"model": "wells.bcgs_numbers", "pk": 10050, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T17:49:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G061431"}}, {"model": "wells.bcgs_numbers", "pk": 10051, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T18:03:09Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T18:23:45Z", "bcgs_number": "082K004131"}}, {"model": "wells.bcgs_numbers", "pk": 10052, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T18:09:51Z", "update_user": null, "update_date": null, "bcgs_number": "082K070233"}}, {"model": "wells.bcgs_numbers", "pk": 10053, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T18:12:14Z", "update_user": null, "update_date": null, "bcgs_number": "082K070411"}}, {"model": "wells.bcgs_numbers", "pk": 10054, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T18:47:41Z", "update_user": null, "update_date": null, "bcgs_number": "082K079213"}}, {"model": "wells.bcgs_numbers", "pk": 10055, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T18:50:26Z", "update_user": "PROXY_WELLS", "update_date": "2009-07-08T17:57:14Z", "bcgs_number": "082L051312"}}, {"model": "wells.bcgs_numbers", "pk": 10056, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T18:55:03Z", "update_user": null, "update_date": null, "bcgs_number": "092F043414"}}, {"model": "wells.bcgs_numbers", "pk": 10057, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T19:37:30Z", "update_user": null, "update_date": null, "bcgs_number": "092O078342"}}, {"model": "wells.bcgs_numbers", "pk": 10058, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T21:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "093K019232"}}, {"model": "wells.bcgs_numbers", "pk": 10059, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T21:04:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A063142"}}, {"model": "wells.bcgs_numbers", "pk": 10060, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-19T21:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093P085212"}}, {"model": "wells.bcgs_numbers", "pk": 10061, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-20T17:49:16Z", "update_user": "PROXY_WELLS", "update_date": "2013-04-24T15:52:42Z", "bcgs_number": "092P082434"}}, {"model": "wells.bcgs_numbers", "pk": 10062, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-20T19:09:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B059221"}}, {"model": "wells.bcgs_numbers", "pk": 10063, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-20T19:17:25Z", "update_user": null, "update_date": null, "bcgs_number": "093B050431"}}, {"model": "wells.bcgs_numbers", "pk": 10064, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-20T20:53:20Z", "update_user": null, "update_date": null, "bcgs_number": "082E067111"}}, {"model": "wells.bcgs_numbers", "pk": 10065, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-20T20:55:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E090233"}}, {"model": "wells.bcgs_numbers", "pk": 10066, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-21T22:49:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G051142"}}, {"model": "wells.bcgs_numbers", "pk": 10067, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-22T17:23:56Z", "update_user": null, "update_date": null, "bcgs_number": "092P034222"}}, {"model": "wells.bcgs_numbers", "pk": 10068, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-22T17:25:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P034212"}}, {"model": "wells.bcgs_numbers", "pk": 10069, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T16:52:13Z", "update_user": null, "update_date": null, "bcgs_number": "093I002144"}}, {"model": "wells.bcgs_numbers", "pk": 10070, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T17:05:21Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T22:14:27Z", "bcgs_number": "093O003312"}}, {"model": "wells.bcgs_numbers", "pk": 10071, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T17:15:35Z", "update_user": null, "update_date": null, "bcgs_number": "093P081234"}}, {"model": "wells.bcgs_numbers", "pk": 10072, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T18:27:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P064343"}}, {"model": "wells.bcgs_numbers", "pk": 10073, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T18:33:11Z", "update_user": null, "update_date": null, "bcgs_number": "092G062221"}}, {"model": "wells.bcgs_numbers", "pk": 10074, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T20:12:20Z", "update_user": null, "update_date": null, "bcgs_number": "094G030413"}}, {"model": "wells.bcgs_numbers", "pk": 10075, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T20:49:47Z", "update_user": null, "update_date": null, "bcgs_number": "092J026213"}}, {"model": "wells.bcgs_numbers", "pk": 10076, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-25T22:40:40Z", "update_user": null, "update_date": null, "bcgs_number": "092B081222"}}, {"model": "wells.bcgs_numbers", "pk": 10077, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-26T19:48:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B073434"}}, {"model": "wells.bcgs_numbers", "pk": 10078, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-26T22:40:04Z", "update_user": null, "update_date": null, "bcgs_number": "092J058112"}}, {"model": "wells.bcgs_numbers", "pk": 10079, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-26T22:41:35Z", "update_user": null, "update_date": null, "bcgs_number": "092J036414"}}, {"model": "wells.bcgs_numbers", "pk": 10080, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-26T22:47:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G054241"}}, {"model": "wells.bcgs_numbers", "pk": 10081, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-27T18:21:00Z", "update_user": null, "update_date": null, "bcgs_number": "092M047122"}}, {"model": "wells.bcgs_numbers", "pk": 10082, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-27T19:49:57Z", "update_user": null, "update_date": null, "bcgs_number": "093M047231"}}, {"model": "wells.bcgs_numbers", "pk": 10083, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-02T20:57:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I007243"}}, {"model": "wells.bcgs_numbers", "pk": 10084, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-02T20:59:08Z", "update_user": null, "update_date": null, "bcgs_number": "092I026421"}}, {"model": "wells.bcgs_numbers", "pk": 10085, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-02T21:02:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H040333"}}, {"model": "wells.bcgs_numbers", "pk": 10086, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T17:21:11Z", "update_user": null, "update_date": null, "bcgs_number": "082E003243"}}, {"model": "wells.bcgs_numbers", "pk": 10087, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T17:45:44Z", "update_user": null, "update_date": null, "bcgs_number": "092H037422"}}, {"model": "wells.bcgs_numbers", "pk": 10088, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T17:46:55Z", "update_user": null, "update_date": null, "bcgs_number": "092H058213"}}, {"model": "wells.bcgs_numbers", "pk": 10089, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T18:24:12Z", "update_user": null, "update_date": null, "bcgs_number": "082K060212"}}, {"model": "wells.bcgs_numbers", "pk": 10090, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T21:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092B075434"}}, {"model": "wells.bcgs_numbers", "pk": 10091, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:34:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I060333"}}, {"model": "wells.bcgs_numbers", "pk": 10092, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:36:39Z", "update_user": null, "update_date": null, "bcgs_number": "082K061423"}}, {"model": "wells.bcgs_numbers", "pk": 10093, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:37:43Z", "update_user": null, "update_date": null, "bcgs_number": "092P086211"}}, {"model": "wells.bcgs_numbers", "pk": 10094, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:40:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F057331"}}, {"model": "wells.bcgs_numbers", "pk": 10095, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:43:14Z", "update_user": null, "update_date": null, "bcgs_number": "082F044332"}}, {"model": "wells.bcgs_numbers", "pk": 10096, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:52:59Z", "update_user": null, "update_date": null, "bcgs_number": "082K050433"}}, {"model": "wells.bcgs_numbers", "pk": 10097, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:54:59Z", "update_user": null, "update_date": null, "bcgs_number": "082K050434"}}, {"model": "wells.bcgs_numbers", "pk": 10098, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T23:56:03Z", "update_user": null, "update_date": null, "bcgs_number": "082K050344"}}, {"model": "wells.bcgs_numbers", "pk": 10099, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-04T16:35:59Z", "update_user": null, "update_date": null, "bcgs_number": "082F096322"}}, {"model": "wells.bcgs_numbers", "pk": 10100, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-04T17:58:40Z", "update_user": null, "update_date": null, "bcgs_number": "092B092441"}}, {"model": "wells.bcgs_numbers", "pk": 10101, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-04T18:08:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P096143"}}, {"model": "wells.bcgs_numbers", "pk": 10102, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-04T19:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P092114"}}, {"model": "wells.bcgs_numbers", "pk": 10103, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-05T00:01:38Z", "update_user": null, "update_date": null, "bcgs_number": "092B054344"}}, {"model": "wells.bcgs_numbers", "pk": 10104, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T21:54:55Z", "update_user": null, "update_date": null, "bcgs_number": "082J041131"}}, {"model": "wells.bcgs_numbers", "pk": 10105, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:04:33Z", "update_user": null, "update_date": null, "bcgs_number": "082J006143"}}, {"model": "wells.bcgs_numbers", "pk": 10106, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:15:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F019324"}}, {"model": "wells.bcgs_numbers", "pk": 10107, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:16:37Z", "update_user": null, "update_date": null, "bcgs_number": "082N045323"}}, {"model": "wells.bcgs_numbers", "pk": 10108, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:24:56Z", "update_user": null, "update_date": null, "bcgs_number": "082F019244"}}, {"model": "wells.bcgs_numbers", "pk": 10109, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:27:17Z", "update_user": null, "update_date": null, "bcgs_number": "082N036331"}}, {"model": "wells.bcgs_numbers", "pk": 10110, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:40:52Z", "update_user": null, "update_date": null, "bcgs_number": "082F086213"}}, {"model": "wells.bcgs_numbers", "pk": 10111, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:46:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F037343"}}, {"model": "wells.bcgs_numbers", "pk": 10112, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T22:55:15Z", "update_user": null, "update_date": null, "bcgs_number": "082F047123"}}, {"model": "wells.bcgs_numbers", "pk": 10113, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T23:03:03Z", "update_user": null, "update_date": null, "bcgs_number": "082G031432"}}, {"model": "wells.bcgs_numbers", "pk": 10114, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T23:10:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G071441"}}, {"model": "wells.bcgs_numbers", "pk": 10115, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-08T23:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F096113"}}, {"model": "wells.bcgs_numbers", "pk": 10116, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T21:09:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I071121"}}, {"model": "wells.bcgs_numbers", "pk": 10117, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T21:29:02Z", "update_user": null, "update_date": null, "bcgs_number": "092L061233"}}, {"model": "wells.bcgs_numbers", "pk": 10118, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T21:56:27Z", "update_user": null, "update_date": null, "bcgs_number": "082G053111"}}, {"model": "wells.bcgs_numbers", "pk": 10119, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T21:59:40Z", "update_user": null, "update_date": null, "bcgs_number": "093B080143"}}, {"model": "wells.bcgs_numbers", "pk": 10120, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T22:02:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A072113"}}, {"model": "wells.bcgs_numbers", "pk": 10121, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T22:38:05Z", "update_user": null, "update_date": null, "bcgs_number": "082L036223"}}, {"model": "wells.bcgs_numbers", "pk": 10122, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T23:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E006143"}}, {"model": "wells.bcgs_numbers", "pk": 10123, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T23:31:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F036211"}}, {"model": "wells.bcgs_numbers", "pk": 10124, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T23:32:39Z", "update_user": null, "update_date": null, "bcgs_number": "092L068333"}}, {"model": "wells.bcgs_numbers", "pk": 10125, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-10T23:42:52Z", "update_user": null, "update_date": null, "bcgs_number": "092P044143"}}, {"model": "wells.bcgs_numbers", "pk": 10126, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-11T19:48:24Z", "update_user": null, "update_date": null, "bcgs_number": "082N017143"}}, {"model": "wells.bcgs_numbers", "pk": 10127, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-11T19:50:20Z", "update_user": null, "update_date": null, "bcgs_number": "082N035444"}}, {"model": "wells.bcgs_numbers", "pk": 10128, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-11T20:11:26Z", "update_user": null, "update_date": null, "bcgs_number": "082N026333"}}, {"model": "wells.bcgs_numbers", "pk": 10129, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-11T22:56:45Z", "update_user": null, "update_date": null, "bcgs_number": "092P056234"}}, {"model": "wells.bcgs_numbers", "pk": 10130, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-11T23:26:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E033344"}}, {"model": "wells.bcgs_numbers", "pk": 10131, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T16:48:22Z", "update_user": null, "update_date": null, "bcgs_number": "092K014112"}}, {"model": "wells.bcgs_numbers", "pk": 10132, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T16:56:25Z", "update_user": null, "update_date": null, "bcgs_number": "092K022132"}}, {"model": "wells.bcgs_numbers", "pk": 10133, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T17:29:57Z", "update_user": null, "update_date": null, "bcgs_number": "093J002324"}}, {"model": "wells.bcgs_numbers", "pk": 10134, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T17:36:43Z", "update_user": null, "update_date": null, "bcgs_number": "092G071111"}}, {"model": "wells.bcgs_numbers", "pk": 10135, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T17:38:22Z", "update_user": null, "update_date": null, "bcgs_number": "082N045411"}}, {"model": "wells.bcgs_numbers", "pk": 10136, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T17:41:28Z", "update_user": null, "update_date": null, "bcgs_number": "082N045233"}}, {"model": "wells.bcgs_numbers", "pk": 10137, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T17:45:43Z", "update_user": null, "update_date": null, "bcgs_number": "082N007224"}}, {"model": "wells.bcgs_numbers", "pk": 10138, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T18:43:15Z", "update_user": null, "update_date": null, "bcgs_number": "092O090312"}}, {"model": "wells.bcgs_numbers", "pk": 10139, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-15T21:04:27Z", "update_user": null, "update_date": null, "bcgs_number": "082M064333"}}, {"model": "wells.bcgs_numbers", "pk": 10140, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-15T23:17:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L065314"}}, {"model": "wells.bcgs_numbers", "pk": 10141, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-15T23:32:01Z", "update_user": null, "update_date": null, "bcgs_number": "093F098434"}}, {"model": "wells.bcgs_numbers", "pk": 10142, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-16T16:03:07Z", "update_user": null, "update_date": null, "bcgs_number": "082G004424"}}, {"model": "wells.bcgs_numbers", "pk": 10143, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-16T16:24:09Z", "update_user": null, "update_date": null, "bcgs_number": "082F018331"}}, {"model": "wells.bcgs_numbers", "pk": 10144, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-16T17:52:24Z", "update_user": null, "update_date": null, "bcgs_number": "082G086124"}}, {"model": "wells.bcgs_numbers", "pk": 10145, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-16T23:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "093P073111"}}, {"model": "wells.bcgs_numbers", "pk": 10146, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-16T23:15:00Z", "update_user": null, "update_date": null, "bcgs_number": "094C030414"}}, {"model": "wells.bcgs_numbers", "pk": 10147, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-17T22:34:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I076313"}}, {"model": "wells.bcgs_numbers", "pk": 10148, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-22T19:48:11Z", "update_user": null, "update_date": null, "bcgs_number": "082G055232"}}, {"model": "wells.bcgs_numbers", "pk": 10149, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-22T19:49:18Z", "update_user": null, "update_date": null, "bcgs_number": "082N026411"}}, {"model": "wells.bcgs_numbers", "pk": 10150, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-22T20:08:24Z", "update_user": null, "update_date": null, "bcgs_number": "082N045224"}}, {"model": "wells.bcgs_numbers", "pk": 10151, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-22T21:44:14Z", "update_user": null, "update_date": null, "bcgs_number": "082E014133"}}, {"model": "wells.bcgs_numbers", "pk": 10152, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-22T22:04:37Z", "update_user": null, "update_date": null, "bcgs_number": "092H048114"}}, {"model": "wells.bcgs_numbers", "pk": 10153, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-23T16:11:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E023344"}}, {"model": "wells.bcgs_numbers", "pk": 10154, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-23T16:15:14Z", "update_user": null, "update_date": null, "bcgs_number": "092H056244"}}, {"model": "wells.bcgs_numbers", "pk": 10155, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-23T16:19:06Z", "update_user": null, "update_date": null, "bcgs_number": "092H047441"}}, {"model": "wells.bcgs_numbers", "pk": 10156, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-24T16:35:44Z", "update_user": null, "update_date": null, "bcgs_number": "092K045111"}}, {"model": "wells.bcgs_numbers", "pk": 10157, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-24T16:42:57Z", "update_user": null, "update_date": null, "bcgs_number": "092I025324"}}, {"model": "wells.bcgs_numbers", "pk": 10158, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-24T17:42:01Z", "update_user": null, "update_date": null, "bcgs_number": "092G044121"}}, {"model": "wells.bcgs_numbers", "pk": 10159, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T18:59:12Z", "update_user": null, "update_date": null, "bcgs_number": "092E070344"}}, {"model": "wells.bcgs_numbers", "pk": 10160, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T18:59:48Z", "update_user": null, "update_date": null, "bcgs_number": "092E070342"}}, {"model": "wells.bcgs_numbers", "pk": 10161, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T19:22:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G090131"}}, {"model": "wells.bcgs_numbers", "pk": 10162, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T19:31:56Z", "update_user": null, "update_date": null, "bcgs_number": "092I046442"}}, {"model": "wells.bcgs_numbers", "pk": 10163, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T20:49:49Z", "update_user": null, "update_date": null, "bcgs_number": "082G055424"}}, {"model": "wells.bcgs_numbers", "pk": 10164, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T20:56:03Z", "update_user": null, "update_date": null, "bcgs_number": "082F003123"}}, {"model": "wells.bcgs_numbers", "pk": 10165, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T20:59:42Z", "update_user": null, "update_date": null, "bcgs_number": "082F003322"}}, {"model": "wells.bcgs_numbers", "pk": 10166, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-25T21:02:06Z", "update_user": null, "update_date": null, "bcgs_number": "082F042244"}}, {"model": "wells.bcgs_numbers", "pk": 10167, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T16:35:49Z", "update_user": null, "update_date": null, "bcgs_number": "082G005412"}}, {"model": "wells.bcgs_numbers", "pk": 10168, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T16:54:06Z", "update_user": null, "update_date": null, "bcgs_number": "082G035213"}}, {"model": "wells.bcgs_numbers", "pk": 10169, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T16:59:02Z", "update_user": null, "update_date": null, "bcgs_number": "082J006141"}}, {"model": "wells.bcgs_numbers", "pk": 10170, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T17:00:09Z", "update_user": null, "update_date": null, "bcgs_number": "082J006144"}}, {"model": "wells.bcgs_numbers", "pk": 10171, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T17:33:04Z", "update_user": null, "update_date": null, "bcgs_number": "082G044221"}}, {"model": "wells.bcgs_numbers", "pk": 10172, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T17:34:19Z", "update_user": null, "update_date": null, "bcgs_number": "082G055211"}}, {"model": "wells.bcgs_numbers", "pk": 10173, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T17:58:34Z", "update_user": null, "update_date": null, "bcgs_number": "082P018234"}}, {"model": "wells.bcgs_numbers", "pk": 10174, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T18:03:14Z", "update_user": null, "update_date": null, "bcgs_number": "082N046314"}}, {"model": "wells.bcgs_numbers", "pk": 10175, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T18:09:17Z", "update_user": null, "update_date": null, "bcgs_number": "082G024322"}}, {"model": "wells.bcgs_numbers", "pk": 10176, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T18:55:52Z", "update_user": null, "update_date": null, "bcgs_number": "082F013441"}}, {"model": "wells.bcgs_numbers", "pk": 10177, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T19:24:32Z", "update_user": null, "update_date": null, "bcgs_number": "082G033441"}}, {"model": "wells.bcgs_numbers", "pk": 10178, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-26T20:19:14Z", "update_user": "PROXY_WELLS", "update_date": "2009-05-04T16:55:08Z", "bcgs_number": "092G067221"}}, {"model": "wells.bcgs_numbers", "pk": 10179, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T17:16:23Z", "update_user": null, "update_date": null, "bcgs_number": "082F066111"}}, {"model": "wells.bcgs_numbers", "pk": 10180, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T17:37:40Z", "update_user": null, "update_date": null, "bcgs_number": "082F086144"}}, {"model": "wells.bcgs_numbers", "pk": 10181, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T17:40:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E007141"}}, {"model": "wells.bcgs_numbers", "pk": 10182, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T17:41:30Z", "update_user": null, "update_date": null, "bcgs_number": "082F033341"}}, {"model": "wells.bcgs_numbers", "pk": 10183, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T17:43:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F062243"}}, {"model": "wells.bcgs_numbers", "pk": 10184, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T18:34:38Z", "update_user": null, "update_date": null, "bcgs_number": "082F002313"}}, {"model": "wells.bcgs_numbers", "pk": 10185, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T19:02:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L026323"}}, {"model": "wells.bcgs_numbers", "pk": 10186, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-29T20:09:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L023211"}}, {"model": "wells.bcgs_numbers", "pk": 10187, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T16:33:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L033413"}}, {"model": "wells.bcgs_numbers", "pk": 10188, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T16:39:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I044321"}}, {"model": "wells.bcgs_numbers", "pk": 10189, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T16:44:15Z", "update_user": null, "update_date": null, "bcgs_number": "093G097443"}}, {"model": "wells.bcgs_numbers", "pk": 10190, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T17:07:02Z", "update_user": null, "update_date": null, "bcgs_number": "093L037324"}}, {"model": "wells.bcgs_numbers", "pk": 10191, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T17:11:14Z", "update_user": null, "update_date": null, "bcgs_number": "093J019223"}}, {"model": "wells.bcgs_numbers", "pk": 10192, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T18:01:10Z", "update_user": null, "update_date": null, "bcgs_number": "092E080234"}}, {"model": "wells.bcgs_numbers", "pk": 10193, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T18:56:30Z", "update_user": null, "update_date": null, "bcgs_number": "092F078121"}}, {"model": "wells.bcgs_numbers", "pk": 10194, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T19:39:20Z", "update_user": null, "update_date": null, "bcgs_number": "092L049234"}}, {"model": "wells.bcgs_numbers", "pk": 10195, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T20:26:09Z", "update_user": null, "update_date": null, "bcgs_number": "082F009224"}}, {"model": "wells.bcgs_numbers", "pk": 10196, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T20:32:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F012414"}}, {"model": "wells.bcgs_numbers", "pk": 10197, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T20:41:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F018223"}}, {"model": "wells.bcgs_numbers", "pk": 10198, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-30T20:52:47Z", "update_user": null, "update_date": null, "bcgs_number": "082F057333"}}, {"model": "wells.bcgs_numbers", "pk": 10199, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:01:49Z", "update_user": null, "update_date": null, "bcgs_number": "082F091414"}}, {"model": "wells.bcgs_numbers", "pk": 10200, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:03:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F096342"}}, {"model": "wells.bcgs_numbers", "pk": 10201, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:07:32Z", "update_user": null, "update_date": null, "bcgs_number": "082G043431"}}, {"model": "wells.bcgs_numbers", "pk": 10202, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:09:52Z", "update_user": null, "update_date": null, "bcgs_number": "082G053221"}}, {"model": "wells.bcgs_numbers", "pk": 10203, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:10:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G053232"}}, {"model": "wells.bcgs_numbers", "pk": 10204, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:19:31Z", "update_user": null, "update_date": null, "bcgs_number": "082I037144"}}, {"model": "wells.bcgs_numbers", "pk": 10205, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T00:22:04Z", "update_user": null, "update_date": null, "bcgs_number": "082K003434"}}, {"model": "wells.bcgs_numbers", "pk": 10206, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T16:03:49Z", "update_user": null, "update_date": null, "bcgs_number": "082K022141"}}, {"model": "wells.bcgs_numbers", "pk": 10207, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-01T16:38:27Z", "update_user": null, "update_date": null, "bcgs_number": "082k026121"}}, {"model": "wells.bcgs_numbers", "pk": 10208, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-02T21:11:43Z", "update_user": null, "update_date": null, "bcgs_number": "092F097431"}}, {"model": "wells.bcgs_numbers", "pk": 10209, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-06T17:10:58Z", "update_user": null, "update_date": null, "bcgs_number": "082G043231"}}, {"model": "wells.bcgs_numbers", "pk": 10210, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-09T18:44:53Z", "update_user": null, "update_date": null, "bcgs_number": "092K004141"}}, {"model": "wells.bcgs_numbers", "pk": 10211, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-10T00:04:02Z", "update_user": null, "update_date": null, "bcgs_number": "093L066141"}}, {"model": "wells.bcgs_numbers", "pk": 10212, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-10T19:58:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G010123"}}, {"model": "wells.bcgs_numbers", "pk": 10213, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-15T18:05:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P015242"}}, {"model": "wells.bcgs_numbers", "pk": 10214, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-16T18:34:06Z", "update_user": null, "update_date": null, "bcgs_number": "092K021424"}}, {"model": "wells.bcgs_numbers", "pk": 10215, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-16T19:45:08Z", "update_user": "PROXY_WELLS", "update_date": "2009-05-04T16:55:00Z", "bcgs_number": "092G054243"}}, {"model": "wells.bcgs_numbers", "pk": 10216, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T16:18:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F011111"}}, {"model": "wells.bcgs_numbers", "pk": 10217, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T16:35:48Z", "update_user": null, "update_date": null, "bcgs_number": "082F086231"}}, {"model": "wells.bcgs_numbers", "pk": 10218, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T17:18:13Z", "update_user": null, "update_date": null, "bcgs_number": "082l094142"}}, {"model": "wells.bcgs_numbers", "pk": 10219, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T23:05:31Z", "update_user": null, "update_date": null, "bcgs_number": "082G021414"}}, {"model": "wells.bcgs_numbers", "pk": 10220, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T23:25:08Z", "update_user": null, "update_date": null, "bcgs_number": "082F037231"}}, {"model": "wells.bcgs_numbers", "pk": 10221, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T23:25:33Z", "update_user": null, "update_date": null, "bcgs_number": "082K022112"}}, {"model": "wells.bcgs_numbers", "pk": 10222, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T23:27:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P003243"}}, {"model": "wells.bcgs_numbers", "pk": 10223, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T23:28:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P030332"}}, {"model": "wells.bcgs_numbers", "pk": 10224, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-17T23:28:26Z", "update_user": null, "update_date": null, "bcgs_number": "093B012212"}}, {"model": "wells.bcgs_numbers", "pk": 10225, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-20T18:48:41Z", "update_user": null, "update_date": null, "bcgs_number": "092L043213"}}, {"model": "wells.bcgs_numbers", "pk": 10226, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-21T19:03:07Z", "update_user": null, "update_date": null, "bcgs_number": "082L043123"}}, {"model": "wells.bcgs_numbers", "pk": 10227, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-21T23:54:17Z", "update_user": null, "update_date": null, "bcgs_number": "093F040442"}}, {"model": "wells.bcgs_numbers", "pk": 10228, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-24T16:27:04Z", "update_user": null, "update_date": null, "bcgs_number": "082E090431"}}, {"model": "wells.bcgs_numbers", "pk": 10229, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-27T20:09:01Z", "update_user": null, "update_date": null, "bcgs_number": "093A052243"}}, {"model": "wells.bcgs_numbers", "pk": 10230, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-27T20:28:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B099141"}}, {"model": "wells.bcgs_numbers", "pk": 10231, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-29T16:34:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H083243"}}, {"model": "wells.bcgs_numbers", "pk": 10232, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-29T16:45:37Z", "update_user": null, "update_date": null, "bcgs_number": "092H032221"}}, {"model": "wells.bcgs_numbers", "pk": 10233, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-29T17:14:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H033314"}}, {"model": "wells.bcgs_numbers", "pk": 10234, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-29T17:28:27Z", "update_user": "PROXY_WELLS", "update_date": "2009-05-04T19:08:20Z", "bcgs_number": "092J079242"}}, {"model": "wells.bcgs_numbers", "pk": 10235, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-30T16:33:58Z", "update_user": null, "update_date": null, "bcgs_number": "082L082442"}}, {"model": "wells.bcgs_numbers", "pk": 10236, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-30T18:17:02Z", "update_user": null, "update_date": null, "bcgs_number": "094B019131"}}, {"model": "wells.bcgs_numbers", "pk": 10237, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-30T18:29:03Z", "update_user": null, "update_date": null, "bcgs_number": "094B018242"}}, {"model": "wells.bcgs_numbers", "pk": 10238, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-30T22:37:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G035132"}}, {"model": "wells.bcgs_numbers", "pk": 10239, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-30T22:48:01Z", "update_user": null, "update_date": null, "bcgs_number": "103I058413"}}, {"model": "wells.bcgs_numbers", "pk": 10240, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-31T18:54:41Z", "update_user": null, "update_date": null, "bcgs_number": "082F063431"}}, {"model": "wells.bcgs_numbers", "pk": 10241, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-03T19:50:23Z", "update_user": null, "update_date": null, "bcgs_number": "092E080412"}}, {"model": "wells.bcgs_numbers", "pk": 10242, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-05T23:33:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L092412"}}, {"model": "wells.bcgs_numbers", "pk": 10243, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-07T19:56:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L061444"}}, {"model": "wells.bcgs_numbers", "pk": 10244, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-07T20:23:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L033234"}}, {"model": "wells.bcgs_numbers", "pk": 10245, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-07T20:25:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G080244"}}, {"model": "wells.bcgs_numbers", "pk": 10246, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-07T20:31:59Z", "update_user": null, "update_date": null, "bcgs_number": "082L097311"}}, {"model": "wells.bcgs_numbers", "pk": 10247, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-10T16:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "092B093143"}}, {"model": "wells.bcgs_numbers", "pk": 10248, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-12T18:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L084314"}}, {"model": "wells.bcgs_numbers", "pk": 10249, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-12T18:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L085214"}}, {"model": "wells.bcgs_numbers", "pk": 10250, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-12T18:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L086132"}}, {"model": "wells.bcgs_numbers", "pk": 10251, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-12T18:40:49Z", "update_user": null, "update_date": null, "bcgs_number": "092B091424"}}, {"model": "wells.bcgs_numbers", "pk": 10252, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-12T21:22:04Z", "update_user": null, "update_date": null, "bcgs_number": "092C089333"}}, {"model": "wells.bcgs_numbers", "pk": 10253, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-13T18:15:06Z", "update_user": null, "update_date": null, "bcgs_number": "092F097144"}}, {"model": "wells.bcgs_numbers", "pk": 10254, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-13T19:06:52Z", "update_user": null, "update_date": null, "bcgs_number": "093O048334"}}, {"model": "wells.bcgs_numbers", "pk": 10255, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-13T21:11:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L027144"}}, {"model": "wells.bcgs_numbers", "pk": 10256, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-13T21:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "082L028132"}}, {"model": "wells.bcgs_numbers", "pk": 10257, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-17T21:20:27Z", "update_user": null, "update_date": null, "bcgs_number": "092O069214"}}, {"model": "wells.bcgs_numbers", "pk": 10258, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-17T21:42:45Z", "update_user": null, "update_date": null, "bcgs_number": "092L073232"}}, {"model": "wells.bcgs_numbers", "pk": 10259, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-17T23:35:35Z", "update_user": null, "update_date": null, "bcgs_number": "082N026212"}}, {"model": "wells.bcgs_numbers", "pk": 10260, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-18T01:04:18Z", "update_user": null, "update_date": null, "bcgs_number": "093A013312"}}, {"model": "wells.bcgs_numbers", "pk": 10261, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-18T16:03:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E080332"}}, {"model": "wells.bcgs_numbers", "pk": 10262, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-18T18:21:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G045314"}}, {"model": "wells.bcgs_numbers", "pk": 10264, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-18T19:32:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G074341"}}, {"model": "wells.bcgs_numbers", "pk": 10265, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-18T19:52:54Z", "update_user": null, "update_date": null, "bcgs_number": "092H022113"}}, {"model": "wells.bcgs_numbers", "pk": 10266, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T00:53:36Z", "update_user": null, "update_date": null, "bcgs_number": "093J008412"}}, {"model": "wells.bcgs_numbers", "pk": 10267, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T00:56:49Z", "update_user": null, "update_date": null, "bcgs_number": "103B081331"}}, {"model": "wells.bcgs_numbers", "pk": 10268, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T01:12:55Z", "update_user": null, "update_date": null, "bcgs_number": "103F097414"}}, {"model": "wells.bcgs_numbers", "pk": 10269, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T01:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "103F097432"}}, {"model": "wells.bcgs_numbers", "pk": 10270, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T01:14:28Z", "update_user": null, "update_date": null, "bcgs_number": "103G001231"}}, {"model": "wells.bcgs_numbers", "pk": 10271, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T01:15:21Z", "update_user": null, "update_date": null, "bcgs_number": "103G002114"}}, {"model": "wells.bcgs_numbers", "pk": 10272, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T19:28:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G035411"}}, {"model": "wells.bcgs_numbers", "pk": 10273, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T19:44:40Z", "update_user": null, "update_date": null, "bcgs_number": "092G043431"}}, {"model": "wells.bcgs_numbers", "pk": 10274, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T20:33:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G025211"}}, {"model": "wells.bcgs_numbers", "pk": 10275, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T20:34:49Z", "update_user": null, "update_date": null, "bcgs_number": "092K004432"}}, {"model": "wells.bcgs_numbers", "pk": 10276, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T20:38:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A063223"}}, {"model": "wells.bcgs_numbers", "pk": 10277, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T20:41:07Z", "update_user": null, "update_date": null, "bcgs_number": "103I089321"}}, {"model": "wells.bcgs_numbers", "pk": 10278, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-19T20:48:46Z", "update_user": null, "update_date": null, "bcgs_number": "092G027332"}}, {"model": "wells.bcgs_numbers", "pk": 10279, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-20T19:34:34Z", "update_user": null, "update_date": null, "bcgs_number": "093B088411"}}, {"model": "wells.bcgs_numbers", "pk": 10280, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-20T19:37:59Z", "update_user": null, "update_date": null, "bcgs_number": "093B097314"}}, {"model": "wells.bcgs_numbers", "pk": 10281, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T18:58:48Z", "update_user": null, "update_date": null, "bcgs_number": "093B096412"}}, {"model": "wells.bcgs_numbers", "pk": 10282, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:00:54Z", "update_user": null, "update_date": null, "bcgs_number": "093I082132"}}, {"model": "wells.bcgs_numbers", "pk": 10283, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P015244"}}, {"model": "wells.bcgs_numbers", "pk": 10284, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:01:53Z", "update_user": null, "update_date": null, "bcgs_number": "093P016133"}}, {"model": "wells.bcgs_numbers", "pk": 10285, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:01:58Z", "update_user": null, "update_date": null, "bcgs_number": "093P016113"}}, {"model": "wells.bcgs_numbers", "pk": 10286, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:02:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P016114"}}, {"model": "wells.bcgs_numbers", "pk": 10287, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:03:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I010121"}}, {"model": "wells.bcgs_numbers", "pk": 10288, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:05:56Z", "update_user": null, "update_date": null, "bcgs_number": "092H053424"}}, {"model": "wells.bcgs_numbers", "pk": 10289, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:06:36Z", "update_user": null, "update_date": null, "bcgs_number": "092H097424"}}, {"model": "wells.bcgs_numbers", "pk": 10290, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-11-21T19:07:03Z", "update_user": null, "update_date": null, "bcgs_number": "092H097444"}}, {"model": "wells.bcgs_numbers", "pk": 10291, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-01T16:24:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I018444"}}, {"model": "wells.bcgs_numbers", "pk": 10292, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-01T16:27:00Z", "update_user": null, "update_date": null, "bcgs_number": "092H028121"}}, {"model": "wells.bcgs_numbers", "pk": 10293, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-01T16:30:10Z", "update_user": null, "update_date": null, "bcgs_number": "092H079434"}}, {"model": "wells.bcgs_numbers", "pk": 10294, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-02T18:22:37Z", "update_user": null, "update_date": null, "bcgs_number": "082N008311"}}, {"model": "wells.bcgs_numbers", "pk": 10295, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-05T21:06:45Z", "update_user": null, "update_date": null, "bcgs_number": "093A001144"}}, {"model": "wells.bcgs_numbers", "pk": 10296, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-05T21:26:02Z", "update_user": null, "update_date": null, "bcgs_number": "093A041142"}}, {"model": "wells.bcgs_numbers", "pk": 10297, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-08T18:45:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G044343"}}, {"model": "wells.bcgs_numbers", "pk": 10298, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-08T19:52:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G044341"}}, {"model": "wells.bcgs_numbers", "pk": 10299, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-08T21:09:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G044342"}}, {"model": "wells.bcgs_numbers", "pk": 10300, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-08T22:32:10Z", "update_user": null, "update_date": null, "bcgs_number": "092G044324"}}, {"model": "wells.bcgs_numbers", "pk": 10301, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-08T23:34:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G044322"}}, {"model": "wells.bcgs_numbers", "pk": 10302, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-09T16:32:39Z", "update_user": null, "update_date": null, "bcgs_number": "104J050421"}}, {"model": "wells.bcgs_numbers", "pk": 10303, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-15T23:05:12Z", "update_user": null, "update_date": null, "bcgs_number": "092G027411"}}, {"model": "wells.bcgs_numbers", "pk": 10304, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-18T20:22:57Z", "update_user": null, "update_date": null, "bcgs_number": "103I007231"}}, {"model": "wells.bcgs_numbers", "pk": 10305, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-18T20:34:27Z", "update_user": null, "update_date": null, "bcgs_number": "082G051223"}}, {"model": "wells.bcgs_numbers", "pk": 10306, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-18T20:36:33Z", "update_user": null, "update_date": null, "bcgs_number": "082G035114"}}, {"model": "wells.bcgs_numbers", "pk": 10307, "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-12-18T21:48:28Z", "update_user": null, "update_date": null, "bcgs_number": "082J011421"}}, {"model": "wells.bcgs_numbers", "pk": 10308, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-05T18:44:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K050432"}}, {"model": "wells.bcgs_numbers", "pk": 10309, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-05T23:34:19Z", "update_user": null, "update_date": null, "bcgs_number": "092F080244"}}, {"model": "wells.bcgs_numbers", "pk": 10310, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-06T20:16:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B002122"}}, {"model": "wells.bcgs_numbers", "pk": 10311, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-07T18:05:42Z", "update_user": null, "update_date": null, "bcgs_number": "092F070412"}}, {"model": "wells.bcgs_numbers", "pk": 10312, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-08T18:12:50Z", "update_user": null, "update_date": null, "bcgs_number": "082F042214"}}, {"model": "wells.bcgs_numbers", "pk": 10313, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-09T17:50:06Z", "update_user": null, "update_date": null, "bcgs_number": "092F097332"}}, {"model": "wells.bcgs_numbers", "pk": 10314, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-09T17:58:43Z", "update_user": null, "update_date": null, "bcgs_number": "092G011141"}}, {"model": "wells.bcgs_numbers", "pk": 10315, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-10T01:00:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G033442"}}, {"model": "wells.bcgs_numbers", "pk": 10316, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-10T01:00:54Z", "update_user": null, "update_date": null, "bcgs_number": "092G034132"}}, {"model": "wells.bcgs_numbers", "pk": 10317, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T18:06:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G044313"}}, {"model": "wells.bcgs_numbers", "pk": 10318, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T19:07:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G043424"}}, {"model": "wells.bcgs_numbers", "pk": 10319, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T19:48:15Z", "update_user": null, "update_date": null, "bcgs_number": "092I061444"}}, {"model": "wells.bcgs_numbers", "pk": 10320, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T20:06:13Z", "update_user": null, "update_date": null, "bcgs_number": "092J047412"}}, {"model": "wells.bcgs_numbers", "pk": 10321, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T20:07:37Z", "update_user": null, "update_date": null, "bcgs_number": "092J047411"}}, {"model": "wells.bcgs_numbers", "pk": 10322, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T20:36:51Z", "update_user": null, "update_date": null, "bcgs_number": "092J006343"}}, {"model": "wells.bcgs_numbers", "pk": 10323, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T20:45:44Z", "update_user": "PROXY_WELLS", "update_date": "2009-02-19T18:20:38Z", "bcgs_number": "092F070221"}}, {"model": "wells.bcgs_numbers", "pk": 10324, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-12T21:48:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F056444"}}, {"model": "wells.bcgs_numbers", "pk": 10325, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-13T22:20:05Z", "update_user": null, "update_date": null, "bcgs_number": "092F076132"}}, {"model": "wells.bcgs_numbers", "pk": 10326, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T20:37:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G011332"}}, {"model": "wells.bcgs_numbers", "pk": 10327, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T20:39:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E018232"}}, {"model": "wells.bcgs_numbers", "pk": 10328, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T21:13:11Z", "update_user": null, "update_date": null, "bcgs_number": "093G087324"}}, {"model": "wells.bcgs_numbers", "pk": 10329, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T21:15:22Z", "update_user": null, "update_date": null, "bcgs_number": "093F099143"}}, {"model": "wells.bcgs_numbers", "pk": 10330, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T21:22:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B096424"}}, {"model": "wells.bcgs_numbers", "pk": 10331, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T21:27:25Z", "update_user": null, "update_date": null, "bcgs_number": "103I089144"}}, {"model": "wells.bcgs_numbers", "pk": 10332, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T21:43:15Z", "update_user": null, "update_date": null, "bcgs_number": "092H011131"}}, {"model": "wells.bcgs_numbers", "pk": 10333, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T21:58:57Z", "update_user": null, "update_date": null, "bcgs_number": "092H011321"}}, {"model": "wells.bcgs_numbers", "pk": 10334, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "092G026413"}}, {"model": "wells.bcgs_numbers", "pk": 10335, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T22:35:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G035233"}}, {"model": "wells.bcgs_numbers", "pk": 10336, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-14T22:37:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G020111"}}, {"model": "wells.bcgs_numbers", "pk": 10337, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-16T18:28:44Z", "update_user": null, "update_date": null, "bcgs_number": "092F030124"}}, {"model": "wells.bcgs_numbers", "pk": 10338, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-16T18:32:01Z", "update_user": null, "update_date": null, "bcgs_number": "092F030213"}}, {"model": "wells.bcgs_numbers", "pk": 10339, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T18:40:11Z", "update_user": null, "update_date": null, "bcgs_number": "093B012231"}}, {"model": "wells.bcgs_numbers", "pk": 10340, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T18:45:26Z", "update_user": null, "update_date": null, "bcgs_number": "092B082111"}}, {"model": "wells.bcgs_numbers", "pk": 10341, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T18:54:26Z", "update_user": null, "update_date": null, "bcgs_number": "092E096343"}}, {"model": "wells.bcgs_numbers", "pk": 10342, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T22:27:10Z", "update_user": null, "update_date": null, "bcgs_number": "092C093423"}}, {"model": "wells.bcgs_numbers", "pk": 10343, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T22:27:21Z", "update_user": null, "update_date": null, "bcgs_number": "082N008143"}}, {"model": "wells.bcgs_numbers", "pk": 10344, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T22:27:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A045312"}}, {"model": "wells.bcgs_numbers", "pk": 10345, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T22:30:38Z", "update_user": null, "update_date": null, "bcgs_number": "092K014144"}}, {"model": "wells.bcgs_numbers", "pk": 10346, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T23:21:59Z", "update_user": null, "update_date": null, "bcgs_number": "092G052132"}}, {"model": "wells.bcgs_numbers", "pk": 10347, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T23:49:09Z", "update_user": null, "update_date": null, "bcgs_number": "092G051123"}}, {"model": "wells.bcgs_numbers", "pk": 10348, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-19T23:58:24Z", "update_user": null, "update_date": null, "bcgs_number": "092O100424"}}, {"model": "wells.bcgs_numbers", "pk": 10349, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T17:30:32Z", "update_user": null, "update_date": null, "bcgs_number": "092K007143"}}, {"model": "wells.bcgs_numbers", "pk": 10350, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:01:43Z", "update_user": "PROXY_WELLS", "update_date": "2013-04-24T16:20:42Z", "bcgs_number": "092K031322"}}, {"model": "wells.bcgs_numbers", "pk": 10351, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:02:17Z", "update_user": null, "update_date": null, "bcgs_number": "092P037131"}}, {"model": "wells.bcgs_numbers", "pk": 10352, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:03:06Z", "update_user": null, "update_date": null, "bcgs_number": "092P091313"}}, {"model": "wells.bcgs_numbers", "pk": 10353, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:03:27Z", "update_user": null, "update_date": null, "bcgs_number": "093A021224"}}, {"model": "wells.bcgs_numbers", "pk": 10354, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:05:32Z", "update_user": null, "update_date": null, "bcgs_number": "093B005113"}}, {"model": "wells.bcgs_numbers", "pk": 10355, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:06:10Z", "update_user": null, "update_date": null, "bcgs_number": "093B011134"}}, {"model": "wells.bcgs_numbers", "pk": 10356, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T18:49:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G043423"}}, {"model": "wells.bcgs_numbers", "pk": 10357, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T19:33:58Z", "update_user": null, "update_date": null, "bcgs_number": "092K007121"}}, {"model": "wells.bcgs_numbers", "pk": 10358, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T19:35:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F097342"}}, {"model": "wells.bcgs_numbers", "pk": 10359, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T19:37:36Z", "update_user": null, "update_date": null, "bcgs_number": "092G044314"}}, {"model": "wells.bcgs_numbers", "pk": 10360, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T20:00:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G044332"}}, {"model": "wells.bcgs_numbers", "pk": 10361, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T20:54:42Z", "update_user": null, "update_date": null, "bcgs_number": "092F097324"}}, {"model": "wells.bcgs_numbers", "pk": 10362, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-20T23:15:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I056443"}}, {"model": "wells.bcgs_numbers", "pk": 10363, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T17:51:21Z", "update_user": null, "update_date": null, "bcgs_number": "092I071441"}}, {"model": "wells.bcgs_numbers", "pk": 10364, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T17:52:00Z", "update_user": null, "update_date": null, "bcgs_number": "082I061343"}}, {"model": "wells.bcgs_numbers", "pk": 10365, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T18:17:09Z", "update_user": null, "update_date": null, "bcgs_number": "092G006331"}}, {"model": "wells.bcgs_numbers", "pk": 10366, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T20:28:10Z", "update_user": null, "update_date": null, "bcgs_number": "092O048244"}}, {"model": "wells.bcgs_numbers", "pk": 10367, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T20:53:38Z", "update_user": null, "update_date": null, "bcgs_number": "082E017241"}}, {"model": "wells.bcgs_numbers", "pk": 10368, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T20:57:05Z", "update_user": null, "update_date": null, "bcgs_number": "092K031211"}}, {"model": "wells.bcgs_numbers", "pk": 10369, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T20:59:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F024433"}}, {"model": "wells.bcgs_numbers", "pk": 10370, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T21:42:08Z", "update_user": null, "update_date": null, "bcgs_number": "082N028114"}}, {"model": "wells.bcgs_numbers", "pk": 10371, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-21T21:51:44Z", "update_user": null, "update_date": null, "bcgs_number": "092L056244"}}, {"model": "wells.bcgs_numbers", "pk": 10372, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-22T22:35:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E004112"}}, {"model": "wells.bcgs_numbers", "pk": 10373, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-23T19:35:10Z", "update_user": null, "update_date": null, "bcgs_number": "093H057314"}}, {"model": "wells.bcgs_numbers", "pk": 10374, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T18:20:35Z", "update_user": null, "update_date": null, "bcgs_number": "093B020312"}}, {"model": "wells.bcgs_numbers", "pk": 10375, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:06:21Z", "update_user": null, "update_date": null, "bcgs_number": "093B030413"}}, {"model": "wells.bcgs_numbers", "pk": 10376, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:16:42Z", "update_user": null, "update_date": null, "bcgs_number": "093B039223"}}, {"model": "wells.bcgs_numbers", "pk": 10377, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:17:25Z", "update_user": null, "update_date": null, "bcgs_number": "093B039243"}}, {"model": "wells.bcgs_numbers", "pk": 10378, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:17:52Z", "update_user": null, "update_date": null, "bcgs_number": "093B040432"}}, {"model": "wells.bcgs_numbers", "pk": 10379, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:18:24Z", "update_user": null, "update_date": null, "bcgs_number": "093B048424"}}, {"model": "wells.bcgs_numbers", "pk": 10380, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:18:52Z", "update_user": null, "update_date": null, "bcgs_number": "093B058223"}}, {"model": "wells.bcgs_numbers", "pk": 10381, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-26T21:19:17Z", "update_user": null, "update_date": null, "bcgs_number": "093B058224"}}, {"model": "wells.bcgs_numbers", "pk": 10382, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T17:07:39Z", "update_user": null, "update_date": null, "bcgs_number": "093J020112"}}, {"model": "wells.bcgs_numbers", "pk": 10383, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T20:32:45Z", "update_user": null, "update_date": null, "bcgs_number": "092C058444"}}, {"model": "wells.bcgs_numbers", "pk": 10384, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T20:36:35Z", "update_user": null, "update_date": null, "bcgs_number": "092C059333"}}, {"model": "wells.bcgs_numbers", "pk": 10385, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T21:28:34Z", "update_user": null, "update_date": null, "bcgs_number": "092C075213"}}, {"model": "wells.bcgs_numbers", "pk": 10386, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T21:55:20Z", "update_user": null, "update_date": null, "bcgs_number": "092K031123"}}, {"model": "wells.bcgs_numbers", "pk": 10387, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T22:15:26Z", "update_user": null, "update_date": null, "bcgs_number": "092F065414"}}, {"model": "wells.bcgs_numbers", "pk": 10388, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-27T22:38:09Z", "update_user": null, "update_date": null, "bcgs_number": "092K004124"}}, {"model": "wells.bcgs_numbers", "pk": 10389, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-28T04:06:13Z", "update_user": null, "update_date": null, "bcgs_number": "092K004234"}}, {"model": "wells.bcgs_numbers", "pk": 10390, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-28T04:09:07Z", "update_user": null, "update_date": null, "bcgs_number": "092K003243"}}, {"model": "wells.bcgs_numbers", "pk": 10391, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-28T04:11:12Z", "update_user": null, "update_date": null, "bcgs_number": "092L056232"}}, {"model": "wells.bcgs_numbers", "pk": 10392, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-01-30T22:21:02Z", "update_user": null, "update_date": null, "bcgs_number": "093G096424"}}, {"model": "wells.bcgs_numbers", "pk": 10393, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-02T22:23:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K059224"}}, {"model": "wells.bcgs_numbers", "pk": 10394, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-02T22:49:58Z", "update_user": null, "update_date": null, "bcgs_number": "092B064112"}}, {"model": "wells.bcgs_numbers", "pk": 10395, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-04T19:25:15Z", "update_user": null, "update_date": null, "bcgs_number": "093O037422"}}, {"model": "wells.bcgs_numbers", "pk": 10396, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-10T16:48:03Z", "update_user": null, "update_date": null, "bcgs_number": "093G070331"}}, {"model": "wells.bcgs_numbers", "pk": 10397, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-10T20:55:12Z", "update_user": null, "update_date": null, "bcgs_number": "094A061423"}}, {"model": "wells.bcgs_numbers", "pk": 10398, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-10T21:21:25Z", "update_user": null, "update_date": null, "bcgs_number": "094A071324"}}, {"model": "wells.bcgs_numbers", "pk": 10399, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-11T00:10:41Z", "update_user": null, "update_date": null, "bcgs_number": "093I086334"}}, {"model": "wells.bcgs_numbers", "pk": 10400, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-11T18:38:46Z", "update_user": null, "update_date": null, "bcgs_number": "094A071144"}}, {"model": "wells.bcgs_numbers", "pk": 10401, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T21:34:46Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T16:22:26Z", "bcgs_number": "092J047423"}}, {"model": "wells.bcgs_numbers", "pk": 10402, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T21:42:53Z", "update_user": null, "update_date": null, "bcgs_number": "092J058122"}}, {"model": "wells.bcgs_numbers", "pk": 10403, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T21:48:07Z", "update_user": null, "update_date": null, "bcgs_number": "092J047233"}}, {"model": "wells.bcgs_numbers", "pk": 10404, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T21:49:20Z", "update_user": null, "update_date": null, "bcgs_number": "092J057122"}}, {"model": "wells.bcgs_numbers", "pk": 10405, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T23:05:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I055313"}}, {"model": "wells.bcgs_numbers", "pk": 10406, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T23:40:19Z", "update_user": null, "update_date": null, "bcgs_number": "092J086231"}}, {"model": "wells.bcgs_numbers", "pk": 10407, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T23:40:57Z", "update_user": null, "update_date": null, "bcgs_number": "092J086243"}}, {"model": "wells.bcgs_numbers", "pk": 10408, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-17T23:42:56Z", "update_user": null, "update_date": null, "bcgs_number": "092J097113"}}, {"model": "wells.bcgs_numbers", "pk": 10409, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-18T00:23:11Z", "update_user": null, "update_date": null, "bcgs_number": "082L072211"}}, {"model": "wells.bcgs_numbers", "pk": 10410, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-18T21:03:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F088212"}}, {"model": "wells.bcgs_numbers", "pk": 10411, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-19T18:12:16Z", "update_user": null, "update_date": null, "bcgs_number": "092G054131"}}, {"model": "wells.bcgs_numbers", "pk": 10412, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-19T18:17:01Z", "update_user": null, "update_date": null, "bcgs_number": "092I096132"}}, {"model": "wells.bcgs_numbers", "pk": 10413, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-19T22:21:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F093332"}}, {"model": "wells.bcgs_numbers", "pk": 10414, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-19T22:36:34Z", "update_user": null, "update_date": null, "bcgs_number": "092J037132"}}, {"model": "wells.bcgs_numbers", "pk": 10415, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-20T17:56:34Z", "update_user": null, "update_date": null, "bcgs_number": "092F079432"}}, {"model": "wells.bcgs_numbers", "pk": 10416, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-20T23:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "082F003142"}}, {"model": "wells.bcgs_numbers", "pk": 10417, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-23T23:08:45Z", "update_user": null, "update_date": null, "bcgs_number": "093G087442"}}, {"model": "wells.bcgs_numbers", "pk": 10418, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-24T16:58:37Z", "update_user": null, "update_date": null, "bcgs_number": "092H017244"}}, {"model": "wells.bcgs_numbers", "pk": 10419, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-24T17:16:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G030331"}}, {"model": "wells.bcgs_numbers", "pk": 10420, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-27T19:12:17Z", "update_user": null, "update_date": null, "bcgs_number": "092G034133"}}, {"model": "wells.bcgs_numbers", "pk": 10421, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-27T23:35:41Z", "update_user": null, "update_date": null, "bcgs_number": "104G100212"}}, {"model": "wells.bcgs_numbers", "pk": 10422, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-27T23:36:00Z", "update_user": null, "update_date": null, "bcgs_number": "093K007114"}}, {"model": "wells.bcgs_numbers", "pk": 10423, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-02-27T23:36:33Z", "update_user": null, "update_date": null, "bcgs_number": "093H006323"}}, {"model": "wells.bcgs_numbers", "pk": 10424, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-10T18:08:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G050214"}}, {"model": "wells.bcgs_numbers", "pk": 10425, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-10T18:32:02Z", "update_user": null, "update_date": null, "bcgs_number": "082G005311"}}, {"model": "wells.bcgs_numbers", "pk": 10426, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T18:09:31Z", "update_user": null, "update_date": null, "bcgs_number": "082K011122"}}, {"model": "wells.bcgs_numbers", "pk": 10427, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:01:59Z", "update_user": null, "update_date": null, "bcgs_number": "082F014414"}}, {"model": "wells.bcgs_numbers", "pk": 10428, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:03:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K098234"}}, {"model": "wells.bcgs_numbers", "pk": 10429, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:07:58Z", "update_user": null, "update_date": null, "bcgs_number": "082E028221"}}, {"model": "wells.bcgs_numbers", "pk": 10430, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:09:15Z", "update_user": null, "update_date": null, "bcgs_number": "082E018131"}}, {"model": "wells.bcgs_numbers", "pk": 10431, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "082K001144"}}, {"model": "wells.bcgs_numbers", "pk": 10432, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:20:05Z", "update_user": null, "update_date": null, "bcgs_number": "093F095131"}}, {"model": "wells.bcgs_numbers", "pk": 10433, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:33:59Z", "update_user": null, "update_date": null, "bcgs_number": "082F044411"}}, {"model": "wells.bcgs_numbers", "pk": 10434, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:46:50Z", "update_user": null, "update_date": null, "bcgs_number": "093A024331"}}, {"model": "wells.bcgs_numbers", "pk": 10435, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:50:08Z", "update_user": null, "update_date": null, "bcgs_number": "092O075242"}}, {"model": "wells.bcgs_numbers", "pk": 10436, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T21:54:34Z", "update_user": null, "update_date": null, "bcgs_number": "092K059444"}}, {"model": "wells.bcgs_numbers", "pk": 10437, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "093G008332"}}, {"model": "wells.bcgs_numbers", "pk": 10438, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T22:07:18Z", "update_user": null, "update_date": null, "bcgs_number": "082F018214"}}, {"model": "wells.bcgs_numbers", "pk": 10439, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T22:16:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F054424"}}, {"model": "wells.bcgs_numbers", "pk": 10440, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T22:32:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H034341"}}, {"model": "wells.bcgs_numbers", "pk": 10441, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-11T22:36:49Z", "update_user": null, "update_date": null, "bcgs_number": "092L055421"}}, {"model": "wells.bcgs_numbers", "pk": 10442, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-12T16:33:38Z", "update_user": null, "update_date": null, "bcgs_number": "093K017213"}}, {"model": "wells.bcgs_numbers", "pk": 10443, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-12T16:36:06Z", "update_user": null, "update_date": null, "bcgs_number": "093F096323"}}, {"model": "wells.bcgs_numbers", "pk": 10444, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-13T18:55:50Z", "update_user": null, "update_date": null, "bcgs_number": "082N026332"}}, {"model": "wells.bcgs_numbers", "pk": 10445, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-13T18:57:55Z", "update_user": null, "update_date": null, "bcgs_number": "082J002212"}}, {"model": "wells.bcgs_numbers", "pk": 10446, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-13T19:00:11Z", "update_user": null, "update_date": null, "bcgs_number": "082N035442"}}, {"model": "wells.bcgs_numbers", "pk": 10447, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T16:14:00Z", "update_user": null, "update_date": null, "bcgs_number": "082L067213"}}, {"model": "wells.bcgs_numbers", "pk": 10448, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T16:35:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L003413"}}, {"model": "wells.bcgs_numbers", "pk": 10449, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T16:47:04Z", "update_user": null, "update_date": null, "bcgs_number": "082F037142"}}, {"model": "wells.bcgs_numbers", "pk": 10450, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T17:09:56Z", "update_user": null, "update_date": null, "bcgs_number": "082G086144"}}, {"model": "wells.bcgs_numbers", "pk": 10451, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T17:27:55Z", "update_user": null, "update_date": null, "bcgs_number": "082G043343"}}, {"model": "wells.bcgs_numbers", "pk": 10452, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T17:41:32Z", "update_user": null, "update_date": null, "bcgs_number": "082G086324"}}, {"model": "wells.bcgs_numbers", "pk": 10453, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T18:10:54Z", "update_user": null, "update_date": null, "bcgs_number": "082K079442"}}, {"model": "wells.bcgs_numbers", "pk": 10454, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T18:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "082K080333"}}, {"model": "wells.bcgs_numbers", "pk": 10455, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T23:22:25Z", "update_user": null, "update_date": null, "bcgs_number": "082F066233"}}, {"model": "wells.bcgs_numbers", "pk": 10456, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-16T23:24:15Z", "update_user": null, "update_date": null, "bcgs_number": "082F066323"}}, {"model": "wells.bcgs_numbers", "pk": 10457, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T16:40:20Z", "update_user": null, "update_date": null, "bcgs_number": "082F002332"}}, {"model": "wells.bcgs_numbers", "pk": 10458, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T17:56:12Z", "update_user": null, "update_date": null, "bcgs_number": "082F018132"}}, {"model": "wells.bcgs_numbers", "pk": 10459, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T18:11:48Z", "update_user": null, "update_date": null, "bcgs_number": "082F096231"}}, {"model": "wells.bcgs_numbers", "pk": 10460, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T18:33:03Z", "update_user": null, "update_date": null, "bcgs_number": "082J041212"}}, {"model": "wells.bcgs_numbers", "pk": 10461, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T20:43:07Z", "update_user": null, "update_date": null, "bcgs_number": "082G062441"}}, {"model": "wells.bcgs_numbers", "pk": 10462, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T20:55:47Z", "update_user": null, "update_date": null, "bcgs_number": "082G082143"}}, {"model": "wells.bcgs_numbers", "pk": 10463, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T21:06:23Z", "update_user": null, "update_date": null, "bcgs_number": "082G005241"}}, {"model": "wells.bcgs_numbers", "pk": 10464, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T21:40:03Z", "update_user": null, "update_date": null, "bcgs_number": "082G056343"}}, {"model": "wells.bcgs_numbers", "pk": 10465, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T21:41:32Z", "update_user": null, "update_date": null, "bcgs_number": "082G061414"}}, {"model": "wells.bcgs_numbers", "pk": 10466, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T22:49:00Z", "update_user": null, "update_date": null, "bcgs_number": "082G055214"}}, {"model": "wells.bcgs_numbers", "pk": 10467, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T22:51:31Z", "update_user": null, "update_date": null, "bcgs_number": "082G066322"}}, {"model": "wells.bcgs_numbers", "pk": 10468, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T23:00:19Z", "update_user": null, "update_date": null, "bcgs_number": "082G086211"}}, {"model": "wells.bcgs_numbers", "pk": 10469, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T23:31:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G072334"}}, {"model": "wells.bcgs_numbers", "pk": 10470, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T23:33:25Z", "update_user": null, "update_date": null, "bcgs_number": "082G076144"}}, {"model": "wells.bcgs_numbers", "pk": 10471, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-17T23:36:37Z", "update_user": null, "update_date": null, "bcgs_number": "082G096322"}}, {"model": "wells.bcgs_numbers", "pk": 10472, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T16:01:49Z", "update_user": null, "update_date": null, "bcgs_number": "092G025124"}}, {"model": "wells.bcgs_numbers", "pk": 10473, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T16:46:22Z", "update_user": null, "update_date": null, "bcgs_number": "092F070414"}}, {"model": "wells.bcgs_numbers", "pk": 10474, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T17:26:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H067424"}}, {"model": "wells.bcgs_numbers", "pk": 10475, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T17:30:00Z", "update_user": null, "update_date": null, "bcgs_number": "092H083421"}}, {"model": "wells.bcgs_numbers", "pk": 10476, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T17:32:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H083432"}}, {"model": "wells.bcgs_numbers", "pk": 10477, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T17:33:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H093221"}}, {"model": "wells.bcgs_numbers", "pk": 10478, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-18T23:01:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B043334"}}, {"model": "wells.bcgs_numbers", "pk": 10479, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T17:04:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F026312"}}, {"model": "wells.bcgs_numbers", "pk": 10480, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T17:07:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F026321"}}, {"model": "wells.bcgs_numbers", "pk": 10481, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T17:37:19Z", "update_user": null, "update_date": null, "bcgs_number": "092F066221"}}, {"model": "wells.bcgs_numbers", "pk": 10482, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T18:10:25Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T17:00:14Z", "bcgs_number": "092H048233"}}, {"model": "wells.bcgs_numbers", "pk": 10483, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T18:26:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E005323"}}, {"model": "wells.bcgs_numbers", "pk": 10484, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T18:48:06Z", "update_user": null, "update_date": null, "bcgs_number": "092H058413"}}, {"model": "wells.bcgs_numbers", "pk": 10485, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T19:02:01Z", "update_user": null, "update_date": null, "bcgs_number": "092G090141"}}, {"model": "wells.bcgs_numbers", "pk": 10486, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T19:27:19Z", "update_user": null, "update_date": null, "bcgs_number": "082F001441"}}, {"model": "wells.bcgs_numbers", "pk": 10487, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T19:44:51Z", "update_user": null, "update_date": null, "bcgs_number": "093K006441"}}, {"model": "wells.bcgs_numbers", "pk": 10488, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T22:55:16Z", "update_user": null, "update_date": null, "bcgs_number": "092I071221"}}, {"model": "wells.bcgs_numbers", "pk": 10489, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T23:02:40Z", "update_user": null, "update_date": null, "bcgs_number": "092I062111"}}, {"model": "wells.bcgs_numbers", "pk": 10490, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T23:03:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I052123"}}, {"model": "wells.bcgs_numbers", "pk": 10491, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T23:06:22Z", "update_user": null, "update_date": null, "bcgs_number": "092P022234"}}, {"model": "wells.bcgs_numbers", "pk": 10492, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T23:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H050331"}}, {"model": "wells.bcgs_numbers", "pk": 10493, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-23T23:19:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H018311"}}, {"model": "wells.bcgs_numbers", "pk": 10494, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T16:42:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E005441"}}, {"model": "wells.bcgs_numbers", "pk": 10495, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T16:46:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G050233"}}, {"model": "wells.bcgs_numbers", "pk": 10496, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T16:50:23Z", "update_user": null, "update_date": null, "bcgs_number": "082E007413"}}, {"model": "wells.bcgs_numbers", "pk": 10497, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T16:58:28Z", "update_user": null, "update_date": null, "bcgs_number": "092L058333"}}, {"model": "wells.bcgs_numbers", "pk": 10498, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T17:02:31Z", "update_user": null, "update_date": null, "bcgs_number": "092L091123"}}, {"model": "wells.bcgs_numbers", "pk": 10499, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T17:26:32Z", "update_user": null, "update_date": null, "bcgs_number": "094I022343"}}, {"model": "wells.bcgs_numbers", "pk": 10500, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T17:42:54Z", "update_user": null, "update_date": null, "bcgs_number": "082E016122"}}, {"model": "wells.bcgs_numbers", "pk": 10501, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T17:44:59Z", "update_user": null, "update_date": null, "bcgs_number": "082E016233"}}, {"model": "wells.bcgs_numbers", "pk": 10502, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T17:46:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E017232"}}, {"model": "wells.bcgs_numbers", "pk": 10503, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T17:50:38Z", "update_user": null, "update_date": null, "bcgs_number": "082E018314"}}, {"model": "wells.bcgs_numbers", "pk": 10504, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T18:41:05Z", "update_user": null, "update_date": null, "bcgs_number": "082E035241"}}, {"model": "wells.bcgs_numbers", "pk": 10505, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T18:59:47Z", "update_user": null, "update_date": null, "bcgs_number": "082E056224"}}, {"model": "wells.bcgs_numbers", "pk": 10506, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T19:31:37Z", "update_user": null, "update_date": null, "bcgs_number": "082E075311"}}, {"model": "wells.bcgs_numbers", "pk": 10507, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-24T21:09:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B081312"}}, {"model": "wells.bcgs_numbers", "pk": 10508, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-25T19:07:52Z", "update_user": null, "update_date": null, "bcgs_number": "092E096434"}}, {"model": "wells.bcgs_numbers", "pk": 10509, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-25T19:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "092L067222"}}, {"model": "wells.bcgs_numbers", "pk": 10510, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-25T19:17:17Z", "update_user": null, "update_date": null, "bcgs_number": "092P066344"}}, {"model": "wells.bcgs_numbers", "pk": 10511, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-03-25T22:20:17Z", "update_user": null, "update_date": null, "bcgs_number": "092G061312"}}, {"model": "wells.bcgs_numbers", "pk": 10512, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-02T18:49:39Z", "update_user": null, "update_date": null, "bcgs_number": "082F042224"}}, {"model": "wells.bcgs_numbers", "pk": 10513, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-02T19:02:10Z", "update_user": null, "update_date": null, "bcgs_number": "092E070341"}}, {"model": "wells.bcgs_numbers", "pk": 10514, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-02T19:30:10Z", "update_user": null, "update_date": null, "bcgs_number": "092I089413"}}, {"model": "wells.bcgs_numbers", "pk": 10515, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-02T19:52:25Z", "update_user": null, "update_date": null, "bcgs_number": "092F036341"}}, {"model": "wells.bcgs_numbers", "pk": 10516, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-06T19:55:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F047213"}}, {"model": "wells.bcgs_numbers", "pk": 10517, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-07T17:25:40Z", "update_user": null, "update_date": null, "bcgs_number": "092B073324"}}, {"model": "wells.bcgs_numbers", "pk": 10518, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-07T17:29:51Z", "update_user": null, "update_date": null, "bcgs_number": "092B043411"}}, {"model": "wells.bcgs_numbers", "pk": 10519, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-07T18:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "092B043224"}}, {"model": "wells.bcgs_numbers", "pk": 10520, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-08T18:26:00Z", "update_user": null, "update_date": null, "bcgs_number": "082F037341"}}, {"model": "wells.bcgs_numbers", "pk": 10521, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-08T18:36:01Z", "update_user": null, "update_date": null, "bcgs_number": "082F002421"}}, {"model": "wells.bcgs_numbers", "pk": 10522, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-09T18:28:53Z", "update_user": null, "update_date": null, "bcgs_number": "082F008443"}}, {"model": "wells.bcgs_numbers", "pk": 10523, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-14T20:03:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B083222"}}, {"model": "wells.bcgs_numbers", "pk": 10524, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-15T18:57:44Z", "update_user": null, "update_date": null, "bcgs_number": "082F020223"}}, {"model": "wells.bcgs_numbers", "pk": 10525, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-20T17:32:39Z", "update_user": null, "update_date": null, "bcgs_number": "082K020424"}}, {"model": "wells.bcgs_numbers", "pk": 10526, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-20T17:34:20Z", "update_user": null, "update_date": null, "bcgs_number": "082K098423"}}, {"model": "wells.bcgs_numbers", "pk": 10527, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-20T19:07:05Z", "update_user": null, "update_date": null, "bcgs_number": "104B099441"}}, {"model": "wells.bcgs_numbers", "pk": 10528, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-20T19:30:39Z", "update_user": null, "update_date": null, "bcgs_number": "104A014111"}}, {"model": "wells.bcgs_numbers", "pk": 10529, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-20T20:26:59Z", "update_user": null, "update_date": null, "bcgs_number": "104P022234"}}, {"model": "wells.bcgs_numbers", "pk": 10530, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-21T16:44:27Z", "update_user": null, "update_date": null, "bcgs_number": "082J002112"}}, {"model": "wells.bcgs_numbers", "pk": 10531, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-21T16:50:17Z", "update_user": null, "update_date": null, "bcgs_number": "082K070122"}}, {"model": "wells.bcgs_numbers", "pk": 10532, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-21T17:08:44Z", "update_user": null, "update_date": null, "bcgs_number": "082F007443"}}, {"model": "wells.bcgs_numbers", "pk": 10533, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-21T17:29:53Z", "update_user": null, "update_date": null, "bcgs_number": "082N017313"}}, {"model": "wells.bcgs_numbers", "pk": 10534, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-21T17:45:39Z", "update_user": null, "update_date": null, "bcgs_number": "082N034141"}}, {"model": "wells.bcgs_numbers", "pk": 10535, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-22T21:06:48Z", "update_user": null, "update_date": null, "bcgs_number": "082K089221"}}, {"model": "wells.bcgs_numbers", "pk": 10536, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-23T18:25:56Z", "update_user": null, "update_date": null, "bcgs_number": "082G041214"}}, {"model": "wells.bcgs_numbers", "pk": 10537, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T15:06:51Z", "update_user": null, "update_date": null, "bcgs_number": "093G067444"}}, {"model": "wells.bcgs_numbers", "pk": 10538, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T15:18:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G078314"}}, {"model": "wells.bcgs_numbers", "pk": 10539, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T15:42:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G088143"}}, {"model": "wells.bcgs_numbers", "pk": 10540, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T15:44:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G088312"}}, {"model": "wells.bcgs_numbers", "pk": 10541, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T16:13:47Z", "update_user": null, "update_date": null, "bcgs_number": "093J009123"}}, {"model": "wells.bcgs_numbers", "pk": 10542, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T16:15:20Z", "update_user": null, "update_date": null, "bcgs_number": "093J015122"}}, {"model": "wells.bcgs_numbers", "pk": 10543, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T16:17:33Z", "update_user": null, "update_date": null, "bcgs_number": "093K096232"}}, {"model": "wells.bcgs_numbers", "pk": 10544, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T16:24:10Z", "update_user": null, "update_date": null, "bcgs_number": "093G057432"}}, {"model": "wells.bcgs_numbers", "pk": 10545, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-24T17:43:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A076133"}}, {"model": "wells.bcgs_numbers", "pk": 10546, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-28T17:41:38Z", "update_user": null, "update_date": null, "bcgs_number": "082L073432"}}, {"model": "wells.bcgs_numbers", "pk": 10547, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-28T17:43:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L074333"}}, {"model": "wells.bcgs_numbers", "pk": 10548, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T16:55:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G089424"}}, {"model": "wells.bcgs_numbers", "pk": 10549, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T18:04:06Z", "update_user": null, "update_date": null, "bcgs_number": "092K006242"}}, {"model": "wells.bcgs_numbers", "pk": 10550, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T18:10:07Z", "update_user": null, "update_date": null, "bcgs_number": "092I099443"}}, {"model": "wells.bcgs_numbers", "pk": 10551, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T18:23:00Z", "update_user": null, "update_date": null, "bcgs_number": "082M070132"}}, {"model": "wells.bcgs_numbers", "pk": 10552, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T18:25:14Z", "update_user": null, "update_date": null, "bcgs_number": "082G082221"}}, {"model": "wells.bcgs_numbers", "pk": 10553, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T18:27:58Z", "update_user": null, "update_date": null, "bcgs_number": "104P098142"}}, {"model": "wells.bcgs_numbers", "pk": 10554, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T18:41:18Z", "update_user": null, "update_date": null, "bcgs_number": "082G071422"}}, {"model": "wells.bcgs_numbers", "pk": 10555, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T19:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I046313"}}, {"model": "wells.bcgs_numbers", "pk": 10556, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T19:08:30Z", "update_user": null, "update_date": null, "bcgs_number": "092J079122"}}, {"model": "wells.bcgs_numbers", "pk": 10557, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T19:46:18Z", "update_user": null, "update_date": null, "bcgs_number": "093H057244"}}, {"model": "wells.bcgs_numbers", "pk": 10558, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T19:47:48Z", "update_user": null, "update_date": null, "bcgs_number": "093H062322"}}, {"model": "wells.bcgs_numbers", "pk": 10559, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:09:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E090312"}}, {"model": "wells.bcgs_numbers", "pk": 10560, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:13:33Z", "update_user": null, "update_date": null, "bcgs_number": "082E097411"}}, {"model": "wells.bcgs_numbers", "pk": 10561, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:26:03Z", "update_user": null, "update_date": null, "bcgs_number": "092L071334"}}, {"model": "wells.bcgs_numbers", "pk": 10562, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:27:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F097314"}}, {"model": "wells.bcgs_numbers", "pk": 10563, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:37:19Z", "update_user": null, "update_date": null, "bcgs_number": "092P002412"}}, {"model": "wells.bcgs_numbers", "pk": 10564, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:39:27Z", "update_user": null, "update_date": null, "bcgs_number": "092P059321"}}, {"model": "wells.bcgs_numbers", "pk": 10565, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:51:09Z", "update_user": null, "update_date": null, "bcgs_number": "092B009442"}}, {"model": "wells.bcgs_numbers", "pk": 10566, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T20:56:54Z", "update_user": null, "update_date": null, "bcgs_number": "092L070333"}}, {"model": "wells.bcgs_numbers", "pk": 10567, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T21:07:39Z", "update_user": null, "update_date": null, "bcgs_number": "092H093411"}}, {"model": "wells.bcgs_numbers", "pk": 10568, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T21:14:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H083441"}}, {"model": "wells.bcgs_numbers", "pk": 10569, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T22:44:32Z", "update_user": null, "update_date": null, "bcgs_number": "092J055222"}}, {"model": "wells.bcgs_numbers", "pk": 10570, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-04T22:46:33Z", "update_user": null, "update_date": null, "bcgs_number": "092G095332"}}, {"model": "wells.bcgs_numbers", "pk": 10571, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T15:19:47Z", "update_user": null, "update_date": null, "bcgs_number": "082N001134"}}, {"model": "wells.bcgs_numbers", "pk": 10572, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T15:23:09Z", "update_user": null, "update_date": null, "bcgs_number": "082G053114"}}, {"model": "wells.bcgs_numbers", "pk": 10573, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T15:37:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E004211"}}, {"model": "wells.bcgs_numbers", "pk": 10574, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T16:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092J037321"}}, {"model": "wells.bcgs_numbers", "pk": 10575, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T17:03:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B044131"}}, {"model": "wells.bcgs_numbers", "pk": 10576, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T17:21:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F088242"}}, {"model": "wells.bcgs_numbers", "pk": 10577, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T20:39:39Z", "update_user": null, "update_date": null, "bcgs_number": "092G044143"}}, {"model": "wells.bcgs_numbers", "pk": 10578, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-05T21:48:51Z", "update_user": null, "update_date": null, "bcgs_number": "082G051444"}}, {"model": "wells.bcgs_numbers", "pk": 10579, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-06T16:01:36Z", "update_user": null, "update_date": null, "bcgs_number": "093B040211"}}, {"model": "wells.bcgs_numbers", "pk": 10580, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-06T16:19:21Z", "update_user": null, "update_date": null, "bcgs_number": "093A034132"}}, {"model": "wells.bcgs_numbers", "pk": 10581, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-06T16:29:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I026211"}}, {"model": "wells.bcgs_numbers", "pk": 10582, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-06T18:02:12Z", "update_user": null, "update_date": null, "bcgs_number": "093B039111"}}, {"model": "wells.bcgs_numbers", "pk": 10583, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-06T18:17:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G005433"}}, {"model": "wells.bcgs_numbers", "pk": 10584, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-08T15:12:46Z", "update_user": null, "update_date": null, "bcgs_number": "092F057111"}}, {"model": "wells.bcgs_numbers", "pk": 10585, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-08T15:36:52Z", "update_user": null, "update_date": null, "bcgs_number": "092H053222"}}, {"model": "wells.bcgs_numbers", "pk": 10586, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-08T15:40:56Z", "update_user": null, "update_date": null, "bcgs_number": "092O098231"}}, {"model": "wells.bcgs_numbers", "pk": 10587, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-08T17:12:56Z", "update_user": null, "update_date": null, "bcgs_number": "092J037112"}}, {"model": "wells.bcgs_numbers", "pk": 10588, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-08T17:16:50Z", "update_user": null, "update_date": null, "bcgs_number": "092J036243"}}, {"model": "wells.bcgs_numbers", "pk": 10589, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T15:32:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L061423"}}, {"model": "wells.bcgs_numbers", "pk": 10590, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T16:43:48Z", "update_user": null, "update_date": null, "bcgs_number": "092L033241"}}, {"model": "wells.bcgs_numbers", "pk": 10591, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T16:48:23Z", "update_user": null, "update_date": null, "bcgs_number": "092K021423"}}, {"model": "wells.bcgs_numbers", "pk": 10592, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T16:58:18Z", "update_user": null, "update_date": null, "bcgs_number": "092B031414"}}, {"model": "wells.bcgs_numbers", "pk": 10593, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:00:19Z", "update_user": null, "update_date": null, "bcgs_number": "092C087412"}}, {"model": "wells.bcgs_numbers", "pk": 10594, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:11:02Z", "update_user": null, "update_date": null, "bcgs_number": "092L073124"}}, {"model": "wells.bcgs_numbers", "pk": 10595, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:27:40Z", "update_user": null, "update_date": null, "bcgs_number": "092G085123"}}, {"model": "wells.bcgs_numbers", "pk": 10596, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:35:35Z", "update_user": null, "update_date": null, "bcgs_number": "092B062143"}}, {"model": "wells.bcgs_numbers", "pk": 10597, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:40:00Z", "update_user": null, "update_date": null, "bcgs_number": "102I070413"}}, {"model": "wells.bcgs_numbers", "pk": 10598, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:43:25Z", "update_user": null, "update_date": null, "bcgs_number": "102I070422"}}, {"model": "wells.bcgs_numbers", "pk": 10599, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T17:49:02Z", "update_user": null, "update_date": null, "bcgs_number": "092I052332"}}, {"model": "wells.bcgs_numbers", "pk": 10600, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T18:05:40Z", "update_user": null, "update_date": null, "bcgs_number": "093I078314"}}, {"model": "wells.bcgs_numbers", "pk": 10601, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T18:08:23Z", "update_user": null, "update_date": null, "bcgs_number": "093F077114"}}, {"model": "wells.bcgs_numbers", "pk": 10602, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T18:30:02Z", "update_user": null, "update_date": null, "bcgs_number": "092L064221"}}, {"model": "wells.bcgs_numbers", "pk": 10603, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T19:16:36Z", "update_user": null, "update_date": null, "bcgs_number": "092L063114"}}, {"model": "wells.bcgs_numbers", "pk": 10604, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-11T21:38:26Z", "update_user": null, "update_date": null, "bcgs_number": "092B063322"}}, {"model": "wells.bcgs_numbers", "pk": 10605, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-12T15:28:55Z", "update_user": null, "update_date": null, "bcgs_number": "092B031334"}}, {"model": "wells.bcgs_numbers", "pk": 10606, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-12T18:50:02Z", "update_user": null, "update_date": null, "bcgs_number": "082F054121"}}, {"model": "wells.bcgs_numbers", "pk": 10607, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T16:14:41Z", "update_user": null, "update_date": null, "bcgs_number": "092F066312"}}, {"model": "wells.bcgs_numbers", "pk": 10608, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T17:52:39Z", "update_user": null, "update_date": null, "bcgs_number": "092G046412"}}, {"model": "wells.bcgs_numbers", "pk": 10609, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T18:21:40Z", "update_user": null, "update_date": null, "bcgs_number": "093A011111"}}, {"model": "wells.bcgs_numbers", "pk": 10610, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T18:23:49Z", "update_user": null, "update_date": null, "bcgs_number": "092N050214"}}, {"model": "wells.bcgs_numbers", "pk": 10611, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T18:27:22Z", "update_user": null, "update_date": null, "bcgs_number": "083D093244"}}, {"model": "wells.bcgs_numbers", "pk": 10612, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T18:31:35Z", "update_user": null, "update_date": null, "bcgs_number": "094C067143"}}, {"model": "wells.bcgs_numbers", "pk": 10613, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T19:55:35Z", "update_user": null, "update_date": null, "bcgs_number": "092P032314"}}, {"model": "wells.bcgs_numbers", "pk": 10614, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-13T20:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "094C029311"}}, {"model": "wells.bcgs_numbers", "pk": 10615, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-14T17:15:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G074331"}}, {"model": "wells.bcgs_numbers", "pk": 10616, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-14T19:56:41Z", "update_user": null, "update_date": null, "bcgs_number": "082F052223"}}, {"model": "wells.bcgs_numbers", "pk": 10617, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-19T18:07:25Z", "update_user": null, "update_date": null, "bcgs_number": "093B010142"}}, {"model": "wells.bcgs_numbers", "pk": 10618, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-05-19T18:35:39Z", "update_user": null, "update_date": null, "bcgs_number": "093B086214"}}, {"model": "wells.bcgs_numbers", "pk": 10619, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-09T16:58:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I090232"}}, {"model": "wells.bcgs_numbers", "pk": 10620, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-10T14:54:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E064313"}}, {"model": "wells.bcgs_numbers", "pk": 10621, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-10T15:39:17Z", "update_user": null, "update_date": null, "bcgs_number": "082E064311"}}, {"model": "wells.bcgs_numbers", "pk": 10622, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-10T19:17:45Z", "update_user": null, "update_date": null, "bcgs_number": "092G050232"}}, {"model": "wells.bcgs_numbers", "pk": 10623, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-10T19:32:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F013214"}}, {"model": "wells.bcgs_numbers", "pk": 10624, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-10T19:43:51Z", "update_user": null, "update_date": null, "bcgs_number": "082G045434"}}, {"model": "wells.bcgs_numbers", "pk": 10625, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-10T22:09:32Z", "update_user": null, "update_date": null, "bcgs_number": "093F084313"}}, {"model": "wells.bcgs_numbers", "pk": 10626, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T16:48:06Z", "update_user": null, "update_date": null, "bcgs_number": "082J021211"}}, {"model": "wells.bcgs_numbers", "pk": 10627, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T16:58:29Z", "update_user": null, "update_date": null, "bcgs_number": "082J041134"}}, {"model": "wells.bcgs_numbers", "pk": 10628, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T19:03:31Z", "update_user": null, "update_date": null, "bcgs_number": "082J060223"}}, {"model": "wells.bcgs_numbers", "pk": 10629, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T19:19:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F017222"}}, {"model": "wells.bcgs_numbers", "pk": 10630, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T19:22:48Z", "update_user": null, "update_date": null, "bcgs_number": "082F019413"}}, {"model": "wells.bcgs_numbers", "pk": 10631, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T19:28:55Z", "update_user": null, "update_date": null, "bcgs_number": "082F094312"}}, {"model": "wells.bcgs_numbers", "pk": 10632, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T19:39:01Z", "update_user": null, "update_date": null, "bcgs_number": "093A007333"}}, {"model": "wells.bcgs_numbers", "pk": 10633, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T20:40:21Z", "update_user": null, "update_date": null, "bcgs_number": "093A041412"}}, {"model": "wells.bcgs_numbers", "pk": 10634, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-11T20:47:15Z", "update_user": null, "update_date": null, "bcgs_number": "092O097411"}}, {"model": "wells.bcgs_numbers", "pk": 10635, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-15T15:22:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O100324"}}, {"model": "wells.bcgs_numbers", "pk": 10636, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-15T15:41:02Z", "update_user": null, "update_date": null, "bcgs_number": "082K050421"}}, {"model": "wells.bcgs_numbers", "pk": 10637, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T18:03:40Z", "update_user": null, "update_date": null, "bcgs_number": "092B052423"}}, {"model": "wells.bcgs_numbers", "pk": 10638, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T20:46:35Z", "update_user": null, "update_date": null, "bcgs_number": "092I055222"}}, {"model": "wells.bcgs_numbers", "pk": 10639, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T20:47:39Z", "update_user": null, "update_date": null, "bcgs_number": "092I056111"}}, {"model": "wells.bcgs_numbers", "pk": 10640, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T20:49:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I064413"}}, {"model": "wells.bcgs_numbers", "pk": 10641, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T20:54:08Z", "update_user": null, "update_date": null, "bcgs_number": "092I074243"}}, {"model": "wells.bcgs_numbers", "pk": 10642, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:06:52Z", "update_user": null, "update_date": null, "bcgs_number": "092J036242"}}, {"model": "wells.bcgs_numbers", "pk": 10643, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:30:39Z", "update_user": null, "update_date": null, "bcgs_number": "093B005131"}}, {"model": "wells.bcgs_numbers", "pk": 10644, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:34:57Z", "update_user": null, "update_date": null, "bcgs_number": "093B010222"}}, {"model": "wells.bcgs_numbers", "pk": 10645, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:40:41Z", "update_user": null, "update_date": null, "bcgs_number": "093B014221"}}, {"model": "wells.bcgs_numbers", "pk": 10646, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:43:32Z", "update_user": null, "update_date": null, "bcgs_number": "093B019121"}}, {"model": "wells.bcgs_numbers", "pk": 10647, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:55:20Z", "update_user": null, "update_date": null, "bcgs_number": "093B020441"}}, {"model": "wells.bcgs_numbers", "pk": 10648, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T21:56:39Z", "update_user": null, "update_date": null, "bcgs_number": "093B025211"}}, {"model": "wells.bcgs_numbers", "pk": 10649, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T22:06:01Z", "update_user": null, "update_date": null, "bcgs_number": "093B058431"}}, {"model": "wells.bcgs_numbers", "pk": 10650, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T22:07:30Z", "update_user": null, "update_date": null, "bcgs_number": "093B078141"}}, {"model": "wells.bcgs_numbers", "pk": 10651, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-17T22:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "093B008114"}}, {"model": "wells.bcgs_numbers", "pk": 10652, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T14:34:31Z", "update_user": null, "update_date": null, "bcgs_number": "093A042344"}}, {"model": "wells.bcgs_numbers", "pk": 10653, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T14:56:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P092132"}}, {"model": "wells.bcgs_numbers", "pk": 10654, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T15:00:03Z", "update_user": null, "update_date": null, "bcgs_number": "092L055344"}}, {"model": "wells.bcgs_numbers", "pk": 10655, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T15:31:12Z", "update_user": null, "update_date": null, "bcgs_number": "092H048131"}}, {"model": "wells.bcgs_numbers", "pk": 10656, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T16:01:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H069342"}}, {"model": "wells.bcgs_numbers", "pk": 10657, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T16:14:28Z", "update_user": null, "update_date": null, "bcgs_number": "092J046323"}}, {"model": "wells.bcgs_numbers", "pk": 10658, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T16:15:37Z", "update_user": null, "update_date": null, "bcgs_number": "092J047213"}}, {"model": "wells.bcgs_numbers", "pk": 10659, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T16:20:05Z", "update_user": null, "update_date": null, "bcgs_number": "092J058313"}}, {"model": "wells.bcgs_numbers", "pk": 10660, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T21:46:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I070324"}}, {"model": "wells.bcgs_numbers", "pk": 10661, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-18T22:03:47Z", "update_user": null, "update_date": null, "bcgs_number": "092P003211"}}, {"model": "wells.bcgs_numbers", "pk": 10662, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-22T15:42:25Z", "update_user": null, "update_date": null, "bcgs_number": "092F027311"}}, {"model": "wells.bcgs_numbers", "pk": 10663, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T14:53:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G025143"}}, {"model": "wells.bcgs_numbers", "pk": 10664, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T15:22:29Z", "update_user": null, "update_date": null, "bcgs_number": "092F005223"}}, {"model": "wells.bcgs_numbers", "pk": 10665, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T15:26:23Z", "update_user": null, "update_date": null, "bcgs_number": "092F027332"}}, {"model": "wells.bcgs_numbers", "pk": 10666, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T15:33:31Z", "update_user": null, "update_date": null, "bcgs_number": "092F051111"}}, {"model": "wells.bcgs_numbers", "pk": 10667, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T16:21:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G043142"}}, {"model": "wells.bcgs_numbers", "pk": 10668, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T16:30:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G044311"}}, {"model": "wells.bcgs_numbers", "pk": 10669, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T16:51:12Z", "update_user": null, "update_date": null, "bcgs_number": "092H033424"}}, {"model": "wells.bcgs_numbers", "pk": 10670, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T17:15:57Z", "update_user": null, "update_date": null, "bcgs_number": "093A033114"}}, {"model": "wells.bcgs_numbers", "pk": 10671, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T17:57:59Z", "update_user": null, "update_date": null, "bcgs_number": "093B039313"}}, {"model": "wells.bcgs_numbers", "pk": 10672, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T18:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "093B049144"}}, {"model": "wells.bcgs_numbers", "pk": 10673, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T18:01:36Z", "update_user": null, "update_date": null, "bcgs_number": "093B058222"}}, {"model": "wells.bcgs_numbers", "pk": 10674, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T18:45:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L051234"}}, {"model": "wells.bcgs_numbers", "pk": 10675, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T18:48:39Z", "update_user": null, "update_date": null, "bcgs_number": "082L064421"}}, {"model": "wells.bcgs_numbers", "pk": 10676, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T18:50:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L084134"}}, {"model": "wells.bcgs_numbers", "pk": 10677, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T18:56:40Z", "update_user": null, "update_date": null, "bcgs_number": "082L095324"}}, {"model": "wells.bcgs_numbers", "pk": 10678, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T19:02:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L061443"}}, {"model": "wells.bcgs_numbers", "pk": 10679, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-23T21:26:41Z", "update_user": null, "update_date": null, "bcgs_number": "092K014114"}}, {"model": "wells.bcgs_numbers", "pk": 10680, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-24T17:38:58Z", "update_user": null, "update_date": null, "bcgs_number": "092F035142"}}, {"model": "wells.bcgs_numbers", "pk": 10681, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-24T17:39:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F035144"}}, {"model": "wells.bcgs_numbers", "pk": 10682, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T15:39:55Z", "update_user": null, "update_date": null, "bcgs_number": "092P010221"}}, {"model": "wells.bcgs_numbers", "pk": 10683, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T16:30:35Z", "update_user": null, "update_date": null, "bcgs_number": "092I081441"}}, {"model": "wells.bcgs_numbers", "pk": 10684, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T16:33:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I082321"}}, {"model": "wells.bcgs_numbers", "pk": 10685, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T16:34:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I083114"}}, {"model": "wells.bcgs_numbers", "pk": 10686, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T16:35:39Z", "update_user": null, "update_date": null, "bcgs_number": "092I083324"}}, {"model": "wells.bcgs_numbers", "pk": 10687, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T16:36:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I083342"}}, {"model": "wells.bcgs_numbers", "pk": 10688, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T16:45:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I064123"}}, {"model": "wells.bcgs_numbers", "pk": 10689, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T17:02:31Z", "update_user": null, "update_date": null, "bcgs_number": "092I080131"}}, {"model": "wells.bcgs_numbers", "pk": 10690, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T17:27:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E045342"}}, {"model": "wells.bcgs_numbers", "pk": 10691, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T17:29:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E051222"}}, {"model": "wells.bcgs_numbers", "pk": 10692, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T17:54:37Z", "update_user": null, "update_date": null, "bcgs_number": "082L047141"}}, {"model": "wells.bcgs_numbers", "pk": 10693, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T17:59:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L046121"}}, {"model": "wells.bcgs_numbers", "pk": 10694, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-29T20:06:17Z", "update_user": null, "update_date": null, "bcgs_number": "103F020344"}}, {"model": "wells.bcgs_numbers", "pk": 10695, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-30T14:37:26Z", "update_user": null, "update_date": null, "bcgs_number": "103I068242"}}, {"model": "wells.bcgs_numbers", "pk": 10696, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T16:59:06Z", "update_user": null, "update_date": null, "bcgs_number": "092I047422"}}, {"model": "wells.bcgs_numbers", "pk": 10697, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:10:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G061211"}}, {"model": "wells.bcgs_numbers", "pk": 10698, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:11:35Z", "update_user": null, "update_date": null, "bcgs_number": "092G042341"}}, {"model": "wells.bcgs_numbers", "pk": 10699, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:38:10Z", "update_user": null, "update_date": null, "bcgs_number": "092N069113"}}, {"model": "wells.bcgs_numbers", "pk": 10700, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:41:28Z", "update_user": null, "update_date": null, "bcgs_number": "092N098111"}}, {"model": "wells.bcgs_numbers", "pk": 10701, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:54:15Z", "update_user": null, "update_date": null, "bcgs_number": "082M002313"}}, {"model": "wells.bcgs_numbers", "pk": 10702, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:57:07Z", "update_user": null, "update_date": null, "bcgs_number": "082M011422"}}, {"model": "wells.bcgs_numbers", "pk": 10703, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-02T17:59:23Z", "update_user": null, "update_date": null, "bcgs_number": "082M061121"}}, {"model": "wells.bcgs_numbers", "pk": 10704, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-03T17:31:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H053241"}}, {"model": "wells.bcgs_numbers", "pk": 10705, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T15:52:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G034444"}}, {"model": "wells.bcgs_numbers", "pk": 10706, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T16:15:38Z", "update_user": null, "update_date": null, "bcgs_number": "092G036111"}}, {"model": "wells.bcgs_numbers", "pk": 10707, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T16:18:59Z", "update_user": null, "update_date": null, "bcgs_number": "092G026442"}}, {"model": "wells.bcgs_numbers", "pk": 10708, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T17:06:56Z", "update_user": null, "update_date": null, "bcgs_number": "082L015112"}}, {"model": "wells.bcgs_numbers", "pk": 10709, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T17:19:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L057144"}}, {"model": "wells.bcgs_numbers", "pk": 10710, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T17:30:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G041231"}}, {"model": "wells.bcgs_numbers", "pk": 10711, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T17:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "082G052244"}}, {"model": "wells.bcgs_numbers", "pk": 10712, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T17:57:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L051331"}}, {"model": "wells.bcgs_numbers", "pk": 10713, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-08T18:06:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L094431"}}, {"model": "wells.bcgs_numbers", "pk": 10714, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T17:15:51Z", "update_user": null, "update_date": null, "bcgs_number": "093B004423"}}, {"model": "wells.bcgs_numbers", "pk": 10715, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T17:42:59Z", "update_user": null, "update_date": null, "bcgs_number": "093B030221"}}, {"model": "wells.bcgs_numbers", "pk": 10716, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T17:44:55Z", "update_user": null, "update_date": null, "bcgs_number": "093B030322"}}, {"model": "wells.bcgs_numbers", "pk": 10717, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "092P081434"}}, {"model": "wells.bcgs_numbers", "pk": 10718, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I063131"}}, {"model": "wells.bcgs_numbers", "pk": 10719, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I063311"}}, {"model": "wells.bcgs_numbers", "pk": 10720, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:15:10Z", "update_user": null, "update_date": null, "bcgs_number": "092I064433"}}, {"model": "wells.bcgs_numbers", "pk": 10721, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:20:42Z", "update_user": null, "update_date": null, "bcgs_number": "092O060333"}}, {"model": "wells.bcgs_numbers", "pk": 10722, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:23:19Z", "update_user": null, "update_date": null, "bcgs_number": "092O100444"}}, {"model": "wells.bcgs_numbers", "pk": 10723, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:30:26Z", "update_user": null, "update_date": null, "bcgs_number": "092H093214"}}, {"model": "wells.bcgs_numbers", "pk": 10724, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:41:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I081412"}}, {"model": "wells.bcgs_numbers", "pk": 10725, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:43:56Z", "update_user": null, "update_date": null, "bcgs_number": "092P031442"}}, {"model": "wells.bcgs_numbers", "pk": 10726, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T18:50:10Z", "update_user": null, "update_date": null, "bcgs_number": "092I084243"}}, {"model": "wells.bcgs_numbers", "pk": 10727, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-13T20:17:50Z", "update_user": null, "update_date": null, "bcgs_number": "092E039412"}}, {"model": "wells.bcgs_numbers", "pk": 10728, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T14:56:11Z", "update_user": null, "update_date": null, "bcgs_number": "103I007241"}}, {"model": "wells.bcgs_numbers", "pk": 10729, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T14:58:02Z", "update_user": null, "update_date": null, "bcgs_number": "103I007311"}}, {"model": "wells.bcgs_numbers", "pk": 10730, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T14:59:13Z", "update_user": null, "update_date": null, "bcgs_number": "103I045223"}}, {"model": "wells.bcgs_numbers", "pk": 10731, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T15:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "103I048112"}}, {"model": "wells.bcgs_numbers", "pk": 10732, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T15:25:51Z", "update_user": null, "update_date": null, "bcgs_number": "103I086244"}}, {"model": "wells.bcgs_numbers", "pk": 10733, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T15:40:40Z", "update_user": null, "update_date": null, "bcgs_number": "082L051313"}}, {"model": "wells.bcgs_numbers", "pk": 10734, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T15:47:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L097132"}}, {"model": "wells.bcgs_numbers", "pk": 10735, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T15:57:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L072234"}}, {"model": "wells.bcgs_numbers", "pk": 10736, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T17:34:42Z", "update_user": null, "update_date": null, "bcgs_number": "092F047411"}}, {"model": "wells.bcgs_numbers", "pk": 10737, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-15T16:32:30Z", "update_user": null, "update_date": null, "bcgs_number": "092B054334"}}, {"model": "wells.bcgs_numbers", "pk": 10738, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T15:09:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L028142"}}, {"model": "wells.bcgs_numbers", "pk": 10739, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T15:12:33Z", "update_user": null, "update_date": null, "bcgs_number": "082L041224"}}, {"model": "wells.bcgs_numbers", "pk": 10741, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T15:35:25Z", "update_user": null, "update_date": null, "bcgs_number": "082L025233"}}, {"model": "wells.bcgs_numbers", "pk": 10742, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T15:59:19Z", "update_user": null, "update_date": null, "bcgs_number": "082L028144"}}, {"model": "wells.bcgs_numbers", "pk": 10743, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T16:05:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L034442"}}, {"model": "wells.bcgs_numbers", "pk": 10744, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T16:09:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L043314"}}, {"model": "wells.bcgs_numbers", "pk": 10745, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T16:12:47Z", "update_user": null, "update_date": null, "bcgs_number": "082L051224"}}, {"model": "wells.bcgs_numbers", "pk": 10746, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T16:16:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L072313"}}, {"model": "wells.bcgs_numbers", "pk": 10747, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T16:26:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E071434"}}, {"model": "wells.bcgs_numbers", "pk": 10748, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T17:57:21Z", "update_user": null, "update_date": null, "bcgs_number": "092I019144"}}, {"model": "wells.bcgs_numbers", "pk": 10749, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T18:00:00Z", "update_user": null, "update_date": null, "bcgs_number": "092I019331"}}, {"model": "wells.bcgs_numbers", "pk": 10750, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T18:07:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I071423"}}, {"model": "wells.bcgs_numbers", "pk": 10751, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T18:08:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I079444"}}, {"model": "wells.bcgs_numbers", "pk": 10752, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-17T18:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "092I080232"}}, {"model": "wells.bcgs_numbers", "pk": 10753, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-20T20:08:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H043241"}}, {"model": "wells.bcgs_numbers", "pk": 10754, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-21T14:46:50Z", "update_user": null, "update_date": null, "bcgs_number": "092L069122"}}, {"model": "wells.bcgs_numbers", "pk": 10755, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-21T14:56:38Z", "update_user": null, "update_date": null, "bcgs_number": "092L069124"}}, {"model": "wells.bcgs_numbers", "pk": 10756, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T15:05:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H012133"}}, {"model": "wells.bcgs_numbers", "pk": 10757, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T15:44:02Z", "update_user": null, "update_date": null, "bcgs_number": "082L071133"}}, {"model": "wells.bcgs_numbers", "pk": 10758, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T15:55:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L027232"}}, {"model": "wells.bcgs_numbers", "pk": 10759, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L046231"}}, {"model": "wells.bcgs_numbers", "pk": 10760, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:03:05Z", "update_user": null, "update_date": null, "bcgs_number": "082L051431"}}, {"model": "wells.bcgs_numbers", "pk": 10761, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:28:33Z", "update_user": null, "update_date": null, "bcgs_number": "092I063133"}}, {"model": "wells.bcgs_numbers", "pk": 10762, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:30:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I075424"}}, {"model": "wells.bcgs_numbers", "pk": 10763, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:40:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I015434"}}, {"model": "wells.bcgs_numbers", "pk": 10764, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:41:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I024313"}}, {"model": "wells.bcgs_numbers", "pk": 10765, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:45:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I059324"}}, {"model": "wells.bcgs_numbers", "pk": 10766, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T16:52:06Z", "update_user": null, "update_date": null, "bcgs_number": "092I087334"}}, {"model": "wells.bcgs_numbers", "pk": 10767, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-22T17:00:12Z", "update_user": null, "update_date": null, "bcgs_number": "092I096222"}}, {"model": "wells.bcgs_numbers", "pk": 10768, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T14:54:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A011443"}}, {"model": "wells.bcgs_numbers", "pk": 10769, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T14:56:46Z", "update_user": null, "update_date": null, "bcgs_number": "094A011444"}}, {"model": "wells.bcgs_numbers", "pk": 10770, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:03:16Z", "update_user": null, "update_date": null, "bcgs_number": "094A021221"}}, {"model": "wells.bcgs_numbers", "pk": 10771, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:08:19Z", "update_user": null, "update_date": null, "bcgs_number": "094A035114"}}, {"model": "wells.bcgs_numbers", "pk": 10772, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:10:29Z", "update_user": null, "update_date": null, "bcgs_number": "094A045112"}}, {"model": "wells.bcgs_numbers", "pk": 10773, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "094A055244"}}, {"model": "wells.bcgs_numbers", "pk": 10774, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:12:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A085241"}}, {"model": "wells.bcgs_numbers", "pk": 10775, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:51:12Z", "update_user": null, "update_date": null, "bcgs_number": "092I016211"}}, {"model": "wells.bcgs_numbers", "pk": 10776, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:52:25Z", "update_user": null, "update_date": null, "bcgs_number": "092I052331"}}, {"model": "wells.bcgs_numbers", "pk": 10777, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T15:55:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I071321"}}, {"model": "wells.bcgs_numbers", "pk": 10778, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T16:04:41Z", "update_user": null, "update_date": null, "bcgs_number": "092I049431"}}, {"model": "wells.bcgs_numbers", "pk": 10779, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T16:32:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I039431"}}, {"model": "wells.bcgs_numbers", "pk": 10780, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T16:37:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I087331"}}, {"model": "wells.bcgs_numbers", "pk": 10781, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-23T16:38:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I087411"}}, {"model": "wells.bcgs_numbers", "pk": 10782, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T15:26:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P050131"}}, {"model": "wells.bcgs_numbers", "pk": 10783, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T16:18:42Z", "update_user": null, "update_date": null, "bcgs_number": "092J037113"}}, {"model": "wells.bcgs_numbers", "pk": 10784, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T16:27:51Z", "update_user": null, "update_date": null, "bcgs_number": "092J087342"}}, {"model": "wells.bcgs_numbers", "pk": 10785, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T16:54:48Z", "update_user": null, "update_date": null, "bcgs_number": "082M001114"}}, {"model": "wells.bcgs_numbers", "pk": 10786, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T17:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "082M001123"}}, {"model": "wells.bcgs_numbers", "pk": 10787, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T17:23:44Z", "update_user": null, "update_date": null, "bcgs_number": "083D025311"}}, {"model": "wells.bcgs_numbers", "pk": 10788, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T17:48:36Z", "update_user": null, "update_date": null, "bcgs_number": "082E002233"}}, {"model": "wells.bcgs_numbers", "pk": 10789, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T18:00:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P050311"}}, {"model": "wells.bcgs_numbers", "pk": 10790, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T18:08:11Z", "update_user": null, "update_date": null, "bcgs_number": "092P030112"}}, {"model": "wells.bcgs_numbers", "pk": 10791, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T18:09:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P040331"}}, {"model": "wells.bcgs_numbers", "pk": 10792, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T18:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "092P086143"}}, {"model": "wells.bcgs_numbers", "pk": 10793, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T18:17:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P049421"}}, {"model": "wells.bcgs_numbers", "pk": 10794, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-27T18:20:48Z", "update_user": null, "update_date": null, "bcgs_number": "092P057221"}}, {"model": "wells.bcgs_numbers", "pk": 10795, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-28T17:06:37Z", "update_user": null, "update_date": null, "bcgs_number": "092L056412"}}, {"model": "wells.bcgs_numbers", "pk": 10796, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-28T17:09:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G062241"}}, {"model": "wells.bcgs_numbers", "pk": 10797, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-28T17:42:32Z", "update_user": null, "update_date": null, "bcgs_number": "082N048223"}}, {"model": "wells.bcgs_numbers", "pk": 10798, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-28T19:55:16Z", "update_user": null, "update_date": null, "bcgs_number": "092B043232"}}, {"model": "wells.bcgs_numbers", "pk": 10799, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T14:57:34Z", "update_user": null, "update_date": null, "bcgs_number": "082M001142"}}, {"model": "wells.bcgs_numbers", "pk": 10800, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T15:00:54Z", "update_user": null, "update_date": null, "bcgs_number": "082M014342"}}, {"model": "wells.bcgs_numbers", "pk": 10801, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T15:24:32Z", "update_user": null, "update_date": null, "bcgs_number": "092I029233"}}, {"model": "wells.bcgs_numbers", "pk": 10802, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:07:27Z", "update_user": null, "update_date": null, "bcgs_number": "103I087131"}}, {"model": "wells.bcgs_numbers", "pk": 10803, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:17:56Z", "update_user": null, "update_date": null, "bcgs_number": "103G037143"}}, {"model": "wells.bcgs_numbers", "pk": 10804, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:26:42Z", "update_user": null, "update_date": null, "bcgs_number": "103P010343"}}, {"model": "wells.bcgs_numbers", "pk": 10805, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:43:10Z", "update_user": null, "update_date": null, "bcgs_number": "093M011131"}}, {"model": "wells.bcgs_numbers", "pk": 10806, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:50:39Z", "update_user": null, "update_date": null, "bcgs_number": "093M042221"}}, {"model": "wells.bcgs_numbers", "pk": 10807, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:55:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A086332"}}, {"model": "wells.bcgs_numbers", "pk": 10808, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T16:58:55Z", "update_user": null, "update_date": null, "bcgs_number": "104I091234"}}, {"model": "wells.bcgs_numbers", "pk": 10809, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T17:17:21Z", "update_user": null, "update_date": null, "bcgs_number": "103G031132"}}, {"model": "wells.bcgs_numbers", "pk": 10810, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T17:40:56Z", "update_user": null, "update_date": null, "bcgs_number": "093L065423"}}, {"model": "wells.bcgs_numbers", "pk": 10811, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T17:53:53Z", "update_user": null, "update_date": null, "bcgs_number": "092H018334"}}, {"model": "wells.bcgs_numbers", "pk": 10812, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T19:08:26Z", "update_user": null, "update_date": null, "bcgs_number": "082K022121"}}, {"model": "wells.bcgs_numbers", "pk": 10813, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T19:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "092J087412"}}, {"model": "wells.bcgs_numbers", "pk": 10814, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T19:14:15Z", "update_user": null, "update_date": null, "bcgs_number": "093I087123"}}, {"model": "wells.bcgs_numbers", "pk": 10815, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T19:30:13Z", "update_user": null, "update_date": null, "bcgs_number": "082E017122"}}, {"model": "wells.bcgs_numbers", "pk": 10816, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T19:45:14Z", "update_user": null, "update_date": null, "bcgs_number": "082E038234"}}, {"model": "wells.bcgs_numbers", "pk": 10817, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T20:14:31Z", "update_user": null, "update_date": null, "bcgs_number": "092I025322"}}, {"model": "wells.bcgs_numbers", "pk": 10818, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T20:26:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I022444"}}, {"model": "wells.bcgs_numbers", "pk": 10819, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-04T21:34:41Z", "update_user": null, "update_date": null, "bcgs_number": "093D048242"}}, {"model": "wells.bcgs_numbers", "pk": 10820, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:22:24Z", "update_user": null, "update_date": null, "bcgs_number": "092J016123"}}, {"model": "wells.bcgs_numbers", "pk": 10821, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:24:10Z", "update_user": null, "update_date": null, "bcgs_number": "092E039432"}}, {"model": "wells.bcgs_numbers", "pk": 10822, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:26:13Z", "update_user": null, "update_date": null, "bcgs_number": "092L004131"}}, {"model": "wells.bcgs_numbers", "pk": 10823, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:28:12Z", "update_user": null, "update_date": null, "bcgs_number": "092C094333"}}, {"model": "wells.bcgs_numbers", "pk": 10824, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:31:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G080314"}}, {"model": "wells.bcgs_numbers", "pk": 10825, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:32:54Z", "update_user": null, "update_date": null, "bcgs_number": "092G045414"}}, {"model": "wells.bcgs_numbers", "pk": 10826, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:40:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G087424"}}, {"model": "wells.bcgs_numbers", "pk": 10827, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T15:42:41Z", "update_user": null, "update_date": null, "bcgs_number": "092G026441"}}, {"model": "wells.bcgs_numbers", "pk": 10828, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T16:09:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L083331"}}, {"model": "wells.bcgs_numbers", "pk": 10829, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T16:22:38Z", "update_user": null, "update_date": null, "bcgs_number": "082E090413"}}, {"model": "wells.bcgs_numbers", "pk": 10830, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T16:23:54Z", "update_user": null, "update_date": null, "bcgs_number": "092J086234"}}, {"model": "wells.bcgs_numbers", "pk": 10831, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T16:35:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E090142"}}, {"model": "wells.bcgs_numbers", "pk": 10832, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T16:39:58Z", "update_user": null, "update_date": null, "bcgs_number": "093P089324"}}, {"model": "wells.bcgs_numbers", "pk": 10833, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T16:41:25Z", "update_user": null, "update_date": null, "bcgs_number": "082L052421"}}, {"model": "wells.bcgs_numbers", "pk": 10834, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T17:06:07Z", "update_user": null, "update_date": null, "bcgs_number": "082G025131"}}, {"model": "wells.bcgs_numbers", "pk": 10835, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T17:13:09Z", "update_user": null, "update_date": null, "bcgs_number": "094A077222"}}, {"model": "wells.bcgs_numbers", "pk": 10836, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T17:15:50Z", "update_user": null, "update_date": null, "bcgs_number": "104N042434"}}, {"model": "wells.bcgs_numbers", "pk": 10837, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T17:19:53Z", "update_user": null, "update_date": null, "bcgs_number": "104N052324"}}, {"model": "wells.bcgs_numbers", "pk": 10838, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T17:21:15Z", "update_user": null, "update_date": null, "bcgs_number": "104N062214"}}, {"model": "wells.bcgs_numbers", "pk": 10839, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T17:30:21Z", "update_user": null, "update_date": null, "bcgs_number": "092H022143"}}, {"model": "wells.bcgs_numbers", "pk": 10840, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:17:56Z", "update_user": null, "update_date": null, "bcgs_number": "093C035123"}}, {"model": "wells.bcgs_numbers", "pk": 10841, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:19:26Z", "update_user": null, "update_date": null, "bcgs_number": "093D038333"}}, {"model": "wells.bcgs_numbers", "pk": 10842, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:24:52Z", "update_user": null, "update_date": null, "bcgs_number": "092O095123"}}, {"model": "wells.bcgs_numbers", "pk": 10843, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:43:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F036223"}}, {"model": "wells.bcgs_numbers", "pk": 10844, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:49:14Z", "update_user": null, "update_date": null, "bcgs_number": "093P096441"}}, {"model": "wells.bcgs_numbers", "pk": 10845, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:51:20Z", "update_user": null, "update_date": null, "bcgs_number": "094B089132"}}, {"model": "wells.bcgs_numbers", "pk": 10846, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:52:52Z", "update_user": null, "update_date": null, "bcgs_number": "094B010213"}}, {"model": "wells.bcgs_numbers", "pk": 10847, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:53:59Z", "update_user": null, "update_date": null, "bcgs_number": "093P032211"}}, {"model": "wells.bcgs_numbers", "pk": 10848, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:54:48Z", "update_user": null, "update_date": null, "bcgs_number": "094H080314"}}, {"model": "wells.bcgs_numbers", "pk": 10849, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:56:43Z", "update_user": null, "update_date": null, "bcgs_number": "094H021214"}}, {"model": "wells.bcgs_numbers", "pk": 10850, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:58:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A016112"}}, {"model": "wells.bcgs_numbers", "pk": 10851, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T18:59:58Z", "update_user": null, "update_date": null, "bcgs_number": "093P094441"}}, {"model": "wells.bcgs_numbers", "pk": 10852, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T19:02:37Z", "update_user": "PROXY_WELLS", "update_date": "2009-08-05T19:03:46Z", "bcgs_number": "093O100324"}}, {"model": "wells.bcgs_numbers", "pk": 10853, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T19:04:48Z", "update_user": null, "update_date": null, "bcgs_number": "094H063124"}}, {"model": "wells.bcgs_numbers", "pk": 10854, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T19:05:54Z", "update_user": null, "update_date": null, "bcgs_number": "094H079441"}}, {"model": "wells.bcgs_numbers", "pk": 10855, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T19:08:15Z", "update_user": null, "update_date": null, "bcgs_number": "094H079414"}}, {"model": "wells.bcgs_numbers", "pk": 10856, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-05T19:09:50Z", "update_user": null, "update_date": null, "bcgs_number": "093O049121"}}, {"model": "wells.bcgs_numbers", "pk": 10857, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-18T19:02:10Z", "update_user": null, "update_date": null, "bcgs_number": "092H093433"}}, {"model": "wells.bcgs_numbers", "pk": 10858, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-18T19:03:31Z", "update_user": null, "update_date": null, "bcgs_number": "092G079422"}}, {"model": "wells.bcgs_numbers", "pk": 10859, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-18T19:07:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P073433"}}, {"model": "wells.bcgs_numbers", "pk": 10860, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-18T19:10:06Z", "update_user": null, "update_date": null, "bcgs_number": "093K009223"}}, {"model": "wells.bcgs_numbers", "pk": 10861, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-18T19:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "093K049342"}}, {"model": "wells.bcgs_numbers", "pk": 10862, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-18T19:15:14Z", "update_user": null, "update_date": null, "bcgs_number": "082J011442"}}, {"model": "wells.bcgs_numbers", "pk": 10863, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-20T16:19:17Z", "update_user": null, "update_date": null, "bcgs_number": "092G094334"}}, {"model": "wells.bcgs_numbers", "pk": 10864, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-20T16:42:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H048112"}}, {"model": "wells.bcgs_numbers", "pk": 10865, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-20T16:45:19Z", "update_user": null, "update_date": null, "bcgs_number": "092H068131"}}, {"model": "wells.bcgs_numbers", "pk": 10866, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-20T16:48:05Z", "update_user": null, "update_date": null, "bcgs_number": "092H077231"}}, {"model": "wells.bcgs_numbers", "pk": 10867, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-20T17:43:10Z", "update_user": null, "update_date": null, "bcgs_number": "092G019441"}}, {"model": "wells.bcgs_numbers", "pk": 10868, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-25T15:16:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G015324"}}, {"model": "wells.bcgs_numbers", "pk": 10869, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-25T15:17:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G024424"}}, {"model": "wells.bcgs_numbers", "pk": 10870, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-25T15:17:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G025431"}}, {"model": "wells.bcgs_numbers", "pk": 10871, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-25T15:18:41Z", "update_user": null, "update_date": null, "bcgs_number": "092G090231"}}, {"model": "wells.bcgs_numbers", "pk": 10872, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-25T16:39:31Z", "update_user": null, "update_date": null, "bcgs_number": "092G020312"}}, {"model": "wells.bcgs_numbers", "pk": 10873, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-25T18:05:13Z", "update_user": null, "update_date": null, "bcgs_number": "092P037431"}}, {"model": "wells.bcgs_numbers", "pk": 10874, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-26T14:50:29Z", "update_user": null, "update_date": null, "bcgs_number": "092J037134"}}, {"model": "wells.bcgs_numbers", "pk": 10875, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-26T14:52:40Z", "update_user": null, "update_date": null, "bcgs_number": "092J058121"}}, {"model": "wells.bcgs_numbers", "pk": 10876, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-26T15:09:32Z", "update_user": null, "update_date": null, "bcgs_number": "093A031343"}}, {"model": "wells.bcgs_numbers", "pk": 10877, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-26T20:47:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L054131"}}, {"model": "wells.bcgs_numbers", "pk": 10878, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-26T20:51:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L056434"}}, {"model": "wells.bcgs_numbers", "pk": 10879, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-26T21:28:39Z", "update_user": null, "update_date": null, "bcgs_number": "082E036411"}}, {"model": "wells.bcgs_numbers", "pk": 10880, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-27T19:16:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E031224"}}, {"model": "wells.bcgs_numbers", "pk": 10881, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-27T19:36:06Z", "update_user": null, "update_date": null, "bcgs_number": "093B096344"}}, {"model": "wells.bcgs_numbers", "pk": 10882, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-28T16:21:07Z", "update_user": null, "update_date": null, "bcgs_number": "082L034141"}}, {"model": "wells.bcgs_numbers", "pk": 10883, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-31T15:14:11Z", "update_user": null, "update_date": null, "bcgs_number": "092F088124"}}, {"model": "wells.bcgs_numbers", "pk": 10884, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-31T15:17:53Z", "update_user": null, "update_date": null, "bcgs_number": "092P088433"}}, {"model": "wells.bcgs_numbers", "pk": 10885, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-31T16:00:01Z", "update_user": null, "update_date": null, "bcgs_number": "093G002224"}}, {"model": "wells.bcgs_numbers", "pk": 10886, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-08-31T16:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G047422"}}, {"model": "wells.bcgs_numbers", "pk": 10887, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T15:21:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I033323"}}, {"model": "wells.bcgs_numbers", "pk": 10888, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T15:23:55Z", "update_user": null, "update_date": null, "bcgs_number": "092I033321"}}, {"model": "wells.bcgs_numbers", "pk": 10889, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T15:42:40Z", "update_user": null, "update_date": null, "bcgs_number": "082F063433"}}, {"model": "wells.bcgs_numbers", "pk": 10890, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T15:50:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G045321"}}, {"model": "wells.bcgs_numbers", "pk": 10891, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T15:59:14Z", "update_user": null, "update_date": null, "bcgs_number": "093P082142"}}, {"model": "wells.bcgs_numbers", "pk": 10892, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T16:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "093G074343"}}, {"model": "wells.bcgs_numbers", "pk": 10893, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T16:14:16Z", "update_user": null, "update_date": null, "bcgs_number": "082M009224"}}, {"model": "wells.bcgs_numbers", "pk": 10894, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T16:17:44Z", "update_user": null, "update_date": null, "bcgs_number": "094B060222"}}, {"model": "wells.bcgs_numbers", "pk": 10895, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T16:18:54Z", "update_user": null, "update_date": null, "bcgs_number": "082P010122"}}, {"model": "wells.bcgs_numbers", "pk": 10896, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-01T16:32:05Z", "update_user": null, "update_date": null, "bcgs_number": "092G030212"}}, {"model": "wells.bcgs_numbers", "pk": 10897, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-03T18:40:14Z", "update_user": null, "update_date": null, "bcgs_number": "092H032124"}}, {"model": "wells.bcgs_numbers", "pk": 10898, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-03T18:42:28Z", "update_user": null, "update_date": null, "bcgs_number": "092H077441"}}, {"model": "wells.bcgs_numbers", "pk": 10899, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-03T19:46:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I061212"}}, {"model": "wells.bcgs_numbers", "pk": 10900, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-08T15:26:13Z", "update_user": null, "update_date": null, "bcgs_number": "093F091323"}}, {"model": "wells.bcgs_numbers", "pk": 10901, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-08T15:27:11Z", "update_user": null, "update_date": null, "bcgs_number": "093K008134"}}, {"model": "wells.bcgs_numbers", "pk": 10902, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-08T15:46:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E065413"}}, {"model": "wells.bcgs_numbers", "pk": 10903, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-10T20:31:17Z", "update_user": null, "update_date": null, "bcgs_number": "082G044214"}}, {"model": "wells.bcgs_numbers", "pk": 10904, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T17:26:33Z", "update_user": null, "update_date": null, "bcgs_number": "092P031111"}}, {"model": "wells.bcgs_numbers", "pk": 10905, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T17:55:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P044314"}}, {"model": "wells.bcgs_numbers", "pk": 10906, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T17:56:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P054441"}}, {"model": "wells.bcgs_numbers", "pk": 10907, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T17:57:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P056114"}}, {"model": "wells.bcgs_numbers", "pk": 10908, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T18:00:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P084312"}}, {"model": "wells.bcgs_numbers", "pk": 10909, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T18:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "092P097322"}}, {"model": "wells.bcgs_numbers", "pk": 10910, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T19:41:36Z", "update_user": null, "update_date": null, "bcgs_number": "092J037144"}}, {"model": "wells.bcgs_numbers", "pk": 10911, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-11T21:37:54Z", "update_user": null, "update_date": null, "bcgs_number": "092H011241"}}, {"model": "wells.bcgs_numbers", "pk": 10912, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-14T15:19:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G019344"}}, {"model": "wells.bcgs_numbers", "pk": 10913, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-15T15:08:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H021232"}}, {"model": "wells.bcgs_numbers", "pk": 10914, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-15T16:07:21Z", "update_user": null, "update_date": null, "bcgs_number": "082E006314"}}, {"model": "wells.bcgs_numbers", "pk": 10915, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-15T16:09:30Z", "update_user": null, "update_date": null, "bcgs_number": "082E021111"}}, {"model": "wells.bcgs_numbers", "pk": 10916, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-17T17:46:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F097312"}}, {"model": "wells.bcgs_numbers", "pk": 10917, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-17T18:31:16Z", "update_user": null, "update_date": null, "bcgs_number": "093B039434"}}, {"model": "wells.bcgs_numbers", "pk": 10918, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-17T18:44:57Z", "update_user": null, "update_date": null, "bcgs_number": "093A031432"}}, {"model": "wells.bcgs_numbers", "pk": 10919, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-17T18:51:40Z", "update_user": null, "update_date": null, "bcgs_number": "093K085323"}}, {"model": "wells.bcgs_numbers", "pk": 10920, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-17T19:14:26Z", "update_user": null, "update_date": null, "bcgs_number": "082N012332"}}, {"model": "wells.bcgs_numbers", "pk": 10921, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-09-17T19:19:17Z", "update_user": null, "update_date": null, "bcgs_number": "082E026144"}}, {"model": "wells.bcgs_numbers", "pk": 10922, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-05T21:14:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B039142"}}, {"model": "wells.bcgs_numbers", "pk": 10923, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-05T21:34:40Z", "update_user": null, "update_date": null, "bcgs_number": "092P066414"}}, {"model": "wells.bcgs_numbers", "pk": 10924, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-05T21:57:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P085342"}}, {"model": "wells.bcgs_numbers", "pk": 10925, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-05T21:58:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P036244"}}, {"model": "wells.bcgs_numbers", "pk": 10926, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-06T15:46:33Z", "update_user": null, "update_date": null, "bcgs_number": "092F077422"}}, {"model": "wells.bcgs_numbers", "pk": 10927, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-08T15:51:45Z", "update_user": null, "update_date": null, "bcgs_number": "092F094211"}}, {"model": "wells.bcgs_numbers", "pk": 10928, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-19T15:56:50Z", "update_user": null, "update_date": null, "bcgs_number": "092F088314"}}, {"model": "wells.bcgs_numbers", "pk": 10929, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-20T18:42:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B053324"}}, {"model": "wells.bcgs_numbers", "pk": 10930, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-20T19:33:49Z", "update_user": null, "update_date": null, "bcgs_number": "092B044312"}}, {"model": "wells.bcgs_numbers", "pk": 10931, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-21T16:37:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P060113"}}, {"model": "wells.bcgs_numbers", "pk": 10932, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-21T16:39:20Z", "update_user": null, "update_date": null, "bcgs_number": "092P086144"}}, {"model": "wells.bcgs_numbers", "pk": 10933, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-21T16:39:46Z", "update_user": null, "update_date": null, "bcgs_number": "092P086322"}}, {"model": "wells.bcgs_numbers", "pk": 10934, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-21T17:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "092P022411"}}, {"model": "wells.bcgs_numbers", "pk": 10935, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-21T17:07:36Z", "update_user": null, "update_date": null, "bcgs_number": "092P065333"}}, {"model": "wells.bcgs_numbers", "pk": 10936, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T16:22:42Z", "update_user": null, "update_date": null, "bcgs_number": "082G045243"}}, {"model": "wells.bcgs_numbers", "pk": 10937, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T17:39:18Z", "update_user": null, "update_date": null, "bcgs_number": "092J046143"}}, {"model": "wells.bcgs_numbers", "pk": 10938, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T17:58:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G043433"}}, {"model": "wells.bcgs_numbers", "pk": 10939, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T18:23:44Z", "update_user": null, "update_date": null, "bcgs_number": "092F047433"}}, {"model": "wells.bcgs_numbers", "pk": 10940, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T18:26:31Z", "update_user": null, "update_date": null, "bcgs_number": "092F065312"}}, {"model": "wells.bcgs_numbers", "pk": 10941, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T18:49:14Z", "update_user": null, "update_date": null, "bcgs_number": "093A001341"}}, {"model": "wells.bcgs_numbers", "pk": 10942, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-22T18:53:41Z", "update_user": null, "update_date": null, "bcgs_number": "093A022111"}}, {"model": "wells.bcgs_numbers", "pk": 10944, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T15:07:05Z", "update_user": null, "update_date": null, "bcgs_number": "093A033121"}}, {"model": "wells.bcgs_numbers", "pk": 10945, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T15:34:31Z", "update_user": null, "update_date": null, "bcgs_number": "092P002213"}}, {"model": "wells.bcgs_numbers", "pk": 10946, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T15:46:40Z", "update_user": null, "update_date": null, "bcgs_number": "092G028322"}}, {"model": "wells.bcgs_numbers", "pk": 10947, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T15:50:07Z", "update_user": null, "update_date": null, "bcgs_number": "092H021341"}}, {"model": "wells.bcgs_numbers", "pk": 10948, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T16:02:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E090121"}}, {"model": "wells.bcgs_numbers", "pk": 10949, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T16:03:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F091434"}}, {"model": "wells.bcgs_numbers", "pk": 10950, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T16:08:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P100221"}}, {"model": "wells.bcgs_numbers", "pk": 10951, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-23T16:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L082221"}}, {"model": "wells.bcgs_numbers", "pk": 10952, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-26T16:15:54Z", "update_user": null, "update_date": null, "bcgs_number": "092P087244"}}, {"model": "wells.bcgs_numbers", "pk": 10953, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-26T16:51:40Z", "update_user": null, "update_date": null, "bcgs_number": "093B059231"}}, {"model": "wells.bcgs_numbers", "pk": 10954, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-26T17:27:11Z", "update_user": null, "update_date": null, "bcgs_number": "093B014222"}}, {"model": "wells.bcgs_numbers", "pk": 10955, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-26T18:03:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E005411"}}, {"model": "wells.bcgs_numbers", "pk": 10956, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-26T18:03:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E007233"}}, {"model": "wells.bcgs_numbers", "pk": 10957, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-26T18:04:59Z", "update_user": null, "update_date": null, "bcgs_number": "082E025242"}}, {"model": "wells.bcgs_numbers", "pk": 10958, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T18:25:40Z", "update_user": null, "update_date": null, "bcgs_number": "093A024432"}}, {"model": "wells.bcgs_numbers", "pk": 10959, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T18:29:06Z", "update_user": null, "update_date": null, "bcgs_number": "093A034131"}}, {"model": "wells.bcgs_numbers", "pk": 10960, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T18:31:13Z", "update_user": null, "update_date": null, "bcgs_number": "093A041231"}}, {"model": "wells.bcgs_numbers", "pk": 10961, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T18:31:45Z", "update_user": null, "update_date": null, "bcgs_number": "093A041312"}}, {"model": "wells.bcgs_numbers", "pk": 10962, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T18:32:34Z", "update_user": null, "update_date": null, "bcgs_number": "093A062114"}}, {"model": "wells.bcgs_numbers", "pk": 10963, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T18:58:56Z", "update_user": null, "update_date": null, "bcgs_number": "082F004234"}}, {"model": "wells.bcgs_numbers", "pk": 10964, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T19:06:50Z", "update_user": null, "update_date": null, "bcgs_number": "094C058234"}}, {"model": "wells.bcgs_numbers", "pk": 10965, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T19:09:02Z", "update_user": null, "update_date": null, "bcgs_number": "092F093231"}}, {"model": "wells.bcgs_numbers", "pk": 10966, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T20:13:20Z", "update_user": null, "update_date": null, "bcgs_number": "092I039144"}}, {"model": "wells.bcgs_numbers", "pk": 10967, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T20:14:57Z", "update_user": null, "update_date": null, "bcgs_number": "103P010444"}}, {"model": "wells.bcgs_numbers", "pk": 10968, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T20:25:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G061123"}}, {"model": "wells.bcgs_numbers", "pk": 10969, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T21:57:56Z", "update_user": null, "update_date": null, "bcgs_number": "092G026322"}}, {"model": "wells.bcgs_numbers", "pk": 10970, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T22:05:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G034134"}}, {"model": "wells.bcgs_numbers", "pk": 10971, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T22:13:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I007331"}}, {"model": "wells.bcgs_numbers", "pk": 10972, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T22:36:02Z", "update_user": null, "update_date": null, "bcgs_number": "092J069433"}}, {"model": "wells.bcgs_numbers", "pk": 10973, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-27T22:45:07Z", "update_user": null, "update_date": null, "bcgs_number": "082F067131"}}, {"model": "wells.bcgs_numbers", "pk": 10974, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-29T21:37:03Z", "update_user": null, "update_date": null, "bcgs_number": "082K072141"}}, {"model": "wells.bcgs_numbers", "pk": 10975, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-29T22:02:26Z", "update_user": null, "update_date": null, "bcgs_number": "092P060121"}}, {"model": "wells.bcgs_numbers", "pk": 10976, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-30T15:38:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L082313"}}, {"model": "wells.bcgs_numbers", "pk": 10977, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-30T15:40:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P100224"}}, {"model": "wells.bcgs_numbers", "pk": 10978, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-30T15:44:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L072311"}}, {"model": "wells.bcgs_numbers", "pk": 10979, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-30T15:54:27Z", "update_user": null, "update_date": null, "bcgs_number": "082L075433"}}, {"model": "wells.bcgs_numbers", "pk": 10980, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-30T15:56:19Z", "update_user": null, "update_date": null, "bcgs_number": "092I077133"}}, {"model": "wells.bcgs_numbers", "pk": 10981, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-30T15:57:19Z", "update_user": null, "update_date": null, "bcgs_number": "082K061243"}}, {"model": "wells.bcgs_numbers", "pk": 10982, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-02T16:49:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G027143"}}, {"model": "wells.bcgs_numbers", "pk": 10983, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-02T18:30:58Z", "update_user": null, "update_date": null, "bcgs_number": "092G027144"}}, {"model": "wells.bcgs_numbers", "pk": 10984, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T16:52:56Z", "update_user": null, "update_date": null, "bcgs_number": "092C090141"}}, {"model": "wells.bcgs_numbers", "pk": 10985, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T16:58:19Z", "update_user": null, "update_date": null, "bcgs_number": "092I034131"}}, {"model": "wells.bcgs_numbers", "pk": 10986, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:34:46Z", "update_user": null, "update_date": null, "bcgs_number": "092I059231"}}, {"model": "wells.bcgs_numbers", "pk": 10987, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:43:28Z", "update_user": null, "update_date": null, "bcgs_number": "082G052443"}}, {"model": "wells.bcgs_numbers", "pk": 10988, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:47:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F010134"}}, {"model": "wells.bcgs_numbers", "pk": 10989, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:50:28Z", "update_user": null, "update_date": null, "bcgs_number": "082F008424"}}, {"model": "wells.bcgs_numbers", "pk": 10990, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:52:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G062333"}}, {"model": "wells.bcgs_numbers", "pk": 10991, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:56:44Z", "update_user": null, "update_date": null, "bcgs_number": "092P056142"}}, {"model": "wells.bcgs_numbers", "pk": 10992, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:58:11Z", "update_user": null, "update_date": null, "bcgs_number": "092P022334"}}, {"model": "wells.bcgs_numbers", "pk": 10993, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T17:59:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P022333"}}, {"model": "wells.bcgs_numbers", "pk": 10994, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T18:03:43Z", "update_user": null, "update_date": null, "bcgs_number": "082F004214"}}, {"model": "wells.bcgs_numbers", "pk": 10995, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T18:07:06Z", "update_user": null, "update_date": null, "bcgs_number": "082G055223"}}, {"model": "wells.bcgs_numbers", "pk": 10996, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T18:20:18Z", "update_user": null, "update_date": null, "bcgs_number": "082K030241"}}, {"model": "wells.bcgs_numbers", "pk": 10997, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T18:49:46Z", "update_user": null, "update_date": null, "bcgs_number": "092P059221"}}, {"model": "wells.bcgs_numbers", "pk": 10998, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T19:17:10Z", "update_user": null, "update_date": null, "bcgs_number": "093K039232"}}, {"model": "wells.bcgs_numbers", "pk": 10999, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-12T19:51:02Z", "update_user": null, "update_date": null, "bcgs_number": "104G009431"}}, {"model": "wells.bcgs_numbers", "pk": 11000, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-16T23:16:24Z", "update_user": null, "update_date": null, "bcgs_number": "092B043323"}}, {"model": "wells.bcgs_numbers", "pk": 11001, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-17T19:49:56Z", "update_user": null, "update_date": null, "bcgs_number": "092F004142"}}, {"model": "wells.bcgs_numbers", "pk": 11002, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-17T21:26:25Z", "update_user": null, "update_date": null, "bcgs_number": "092F066113"}}, {"model": "wells.bcgs_numbers", "pk": 11003, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-17T22:22:21Z", "update_user": null, "update_date": null, "bcgs_number": "092K006344"}}, {"model": "wells.bcgs_numbers", "pk": 11004, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-17T22:49:21Z", "update_user": null, "update_date": null, "bcgs_number": "092F066143"}}, {"model": "wells.bcgs_numbers", "pk": 11005, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-17T22:52:33Z", "update_user": null, "update_date": null, "bcgs_number": "092E039414"}}, {"model": "wells.bcgs_numbers", "pk": 11006, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-18T16:16:33Z", "update_user": null, "update_date": null, "bcgs_number": "092L056322"}}, {"model": "wells.bcgs_numbers", "pk": 11007, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-19T18:05:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F065241"}}, {"model": "wells.bcgs_numbers", "pk": 11008, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-20T17:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F011212"}}, {"model": "wells.bcgs_numbers", "pk": 11009, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-20T20:26:47Z", "update_user": null, "update_date": null, "bcgs_number": "092K035332"}}, {"model": "wells.bcgs_numbers", "pk": 11010, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-20T20:53:29Z", "update_user": null, "update_date": null, "bcgs_number": "092F056411"}}, {"model": "wells.bcgs_numbers", "pk": 11011, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-09T22:49:34Z", "update_user": null, "update_date": null, "bcgs_number": "092G043131"}}, {"model": "wells.bcgs_numbers", "pk": 11012, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-10T20:37:55Z", "update_user": null, "update_date": null, "bcgs_number": "092G051312"}}, {"model": "wells.bcgs_numbers", "pk": 11013, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-17T17:07:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A085224"}}, {"model": "wells.bcgs_numbers", "pk": 11014, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-17T17:14:18Z", "update_user": null, "update_date": null, "bcgs_number": "082L062423"}}, {"model": "wells.bcgs_numbers", "pk": 11015, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-17T17:17:09Z", "update_user": null, "update_date": null, "bcgs_number": "092O059444"}}, {"model": "wells.bcgs_numbers", "pk": 11016, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T19:28:51Z", "update_user": null, "update_date": null, "bcgs_number": "092C089414"}}, {"model": "wells.bcgs_numbers", "pk": 11017, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T19:30:24Z", "update_user": null, "update_date": null, "bcgs_number": "092C089423"}}, {"model": "wells.bcgs_numbers", "pk": 11018, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T19:42:07Z", "update_user": null, "update_date": null, "bcgs_number": "093G077322"}}, {"model": "wells.bcgs_numbers", "pk": 11019, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T19:56:01Z", "update_user": null, "update_date": null, "bcgs_number": "092I023131"}}, {"model": "wells.bcgs_numbers", "pk": 11020, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T20:15:18Z", "update_user": null, "update_date": null, "bcgs_number": "092C089421"}}, {"model": "wells.bcgs_numbers", "pk": 11021, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T20:46:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B054422"}}, {"model": "wells.bcgs_numbers", "pk": 11022, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T20:50:18Z", "update_user": null, "update_date": null, "bcgs_number": "092C099121"}}, {"model": "wells.bcgs_numbers", "pk": 11023, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T20:56:56Z", "update_user": null, "update_date": null, "bcgs_number": "082K089223"}}, {"model": "wells.bcgs_numbers", "pk": 11024, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T22:42:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H031214"}}, {"model": "wells.bcgs_numbers", "pk": 11025, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-18T22:53:05Z", "update_user": null, "update_date": null, "bcgs_number": "092H034212"}}, {"model": "wells.bcgs_numbers", "pk": 11026, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-21T16:00:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G082442"}}, {"model": "wells.bcgs_numbers", "pk": 11027, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-21T16:01:46Z", "update_user": null, "update_date": null, "bcgs_number": "093G066331"}}, {"model": "wells.bcgs_numbers", "pk": 11028, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-21T16:40:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G006142"}}, {"model": "wells.bcgs_numbers", "pk": 11029, "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-12-23T15:31:26Z", "update_user": null, "update_date": null, "bcgs_number": "092H058323"}}, {"model": "wells.bcgs_numbers", "pk": 11030, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-18T16:36:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F010442"}}, {"model": "wells.bcgs_numbers", "pk": 11031, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-20T18:27:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F094221"}}, {"model": "wells.bcgs_numbers", "pk": 11032, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-20T18:29:54Z", "update_user": null, "update_date": null, "bcgs_number": "092F094223"}}, {"model": "wells.bcgs_numbers", "pk": 11033, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-20T18:38:07Z", "update_user": null, "update_date": null, "bcgs_number": "092E078434"}}, {"model": "wells.bcgs_numbers", "pk": 11034, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-26T20:41:20Z", "update_user": null, "update_date": null, "bcgs_number": "092C099114"}}, {"model": "wells.bcgs_numbers", "pk": 11035, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-26T20:44:42Z", "update_user": null, "update_date": null, "bcgs_number": "092C099123"}}, {"model": "wells.bcgs_numbers", "pk": 11036, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-27T19:43:32Z", "update_user": null, "update_date": null, "bcgs_number": "092J009133"}}, {"model": "wells.bcgs_numbers", "pk": 11037, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-01-27T19:52:05Z", "update_user": "PROXY_WELLS", "update_date": "2010-01-27T19:52:22Z", "bcgs_number": "093J009133"}}, {"model": "wells.bcgs_numbers", "pk": 11038, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-01T23:50:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G001213"}}, {"model": "wells.bcgs_numbers", "pk": 11039, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-02T00:00:44Z", "update_user": null, "update_date": null, "bcgs_number": "092F030211"}}, {"model": "wells.bcgs_numbers", "pk": 11040, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-02T17:11:36Z", "update_user": null, "update_date": null, "bcgs_number": "092C050143"}}, {"model": "wells.bcgs_numbers", "pk": 11041, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-02T17:30:01Z", "update_user": null, "update_date": null, "bcgs_number": "092J011414"}}, {"model": "wells.bcgs_numbers", "pk": 11042, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-04T16:55:18Z", "update_user": null, "update_date": null, "bcgs_number": "092P010122"}}, {"model": "wells.bcgs_numbers", "pk": 11043, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-04T17:28:09Z", "update_user": null, "update_date": null, "bcgs_number": "082L093441"}}, {"model": "wells.bcgs_numbers", "pk": 11044, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-08T18:10:28Z", "update_user": null, "update_date": null, "bcgs_number": "082F094314"}}, {"model": "wells.bcgs_numbers", "pk": 11045, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-08T18:16:39Z", "update_user": null, "update_date": null, "bcgs_number": "092I075114"}}, {"model": "wells.bcgs_numbers", "pk": 11046, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-08T18:23:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F052421"}}, {"model": "wells.bcgs_numbers", "pk": 11047, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-09T17:22:39Z", "update_user": null, "update_date": null, "bcgs_number": "103I086242"}}, {"model": "wells.bcgs_numbers", "pk": 11048, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-16T17:15:11Z", "update_user": null, "update_date": null, "bcgs_number": "082G041432"}}, {"model": "wells.bcgs_numbers", "pk": 11049, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-16T17:23:30Z", "update_user": null, "update_date": null, "bcgs_number": "082G082142"}}, {"model": "wells.bcgs_numbers", "pk": 11050, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-16T17:26:54Z", "update_user": null, "update_date": null, "bcgs_number": "082F020422"}}, {"model": "wells.bcgs_numbers", "pk": 11051, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-16T18:15:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P056322"}}, {"model": "wells.bcgs_numbers", "pk": 11052, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-16T18:28:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G013234"}}, {"model": "wells.bcgs_numbers", "pk": 11053, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-16T18:30:11Z", "update_user": null, "update_date": null, "bcgs_number": "082N045341"}}, {"model": "wells.bcgs_numbers", "pk": 11054, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T16:42:20Z", "update_user": null, "update_date": null, "bcgs_number": "082E009421"}}, {"model": "wells.bcgs_numbers", "pk": 11055, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T16:52:06Z", "update_user": null, "update_date": null, "bcgs_number": "082F094132"}}, {"model": "wells.bcgs_numbers", "pk": 11056, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T16:53:28Z", "update_user": null, "update_date": null, "bcgs_number": "082F052441"}}, {"model": "wells.bcgs_numbers", "pk": 11057, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T17:06:59Z", "update_user": null, "update_date": null, "bcgs_number": "082K031433"}}, {"model": "wells.bcgs_numbers", "pk": 11058, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T17:13:15Z", "update_user": "PROXY_WELLS", "update_date": "2013-06-12T15:58:31Z", "bcgs_number": "082K050343"}}, {"model": "wells.bcgs_numbers", "pk": 11059, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T17:43:47Z", "update_user": null, "update_date": null, "bcgs_number": "093D049133"}}, {"model": "wells.bcgs_numbers", "pk": 11060, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T19:38:52Z", "update_user": null, "update_date": null, "bcgs_number": "092H022334"}}, {"model": "wells.bcgs_numbers", "pk": 11061, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T19:45:31Z", "update_user": null, "update_date": null, "bcgs_number": "093J015121"}}, {"model": "wells.bcgs_numbers", "pk": 11062, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T20:42:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I048342"}}, {"model": "wells.bcgs_numbers", "pk": 11063, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-23T23:39:42Z", "update_user": null, "update_date": null, "bcgs_number": "082M019244"}}, {"model": "wells.bcgs_numbers", "pk": 11064, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-24T20:50:39Z", "update_user": null, "update_date": null, "bcgs_number": "082F012442"}}, {"model": "wells.bcgs_numbers", "pk": 11065, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-24T21:46:16Z", "update_user": null, "update_date": null, "bcgs_number": "082K016121"}}, {"model": "wells.bcgs_numbers", "pk": 11066, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T17:18:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P090423"}}, {"model": "wells.bcgs_numbers", "pk": 11067, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T17:22:11Z", "update_user": null, "update_date": null, "bcgs_number": "092P003132"}}, {"model": "wells.bcgs_numbers", "pk": 11068, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T17:23:58Z", "update_user": null, "update_date": null, "bcgs_number": "092O041323"}}, {"model": "wells.bcgs_numbers", "pk": 11069, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T17:29:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L072432"}}, {"model": "wells.bcgs_numbers", "pk": 11070, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T17:36:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E002231"}}, {"model": "wells.bcgs_numbers", "pk": 11071, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T17:50:23Z", "update_user": null, "update_date": null, "bcgs_number": "082G041224"}}, {"model": "wells.bcgs_numbers", "pk": 11072, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T18:29:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E072442"}}, {"model": "wells.bcgs_numbers", "pk": 11073, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T18:30:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E032432"}}, {"model": "wells.bcgs_numbers", "pk": 11074, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-02-26T19:29:06Z", "update_user": null, "update_date": null, "bcgs_number": "082M062231"}}, {"model": "wells.bcgs_numbers", "pk": 11075, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-01T17:39:38Z", "update_user": null, "update_date": null, "bcgs_number": "082L061122"}}, {"model": "wells.bcgs_numbers", "pk": 11076, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-01T19:59:36Z", "update_user": "PROXY_WELLS", "update_date": "2013-04-24T17:47:25Z", "bcgs_number": "092F079324"}}, {"model": "wells.bcgs_numbers", "pk": 11077, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-02T23:10:59Z", "update_user": null, "update_date": null, "bcgs_number": "083D094111"}}, {"model": "wells.bcgs_numbers", "pk": 11078, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-03T16:58:23Z", "update_user": null, "update_date": null, "bcgs_number": "093O035231"}}, {"model": "wells.bcgs_numbers", "pk": 11079, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-03T18:36:21Z", "update_user": null, "update_date": null, "bcgs_number": "092F010423"}}, {"model": "wells.bcgs_numbers", "pk": 11080, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-04T20:43:01Z", "update_user": null, "update_date": null, "bcgs_number": "082E073431"}}, {"model": "wells.bcgs_numbers", "pk": 11081, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-09T23:30:14Z", "update_user": null, "update_date": null, "bcgs_number": "093F077123"}}, {"model": "wells.bcgs_numbers", "pk": 11082, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-09T23:33:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F002244"}}, {"model": "wells.bcgs_numbers", "pk": 11083, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-09T23:35:03Z", "update_user": null, "update_date": null, "bcgs_number": "082G072413"}}, {"model": "wells.bcgs_numbers", "pk": 11084, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-10T16:24:20Z", "update_user": null, "update_date": null, "bcgs_number": "082G051414"}}, {"model": "wells.bcgs_numbers", "pk": 11085, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-10T16:32:15Z", "update_user": null, "update_date": null, "bcgs_number": "082E090321"}}, {"model": "wells.bcgs_numbers", "pk": 11086, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-10T16:42:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P054244"}}, {"model": "wells.bcgs_numbers", "pk": 11087, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-10T16:52:47Z", "update_user": null, "update_date": null, "bcgs_number": "082E014424"}}, {"model": "wells.bcgs_numbers", "pk": 11088, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-11T23:28:35Z", "update_user": null, "update_date": null, "bcgs_number": "082L093211"}}, {"model": "wells.bcgs_numbers", "pk": 11089, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-11T23:29:35Z", "update_user": null, "update_date": null, "bcgs_number": "082L061214"}}, {"model": "wells.bcgs_numbers", "pk": 11090, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-12T16:29:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F094114"}}, {"model": "wells.bcgs_numbers", "pk": 11091, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-12T17:00:20Z", "update_user": null, "update_date": null, "bcgs_number": "092H048141"}}, {"model": "wells.bcgs_numbers", "pk": 11092, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-12T17:43:38Z", "update_user": null, "update_date": null, "bcgs_number": "092I075331"}}, {"model": "wells.bcgs_numbers", "pk": 11093, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-12T17:49:07Z", "update_user": null, "update_date": null, "bcgs_number": "093G091233"}}, {"model": "wells.bcgs_numbers", "pk": 11094, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T17:05:13Z", "update_user": null, "update_date": null, "bcgs_number": "092H012311"}}, {"model": "wells.bcgs_numbers", "pk": 11095, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T17:39:20Z", "update_user": null, "update_date": null, "bcgs_number": "082L099423"}}, {"model": "wells.bcgs_numbers", "pk": 11096, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T17:48:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P020324"}}, {"model": "wells.bcgs_numbers", "pk": 11097, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:24:31Z", "update_user": null, "update_date": null, "bcgs_number": "082K062441"}}, {"model": "wells.bcgs_numbers", "pk": 11098, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:25:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L055242"}}, {"model": "wells.bcgs_numbers", "pk": 11099, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:31:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H040411"}}, {"model": "wells.bcgs_numbers", "pk": 11100, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:48:06Z", "update_user": null, "update_date": null, "bcgs_number": "092I087332"}}, {"model": "wells.bcgs_numbers", "pk": 11101, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:51:01Z", "update_user": null, "update_date": null, "bcgs_number": "092I093242"}}, {"model": "wells.bcgs_numbers", "pk": 11102, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:54:41Z", "update_user": null, "update_date": null, "bcgs_number": "082F044343"}}, {"model": "wells.bcgs_numbers", "pk": 11103, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T18:58:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P046412"}}, {"model": "wells.bcgs_numbers", "pk": 11104, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-23T19:51:33Z", "update_user": null, "update_date": null, "bcgs_number": "082E018411"}}, {"model": "wells.bcgs_numbers", "pk": 11105, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-24T20:05:00Z", "update_user": null, "update_date": null, "bcgs_number": "093K041122"}}, {"model": "wells.bcgs_numbers", "pk": 11106, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T17:19:40Z", "update_user": null, "update_date": null, "bcgs_number": "082G032444"}}, {"model": "wells.bcgs_numbers", "pk": 11107, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T17:29:55Z", "update_user": null, "update_date": null, "bcgs_number": "082G061141"}}, {"model": "wells.bcgs_numbers", "pk": 11108, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T17:39:47Z", "update_user": null, "update_date": null, "bcgs_number": "082K049421"}}, {"model": "wells.bcgs_numbers", "pk": 11109, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T17:45:06Z", "update_user": null, "update_date": null, "bcgs_number": "082F018411"}}, {"model": "wells.bcgs_numbers", "pk": 11110, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:03:51Z", "update_user": null, "update_date": null, "bcgs_number": "082J012312"}}, {"model": "wells.bcgs_numbers", "pk": 11111, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:08:29Z", "update_user": null, "update_date": null, "bcgs_number": "082F096233"}}, {"model": "wells.bcgs_numbers", "pk": 11112, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:15:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G054112"}}, {"model": "wells.bcgs_numbers", "pk": 11113, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:17:35Z", "update_user": null, "update_date": null, "bcgs_number": "082G044334"}}, {"model": "wells.bcgs_numbers", "pk": 11114, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:35:13Z", "update_user": null, "update_date": null, "bcgs_number": "082N016432"}}, {"model": "wells.bcgs_numbers", "pk": 11115, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:38:28Z", "update_user": null, "update_date": null, "bcgs_number": "082F019414"}}, {"model": "wells.bcgs_numbers", "pk": 11116, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-26T18:42:01Z", "update_user": null, "update_date": null, "bcgs_number": "082F008444"}}, {"model": "wells.bcgs_numbers", "pk": 11117, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-07T14:53:58Z", "update_user": null, "update_date": null, "bcgs_number": "092G062423"}}, {"model": "wells.bcgs_numbers", "pk": 11118, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-07T15:55:55Z", "update_user": null, "update_date": null, "bcgs_number": "092G035241"}}, {"model": "wells.bcgs_numbers", "pk": 11119, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T15:43:05Z", "update_user": null, "update_date": null, "bcgs_number": "093F037243"}}, {"model": "wells.bcgs_numbers", "pk": 11120, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T15:48:01Z", "update_user": null, "update_date": null, "bcgs_number": "093G092212"}}, {"model": "wells.bcgs_numbers", "pk": 11121, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T15:49:22Z", "update_user": null, "update_date": null, "bcgs_number": "093K006442"}}, {"model": "wells.bcgs_numbers", "pk": 11122, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:01:57Z", "update_user": null, "update_date": null, "bcgs_number": "094J066233"}}, {"model": "wells.bcgs_numbers", "pk": 11123, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:04:42Z", "update_user": null, "update_date": null, "bcgs_number": "094J066231"}}, {"model": "wells.bcgs_numbers", "pk": 11124, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:14:22Z", "update_user": null, "update_date": null, "bcgs_number": "094O050114"}}, {"model": "wells.bcgs_numbers", "pk": 11125, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:18:23Z", "update_user": null, "update_date": null, "bcgs_number": "093K085324"}}, {"model": "wells.bcgs_numbers", "pk": 11126, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:29:52Z", "update_user": null, "update_date": null, "bcgs_number": "082M010223"}}, {"model": "wells.bcgs_numbers", "pk": 11127, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:31:20Z", "update_user": null, "update_date": null, "bcgs_number": "082F018314"}}, {"model": "wells.bcgs_numbers", "pk": 11128, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:39:16Z", "update_user": null, "update_date": null, "bcgs_number": "082E018312"}}, {"model": "wells.bcgs_numbers", "pk": 11129, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:49:52Z", "update_user": null, "update_date": null, "bcgs_number": "093J002133"}}, {"model": "wells.bcgs_numbers", "pk": 11130, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-09T16:57:30Z", "update_user": null, "update_date": null, "bcgs_number": "093F088124"}}, {"model": "wells.bcgs_numbers", "pk": 11131, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T19:42:42Z", "update_user": null, "update_date": null, "bcgs_number": "093K009322"}}, {"model": "wells.bcgs_numbers", "pk": 11132, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T19:59:12Z", "update_user": null, "update_date": null, "bcgs_number": "093A003221"}}, {"model": "wells.bcgs_numbers", "pk": 11133, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T20:01:41Z", "update_user": null, "update_date": null, "bcgs_number": "093O069212"}}, {"model": "wells.bcgs_numbers", "pk": 11134, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T20:08:09Z", "update_user": null, "update_date": null, "bcgs_number": "082E008334"}}, {"model": "wells.bcgs_numbers", "pk": 11135, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T21:51:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I059212"}}, {"model": "wells.bcgs_numbers", "pk": 11136, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T21:59:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G057243"}}, {"model": "wells.bcgs_numbers", "pk": 11137, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T22:18:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A075423"}}, {"model": "wells.bcgs_numbers", "pk": 11138, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-13T22:29:21Z", "update_user": null, "update_date": null, "bcgs_number": "092I077243"}}, {"model": "wells.bcgs_numbers", "pk": 11139, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-14T16:13:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I048341"}}, {"model": "wells.bcgs_numbers", "pk": 11140, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-14T16:18:34Z", "update_user": null, "update_date": null, "bcgs_number": "082M051224"}}, {"model": "wells.bcgs_numbers", "pk": 11141, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-14T16:32:50Z", "update_user": null, "update_date": null, "bcgs_number": "092P054321"}}, {"model": "wells.bcgs_numbers", "pk": 11142, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-14T16:48:03Z", "update_user": null, "update_date": null, "bcgs_number": "082L061232"}}, {"model": "wells.bcgs_numbers", "pk": 11143, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-14T16:55:23Z", "update_user": null, "update_date": null, "bcgs_number": "082M051424"}}, {"model": "wells.bcgs_numbers", "pk": 11144, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T17:07:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I100422"}}, {"model": "wells.bcgs_numbers", "pk": 11145, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T17:30:52Z", "update_user": null, "update_date": null, "bcgs_number": "093I096112"}}, {"model": "wells.bcgs_numbers", "pk": 11146, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T17:36:47Z", "update_user": null, "update_date": null, "bcgs_number": "093I096111"}}, {"model": "wells.bcgs_numbers", "pk": 11147, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T17:38:24Z", "update_user": null, "update_date": null, "bcgs_number": "094G040422"}}, {"model": "wells.bcgs_numbers", "pk": 11148, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T17:39:56Z", "update_user": null, "update_date": null, "bcgs_number": "093P089113"}}, {"model": "wells.bcgs_numbers", "pk": 11149, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T17:41:33Z", "update_user": null, "update_date": null, "bcgs_number": "094H017334"}}, {"model": "wells.bcgs_numbers", "pk": 11150, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T18:09:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L081333"}}, {"model": "wells.bcgs_numbers", "pk": 11151, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T22:50:31Z", "update_user": null, "update_date": null, "bcgs_number": "093F008431"}}, {"model": "wells.bcgs_numbers", "pk": 11152, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-15T22:56:40Z", "update_user": null, "update_date": null, "bcgs_number": "082K061421"}}, {"model": "wells.bcgs_numbers", "pk": 11153, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-19T16:25:13Z", "update_user": null, "update_date": null, "bcgs_number": "092B091442"}}, {"model": "wells.bcgs_numbers", "pk": 11154, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-19T16:58:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L095321"}}, {"model": "wells.bcgs_numbers", "pk": 11155, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-19T17:13:58Z", "update_user": null, "update_date": null, "bcgs_number": "092I063242"}}, {"model": "wells.bcgs_numbers", "pk": 11156, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-19T17:27:04Z", "update_user": null, "update_date": null, "bcgs_number": "093A042211"}}, {"model": "wells.bcgs_numbers", "pk": 11157, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T19:31:53Z", "update_user": null, "update_date": null, "bcgs_number": "092F030323"}}, {"model": "wells.bcgs_numbers", "pk": 11158, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T20:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "082L054422"}}, {"model": "wells.bcgs_numbers", "pk": 11159, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T20:08:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P070424"}}, {"model": "wells.bcgs_numbers", "pk": 11160, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T20:19:28Z", "update_user": null, "update_date": null, "bcgs_number": "103J001131"}}, {"model": "wells.bcgs_numbers", "pk": 11161, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T20:22:55Z", "update_user": null, "update_date": null, "bcgs_number": "103J030134"}}, {"model": "wells.bcgs_numbers", "pk": 11162, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T20:38:11Z", "update_user": null, "update_date": null, "bcgs_number": "092H024423"}}, {"model": "wells.bcgs_numbers", "pk": 11163, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T21:02:13Z", "update_user": null, "update_date": null, "bcgs_number": "093D049143"}}, {"model": "wells.bcgs_numbers", "pk": 11164, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-20T21:05:48Z", "update_user": null, "update_date": null, "bcgs_number": "092O061331"}}, {"model": "wells.bcgs_numbers", "pk": 11165, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T15:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "082N036311"}}, {"model": "wells.bcgs_numbers", "pk": 11166, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T15:39:04Z", "update_user": null, "update_date": null, "bcgs_number": "082F020244"}}, {"model": "wells.bcgs_numbers", "pk": 11167, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T15:39:26Z", "update_user": null, "update_date": null, "bcgs_number": "082N046113"}}, {"model": "wells.bcgs_numbers", "pk": 11168, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T16:06:49Z", "update_user": null, "update_date": null, "bcgs_number": "092H038433"}}, {"model": "wells.bcgs_numbers", "pk": 11169, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T16:24:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P083444"}}, {"model": "wells.bcgs_numbers", "pk": 11170, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T16:26:25Z", "update_user": null, "update_date": null, "bcgs_number": "103I058111"}}, {"model": "wells.bcgs_numbers", "pk": 11171, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-21T16:33:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F082424"}}, {"model": "wells.bcgs_numbers", "pk": 11172, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-22T19:48:39Z", "update_user": null, "update_date": null, "bcgs_number": "094A094333"}}, {"model": "wells.bcgs_numbers", "pk": 11173, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-23T19:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A034234"}}, {"model": "wells.bcgs_numbers", "pk": 11174, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-26T15:48:48Z", "update_user": null, "update_date": null, "bcgs_number": "092I070343"}}, {"model": "wells.bcgs_numbers", "pk": 11175, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-26T18:11:38Z", "update_user": null, "update_date": null, "bcgs_number": "092I049142"}}, {"model": "wells.bcgs_numbers", "pk": 11176, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-26T18:26:33Z", "update_user": null, "update_date": null, "bcgs_number": "092I057222"}}, {"model": "wells.bcgs_numbers", "pk": 11177, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-26T18:38:13Z", "update_user": null, "update_date": null, "bcgs_number": "092P022441"}}, {"model": "wells.bcgs_numbers", "pk": 11178, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-27T16:45:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B002112"}}, {"model": "wells.bcgs_numbers", "pk": 11179, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-27T16:50:55Z", "update_user": null, "update_date": null, "bcgs_number": "092G002112"}}, {"model": "wells.bcgs_numbers", "pk": 11180, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-27T16:59:03Z", "update_user": null, "update_date": null, "bcgs_number": "082F008341"}}, {"model": "wells.bcgs_numbers", "pk": 11181, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-27T17:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "092G062223"}}, {"model": "wells.bcgs_numbers", "pk": 11182, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-29T16:46:30Z", "update_user": null, "update_date": null, "bcgs_number": "092B062141"}}, {"model": "wells.bcgs_numbers", "pk": 11183, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-29T17:09:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H058442"}}, {"model": "wells.bcgs_numbers", "pk": 11184, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-29T17:22:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E082131"}}, {"model": "wells.bcgs_numbers", "pk": 11185, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-03T16:02:25Z", "update_user": null, "update_date": null, "bcgs_number": "082K079211"}}, {"model": "wells.bcgs_numbers", "pk": 11186, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-03T16:13:17Z", "update_user": null, "update_date": null, "bcgs_number": "082F077111"}}, {"model": "wells.bcgs_numbers", "pk": 11187, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-03T16:34:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P048314"}}, {"model": "wells.bcgs_numbers", "pk": 11188, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-03T16:47:12Z", "update_user": null, "update_date": null, "bcgs_number": "093G088331"}}, {"model": "wells.bcgs_numbers", "pk": 11189, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-03T16:50:09Z", "update_user": null, "update_date": null, "bcgs_number": "093G088313"}}, {"model": "wells.bcgs_numbers", "pk": 11190, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-03T22:42:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P060114"}}, {"model": "wells.bcgs_numbers", "pk": 11191, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-04T20:12:28Z", "update_user": null, "update_date": null, "bcgs_number": "092I059443"}}, {"model": "wells.bcgs_numbers", "pk": 11192, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-05T15:58:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I069222"}}, {"model": "wells.bcgs_numbers", "pk": 11193, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-05T16:00:46Z", "update_user": null, "update_date": null, "bcgs_number": "082M052313"}}, {"model": "wells.bcgs_numbers", "pk": 11194, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-06T16:03:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I100421"}}, {"model": "wells.bcgs_numbers", "pk": 11195, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-06T16:30:38Z", "update_user": null, "update_date": null, "bcgs_number": "093A027342"}}, {"model": "wells.bcgs_numbers", "pk": 11196, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-06T16:57:06Z", "update_user": null, "update_date": null, "bcgs_number": "092F097241"}}, {"model": "wells.bcgs_numbers", "pk": 11197, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-10T15:41:16Z", "update_user": null, "update_date": null, "bcgs_number": "082L072232"}}, {"model": "wells.bcgs_numbers", "pk": 11198, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-10T15:59:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G015211"}}, {"model": "wells.bcgs_numbers", "pk": 11199, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-10T16:29:45Z", "update_user": null, "update_date": null, "bcgs_number": "082K098441"}}, {"model": "wells.bcgs_numbers", "pk": 11200, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:03:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P060122"}}, {"model": "wells.bcgs_numbers", "pk": 11201, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:20:46Z", "update_user": null, "update_date": null, "bcgs_number": "092L066141"}}, {"model": "wells.bcgs_numbers", "pk": 11202, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:24:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L099442"}}, {"model": "wells.bcgs_numbers", "pk": 11203, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:36:06Z", "update_user": null, "update_date": null, "bcgs_number": "093A034341"}}, {"model": "wells.bcgs_numbers", "pk": 11204, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:46:26Z", "update_user": null, "update_date": null, "bcgs_number": "103K010224"}}, {"model": "wells.bcgs_numbers", "pk": 11205, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:48:40Z", "update_user": null, "update_date": null, "bcgs_number": "103K010142"}}, {"model": "wells.bcgs_numbers", "pk": 11206, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-11T22:58:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L062321"}}, {"model": "wells.bcgs_numbers", "pk": 11207, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-17T22:47:05Z", "update_user": null, "update_date": null, "bcgs_number": "083D084411"}}, {"model": "wells.bcgs_numbers", "pk": 11208, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-17T22:48:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L095411"}}, {"model": "wells.bcgs_numbers", "pk": 11209, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-17T22:51:34Z", "update_user": null, "update_date": null, "bcgs_number": "103I057222"}}, {"model": "wells.bcgs_numbers", "pk": 11210, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-17T22:59:23Z", "update_user": null, "update_date": null, "bcgs_number": "082E035344"}}, {"model": "wells.bcgs_numbers", "pk": 11211, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-18T16:15:17Z", "update_user": null, "update_date": null, "bcgs_number": "092P065224"}}, {"model": "wells.bcgs_numbers", "pk": 11212, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T15:39:07Z", "update_user": null, "update_date": null, "bcgs_number": "093G091324"}}, {"model": "wells.bcgs_numbers", "pk": 11213, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T20:02:18Z", "update_user": null, "update_date": null, "bcgs_number": "092K015313"}}, {"model": "wells.bcgs_numbers", "pk": 11214, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T20:26:48Z", "update_user": null, "update_date": null, "bcgs_number": "092C050222"}}, {"model": "wells.bcgs_numbers", "pk": 11215, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T20:31:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G002143"}}, {"model": "wells.bcgs_numbers", "pk": 11216, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T22:11:22Z", "update_user": null, "update_date": null, "bcgs_number": "092P047344"}}, {"model": "wells.bcgs_numbers", "pk": 11217, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T22:16:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G087421"}}, {"model": "wells.bcgs_numbers", "pk": 11218, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T22:21:34Z", "update_user": null, "update_date": null, "bcgs_number": "082E015114"}}, {"model": "wells.bcgs_numbers", "pk": 11219, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T22:30:09Z", "update_user": null, "update_date": null, "bcgs_number": "082N046111"}}, {"model": "wells.bcgs_numbers", "pk": 11220, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-19T22:42:16Z", "update_user": null, "update_date": null, "bcgs_number": "082N045413"}}, {"model": "wells.bcgs_numbers", "pk": 11221, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-20T16:43:34Z", "update_user": null, "update_date": null, "bcgs_number": "093K004213"}}, {"model": "wells.bcgs_numbers", "pk": 11222, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-20T17:16:14Z", "update_user": null, "update_date": null, "bcgs_number": "092L028114"}}, {"model": "wells.bcgs_numbers", "pk": 11223, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-20T17:27:24Z", "update_user": null, "update_date": null, "bcgs_number": "092I057234"}}, {"model": "wells.bcgs_numbers", "pk": 11224, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-20T17:29:49Z", "update_user": null, "update_date": null, "bcgs_number": "092L056213"}}, {"model": "wells.bcgs_numbers", "pk": 11225, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-20T17:34:19Z", "update_user": null, "update_date": null, "bcgs_number": "092L055441"}}, {"model": "wells.bcgs_numbers", "pk": 11226, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T15:28:56Z", "update_user": null, "update_date": null, "bcgs_number": "092B073232"}}, {"model": "wells.bcgs_numbers", "pk": 11227, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T16:00:10Z", "update_user": null, "update_date": null, "bcgs_number": "093P078314"}}, {"model": "wells.bcgs_numbers", "pk": 11228, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T16:02:02Z", "update_user": null, "update_date": null, "bcgs_number": "093G096123"}}, {"model": "wells.bcgs_numbers", "pk": 11229, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T16:05:07Z", "update_user": null, "update_date": null, "bcgs_number": "093H030431"}}, {"model": "wells.bcgs_numbers", "pk": 11230, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T19:04:00Z", "update_user": null, "update_date": null, "bcgs_number": "092G001142"}}, {"model": "wells.bcgs_numbers", "pk": 11231, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T19:56:03Z", "update_user": null, "update_date": null, "bcgs_number": "092K031233"}}, {"model": "wells.bcgs_numbers", "pk": 11232, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-25T20:01:49Z", "update_user": null, "update_date": null, "bcgs_number": "093G057421"}}, {"model": "wells.bcgs_numbers", "pk": 11233, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-26T16:12:22Z", "update_user": null, "update_date": null, "bcgs_number": "082E051441"}}, {"model": "wells.bcgs_numbers", "pk": 11234, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-26T16:14:05Z", "update_user": null, "update_date": null, "bcgs_number": "092H057112"}}, {"model": "wells.bcgs_numbers", "pk": 11235, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-26T16:19:32Z", "update_user": null, "update_date": null, "bcgs_number": "093K008141"}}, {"model": "wells.bcgs_numbers", "pk": 11236, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-26T16:24:13Z", "update_user": null, "update_date": null, "bcgs_number": "093J009411"}}, {"model": "wells.bcgs_numbers", "pk": 11237, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-26T16:53:24Z", "update_user": null, "update_date": null, "bcgs_number": "092H049242"}}, {"model": "wells.bcgs_numbers", "pk": 11238, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-26T18:24:24Z", "update_user": null, "update_date": null, "bcgs_number": "093B012343"}}, {"model": "wells.bcgs_numbers", "pk": 11239, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-27T21:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "082L018333"}}, {"model": "wells.bcgs_numbers", "pk": 11240, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-27T21:28:24Z", "update_user": null, "update_date": null, "bcgs_number": "092F010443"}}, {"model": "wells.bcgs_numbers", "pk": 11241, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-27T22:14:35Z", "update_user": null, "update_date": null, "bcgs_number": "092I044141"}}, {"model": "wells.bcgs_numbers", "pk": 11242, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-31T17:46:30Z", "update_user": null, "update_date": null, "bcgs_number": "092C090213"}}, {"model": "wells.bcgs_numbers", "pk": 11243, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-31T17:55:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L061413"}}, {"model": "wells.bcgs_numbers", "pk": 11244, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-05-31T17:59:44Z", "update_user": null, "update_date": null, "bcgs_number": "082L094441"}}, {"model": "wells.bcgs_numbers", "pk": 11245, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-01T21:39:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G019242"}}, {"model": "wells.bcgs_numbers", "pk": 11246, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-01T21:46:43Z", "update_user": null, "update_date": null, "bcgs_number": "092G044344"}}, {"model": "wells.bcgs_numbers", "pk": 11247, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-01T22:55:32Z", "update_user": null, "update_date": null, "bcgs_number": "092B074443"}}, {"model": "wells.bcgs_numbers", "pk": 11248, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T16:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P045131"}}, {"model": "wells.bcgs_numbers", "pk": 11249, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:20:54Z", "update_user": null, "update_date": null, "bcgs_number": "092O050323"}}, {"model": "wells.bcgs_numbers", "pk": 11250, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:21:25Z", "update_user": null, "update_date": null, "bcgs_number": "092O079441"}}, {"model": "wells.bcgs_numbers", "pk": 11251, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:22:26Z", "update_user": null, "update_date": null, "bcgs_number": "092O090124"}}, {"model": "wells.bcgs_numbers", "pk": 11252, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:23:24Z", "update_user": null, "update_date": null, "bcgs_number": "092O100313"}}, {"model": "wells.bcgs_numbers", "pk": 11253, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:24:16Z", "update_user": null, "update_date": null, "bcgs_number": "092O095341"}}, {"model": "wells.bcgs_numbers", "pk": 11254, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:25:56Z", "update_user": null, "update_date": null, "bcgs_number": "092O098343"}}, {"model": "wells.bcgs_numbers", "pk": 11255, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:28:09Z", "update_user": null, "update_date": null, "bcgs_number": "092O100323"}}, {"model": "wells.bcgs_numbers", "pk": 11256, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-02T17:48:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P083312"}}, {"model": "wells.bcgs_numbers", "pk": 11257, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T19:17:28Z", "update_user": null, "update_date": null, "bcgs_number": "092H038133"}}, {"model": "wells.bcgs_numbers", "pk": 11263, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T19:18:38Z", "update_user": null, "update_date": null, "bcgs_number": "092H099213"}}, {"model": "wells.bcgs_numbers", "pk": 11264, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T19:31:30Z", "update_user": null, "update_date": null, "bcgs_number": "092I049122"}}, {"model": "wells.bcgs_numbers", "pk": 11265, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T19:32:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L042324"}}, {"model": "wells.bcgs_numbers", "pk": 11266, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T19:39:49Z", "update_user": null, "update_date": null, "bcgs_number": "092G054134"}}, {"model": "wells.bcgs_numbers", "pk": 11267, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T20:21:00Z", "update_user": null, "update_date": null, "bcgs_number": "092H033312"}}, {"model": "wells.bcgs_numbers", "pk": 11268, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T20:30:45Z", "update_user": null, "update_date": null, "bcgs_number": "092H034344"}}, {"model": "wells.bcgs_numbers", "pk": 11269, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T20:31:52Z", "update_user": null, "update_date": null, "bcgs_number": "092H034342"}}, {"model": "wells.bcgs_numbers", "pk": 11270, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T20:32:46Z", "update_user": null, "update_date": null, "bcgs_number": "092H034333"}}, {"model": "wells.bcgs_numbers", "pk": 11271, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T21:43:53Z", "update_user": null, "update_date": null, "bcgs_number": "082G045241"}}, {"model": "wells.bcgs_numbers", "pk": 11272, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-07T21:45:08Z", "update_user": null, "update_date": null, "bcgs_number": "082G092111"}}, {"model": "wells.bcgs_numbers", "pk": 11273, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-15T19:13:40Z", "update_user": null, "update_date": null, "bcgs_number": "092G070434"}}, {"model": "wells.bcgs_numbers", "pk": 11274, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T16:18:59Z", "update_user": null, "update_date": null, "bcgs_number": "082L027312"}}, {"model": "wells.bcgs_numbers", "pk": 11275, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T16:19:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L033412"}}, {"model": "wells.bcgs_numbers", "pk": 11276, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T16:21:22Z", "update_user": null, "update_date": null, "bcgs_number": "082L038323"}}, {"model": "wells.bcgs_numbers", "pk": 11277, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T16:22:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L084433"}}, {"model": "wells.bcgs_numbers", "pk": 11278, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T16:57:44Z", "update_user": null, "update_date": null, "bcgs_number": "103G021243"}}, {"model": "wells.bcgs_numbers", "pk": 11279, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T17:09:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E004232"}}, {"model": "wells.bcgs_numbers", "pk": 11280, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T17:10:34Z", "update_user": null, "update_date": null, "bcgs_number": "082E009441"}}, {"model": "wells.bcgs_numbers", "pk": 11281, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T17:14:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E017431"}}, {"model": "wells.bcgs_numbers", "pk": 11282, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T17:15:13Z", "update_user": null, "update_date": null, "bcgs_number": "082E052242"}}, {"model": "wells.bcgs_numbers", "pk": 11283, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T19:45:16Z", "update_user": null, "update_date": null, "bcgs_number": "092L055324"}}, {"model": "wells.bcgs_numbers", "pk": 11284, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-16T20:00:15Z", "update_user": null, "update_date": null, "bcgs_number": "092L055413"}}, {"model": "wells.bcgs_numbers", "pk": 11285, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-17T22:12:30Z", "update_user": null, "update_date": null, "bcgs_number": "093D037324"}}, {"model": "wells.bcgs_numbers", "pk": 11286, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-17T22:14:02Z", "update_user": null, "update_date": null, "bcgs_number": "093D038343"}}, {"model": "wells.bcgs_numbers", "pk": 11287, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-17T22:14:52Z", "update_user": null, "update_date": null, "bcgs_number": "093D049244"}}, {"model": "wells.bcgs_numbers", "pk": 11288, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-18T18:32:06Z", "update_user": null, "update_date": null, "bcgs_number": "093O069241"}}, {"model": "wells.bcgs_numbers", "pk": 11289, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-18T18:32:50Z", "update_user": null, "update_date": null, "bcgs_number": "093G082331"}}, {"model": "wells.bcgs_numbers", "pk": 11290, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-18T18:34:18Z", "update_user": null, "update_date": null, "bcgs_number": "093O069243"}}, {"model": "wells.bcgs_numbers", "pk": 11291, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-18T18:35:56Z", "update_user": null, "update_date": null, "bcgs_number": "093O069244"}}, {"model": "wells.bcgs_numbers", "pk": 11292, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T15:28:48Z", "update_user": null, "update_date": null, "bcgs_number": "093B008141"}}, {"model": "wells.bcgs_numbers", "pk": 11294, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T15:31:11Z", "update_user": null, "update_date": null, "bcgs_number": "093B015434"}}, {"model": "wells.bcgs_numbers", "pk": 11295, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T15:32:47Z", "update_user": null, "update_date": null, "bcgs_number": "093B020134"}}, {"model": "wells.bcgs_numbers", "pk": 11296, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T15:36:52Z", "update_user": null, "update_date": null, "bcgs_number": "093B029234"}}, {"model": "wells.bcgs_numbers", "pk": 11297, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T15:37:38Z", "update_user": null, "update_date": null, "bcgs_number": "093B058421"}}, {"model": "wells.bcgs_numbers", "pk": 11298, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T15:38:45Z", "update_user": null, "update_date": null, "bcgs_number": "093B089111"}}, {"model": "wells.bcgs_numbers", "pk": 11299, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T17:21:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B085113"}}, {"model": "wells.bcgs_numbers", "pk": 11300, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T18:18:01Z", "update_user": null, "update_date": null, "bcgs_number": "093A013112"}}, {"model": "wells.bcgs_numbers", "pk": 11301, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T18:19:00Z", "update_user": null, "update_date": null, "bcgs_number": "093A023313"}}, {"model": "wells.bcgs_numbers", "pk": 11302, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T18:19:52Z", "update_user": null, "update_date": null, "bcgs_number": "093A031444"}}, {"model": "wells.bcgs_numbers", "pk": 11303, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-23T18:21:00Z", "update_user": null, "update_date": null, "bcgs_number": "093A052241"}}, {"model": "wells.bcgs_numbers", "pk": 11304, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-28T16:10:51Z", "update_user": null, "update_date": null, "bcgs_number": "092F080111"}}, {"model": "wells.bcgs_numbers", "pk": 11305, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-28T16:43:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G052143"}}, {"model": "wells.bcgs_numbers", "pk": 11306, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-14T22:32:31Z", "update_user": null, "update_date": null, "bcgs_number": "082K080142"}}, {"model": "wells.bcgs_numbers", "pk": 11307, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-14T22:33:30Z", "update_user": null, "update_date": null, "bcgs_number": "082G051134"}}, {"model": "wells.bcgs_numbers", "pk": 11308, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-14T22:34:44Z", "update_user": null, "update_date": null, "bcgs_number": "082F070124"}}, {"model": "wells.bcgs_numbers", "pk": 11309, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-14T22:43:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B084222"}}, {"model": "wells.bcgs_numbers", "pk": 11310, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-16T17:06:59Z", "update_user": null, "update_date": null, "bcgs_number": "082G015121"}}, {"model": "wells.bcgs_numbers", "pk": 11311, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-16T17:08:13Z", "update_user": null, "update_date": null, "bcgs_number": "082F024241"}}, {"model": "wells.bcgs_numbers", "pk": 11312, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:03:01Z", "update_user": "PROXY_WELLS", "update_date": "2010-07-21T18:03:21Z", "bcgs_number": "082K070234"}}, {"model": "wells.bcgs_numbers", "pk": 11313, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:03:56Z", "update_user": null, "update_date": null, "bcgs_number": "082K070412"}}, {"model": "wells.bcgs_numbers", "pk": 11314, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:04:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F012111"}}, {"model": "wells.bcgs_numbers", "pk": 11315, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:05:12Z", "update_user": null, "update_date": null, "bcgs_number": "082G014443"}}, {"model": "wells.bcgs_numbers", "pk": 11316, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:05:54Z", "update_user": null, "update_date": null, "bcgs_number": "082N008211"}}, {"model": "wells.bcgs_numbers", "pk": 11317, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:06:25Z", "update_user": null, "update_date": null, "bcgs_number": "082N045232"}}, {"model": "wells.bcgs_numbers", "pk": 11318, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T18:06:55Z", "update_user": null, "update_date": null, "bcgs_number": "082G071124"}}, {"model": "wells.bcgs_numbers", "pk": 11319, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T21:42:12Z", "update_user": null, "update_date": null, "bcgs_number": "092G033243"}}, {"model": "wells.bcgs_numbers", "pk": 11320, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "092F010441"}}, {"model": "wells.bcgs_numbers", "pk": 11321, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-21T22:05:55Z", "update_user": null, "update_date": null, "bcgs_number": "092G001313"}}, {"model": "wells.bcgs_numbers", "pk": 11322, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-26T17:45:46Z", "update_user": null, "update_date": null, "bcgs_number": "092G075121"}}, {"model": "wells.bcgs_numbers", "pk": 11323, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-28T17:58:38Z", "update_user": null, "update_date": null, "bcgs_number": "092I016434"}}, {"model": "wells.bcgs_numbers", "pk": 11324, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-28T22:54:38Z", "update_user": null, "update_date": null, "bcgs_number": "093K008333"}}, {"model": "wells.bcgs_numbers", "pk": 11325, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-29T18:49:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A017144"}}, {"model": "wells.bcgs_numbers", "pk": 11326, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-29T19:08:52Z", "update_user": null, "update_date": null, "bcgs_number": "093I069232"}}, {"model": "wells.bcgs_numbers", "pk": 11327, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-30T17:07:34Z", "update_user": null, "update_date": null, "bcgs_number": "082E021332"}}, {"model": "wells.bcgs_numbers", "pk": 11328, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T16:26:27Z", "update_user": null, "update_date": null, "bcgs_number": "093M012342"}}, {"model": "wells.bcgs_numbers", "pk": 11329, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T16:59:11Z", "update_user": null, "update_date": null, "bcgs_number": "103J001144"}}, {"model": "wells.bcgs_numbers", "pk": 11330, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T17:04:34Z", "update_user": null, "update_date": null, "bcgs_number": "103P070122"}}, {"model": "wells.bcgs_numbers", "pk": 11331, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T18:46:14Z", "update_user": null, "update_date": null, "bcgs_number": "082N055121"}}, {"model": "wells.bcgs_numbers", "pk": 11332, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T19:14:18Z", "update_user": null, "update_date": null, "bcgs_number": "082F012211"}}, {"model": "wells.bcgs_numbers", "pk": 11333, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T19:17:29Z", "update_user": null, "update_date": null, "bcgs_number": "082F047134"}}, {"model": "wells.bcgs_numbers", "pk": 11334, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T22:12:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I085423"}}, {"model": "wells.bcgs_numbers", "pk": 11335, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T22:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "092P030321"}}, {"model": "wells.bcgs_numbers", "pk": 11336, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T22:15:06Z", "update_user": null, "update_date": null, "bcgs_number": "092M061313"}}, {"model": "wells.bcgs_numbers", "pk": 11337, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T22:37:08Z", "update_user": null, "update_date": null, "bcgs_number": "092J076424"}}, {"model": "wells.bcgs_numbers", "pk": 11338, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-10T22:44:50Z", "update_user": null, "update_date": null, "bcgs_number": "092J005322"}}, {"model": "wells.bcgs_numbers", "pk": 11339, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-11T14:56:03Z", "update_user": null, "update_date": null, "bcgs_number": "092I026122"}}, {"model": "wells.bcgs_numbers", "pk": 11340, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-11T15:36:05Z", "update_user": null, "update_date": null, "bcgs_number": "093B088313"}}, {"model": "wells.bcgs_numbers", "pk": 11341, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-11T15:37:23Z", "update_user": null, "update_date": null, "bcgs_number": "093B089432"}}, {"model": "wells.bcgs_numbers", "pk": 11342, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-11T15:55:59Z", "update_user": null, "update_date": null, "bcgs_number": "093B096333"}}, {"model": "wells.bcgs_numbers", "pk": 11343, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-11T15:56:25Z", "update_user": null, "update_date": null, "bcgs_number": "093B098133"}}, {"model": "wells.bcgs_numbers", "pk": 11344, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:09:40Z", "update_user": null, "update_date": null, "bcgs_number": "082E018421"}}, {"model": "wells.bcgs_numbers", "pk": 11345, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:10:01Z", "update_user": null, "update_date": null, "bcgs_number": "082G024433"}}, {"model": "wells.bcgs_numbers", "pk": 11346, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:10:20Z", "update_user": null, "update_date": null, "bcgs_number": "082E018443"}}, {"model": "wells.bcgs_numbers", "pk": 11347, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:10:39Z", "update_user": null, "update_date": null, "bcgs_number": "092I079111"}}, {"model": "wells.bcgs_numbers", "pk": 11348, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:11:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I079112"}}, {"model": "wells.bcgs_numbers", "pk": 11349, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "093G077211"}}, {"model": "wells.bcgs_numbers", "pk": 11350, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:12:40Z", "update_user": null, "update_date": null, "bcgs_number": "093G098333"}}, {"model": "wells.bcgs_numbers", "pk": 11351, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "082H026144"}}, {"model": "wells.bcgs_numbers", "pk": 11352, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:13:26Z", "update_user": null, "update_date": null, "bcgs_number": "093K008313"}}, {"model": "wells.bcgs_numbers", "pk": 11353, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:15:19Z", "update_user": null, "update_date": null, "bcgs_number": "093K009314"}}, {"model": "wells.bcgs_numbers", "pk": 11354, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:15:35Z", "update_user": null, "update_date": null, "bcgs_number": "093K018124"}}, {"model": "wells.bcgs_numbers", "pk": 11355, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:15:54Z", "update_user": null, "update_date": null, "bcgs_number": "092P065142"}}, {"model": "wells.bcgs_numbers", "pk": 11356, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:16:33Z", "update_user": null, "update_date": null, "bcgs_number": "093A021121"}}, {"model": "wells.bcgs_numbers", "pk": 11357, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:16:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I067133"}}, {"model": "wells.bcgs_numbers", "pk": 11358, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:17:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P054443"}}, {"model": "wells.bcgs_numbers", "pk": 11359, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T20:17:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E005143"}}, {"model": "wells.bcgs_numbers", "pk": 11360, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T22:14:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E007232"}}, {"model": "wells.bcgs_numbers", "pk": 11361, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T22:34:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L082423"}}, {"model": "wells.bcgs_numbers", "pk": 11362, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-12T22:34:59Z", "update_user": null, "update_date": null, "bcgs_number": "082L082441"}}, {"model": "wells.bcgs_numbers", "pk": 11363, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-13T16:11:01Z", "update_user": null, "update_date": null, "bcgs_number": "103O050423"}}, {"model": "wells.bcgs_numbers", "pk": 11364, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-13T16:26:28Z", "update_user": null, "update_date": null, "bcgs_number": "092P064431"}}, {"model": "wells.bcgs_numbers", "pk": 11365, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-13T18:11:42Z", "update_user": null, "update_date": null, "bcgs_number": "082F008311"}}, {"model": "wells.bcgs_numbers", "pk": 11366, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-13T18:13:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A045313"}}, {"model": "wells.bcgs_numbers", "pk": 11367, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-13T19:15:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A026442"}}, {"model": "wells.bcgs_numbers", "pk": 11368, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-13T19:36:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G061113"}}, {"model": "wells.bcgs_numbers", "pk": 11369, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-16T17:17:11Z", "update_user": null, "update_date": null, "bcgs_number": "092H011232"}}, {"model": "wells.bcgs_numbers", "pk": 11370, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-16T17:30:49Z", "update_user": null, "update_date": null, "bcgs_number": "082G041242"}}, {"model": "wells.bcgs_numbers", "pk": 11371, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-16T22:35:41Z", "update_user": null, "update_date": null, "bcgs_number": "093P083442"}}, {"model": "wells.bcgs_numbers", "pk": 11372, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-08-17T18:00:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I017123"}}, {"model": "wells.bcgs_numbers", "pk": 11373, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-07T18:23:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I037133"}}, {"model": "wells.bcgs_numbers", "pk": 11374, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-07T18:55:27Z", "update_user": null, "update_date": null, "bcgs_number": "092E086313"}}, {"model": "wells.bcgs_numbers", "pk": 11375, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-07T18:57:21Z", "update_user": null, "update_date": null, "bcgs_number": "092E086333"}}, {"model": "wells.bcgs_numbers", "pk": 11376, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-07T19:29:25Z", "update_user": null, "update_date": null, "bcgs_number": "093G097114"}}, {"model": "wells.bcgs_numbers", "pk": 11377, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T20:44:15Z", "update_user": null, "update_date": null, "bcgs_number": "093K019111"}}, {"model": "wells.bcgs_numbers", "pk": 11378, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T20:45:38Z", "update_user": null, "update_date": null, "bcgs_number": "093K009323"}}, {"model": "wells.bcgs_numbers", "pk": 11379, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T20:46:49Z", "update_user": null, "update_date": null, "bcgs_number": "093K008144"}}, {"model": "wells.bcgs_numbers", "pk": 11380, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T20:48:49Z", "update_user": null, "update_date": null, "bcgs_number": "093F098342"}}, {"model": "wells.bcgs_numbers", "pk": 11381, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T20:49:45Z", "update_user": null, "update_date": null, "bcgs_number": "093K018241"}}, {"model": "wells.bcgs_numbers", "pk": 11382, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T22:20:00Z", "update_user": null, "update_date": null, "bcgs_number": "092K014224"}}, {"model": "wells.bcgs_numbers", "pk": 11383, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T22:22:26Z", "update_user": null, "update_date": null, "bcgs_number": "092F036314"}}, {"model": "wells.bcgs_numbers", "pk": 11384, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-22T22:24:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F026233"}}, {"model": "wells.bcgs_numbers", "pk": 11385, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-27T19:09:25Z", "update_user": null, "update_date": null, "bcgs_number": "093P097233"}}, {"model": "wells.bcgs_numbers", "pk": 11386, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-27T19:10:28Z", "update_user": null, "update_date": null, "bcgs_number": "093P097411"}}, {"model": "wells.bcgs_numbers", "pk": 11387, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-27T19:11:23Z", "update_user": null, "update_date": null, "bcgs_number": "093P097234"}}, {"model": "wells.bcgs_numbers", "pk": 11388, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-27T19:46:07Z", "update_user": null, "update_date": null, "bcgs_number": "082E005444"}}, {"model": "wells.bcgs_numbers", "pk": 11389, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-27T21:57:01Z", "update_user": null, "update_date": null, "bcgs_number": "092J037123"}}, {"model": "wells.bcgs_numbers", "pk": 11390, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-27T22:17:48Z", "update_user": null, "update_date": null, "bcgs_number": "092B073231"}}, {"model": "wells.bcgs_numbers", "pk": 11391, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-28T15:34:07Z", "update_user": null, "update_date": null, "bcgs_number": "092J026414"}}, {"model": "wells.bcgs_numbers", "pk": 11392, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-29T15:50:37Z", "update_user": null, "update_date": null, "bcgs_number": "094G062333"}}, {"model": "wells.bcgs_numbers", "pk": 11393, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-09-29T15:54:05Z", "update_user": null, "update_date": null, "bcgs_number": "094G072111"}}, {"model": "wells.bcgs_numbers", "pk": 11394, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-04T16:58:56Z", "update_user": null, "update_date": null, "bcgs_number": "092P060124"}}, {"model": "wells.bcgs_numbers", "pk": 11395, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-04T17:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "092B073411"}}, {"model": "wells.bcgs_numbers", "pk": 11396, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T15:57:08Z", "update_user": null, "update_date": null, "bcgs_number": "092G097411"}}, {"model": "wells.bcgs_numbers", "pk": 11397, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T15:58:40Z", "update_user": null, "update_date": null, "bcgs_number": "093G086111"}}, {"model": "wells.bcgs_numbers", "pk": 11398, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T16:03:25Z", "update_user": null, "update_date": null, "bcgs_number": "093B068344"}}, {"model": "wells.bcgs_numbers", "pk": 11399, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T16:05:02Z", "update_user": null, "update_date": null, "bcgs_number": "093G028241"}}, {"model": "wells.bcgs_numbers", "pk": 11400, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T16:33:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I074221"}}, {"model": "wells.bcgs_numbers", "pk": 11401, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T16:39:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L082342"}}, {"model": "wells.bcgs_numbers", "pk": 11402, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T16:45:57Z", "update_user": null, "update_date": null, "bcgs_number": "092I069411"}}, {"model": "wells.bcgs_numbers", "pk": 11403, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-05T16:54:44Z", "update_user": null, "update_date": null, "bcgs_number": "082M001333"}}, {"model": "wells.bcgs_numbers", "pk": 11404, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-06T15:26:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G096211"}}, {"model": "wells.bcgs_numbers", "pk": 11405, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-06T15:39:17Z", "update_user": null, "update_date": null, "bcgs_number": "082K016322"}}, {"model": "wells.bcgs_numbers", "pk": 11406, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T14:52:21Z", "update_user": null, "update_date": null, "bcgs_number": "082F020212"}}, {"model": "wells.bcgs_numbers", "pk": 11407, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:03:45Z", "update_user": null, "update_date": null, "bcgs_number": "082K070214"}}, {"model": "wells.bcgs_numbers", "pk": 11408, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:11:11Z", "update_user": null, "update_date": null, "bcgs_number": "082G061142"}}, {"model": "wells.bcgs_numbers", "pk": 11409, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:16:28Z", "update_user": null, "update_date": null, "bcgs_number": "082G005414"}}, {"model": "wells.bcgs_numbers", "pk": 11410, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:20:17Z", "update_user": null, "update_date": null, "bcgs_number": "082G005433"}}, {"model": "wells.bcgs_numbers", "pk": 11411, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:22:41Z", "update_user": null, "update_date": null, "bcgs_number": "082F002222"}}, {"model": "wells.bcgs_numbers", "pk": 11412, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:24:29Z", "update_user": null, "update_date": null, "bcgs_number": "082F018211"}}, {"model": "wells.bcgs_numbers", "pk": 11413, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T15:25:46Z", "update_user": null, "update_date": null, "bcgs_number": "082J061222"}}, {"model": "wells.bcgs_numbers", "pk": 11414, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-07T22:35:50Z", "update_user": null, "update_date": null, "bcgs_number": "082G081324"}}, {"model": "wells.bcgs_numbers", "pk": 11415, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-08T15:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "082K089341"}}, {"model": "wells.bcgs_numbers", "pk": 11416, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-08T15:06:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F067113"}}, {"model": "wells.bcgs_numbers", "pk": 11417, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-08T15:14:58Z", "update_user": null, "update_date": null, "bcgs_number": "082G062442"}}, {"model": "wells.bcgs_numbers", "pk": 11418, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-12T15:27:59Z", "update_user": null, "update_date": null, "bcgs_number": "082G054111"}}, {"model": "wells.bcgs_numbers", "pk": 11419, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-12T15:36:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F008421"}}, {"model": "wells.bcgs_numbers", "pk": 11420, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-13T14:48:15Z", "update_user": null, "update_date": null, "bcgs_number": "082G071442"}}, {"model": "wells.bcgs_numbers", "pk": 11421, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-13T14:50:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G045234"}}, {"model": "wells.bcgs_numbers", "pk": 11422, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-13T14:51:41Z", "update_user": null, "update_date": null, "bcgs_number": "082N016423"}}, {"model": "wells.bcgs_numbers", "pk": 11423, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-13T15:05:31Z", "update_user": null, "update_date": null, "bcgs_number": "082F007422"}}, {"model": "wells.bcgs_numbers", "pk": 11424, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T18:25:18Z", "update_user": null, "update_date": null, "bcgs_number": "092P030132"}}, {"model": "wells.bcgs_numbers", "pk": 11425, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T18:27:54Z", "update_user": null, "update_date": null, "bcgs_number": "092P100223"}}, {"model": "wells.bcgs_numbers", "pk": 11426, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T18:32:04Z", "update_user": null, "update_date": null, "bcgs_number": "083D093412"}}, {"model": "wells.bcgs_numbers", "pk": 11427, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T18:55:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L051311"}}, {"model": "wells.bcgs_numbers", "pk": 11428, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T18:57:28Z", "update_user": null, "update_date": null, "bcgs_number": "092I049212"}}, {"model": "wells.bcgs_numbers", "pk": 11429, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T19:09:55Z", "update_user": null, "update_date": null, "bcgs_number": "093L085143"}}, {"model": "wells.bcgs_numbers", "pk": 11430, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T19:11:19Z", "update_user": null, "update_date": null, "bcgs_number": "103I057242"}}, {"model": "wells.bcgs_numbers", "pk": 11431, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T19:14:06Z", "update_user": null, "update_date": null, "bcgs_number": "103I057241"}}, {"model": "wells.bcgs_numbers", "pk": 11432, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T19:15:41Z", "update_user": null, "update_date": null, "bcgs_number": "103I047431"}}, {"model": "wells.bcgs_numbers", "pk": 11433, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-14T19:24:18Z", "update_user": null, "update_date": null, "bcgs_number": "082M021312"}}, {"model": "wells.bcgs_numbers", "pk": 11434, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-26T18:57:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E004141"}}, {"model": "wells.bcgs_numbers", "pk": 11435, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-26T20:22:09Z", "update_user": null, "update_date": null, "bcgs_number": "082G062244"}}, {"model": "wells.bcgs_numbers", "pk": 11436, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-26T20:27:02Z", "update_user": null, "update_date": null, "bcgs_number": "092K033234"}}, {"model": "wells.bcgs_numbers", "pk": 11437, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-26T20:28:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P077334"}}, {"model": "wells.bcgs_numbers", "pk": 11438, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-10-28T22:57:08Z", "update_user": null, "update_date": null, "bcgs_number": "083D093433"}}, {"model": "wells.bcgs_numbers", "pk": 11439, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-01T15:07:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A075323"}}, {"model": "wells.bcgs_numbers", "pk": 11440, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-01T15:09:40Z", "update_user": null, "update_date": null, "bcgs_number": "103I047413"}}, {"model": "wells.bcgs_numbers", "pk": 11441, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-02T15:05:35Z", "update_user": null, "update_date": null, "bcgs_number": "093G099311"}}, {"model": "wells.bcgs_numbers", "pk": 11442, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-02T16:55:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G020124"}}, {"model": "wells.bcgs_numbers", "pk": 11443, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-03T22:39:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I047421"}}, {"model": "wells.bcgs_numbers", "pk": 11444, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-04T16:14:22Z", "update_user": null, "update_date": null, "bcgs_number": "104J050442"}}, {"model": "wells.bcgs_numbers", "pk": 11445, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-04T16:31:47Z", "update_user": null, "update_date": null, "bcgs_number": "082M009242"}}, {"model": "wells.bcgs_numbers", "pk": 11446, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-04T17:37:49Z", "update_user": null, "update_date": null, "bcgs_number": "092G024224"}}, {"model": "wells.bcgs_numbers", "pk": 11447, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-04T22:39:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P030331"}}, {"model": "wells.bcgs_numbers", "pk": 11448, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-04T22:43:15Z", "update_user": null, "update_date": null, "bcgs_number": "083D094132"}}, {"model": "wells.bcgs_numbers", "pk": 11449, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-05T15:59:21Z", "update_user": null, "update_date": null, "bcgs_number": "092P030133"}}, {"model": "wells.bcgs_numbers", "pk": 11450, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-05T16:17:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L084111"}}, {"model": "wells.bcgs_numbers", "pk": 11451, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-05T16:28:23Z", "update_user": null, "update_date": null, "bcgs_number": "092P010443"}}, {"model": "wells.bcgs_numbers", "pk": 11452, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-09T17:27:39Z", "update_user": null, "update_date": null, "bcgs_number": "092H011413"}}, {"model": "wells.bcgs_numbers", "pk": 11453, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-09T22:14:55Z", "update_user": null, "update_date": null, "bcgs_number": "092G080312"}}, {"model": "wells.bcgs_numbers", "pk": 11454, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T18:38:59Z", "update_user": null, "update_date": null, "bcgs_number": "092J005144"}}, {"model": "wells.bcgs_numbers", "pk": 11455, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T18:40:42Z", "update_user": null, "update_date": null, "bcgs_number": "092J005143"}}, {"model": "wells.bcgs_numbers", "pk": 11456, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T20:59:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I046314"}}, {"model": "wells.bcgs_numbers", "pk": 11457, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T21:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "092I055133"}}, {"model": "wells.bcgs_numbers", "pk": 11458, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T21:14:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H033341"}}, {"model": "wells.bcgs_numbers", "pk": 11459, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T23:37:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F076144"}}, {"model": "wells.bcgs_numbers", "pk": 11460, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-10T23:41:08Z", "update_user": null, "update_date": null, "bcgs_number": "082G076221"}}, {"model": "wells.bcgs_numbers", "pk": 11461, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T17:06:35Z", "update_user": null, "update_date": null, "bcgs_number": "092G005334"}}, {"model": "wells.bcgs_numbers", "pk": 11462, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T18:44:03Z", "update_user": null, "update_date": null, "bcgs_number": "092I056434"}}, {"model": "wells.bcgs_numbers", "pk": 11463, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T18:46:17Z", "update_user": null, "update_date": null, "bcgs_number": "092M004213"}}, {"model": "wells.bcgs_numbers", "pk": 11464, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T18:51:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G093421"}}, {"model": "wells.bcgs_numbers", "pk": 11465, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:12:36Z", "update_user": null, "update_date": null, "bcgs_number": "092L067244"}}, {"model": "wells.bcgs_numbers", "pk": 11466, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:13:35Z", "update_user": null, "update_date": null, "bcgs_number": "092L077212"}}, {"model": "wells.bcgs_numbers", "pk": 11467, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:14:24Z", "update_user": null, "update_date": null, "bcgs_number": "092L067124"}}, {"model": "wells.bcgs_numbers", "pk": 11468, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:19:32Z", "update_user": null, "update_date": null, "bcgs_number": "092B002242"}}, {"model": "wells.bcgs_numbers", "pk": 11469, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:25:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B002442"}}, {"model": "wells.bcgs_numbers", "pk": 11470, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:46:56Z", "update_user": null, "update_date": null, "bcgs_number": "092F005214"}}, {"model": "wells.bcgs_numbers", "pk": 11471, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:48:21Z", "update_user": null, "update_date": null, "bcgs_number": "092F011213"}}, {"model": "wells.bcgs_numbers", "pk": 11472, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:49:06Z", "update_user": null, "update_date": null, "bcgs_number": "092F011231"}}, {"model": "wells.bcgs_numbers", "pk": 11473, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:51:09Z", "update_user": null, "update_date": null, "bcgs_number": "092F011233"}}, {"model": "wells.bcgs_numbers", "pk": 11474, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T19:51:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F011321"}}, {"model": "wells.bcgs_numbers", "pk": 11475, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T20:50:27Z", "update_user": null, "update_date": null, "bcgs_number": "092L065111"}}, {"model": "wells.bcgs_numbers", "pk": 11476, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T23:20:26Z", "update_user": null, "update_date": null, "bcgs_number": "092L073212"}}, {"model": "wells.bcgs_numbers", "pk": 11477, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-15T23:36:41Z", "update_user": null, "update_date": null, "bcgs_number": "104J050424"}}, {"model": "wells.bcgs_numbers", "pk": 11478, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-16T16:31:41Z", "update_user": null, "update_date": null, "bcgs_number": "092J077222"}}, {"model": "wells.bcgs_numbers", "pk": 11479, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-17T17:03:43Z", "update_user": null, "update_date": null, "bcgs_number": "093B010334"}}, {"model": "wells.bcgs_numbers", "pk": 11480, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-17T17:24:02Z", "update_user": null, "update_date": null, "bcgs_number": "093B092444"}}, {"model": "wells.bcgs_numbers", "pk": 11481, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-17T20:28:11Z", "update_user": null, "update_date": null, "bcgs_number": "092O090412"}}, {"model": "wells.bcgs_numbers", "pk": 11482, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-17T23:39:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G029234"}}, {"model": "wells.bcgs_numbers", "pk": 11483, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T16:46:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G010233"}}, {"model": "wells.bcgs_numbers", "pk": 11484, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T18:04:12Z", "update_user": null, "update_date": null, "bcgs_number": "094H056213"}}, {"model": "wells.bcgs_numbers", "pk": 11485, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T18:32:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P083424"}}, {"model": "wells.bcgs_numbers", "pk": 11486, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T18:47:27Z", "update_user": null, "update_date": null, "bcgs_number": "094A077221"}}, {"model": "wells.bcgs_numbers", "pk": 11487, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T18:58:40Z", "update_user": null, "update_date": null, "bcgs_number": "094A071124"}}, {"model": "wells.bcgs_numbers", "pk": 11488, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T20:17:32Z", "update_user": null, "update_date": null, "bcgs_number": "094h035243"}}, {"model": "wells.bcgs_numbers", "pk": 11489, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T20:32:52Z", "update_user": null, "update_date": null, "bcgs_number": "094H089222"}}, {"model": "wells.bcgs_numbers", "pk": 11490, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-18T20:50:28Z", "update_user": null, "update_date": null, "bcgs_number": "094h080242"}}, {"model": "wells.bcgs_numbers", "pk": 11491, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-19T20:45:58Z", "update_user": null, "update_date": null, "bcgs_number": "103K015444"}}, {"model": "wells.bcgs_numbers", "pk": 11492, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T16:56:02Z", "update_user": null, "update_date": null, "bcgs_number": "094O028111"}}, {"model": "wells.bcgs_numbers", "pk": 11493, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T17:22:13Z", "update_user": "PROXY_WELLS", "update_date": "2013-11-06T17:51:08Z", "bcgs_number": "094O024131"}}, {"model": "wells.bcgs_numbers", "pk": 11494, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T17:37:53Z", "update_user": null, "update_date": null, "bcgs_number": "094G025222"}}, {"model": "wells.bcgs_numbers", "pk": 11495, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T17:43:07Z", "update_user": null, "update_date": null, "bcgs_number": "094B010313"}}, {"model": "wells.bcgs_numbers", "pk": 11496, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T18:17:27Z", "update_user": null, "update_date": null, "bcgs_number": "094O087121"}}, {"model": "wells.bcgs_numbers", "pk": 11497, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T18:49:40Z", "update_user": null, "update_date": null, "bcgs_number": "094a040213"}}, {"model": "wells.bcgs_numbers", "pk": 11498, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T19:07:40Z", "update_user": null, "update_date": null, "bcgs_number": "093P061224"}}, {"model": "wells.bcgs_numbers", "pk": 11499, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T20:21:51Z", "update_user": null, "update_date": null, "bcgs_number": "093P074144"}}, {"model": "wells.bcgs_numbers", "pk": 11500, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-22T23:15:53Z", "update_user": null, "update_date": null, "bcgs_number": "093P004412"}}, {"model": "wells.bcgs_numbers", "pk": 11501, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-23T23:16:47Z", "update_user": null, "update_date": null, "bcgs_number": "094A008231"}}, {"model": "wells.bcgs_numbers", "pk": 11502, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-24T00:29:54Z", "update_user": null, "update_date": null, "bcgs_number": "094b049321"}}, {"model": "wells.bcgs_numbers", "pk": 11503, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-24T18:24:55Z", "update_user": null, "update_date": null, "bcgs_number": "094H079432"}}, {"model": "wells.bcgs_numbers", "pk": 11504, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-24T19:39:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A017314"}}, {"model": "wells.bcgs_numbers", "pk": 11505, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-25T23:47:36Z", "update_user": null, "update_date": null, "bcgs_number": "094A081344"}}, {"model": "wells.bcgs_numbers", "pk": 11506, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-26T00:12:41Z", "update_user": null, "update_date": null, "bcgs_number": "094o050111"}}, {"model": "wells.bcgs_numbers", "pk": 11507, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-29T19:46:40Z", "update_user": null, "update_date": null, "bcgs_number": "093G057222"}}, {"model": "wells.bcgs_numbers", "pk": 11508, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-11-29T19:50:39Z", "update_user": null, "update_date": null, "bcgs_number": "093J027444"}}, {"model": "wells.bcgs_numbers", "pk": 11509, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:15:28Z", "update_user": null, "update_date": null, "bcgs_number": "092P032112"}}, {"model": "wells.bcgs_numbers", "pk": 11510, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:15:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P032341"}}, {"model": "wells.bcgs_numbers", "pk": 11511, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:16:40Z", "update_user": null, "update_date": null, "bcgs_number": "092P034234"}}, {"model": "wells.bcgs_numbers", "pk": 11512, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:18:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P047124"}}, {"model": "wells.bcgs_numbers", "pk": 11513, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:19:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P047243"}}, {"model": "wells.bcgs_numbers", "pk": 11514, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:39:31Z", "update_user": null, "update_date": null, "bcgs_number": "092P055132"}}, {"model": "wells.bcgs_numbers", "pk": 11515, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:52:29Z", "update_user": null, "update_date": null, "bcgs_number": "092P083333"}}, {"model": "wells.bcgs_numbers", "pk": 11516, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-01T17:53:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P084134"}}, {"model": "wells.bcgs_numbers", "pk": 11517, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-02T17:00:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B083443"}}, {"model": "wells.bcgs_numbers", "pk": 11518, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-02T18:36:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F018221"}}, {"model": "wells.bcgs_numbers", "pk": 11519, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-02T18:41:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F062112"}}, {"model": "wells.bcgs_numbers", "pk": 11520, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-02T21:20:18Z", "update_user": null, "update_date": null, "bcgs_number": "092K044312"}}, {"model": "wells.bcgs_numbers", "pk": 11521, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-02T23:41:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E090231"}}, {"model": "wells.bcgs_numbers", "pk": 11522, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-03T00:15:10Z", "update_user": null, "update_date": null, "bcgs_number": "093P023233"}}, {"model": "wells.bcgs_numbers", "pk": 11523, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-03T00:15:34Z", "update_user": null, "update_date": null, "bcgs_number": "093P031443"}}, {"model": "wells.bcgs_numbers", "pk": 11524, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-03T00:26:29Z", "update_user": null, "update_date": null, "bcgs_number": "094A030134"}}, {"model": "wells.bcgs_numbers", "pk": 11525, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-03T00:31:16Z", "update_user": null, "update_date": null, "bcgs_number": "094A017312"}}, {"model": "wells.bcgs_numbers", "pk": 11526, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-06T17:04:29Z", "update_user": null, "update_date": null, "bcgs_number": "082N007344"}}, {"model": "wells.bcgs_numbers", "pk": 11527, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-06T17:09:00Z", "update_user": null, "update_date": null, "bcgs_number": "082N017312"}}, {"model": "wells.bcgs_numbers", "pk": 11528, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-06T17:11:59Z", "update_user": null, "update_date": null, "bcgs_number": "082N026312"}}, {"model": "wells.bcgs_numbers", "pk": 11529, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-06T17:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "082N026323"}}, {"model": "wells.bcgs_numbers", "pk": 11530, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-06T17:14:44Z", "update_user": null, "update_date": null, "bcgs_number": "082N035424"}}, {"model": "wells.bcgs_numbers", "pk": 11531, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-06T23:29:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A036131"}}, {"model": "wells.bcgs_numbers", "pk": 11532, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T00:17:16Z", "update_user": null, "update_date": null, "bcgs_number": "093I074424"}}, {"model": "wells.bcgs_numbers", "pk": 11533, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T16:56:27Z", "update_user": null, "update_date": null, "bcgs_number": "093B019132"}}, {"model": "wells.bcgs_numbers", "pk": 11534, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T17:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "093B068414"}}, {"model": "wells.bcgs_numbers", "pk": 11535, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T17:03:28Z", "update_user": null, "update_date": null, "bcgs_number": "093B078412"}}, {"model": "wells.bcgs_numbers", "pk": 11536, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T17:08:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B093231"}}, {"model": "wells.bcgs_numbers", "pk": 11537, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T17:10:59Z", "update_user": null, "update_date": null, "bcgs_number": "093B097332"}}, {"model": "wells.bcgs_numbers", "pk": 11538, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T19:25:46Z", "update_user": null, "update_date": null, "bcgs_number": "093G008444"}}, {"model": "wells.bcgs_numbers", "pk": 11539, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T19:28:16Z", "update_user": null, "update_date": null, "bcgs_number": "093G017221"}}, {"model": "wells.bcgs_numbers", "pk": 11540, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T21:26:24Z", "update_user": null, "update_date": null, "bcgs_number": "093P005221"}}, {"model": "wells.bcgs_numbers", "pk": 11541, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T21:42:26Z", "update_user": null, "update_date": null, "bcgs_number": "094A076132"}}, {"model": "wells.bcgs_numbers", "pk": 11542, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T21:42:36Z", "update_user": null, "update_date": null, "bcgs_number": "093O058112"}}, {"model": "wells.bcgs_numbers", "pk": 11543, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-07T21:54:41Z", "update_user": null, "update_date": null, "bcgs_number": "094B040121"}}, {"model": "wells.bcgs_numbers", "pk": 11544, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T17:14:29Z", "update_user": null, "update_date": null, "bcgs_number": "082G061122"}}, {"model": "wells.bcgs_numbers", "pk": 11545, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T17:16:15Z", "update_user": null, "update_date": null, "bcgs_number": "082G062412"}}, {"model": "wells.bcgs_numbers", "pk": 11546, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T18:32:23Z", "update_user": null, "update_date": null, "bcgs_number": "082G014221"}}, {"model": "wells.bcgs_numbers", "pk": 11547, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T18:35:30Z", "update_user": null, "update_date": null, "bcgs_number": "082G034334"}}, {"model": "wells.bcgs_numbers", "pk": 11548, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T18:40:21Z", "update_user": null, "update_date": null, "bcgs_number": "082G043214"}}, {"model": "wells.bcgs_numbers", "pk": 11549, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T18:40:49Z", "update_user": null, "update_date": null, "bcgs_number": "082G043324"}}, {"model": "wells.bcgs_numbers", "pk": 11550, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T18:50:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G072141"}}, {"model": "wells.bcgs_numbers", "pk": 11551, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T18:52:55Z", "update_user": null, "update_date": null, "bcgs_number": "082G082141"}}, {"model": "wells.bcgs_numbers", "pk": 11552, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:05:44Z", "update_user": null, "update_date": null, "bcgs_number": "094A085343"}}, {"model": "wells.bcgs_numbers", "pk": 11553, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:07:37Z", "update_user": null, "update_date": null, "bcgs_number": "094A046242"}}, {"model": "wells.bcgs_numbers", "pk": 11554, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:12:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A045222"}}, {"model": "wells.bcgs_numbers", "pk": 11555, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:16:40Z", "update_user": null, "update_date": null, "bcgs_number": "094A010123"}}, {"model": "wells.bcgs_numbers", "pk": 11556, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:20:08Z", "update_user": null, "update_date": null, "bcgs_number": "093P074233"}}, {"model": "wells.bcgs_numbers", "pk": 11557, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:24:37Z", "update_user": null, "update_date": null, "bcgs_number": "094A039111"}}, {"model": "wells.bcgs_numbers", "pk": 11558, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:34:02Z", "update_user": null, "update_date": null, "bcgs_number": "094A008314"}}, {"model": "wells.bcgs_numbers", "pk": 11559, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:35:42Z", "update_user": null, "update_date": null, "bcgs_number": "093P067443"}}, {"model": "wells.bcgs_numbers", "pk": 11560, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T21:39:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A085434"}}, {"model": "wells.bcgs_numbers", "pk": 11561, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:34:15Z", "update_user": null, "update_date": null, "bcgs_number": "093P070423"}}, {"model": "wells.bcgs_numbers", "pk": 11562, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:36:26Z", "update_user": null, "update_date": null, "bcgs_number": "094A069111"}}, {"model": "wells.bcgs_numbers", "pk": 11563, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:40:00Z", "update_user": null, "update_date": null, "bcgs_number": "093P098311"}}, {"model": "wells.bcgs_numbers", "pk": 11564, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:43:02Z", "update_user": null, "update_date": null, "bcgs_number": "093P078311"}}, {"model": "wells.bcgs_numbers", "pk": 11565, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:45:13Z", "update_user": null, "update_date": null, "bcgs_number": "093P078133"}}, {"model": "wells.bcgs_numbers", "pk": 11566, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:48:00Z", "update_user": null, "update_date": null, "bcgs_number": "093P077244"}}, {"model": "wells.bcgs_numbers", "pk": 11567, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:56:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P075243"}}, {"model": "wells.bcgs_numbers", "pk": 11568, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T22:59:15Z", "update_user": null, "update_date": null, "bcgs_number": "093P075322"}}, {"model": "wells.bcgs_numbers", "pk": 11569, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:09:12Z", "update_user": null, "update_date": null, "bcgs_number": "093P073144"}}, {"model": "wells.bcgs_numbers", "pk": 11570, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:15:19Z", "update_user": null, "update_date": null, "bcgs_number": "093P080144"}}, {"model": "wells.bcgs_numbers", "pk": 11571, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:23:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A085341"}}, {"model": "wells.bcgs_numbers", "pk": 11572, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:29:13Z", "update_user": null, "update_date": null, "bcgs_number": "093P100324"}}, {"model": "wells.bcgs_numbers", "pk": 11573, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:32:41Z", "update_user": null, "update_date": null, "bcgs_number": "093P099442"}}, {"model": "wells.bcgs_numbers", "pk": 11574, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:34:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P090334"}}, {"model": "wells.bcgs_numbers", "pk": 11575, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:39:52Z", "update_user": null, "update_date": null, "bcgs_number": "093P087341"}}, {"model": "wells.bcgs_numbers", "pk": 11576, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:42:01Z", "update_user": null, "update_date": null, "bcgs_number": "093P098124"}}, {"model": "wells.bcgs_numbers", "pk": 11577, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:43:54Z", "update_user": null, "update_date": null, "bcgs_number": "093P090141"}}, {"model": "wells.bcgs_numbers", "pk": 11578, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:45:27Z", "update_user": null, "update_date": null, "bcgs_number": "094A017323"}}, {"model": "wells.bcgs_numbers", "pk": 11579, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-08T23:49:05Z", "update_user": null, "update_date": null, "bcgs_number": "094A067434"}}, {"model": "wells.bcgs_numbers", "pk": 11580, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T16:38:19Z", "update_user": null, "update_date": null, "bcgs_number": "092H068133"}}, {"model": "wells.bcgs_numbers", "pk": 11581, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T16:40:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H077443"}}, {"model": "wells.bcgs_numbers", "pk": 11582, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:15:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G070434"}}, {"model": "wells.bcgs_numbers", "pk": 11583, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:18:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A021222"}}, {"model": "wells.bcgs_numbers", "pk": 11584, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:31:13Z", "update_user": null, "update_date": null, "bcgs_number": "094A035131"}}, {"model": "wells.bcgs_numbers", "pk": 11585, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:44:25Z", "update_user": null, "update_date": null, "bcgs_number": "094A036331"}}, {"model": "wells.bcgs_numbers", "pk": 11586, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:49:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A056111"}}, {"model": "wells.bcgs_numbers", "pk": 11587, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:52:07Z", "update_user": null, "update_date": null, "bcgs_number": "093P015233"}}, {"model": "wells.bcgs_numbers", "pk": 11588, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T21:57:13Z", "update_user": null, "update_date": null, "bcgs_number": "094A034122"}}, {"model": "wells.bcgs_numbers", "pk": 11589, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:35:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P082214"}}, {"model": "wells.bcgs_numbers", "pk": 11590, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:38:47Z", "update_user": null, "update_date": null, "bcgs_number": "094J060233"}}, {"model": "wells.bcgs_numbers", "pk": 11591, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:46:03Z", "update_user": null, "update_date": null, "bcgs_number": "093P068144"}}, {"model": "wells.bcgs_numbers", "pk": 11592, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:50:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P063334"}}, {"model": "wells.bcgs_numbers", "pk": 11593, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:53:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A036112"}}, {"model": "wells.bcgs_numbers", "pk": 11594, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:56:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A045444"}}, {"model": "wells.bcgs_numbers", "pk": 11595, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-14T22:59:19Z", "update_user": null, "update_date": null, "bcgs_number": "094A034133"}}, {"model": "wells.bcgs_numbers", "pk": 11596, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T16:13:27Z", "update_user": null, "update_date": null, "bcgs_number": "093P090123"}}, {"model": "wells.bcgs_numbers", "pk": 11597, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T16:36:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A045133"}}, {"model": "wells.bcgs_numbers", "pk": 11598, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:10:36Z", "update_user": null, "update_date": null, "bcgs_number": "093P060124"}}, {"model": "wells.bcgs_numbers", "pk": 11599, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:14:16Z", "update_user": null, "update_date": null, "bcgs_number": "094A045413"}}, {"model": "wells.bcgs_numbers", "pk": 11600, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:18:12Z", "update_user": null, "update_date": null, "bcgs_number": "093P077223"}}, {"model": "wells.bcgs_numbers", "pk": 11601, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:21:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P068311"}}, {"model": "wells.bcgs_numbers", "pk": 11602, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:31:45Z", "update_user": null, "update_date": null, "bcgs_number": "094G007112"}}, {"model": "wells.bcgs_numbers", "pk": 11603, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:34:50Z", "update_user": null, "update_date": null, "bcgs_number": "094B068343"}}, {"model": "wells.bcgs_numbers", "pk": 11604, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:36:36Z", "update_user": null, "update_date": null, "bcgs_number": "094A078331"}}, {"model": "wells.bcgs_numbers", "pk": 11605, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T17:43:41Z", "update_user": null, "update_date": null, "bcgs_number": "093P077212"}}, {"model": "wells.bcgs_numbers", "pk": 11606, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T17:37:52Z", "update_user": null, "update_date": null, "bcgs_number": "094B049133"}}, {"model": "wells.bcgs_numbers", "pk": 11607, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T17:42:16Z", "update_user": null, "update_date": null, "bcgs_number": "094A032424"}}, {"model": "wells.bcgs_numbers", "pk": 11608, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T17:43:57Z", "update_user": null, "update_date": null, "bcgs_number": "094A043112"}}, {"model": "wells.bcgs_numbers", "pk": 11609, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T17:46:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A033344"}}, {"model": "wells.bcgs_numbers", "pk": 11610, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T17:57:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A043121"}}, {"model": "wells.bcgs_numbers", "pk": 11611, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:20:03Z", "update_user": null, "update_date": null, "bcgs_number": "094B050434"}}, {"model": "wells.bcgs_numbers", "pk": 11612, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:22:32Z", "update_user": null, "update_date": null, "bcgs_number": "094B060211"}}, {"model": "wells.bcgs_numbers", "pk": 11613, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:23:53Z", "update_user": null, "update_date": null, "bcgs_number": "094B010412"}}, {"model": "wells.bcgs_numbers", "pk": 11614, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:29:19Z", "update_user": null, "update_date": null, "bcgs_number": "094A004311"}}, {"model": "wells.bcgs_numbers", "pk": 11615, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:31:29Z", "update_user": null, "update_date": null, "bcgs_number": "094A036242"}}, {"model": "wells.bcgs_numbers", "pk": 11616, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:34:43Z", "update_user": null, "update_date": null, "bcgs_number": "094B097212"}}, {"model": "wells.bcgs_numbers", "pk": 11617, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:36:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A035341"}}, {"model": "wells.bcgs_numbers", "pk": 11618, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:40:00Z", "update_user": null, "update_date": null, "bcgs_number": "094B087434"}}, {"model": "wells.bcgs_numbers", "pk": 11619, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:49:02Z", "update_user": null, "update_date": null, "bcgs_number": "094J087124"}}, {"model": "wells.bcgs_numbers", "pk": 11620, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:50:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P082114"}}, {"model": "wells.bcgs_numbers", "pk": 11621, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:56:46Z", "update_user": null, "update_date": null, "bcgs_number": "094G027313"}}, {"model": "wells.bcgs_numbers", "pk": 11622, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T18:58:48Z", "update_user": null, "update_date": null, "bcgs_number": "094G027142"}}, {"model": "wells.bcgs_numbers", "pk": 11623, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:00:12Z", "update_user": null, "update_date": null, "bcgs_number": "094G036432"}}, {"model": "wells.bcgs_numbers", "pk": 11624, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:01:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A024144"}}, {"model": "wells.bcgs_numbers", "pk": 11625, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:10:15Z", "update_user": null, "update_date": null, "bcgs_number": "094J077234"}}, {"model": "wells.bcgs_numbers", "pk": 11626, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:18:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A067423"}}, {"model": "wells.bcgs_numbers", "pk": 11627, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:23:01Z", "update_user": null, "update_date": null, "bcgs_number": "094A012232"}}, {"model": "wells.bcgs_numbers", "pk": 11628, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:26:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A027121"}}, {"model": "wells.bcgs_numbers", "pk": 11629, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:27:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P092242"}}, {"model": "wells.bcgs_numbers", "pk": 11630, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:30:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A001144"}}, {"model": "wells.bcgs_numbers", "pk": 11631, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:32:27Z", "update_user": null, "update_date": null, "bcgs_number": "094A046333"}}, {"model": "wells.bcgs_numbers", "pk": 11632, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:35:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A027244"}}, {"model": "wells.bcgs_numbers", "pk": 11633, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:39:53Z", "update_user": null, "update_date": null, "bcgs_number": "093P070334"}}, {"model": "wells.bcgs_numbers", "pk": 11634, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:41:37Z", "update_user": null, "update_date": null, "bcgs_number": "093P078134"}}, {"model": "wells.bcgs_numbers", "pk": 11635, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:44:45Z", "update_user": null, "update_date": null, "bcgs_number": "093P050423"}}, {"model": "wells.bcgs_numbers", "pk": 11636, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:48:23Z", "update_user": null, "update_date": null, "bcgs_number": "093P051334"}}, {"model": "wells.bcgs_numbers", "pk": 11637, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T19:52:25Z", "update_user": null, "update_date": null, "bcgs_number": "094B020233"}}, {"model": "wells.bcgs_numbers", "pk": 11638, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T22:38:46Z", "update_user": null, "update_date": null, "bcgs_number": "094J087433"}}, {"model": "wells.bcgs_numbers", "pk": 11639, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T22:43:02Z", "update_user": null, "update_date": null, "bcgs_number": "094A096111"}}, {"model": "wells.bcgs_numbers", "pk": 11640, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T22:47:40Z", "update_user": null, "update_date": null, "bcgs_number": "094J007344"}}, {"model": "wells.bcgs_numbers", "pk": 11641, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T22:54:41Z", "update_user": null, "update_date": null, "bcgs_number": "093P063441"}}, {"model": "wells.bcgs_numbers", "pk": 11642, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T22:56:54Z", "update_user": null, "update_date": null, "bcgs_number": "094B059242"}}, {"model": "wells.bcgs_numbers", "pk": 11643, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T22:58:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A086134"}}, {"model": "wells.bcgs_numbers", "pk": 11644, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:08:18Z", "update_user": null, "update_date": null, "bcgs_number": "094B068234"}}, {"model": "wells.bcgs_numbers", "pk": 11645, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:20:42Z", "update_user": null, "update_date": null, "bcgs_number": "094G024234"}}, {"model": "wells.bcgs_numbers", "pk": 11646, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:23:37Z", "update_user": null, "update_date": null, "bcgs_number": "094B059221"}}, {"model": "wells.bcgs_numbers", "pk": 11647, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:26:32Z", "update_user": null, "update_date": null, "bcgs_number": "094B050443"}}, {"model": "wells.bcgs_numbers", "pk": 11648, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:37:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A063421"}}, {"model": "wells.bcgs_numbers", "pk": 11649, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:42:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A045233"}}, {"model": "wells.bcgs_numbers", "pk": 11650, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:50:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A028334"}}, {"model": "wells.bcgs_numbers", "pk": 11651, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:57:36Z", "update_user": null, "update_date": null, "bcgs_number": "094J062332"}}, {"model": "wells.bcgs_numbers", "pk": 11652, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-16T23:59:55Z", "update_user": null, "update_date": null, "bcgs_number": "094H023241"}}, {"model": "wells.bcgs_numbers", "pk": 11653, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T19:10:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P082111"}}, {"model": "wells.bcgs_numbers", "pk": 11654, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T19:12:10Z", "update_user": null, "update_date": null, "bcgs_number": "094B059213"}}, {"model": "wells.bcgs_numbers", "pk": 11655, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T19:20:36Z", "update_user": null, "update_date": null, "bcgs_number": "094A084412"}}, {"model": "wells.bcgs_numbers", "pk": 11656, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T19:27:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A095234"}}, {"model": "wells.bcgs_numbers", "pk": 11657, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T19:50:09Z", "update_user": null, "update_date": null, "bcgs_number": "094J087213"}}, {"model": "wells.bcgs_numbers", "pk": 11658, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T19:59:39Z", "update_user": null, "update_date": null, "bcgs_number": "094B080334"}}, {"model": "wells.bcgs_numbers", "pk": 11659, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:04:31Z", "update_user": null, "update_date": null, "bcgs_number": "094J087232"}}, {"model": "wells.bcgs_numbers", "pk": 11660, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:09:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A086413"}}, {"model": "wells.bcgs_numbers", "pk": 11661, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:31:11Z", "update_user": null, "update_date": null, "bcgs_number": "094A035334"}}, {"model": "wells.bcgs_numbers", "pk": 11662, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:34:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A063422"}}, {"model": "wells.bcgs_numbers", "pk": 11663, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A074414"}}, {"model": "wells.bcgs_numbers", "pk": 11664, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:43:09Z", "update_user": null, "update_date": null, "bcgs_number": "094A036424"}}, {"model": "wells.bcgs_numbers", "pk": 11665, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:45:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A029341"}}, {"model": "wells.bcgs_numbers", "pk": 11666, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:47:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P089414"}}, {"model": "wells.bcgs_numbers", "pk": 11667, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T20:50:24Z", "update_user": null, "update_date": null, "bcgs_number": "094A035412"}}, {"model": "wells.bcgs_numbers", "pk": 11668, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:06:19Z", "update_user": null, "update_date": null, "bcgs_number": "093P063342"}}, {"model": "wells.bcgs_numbers", "pk": 11669, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:08:39Z", "update_user": null, "update_date": null, "bcgs_number": "094A036444"}}, {"model": "wells.bcgs_numbers", "pk": 11670, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:16:36Z", "update_user": null, "update_date": null, "bcgs_number": "093P100243"}}, {"model": "wells.bcgs_numbers", "pk": 11671, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:17:59Z", "update_user": null, "update_date": null, "bcgs_number": "093P089112"}}, {"model": "wells.bcgs_numbers", "pk": 11672, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:19:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A007412"}}, {"model": "wells.bcgs_numbers", "pk": 11673, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:25:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A040131"}}, {"model": "wells.bcgs_numbers", "pk": 11674, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:34:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A011241"}}, {"model": "wells.bcgs_numbers", "pk": 11675, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:42:02Z", "update_user": null, "update_date": null, "bcgs_number": "093P058144"}}, {"model": "wells.bcgs_numbers", "pk": 11676, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:44:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A035141"}}, {"model": "wells.bcgs_numbers", "pk": 11677, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T22:56:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A035432"}}, {"model": "wells.bcgs_numbers", "pk": 11678, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-17T23:02:36Z", "update_user": null, "update_date": null, "bcgs_number": "093P062424"}}, {"model": "wells.bcgs_numbers", "pk": 11679, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-21T20:56:18Z", "update_user": null, "update_date": null, "bcgs_number": "092P056211"}}, {"model": "wells.bcgs_numbers", "pk": 11680, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-21T21:00:02Z", "update_user": null, "update_date": null, "bcgs_number": "092I020142"}}, {"model": "wells.bcgs_numbers", "pk": 11681, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-22T19:51:15Z", "update_user": null, "update_date": null, "bcgs_number": "092H033323"}}, {"model": "wells.bcgs_numbers", "pk": 11682, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-23T18:48:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H067311"}}, {"model": "wells.bcgs_numbers", "pk": 11683, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T17:16:46Z", "update_user": null, "update_date": null, "bcgs_number": "092F056433"}}, {"model": "wells.bcgs_numbers", "pk": 11684, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T17:23:57Z", "update_user": null, "update_date": null, "bcgs_number": "092F078114"}}, {"model": "wells.bcgs_numbers", "pk": 11685, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T17:24:36Z", "update_user": null, "update_date": null, "bcgs_number": "092F078124"}}, {"model": "wells.bcgs_numbers", "pk": 11686, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T17:27:27Z", "update_user": null, "update_date": null, "bcgs_number": "092F080214"}}, {"model": "wells.bcgs_numbers", "pk": 11687, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T17:27:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F080312"}}, {"model": "wells.bcgs_numbers", "pk": 11688, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T17:32:02Z", "update_user": null, "update_date": null, "bcgs_number": "092F028311"}}, {"model": "wells.bcgs_numbers", "pk": 11689, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T19:29:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A001321"}}, {"model": "wells.bcgs_numbers", "pk": 11690, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T19:31:39Z", "update_user": null, "update_date": null, "bcgs_number": "094A029323"}}, {"model": "wells.bcgs_numbers", "pk": 11691, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T19:38:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P078224"}}, {"model": "wells.bcgs_numbers", "pk": 11692, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T19:41:27Z", "update_user": null, "update_date": null, "bcgs_number": "093P070413"}}, {"model": "wells.bcgs_numbers", "pk": 11693, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T19:58:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A094221"}}, {"model": "wells.bcgs_numbers", "pk": 11694, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T20:09:28Z", "update_user": null, "update_date": null, "bcgs_number": "093P063131"}}, {"model": "wells.bcgs_numbers", "pk": 11695, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T20:15:41Z", "update_user": null, "update_date": null, "bcgs_number": "094A027422"}}, {"model": "wells.bcgs_numbers", "pk": 11696, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T20:17:56Z", "update_user": null, "update_date": null, "bcgs_number": "094B030413"}}, {"model": "wells.bcgs_numbers", "pk": 11697, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T20:20:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A095413"}}, {"model": "wells.bcgs_numbers", "pk": 11698, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-04T20:22:08Z", "update_user": null, "update_date": null, "bcgs_number": "094B030431"}}, {"model": "wells.bcgs_numbers", "pk": 11699, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-06T23:02:16Z", "update_user": null, "update_date": null, "bcgs_number": "093I087243"}}, {"model": "wells.bcgs_numbers", "pk": 11700, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-10T16:15:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I007213"}}, {"model": "wells.bcgs_numbers", "pk": 11701, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-10T16:17:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I026422"}}, {"model": "wells.bcgs_numbers", "pk": 11702, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-10T16:18:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I026442"}}, {"model": "wells.bcgs_numbers", "pk": 11703, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-10T16:19:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I046413"}}, {"model": "wells.bcgs_numbers", "pk": 11704, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-10T16:20:19Z", "update_user": null, "update_date": null, "bcgs_number": "092I061321"}}, {"model": "wells.bcgs_numbers", "pk": 11705, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T20:28:32Z", "update_user": null, "update_date": null, "bcgs_number": "093O047232"}}, {"model": "wells.bcgs_numbers", "pk": 11706, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T22:57:49Z", "update_user": null, "update_date": null, "bcgs_number": "094B009434"}}, {"model": "wells.bcgs_numbers", "pk": 11707, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:02:14Z", "update_user": null, "update_date": null, "bcgs_number": "094J067144"}}, {"model": "wells.bcgs_numbers", "pk": 11708, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:03:48Z", "update_user": null, "update_date": null, "bcgs_number": "093P094321"}}, {"model": "wells.bcgs_numbers", "pk": 11709, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:05:15Z", "update_user": null, "update_date": null, "bcgs_number": "093O070144"}}, {"model": "wells.bcgs_numbers", "pk": 11710, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:09:28Z", "update_user": null, "update_date": null, "bcgs_number": "094M066312"}}, {"model": "wells.bcgs_numbers", "pk": 11711, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:11:05Z", "update_user": null, "update_date": null, "bcgs_number": "093P082231"}}, {"model": "wells.bcgs_numbers", "pk": 11712, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:13:00Z", "update_user": null, "update_date": null, "bcgs_number": "094K076331"}}, {"model": "wells.bcgs_numbers", "pk": 11713, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-11T23:16:08Z", "update_user": null, "update_date": null, "bcgs_number": "093P070341"}}, {"model": "wells.bcgs_numbers", "pk": 11714, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T15:55:49Z", "update_user": null, "update_date": null, "bcgs_number": "094P022222"}}, {"model": "wells.bcgs_numbers", "pk": 11715, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T16:47:25Z", "update_user": null, "update_date": null, "bcgs_number": "094A057343"}}, {"model": "wells.bcgs_numbers", "pk": 11716, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T16:50:33Z", "update_user": null, "update_date": null, "bcgs_number": "094A064323"}}, {"model": "wells.bcgs_numbers", "pk": 11717, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T16:51:38Z", "update_user": null, "update_date": null, "bcgs_number": "092I059143"}}, {"model": "wells.bcgs_numbers", "pk": 11718, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:07:15Z", "update_user": null, "update_date": null, "bcgs_number": "093J017112"}}, {"model": "wells.bcgs_numbers", "pk": 11719, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:39:47Z", "update_user": null, "update_date": null, "bcgs_number": "092F078331"}}, {"model": "wells.bcgs_numbers", "pk": 11720, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:42:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A075433"}}, {"model": "wells.bcgs_numbers", "pk": 11721, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:44:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A064413"}}, {"model": "wells.bcgs_numbers", "pk": 11722, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:45:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A036324"}}, {"model": "wells.bcgs_numbers", "pk": 11723, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:47:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A026123"}}, {"model": "wells.bcgs_numbers", "pk": 11724, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:58:33Z", "update_user": null, "update_date": null, "bcgs_number": "092I026443"}}, {"model": "wells.bcgs_numbers", "pk": 11725, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T17:59:18Z", "update_user": null, "update_date": null, "bcgs_number": "092I045443"}}, {"model": "wells.bcgs_numbers", "pk": 11726, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-12T18:02:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I100441"}}, {"model": "wells.bcgs_numbers", "pk": 11727, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T16:17:40Z", "update_user": null, "update_date": null, "bcgs_number": "104H071113"}}, {"model": "wells.bcgs_numbers", "pk": 11728, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T16:23:24Z", "update_user": null, "update_date": null, "bcgs_number": "094B010111"}}, {"model": "wells.bcgs_numbers", "pk": 11729, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T16:24:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P026431"}}, {"model": "wells.bcgs_numbers", "pk": 11730, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T16:34:55Z", "update_user": null, "update_date": null, "bcgs_number": "092I052134"}}, {"model": "wells.bcgs_numbers", "pk": 11731, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T16:38:11Z", "update_user": null, "update_date": null, "bcgs_number": "082E031332"}}, {"model": "wells.bcgs_numbers", "pk": 11732, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T17:04:00Z", "update_user": null, "update_date": null, "bcgs_number": "093M014334"}}, {"model": "wells.bcgs_numbers", "pk": 11733, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T17:16:26Z", "update_user": null, "update_date": null, "bcgs_number": "103I069343"}}, {"model": "wells.bcgs_numbers", "pk": 11734, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T17:25:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A064342"}}, {"model": "wells.bcgs_numbers", "pk": 11735, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-13T19:06:24Z", "update_user": null, "update_date": null, "bcgs_number": "103H097441"}}, {"model": "wells.bcgs_numbers", "pk": 11736, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T17:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "092P004433"}}, {"model": "wells.bcgs_numbers", "pk": 11737, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T17:48:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A056212"}}, {"model": "wells.bcgs_numbers", "pk": 11738, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T17:51:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A085141"}}, {"model": "wells.bcgs_numbers", "pk": 11739, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T17:53:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A004144"}}, {"model": "wells.bcgs_numbers", "pk": 11740, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T17:55:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A004134"}}, {"model": "wells.bcgs_numbers", "pk": 11741, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T17:57:20Z", "update_user": null, "update_date": null, "bcgs_number": "093P087114"}}, {"model": "wells.bcgs_numbers", "pk": 11742, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T18:19:25Z", "update_user": null, "update_date": null, "bcgs_number": "103J029231"}}, {"model": "wells.bcgs_numbers", "pk": 11743, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T18:22:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G054132"}}, {"model": "wells.bcgs_numbers", "pk": 11744, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T18:40:26Z", "update_user": null, "update_date": null, "bcgs_number": "082L033411"}}, {"model": "wells.bcgs_numbers", "pk": 11745, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T18:44:26Z", "update_user": null, "update_date": null, "bcgs_number": "094A056323"}}, {"model": "wells.bcgs_numbers", "pk": 11746, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:07:10Z", "update_user": null, "update_date": null, "bcgs_number": "092I013134"}}, {"model": "wells.bcgs_numbers", "pk": 11747, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:08:24Z", "update_user": null, "update_date": null, "bcgs_number": "092I013311"}}, {"model": "wells.bcgs_numbers", "pk": 11749, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:10:37Z", "update_user": null, "update_date": null, "bcgs_number": "092I045423"}}, {"model": "wells.bcgs_numbers", "pk": 11750, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:11:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I046133"}}, {"model": "wells.bcgs_numbers", "pk": 11751, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:12:00Z", "update_user": null, "update_date": null, "bcgs_number": "092I051244"}}, {"model": "wells.bcgs_numbers", "pk": 11752, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "092I075441"}}, {"model": "wells.bcgs_numbers", "pk": 11753, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:14:57Z", "update_user": null, "update_date": null, "bcgs_number": "092I079422"}}, {"model": "wells.bcgs_numbers", "pk": 11754, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:15:33Z", "update_user": null, "update_date": null, "bcgs_number": "092I083111"}}, {"model": "wells.bcgs_numbers", "pk": 11755, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:16:05Z", "update_user": null, "update_date": null, "bcgs_number": "092I083132"}}, {"model": "wells.bcgs_numbers", "pk": 11756, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:44:10Z", "update_user": null, "update_date": null, "bcgs_number": "092I022133"}}, {"model": "wells.bcgs_numbers", "pk": 11757, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:44:41Z", "update_user": null, "update_date": null, "bcgs_number": "092I030221"}}, {"model": "wells.bcgs_numbers", "pk": 11758, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-14T19:45:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I072424"}}, {"model": "wells.bcgs_numbers", "pk": 11759, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T20:51:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L092431"}}, {"model": "wells.bcgs_numbers", "pk": 11760, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T20:53:44Z", "update_user": null, "update_date": null, "bcgs_number": "093K006411"}}, {"model": "wells.bcgs_numbers", "pk": 11761, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T20:57:55Z", "update_user": null, "update_date": null, "bcgs_number": "093J084322"}}, {"model": "wells.bcgs_numbers", "pk": 11762, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T20:59:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L093442"}}, {"model": "wells.bcgs_numbers", "pk": 11763, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:04:13Z", "update_user": null, "update_date": null, "bcgs_number": "092F039342"}}, {"model": "wells.bcgs_numbers", "pk": 11764, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:06:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I039342"}}, {"model": "wells.bcgs_numbers", "pk": 11765, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:17:58Z", "update_user": null, "update_date": null, "bcgs_number": "093J015112"}}, {"model": "wells.bcgs_numbers", "pk": 11766, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:26:40Z", "update_user": null, "update_date": null, "bcgs_number": "093G075233"}}, {"model": "wells.bcgs_numbers", "pk": 11767, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:29:14Z", "update_user": null, "update_date": null, "bcgs_number": "103I028343"}}, {"model": "wells.bcgs_numbers", "pk": 11768, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:42:04Z", "update_user": null, "update_date": null, "bcgs_number": "103P020212"}}, {"model": "wells.bcgs_numbers", "pk": 11769, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:44:07Z", "update_user": null, "update_date": null, "bcgs_number": "103P010443"}}, {"model": "wells.bcgs_numbers", "pk": 11770, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:47:59Z", "update_user": null, "update_date": null, "bcgs_number": "093P085133"}}, {"model": "wells.bcgs_numbers", "pk": 11771, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:48:52Z", "update_user": null, "update_date": null, "bcgs_number": "093P091343"}}, {"model": "wells.bcgs_numbers", "pk": 11772, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:54:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P085431"}}, {"model": "wells.bcgs_numbers", "pk": 11773, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-18T21:58:07Z", "update_user": null, "update_date": null, "bcgs_number": "082L071112"}}, {"model": "wells.bcgs_numbers", "pk": 11774, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-19T16:06:23Z", "update_user": null, "update_date": null, "bcgs_number": "092H022111"}}, {"model": "wells.bcgs_numbers", "pk": 11775, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-19T17:37:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I015231"}}, {"model": "wells.bcgs_numbers", "pk": 11776, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-19T17:45:02Z", "update_user": null, "update_date": null, "bcgs_number": "093I099234"}}, {"model": "wells.bcgs_numbers", "pk": 11777, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-19T17:47:23Z", "update_user": null, "update_date": null, "bcgs_number": "093P060134"}}, {"model": "wells.bcgs_numbers", "pk": 11778, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-19T18:17:27Z", "update_user": null, "update_date": null, "bcgs_number": "092C080344"}}, {"model": "wells.bcgs_numbers", "pk": 11779, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-24T17:15:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G025121"}}, {"model": "wells.bcgs_numbers", "pk": 11780, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-24T17:17:08Z", "update_user": null, "update_date": null, "bcgs_number": "092G030223"}}, {"model": "wells.bcgs_numbers", "pk": 11781, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T17:28:37Z", "update_user": null, "update_date": null, "bcgs_number": "092H001313"}}, {"model": "wells.bcgs_numbers", "pk": 11782, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T17:29:26Z", "update_user": null, "update_date": null, "bcgs_number": "092H011332"}}, {"model": "wells.bcgs_numbers", "pk": 11783, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T17:42:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G025144"}}, {"model": "wells.bcgs_numbers", "pk": 11784, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T23:01:48Z", "update_user": null, "update_date": null, "bcgs_number": "093C024213"}}, {"model": "wells.bcgs_numbers", "pk": 11785, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T23:03:29Z", "update_user": null, "update_date": null, "bcgs_number": "093C035314"}}, {"model": "wells.bcgs_numbers", "pk": 11786, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T23:04:20Z", "update_user": null, "update_date": null, "bcgs_number": "093C044412"}}, {"model": "wells.bcgs_numbers", "pk": 11787, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-28T23:05:37Z", "update_user": null, "update_date": null, "bcgs_number": "093C054131"}}, {"model": "wells.bcgs_numbers", "pk": 11788, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:02:24Z", "update_user": null, "update_date": null, "bcgs_number": "093P023244"}}, {"model": "wells.bcgs_numbers", "pk": 11789, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:03:59Z", "update_user": null, "update_date": null, "bcgs_number": "093P031342"}}, {"model": "wells.bcgs_numbers", "pk": 11790, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:05:17Z", "update_user": null, "update_date": null, "bcgs_number": "093P069343"}}, {"model": "wells.bcgs_numbers", "pk": 11791, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:06:26Z", "update_user": null, "update_date": null, "bcgs_number": "093P078431"}}, {"model": "wells.bcgs_numbers", "pk": 11792, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:06:55Z", "update_user": null, "update_date": null, "bcgs_number": "093P081241"}}, {"model": "wells.bcgs_numbers", "pk": 11793, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:30:23Z", "update_user": null, "update_date": null, "bcgs_number": "093H039242"}}, {"model": "wells.bcgs_numbers", "pk": 11794, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T16:30:55Z", "update_user": null, "update_date": null, "bcgs_number": "093H091122"}}, {"model": "wells.bcgs_numbers", "pk": 11795, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-01-31T23:19:34Z", "update_user": null, "update_date": null, "bcgs_number": "093D037313"}}, {"model": "wells.bcgs_numbers", "pk": 11796, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-07T20:05:26Z", "update_user": null, "update_date": null, "bcgs_number": "092H002323"}}, {"model": "wells.bcgs_numbers", "pk": 11797, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-07T23:16:50Z", "update_user": null, "update_date": null, "bcgs_number": "092G025342"}}, {"model": "wells.bcgs_numbers", "pk": 11798, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-07T23:34:52Z", "update_user": null, "update_date": null, "bcgs_number": "092C093332"}}, {"model": "wells.bcgs_numbers", "pk": 11799, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-07T23:36:13Z", "update_user": null, "update_date": null, "bcgs_number": "092K014131"}}, {"model": "wells.bcgs_numbers", "pk": 11800, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T16:21:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F038311"}}, {"model": "wells.bcgs_numbers", "pk": 11801, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T16:26:10Z", "update_user": null, "update_date": null, "bcgs_number": "092F038142"}}, {"model": "wells.bcgs_numbers", "pk": 11802, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T16:52:54Z", "update_user": null, "update_date": null, "bcgs_number": "092L056313"}}, {"model": "wells.bcgs_numbers", "pk": 11803, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T17:16:24Z", "update_user": null, "update_date": null, "bcgs_number": "092H021234"}}, {"model": "wells.bcgs_numbers", "pk": 11804, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T19:36:58Z", "update_user": null, "update_date": null, "bcgs_number": "082F018421"}}, {"model": "wells.bcgs_numbers", "pk": 11805, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T19:41:42Z", "update_user": null, "update_date": null, "bcgs_number": "082F018334"}}, {"model": "wells.bcgs_numbers", "pk": 11806, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T20:45:52Z", "update_user": null, "update_date": null, "bcgs_number": "092B062233"}}, {"model": "wells.bcgs_numbers", "pk": 11807, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T22:22:36Z", "update_user": null, "update_date": null, "bcgs_number": "092B064212"}}, {"model": "wells.bcgs_numbers", "pk": 11808, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-08T22:33:10Z", "update_user": null, "update_date": null, "bcgs_number": "092K031121"}}, {"model": "wells.bcgs_numbers", "pk": 11809, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-09T18:03:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G010232"}}, {"model": "wells.bcgs_numbers", "pk": 11810, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-09T18:30:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G020114"}}, {"model": "wells.bcgs_numbers", "pk": 11811, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-10T16:45:21Z", "update_user": null, "update_date": null, "bcgs_number": "082F014413"}}, {"model": "wells.bcgs_numbers", "pk": 11812, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-10T21:04:51Z", "update_user": null, "update_date": null, "bcgs_number": "082E006141"}}, {"model": "wells.bcgs_numbers", "pk": 11813, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-10T21:08:06Z", "update_user": null, "update_date": null, "bcgs_number": "082E056424"}}, {"model": "wells.bcgs_numbers", "pk": 11814, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-10T21:51:42Z", "update_user": null, "update_date": null, "bcgs_number": "082K051211"}}, {"model": "wells.bcgs_numbers", "pk": 11815, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T17:50:31Z", "update_user": null, "update_date": null, "bcgs_number": "103I058131"}}, {"model": "wells.bcgs_numbers", "pk": 11816, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T18:08:59Z", "update_user": null, "update_date": null, "bcgs_number": "092K021431"}}, {"model": "wells.bcgs_numbers", "pk": 11817, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T20:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P010444"}}, {"model": "wells.bcgs_numbers", "pk": 11818, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T23:39:25Z", "update_user": null, "update_date": null, "bcgs_number": "094G008231"}}, {"model": "wells.bcgs_numbers", "pk": 11819, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T23:40:50Z", "update_user": null, "update_date": null, "bcgs_number": "094G076114"}}, {"model": "wells.bcgs_numbers", "pk": 11820, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T23:46:49Z", "update_user": null, "update_date": null, "bcgs_number": "094J007211"}}, {"model": "wells.bcgs_numbers", "pk": 11821, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T23:49:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A040233"}}, {"model": "wells.bcgs_numbers", "pk": 11822, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-01T23:52:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A028331"}}, {"model": "wells.bcgs_numbers", "pk": 11823, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T16:01:36Z", "update_user": null, "update_date": null, "bcgs_number": "093I087121"}}, {"model": "wells.bcgs_numbers", "pk": 11824, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T16:06:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P031231"}}, {"model": "wells.bcgs_numbers", "pk": 11825, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T16:12:09Z", "update_user": null, "update_date": null, "bcgs_number": "094A019443"}}, {"model": "wells.bcgs_numbers", "pk": 11826, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T16:17:49Z", "update_user": null, "update_date": null, "bcgs_number": "093P004242"}}, {"model": "wells.bcgs_numbers", "pk": 11827, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T16:19:44Z", "update_user": null, "update_date": null, "bcgs_number": "094G035411"}}, {"model": "wells.bcgs_numbers", "pk": 11828, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T20:28:13Z", "update_user": null, "update_date": null, "bcgs_number": "092N087243"}}, {"model": "wells.bcgs_numbers", "pk": 11829, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T20:37:45Z", "update_user": null, "update_date": null, "bcgs_number": "082E009243"}}, {"model": "wells.bcgs_numbers", "pk": 11830, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T20:39:53Z", "update_user": null, "update_date": null, "bcgs_number": "082F076142"}}, {"model": "wells.bcgs_numbers", "pk": 11831, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T21:25:09Z", "update_user": null, "update_date": null, "bcgs_number": "092I046324"}}, {"model": "wells.bcgs_numbers", "pk": 11832, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T21:32:49Z", "update_user": null, "update_date": null, "bcgs_number": "092I046431"}}, {"model": "wells.bcgs_numbers", "pk": 11833, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T21:33:58Z", "update_user": null, "update_date": null, "bcgs_number": "092I055311"}}, {"model": "wells.bcgs_numbers", "pk": 11834, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T22:56:03Z", "update_user": null, "update_date": null, "bcgs_number": "082F063121"}}, {"model": "wells.bcgs_numbers", "pk": 11835, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-02T22:57:38Z", "update_user": null, "update_date": null, "bcgs_number": "082E028224"}}, {"model": "wells.bcgs_numbers", "pk": 11836, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-03T16:10:57Z", "update_user": null, "update_date": null, "bcgs_number": "082L026213"}}, {"model": "wells.bcgs_numbers", "pk": 11837, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-03T16:12:12Z", "update_user": null, "update_date": null, "bcgs_number": "082K011242"}}, {"model": "wells.bcgs_numbers", "pk": 11838, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-03T16:18:48Z", "update_user": null, "update_date": null, "bcgs_number": "082L037312"}}, {"model": "wells.bcgs_numbers", "pk": 11839, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:37:28Z", "update_user": null, "update_date": null, "bcgs_number": "093P052222"}}, {"model": "wells.bcgs_numbers", "pk": 11840, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:38:51Z", "update_user": null, "update_date": null, "bcgs_number": "093P091331"}}, {"model": "wells.bcgs_numbers", "pk": 11841, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:40:36Z", "update_user": null, "update_date": null, "bcgs_number": "093O099344"}}, {"model": "wells.bcgs_numbers", "pk": 11842, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:43:15Z", "update_user": null, "update_date": null, "bcgs_number": "094G029242"}}, {"model": "wells.bcgs_numbers", "pk": 11843, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:46:12Z", "update_user": null, "update_date": null, "bcgs_number": "094G045222"}}, {"model": "wells.bcgs_numbers", "pk": 11844, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:50:08Z", "update_user": null, "update_date": null, "bcgs_number": "094I093214"}}, {"model": "wells.bcgs_numbers", "pk": 11845, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:51:59Z", "update_user": null, "update_date": null, "bcgs_number": "094A036431"}}, {"model": "wells.bcgs_numbers", "pk": 11846, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:53:13Z", "update_user": null, "update_date": null, "bcgs_number": "094P047113"}}, {"model": "wells.bcgs_numbers", "pk": 11847, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T18:55:33Z", "update_user": null, "update_date": null, "bcgs_number": "094G027231"}}, {"model": "wells.bcgs_numbers", "pk": 11848, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T19:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A007241"}}, {"model": "wells.bcgs_numbers", "pk": 11849, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T19:04:26Z", "update_user": null, "update_date": null, "bcgs_number": "093G092442"}}, {"model": "wells.bcgs_numbers", "pk": 11850, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T19:08:24Z", "update_user": null, "update_date": null, "bcgs_number": "094H046122"}}, {"model": "wells.bcgs_numbers", "pk": 11851, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T19:09:55Z", "update_user": null, "update_date": null, "bcgs_number": "093P061112"}}, {"model": "wells.bcgs_numbers", "pk": 11852, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-07T19:14:01Z", "update_user": null, "update_date": null, "bcgs_number": "094A088244"}}, {"model": "wells.bcgs_numbers", "pk": 11853, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:45:14Z", "update_user": null, "update_date": null, "bcgs_number": "094A052434"}}, {"model": "wells.bcgs_numbers", "pk": 11854, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:47:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A052441"}}, {"model": "wells.bcgs_numbers", "pk": 11855, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:51:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A067133"}}, {"model": "wells.bcgs_numbers", "pk": 11856, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:52:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A047332"}}, {"model": "wells.bcgs_numbers", "pk": 11857, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:53:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A047331"}}, {"model": "wells.bcgs_numbers", "pk": 11858, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:56:03Z", "update_user": null, "update_date": null, "bcgs_number": "094A062221"}}, {"model": "wells.bcgs_numbers", "pk": 11859, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:57:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A048321"}}, {"model": "wells.bcgs_numbers", "pk": 11860, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:58:04Z", "update_user": null, "update_date": null, "bcgs_number": "094I070242"}}, {"model": "wells.bcgs_numbers", "pk": 11861, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:59:15Z", "update_user": null, "update_date": null, "bcgs_number": "094P027134"}}, {"model": "wells.bcgs_numbers", "pk": 11862, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:18:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A042442"}}, {"model": "wells.bcgs_numbers", "pk": 11863, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:20:47Z", "update_user": null, "update_date": null, "bcgs_number": "094A032434"}}, {"model": "wells.bcgs_numbers", "pk": 11864, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:21:47Z", "update_user": null, "update_date": null, "bcgs_number": "094A052412"}}, {"model": "wells.bcgs_numbers", "pk": 11865, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:23:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A093423"}}, {"model": "wells.bcgs_numbers", "pk": 11866, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:24:13Z", "update_user": null, "update_date": null, "bcgs_number": "094A052423"}}, {"model": "wells.bcgs_numbers", "pk": 11867, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:26:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A052424"}}, {"model": "wells.bcgs_numbers", "pk": 11868, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:30:20Z", "update_user": null, "update_date": null, "bcgs_number": "094H007221"}}, {"model": "wells.bcgs_numbers", "pk": 11869, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:39:24Z", "update_user": null, "update_date": null, "bcgs_number": "094H056241"}}, {"model": "wells.bcgs_numbers", "pk": 11870, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:40:27Z", "update_user": null, "update_date": null, "bcgs_number": "094H056234"}}, {"model": "wells.bcgs_numbers", "pk": 11871, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:42:19Z", "update_user": null, "update_date": null, "bcgs_number": "094A052244"}}, {"model": "wells.bcgs_numbers", "pk": 11872, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:43:26Z", "update_user": null, "update_date": null, "bcgs_number": "094I070341"}}, {"model": "wells.bcgs_numbers", "pk": 11873, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:45:12Z", "update_user": null, "update_date": null, "bcgs_number": "094I070323"}}, {"model": "wells.bcgs_numbers", "pk": 11874, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:46:24Z", "update_user": null, "update_date": null, "bcgs_number": "094I070342"}}, {"model": "wells.bcgs_numbers", "pk": 11875, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:49:18Z", "update_user": null, "update_date": null, "bcgs_number": "094I070413"}}, {"model": "wells.bcgs_numbers", "pk": 11876, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:50:08Z", "update_user": null, "update_date": null, "bcgs_number": "094I070343"}}, {"model": "wells.bcgs_numbers", "pk": 11877, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:51:53Z", "update_user": null, "update_date": null, "bcgs_number": "094I070111"}}, {"model": "wells.bcgs_numbers", "pk": 11878, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:53:41Z", "update_user": null, "update_date": null, "bcgs_number": "094H007241"}}, {"model": "wells.bcgs_numbers", "pk": 11879, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T21:54:53Z", "update_user": null, "update_date": null, "bcgs_number": "094P027132"}}, {"model": "wells.bcgs_numbers", "pk": 11880, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:02:05Z", "update_user": null, "update_date": null, "bcgs_number": "094A068431"}}, {"model": "wells.bcgs_numbers", "pk": 11881, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:03:05Z", "update_user": null, "update_date": null, "bcgs_number": "094H016444"}}, {"model": "wells.bcgs_numbers", "pk": 11882, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:04:46Z", "update_user": null, "update_date": null, "bcgs_number": "094H017333"}}, {"model": "wells.bcgs_numbers", "pk": 11883, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:06:25Z", "update_user": null, "update_date": null, "bcgs_number": "094A068342"}}, {"model": "wells.bcgs_numbers", "pk": 11884, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:07:27Z", "update_user": null, "update_date": null, "bcgs_number": "094H017331"}}, {"model": "wells.bcgs_numbers", "pk": 11885, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:09:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A047334"}}, {"model": "wells.bcgs_numbers", "pk": 11886, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:11:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A052124"}}, {"model": "wells.bcgs_numbers", "pk": 11887, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:12:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A097434"}}, {"model": "wells.bcgs_numbers", "pk": 11888, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:13:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A055441"}}, {"model": "wells.bcgs_numbers", "pk": 11889, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:17:52Z", "update_user": null, "update_date": null, "bcgs_number": "094H007223"}}, {"model": "wells.bcgs_numbers", "pk": 11890, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:19:47Z", "update_user": null, "update_date": null, "bcgs_number": "094H007243"}}, {"model": "wells.bcgs_numbers", "pk": 11891, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:20:43Z", "update_user": null, "update_date": null, "bcgs_number": "094H007332"}}, {"model": "wells.bcgs_numbers", "pk": 11892, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:29:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A067131"}}, {"model": "wells.bcgs_numbers", "pk": 11893, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:31:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A067113"}}, {"model": "wells.bcgs_numbers", "pk": 11894, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:32:16Z", "update_user": null, "update_date": null, "bcgs_number": "094A067313"}}, {"model": "wells.bcgs_numbers", "pk": 11895, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T22:34:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A047312"}}, {"model": "wells.bcgs_numbers", "pk": 11896, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-10T16:30:26Z", "update_user": null, "update_date": null, "bcgs_number": "094O087122"}}, {"model": "wells.bcgs_numbers", "pk": 11897, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-10T17:27:06Z", "update_user": null, "update_date": null, "bcgs_number": "094C086334"}}, {"model": "wells.bcgs_numbers", "pk": 11898, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-10T17:39:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A086431"}}, {"model": "wells.bcgs_numbers", "pk": 11899, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-10T18:56:33Z", "update_user": null, "update_date": null, "bcgs_number": "094A024411"}}, {"model": "wells.bcgs_numbers", "pk": 11900, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-01T16:04:35Z", "update_user": null, "update_date": null, "bcgs_number": "094B020411"}}, {"model": "wells.bcgs_numbers", "pk": 11901, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T17:40:21Z", "update_user": null, "update_date": null, "bcgs_number": "082E006211"}}, {"model": "wells.bcgs_numbers", "pk": 11902, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T18:08:27Z", "update_user": null, "update_date": null, "bcgs_number": "082K069311"}}, {"model": "wells.bcgs_numbers", "pk": 11903, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T18:16:23Z", "update_user": null, "update_date": null, "bcgs_number": "083D088434"}}, {"model": "wells.bcgs_numbers", "pk": 11904, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T18:18:35Z", "update_user": null, "update_date": null, "bcgs_number": "083D094134"}}, {"model": "wells.bcgs_numbers", "pk": 11905, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T18:26:47Z", "update_user": null, "update_date": null, "bcgs_number": "092B064142"}}, {"model": "wells.bcgs_numbers", "pk": 11906, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T23:09:49Z", "update_user": null, "update_date": null, "bcgs_number": "092G016321"}}, {"model": "wells.bcgs_numbers", "pk": 11907, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T23:50:17Z", "update_user": null, "update_date": null, "bcgs_number": "092G025224"}}, {"model": "wells.bcgs_numbers", "pk": 11908, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-09T23:52:43Z", "update_user": null, "update_date": null, "bcgs_number": "092G025424"}}, {"model": "wells.bcgs_numbers", "pk": 11909, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T16:49:59Z", "update_user": null, "update_date": null, "bcgs_number": "092H007231"}}, {"model": "wells.bcgs_numbers", "pk": 11910, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T16:54:13Z", "update_user": null, "update_date": null, "bcgs_number": "092J037122"}}, {"model": "wells.bcgs_numbers", "pk": 11911, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T17:14:20Z", "update_user": null, "update_date": null, "bcgs_number": "092K047232"}}, {"model": "wells.bcgs_numbers", "pk": 11912, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T17:22:08Z", "update_user": null, "update_date": null, "bcgs_number": "092L068114"}}, {"model": "wells.bcgs_numbers", "pk": 11913, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T17:27:06Z", "update_user": null, "update_date": null, "bcgs_number": "092L073222"}}, {"model": "wells.bcgs_numbers", "pk": 11914, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T17:30:24Z", "update_user": null, "update_date": null, "bcgs_number": "092N088214"}}, {"model": "wells.bcgs_numbers", "pk": 11915, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T17:32:07Z", "update_user": null, "update_date": null, "bcgs_number": "092N096341"}}, {"model": "wells.bcgs_numbers", "pk": 11916, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T17:50:02Z", "update_user": null, "update_date": null, "bcgs_number": "093A006433"}}, {"model": "wells.bcgs_numbers", "pk": 11917, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T18:10:33Z", "update_user": null, "update_date": null, "bcgs_number": "093B011132"}}, {"model": "wells.bcgs_numbers", "pk": 11918, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T18:34:06Z", "update_user": null, "update_date": null, "bcgs_number": "093B059122"}}, {"model": "wells.bcgs_numbers", "pk": 11919, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T18:35:30Z", "update_user": null, "update_date": null, "bcgs_number": "093B091443"}}, {"model": "wells.bcgs_numbers", "pk": 11920, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T18:39:05Z", "update_user": null, "update_date": null, "bcgs_number": "093C021112"}}, {"model": "wells.bcgs_numbers", "pk": 11921, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T18:41:40Z", "update_user": null, "update_date": null, "bcgs_number": "093C035312"}}, {"model": "wells.bcgs_numbers", "pk": 11922, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-10T18:45:22Z", "update_user": null, "update_date": null, "bcgs_number": "093C044344"}}, {"model": "wells.bcgs_numbers", "pk": 11923, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T20:15:30Z", "update_user": null, "update_date": null, "bcgs_number": "093F079141"}}, {"model": "wells.bcgs_numbers", "pk": 11924, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T20:22:00Z", "update_user": null, "update_date": null, "bcgs_number": "0983F081213"}}, {"model": "wells.bcgs_numbers", "pk": 11925, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T20:23:33Z", "update_user": null, "update_date": null, "bcgs_number": "093F081213"}}, {"model": "wells.bcgs_numbers", "pk": 11926, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T20:29:37Z", "update_user": null, "update_date": null, "bcgs_number": "093G007312"}}, {"model": "wells.bcgs_numbers", "pk": 11927, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T20:33:18Z", "update_user": null, "update_date": null, "bcgs_number": "093G028412"}}, {"model": "wells.bcgs_numbers", "pk": 11928, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T20:52:11Z", "update_user": null, "update_date": null, "bcgs_number": "093J009324"}}, {"model": "wells.bcgs_numbers", "pk": 11929, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:09:12Z", "update_user": null, "update_date": null, "bcgs_number": "093L049424"}}, {"model": "wells.bcgs_numbers", "pk": 11930, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:12:38Z", "update_user": null, "update_date": null, "bcgs_number": "093L049443"}}, {"model": "wells.bcgs_numbers", "pk": 11931, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:15:49Z", "update_user": null, "update_date": null, "bcgs_number": "093L100134"}}, {"model": "wells.bcgs_numbers", "pk": 11932, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:17:38Z", "update_user": null, "update_date": null, "bcgs_number": "093P013144"}}, {"model": "wells.bcgs_numbers", "pk": 11933, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:28:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A026243"}}, {"model": "wells.bcgs_numbers", "pk": 11934, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:36:46Z", "update_user": null, "update_date": null, "bcgs_number": "094C029114"}}, {"model": "wells.bcgs_numbers", "pk": 11935, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:41:50Z", "update_user": null, "update_date": null, "bcgs_number": "094G097313"}}, {"model": "wells.bcgs_numbers", "pk": 11936, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-13T21:45:29Z", "update_user": null, "update_date": null, "bcgs_number": "102P070233"}}, {"model": "wells.bcgs_numbers", "pk": 11937, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-23T16:20:03Z", "update_user": null, "update_date": null, "bcgs_number": "092I054334"}}, {"model": "wells.bcgs_numbers", "pk": 11938, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-23T18:37:35Z", "update_user": null, "update_date": null, "bcgs_number": "092P074312"}}, {"model": "wells.bcgs_numbers", "pk": 11939, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-24T22:34:31Z", "update_user": null, "update_date": null, "bcgs_number": "092B063113"}}, {"model": "wells.bcgs_numbers", "pk": 11940, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-07-11T17:52:30Z", "update_user": null, "update_date": null, "bcgs_number": "094O050232"}}, {"model": "wells.bcgs_numbers", "pk": 11941, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-07-26T16:31:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P030311"}}, {"model": "wells.bcgs_numbers", "pk": 11942, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-07-26T17:21:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P064144"}}, {"model": "wells.bcgs_numbers", "pk": 11943, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-07-26T17:51:45Z", "update_user": null, "update_date": null, "bcgs_number": "092J047414"}}, {"model": "wells.bcgs_numbers", "pk": 11944, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-08-26T21:23:24Z", "update_user": null, "update_date": null, "bcgs_number": "093P015224"}}, {"model": "wells.bcgs_numbers", "pk": 11945, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-08-31T18:33:28Z", "update_user": null, "update_date": null, "bcgs_number": "093P016112"}}, {"model": "wells.bcgs_numbers", "pk": 11946, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-08-31T22:58:33Z", "update_user": null, "update_date": null, "bcgs_number": "082E009142"}}, {"model": "wells.bcgs_numbers", "pk": 11947, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-08-31T23:09:40Z", "update_user": null, "update_date": null, "bcgs_number": "082E057333"}}, {"model": "wells.bcgs_numbers", "pk": 11948, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-08-31T23:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "082E095342"}}, {"model": "wells.bcgs_numbers", "pk": 11949, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-01T18:47:57Z", "update_user": null, "update_date": null, "bcgs_number": "082G035111"}}, {"model": "wells.bcgs_numbers", "pk": 11950, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-01T19:27:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G051214"}}, {"model": "wells.bcgs_numbers", "pk": 11951, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-01T19:37:09Z", "update_user": null, "update_date": null, "bcgs_number": "082G062332"}}, {"model": "wells.bcgs_numbers", "pk": 11952, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T15:58:33Z", "update_user": null, "update_date": null, "bcgs_number": "082K069133"}}, {"model": "wells.bcgs_numbers", "pk": 11953, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T16:02:16Z", "update_user": null, "update_date": null, "bcgs_number": "082L013223"}}, {"model": "wells.bcgs_numbers", "pk": 11954, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T16:14:52Z", "update_user": null, "update_date": null, "bcgs_number": "082N053241"}}, {"model": "wells.bcgs_numbers", "pk": 11955, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T16:15:47Z", "update_user": null, "update_date": null, "bcgs_number": "083D074411"}}, {"model": "wells.bcgs_numbers", "pk": 11956, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T18:48:33Z", "update_user": null, "update_date": null, "bcgs_number": "092G025411"}}, {"model": "wells.bcgs_numbers", "pk": 11957, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T18:50:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G025413"}}, {"model": "wells.bcgs_numbers", "pk": 11958, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T18:53:59Z", "update_user": null, "update_date": null, "bcgs_number": "092G026313"}}, {"model": "wells.bcgs_numbers", "pk": 11959, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T18:55:35Z", "update_user": null, "update_date": null, "bcgs_number": "092G029341"}}, {"model": "wells.bcgs_numbers", "pk": 11960, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "092G029343"}}, {"model": "wells.bcgs_numbers", "pk": 11961, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092G029411"}}, {"model": "wells.bcgs_numbers", "pk": 11962, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:06:10Z", "update_user": null, "update_date": null, "bcgs_number": "092G035232"}}, {"model": "wells.bcgs_numbers", "pk": 11963, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:07:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G036144"}}, {"model": "wells.bcgs_numbers", "pk": 11964, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:22:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I069312"}}, {"model": "wells.bcgs_numbers", "pk": 11965, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:34:46Z", "update_user": null, "update_date": null, "bcgs_number": "093A003212"}}, {"model": "wells.bcgs_numbers", "pk": 11966, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:36:24Z", "update_user": null, "update_date": null, "bcgs_number": "093A014323"}}, {"model": "wells.bcgs_numbers", "pk": 11967, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:46:00Z", "update_user": null, "update_date": null, "bcgs_number": "093G076141"}}, {"model": "wells.bcgs_numbers", "pk": 11968, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:47:25Z", "update_user": null, "update_date": null, "bcgs_number": "093O099434"}}, {"model": "wells.bcgs_numbers", "pk": 11969, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T19:47:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A074111"}}, {"model": "wells.bcgs_numbers", "pk": 11970, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:08:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G025131"}}, {"model": "wells.bcgs_numbers", "pk": 11971, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:09:20Z", "update_user": null, "update_date": null, "bcgs_number": "092G025142"}}, {"model": "wells.bcgs_numbers", "pk": 11972, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:11:17Z", "update_user": null, "update_date": null, "bcgs_number": "092G025313"}}, {"model": "wells.bcgs_numbers", "pk": 11973, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G025314"}}, {"model": "wells.bcgs_numbers", "pk": 11974, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "092G025322"}}, {"model": "wells.bcgs_numbers", "pk": 11975, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:14:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G025323"}}, {"model": "wells.bcgs_numbers", "pk": 11976, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:14:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G025324"}}, {"model": "wells.bcgs_numbers", "pk": 11977, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:24:04Z", "update_user": null, "update_date": null, "bcgs_number": "092G009424"}}, {"model": "wells.bcgs_numbers", "pk": 11978, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:29:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G015232"}}, {"model": "wells.bcgs_numbers", "pk": 11979, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T20:29:26Z", "update_user": null, "update_date": null, "bcgs_number": "092G015442"}}, {"model": "wells.bcgs_numbers", "pk": 11980, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T21:25:43Z", "update_user": null, "update_date": null, "bcgs_number": "092B020224"}}, {"model": "wells.bcgs_numbers", "pk": 11981, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T21:26:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B025142"}}, {"model": "wells.bcgs_numbers", "pk": 11982, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-02T21:32:46Z", "update_user": null, "update_date": null, "bcgs_number": "083D075332"}}, {"model": "wells.bcgs_numbers", "pk": 11983, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-06T20:44:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E013432"}}, {"model": "wells.bcgs_numbers", "pk": 11984, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-06T20:49:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E018134"}}, {"model": "wells.bcgs_numbers", "pk": 11985, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-06T21:10:19Z", "update_user": null, "update_date": null, "bcgs_number": "082J041123"}}, {"model": "wells.bcgs_numbers", "pk": 11986, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-06T21:31:37Z", "update_user": null, "update_date": null, "bcgs_number": "082K060412"}}, {"model": "wells.bcgs_numbers", "pk": 11987, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-06T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "082N026331"}}, {"model": "wells.bcgs_numbers", "pk": 11988, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T21:53:31Z", "update_user": null, "update_date": null, "bcgs_number": "092F039232"}}, {"model": "wells.bcgs_numbers", "pk": 11989, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T22:05:35Z", "update_user": null, "update_date": null, "bcgs_number": "092F065214"}}, {"model": "wells.bcgs_numbers", "pk": 11990, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:12:04Z", "update_user": null, "update_date": null, "bcgs_number": "092G026131"}}, {"model": "wells.bcgs_numbers", "pk": 11991, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:20:24Z", "update_user": null, "update_date": null, "bcgs_number": "092G093143"}}, {"model": "wells.bcgs_numbers", "pk": 11992, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:33:03Z", "update_user": null, "update_date": null, "bcgs_number": "092J063224"}}, {"model": "wells.bcgs_numbers", "pk": 11993, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:38:13Z", "update_user": null, "update_date": null, "bcgs_number": "092o098124"}}, {"model": "wells.bcgs_numbers", "pk": 11994, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:41:27Z", "update_user": null, "update_date": null, "bcgs_number": "092K006433"}}, {"model": "wells.bcgs_numbers", "pk": 11995, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:42:42Z", "update_user": null, "update_date": null, "bcgs_number": "092K014141"}}, {"model": "wells.bcgs_numbers", "pk": 11996, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:44:20Z", "update_user": null, "update_date": null, "bcgs_number": "093J005121"}}, {"model": "wells.bcgs_numbers", "pk": 11997, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:45:16Z", "update_user": null, "update_date": null, "bcgs_number": "093I061324"}}, {"model": "wells.bcgs_numbers", "pk": 11998, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:45:59Z", "update_user": null, "update_date": null, "bcgs_number": "093L047214"}}, {"model": "wells.bcgs_numbers", "pk": 11999, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:47:00Z", "update_user": null, "update_date": null, "bcgs_number": "092K014242"}}, {"model": "wells.bcgs_numbers", "pk": 12000, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:48:22Z", "update_user": null, "update_date": null, "bcgs_number": "093M012344"}}, {"model": "wells.bcgs_numbers", "pk": 12001, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:48:36Z", "update_user": null, "update_date": null, "bcgs_number": "092K031334"}}, {"model": "wells.bcgs_numbers", "pk": 12002, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:49:37Z", "update_user": null, "update_date": null, "bcgs_number": "092K060224"}}, {"model": "wells.bcgs_numbers", "pk": 12003, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:50:01Z", "update_user": null, "update_date": null, "bcgs_number": "094A085244"}}, {"model": "wells.bcgs_numbers", "pk": 12004, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:51:42Z", "update_user": null, "update_date": null, "bcgs_number": "092O041441"}}, {"model": "wells.bcgs_numbers", "pk": 12005, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:52:58Z", "update_user": null, "update_date": null, "bcgs_number": "103P009423"}}, {"model": "wells.bcgs_numbers", "pk": 12006, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:53:00Z", "update_user": null, "update_date": null, "bcgs_number": "092O050232"}}, {"model": "wells.bcgs_numbers", "pk": 12007, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-07T23:54:10Z", "update_user": null, "update_date": null, "bcgs_number": "092O050314"}}, {"model": "wells.bcgs_numbers", "pk": 12008, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-09T15:47:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L075331"}}, {"model": "wells.bcgs_numbers", "pk": 12009, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-09-29T17:54:51Z", "update_user": null, "update_date": null, "bcgs_number": "104H071111"}}, {"model": "wells.bcgs_numbers", "pk": 12010, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-10-17T23:03:42Z", "update_user": null, "update_date": null, "bcgs_number": "094A091322"}}, {"model": "wells.bcgs_numbers", "pk": 12011, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-08T22:58:20Z", "update_user": null, "update_date": null, "bcgs_number": "082B093334"}}, {"model": "wells.bcgs_numbers", "pk": 12012, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-08T23:22:44Z", "update_user": null, "update_date": null, "bcgs_number": "082E007121"}}, {"model": "wells.bcgs_numbers", "pk": 12013, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-08T23:25:02Z", "update_user": null, "update_date": null, "bcgs_number": "082E008143"}}, {"model": "wells.bcgs_numbers", "pk": 12014, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-08T23:29:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E010131"}}, {"model": "wells.bcgs_numbers", "pk": 12015, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-08T23:56:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E026123"}}, {"model": "wells.bcgs_numbers", "pk": 12016, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-08T23:58:02Z", "update_user": null, "update_date": null, "bcgs_number": "082E026124"}}, {"model": "wells.bcgs_numbers", "pk": 12017, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-09T18:43:15Z", "update_user": null, "update_date": null, "bcgs_number": "082E032433"}}, {"model": "wells.bcgs_numbers", "pk": 12018, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-09T18:50:11Z", "update_user": null, "update_date": null, "bcgs_number": "082E045214"}}, {"model": "wells.bcgs_numbers", "pk": 12019, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-09T18:55:33Z", "update_user": null, "update_date": null, "bcgs_number": "082E046234"}}, {"model": "wells.bcgs_numbers", "pk": 12020, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-09T21:21:25Z", "update_user": null, "update_date": null, "bcgs_number": "082F086411"}}, {"model": "wells.bcgs_numbers", "pk": 12021, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-09T21:51:38Z", "update_user": null, "update_date": null, "bcgs_number": "082G061321"}}, {"model": "wells.bcgs_numbers", "pk": 12022, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-10T16:43:43Z", "update_user": null, "update_date": null, "bcgs_number": "082J012113"}}, {"model": "wells.bcgs_numbers", "pk": 12023, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-22T00:57:45Z", "update_user": null, "update_date": null, "bcgs_number": "094G040243"}}, {"model": "wells.bcgs_numbers", "pk": 12024, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-28T18:12:59Z", "update_user": null, "update_date": null, "bcgs_number": "082K035244"}}, {"model": "wells.bcgs_numbers", "pk": 12025, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T17:38:27Z", "update_user": null, "update_date": null, "bcgs_number": "082K060334"}}, {"model": "wells.bcgs_numbers", "pk": 12026, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T17:41:33Z", "update_user": null, "update_date": null, "bcgs_number": "082K060344"}}, {"model": "wells.bcgs_numbers", "pk": 12027, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T17:49:37Z", "update_user": null, "update_date": null, "bcgs_number": "082K089324"}}, {"model": "wells.bcgs_numbers", "pk": 12028, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T18:41:53Z", "update_user": null, "update_date": null, "bcgs_number": "092A031443"}}, {"model": "wells.bcgs_numbers", "pk": 12029, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T18:56:20Z", "update_user": null, "update_date": null, "bcgs_number": "092B033113"}}, {"model": "wells.bcgs_numbers", "pk": 12030, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T19:39:44Z", "update_user": null, "update_date": null, "bcgs_number": "092C058244"}}, {"model": "wells.bcgs_numbers", "pk": 12031, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T19:47:19Z", "update_user": null, "update_date": null, "bcgs_number": "092C085441"}}, {"model": "wells.bcgs_numbers", "pk": 12032, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T19:49:00Z", "update_user": null, "update_date": null, "bcgs_number": "092C085123"}}, {"model": "wells.bcgs_numbers", "pk": 12033, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T19:58:52Z", "update_user": null, "update_date": null, "bcgs_number": "092C093314"}}, {"model": "wells.bcgs_numbers", "pk": 12034, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T21:15:58Z", "update_user": null, "update_date": null, "bcgs_number": "092E069233"}}, {"model": "wells.bcgs_numbers", "pk": 12035, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T21:20:05Z", "update_user": null, "update_date": null, "bcgs_number": "092F032143"}}, {"model": "wells.bcgs_numbers", "pk": 12036, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T21:34:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G003113"}}, {"model": "wells.bcgs_numbers", "pk": 12037, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T21:57:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G052243"}}, {"model": "wells.bcgs_numbers", "pk": 12038, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T22:00:09Z", "update_user": null, "update_date": null, "bcgs_number": "092G056211"}}, {"model": "wells.bcgs_numbers", "pk": 12039, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T22:55:18Z", "update_user": null, "update_date": null, "bcgs_number": "092K029134"}}, {"model": "wells.bcgs_numbers", "pk": 12040, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092L009132"}}, {"model": "wells.bcgs_numbers", "pk": 12041, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:02:28Z", "update_user": null, "update_date": null, "bcgs_number": "092L036142"}}, {"model": "wells.bcgs_numbers", "pk": 12042, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:04:08Z", "update_user": null, "update_date": null, "bcgs_number": "092L053442"}}, {"model": "wells.bcgs_numbers", "pk": 12043, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:06:53Z", "update_user": null, "update_date": null, "bcgs_number": "092L055423"}}, {"model": "wells.bcgs_numbers", "pk": 12044, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:17:27Z", "update_user": null, "update_date": null, "bcgs_number": "092N087443"}}, {"model": "wells.bcgs_numbers", "pk": 12045, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:19:09Z", "update_user": null, "update_date": null, "bcgs_number": "092N096333"}}, {"model": "wells.bcgs_numbers", "pk": 12046, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:28:02Z", "update_user": null, "update_date": null, "bcgs_number": "092O069224"}}, {"model": "wells.bcgs_numbers", "pk": 12047, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:29:18Z", "update_user": null, "update_date": null, "bcgs_number": "092O073333"}}, {"model": "wells.bcgs_numbers", "pk": 12048, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:43:41Z", "update_user": null, "update_date": null, "bcgs_number": "093E090131"}}, {"model": "wells.bcgs_numbers", "pk": 12049, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:46:07Z", "update_user": null, "update_date": null, "bcgs_number": "093I061424"}}, {"model": "wells.bcgs_numbers", "pk": 12050, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:47:37Z", "update_user": null, "update_date": null, "bcgs_number": "093I071124"}}, {"model": "wells.bcgs_numbers", "pk": 12051, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:51:23Z", "update_user": null, "update_date": null, "bcgs_number": "093I093111"}}, {"model": "wells.bcgs_numbers", "pk": 12052, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:56:46Z", "update_user": null, "update_date": null, "bcgs_number": "093L039443"}}, {"model": "wells.bcgs_numbers", "pk": 12053, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-29T23:58:12Z", "update_user": null, "update_date": null, "bcgs_number": "093L040331"}}, {"model": "wells.bcgs_numbers", "pk": 12054, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T00:21:42Z", "update_user": null, "update_date": null, "bcgs_number": "093N088443"}}, {"model": "wells.bcgs_numbers", "pk": 12055, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T21:43:38Z", "update_user": null, "update_date": null, "bcgs_number": "094K084421"}}, {"model": "wells.bcgs_numbers", "pk": 12056, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:03:45Z", "update_user": null, "update_date": null, "bcgs_number": "103K010131"}}, {"model": "wells.bcgs_numbers", "pk": 12057, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:07:01Z", "update_user": null, "update_date": null, "bcgs_number": "103P009234"}}, {"model": "wells.bcgs_numbers", "pk": 12058, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:08:18Z", "update_user": null, "update_date": null, "bcgs_number": "103P009424"}}, {"model": "wells.bcgs_numbers", "pk": 12059, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:11:37Z", "update_user": null, "update_date": null, "bcgs_number": "103P014444"}}, {"model": "wells.bcgs_numbers", "pk": 12060, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:26:06Z", "update_user": null, "update_date": null, "bcgs_number": "103P040213"}}, {"model": "wells.bcgs_numbers", "pk": 12061, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:27:20Z", "update_user": null, "update_date": null, "bcgs_number": "103P043241"}}, {"model": "wells.bcgs_numbers", "pk": 12062, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:28:27Z", "update_user": null, "update_date": null, "bcgs_number": "103P091312"}}, {"model": "wells.bcgs_numbers", "pk": 12063, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-11-30T22:30:33Z", "update_user": null, "update_date": null, "bcgs_number": "104A004421"}}, {"model": "wells.bcgs_numbers", "pk": 12064, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-12-20T17:17:16Z", "update_user": null, "update_date": null, "bcgs_number": "093P098212"}}, {"model": "wells.bcgs_numbers", "pk": 12065, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-12-20T17:40:16Z", "update_user": null, "update_date": null, "bcgs_number": "093P089111"}}, {"model": "wells.bcgs_numbers", "pk": 12066, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-01-31T23:55:08Z", "update_user": null, "update_date": null, "bcgs_number": "094J087212"}}, {"model": "wells.bcgs_numbers", "pk": 12067, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T00:28:50Z", "update_user": null, "update_date": null, "bcgs_number": "094H034424"}}, {"model": "wells.bcgs_numbers", "pk": 12068, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T00:33:03Z", "update_user": null, "update_date": null, "bcgs_number": "094H023414"}}, {"model": "wells.bcgs_numbers", "pk": 12069, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T16:53:27Z", "update_user": null, "update_date": null, "bcgs_number": "094B100234"}}, {"model": "wells.bcgs_numbers", "pk": 12070, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T17:06:26Z", "update_user": null, "update_date": null, "bcgs_number": "094B100232"}}, {"model": "wells.bcgs_numbers", "pk": 12071, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T17:09:23Z", "update_user": null, "update_date": null, "bcgs_number": "094P068133"}}, {"model": "wells.bcgs_numbers", "pk": 12072, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T17:14:53Z", "update_user": null, "update_date": null, "bcgs_number": "094H040424"}}, {"model": "wells.bcgs_numbers", "pk": 12073, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T17:30:28Z", "update_user": null, "update_date": null, "bcgs_number": "093P053313"}}, {"model": "wells.bcgs_numbers", "pk": 12074, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T23:20:42Z", "update_user": null, "update_date": null, "bcgs_number": "094J058144"}}, {"model": "wells.bcgs_numbers", "pk": 12075, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T23:20:57Z", "update_user": null, "update_date": null, "bcgs_number": "094H038214"}}, {"model": "wells.bcgs_numbers", "pk": 12076, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T23:46:19Z", "update_user": null, "update_date": null, "bcgs_number": "094K092132"}}, {"model": "wells.bcgs_numbers", "pk": 12077, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-01T23:50:23Z", "update_user": null, "update_date": null, "bcgs_number": "094N002112"}}, {"model": "wells.bcgs_numbers", "pk": 12078, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-13T18:05:52Z", "update_user": null, "update_date": null, "bcgs_number": "092G036222"}}, {"model": "wells.bcgs_numbers", "pk": 12079, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T19:54:12Z", "update_user": null, "update_date": null, "bcgs_number": "094O075122"}}, {"model": "wells.bcgs_numbers", "pk": 12080, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:13:01Z", "update_user": null, "update_date": null, "bcgs_number": "094B057214"}}, {"model": "wells.bcgs_numbers", "pk": 12081, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:13:51Z", "update_user": null, "update_date": null, "bcgs_number": "094p027343"}}, {"model": "wells.bcgs_numbers", "pk": 12082, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:16:38Z", "update_user": null, "update_date": null, "bcgs_number": "094b030213"}}, {"model": "wells.bcgs_numbers", "pk": 12083, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:16:53Z", "update_user": null, "update_date": null, "bcgs_number": "094h002432"}}, {"model": "wells.bcgs_numbers", "pk": 12084, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:18:29Z", "update_user": null, "update_date": null, "bcgs_number": "094p018344"}}, {"model": "wells.bcgs_numbers", "pk": 12085, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:18:39Z", "update_user": null, "update_date": null, "bcgs_number": "094j067411"}}, {"model": "wells.bcgs_numbers", "pk": 12086, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:18:48Z", "update_user": null, "update_date": null, "bcgs_number": "094j061321"}}, {"model": "wells.bcgs_numbers", "pk": 12087, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-16T21:24:53Z", "update_user": null, "update_date": null, "bcgs_number": "093o040343"}}, {"model": "wells.bcgs_numbers", "pk": 12088, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T19:54:32Z", "update_user": null, "update_date": null, "bcgs_number": "094E003144"}}, {"model": "wells.bcgs_numbers", "pk": 12089, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T23:52:04Z", "update_user": null, "update_date": null, "bcgs_number": "092G029211"}}, {"model": "wells.bcgs_numbers", "pk": 12090, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T23:52:37Z", "update_user": null, "update_date": null, "bcgs_number": "094G029211"}}, {"model": "wells.bcgs_numbers", "pk": 12091, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T23:58:08Z", "update_user": null, "update_date": null, "bcgs_number": "094K069421"}}, {"model": "wells.bcgs_numbers", "pk": 12092, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T23:58:20Z", "update_user": null, "update_date": null, "bcgs_number": "094K084242"}}, {"model": "wells.bcgs_numbers", "pk": 12093, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T23:58:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P051323"}}, {"model": "wells.bcgs_numbers", "pk": 12094, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-28T23:58:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A009434"}}, {"model": "wells.bcgs_numbers", "pk": 12095, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-03-08T20:34:51Z", "update_user": null, "update_date": null, "bcgs_number": "092B020112"}}, {"model": "wells.bcgs_numbers", "pk": 12096, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-03T16:28:00Z", "update_user": null, "update_date": null, "bcgs_number": "092H001311"}}, {"model": "wells.bcgs_numbers", "pk": 12097, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:39:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L092342"}}, {"model": "wells.bcgs_numbers", "pk": 12098, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:40:06Z", "update_user": null, "update_date": null, "bcgs_number": "093G002243"}}, {"model": "wells.bcgs_numbers", "pk": 12099, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:40:42Z", "update_user": null, "update_date": null, "bcgs_number": "093G013131"}}, {"model": "wells.bcgs_numbers", "pk": 12100, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:41:06Z", "update_user": null, "update_date": null, "bcgs_number": "103P009213"}}, {"model": "wells.bcgs_numbers", "pk": 12101, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:41:34Z", "update_user": null, "update_date": null, "bcgs_number": "093B095224"}}, {"model": "wells.bcgs_numbers", "pk": 12102, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:41:56Z", "update_user": null, "update_date": null, "bcgs_number": "092I099212"}}, {"model": "wells.bcgs_numbers", "pk": 12103, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:42:25Z", "update_user": null, "update_date": null, "bcgs_number": "082E006341"}}, {"model": "wells.bcgs_numbers", "pk": 12104, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:43:14Z", "update_user": null, "update_date": null, "bcgs_number": "092O100331"}}, {"model": "wells.bcgs_numbers", "pk": 12105, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:44:01Z", "update_user": null, "update_date": null, "bcgs_number": "093B040434"}}, {"model": "wells.bcgs_numbers", "pk": 12106, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:44:31Z", "update_user": null, "update_date": null, "bcgs_number": "093B030334"}}, {"model": "wells.bcgs_numbers", "pk": 12107, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:46:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G025432"}}, {"model": "wells.bcgs_numbers", "pk": 12108, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:46:34Z", "update_user": null, "update_date": null, "bcgs_number": "092H006324"}}, {"model": "wells.bcgs_numbers", "pk": 12109, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:47:03Z", "update_user": null, "update_date": null, "bcgs_number": "092H006424"}}, {"model": "wells.bcgs_numbers", "pk": 12110, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:47:31Z", "update_user": null, "update_date": null, "bcgs_number": "092L065421"}}, {"model": "wells.bcgs_numbers", "pk": 12111, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:47:57Z", "update_user": null, "update_date": null, "bcgs_number": "092H006423"}}, {"model": "wells.bcgs_numbers", "pk": 12112, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:48:26Z", "update_user": null, "update_date": null, "bcgs_number": "092H020223"}}, {"model": "wells.bcgs_numbers", "pk": 12113, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:48:51Z", "update_user": null, "update_date": null, "bcgs_number": "092H007313"}}, {"model": "wells.bcgs_numbers", "pk": 12114, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-21T16:49:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H007324"}}, {"model": "wells.bcgs_numbers", "pk": 12115, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:11:08Z", "update_user": null, "update_date": null, "bcgs_number": "093K014212"}}, {"model": "wells.bcgs_numbers", "pk": 12116, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "082F003344"}}, {"model": "wells.bcgs_numbers", "pk": 12117, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:20:10Z", "update_user": null, "update_date": null, "bcgs_number": "092B042211"}}, {"model": "wells.bcgs_numbers", "pk": 12118, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:22:59Z", "update_user": null, "update_date": null, "bcgs_number": "094O044411"}}, {"model": "wells.bcgs_numbers", "pk": 12119, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:23:47Z", "update_user": null, "update_date": null, "bcgs_number": "094O044432"}}, {"model": "wells.bcgs_numbers", "pk": 12120, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:24:33Z", "update_user": null, "update_date": null, "bcgs_number": "094O026134"}}, {"model": "wells.bcgs_numbers", "pk": 12121, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:25:24Z", "update_user": null, "update_date": null, "bcgs_number": "094O026144"}}, {"model": "wells.bcgs_numbers", "pk": 12122, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:27:44Z", "update_user": null, "update_date": null, "bcgs_number": "094O049334"}}, {"model": "wells.bcgs_numbers", "pk": 12123, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:28:36Z", "update_user": null, "update_date": null, "bcgs_number": "094B019124"}}, {"model": "wells.bcgs_numbers", "pk": 12124, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-04-30T18:29:55Z", "update_user": null, "update_date": null, "bcgs_number": "094P022122"}}, {"model": "wells.bcgs_numbers", "pk": 12125, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-23T22:40:14Z", "update_user": null, "update_date": null, "bcgs_number": "094H077111"}}, {"model": "wells.bcgs_numbers", "pk": 12126, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T22:57:19Z", "update_user": null, "update_date": null, "bcgs_number": "094B018142"}}, {"model": "wells.bcgs_numbers", "pk": 12127, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T22:59:17Z", "update_user": null, "update_date": null, "bcgs_number": "094H080244"}}, {"model": "wells.bcgs_numbers", "pk": 12128, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T23:08:30Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-18T22:24:50Z", "bcgs_number": "093P074142"}}, {"model": "wells.bcgs_numbers", "pk": 12129, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T23:09:30Z", "update_user": null, "update_date": null, "bcgs_number": "94A009231"}}, {"model": "wells.bcgs_numbers", "pk": 12130, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T23:10:16Z", "update_user": null, "update_date": null, "bcgs_number": "094A054311"}}, {"model": "wells.bcgs_numbers", "pk": 12131, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T23:10:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P072242"}}, {"model": "wells.bcgs_numbers", "pk": 12132, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T23:11:12Z", "update_user": null, "update_date": null, "bcgs_number": "094M050124"}}, {"model": "wells.bcgs_numbers", "pk": 12133, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-05-30T23:11:44Z", "update_user": null, "update_date": null, "bcgs_number": "094K067412"}}, {"model": "wells.bcgs_numbers", "pk": 12134, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-06-01T15:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "094h031311"}}, {"model": "wells.bcgs_numbers", "pk": 12135, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-06-01T16:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "094H056214"}}, {"model": "wells.bcgs_numbers", "pk": 12136, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-06-01T16:01:41Z", "update_user": null, "update_date": null, "bcgs_number": "094A064422"}}, {"model": "wells.bcgs_numbers", "pk": 12137, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-06-01T16:02:20Z", "update_user": null, "update_date": null, "bcgs_number": "094P067243"}}, {"model": "wells.bcgs_numbers", "pk": 12138, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-06-01T16:03:23Z", "update_user": null, "update_date": null, "bcgs_number": "093K084243"}}, {"model": "wells.bcgs_numbers", "pk": 12139, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-06-01T23:40:33Z", "update_user": null, "update_date": null, "bcgs_number": "094A073341"}}, {"model": "wells.bcgs_numbers", "pk": 12140, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T17:18:32Z", "update_user": null, "update_date": null, "bcgs_number": "092K050343"}}, {"model": "wells.bcgs_numbers", "pk": 12141, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T17:22:13Z", "update_user": null, "update_date": null, "bcgs_number": "093G083314"}}, {"model": "wells.bcgs_numbers", "pk": 12142, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T17:22:53Z", "update_user": null, "update_date": null, "bcgs_number": "094P023111"}}, {"model": "wells.bcgs_numbers", "pk": 12143, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T17:25:54Z", "update_user": null, "update_date": null, "bcgs_number": "093K010431"}}, {"model": "wells.bcgs_numbers", "pk": 12144, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T17:28:45Z", "update_user": null, "update_date": null, "bcgs_number": "082L083444"}}, {"model": "wells.bcgs_numbers", "pk": 12145, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T18:17:53Z", "update_user": null, "update_date": null, "bcgs_number": "092H077433"}}, {"model": "wells.bcgs_numbers", "pk": 12146, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T18:18:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H087211"}}, {"model": "wells.bcgs_numbers", "pk": 12147, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T18:19:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P070423"}}, {"model": "wells.bcgs_numbers", "pk": 12148, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:00:04Z", "update_user": null, "update_date": null, "bcgs_number": "082E008443"}}, {"model": "wells.bcgs_numbers", "pk": 12149, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:02:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P084133"}}, {"model": "wells.bcgs_numbers", "pk": 12150, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:02:54Z", "update_user": null, "update_date": null, "bcgs_number": "092P091133"}}, {"model": "wells.bcgs_numbers", "pk": 12151, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:03:49Z", "update_user": null, "update_date": null, "bcgs_number": "092O100332"}}, {"model": "wells.bcgs_numbers", "pk": 12152, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:06:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P087144"}}, {"model": "wells.bcgs_numbers", "pk": 12153, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:21:30Z", "update_user": null, "update_date": null, "bcgs_number": "092K025124"}}, {"model": "wells.bcgs_numbers", "pk": 12154, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:25:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G015242"}}, {"model": "wells.bcgs_numbers", "pk": 12155, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:44:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P023442"}}, {"model": "wells.bcgs_numbers", "pk": 12156, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:44:52Z", "update_user": null, "update_date": null, "bcgs_number": "092P023133"}}, {"model": "wells.bcgs_numbers", "pk": 12157, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:49:22Z", "update_user": null, "update_date": null, "bcgs_number": "092P046243"}}, {"model": "wells.bcgs_numbers", "pk": 12158, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:50:47Z", "update_user": null, "update_date": null, "bcgs_number": "092P076314"}}, {"model": "wells.bcgs_numbers", "pk": 12159, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T19:53:45Z", "update_user": null, "update_date": null, "bcgs_number": "092P075121"}}, {"model": "wells.bcgs_numbers", "pk": 12160, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T20:08:10Z", "update_user": null, "update_date": null, "bcgs_number": "093G086314"}}, {"model": "wells.bcgs_numbers", "pk": 12161, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T21:16:44Z", "update_user": null, "update_date": null, "bcgs_number": "093A043242"}}, {"model": "wells.bcgs_numbers", "pk": 12162, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T21:34:47Z", "update_user": null, "update_date": null, "bcgs_number": "092B063123"}}, {"model": "wells.bcgs_numbers", "pk": 12163, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T21:41:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E036211"}}, {"model": "wells.bcgs_numbers", "pk": 12164, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T21:44:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L061234"}}, {"model": "wells.bcgs_numbers", "pk": 12165, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T21:52:59Z", "update_user": null, "update_date": null, "bcgs_number": "094B099442"}}, {"model": "wells.bcgs_numbers", "pk": 12166, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T22:12:48Z", "update_user": null, "update_date": null, "bcgs_number": "082F024221"}}, {"model": "wells.bcgs_numbers", "pk": 12167, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-30T22:35:10Z", "update_user": null, "update_date": null, "bcgs_number": "082F001241"}}, {"model": "wells.bcgs_numbers", "pk": 12168, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-31T14:54:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H053242"}}, {"model": "wells.bcgs_numbers", "pk": 12169, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-31T15:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H002434"}}, {"model": "wells.bcgs_numbers", "pk": 12170, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-31T15:09:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G035143"}}, {"model": "wells.bcgs_numbers", "pk": 12171, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-07-31T15:14:29Z", "update_user": null, "update_date": null, "bcgs_number": "093P031414"}}, {"model": "wells.bcgs_numbers", "pk": 12172, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-01T15:17:42Z", "update_user": null, "update_date": null, "bcgs_number": "092B085234"}}, {"model": "wells.bcgs_numbers", "pk": 12173, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-01T15:31:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G055212"}}, {"model": "wells.bcgs_numbers", "pk": 12174, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T15:22:46Z", "update_user": null, "update_date": null, "bcgs_number": "082K050431"}}, {"model": "wells.bcgs_numbers", "pk": 12175, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T15:26:37Z", "update_user": null, "update_date": null, "bcgs_number": "082F070142"}}, {"model": "wells.bcgs_numbers", "pk": 12176, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T15:43:25Z", "update_user": null, "update_date": null, "bcgs_number": "082N045223"}}, {"model": "wells.bcgs_numbers", "pk": 12177, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T16:29:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F025444"}}, {"model": "wells.bcgs_numbers", "pk": 12178, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T16:30:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J016224"}}, {"model": "wells.bcgs_numbers", "pk": 12179, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T16:31:08Z", "update_user": null, "update_date": null, "bcgs_number": "093F016432"}}, {"model": "wells.bcgs_numbers", "pk": 12180, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-07T22:06:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G034131"}}, {"model": "wells.bcgs_numbers", "pk": 12181, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-09T16:52:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G054312"}}, {"model": "wells.bcgs_numbers", "pk": 12182, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-09T16:55:29Z", "update_user": null, "update_date": null, "bcgs_number": "093J095432"}}, {"model": "wells.bcgs_numbers", "pk": 12183, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-09T16:56:40Z", "update_user": null, "update_date": null, "bcgs_number": "093F099211"}}, {"model": "wells.bcgs_numbers", "pk": 12184, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-13T15:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "094P021424"}}, {"model": "wells.bcgs_numbers", "pk": 12185, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-14T16:15:53Z", "update_user": null, "update_date": null, "bcgs_number": "082F014223"}}, {"model": "wells.bcgs_numbers", "pk": 12186, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-14T16:18:57Z", "update_user": null, "update_date": null, "bcgs_number": "082G034124"}}, {"model": "wells.bcgs_numbers", "pk": 12187, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-14T17:27:20Z", "update_user": null, "update_date": null, "bcgs_number": "092H007433"}}, {"model": "wells.bcgs_numbers", "pk": 12188, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-14T17:41:26Z", "update_user": null, "update_date": null, "bcgs_number": "093J057214"}}, {"model": "wells.bcgs_numbers", "pk": 12189, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-14T20:23:30Z", "update_user": null, "update_date": null, "bcgs_number": "102P070321"}}, {"model": "wells.bcgs_numbers", "pk": 12190, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-14T21:59:25Z", "update_user": null, "update_date": null, "bcgs_number": "092O097442"}}, {"model": "wells.bcgs_numbers", "pk": 12191, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T15:09:58Z", "update_user": null, "update_date": null, "bcgs_number": "092C092424"}}, {"model": "wells.bcgs_numbers", "pk": 12192, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T15:17:07Z", "update_user": null, "update_date": null, "bcgs_number": "092H068322"}}, {"model": "wells.bcgs_numbers", "pk": 12193, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T16:11:17Z", "update_user": null, "update_date": null, "bcgs_number": "082G055111"}}, {"model": "wells.bcgs_numbers", "pk": 12194, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T16:21:24Z", "update_user": "PROXY_WELLS", "update_date": "2013-03-19T18:11:26Z", "bcgs_number": "082G076344"}}, {"model": "wells.bcgs_numbers", "pk": 12195, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T16:35:56Z", "update_user": null, "update_date": null, "bcgs_number": "092L059344"}}, {"model": "wells.bcgs_numbers", "pk": 12196, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T16:37:05Z", "update_user": null, "update_date": null, "bcgs_number": "092G037134"}}, {"model": "wells.bcgs_numbers", "pk": 12197, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T16:53:42Z", "update_user": null, "update_date": null, "bcgs_number": "092F096342"}}, {"model": "wells.bcgs_numbers", "pk": 12198, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T15:04:50Z", "update_user": null, "update_date": null, "bcgs_number": "092F022334"}}, {"model": "wells.bcgs_numbers", "pk": 12199, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T15:30:18Z", "update_user": null, "update_date": null, "bcgs_number": "092H083241"}}, {"model": "wells.bcgs_numbers", "pk": 12200, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T15:43:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L021331"}}, {"model": "wells.bcgs_numbers", "pk": 12201, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T16:09:28Z", "update_user": null, "update_date": null, "bcgs_number": "082J007111"}}, {"model": "wells.bcgs_numbers", "pk": 12202, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T16:11:02Z", "update_user": null, "update_date": null, "bcgs_number": "082G097321"}}, {"model": "wells.bcgs_numbers", "pk": 12203, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T16:14:12Z", "update_user": null, "update_date": null, "bcgs_number": "093N020222"}}, {"model": "wells.bcgs_numbers", "pk": 12204, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T16:28:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H080132"}}, {"model": "wells.bcgs_numbers", "pk": 12205, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T16:53:05Z", "update_user": null, "update_date": null, "bcgs_number": "093P099121"}}, {"model": "wells.bcgs_numbers", "pk": 12206, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-21T16:54:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P086111"}}, {"model": "wells.bcgs_numbers", "pk": 12207, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-23T16:11:05Z", "update_user": null, "update_date": null, "bcgs_number": "092F028414"}}, {"model": "wells.bcgs_numbers", "pk": 12208, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-27T17:02:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F065323"}}, {"model": "wells.bcgs_numbers", "pk": 12209, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-27T17:21:19Z", "update_user": null, "update_date": null, "bcgs_number": "092J058411"}}, {"model": "wells.bcgs_numbers", "pk": 12210, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-27T17:29:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G027141"}}, {"model": "wells.bcgs_numbers", "pk": 12211, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T14:53:04Z", "update_user": null, "update_date": null, "bcgs_number": "092H096331"}}, {"model": "wells.bcgs_numbers", "pk": 12212, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T14:55:37Z", "update_user": null, "update_date": null, "bcgs_number": "082E062411"}}, {"model": "wells.bcgs_numbers", "pk": 12213, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:28:47Z", "update_user": null, "update_date": null, "bcgs_number": "093G076431"}}, {"model": "wells.bcgs_numbers", "pk": 12214, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:33:07Z", "update_user": null, "update_date": null, "bcgs_number": "093O006212"}}, {"model": "wells.bcgs_numbers", "pk": 12215, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:33:54Z", "update_user": null, "update_date": null, "bcgs_number": "093J015134"}}, {"model": "wells.bcgs_numbers", "pk": 12216, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:40:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G096221"}}, {"model": "wells.bcgs_numbers", "pk": 12217, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:41:35Z", "update_user": null, "update_date": null, "bcgs_number": "093J006142"}}, {"model": "wells.bcgs_numbers", "pk": 12218, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:42:53Z", "update_user": null, "update_date": null, "bcgs_number": "092P030114"}}, {"model": "wells.bcgs_numbers", "pk": 12219, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:56:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I074222"}}, {"model": "wells.bcgs_numbers", "pk": 12220, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:57:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I059213"}}, {"model": "wells.bcgs_numbers", "pk": 12221, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T15:58:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I039314"}}, {"model": "wells.bcgs_numbers", "pk": 12222, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T16:24:13Z", "update_user": null, "update_date": null, "bcgs_number": "082L094112"}}, {"model": "wells.bcgs_numbers", "pk": 12223, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T16:33:37Z", "update_user": null, "update_date": null, "bcgs_number": "092I060234"}}, {"model": "wells.bcgs_numbers", "pk": 12224, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T17:14:24Z", "update_user": null, "update_date": null, "bcgs_number": "082L061324"}}, {"model": "wells.bcgs_numbers", "pk": 12225, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T17:22:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I025323"}}, {"model": "wells.bcgs_numbers", "pk": 12226, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T17:25:05Z", "update_user": null, "update_date": null, "bcgs_number": "082M061211"}}, {"model": "wells.bcgs_numbers", "pk": 12227, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T17:26:34Z", "update_user": null, "update_date": null, "bcgs_number": "082M052443"}}, {"model": "wells.bcgs_numbers", "pk": 12228, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-28T17:38:12Z", "update_user": null, "update_date": null, "bcgs_number": "082F043212"}}, {"model": "wells.bcgs_numbers", "pk": 12229, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-29T22:22:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E094121"}}, {"model": "wells.bcgs_numbers", "pk": 12230, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-29T22:41:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P058111"}}, {"model": "wells.bcgs_numbers", "pk": 12231, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-29T22:45:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P035111"}}, {"model": "wells.bcgs_numbers", "pk": 12232, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-30T14:44:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I026243"}}, {"model": "wells.bcgs_numbers", "pk": 12233, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-30T15:03:56Z", "update_user": null, "update_date": null, "bcgs_number": "092I070442"}}, {"model": "wells.bcgs_numbers", "pk": 12234, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-30T15:04:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P004332"}}, {"model": "wells.bcgs_numbers", "pk": 12235, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-30T22:32:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P100321"}}, {"model": "wells.bcgs_numbers", "pk": 12236, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-04T15:13:39Z", "update_user": null, "update_date": null, "bcgs_number": "082K026323"}}, {"model": "wells.bcgs_numbers", "pk": 12237, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-04T16:04:57Z", "update_user": null, "update_date": null, "bcgs_number": "082F001214"}}, {"model": "wells.bcgs_numbers", "pk": 12238, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-04T16:09:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F055434"}}, {"model": "wells.bcgs_numbers", "pk": 12239, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-06T16:32:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G043134"}}, {"model": "wells.bcgs_numbers", "pk": 12240, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-06T19:45:21Z", "update_user": null, "update_date": null, "bcgs_number": "092H032241"}}, {"model": "wells.bcgs_numbers", "pk": 12241, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-06T19:46:20Z", "update_user": null, "update_date": null, "bcgs_number": "092H011142"}}, {"model": "wells.bcgs_numbers", "pk": 12242, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-06T20:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G084434"}}, {"model": "wells.bcgs_numbers", "pk": 12243, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T15:39:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A076333"}}, {"model": "wells.bcgs_numbers", "pk": 12244, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T15:42:41Z", "update_user": null, "update_date": null, "bcgs_number": "094A056243"}}, {"model": "wells.bcgs_numbers", "pk": 12245, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T15:56:38Z", "update_user": null, "update_date": null, "bcgs_number": "092B082242"}}, {"model": "wells.bcgs_numbers", "pk": 12246, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T16:00:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F037212"}}, {"model": "wells.bcgs_numbers", "pk": 12247, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T19:24:07Z", "update_user": null, "update_date": null, "bcgs_number": "092P065123"}}, {"model": "wells.bcgs_numbers", "pk": 12248, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T19:35:54Z", "update_user": null, "update_date": null, "bcgs_number": "082G041213"}}, {"model": "wells.bcgs_numbers", "pk": 12249, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T19:37:30Z", "update_user": null, "update_date": null, "bcgs_number": "082N035212"}}, {"model": "wells.bcgs_numbers", "pk": 12250, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T19:38:10Z", "update_user": null, "update_date": null, "bcgs_number": "082N016344"}}, {"model": "wells.bcgs_numbers", "pk": 12251, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T22:19:15Z", "update_user": null, "update_date": null, "bcgs_number": "082L027112"}}, {"model": "wells.bcgs_numbers", "pk": 12252, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T22:21:09Z", "update_user": null, "update_date": null, "bcgs_number": "082L047133"}}, {"model": "wells.bcgs_numbers", "pk": 12253, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T22:22:09Z", "update_user": null, "update_date": null, "bcgs_number": "082L047134"}}, {"model": "wells.bcgs_numbers", "pk": 12254, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T22:25:02Z", "update_user": null, "update_date": null, "bcgs_number": "082L056321"}}, {"model": "wells.bcgs_numbers", "pk": 12255, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T22:26:02Z", "update_user": null, "update_date": null, "bcgs_number": "082L015432"}}, {"model": "wells.bcgs_numbers", "pk": 12256, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-10T22:29:11Z", "update_user": null, "update_date": null, "bcgs_number": "082G052323"}}, {"model": "wells.bcgs_numbers", "pk": 12257, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T14:57:35Z", "update_user": null, "update_date": null, "bcgs_number": "093J007211"}}, {"model": "wells.bcgs_numbers", "pk": 12258, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T14:59:47Z", "update_user": null, "update_date": null, "bcgs_number": "093G097244"}}, {"model": "wells.bcgs_numbers", "pk": 12259, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:01:48Z", "update_user": null, "update_date": null, "bcgs_number": "093G095431"}}, {"model": "wells.bcgs_numbers", "pk": 12260, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:03:12Z", "update_user": null, "update_date": null, "bcgs_number": "093G077222"}}, {"model": "wells.bcgs_numbers", "pk": 12261, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:08:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I099234"}}, {"model": "wells.bcgs_numbers", "pk": 12262, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:20:54Z", "update_user": null, "update_date": null, "bcgs_number": "082F043322"}}, {"model": "wells.bcgs_numbers", "pk": 12263, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:24:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F083244"}}, {"model": "wells.bcgs_numbers", "pk": 12264, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:26:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F002133"}}, {"model": "wells.bcgs_numbers", "pk": 12265, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:29:48Z", "update_user": null, "update_date": null, "bcgs_number": "082E018412"}}, {"model": "wells.bcgs_numbers", "pk": 12266, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:31:27Z", "update_user": null, "update_date": null, "bcgs_number": "082E018321"}}, {"model": "wells.bcgs_numbers", "pk": 12267, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T15:37:09Z", "update_user": null, "update_date": null, "bcgs_number": "082E038412"}}, {"model": "wells.bcgs_numbers", "pk": 12268, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T17:48:46Z", "update_user": null, "update_date": null, "bcgs_number": "082E090432"}}, {"model": "wells.bcgs_numbers", "pk": 12269, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T17:57:00Z", "update_user": null, "update_date": null, "bcgs_number": "082F004213"}}, {"model": "wells.bcgs_numbers", "pk": 12270, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T17:58:36Z", "update_user": null, "update_date": null, "bcgs_number": "082K050234"}}, {"model": "wells.bcgs_numbers", "pk": 12271, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T17:59:22Z", "update_user": null, "update_date": null, "bcgs_number": "082J031341"}}, {"model": "wells.bcgs_numbers", "pk": 12272, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-11T18:08:30Z", "update_user": null, "update_date": null, "bcgs_number": "092I064432"}}, {"model": "wells.bcgs_numbers", "pk": 12273, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:02:50Z", "update_user": null, "update_date": null, "bcgs_number": "082E072424"}}, {"model": "wells.bcgs_numbers", "pk": 12274, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:03:54Z", "update_user": null, "update_date": null, "bcgs_number": "082E084111"}}, {"model": "wells.bcgs_numbers", "pk": 12275, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:20:13Z", "update_user": null, "update_date": null, "bcgs_number": "082L026122"}}, {"model": "wells.bcgs_numbers", "pk": 12276, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:31:12Z", "update_user": null, "update_date": null, "bcgs_number": "082K072142"}}, {"model": "wells.bcgs_numbers", "pk": 12277, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:35:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L027223"}}, {"model": "wells.bcgs_numbers", "pk": 12278, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:37:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L023214"}}, {"model": "wells.bcgs_numbers", "pk": 12279, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-12T15:44:20Z", "update_user": null, "update_date": null, "bcgs_number": "082L033241"}}, {"model": "wells.bcgs_numbers", "pk": 12280, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-13T15:38:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F055334"}}, {"model": "wells.bcgs_numbers", "pk": 12281, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-13T15:54:51Z", "update_user": null, "update_date": null, "bcgs_number": "082G076324"}}, {"model": "wells.bcgs_numbers", "pk": 12282, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-13T15:57:39Z", "update_user": null, "update_date": null, "bcgs_number": "082J011443"}}, {"model": "wells.bcgs_numbers", "pk": 12283, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-13T15:59:33Z", "update_user": null, "update_date": null, "bcgs_number": "082F076241"}}, {"model": "wells.bcgs_numbers", "pk": 12284, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-13T16:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "082K050422"}}, {"model": "wells.bcgs_numbers", "pk": 12285, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-17T15:07:22Z", "update_user": null, "update_date": null, "bcgs_number": "082E008431"}}, {"model": "wells.bcgs_numbers", "pk": 12286, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-17T15:17:51Z", "update_user": null, "update_date": null, "bcgs_number": "092P013122"}}, {"model": "wells.bcgs_numbers", "pk": 12287, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-17T15:49:55Z", "update_user": null, "update_date": null, "bcgs_number": "092P066133"}}, {"model": "wells.bcgs_numbers", "pk": 12288, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-17T15:52:14Z", "update_user": null, "update_date": null, "bcgs_number": "092K024142"}}, {"model": "wells.bcgs_numbers", "pk": 12289, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-19T14:51:47Z", "update_user": null, "update_date": null, "bcgs_number": "092P012434"}}, {"model": "wells.bcgs_numbers", "pk": 12290, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-19T15:06:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L024223"}}, {"model": "wells.bcgs_numbers", "pk": 12291, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-19T15:08:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L038143"}}, {"model": "wells.bcgs_numbers", "pk": 12292, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-19T15:14:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L027242"}}, {"model": "wells.bcgs_numbers", "pk": 12293, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-19T15:18:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L062213"}}, {"model": "wells.bcgs_numbers", "pk": 12294, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-24T15:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E004122"}}, {"model": "wells.bcgs_numbers", "pk": 12295, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-26T21:29:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G033242"}}, {"model": "wells.bcgs_numbers", "pk": 12296, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-26T21:32:06Z", "update_user": null, "update_date": null, "bcgs_number": "092J090223"}}, {"model": "wells.bcgs_numbers", "pk": 12297, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-26T21:33:24Z", "update_user": null, "update_date": null, "bcgs_number": "092I068434"}}, {"model": "wells.bcgs_numbers", "pk": 12298, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-26T21:43:21Z", "update_user": null, "update_date": null, "bcgs_number": "092B031444"}}, {"model": "wells.bcgs_numbers", "pk": 12299, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-27T14:51:41Z", "update_user": null, "update_date": null, "bcgs_number": "094A055222"}}, {"model": "wells.bcgs_numbers", "pk": 12300, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-27T16:04:35Z", "update_user": null, "update_date": null, "bcgs_number": "094P095123"}}, {"model": "wells.bcgs_numbers", "pk": 12301, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-09-27T16:15:10Z", "update_user": null, "update_date": null, "bcgs_number": "094F042241"}}, {"model": "wells.bcgs_numbers", "pk": 12302, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-09T20:03:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A001121"}}, {"model": "wells.bcgs_numbers", "pk": 12303, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-15T17:14:31Z", "update_user": null, "update_date": null, "bcgs_number": "093M024113"}}, {"model": "wells.bcgs_numbers", "pk": 12304, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-15T17:29:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L016414"}}, {"model": "wells.bcgs_numbers", "pk": 12305, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-15T17:29:56Z", "update_user": null, "update_date": null, "bcgs_number": "082M010111"}}, {"model": "wells.bcgs_numbers", "pk": 12306, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-25T21:25:20Z", "update_user": null, "update_date": null, "bcgs_number": "092J080444"}}, {"model": "wells.bcgs_numbers", "pk": 12307, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-30T19:45:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I051432"}}, {"model": "wells.bcgs_numbers", "pk": 12308, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-30T23:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I051441"}}, {"model": "wells.bcgs_numbers", "pk": 12309, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-31T18:36:13Z", "update_user": null, "update_date": null, "bcgs_number": "092L053441"}}, {"model": "wells.bcgs_numbers", "pk": 12310, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-31T21:35:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L062334"}}, {"model": "wells.bcgs_numbers", "pk": 12311, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:27:46Z", "update_user": null, "update_date": null, "bcgs_number": "104A014122"}}, {"model": "wells.bcgs_numbers", "pk": 12312, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-01-02T19:19:55Z", "update_user": null, "update_date": null, "bcgs_number": "094J087431"}}, {"model": "wells.bcgs_numbers", "pk": 12313, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-01-02T23:09:25Z", "update_user": null, "update_date": null, "bcgs_number": "092K031332"}}, {"model": "wells.bcgs_numbers", "pk": 12314, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-01-03T16:55:23Z", "update_user": null, "update_date": null, "bcgs_number": "093G075414"}}, {"model": "wells.bcgs_numbers", "pk": 12315, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-01-29T18:23:59Z", "update_user": null, "update_date": null, "bcgs_number": "092K003421"}}, {"model": "wells.bcgs_numbers", "pk": 12316, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-04T20:10:44Z", "update_user": null, "update_date": null, "bcgs_number": "094D097333"}}, {"model": "wells.bcgs_numbers", "pk": 12317, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-04T20:18:19Z", "update_user": null, "update_date": null, "bcgs_number": "094E007213"}}, {"model": "wells.bcgs_numbers", "pk": 12318, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-21T18:39:05Z", "update_user": null, "update_date": null, "bcgs_number": "093O011142"}}, {"model": "wells.bcgs_numbers", "pk": 12319, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-05T18:11:07Z", "update_user": null, "update_date": null, "bcgs_number": "093A011312"}}, {"model": "wells.bcgs_numbers", "pk": 12320, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-05T20:18:15Z", "update_user": null, "update_date": null, "bcgs_number": "082J062113"}}, {"model": "wells.bcgs_numbers", "pk": 12321, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-05T20:30:42Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-12T16:14:14Z", "bcgs_number": "082K006432"}}, {"model": "wells.bcgs_numbers", "pk": 12322, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-18T19:11:34Z", "update_user": null, "update_date": null, "bcgs_number": "094G008331"}}, {"model": "wells.bcgs_numbers", "pk": 12323, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-18T22:03:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P074134"}}, {"model": "wells.bcgs_numbers", "pk": 12324, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-18T22:07:56Z", "update_user": null, "update_date": null, "bcgs_number": "094G029241"}}, {"model": "wells.bcgs_numbers", "pk": 12325, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-18T23:34:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A065444"}}, {"model": "wells.bcgs_numbers", "pk": 12326, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-18T23:36:36Z", "update_user": null, "update_date": null, "bcgs_number": "094A077223"}}, {"model": "wells.bcgs_numbers", "pk": 12327, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-19T17:11:24Z", "update_user": null, "update_date": null, "bcgs_number": "083E003311"}}, {"model": "wells.bcgs_numbers", "pk": 12328, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-19T18:22:15Z", "update_user": null, "update_date": null, "bcgs_number": "082J061224"}}, {"model": "wells.bcgs_numbers", "pk": 12329, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-19T22:19:46Z", "update_user": null, "update_date": null, "bcgs_number": "093P073112"}}, {"model": "wells.bcgs_numbers", "pk": 12330, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-03-26T22:46:28Z", "update_user": null, "update_date": null, "bcgs_number": "094A012124"}}, {"model": "wells.bcgs_numbers", "pk": 12331, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-04-02T20:07:28Z", "update_user": null, "update_date": null, "bcgs_number": "092C059313"}}, {"model": "wells.bcgs_numbers", "pk": 12332, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-04-04T22:21:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H048221"}}, {"model": "wells.bcgs_numbers", "pk": 12333, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-04-23T23:35:05Z", "update_user": null, "update_date": null, "bcgs_number": "093K008311"}}, {"model": "wells.bcgs_numbers", "pk": 12334, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-04-23T23:41:57Z", "update_user": null, "update_date": null, "bcgs_number": "093G066332"}}, {"model": "wells.bcgs_numbers", "pk": 12335, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-04-24T16:22:51Z", "update_user": null, "update_date": null, "bcgs_number": "092L056214"}}, {"model": "wells.bcgs_numbers", "pk": 12336, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-04-30T15:17:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A026232"}}, {"model": "wells.bcgs_numbers", "pk": 12337, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-01T15:59:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G025122"}}, {"model": "wells.bcgs_numbers", "pk": 12338, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-02T18:06:19Z", "update_user": null, "update_date": null, "bcgs_number": "082F053221"}}, {"model": "wells.bcgs_numbers", "pk": 12339, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-14T15:59:44Z", "update_user": null, "update_date": null, "bcgs_number": "094A096213"}}, {"model": "wells.bcgs_numbers", "pk": 12340, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-14T20:21:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P076422"}}, {"model": "wells.bcgs_numbers", "pk": 12341, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-14T20:25:28Z", "update_user": null, "update_date": null, "bcgs_number": "094A007431"}}, {"model": "wells.bcgs_numbers", "pk": 12342, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-11T22:21:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F080114"}}, {"model": "wells.bcgs_numbers", "pk": 12343, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-12T15:49:20Z", "update_user": null, "update_date": null, "bcgs_number": "092F026144"}}, {"model": "wells.bcgs_numbers", "pk": 12344, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-24T22:44:50Z", "update_user": null, "update_date": null, "bcgs_number": "103I048122"}}, {"model": "wells.bcgs_numbers", "pk": 12345, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-24T22:49:02Z", "update_user": null, "update_date": null, "bcgs_number": "103G051143"}}, {"model": "wells.bcgs_numbers", "pk": 12346, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-25T15:37:36Z", "update_user": null, "update_date": null, "bcgs_number": "092C093421"}}, {"model": "wells.bcgs_numbers", "pk": 12347, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-25T16:05:40Z", "update_user": null, "update_date": null, "bcgs_number": "092P100323"}}, {"model": "wells.bcgs_numbers", "pk": 12348, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-25T16:22:50Z", "update_user": null, "update_date": null, "bcgs_number": "092F038214"}}, {"model": "wells.bcgs_numbers", "pk": 12349, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-25T16:30:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I039312"}}, {"model": "wells.bcgs_numbers", "pk": 12350, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-26T16:10:13Z", "update_user": null, "update_date": null, "bcgs_number": "092I025144"}}, {"model": "wells.bcgs_numbers", "pk": 12351, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-26T17:12:08Z", "update_user": null, "update_date": null, "bcgs_number": "092G010142"}}, {"model": "wells.bcgs_numbers", "pk": 12352, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-26T17:19:52Z", "update_user": null, "update_date": null, "bcgs_number": "092P010423"}}, {"model": "wells.bcgs_numbers", "pk": 12353, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-26T17:22:40Z", "update_user": null, "update_date": null, "bcgs_number": "093M014331"}}, {"model": "wells.bcgs_numbers", "pk": 12354, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-06-26T17:28:48Z", "update_user": null, "update_date": null, "bcgs_number": "092J055221"}}, {"model": "wells.bcgs_numbers", "pk": 12355, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-08-12T21:10:40Z", "update_user": null, "update_date": null, "bcgs_number": "082K079124"}}, {"model": "wells.bcgs_numbers", "pk": 12356, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-08-13T15:44:46Z", "update_user": null, "update_date": null, "bcgs_number": "092P087241"}}, {"model": "wells.bcgs_numbers", "pk": 12357, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-08-23T22:04:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H093413"}}, {"model": "wells.bcgs_numbers", "pk": 12358, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-08-29T20:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P087131"}}, {"model": "wells.bcgs_numbers", "pk": 12359, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:09:04Z", "update_user": null, "update_date": null, "bcgs_number": "093K050333"}}, {"model": "wells.bcgs_numbers", "pk": 12360, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:10:43Z", "update_user": null, "update_date": null, "bcgs_number": "094M050213"}}, {"model": "wells.bcgs_numbers", "pk": 12361, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:15:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A051121"}}, {"model": "wells.bcgs_numbers", "pk": 12362, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:22:58Z", "update_user": null, "update_date": null, "bcgs_number": "094G036242"}}, {"model": "wells.bcgs_numbers", "pk": 12363, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:25:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A092222"}}, {"model": "wells.bcgs_numbers", "pk": 12364, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:29:03Z", "update_user": null, "update_date": null, "bcgs_number": "094AB010232"}}, {"model": "wells.bcgs_numbers", "pk": 12365, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:30:30Z", "update_user": null, "update_date": null, "bcgs_number": "094B010232"}}, {"model": "wells.bcgs_numbers", "pk": 12366, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:38:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A088242"}}, {"model": "wells.bcgs_numbers", "pk": 12367, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:40:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A058413"}}, {"model": "wells.bcgs_numbers", "pk": 12368, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:41:34Z", "update_user": null, "update_date": null, "bcgs_number": "094I022344"}}, {"model": "wells.bcgs_numbers", "pk": 12369, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:45:51Z", "update_user": null, "update_date": null, "bcgs_number": "093P022214"}}, {"model": "wells.bcgs_numbers", "pk": 12370, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:48:01Z", "update_user": null, "update_date": null, "bcgs_number": "094A041421"}}, {"model": "wells.bcgs_numbers", "pk": 12371, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:52:01Z", "update_user": null, "update_date": null, "bcgs_number": "093P028433"}}, {"model": "wells.bcgs_numbers", "pk": 12372, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:53:22Z", "update_user": null, "update_date": null, "bcgs_number": "093P08123"}}, {"model": "wells.bcgs_numbers", "pk": 12373, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:53:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P081232"}}, {"model": "wells.bcgs_numbers", "pk": 12375, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T19:55:44Z", "update_user": null, "update_date": null, "bcgs_number": "094J077411"}}, {"model": "wells.bcgs_numbers", "pk": 12376, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:00:10Z", "update_user": null, "update_date": null, "bcgs_number": "094H017243"}}, {"model": "wells.bcgs_numbers", "pk": 12377, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094H003214"}}, {"model": "wells.bcgs_numbers", "pk": 12378, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:03:21Z", "update_user": null, "update_date": null, "bcgs_number": "093O035122"}}, {"model": "wells.bcgs_numbers", "pk": 12379, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:05:11Z", "update_user": null, "update_date": null, "bcgs_number": "094C037113"}}, {"model": "wells.bcgs_numbers", "pk": 12380, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:12:11Z", "update_user": null, "update_date": null, "bcgs_number": "093L027142"}}, {"model": "wells.bcgs_numbers", "pk": 12381, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:14:26Z", "update_user": null, "update_date": null, "bcgs_number": "094H044423"}}, {"model": "wells.bcgs_numbers", "pk": 12382, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:21:18Z", "update_user": null, "update_date": null, "bcgs_number": "093J096311"}}, {"model": "wells.bcgs_numbers", "pk": 12383, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-03T20:23:37Z", "update_user": null, "update_date": null, "bcgs_number": "094A075211"}}, {"model": "wells.bcgs_numbers", "pk": 12384, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-19T20:17:13Z", "update_user": null, "update_date": null, "bcgs_number": "093P073434"}}, {"model": "wells.bcgs_numbers", "pk": 12385, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-20T22:59:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P027432"}}, {"model": "wells.bcgs_numbers", "pk": 12386, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-23T21:50:18Z", "update_user": null, "update_date": null, "bcgs_number": "093J086232"}}, {"model": "wells.bcgs_numbers", "pk": 12387, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-25T17:13:04Z", "update_user": null, "update_date": null, "bcgs_number": "093L065443"}}, {"model": "wells.bcgs_numbers", "pk": 12388, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-25T21:48:02Z", "update_user": null, "update_date": null, "bcgs_number": "103F097423"}}, {"model": "wells.bcgs_numbers", "pk": 12389, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-25T21:49:11Z", "update_user": null, "update_date": null, "bcgs_number": "103F097424"}}, {"model": "wells.bcgs_numbers", "pk": 12390, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-30T17:38:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P048132"}}, {"model": "wells.bcgs_numbers", "pk": 12391, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-30T18:06:36Z", "update_user": null, "update_date": null, "bcgs_number": "093O001333"}}, {"model": "wells.bcgs_numbers", "pk": 12392, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-30T18:38:04Z", "update_user": null, "update_date": null, "bcgs_number": "082M005221"}}, {"model": "wells.bcgs_numbers", "pk": 12393, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-30T20:51:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F066134"}}, {"model": "wells.bcgs_numbers", "pk": 12394, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-10-01T16:56:57Z", "update_user": null, "update_date": null, "bcgs_number": "092H033342"}}, {"model": "wells.bcgs_numbers", "pk": 12395, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-10-01T17:44:29Z", "update_user": null, "update_date": null, "bcgs_number": "104G049244"}}, {"model": "wells.bcgs_numbers", "pk": 12396, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-10-18T23:12:19Z", "update_user": null, "update_date": null, "bcgs_number": "093B042411"}}, {"model": "wells.bcgs_numbers", "pk": 12397, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-10-18T23:12:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B042413"}}, {"model": "wells.bcgs_numbers", "pk": 12398, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-10-18T23:17:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O064231"}}, {"model": "wells.bcgs_numbers", "pk": 12399, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-10-22T22:32:11Z", "update_user": null, "update_date": null, "bcgs_number": "103F030143"}}, {"model": "wells.bcgs_numbers", "pk": 12400, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-11-06T17:49:27Z", "update_user": null, "update_date": null, "bcgs_number": "094O24131"}}, {"model": "wells.bcgs_numbers", "pk": 12401, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-12-09T17:48:38Z", "update_user": null, "update_date": null, "bcgs_number": "093M056322"}}, {"model": "wells.bcgs_numbers", "pk": 12402, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-12-09T18:23:19Z", "update_user": null, "update_date": null, "bcgs_number": "092P065213"}}, {"model": "wells.bcgs_numbers", "pk": 12403, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-12-09T18:40:32Z", "update_user": null, "update_date": null, "bcgs_number": "092J069344"}}, {"model": "wells.bcgs_numbers", "pk": 12404, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-12-11T18:15:36Z", "update_user": null, "update_date": null, "bcgs_number": "092K034224"}}, {"model": "wells.bcgs_numbers", "pk": 12405, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-12-18T22:33:27Z", "update_user": null, "update_date": null, "bcgs_number": "092K034222"}}, {"model": "wells.bcgs_numbers", "pk": 12406, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-13T22:24:36Z", "update_user": null, "update_date": null, "bcgs_number": "092H016124"}}, {"model": "wells.bcgs_numbers", "pk": 12407, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-14T18:47:44Z", "update_user": null, "update_date": null, "bcgs_number": "094B010143"}}, {"model": "wells.bcgs_numbers", "pk": 12408, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-23T20:05:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G028321"}}, {"model": "wells.bcgs_numbers", "pk": 12409, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-01T20:30:46Z", "update_user": null, "update_date": null, "bcgs_number": "094A025441"}}, {"model": "wells.bcgs_numbers", "pk": 12410, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-03T01:54:39Z", "update_user": null, "update_date": null, "bcgs_number": "102I080423"}}, {"model": "wells.bcgs_numbers", "pk": 12411, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-03T01:56:11Z", "update_user": null, "update_date": null, "bcgs_number": "094A056314"}}, {"model": "wells.bcgs_numbers", "pk": 12412, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-03T02:03:58Z", "update_user": null, "update_date": null, "bcgs_number": "094A021441"}}, {"model": "wells.bcgs_numbers", "pk": 12413, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:40Z", "update_user": null, "update_date": null, "bcgs_number": "082L062223"}}, {"model": "wells.bcgs_numbers", "pk": 12414, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:40Z", "update_user": null, "update_date": null, "bcgs_number": "082L082121"}}, {"model": "wells.bcgs_numbers", "pk": 12415, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "092I025331"}}, {"model": "wells.bcgs_numbers", "pk": 12416, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "092I096133"}}, {"model": "wells.bcgs_numbers", "pk": 12417, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P090443"}}, {"model": "wells.bcgs_numbers", "pk": 12418, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "082L083324"}}, {"model": "wells.bcgs_numbers", "pk": 12419, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "082L097323"}}, {"model": "wells.bcgs_numbers", "pk": 12420, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "092I079244"}}, {"model": "wells.bcgs_numbers", "pk": 12421, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:41Z", "update_user": null, "update_date": null, "bcgs_number": "092H086213"}}, {"model": "wells.bcgs_numbers", "pk": 12422, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P060143"}}, {"model": "wells.bcgs_numbers", "pk": 12423, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:42Z", "update_user": null, "update_date": null, "bcgs_number": "092I030223"}}, {"model": "wells.bcgs_numbers", "pk": 12424, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:42Z", "update_user": null, "update_date": null, "bcgs_number": "093B078444"}}, {"model": "wells.bcgs_numbers", "pk": 12425, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E005234"}}, {"model": "wells.bcgs_numbers", "pk": 12426, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:45Z", "update_user": null, "update_date": null, "bcgs_number": "093G025313"}}, {"model": "wells.bcgs_numbers", "pk": 12427, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:45Z", "update_user": null, "update_date": null, "bcgs_number": "082F002413"}}, {"model": "wells.bcgs_numbers", "pk": 12428, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:45Z", "update_user": null, "update_date": null, "bcgs_number": "082F002423"}}, {"model": "wells.bcgs_numbers", "pk": 12429, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F002232"}}, {"model": "wells.bcgs_numbers", "pk": 12430, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F002234"}}, {"model": "wells.bcgs_numbers", "pk": 12431, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F022233"}}, {"model": "wells.bcgs_numbers", "pk": 12432, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082F066131"}}, {"model": "wells.bcgs_numbers", "pk": 12433, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082G005343"}}, {"model": "wells.bcgs_numbers", "pk": 12434, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082G005342"}}, {"model": "wells.bcgs_numbers", "pk": 12435, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082G025111"}}, {"model": "wells.bcgs_numbers", "pk": 12436, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "082G034412"}}, {"model": "wells.bcgs_numbers", "pk": 12437, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:47Z", "update_user": null, "update_date": null, "bcgs_number": "082G043331"}}, {"model": "wells.bcgs_numbers", "pk": 12438, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:47Z", "update_user": null, "update_date": null, "bcgs_number": "082G051431"}}, {"model": "wells.bcgs_numbers", "pk": 12439, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G052441"}}, {"model": "wells.bcgs_numbers", "pk": 12440, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G061333"}}, {"model": "wells.bcgs_numbers", "pk": 12441, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G062431"}}, {"model": "wells.bcgs_numbers", "pk": 12442, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:48Z", "update_user": null, "update_date": null, "bcgs_number": "082F075344"}}, {"model": "wells.bcgs_numbers", "pk": 12443, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:48Z", "update_user": null, "update_date": null, "bcgs_number": "082G082312"}}, {"model": "wells.bcgs_numbers", "pk": 12444, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E002421"}}, {"model": "wells.bcgs_numbers", "pk": 12445, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:49Z", "update_user": null, "update_date": null, "bcgs_number": "082E056442"}}, {"model": "wells.bcgs_numbers", "pk": 12446, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:49Z", "update_user": null, "update_date": null, "bcgs_number": "082K004112"}}, {"model": "wells.bcgs_numbers", "pk": 12447, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L003234"}}, {"model": "wells.bcgs_numbers", "pk": 12448, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:49Z", "update_user": null, "update_date": null, "bcgs_number": "082L024134"}}, {"model": "wells.bcgs_numbers", "pk": 12449, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L035133"}}, {"model": "wells.bcgs_numbers", "pk": 12450, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L041241"}}, {"model": "wells.bcgs_numbers", "pk": 12451, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L041243"}}, {"model": "wells.bcgs_numbers", "pk": 12452, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L043421"}}, {"model": "wells.bcgs_numbers", "pk": 12453, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:51Z", "update_user": null, "update_date": null, "bcgs_number": "082L044344"}}, {"model": "wells.bcgs_numbers", "pk": 12454, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L054211"}}, {"model": "wells.bcgs_numbers", "pk": 12455, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L061312"}}, {"model": "wells.bcgs_numbers", "pk": 12456, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L062131"}}, {"model": "wells.bcgs_numbers", "pk": 12457, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L072341"}}, {"model": "wells.bcgs_numbers", "pk": 12458, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L072343"}}, {"model": "wells.bcgs_numbers", "pk": 12459, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L075243"}}, {"model": "wells.bcgs_numbers", "pk": 12460, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L085233"}}, {"model": "wells.bcgs_numbers", "pk": 12461, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:53Z", "update_user": null, "update_date": null, "bcgs_number": "082L086131"}}, {"model": "wells.bcgs_numbers", "pk": 12462, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L094412"}}, {"model": "wells.bcgs_numbers", "pk": 12463, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L096244"}}, {"model": "wells.bcgs_numbers", "pk": 12464, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L100331"}}, {"model": "wells.bcgs_numbers", "pk": 12465, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "082N026321"}}, {"model": "wells.bcgs_numbers", "pk": 12466, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B031421"}}, {"model": "wells.bcgs_numbers", "pk": 12467, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A086313"}}, {"model": "wells.bcgs_numbers", "pk": 12468, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A085444"}}, {"model": "wells.bcgs_numbers", "pk": 12469, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B033134"}}, {"model": "wells.bcgs_numbers", "pk": 12470, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:56Z", "update_user": null, "update_date": null, "bcgs_number": "092B062232"}}, {"model": "wells.bcgs_numbers", "pk": 12471, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B073134"}}, {"model": "wells.bcgs_numbers", "pk": 12472, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B074111"}}, {"model": "wells.bcgs_numbers", "pk": 12473, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T21:59:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B083141"}}, {"model": "wells.bcgs_numbers", "pk": 12474, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B084121"}}, {"model": "wells.bcgs_numbers", "pk": 12475, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B084123"}}, {"model": "wells.bcgs_numbers", "pk": 12476, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B084214"}}, {"model": "wells.bcgs_numbers", "pk": 12477, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:02Z", "update_user": null, "update_date": null, "bcgs_number": "093F066134"}}, {"model": "wells.bcgs_numbers", "pk": 12478, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:02Z", "update_user": null, "update_date": null, "bcgs_number": "092F046424"}}, {"model": "wells.bcgs_numbers", "pk": 12479, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:02Z", "update_user": null, "update_date": null, "bcgs_number": "092F049412"}}, {"model": "wells.bcgs_numbers", "pk": 12480, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:02Z", "update_user": null, "update_date": null, "bcgs_number": "092F056224"}}, {"model": "wells.bcgs_numbers", "pk": 12481, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:03Z", "update_user": null, "update_date": null, "bcgs_number": "092F036112"}}, {"model": "wells.bcgs_numbers", "pk": 12482, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:03Z", "update_user": null, "update_date": null, "bcgs_number": "092B093331"}}, {"model": "wells.bcgs_numbers", "pk": 12483, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:03Z", "update_user": null, "update_date": null, "bcgs_number": "092C090112"}}, {"model": "wells.bcgs_numbers", "pk": 12484, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:04Z", "update_user": null, "update_date": null, "bcgs_number": "092F003141"}}, {"model": "wells.bcgs_numbers", "pk": 12485, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:04Z", "update_user": null, "update_date": null, "bcgs_number": "092F026224"}}, {"model": "wells.bcgs_numbers", "pk": 12486, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:04Z", "update_user": null, "update_date": null, "bcgs_number": "092B092331"}}, {"model": "wells.bcgs_numbers", "pk": 12487, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:06Z", "update_user": null, "update_date": null, "bcgs_number": "092F080133"}}, {"model": "wells.bcgs_numbers", "pk": 12488, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F084422"}}, {"model": "wells.bcgs_numbers", "pk": 12489, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F094321"}}, {"model": "wells.bcgs_numbers", "pk": 12490, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F094422"}}, {"model": "wells.bcgs_numbers", "pk": 12491, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:13Z", "update_user": null, "update_date": null, "bcgs_number": "094J100134"}}, {"model": "wells.bcgs_numbers", "pk": 12492, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G011343"}}, {"model": "wells.bcgs_numbers", "pk": 12493, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:14Z", "update_user": null, "update_date": null, "bcgs_number": "092G016322"}}, {"model": "wells.bcgs_numbers", "pk": 12494, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:15Z", "update_user": null, "update_date": null, "bcgs_number": "082L056144"}}, {"model": "wells.bcgs_numbers", "pk": 12495, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:18Z", "update_user": null, "update_date": null, "bcgs_number": "082F043132"}}, {"model": "wells.bcgs_numbers", "pk": 12496, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "082G034121"}}, {"model": "wells.bcgs_numbers", "pk": 12497, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G054441"}}, {"model": "wells.bcgs_numbers", "pk": 12498, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "092F070242"}}, {"model": "wells.bcgs_numbers", "pk": 12499, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "092G075312"}}, {"model": "wells.bcgs_numbers", "pk": 12500, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "092H002342"}}, {"model": "wells.bcgs_numbers", "pk": 12501, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:21Z", "update_user": null, "update_date": null, "bcgs_number": "092H022124"}}, {"model": "wells.bcgs_numbers", "pk": 12502, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H048341"}}, {"model": "wells.bcgs_numbers", "pk": 12503, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H058141"}}, {"model": "wells.bcgs_numbers", "pk": 12504, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H058231"}}, {"model": "wells.bcgs_numbers", "pk": 12505, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H063422"}}, {"model": "wells.bcgs_numbers", "pk": 12506, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H069341"}}, {"model": "wells.bcgs_numbers", "pk": 12507, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H079211"}}, {"model": "wells.bcgs_numbers", "pk": 12508, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H097223"}}, {"model": "wells.bcgs_numbers", "pk": 12509, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I052311"}}, {"model": "wells.bcgs_numbers", "pk": 12510, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I025142"}}, {"model": "wells.bcgs_numbers", "pk": 12511, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I036422"}}, {"model": "wells.bcgs_numbers", "pk": 12512, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I059343"}}, {"model": "wells.bcgs_numbers", "pk": 12513, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I060441"}}, {"model": "wells.bcgs_numbers", "pk": 12514, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I068421"}}, {"model": "wells.bcgs_numbers", "pk": 12515, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:23Z", "update_user": null, "update_date": null, "bcgs_number": "093B098323"}}, {"model": "wells.bcgs_numbers", "pk": 12516, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I071123"}}, {"model": "wells.bcgs_numbers", "pk": 12517, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:23Z", "update_user": null, "update_date": null, "bcgs_number": "092K079411"}}, {"model": "wells.bcgs_numbers", "pk": 12518, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I090411"}}, {"model": "wells.bcgs_numbers", "pk": 12519, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:23Z", "update_user": null, "update_date": null, "bcgs_number": "092J037211"}}, {"model": "wells.bcgs_numbers", "pk": 12520, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092L056341"}}, {"model": "wells.bcgs_numbers", "pk": 12521, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P020143"}}, {"model": "wells.bcgs_numbers", "pk": 12522, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P020322"}}, {"model": "wells.bcgs_numbers", "pk": 12523, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P022244"}}, {"model": "wells.bcgs_numbers", "pk": 12524, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P030312"}}, {"model": "wells.bcgs_numbers", "pk": 12525, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P049243"}}, {"model": "wells.bcgs_numbers", "pk": 12526, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P034244"}}, {"model": "wells.bcgs_numbers", "pk": 12527, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P035411"}}, {"model": "wells.bcgs_numbers", "pk": 12528, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P044244"}}, {"model": "wells.bcgs_numbers", "pk": 12529, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P054412"}}, {"model": "wells.bcgs_numbers", "pk": 12530, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P054431"}}, {"model": "wells.bcgs_numbers", "pk": 12531, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P055423"}}, {"model": "wells.bcgs_numbers", "pk": 12532, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P055443"}}, {"model": "wells.bcgs_numbers", "pk": 12533, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P060314"}}, {"model": "wells.bcgs_numbers", "pk": 12534, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P064122"}}, {"model": "wells.bcgs_numbers", "pk": 12535, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P065323"}}, {"model": "wells.bcgs_numbers", "pk": 12536, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P083422"}}, {"model": "wells.bcgs_numbers", "pk": 12537, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P073432"}}, {"model": "wells.bcgs_numbers", "pk": 12538, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P074321"}}, {"model": "wells.bcgs_numbers", "pk": 12539, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P074131"}}, {"model": "wells.bcgs_numbers", "pk": 12540, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "092P075132"}}, {"model": "wells.bcgs_numbers", "pk": 12541, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:26Z", "update_user": null, "update_date": null, "bcgs_number": "092P083112"}}, {"model": "wells.bcgs_numbers", "pk": 12542, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:26Z", "update_user": null, "update_date": null, "bcgs_number": "093A033331"}}, {"model": "wells.bcgs_numbers", "pk": 12543, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:26Z", "update_user": null, "update_date": null, "bcgs_number": "093A034323"}}, {"model": "wells.bcgs_numbers", "pk": 12544, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:26Z", "update_user": null, "update_date": null, "bcgs_number": "093A034324"}}, {"model": "wells.bcgs_numbers", "pk": 12545, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I082213"}}, {"model": "wells.bcgs_numbers", "pk": 12546, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:27Z", "update_user": null, "update_date": null, "bcgs_number": "093B088212"}}, {"model": "wells.bcgs_numbers", "pk": 12547, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:27Z", "update_user": null, "update_date": null, "bcgs_number": "093B098321"}}, {"model": "wells.bcgs_numbers", "pk": 12548, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G002242"}}, {"model": "wells.bcgs_numbers", "pk": 12549, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G008233"}}, {"model": "wells.bcgs_numbers", "pk": 12550, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G038331"}}, {"model": "wells.bcgs_numbers", "pk": 12551, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G067433"}}, {"model": "wells.bcgs_numbers", "pk": 12552, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G086234"}}, {"model": "wells.bcgs_numbers", "pk": 12553, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G087122"}}, {"model": "wells.bcgs_numbers", "pk": 12554, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G086444"}}, {"model": "wells.bcgs_numbers", "pk": 12555, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G087244"}}, {"model": "wells.bcgs_numbers", "pk": 12556, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G091111"}}, {"model": "wells.bcgs_numbers", "pk": 12557, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G091232"}}, {"model": "wells.bcgs_numbers", "pk": 12558, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G091234"}}, {"model": "wells.bcgs_numbers", "pk": 12559, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G092241"}}, {"model": "wells.bcgs_numbers", "pk": 12560, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G095323"}}, {"model": "wells.bcgs_numbers", "pk": 12561, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G088334"}}, {"model": "wells.bcgs_numbers", "pk": 12562, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H040121"}}, {"model": "wells.bcgs_numbers", "pk": 12563, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:29Z", "update_user": null, "update_date": null, "bcgs_number": "093H057222"}}, {"model": "wells.bcgs_numbers", "pk": 12564, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093O035233"}}, {"model": "wells.bcgs_numbers", "pk": 12565, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093O045223"}}, {"model": "wells.bcgs_numbers", "pk": 12566, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P060423"}}, {"model": "wells.bcgs_numbers", "pk": 12567, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P076143"}}, {"model": "wells.bcgs_numbers", "pk": 12568, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P076233"}}, {"model": "wells.bcgs_numbers", "pk": 12569, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P079421"}}, {"model": "wells.bcgs_numbers", "pk": 12570, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P086434"}}, {"model": "wells.bcgs_numbers", "pk": 12571, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "092F003212"}}, {"model": "wells.bcgs_numbers", "pk": 12572, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P099142"}}, {"model": "wells.bcgs_numbers", "pk": 12573, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P099141"}}, {"model": "wells.bcgs_numbers", "pk": 12574, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P100342"}}, {"model": "wells.bcgs_numbers", "pk": 12575, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A007221"}}, {"model": "wells.bcgs_numbers", "pk": 12576, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P100334"}}, {"model": "wells.bcgs_numbers", "pk": 12577, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "093P100343"}}, {"model": "wells.bcgs_numbers", "pk": 12578, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A010311"}}, {"model": "wells.bcgs_numbers", "pk": 12579, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A020432"}}, {"model": "wells.bcgs_numbers", "pk": 12580, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A028113"}}, {"model": "wells.bcgs_numbers", "pk": 12581, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A028234"}}, {"model": "wells.bcgs_numbers", "pk": 12582, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A045113"}}, {"model": "wells.bcgs_numbers", "pk": 12583, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A045322"}}, {"model": "wells.bcgs_numbers", "pk": 12584, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:30Z", "update_user": null, "update_date": null, "bcgs_number": "094A046132"}}, {"model": "wells.bcgs_numbers", "pk": 12585, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A047132"}}, {"model": "wells.bcgs_numbers", "pk": 12586, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A066114"}}, {"model": "wells.bcgs_numbers", "pk": 12587, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093F089444"}}, {"model": "wells.bcgs_numbers", "pk": 12588, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093F100114"}}, {"model": "wells.bcgs_numbers", "pk": 12589, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093F100142"}}, {"model": "wells.bcgs_numbers", "pk": 12590, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093F100243"}}, {"model": "wells.bcgs_numbers", "pk": 12591, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093K002314"}}, {"model": "wells.bcgs_numbers", "pk": 12592, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093K005334"}}, {"model": "wells.bcgs_numbers", "pk": 12593, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093K005441"}}, {"model": "wells.bcgs_numbers", "pk": 12594, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093K021441"}}, {"model": "wells.bcgs_numbers", "pk": 12595, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093K031213"}}, {"model": "wells.bcgs_numbers", "pk": 12596, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093L047241"}}, {"model": "wells.bcgs_numbers", "pk": 12597, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093L047314"}}, {"model": "wells.bcgs_numbers", "pk": 12598, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "093L066332"}}, {"model": "wells.bcgs_numbers", "pk": 12599, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "082J016243"}}, {"model": "wells.bcgs_numbers", "pk": 12600, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:31Z", "update_user": null, "update_date": null, "bcgs_number": "082J026211"}}, {"model": "wells.bcgs_numbers", "pk": 12601, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K026132"}}, {"model": "wells.bcgs_numbers", "pk": 12602, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K025442"}}, {"model": "wells.bcgs_numbers", "pk": 12603, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K026334"}}, {"model": "wells.bcgs_numbers", "pk": 12604, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K062313"}}, {"model": "wells.bcgs_numbers", "pk": 12605, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K080331"}}, {"model": "wells.bcgs_numbers", "pk": 12606, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082K090432"}}, {"model": "wells.bcgs_numbers", "pk": 12607, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "082L035413"}}, {"model": "wells.bcgs_numbers", "pk": 12608, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F035444"}}, {"model": "wells.bcgs_numbers", "pk": 12609, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F045241"}}, {"model": "wells.bcgs_numbers", "pk": 12610, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F045433"}}, {"model": "wells.bcgs_numbers", "pk": 12611, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F045234"}}, {"model": "wells.bcgs_numbers", "pk": 12612, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F045412"}}, {"model": "wells.bcgs_numbers", "pk": 12613, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092F045244"}}, {"model": "wells.bcgs_numbers", "pk": 12614, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092K013214"}}, {"model": "wells.bcgs_numbers", "pk": 12615, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:32Z", "update_user": null, "update_date": null, "bcgs_number": "092K005434"}}, {"model": "wells.bcgs_numbers", "pk": 12616, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "092K006341"}}, {"model": "wells.bcgs_numbers", "pk": 12617, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "092L027241"}}, {"model": "wells.bcgs_numbers", "pk": 12618, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "092L028113"}}, {"model": "wells.bcgs_numbers", "pk": 12619, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "092L033432"}}, {"model": "wells.bcgs_numbers", "pk": 12620, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "102I070421"}}, {"model": "wells.bcgs_numbers", "pk": 12621, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "082J016431"}}, {"model": "wells.bcgs_numbers", "pk": 12622, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "092F066124"}}, {"model": "wells.bcgs_numbers", "pk": 12623, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:33Z", "update_user": null, "update_date": null, "bcgs_number": "092F070331"}}, {"model": "wells.bcgs_numbers", "pk": 12624, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I086132"}}, {"model": "wells.bcgs_numbers", "pk": 12625, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I086134"}}, {"model": "wells.bcgs_numbers", "pk": 12626, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "092P086133"}}, {"model": "wells.bcgs_numbers", "pk": 12627, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "093B004332"}}, {"model": "wells.bcgs_numbers", "pk": 12628, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "082G053212"}}, {"model": "wells.bcgs_numbers", "pk": 12629, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "093B058413"}}, {"model": "wells.bcgs_numbers", "pk": 12630, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "092O098142"}}, {"model": "wells.bcgs_numbers", "pk": 12631, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093C044221"}}, {"model": "wells.bcgs_numbers", "pk": 12632, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093C044242"}}, {"model": "wells.bcgs_numbers", "pk": 12633, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093C073231"}}, {"model": "wells.bcgs_numbers", "pk": 12634, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093A038433"}}, {"model": "wells.bcgs_numbers", "pk": 12635, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093G007441"}}, {"model": "wells.bcgs_numbers", "pk": 12636, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093G017124"}}, {"model": "wells.bcgs_numbers", "pk": 12637, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "093G010141"}}, {"model": "wells.bcgs_numbers", "pk": 12638, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "082G066433"}}, {"model": "wells.bcgs_numbers", "pk": 12639, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:35Z", "update_user": null, "update_date": null, "bcgs_number": "082L003142"}}, {"model": "wells.bcgs_numbers", "pk": 12640, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092F095333"}}, {"model": "wells.bcgs_numbers", "pk": 12641, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L097441"}}, {"model": "wells.bcgs_numbers", "pk": 12642, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L097434"}}, {"model": "wells.bcgs_numbers", "pk": 12643, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L098231"}}, {"model": "wells.bcgs_numbers", "pk": 12644, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L062422"}}, {"model": "wells.bcgs_numbers", "pk": 12645, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082M009223"}}, {"model": "wells.bcgs_numbers", "pk": 12646, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082M026321"}}, {"model": "wells.bcgs_numbers", "pk": 12647, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082M077234"}}, {"model": "wells.bcgs_numbers", "pk": 12648, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082N028131"}}, {"model": "wells.bcgs_numbers", "pk": 12649, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082N035242"}}, {"model": "wells.bcgs_numbers", "pk": 12650, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "082N038342"}}, {"model": "wells.bcgs_numbers", "pk": 12651, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "083D088133"}}, {"model": "wells.bcgs_numbers", "pk": 12652, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "083D093422"}}, {"model": "wells.bcgs_numbers", "pk": 12653, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092B043332"}}, {"model": "wells.bcgs_numbers", "pk": 12654, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092B064123"}}, {"model": "wells.bcgs_numbers", "pk": 12655, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092B064122"}}, {"model": "wells.bcgs_numbers", "pk": 12656, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092C085142"}}, {"model": "wells.bcgs_numbers", "pk": 12657, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092F002333"}}, {"model": "wells.bcgs_numbers", "pk": 12658, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:36Z", "update_user": null, "update_date": null, "bcgs_number": "092F027133"}}, {"model": "wells.bcgs_numbers", "pk": 12659, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092F096343"}}, {"model": "wells.bcgs_numbers", "pk": 12660, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G020341"}}, {"model": "wells.bcgs_numbers", "pk": 12661, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G053122"}}, {"model": "wells.bcgs_numbers", "pk": 12662, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G053124"}}, {"model": "wells.bcgs_numbers", "pk": 12663, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092I015441"}}, {"model": "wells.bcgs_numbers", "pk": 12664, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092I019213"}}, {"model": "wells.bcgs_numbers", "pk": 12665, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P049443"}}, {"model": "wells.bcgs_numbers", "pk": 12666, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092I075344"}}, {"model": "wells.bcgs_numbers", "pk": 12667, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092J079422"}}, {"model": "wells.bcgs_numbers", "pk": 12668, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092N078223"}}, {"model": "wells.bcgs_numbers", "pk": 12669, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092N080134"}}, {"model": "wells.bcgs_numbers", "pk": 12670, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092O098341"}}, {"model": "wells.bcgs_numbers", "pk": 12671, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P006413"}}, {"model": "wells.bcgs_numbers", "pk": 12672, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:37Z", "update_user": null, "update_date": null, "bcgs_number": "092P033222"}}, {"model": "wells.bcgs_numbers", "pk": 12673, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093A062112"}}, {"model": "wells.bcgs_numbers", "pk": 12674, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093B050312"}}, {"model": "wells.bcgs_numbers", "pk": 12675, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093B086142"}}, {"model": "wells.bcgs_numbers", "pk": 12676, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093C055213"}}, {"model": "wells.bcgs_numbers", "pk": 12677, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "103A040342"}}, {"model": "wells.bcgs_numbers", "pk": 12678, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G017223"}}, {"model": "wells.bcgs_numbers", "pk": 12679, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G077342"}}, {"model": "wells.bcgs_numbers", "pk": 12680, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093G082313"}}, {"model": "wells.bcgs_numbers", "pk": 12681, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093H001323"}}, {"model": "wells.bcgs_numbers", "pk": 12682, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093H039232"}}, {"model": "wells.bcgs_numbers", "pk": 12683, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093H072312"}}, {"model": "wells.bcgs_numbers", "pk": 12684, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093H072321"}}, {"model": "wells.bcgs_numbers", "pk": 12685, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093J008233"}}, {"model": "wells.bcgs_numbers", "pk": 12686, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093J025342"}}, {"model": "wells.bcgs_numbers", "pk": 12687, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093J028123"}}, {"model": "wells.bcgs_numbers", "pk": 12688, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093J044131"}}, {"model": "wells.bcgs_numbers", "pk": 12689, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093J078322"}}, {"model": "wells.bcgs_numbers", "pk": 12690, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093K018232"}}, {"model": "wells.bcgs_numbers", "pk": 12691, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093K052124"}}, {"model": "wells.bcgs_numbers", "pk": 12692, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093M042331"}}, {"model": "wells.bcgs_numbers", "pk": 12693, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:38Z", "update_user": null, "update_date": null, "bcgs_number": "093O005223"}}, {"model": "wells.bcgs_numbers", "pk": 12694, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093O070222"}}, {"model": "wells.bcgs_numbers", "pk": 12695, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P050441"}}, {"model": "wells.bcgs_numbers", "pk": 12696, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P053424"}}, {"model": "wells.bcgs_numbers", "pk": 12697, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P064111"}}, {"model": "wells.bcgs_numbers", "pk": 12698, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P061122"}}, {"model": "wells.bcgs_numbers", "pk": 12699, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093M032434"}}, {"model": "wells.bcgs_numbers", "pk": 12700, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P061111"}}, {"model": "wells.bcgs_numbers", "pk": 12701, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P062432"}}, {"model": "wells.bcgs_numbers", "pk": 12702, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P075111"}}, {"model": "wells.bcgs_numbers", "pk": 12703, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093P082422"}}, {"model": "wells.bcgs_numbers", "pk": 12704, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "094A065344"}}, {"model": "wells.bcgs_numbers", "pk": 12705, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "094J077422"}}, {"model": "wells.bcgs_numbers", "pk": 12706, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "094J077213"}}, {"model": "wells.bcgs_numbers", "pk": 12707, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "094J086331"}}, {"model": "wells.bcgs_numbers", "pk": 12708, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "094J087314"}}, {"model": "wells.bcgs_numbers", "pk": 12709, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "093H070332"}}, {"model": "wells.bcgs_numbers", "pk": 12710, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103G012333"}}, {"model": "wells.bcgs_numbers", "pk": 12711, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103G041121"}}, {"model": "wells.bcgs_numbers", "pk": 12712, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103I012414"}}, {"model": "wells.bcgs_numbers", "pk": 12713, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103I012434"}}, {"model": "wells.bcgs_numbers", "pk": 12714, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103I034114"}}, {"model": "wells.bcgs_numbers", "pk": 12715, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103I048144"}}, {"model": "wells.bcgs_numbers", "pk": 12716, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103J030143"}}, {"model": "wells.bcgs_numbers", "pk": 12717, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "103J038232"}}, {"model": "wells.bcgs_numbers", "pk": 12718, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "103K010123"}}, {"model": "wells.bcgs_numbers", "pk": 12719, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "103P030412"}}, {"model": "wells.bcgs_numbers", "pk": 12720, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "104A004342"}}, {"model": "wells.bcgs_numbers", "pk": 12721, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "104P021432"}}, {"model": "wells.bcgs_numbers", "pk": 12722, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "093P077224"}}, {"model": "wells.bcgs_numbers", "pk": 12723, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "082N011234"}}, {"model": "wells.bcgs_numbers", "pk": 12724, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "082K060124"}}, {"model": "wells.bcgs_numbers", "pk": 12725, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "082N020141"}}, {"model": "wells.bcgs_numbers", "pk": 12726, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "082N023324"}}, {"model": "wells.bcgs_numbers", "pk": 12727, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F036334"}}, {"model": "wells.bcgs_numbers", "pk": 12728, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:41Z", "update_user": null, "update_date": null, "bcgs_number": "082F012321"}}, {"model": "wells.bcgs_numbers", "pk": 12729, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:41Z", "update_user": null, "update_date": null, "bcgs_number": "103P086231"}}, {"model": "wells.bcgs_numbers", "pk": 12730, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G037132"}}, {"model": "wells.bcgs_numbers", "pk": 12731, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "092H032223"}}, {"model": "wells.bcgs_numbers", "pk": 12732, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G029111"}}, {"model": "wells.bcgs_numbers", "pk": 12733, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L043412"}}, {"model": "wells.bcgs_numbers", "pk": 12734, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "082L082424"}}, {"model": "wells.bcgs_numbers", "pk": 12735, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "103I067214"}}, {"model": "wells.bcgs_numbers", "pk": 12736, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "103P025122"}}, {"model": "wells.bcgs_numbers", "pk": 12737, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "093E089332"}}, {"model": "wells.bcgs_numbers", "pk": 12738, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:42Z", "update_user": null, "update_date": null, "bcgs_number": "093G076342"}}, {"model": "wells.bcgs_numbers", "pk": 12739, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "092I070414"}}, {"model": "wells.bcgs_numbers", "pk": 12740, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093H039324"}}, {"model": "wells.bcgs_numbers", "pk": 12741, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "083D075144"}}, {"model": "wells.bcgs_numbers", "pk": 12742, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093L047143"}}, {"model": "wells.bcgs_numbers", "pk": 12743, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093M051221"}}, {"model": "wells.bcgs_numbers", "pk": 12744, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093L085333"}}, {"model": "wells.bcgs_numbers", "pk": 12745, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093K009331"}}, {"model": "wells.bcgs_numbers", "pk": 12746, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A074213"}}, {"model": "wells.bcgs_numbers", "pk": 12747, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093J028142"}}, {"model": "wells.bcgs_numbers", "pk": 12748, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093P099332"}}, {"model": "wells.bcgs_numbers", "pk": 12749, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E003313"}}, {"model": "wells.bcgs_numbers", "pk": 12750, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093G063322"}}, {"model": "wells.bcgs_numbers", "pk": 12751, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093J008422"}}, {"model": "wells.bcgs_numbers", "pk": 12752, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "083D093431"}}, {"model": "wells.bcgs_numbers", "pk": 12753, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "083D093443"}}, {"model": "wells.bcgs_numbers", "pk": 12754, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093J002221"}}, {"model": "wells.bcgs_numbers", "pk": 12755, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A024322"}}, {"model": "wells.bcgs_numbers", "pk": 12756, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "103F070343"}}, {"model": "wells.bcgs_numbers", "pk": 12757, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "093E098342"}}, {"model": "wells.bcgs_numbers", "pk": 12758, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "083D084241"}}, {"model": "wells.bcgs_numbers", "pk": 12759, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P063433"}}, {"model": "wells.bcgs_numbers", "pk": 12760, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:44Z", "update_user": null, "update_date": null, "bcgs_number": "082E008142"}}, {"model": "wells.bcgs_numbers", "pk": 12761, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:44Z", "update_user": null, "update_date": null, "bcgs_number": "093A012414"}}, {"model": "wells.bcgs_numbers", "pk": 12762, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B058233"}}, {"model": "wells.bcgs_numbers", "pk": 12763, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:44Z", "update_user": null, "update_date": null, "bcgs_number": "093D034331"}}, {"model": "wells.bcgs_numbers", "pk": 12764, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:45Z", "update_user": null, "update_date": null, "bcgs_number": "082E045414"}}, {"model": "wells.bcgs_numbers", "pk": 12765, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:45Z", "update_user": null, "update_date": null, "bcgs_number": "082E062322"}}, {"model": "wells.bcgs_numbers", "pk": 12766, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I006243"}}, {"model": "wells.bcgs_numbers", "pk": 12767, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:45Z", "update_user": null, "update_date": null, "bcgs_number": "082E082342"}}, {"model": "wells.bcgs_numbers", "pk": 12768, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:45Z", "update_user": null, "update_date": null, "bcgs_number": "092P055124"}}, {"model": "wells.bcgs_numbers", "pk": 12769, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:46Z", "update_user": null, "update_date": null, "bcgs_number": "083D075333"}}, {"model": "wells.bcgs_numbers", "pk": 12770, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:46Z", "update_user": null, "update_date": null, "bcgs_number": "094H033432"}}, {"model": "wells.bcgs_numbers", "pk": 12771, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L036112"}}, {"model": "wells.bcgs_numbers", "pk": 12772, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L054244"}}, {"model": "wells.bcgs_numbers", "pk": 12773, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L037314"}}, {"model": "wells.bcgs_numbers", "pk": 12774, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:47Z", "update_user": null, "update_date": null, "bcgs_number": "092G015321"}}, {"model": "wells.bcgs_numbers", "pk": 12775, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:47Z", "update_user": null, "update_date": null, "bcgs_number": "093P031142"}}, {"model": "wells.bcgs_numbers", "pk": 12776, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:47Z", "update_user": null, "update_date": null, "bcgs_number": "094H006223"}}, {"model": "wells.bcgs_numbers", "pk": 12777, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:47Z", "update_user": null, "update_date": null, "bcgs_number": "092B074424"}}, {"model": "wells.bcgs_numbers", "pk": 12778, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:47Z", "update_user": null, "update_date": null, "bcgs_number": "092L067243"}}, {"model": "wells.bcgs_numbers", "pk": 12779, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092B084224"}}, {"model": "wells.bcgs_numbers", "pk": 12780, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092F030131"}}, {"model": "wells.bcgs_numbers", "pk": 12781, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092B073323"}}, {"model": "wells.bcgs_numbers", "pk": 12782, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092H069233"}}, {"model": "wells.bcgs_numbers", "pk": 12783, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092F063121"}}, {"model": "wells.bcgs_numbers", "pk": 12784, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "092G084224"}}, {"model": "wells.bcgs_numbers", "pk": 12785, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "092F059141"}}, {"model": "wells.bcgs_numbers", "pk": 12786, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "082F014411"}}, {"model": "wells.bcgs_numbers", "pk": 12787, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "082F054414"}}, {"model": "wells.bcgs_numbers", "pk": 12788, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "082F086142"}}, {"model": "wells.bcgs_numbers", "pk": 12789, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "082N048244"}}, {"model": "wells.bcgs_numbers", "pk": 12790, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "082N016414"}}, {"model": "wells.bcgs_numbers", "pk": 12791, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "092H040314"}}, {"model": "wells.bcgs_numbers", "pk": 12792, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "093J020111"}}, {"model": "wells.bcgs_numbers", "pk": 12793, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:50Z", "update_user": null, "update_date": null, "bcgs_number": "092G044111"}}, {"model": "wells.bcgs_numbers", "pk": 12794, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "092F070421"}}, {"model": "wells.bcgs_numbers", "pk": 12795, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "092F070423"}}, {"model": "wells.bcgs_numbers", "pk": 12796, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "092L072222"}}, {"model": "wells.bcgs_numbers", "pk": 12797, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "093G037343"}}, {"model": "wells.bcgs_numbers", "pk": 12798, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "092F070234"}}, {"model": "wells.bcgs_numbers", "pk": 12799, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "082F013143"}}, {"model": "wells.bcgs_numbers", "pk": 12800, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "083D088433"}}, {"model": "wells.bcgs_numbers", "pk": 12801, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "093B015433"}}, {"model": "wells.bcgs_numbers", "pk": 12802, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "093H092131"}}, {"model": "wells.bcgs_numbers", "pk": 12803, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "093P054322"}}, {"model": "wells.bcgs_numbers", "pk": 12804, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:51Z", "update_user": null, "update_date": null, "bcgs_number": "103G002113"}}, {"model": "wells.bcgs_numbers", "pk": 12805, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092G056122"}}, {"model": "wells.bcgs_numbers", "pk": 12806, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E005312"}}, {"model": "wells.bcgs_numbers", "pk": 12807, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082G007313"}}, {"model": "wells.bcgs_numbers", "pk": 12808, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E005413"}}, {"model": "wells.bcgs_numbers", "pk": 12809, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082E005313"}}, {"model": "wells.bcgs_numbers", "pk": 12810, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I023133"}}, {"model": "wells.bcgs_numbers", "pk": 12811, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I046333"}}, {"model": "wells.bcgs_numbers", "pk": 12812, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I046342"}}, {"model": "wells.bcgs_numbers", "pk": 12813, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092K047231"}}, {"model": "wells.bcgs_numbers", "pk": 12814, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092L056314"}}, {"model": "wells.bcgs_numbers", "pk": 12815, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082F003412"}}, {"model": "wells.bcgs_numbers", "pk": 12816, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082F086322"}}, {"model": "wells.bcgs_numbers", "pk": 12817, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082G032114"}}, {"model": "wells.bcgs_numbers", "pk": 12818, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "082G052243"}}, {"model": "wells.bcgs_numbers", "pk": 12819, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092K093212"}}, {"model": "wells.bcgs_numbers", "pk": 12820, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092B044323"}}, {"model": "wells.bcgs_numbers", "pk": 12821, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:52Z", "update_user": null, "update_date": null, "bcgs_number": "092J047124"}}, {"model": "wells.bcgs_numbers", "pk": 12822, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I052314"}}, {"model": "wells.bcgs_numbers", "pk": 12823, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G035144"}}, {"model": "wells.bcgs_numbers", "pk": 12824, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "093A014314"}}, {"model": "wells.bcgs_numbers", "pk": 12825, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "093B078124"}}, {"model": "wells.bcgs_numbers", "pk": 12826, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "093B086213"}}, {"model": "wells.bcgs_numbers", "pk": 12827, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "093C020112"}}, {"model": "wells.bcgs_numbers", "pk": 12828, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "093F040441"}}, {"model": "wells.bcgs_numbers", "pk": 12829, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G028111"}}, {"model": "wells.bcgs_numbers", "pk": 12830, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:54Z", "update_user": null, "update_date": null, "bcgs_number": "092B072121"}}, {"model": "wells.bcgs_numbers", "pk": 12831, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "092H017422"}}, {"model": "wells.bcgs_numbers", "pk": 12832, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082E005314"}}, {"model": "wells.bcgs_numbers", "pk": 12833, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082E061434"}}, {"model": "wells.bcgs_numbers", "pk": 12834, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082E036413"}}, {"model": "wells.bcgs_numbers", "pk": 12835, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082E032313"}}, {"model": "wells.bcgs_numbers", "pk": 12836, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082E018234"}}, {"model": "wells.bcgs_numbers", "pk": 12837, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "092H057333"}}, {"model": "wells.bcgs_numbers", "pk": 12838, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L037331"}}, {"model": "wells.bcgs_numbers", "pk": 12839, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L063313"}}, {"model": "wells.bcgs_numbers", "pk": 12840, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "104J050223"}}, {"model": "wells.bcgs_numbers", "pk": 12841, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:55Z", "update_user": null, "update_date": null, "bcgs_number": "104J050423"}}, {"model": "wells.bcgs_numbers", "pk": 12842, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:56Z", "update_user": null, "update_date": null, "bcgs_number": "093E089242"}}, {"model": "wells.bcgs_numbers", "pk": 12843, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:56Z", "update_user": null, "update_date": null, "bcgs_number": "092J006334"}}, {"model": "wells.bcgs_numbers", "pk": 12844, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:56Z", "update_user": null, "update_date": null, "bcgs_number": "092H021332"}}, {"model": "wells.bcgs_numbers", "pk": 12845, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:56Z", "update_user": null, "update_date": null, "bcgs_number": "092G036143"}}, {"model": "wells.bcgs_numbers", "pk": 12846, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K004123"}}, {"model": "wells.bcgs_numbers", "pk": 12847, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:57Z", "update_user": null, "update_date": null, "bcgs_number": "094J008432"}}, {"model": "wells.bcgs_numbers", "pk": 12848, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P087422"}}, {"model": "wells.bcgs_numbers", "pk": 12849, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:57Z", "update_user": null, "update_date": null, "bcgs_number": "093A022424"}}, {"model": "wells.bcgs_numbers", "pk": 12850, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:57Z", "update_user": null, "update_date": null, "bcgs_number": "092N088443"}}, {"model": "wells.bcgs_numbers", "pk": 12851, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:57Z", "update_user": null, "update_date": null, "bcgs_number": "093C014211"}}, {"model": "wells.bcgs_numbers", "pk": 12852, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:57Z", "update_user": null, "update_date": null, "bcgs_number": "093C044234"}}, {"model": "wells.bcgs_numbers", "pk": 12853, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "092H031121"}}, {"model": "wells.bcgs_numbers", "pk": 12854, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "093P086413"}}, {"model": "wells.bcgs_numbers", "pk": 12855, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "093P087123"}}, {"model": "wells.bcgs_numbers", "pk": 12856, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "082L071241"}}, {"model": "wells.bcgs_numbers", "pk": 12857, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "092I079242"}}, {"model": "wells.bcgs_numbers", "pk": 12858, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "092I077213"}}, {"model": "wells.bcgs_numbers", "pk": 12859, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "092P090421"}}, {"model": "wells.bcgs_numbers", "pk": 12860, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "082E093114"}}, {"model": "wells.bcgs_numbers", "pk": 12861, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "082E082141"}}, {"model": "wells.bcgs_numbers", "pk": 12862, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "082L013233"}}, {"model": "wells.bcgs_numbers", "pk": 12863, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "082E083224"}}, {"model": "wells.bcgs_numbers", "pk": 12864, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "093A034134"}}, {"model": "wells.bcgs_numbers", "pk": 12865, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "092K003234"}}, {"model": "wells.bcgs_numbers", "pk": 12866, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:58Z", "update_user": null, "update_date": null, "bcgs_number": "092C050233"}}, {"model": "wells.bcgs_numbers", "pk": 12867, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P092131"}}, {"model": "wells.bcgs_numbers", "pk": 12868, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "092O077233"}}, {"model": "wells.bcgs_numbers", "pk": 12869, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "092P065312"}}, {"model": "wells.bcgs_numbers", "pk": 12870, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "092G019343"}}, {"model": "wells.bcgs_numbers", "pk": 12871, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "092G078314"}}, {"model": "wells.bcgs_numbers", "pk": 12872, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "082E032111"}}, {"model": "wells.bcgs_numbers", "pk": 12873, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:00:59Z", "update_user": null, "update_date": null, "bcgs_number": "092H058314"}}, {"model": "wells.bcgs_numbers", "pk": 12874, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "104H081131"}}, {"model": "wells.bcgs_numbers", "pk": 12875, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E003132"}}, {"model": "wells.bcgs_numbers", "pk": 12876, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "092K024143"}}, {"model": "wells.bcgs_numbers", "pk": 12877, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "092B032144"}}, {"model": "wells.bcgs_numbers", "pk": 12878, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "082L057342"}}, {"model": "wells.bcgs_numbers", "pk": 12879, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P004321"}}, {"model": "wells.bcgs_numbers", "pk": 12880, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P054214"}}, {"model": "wells.bcgs_numbers", "pk": 12881, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:00Z", "update_user": null, "update_date": null, "bcgs_number": "092P036242"}}, {"model": "wells.bcgs_numbers", "pk": 12882, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B083311"}}, {"model": "wells.bcgs_numbers", "pk": 12883, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "092B093441"}}, {"model": "wells.bcgs_numbers", "pk": 12884, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "092C087424"}}, {"model": "wells.bcgs_numbers", "pk": 12885, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "083E011224"}}, {"model": "wells.bcgs_numbers", "pk": 12886, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "094B020344"}}, {"model": "wells.bcgs_numbers", "pk": 12887, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "094J087122"}}, {"model": "wells.bcgs_numbers", "pk": 12888, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "093P054332"}}, {"model": "wells.bcgs_numbers", "pk": 12889, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "082K001211"}}, {"model": "wells.bcgs_numbers", "pk": 12890, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "092I076411"}}, {"model": "wells.bcgs_numbers", "pk": 12891, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "092K084431"}}, {"model": "wells.bcgs_numbers", "pk": 12892, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L071334"}}, {"model": "wells.bcgs_numbers", "pk": 12893, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "094H080313"}}, {"model": "wells.bcgs_numbers", "pk": 12894, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "093P022234"}}, {"model": "wells.bcgs_numbers", "pk": 12895, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "093P054313"}}, {"model": "wells.bcgs_numbers", "pk": 12896, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "092O053213"}}, {"model": "wells.bcgs_numbers", "pk": 12897, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:02Z", "update_user": null, "update_date": null, "bcgs_number": "092B093141"}}, {"model": "wells.bcgs_numbers", "pk": 12898, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:03Z", "update_user": null, "update_date": null, "bcgs_number": "092H031314"}}, {"model": "wells.bcgs_numbers", "pk": 12899, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:03Z", "update_user": null, "update_date": null, "bcgs_number": "092P038333"}}, {"model": "wells.bcgs_numbers", "pk": 12900, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:03Z", "update_user": null, "update_date": null, "bcgs_number": "092F010434"}}, {"model": "wells.bcgs_numbers", "pk": 12901, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L023213"}}, {"model": "wells.bcgs_numbers", "pk": 12902, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L013441"}}, {"model": "wells.bcgs_numbers", "pk": 12903, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P022124"}}, {"model": "wells.bcgs_numbers", "pk": 12904, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L083241"}}, {"model": "wells.bcgs_numbers", "pk": 12905, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "082E003211"}}, {"model": "wells.bcgs_numbers", "pk": 12906, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:04Z", "update_user": null, "update_date": null, "bcgs_number": "092H067444"}}, {"model": "wells.bcgs_numbers", "pk": 12907, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082L028344"}}, {"model": "wells.bcgs_numbers", "pk": 12908, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082M017312"}}, {"model": "wells.bcgs_numbers", "pk": 12909, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082N046133"}}, {"model": "wells.bcgs_numbers", "pk": 12910, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082N045244"}}, {"model": "wells.bcgs_numbers", "pk": 12911, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G035123"}}, {"model": "wells.bcgs_numbers", "pk": 12912, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082F038122"}}, {"model": "wells.bcgs_numbers", "pk": 12913, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G024424"}}, {"model": "wells.bcgs_numbers", "pk": 12914, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G051344"}}, {"model": "wells.bcgs_numbers", "pk": 12915, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G043312"}}, {"model": "wells.bcgs_numbers", "pk": 12916, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082G005331"}}, {"model": "wells.bcgs_numbers", "pk": 12917, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082F020243"}}, {"model": "wells.bcgs_numbers", "pk": 12918, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082F008433"}}, {"model": "wells.bcgs_numbers", "pk": 12919, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:05Z", "update_user": null, "update_date": null, "bcgs_number": "082K053224"}}, {"model": "wells.bcgs_numbers", "pk": 12920, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "082L082422"}}, {"model": "wells.bcgs_numbers", "pk": 12921, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "092K014313"}}, {"model": "wells.bcgs_numbers", "pk": 12922, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "092K004121"}}, {"model": "wells.bcgs_numbers", "pk": 12923, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "092I059433"}}, {"model": "wells.bcgs_numbers", "pk": 12924, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "082L083131"}}, {"model": "wells.bcgs_numbers", "pk": 12925, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F013142"}}, {"model": "wells.bcgs_numbers", "pk": 12926, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "082L075232"}}, {"model": "wells.bcgs_numbers", "pk": 12927, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092C059312"}}, {"model": "wells.bcgs_numbers", "pk": 12928, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "082N025432"}}, {"model": "wells.bcgs_numbers", "pk": 12929, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G016144"}}, {"model": "wells.bcgs_numbers", "pk": 12930, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G016233"}}, {"model": "wells.bcgs_numbers", "pk": 12931, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G001334"}}, {"model": "wells.bcgs_numbers", "pk": 12932, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092L043322"}}, {"model": "wells.bcgs_numbers", "pk": 12933, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "104N062213"}}, {"model": "wells.bcgs_numbers", "pk": 12934, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "092B042234"}}, {"model": "wells.bcgs_numbers", "pk": 12935, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "082N026443"}}, {"model": "wells.bcgs_numbers", "pk": 12936, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "092P044341"}}, {"model": "wells.bcgs_numbers", "pk": 12937, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "092K014211"}}, {"model": "wells.bcgs_numbers", "pk": 12938, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "092I066214"}}, {"model": "wells.bcgs_numbers", "pk": 12939, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "082J013411"}}, {"model": "wells.bcgs_numbers", "pk": 12940, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "093B028221"}}, {"model": "wells.bcgs_numbers", "pk": 12941, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "092F037324"}}, {"model": "wells.bcgs_numbers", "pk": 12942, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "082G057212"}}, {"model": "wells.bcgs_numbers", "pk": 12943, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "082M011321"}}, {"model": "wells.bcgs_numbers", "pk": 12944, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "092I005222"}}, {"model": "wells.bcgs_numbers", "pk": 12945, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "082L066144"}}, {"model": "wells.bcgs_numbers", "pk": 12946, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "092C069231"}}, {"model": "wells.bcgs_numbers", "pk": 12947, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "093K067412"}}, {"model": "wells.bcgs_numbers", "pk": 12948, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "082F050432"}}, {"model": "wells.bcgs_numbers", "pk": 12949, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "093G037244"}}, {"model": "wells.bcgs_numbers", "pk": 12950, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "092K074141"}}, {"model": "wells.bcgs_numbers", "pk": 12951, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "092K034433"}}, {"model": "wells.bcgs_numbers", "pk": 12952, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "094D097332"}}, {"model": "wells.bcgs_numbers", "pk": 12953, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:09Z", "update_user": null, "update_date": null, "bcgs_number": "092G025422"}}, {"model": "wells.bcgs_numbers", "pk": 12954, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:10Z", "update_user": null, "update_date": null, "bcgs_number": "082E045324"}}, {"model": "wells.bcgs_numbers", "pk": 12955, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:10Z", "update_user": null, "update_date": null, "bcgs_number": "092P050344"}}, {"model": "wells.bcgs_numbers", "pk": 12956, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:10Z", "update_user": null, "update_date": null, "bcgs_number": "093F090343"}}, {"model": "wells.bcgs_numbers", "pk": 12957, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:10Z", "update_user": null, "update_date": null, "bcgs_number": "092C058421"}}, {"model": "wells.bcgs_numbers", "pk": 12958, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:10Z", "update_user": null, "update_date": null, "bcgs_number": "093K059444"}}, {"model": "wells.bcgs_numbers", "pk": 12959, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I089321"}}, {"model": "wells.bcgs_numbers", "pk": 12960, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I037311"}}, {"model": "wells.bcgs_numbers", "pk": 12961, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "082E009443"}}, {"model": "wells.bcgs_numbers", "pk": 12962, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "092H058444"}}, {"model": "wells.bcgs_numbers", "pk": 12963, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "093G075231"}}, {"model": "wells.bcgs_numbers", "pk": 12964, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I046441"}}, {"model": "wells.bcgs_numbers", "pk": 12965, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "082F003114"}}, {"model": "wells.bcgs_numbers", "pk": 12966, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F084414"}}, {"model": "wells.bcgs_numbers", "pk": 12967, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:12Z", "update_user": null, "update_date": null, "bcgs_number": "092F033341"}}, {"model": "wells.bcgs_numbers", "pk": 12968, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:12Z", "update_user": null, "update_date": null, "bcgs_number": "082K060132"}}, {"model": "wells.bcgs_numbers", "pk": 12969, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:12Z", "update_user": null, "update_date": null, "bcgs_number": "082E032412"}}, {"model": "wells.bcgs_numbers", "pk": 12970, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:12Z", "update_user": null, "update_date": null, "bcgs_number": "094C030413"}}, {"model": "wells.bcgs_numbers", "pk": 12971, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "093K008143"}}, {"model": "wells.bcgs_numbers", "pk": 12972, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "093J016000"}}, {"model": "wells.bcgs_numbers", "pk": 12973, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "093G057413"}}, {"model": "wells.bcgs_numbers", "pk": 12974, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "093G075424"}}, {"model": "wells.bcgs_numbers", "pk": 12975, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "082N017132"}}, {"model": "wells.bcgs_numbers", "pk": 12976, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "082N017331"}}, {"model": "wells.bcgs_numbers", "pk": 12977, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "092P036231"}}, {"model": "wells.bcgs_numbers", "pk": 12978, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "092J060214"}}, {"model": "wells.bcgs_numbers", "pk": 12979, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "092E080414"}}, {"model": "wells.bcgs_numbers", "pk": 12980, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "092J006344"}}, {"model": "wells.bcgs_numbers", "pk": 12981, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "082J023413"}}, {"model": "wells.bcgs_numbers", "pk": 12982, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:13Z", "update_user": null, "update_date": null, "bcgs_number": "093B059211"}}, {"model": "wells.bcgs_numbers", "pk": 12983, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092G037213"}}, {"model": "wells.bcgs_numbers", "pk": 12984, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092B082134"}}, {"model": "wells.bcgs_numbers", "pk": 12985, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B012142"}}, {"model": "wells.bcgs_numbers", "pk": 12986, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "094A071211"}}, {"model": "wells.bcgs_numbers", "pk": 12987, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092G043322"}}, {"model": "wells.bcgs_numbers", "pk": 12988, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F060222"}}, {"model": "wells.bcgs_numbers", "pk": 12989, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "093K039231"}}, {"model": "wells.bcgs_numbers", "pk": 12990, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "093K049341"}}, {"model": "wells.bcgs_numbers", "pk": 12991, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092C094334"}}, {"model": "wells.bcgs_numbers", "pk": 12992, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "082K050411"}}, {"model": "wells.bcgs_numbers", "pk": 12993, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092I065243"}}, {"model": "wells.bcgs_numbers", "pk": 12994, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092F004114"}}, {"model": "wells.bcgs_numbers", "pk": 12995, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "093K053142"}}, {"model": "wells.bcgs_numbers", "pk": 12996, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P021343"}}, {"model": "wells.bcgs_numbers", "pk": 12997, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:14Z", "update_user": null, "update_date": null, "bcgs_number": "092B081111"}}, {"model": "wells.bcgs_numbers", "pk": 12998, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B052242"}}, {"model": "wells.bcgs_numbers", "pk": 12999, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "093O069223"}}, {"model": "wells.bcgs_numbers", "pk": 13000, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "093G067322"}}, {"model": "wells.bcgs_numbers", "pk": 13001, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F085332"}}, {"model": "wells.bcgs_numbers", "pk": 13002, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "092C067411"}}, {"model": "wells.bcgs_numbers", "pk": 13003, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "092C067322"}}, {"model": "wells.bcgs_numbers", "pk": 13004, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "092F030324"}}, {"model": "wells.bcgs_numbers", "pk": 13005, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:15Z", "update_user": null, "update_date": null, "bcgs_number": "093G012412"}}, {"model": "wells.bcgs_numbers", "pk": 13006, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P010142"}}, {"model": "wells.bcgs_numbers", "pk": 13007, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "092I095113"}}, {"model": "wells.bcgs_numbers", "pk": 13008, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "082F052221"}}, {"model": "wells.bcgs_numbers", "pk": 13009, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "093B012334"}}, {"model": "wells.bcgs_numbers", "pk": 13010, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "082L081233"}}, {"model": "wells.bcgs_numbers", "pk": 13011, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "104G100214"}}, {"model": "wells.bcgs_numbers", "pk": 13012, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "093P095334"}}, {"model": "wells.bcgs_numbers", "pk": 13013, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "093P085324"}}, {"model": "wells.bcgs_numbers", "pk": 13014, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "082N045333"}}, {"model": "wells.bcgs_numbers", "pk": 13015, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "093A027341"}}, {"model": "wells.bcgs_numbers", "pk": 13016, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "092I093241"}}, {"model": "wells.bcgs_numbers", "pk": 13017, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H057331"}}, {"model": "wells.bcgs_numbers", "pk": 13018, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F088121"}}, {"model": "wells.bcgs_numbers", "pk": 13019, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "103G051121"}}, {"model": "wells.bcgs_numbers", "pk": 13020, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "093J008432"}}, {"model": "wells.bcgs_numbers", "pk": 13021, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "092C058424"}}, {"model": "wells.bcgs_numbers", "pk": 13022, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "093H030342"}}, {"model": "wells.bcgs_numbers", "pk": 13023, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "082E012134"}}, {"model": "wells.bcgs_numbers", "pk": 13024, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F088123"}}, {"model": "wells.bcgs_numbers", "pk": 13025, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A034233"}}, {"model": "wells.bcgs_numbers", "pk": 13026, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:17Z", "update_user": null, "update_date": null, "bcgs_number": "082N055112"}}, {"model": "wells.bcgs_numbers", "pk": 13027, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "093K005242"}}, {"model": "wells.bcgs_numbers", "pk": 13028, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "082L090231"}}, {"model": "wells.bcgs_numbers", "pk": 13029, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "092G023443"}}, {"model": "wells.bcgs_numbers", "pk": 13030, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "094K084412"}}, {"model": "wells.bcgs_numbers", "pk": 13031, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "093A073334"}}, {"model": "wells.bcgs_numbers", "pk": 13032, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "092H039443"}}, {"model": "wells.bcgs_numbers", "pk": 13033, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "082K060414"}}, {"model": "wells.bcgs_numbers", "pk": 13034, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "092G015241"}}, {"model": "wells.bcgs_numbers", "pk": 13035, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "104G080222"}}, {"model": "wells.bcgs_numbers", "pk": 13036, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "093A083314"}}, {"model": "wells.bcgs_numbers", "pk": 13037, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "082G061444"}}, {"model": "wells.bcgs_numbers", "pk": 13038, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:19Z", "update_user": null, "update_date": null, "bcgs_number": "093G074334"}}, {"model": "wells.bcgs_numbers", "pk": 13039, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A004143"}}, {"model": "wells.bcgs_numbers", "pk": 13040, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "092C080343"}}, {"model": "wells.bcgs_numbers", "pk": 13041, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "092L066312"}}, {"model": "wells.bcgs_numbers", "pk": 13042, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "092K045332"}}, {"model": "wells.bcgs_numbers", "pk": 13043, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094O024231"}}, {"model": "wells.bcgs_numbers", "pk": 13044, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093P081344"}}, {"model": "wells.bcgs_numbers", "pk": 13045, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093P031441"}}, {"model": "wells.bcgs_numbers", "pk": 13046, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093P075234"}}, {"model": "wells.bcgs_numbers", "pk": 13047, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A046131"}}, {"model": "wells.bcgs_numbers", "pk": 13048, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093O070143"}}, {"model": "wells.bcgs_numbers", "pk": 13049, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094J060231"}}, {"model": "wells.bcgs_numbers", "pk": 13050, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G092244"}}, {"model": "wells.bcgs_numbers", "pk": 13051, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G093121"}}, {"model": "wells.bcgs_numbers", "pk": 13052, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093I096121"}}, {"model": "wells.bcgs_numbers", "pk": 13053, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094J086434"}}, {"model": "wells.bcgs_numbers", "pk": 13054, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093P086223"}}, {"model": "wells.bcgs_numbers", "pk": 13055, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A085222"}}, {"model": "wells.bcgs_numbers", "pk": 13056, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "093P094312"}}, {"model": "wells.bcgs_numbers", "pk": 13057, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A036443"}}, {"model": "wells.bcgs_numbers", "pk": 13058, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A056334"}}, {"model": "wells.bcgs_numbers", "pk": 13059, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094J086442"}}, {"model": "wells.bcgs_numbers", "pk": 13060, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P059113"}}, {"model": "wells.bcgs_numbers", "pk": 13061, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094J007343"}}, {"model": "wells.bcgs_numbers", "pk": 13062, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P051333"}}, {"model": "wells.bcgs_numbers", "pk": 13063, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A040123"}}, {"model": "wells.bcgs_numbers", "pk": 13064, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A032423"}}, {"model": "wells.bcgs_numbers", "pk": 13065, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A025243"}}, {"model": "wells.bcgs_numbers", "pk": 13066, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P080121"}}, {"model": "wells.bcgs_numbers", "pk": 13067, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A038343"}}, {"model": "wells.bcgs_numbers", "pk": 13068, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P080211"}}, {"model": "wells.bcgs_numbers", "pk": 13069, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P060244"}}, {"model": "wells.bcgs_numbers", "pk": 13070, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P057444"}}, {"model": "wells.bcgs_numbers", "pk": 13071, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A037433"}}, {"model": "wells.bcgs_numbers", "pk": 13072, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P063324"}}, {"model": "wells.bcgs_numbers", "pk": 13073, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A086331"}}, {"model": "wells.bcgs_numbers", "pk": 13074, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094K085114"}}, {"model": "wells.bcgs_numbers", "pk": 13075, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094J058331"}}, {"model": "wells.bcgs_numbers", "pk": 13076, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A044421"}}, {"model": "wells.bcgs_numbers", "pk": 13077, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094A010421"}}, {"model": "wells.bcgs_numbers", "pk": 13078, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094J017421"}}, {"model": "wells.bcgs_numbers", "pk": 13079, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094H056232"}}, {"model": "wells.bcgs_numbers", "pk": 13080, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094I070314"}}, {"model": "wells.bcgs_numbers", "pk": 13081, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094I070324"}}, {"model": "wells.bcgs_numbers", "pk": 13082, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "094H007314"}}, {"model": "wells.bcgs_numbers", "pk": 13083, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "093O047231"}}, {"model": "wells.bcgs_numbers", "pk": 13084, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "092E096333"}}, {"model": "wells.bcgs_numbers", "pk": 13085, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "092E096331"}}, {"model": "wells.bcgs_numbers", "pk": 13086, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:21Z", "update_user": null, "update_date": null, "bcgs_number": "092F015411"}}, {"model": "wells.bcgs_numbers", "pk": 13087, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "082K051122"}}, {"model": "wells.bcgs_numbers", "pk": 13088, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "082L055222"}}, {"model": "wells.bcgs_numbers", "pk": 13089, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "082J011434"}}, {"model": "wells.bcgs_numbers", "pk": 13090, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "092P004314"}}, {"model": "wells.bcgs_numbers", "pk": 13091, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "092H001122"}}, {"model": "wells.bcgs_numbers", "pk": 13092, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G051144"}}, {"model": "wells.bcgs_numbers", "pk": 13093, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "082L036221"}}, {"model": "wells.bcgs_numbers", "pk": 13094, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "082F083243"}}, {"model": "wells.bcgs_numbers", "pk": 13095, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G083334"}}, {"model": "wells.bcgs_numbers", "pk": 13096, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "093J020114"}}, {"model": "wells.bcgs_numbers", "pk": 13097, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "093G098321"}}, {"model": "wells.bcgs_numbers", "pk": 13098, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:22Z", "update_user": null, "update_date": null, "bcgs_number": "092F022422"}}, {"model": "wells.bcgs_numbers", "pk": 13099, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094A071323"}}, {"model": "wells.bcgs_numbers", "pk": 13100, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094P046224"}}, {"model": "wells.bcgs_numbers", "pk": 13101, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094P050213"}}, {"model": "wells.bcgs_numbers", "pk": 13102, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094G070431"}}, {"model": "wells.bcgs_numbers", "pk": 13103, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094O075343"}}, {"model": "wells.bcgs_numbers", "pk": 13104, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094J050341"}}, {"model": "wells.bcgs_numbers", "pk": 13105, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "094P075314"}}, {"model": "wells.bcgs_numbers", "pk": 13106, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I005442"}}, {"model": "wells.bcgs_numbers", "pk": 13107, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "093H003344"}}, {"model": "wells.bcgs_numbers", "pk": 13108, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B053331"}}, {"model": "wells.bcgs_numbers", "pk": 13109, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B053333"}}, {"model": "wells.bcgs_numbers", "pk": 13110, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L027421"}}, {"model": "wells.bcgs_numbers", "pk": 13111, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "092F065321"}}, {"model": "wells.bcgs_numbers", "pk": 13112, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "093A021424"}}, {"model": "wells.bcgs_numbers", "pk": 13113, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "093B040433"}}, {"model": "wells.bcgs_numbers", "pk": 13114, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:23Z", "update_user": null, "update_date": null, "bcgs_number": "093B049434"}}, {"model": "wells.bcgs_numbers", "pk": 13115, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P004311"}}, {"model": "wells.bcgs_numbers", "pk": 13116, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "092I070441"}}, {"model": "wells.bcgs_numbers", "pk": 13117, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "093I059424"}}, {"model": "wells.bcgs_numbers", "pk": 13118, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P070232"}}, {"model": "wells.bcgs_numbers", "pk": 13119, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "092N097124"}}, {"model": "wells.bcgs_numbers", "pk": 13120, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "082L050133"}}, {"model": "wells.bcgs_numbers", "pk": 13121, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "093F099232"}}, {"model": "wells.bcgs_numbers", "pk": 13122, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "094F025444"}}, {"model": "wells.bcgs_numbers", "pk": 13123, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "093K014211"}}, {"model": "wells.bcgs_numbers", "pk": 13124, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "093G097334"}}, {"model": "wells.bcgs_numbers", "pk": 13125, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P093412"}}, {"model": "wells.bcgs_numbers", "pk": 13126, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "094B100233"}}, {"model": "wells.bcgs_numbers", "pk": 13127, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "094B099434"}}, {"model": "wells.bcgs_numbers", "pk": 13128, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "082G008441"}}, {"model": "wells.bcgs_numbers", "pk": 13129, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:25Z", "update_user": null, "update_date": null, "bcgs_number": "082F014341"}}, {"model": "wells.bcgs_numbers", "pk": 13130, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:25Z", "update_user": null, "update_date": null, "bcgs_number": "092G035134"}}, {"model": "wells.bcgs_numbers", "pk": 13131, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:25Z", "update_user": null, "update_date": null, "bcgs_number": "082F002242"}}, {"model": "wells.bcgs_numbers", "pk": 13132, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:25Z", "update_user": null, "update_date": null, "bcgs_number": "092B053334"}}, {"model": "wells.bcgs_numbers", "pk": 13133, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093H095314"}}, {"model": "wells.bcgs_numbers", "pk": 13134, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093A011222"}}, {"model": "wells.bcgs_numbers", "pk": 13135, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093B095243"}}, {"model": "wells.bcgs_numbers", "pk": 13136, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093B099323"}}, {"model": "wells.bcgs_numbers", "pk": 13137, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093H003331"}}, {"model": "wells.bcgs_numbers", "pk": 13138, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093A093231"}}, {"model": "wells.bcgs_numbers", "pk": 13139, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093B096131"}}, {"model": "wells.bcgs_numbers", "pk": 13140, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093A093134"}}, {"model": "wells.bcgs_numbers", "pk": 13141, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "092F029324"}}, {"model": "wells.bcgs_numbers", "pk": 13142, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "092H039233"}}, {"model": "wells.bcgs_numbers", "pk": 13143, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E004413"}}, {"model": "wells.bcgs_numbers", "pk": 13144, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E004424"}}, {"model": "wells.bcgs_numbers", "pk": 13145, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "093N010444"}}, {"model": "wells.bcgs_numbers", "pk": 13146, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I042343"}}, {"model": "wells.bcgs_numbers", "pk": 13147, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "092G033241"}}, {"model": "wells.bcgs_numbers", "pk": 13148, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "082G004222"}}, {"model": "wells.bcgs_numbers", "pk": 13149, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I049112"}}, {"model": "wells.bcgs_numbers", "pk": 13150, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "093P098123"}}, {"model": "wells.bcgs_numbers", "pk": 13151, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "094G037434"}}, {"model": "wells.bcgs_numbers", "pk": 13152, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "082F008212"}}, {"model": "wells.bcgs_numbers", "pk": 13153, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I039334"}}, {"model": "wells.bcgs_numbers", "pk": 13154, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "082G097113"}}, {"model": "wells.bcgs_numbers", "pk": 13155, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:27Z", "update_user": null, "update_date": null, "bcgs_number": "082F004212"}}, {"model": "wells.bcgs_numbers", "pk": 13156, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "082K080311"}}, {"model": "wells.bcgs_numbers", "pk": 13157, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093G093314"}}, {"model": "wells.bcgs_numbers", "pk": 13158, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "082L082222"}}, {"model": "wells.bcgs_numbers", "pk": 13159, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093H002422"}}, {"model": "wells.bcgs_numbers", "pk": 13160, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "092I025341"}}, {"model": "wells.bcgs_numbers", "pk": 13161, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "092K035133"}}, {"model": "wells.bcgs_numbers", "pk": 13162, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093C006132"}}, {"model": "wells.bcgs_numbers", "pk": 13163, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E033142"}}, {"model": "wells.bcgs_numbers", "pk": 13164, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103I067334"}}, {"model": "wells.bcgs_numbers", "pk": 13165, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103I047324"}}, {"model": "wells.bcgs_numbers", "pk": 13166, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103I077332"}}, {"model": "wells.bcgs_numbers", "pk": 13167, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "104H072132"}}, {"model": "wells.bcgs_numbers", "pk": 13168, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "104B077214"}}, {"model": "wells.bcgs_numbers", "pk": 13169, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "104B077231"}}, {"model": "wells.bcgs_numbers", "pk": 13170, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "104B077211"}}, {"model": "wells.bcgs_numbers", "pk": 13171, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093L074233"}}, {"model": "wells.bcgs_numbers", "pk": 13172, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103I067232"}}, {"model": "wells.bcgs_numbers", "pk": 13173, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103P030431"}}, {"model": "wells.bcgs_numbers", "pk": 13174, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103P010344"}}, {"model": "wells.bcgs_numbers", "pk": 13175, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103I007234"}}, {"model": "wells.bcgs_numbers", "pk": 13176, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "094F042243"}}, {"model": "wells.bcgs_numbers", "pk": 13177, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093L075244"}}, {"model": "wells.bcgs_numbers", "pk": 13178, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103J001141"}}, {"model": "wells.bcgs_numbers", "pk": 13179, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "103J078334"}}, {"model": "wells.bcgs_numbers", "pk": 13180, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093L056424"}}, {"model": "wells.bcgs_numbers", "pk": 13181, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:28Z", "update_user": null, "update_date": null, "bcgs_number": "093M008322"}}, {"model": "wells.bcgs_numbers", "pk": 13182, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L094314"}}, {"model": "wells.bcgs_numbers", "pk": 13183, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L073334"}}, {"model": "wells.bcgs_numbers", "pk": 13184, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L075443"}}, {"model": "wells.bcgs_numbers", "pk": 13185, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L065312"}}, {"model": "wells.bcgs_numbers", "pk": 13186, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L075424"}}, {"model": "wells.bcgs_numbers", "pk": 13187, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L027442"}}, {"model": "wells.bcgs_numbers", "pk": 13188, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L066122"}}, {"model": "wells.bcgs_numbers", "pk": 13189, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H043424"}}, {"model": "wells.bcgs_numbers", "pk": 13190, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L040444"}}, {"model": "wells.bcgs_numbers", "pk": 13191, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093M012314"}}, {"model": "wells.bcgs_numbers", "pk": 13192, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "092P003244"}}, {"model": "wells.bcgs_numbers", "pk": 13193, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L085234"}}, {"model": "wells.bcgs_numbers", "pk": 13194, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L094143"}}, {"model": "wells.bcgs_numbers", "pk": 13195, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093L067111"}}, {"model": "wells.bcgs_numbers", "pk": 13196, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "092O027324"}}, {"model": "wells.bcgs_numbers", "pk": 13197, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093P062422"}}, {"model": "wells.bcgs_numbers", "pk": 13198, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "094P012444"}}, {"model": "wells.bcgs_numbers", "pk": 13199, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "093P096132"}}, {"model": "wells.bcgs_numbers", "pk": 13200, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H063444"}}, {"model": "wells.bcgs_numbers", "pk": 13201, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E016213"}}, {"model": "wells.bcgs_numbers", "pk": 13202, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "082E006132"}}, {"model": "wells.bcgs_numbers", "pk": 13203, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:29Z", "update_user": null, "update_date": null, "bcgs_number": "082L052443"}}, {"model": "wells.bcgs_numbers", "pk": 13204, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "092P004133"}}, {"model": "wells.bcgs_numbers", "pk": 13205, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "082M068111"}}, {"model": "wells.bcgs_numbers", "pk": 13206, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "082F064242"}}, {"model": "wells.bcgs_numbers", "pk": 13207, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "082N045324"}}, {"model": "wells.bcgs_numbers", "pk": 13208, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "092J089232"}}, {"model": "wells.bcgs_numbers", "pk": 13209, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "092G043344"}}, {"model": "wells.bcgs_numbers", "pk": 13210, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:30Z", "update_user": null, "update_date": null, "bcgs_number": "082F054433"}}, {"model": "wells.bcgs_numbers", "pk": 13211, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H067133"}}, {"model": "wells.bcgs_numbers", "pk": 13212, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104A072313"}}, {"model": "wells.bcgs_numbers", "pk": 13213, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104A072133"}}, {"model": "wells.bcgs_numbers", "pk": 13214, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "103I097413"}}, {"model": "wells.bcgs_numbers", "pk": 13215, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104H072133"}}, {"model": "wells.bcgs_numbers", "pk": 13216, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104P024433"}}, {"model": "wells.bcgs_numbers", "pk": 13217, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "103I007232"}}, {"model": "wells.bcgs_numbers", "pk": 13218, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104H072134"}}, {"model": "wells.bcgs_numbers", "pk": 13219, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104J050132"}}, {"model": "wells.bcgs_numbers", "pk": 13220, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "103P020422"}}, {"model": "wells.bcgs_numbers", "pk": 13221, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "104A053124"}}, {"model": "wells.bcgs_numbers", "pk": 13222, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "082E017211"}}, {"model": "wells.bcgs_numbers", "pk": 13223, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "093B095222"}}, {"model": "wells.bcgs_numbers", "pk": 13224, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L067231"}}, {"model": "wells.bcgs_numbers", "pk": 13225, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:31Z", "update_user": null, "update_date": null, "bcgs_number": "092H039322"}}, {"model": "wells.bcgs_numbers", "pk": 13226, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093431"}}, {"model": "wells.bcgs_numbers", "pk": 13227, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "082E093334"}}, {"model": "wells.bcgs_numbers", "pk": 13228, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P087424"}}, {"model": "wells.bcgs_numbers", "pk": 13229, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A018111"}}, {"model": "wells.bcgs_numbers", "pk": 13230, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P070314"}}, {"model": "wells.bcgs_numbers", "pk": 13231, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P060314"}}, {"model": "wells.bcgs_numbers", "pk": 13232, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P060123"}}, {"model": "wells.bcgs_numbers", "pk": 13233, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P068142"}}, {"model": "wells.bcgs_numbers", "pk": 13234, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P089334"}}, {"model": "wells.bcgs_numbers", "pk": 13235, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P087142"}}, {"model": "wells.bcgs_numbers", "pk": 13236, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A017223"}}, {"model": "wells.bcgs_numbers", "pk": 13237, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P070233"}}, {"model": "wells.bcgs_numbers", "pk": 13238, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P099144"}}, {"model": "wells.bcgs_numbers", "pk": 13239, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A017212"}}, {"model": "wells.bcgs_numbers", "pk": 13240, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P060114"}}, {"model": "wells.bcgs_numbers", "pk": 13241, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P086411"}}, {"model": "wells.bcgs_numbers", "pk": 13242, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P098342"}}, {"model": "wells.bcgs_numbers", "pk": 13243, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P077141"}}, {"model": "wells.bcgs_numbers", "pk": 13244, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P097122"}}, {"model": "wells.bcgs_numbers", "pk": 13245, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093P070232"}}, {"model": "wells.bcgs_numbers", "pk": 13246, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H007321"}}, {"model": "wells.bcgs_numbers", "pk": 13247, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "082F043411"}}, {"model": "wells.bcgs_numbers", "pk": 13248, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "093L065422"}}, {"model": "wells.bcgs_numbers", "pk": 13249, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "092H043243"}}, {"model": "wells.bcgs_numbers", "pk": 13250, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:32Z", "update_user": null, "update_date": null, "bcgs_number": "092G098244"}}, {"model": "wells.bcgs_numbers", "pk": 13251, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H033332"}}, {"model": "wells.bcgs_numbers", "pk": 13252, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092J080131"}}, {"model": "wells.bcgs_numbers", "pk": 13253, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "103P091133"}}, {"model": "wells.bcgs_numbers", "pk": 13254, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092G079441"}}, {"model": "wells.bcgs_numbers", "pk": 13255, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092F037434"}}, {"model": "wells.bcgs_numbers", "pk": 13256, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092J086421"}}, {"model": "wells.bcgs_numbers", "pk": 13257, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "093D037411"}}, {"model": "wells.bcgs_numbers", "pk": 13258, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "103I091343"}}, {"model": "wells.bcgs_numbers", "pk": 13259, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:33Z", "update_user": null, "update_date": null, "bcgs_number": "092K021244"}}, {"model": "wells.bcgs_numbers", "pk": 13260, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I045444"}}, {"model": "wells.bcgs_numbers", "pk": 13261, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092G027331"}}, {"model": "wells.bcgs_numbers", "pk": 13262, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "093O011111"}}, {"model": "wells.bcgs_numbers", "pk": 13263, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "093O037443"}}, {"model": "wells.bcgs_numbers", "pk": 13264, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092F028334"}}, {"model": "wells.bcgs_numbers", "pk": 13265, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "082E029342"}}, {"model": "wells.bcgs_numbers", "pk": 13266, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I058213"}}, {"model": "wells.bcgs_numbers", "pk": 13267, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "104C070331"}}, {"model": "wells.bcgs_numbers", "pk": 13268, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092G056142"}}, {"model": "wells.bcgs_numbers", "pk": 13269, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092G059123"}}, {"model": "wells.bcgs_numbers", "pk": 13270, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092G056124"}}, {"model": "wells.bcgs_numbers", "pk": 13271, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "103O100441"}}, {"model": "wells.bcgs_numbers", "pk": 13272, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "082E066242"}}, {"model": "wells.bcgs_numbers", "pk": 13273, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092M064441"}}, {"model": "wells.bcgs_numbers", "pk": 13274, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092K015213"}}, {"model": "wells.bcgs_numbers", "pk": 13275, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092L055334"}}, {"model": "wells.bcgs_numbers", "pk": 13276, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "093I065414"}}, {"model": "wells.bcgs_numbers", "pk": 13277, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "094A019434"}}, {"model": "wells.bcgs_numbers", "pk": 13278, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "082F014212"}}, {"model": "wells.bcgs_numbers", "pk": 13279, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F014211"}}, {"model": "wells.bcgs_numbers", "pk": 13280, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:35Z", "update_user": null, "update_date": null, "bcgs_number": "082F018312"}}, {"model": "wells.bcgs_numbers", "pk": 13281, "fields": {"create_user": "WELLS", "create_date": "2014-02-04T22:01:35Z", "update_user": null, "update_date": null, "bcgs_number": "092I052333"}}, {"model": "wells.bcgs_numbers", "pk": 13282, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-06T21:34:27Z", "update_user": null, "update_date": null, "bcgs_number": "092K024231"}}, {"model": "wells.bcgs_numbers", "pk": 13283, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-07T02:01:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A028433"}}, {"model": "wells.bcgs_numbers", "pk": 13284, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-07T02:04:36Z", "update_user": null, "update_date": null, "bcgs_number": "092C099233"}}, {"model": "wells.bcgs_numbers", "pk": 13285, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-07T02:05:37Z", "update_user": null, "update_date": null, "bcgs_number": "092H001414"}}, {"model": "wells.bcgs_numbers", "pk": 13286, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-07T02:15:47Z", "update_user": null, "update_date": null, "bcgs_number": "092L066124"}}, {"model": "wells.bcgs_numbers", "pk": 13287, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-07T21:59:19Z", "update_user": null, "update_date": null, "bcgs_number": "082G049312"}}, {"model": "wells.bcgs_numbers", "pk": 13288, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-11T21:39:10Z", "update_user": null, "update_date": null, "bcgs_number": "104A031343"}}, {"model": "wells.bcgs_numbers", "pk": 13289, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-12T02:10:50Z", "update_user": null, "update_date": null, "bcgs_number": "092G027422"}}, {"model": "wells.bcgs_numbers", "pk": 13290, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-12T02:11:57Z", "update_user": null, "update_date": null, "bcgs_number": "092G027432"}}, {"model": "wells.bcgs_numbers", "pk": 13291, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-12T02:15:12Z", "update_user": null, "update_date": null, "bcgs_number": "092G019442"}}, {"model": "wells.bcgs_numbers", "pk": 13292, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-12T02:17:40Z", "update_user": null, "update_date": null, "bcgs_number": "092J046332"}}, {"model": "wells.bcgs_numbers", "pk": 13293, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-16T00:26:00Z", "update_user": null, "update_date": null, "bcgs_number": "102H009331"}}, {"model": "wells.bcgs_numbers", "pk": 13294, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-16T00:39:44Z", "update_user": null, "update_date": null, "bcgs_number": "092H011322"}}, {"model": "wells.bcgs_numbers", "pk": 13295, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-16T21:01:07Z", "update_user": null, "update_date": null, "bcgs_number": "093I047134"}}, {"model": "wells.bcgs_numbers", "pk": 13296, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T00:24:30Z", "update_user": null, "update_date": null, "bcgs_number": "094O081114"}}, {"model": "wells.bcgs_numbers", "pk": 13297, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T00:27:09Z", "update_user": null, "update_date": null, "bcgs_number": "094O011133"}}, {"model": "wells.bcgs_numbers", "pk": 13298, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T00:34:19Z", "update_user": null, "update_date": null, "bcgs_number": "093P048232"}}, {"model": "wells.bcgs_numbers", "pk": 13299, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T00:50:10Z", "update_user": null, "update_date": null, "bcgs_number": "102H020223"}}, {"model": "wells.bcgs_numbers", "pk": 13300, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T01:07:55Z", "update_user": null, "update_date": null, "bcgs_number": "093L032413"}}, {"model": "wells.bcgs_numbers", "pk": 13301, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T01:09:18Z", "update_user": null, "update_date": null, "bcgs_number": "082G056442"}}, {"model": "wells.bcgs_numbers", "pk": 13302, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T01:10:29Z", "update_user": null, "update_date": null, "bcgs_number": "082G066221"}}, {"model": "wells.bcgs_numbers", "pk": 13303, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-18T01:13:49Z", "update_user": null, "update_date": null, "bcgs_number": "082G066223"}}, {"model": "wells.bcgs_numbers", "pk": 13304, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-24T02:40:44Z", "update_user": null, "update_date": null, "bcgs_number": "093B095441"}}, {"model": "wells.bcgs_numbers", "pk": 13305, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-26T01:11:15Z", "update_user": null, "update_date": null, "bcgs_number": "094D066332"}}, {"model": "wells.bcgs_numbers", "pk": 13306, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-26T01:26:31Z", "update_user": null, "update_date": null, "bcgs_number": "093P038144"}}, {"model": "wells.bcgs_numbers", "pk": 13307, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-26T01:31:21Z", "update_user": null, "update_date": null, "bcgs_number": "093P039121"}}, {"model": "wells.bcgs_numbers", "pk": 13308, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-02-26T01:31:33Z", "update_user": null, "update_date": null, "bcgs_number": "102P074423"}}, {"model": "wells.bcgs_numbers", "pk": 13309, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-01T03:23:39Z", "update_user": null, "update_date": null, "bcgs_number": "093G077242"}}, {"model": "wells.bcgs_numbers", "pk": 13310, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-01T03:33:48Z", "update_user": null, "update_date": null, "bcgs_number": "093J007144"}}, {"model": "wells.bcgs_numbers", "pk": 13311, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-01T03:37:48Z", "update_user": null, "update_date": null, "bcgs_number": "093G092231"}}, {"model": "wells.bcgs_numbers", "pk": 13312, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-01T03:38:50Z", "update_user": null, "update_date": null, "bcgs_number": "093G086433"}}, {"model": "wells.bcgs_numbers", "pk": 13313, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-02T19:08:47Z", "update_user": null, "update_date": null, "bcgs_number": "093G076142"}}, {"model": "wells.bcgs_numbers", "pk": 13314, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-12T19:03:05Z", "update_user": null, "update_date": null, "bcgs_number": "082M001334"}}, {"model": "wells.bcgs_numbers", "pk": 13315, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-12T20:27:55Z", "update_user": null, "update_date": null, "bcgs_number": "082M011112"}}, {"model": "wells.bcgs_numbers", "pk": 13316, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-16T22:56:31Z", "update_user": null, "update_date": null, "bcgs_number": "093F100432"}}, {"model": "wells.bcgs_numbers", "pk": 13317, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-17T22:03:04Z", "update_user": null, "update_date": null, "bcgs_number": "092J008321"}}, {"model": "wells.bcgs_numbers", "pk": 13318, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T16:37:21Z", "update_user": null, "update_date": null, "bcgs_number": "082L046134"}}, {"model": "wells.bcgs_numbers", "pk": 13319, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T18:28:01Z", "update_user": null, "update_date": null, "bcgs_number": "103J029413"}}, {"model": "wells.bcgs_numbers", "pk": 13320, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T18:30:04Z", "update_user": null, "update_date": null, "bcgs_number": "103P010433"}}, {"model": "wells.bcgs_numbers", "pk": 13321, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T18:36:19Z", "update_user": null, "update_date": null, "bcgs_number": "082N024442"}}, {"model": "wells.bcgs_numbers", "pk": 13322, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T18:45:30Z", "update_user": null, "update_date": null, "bcgs_number": "084M002312"}}, {"model": "wells.bcgs_numbers", "pk": 13323, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T19:21:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A012141"}}, {"model": "wells.bcgs_numbers", "pk": 13324, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T19:25:43Z", "update_user": null, "update_date": null, "bcgs_number": "084L036323"}}, {"model": "wells.bcgs_numbers", "pk": 13325, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-18T19:43:01Z", "update_user": null, "update_date": null, "bcgs_number": "092F078333"}}, {"model": "wells.bcgs_numbers", "pk": 13326, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T02:13:48Z", "update_user": null, "update_date": null, "bcgs_number": "093K005223"}}, {"model": "wells.bcgs_numbers", "pk": 13327, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T02:43:42Z", "update_user": null, "update_date": null, "bcgs_number": "092N070123"}}, {"model": "wells.bcgs_numbers", "pk": 13328, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T19:33:32Z", "update_user": null, "update_date": null, "bcgs_number": "093J005232"}}, {"model": "wells.bcgs_numbers", "pk": 13329, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T19:39:07Z", "update_user": null, "update_date": null, "bcgs_number": "093G096233"}}, {"model": "wells.bcgs_numbers", "pk": 13330, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T19:42:37Z", "update_user": null, "update_date": null, "bcgs_number": "093G078134"}}, {"model": "wells.bcgs_numbers", "pk": 13331, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T19:53:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G082122"}}, {"model": "wells.bcgs_numbers", "pk": 13332, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T20:10:23Z", "update_user": null, "update_date": null, "bcgs_number": "082E014112"}}, {"model": "wells.bcgs_numbers", "pk": 13333, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-19T23:37:40Z", "update_user": null, "update_date": null, "bcgs_number": "093B082424"}}, {"model": "wells.bcgs_numbers", "pk": 13334, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T00:32:13Z", "update_user": null, "update_date": null, "bcgs_number": "093E061112"}}, {"model": "wells.bcgs_numbers", "pk": 13335, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T17:19:31Z", "update_user": null, "update_date": null, "bcgs_number": "082D033124"}}, {"model": "wells.bcgs_numbers", "pk": 13336, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T17:26:53Z", "update_user": null, "update_date": null, "bcgs_number": "103K010132"}}, {"model": "wells.bcgs_numbers", "pk": 13337, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T19:33:16Z", "update_user": null, "update_date": null, "bcgs_number": "093G094423"}}, {"model": "wells.bcgs_numbers", "pk": 13338, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T19:50:29Z", "update_user": null, "update_date": null, "bcgs_number": "093G048111"}}, {"model": "wells.bcgs_numbers", "pk": 13339, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T21:16:27Z", "update_user": null, "update_date": null, "bcgs_number": "093B049113"}}, {"model": "wells.bcgs_numbers", "pk": 13340, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T21:17:45Z", "update_user": null, "update_date": null, "bcgs_number": "092J069444"}}, {"model": "wells.bcgs_numbers", "pk": 13341, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T21:23:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P045432"}}, {"model": "wells.bcgs_numbers", "pk": 13342, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T22:00:49Z", "update_user": null, "update_date": null, "bcgs_number": "093C020423"}}, {"model": "wells.bcgs_numbers", "pk": 13343, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-20T22:09:48Z", "update_user": null, "update_date": null, "bcgs_number": "092F023132"}}, {"model": "wells.bcgs_numbers", "pk": 13344, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-24T23:22:25Z", "update_user": null, "update_date": null, "bcgs_number": "082L036323"}}, {"model": "wells.bcgs_numbers", "pk": 13345, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-03-31T16:28:03Z", "update_user": null, "update_date": null, "bcgs_number": "093A052224"}}, {"model": "wells.bcgs_numbers", "pk": 13346, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-03T00:11:02Z", "update_user": null, "update_date": null, "bcgs_number": "092H011324"}}, {"model": "wells.bcgs_numbers", "pk": 13347, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-03T19:26:06Z", "update_user": null, "update_date": null, "bcgs_number": "083F030224"}}, {"model": "wells.bcgs_numbers", "pk": 13348, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-03T19:37:45Z", "update_user": null, "update_date": null, "bcgs_number": "082F024441"}}, {"model": "wells.bcgs_numbers", "pk": 13349, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-07T21:32:34Z", "update_user": null, "update_date": null, "bcgs_number": "092K054223"}}, {"model": "wells.bcgs_numbers", "pk": 13350, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-22T17:01:41Z", "update_user": null, "update_date": null, "bcgs_number": "082F054122"}}, {"model": "wells.bcgs_numbers", "pk": 13351, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-23T15:51:45Z", "update_user": null, "update_date": null, "bcgs_number": "094O049412"}}, {"model": "wells.bcgs_numbers", "pk": 13352, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-23T22:08:00Z", "update_user": null, "update_date": null, "bcgs_number": "092I064414"}}, {"model": "wells.bcgs_numbers", "pk": 13353, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-04-24T21:03:53Z", "update_user": null, "update_date": null, "bcgs_number": "082F076443"}}, {"model": "wells.bcgs_numbers", "pk": 13354, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-05-26T18:18:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L024124"}}, {"model": "wells.bcgs_numbers", "pk": 13355, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-05-27T19:02:50Z", "update_user": null, "update_date": null, "bcgs_number": "092J005321"}}, {"model": "wells.bcgs_numbers", "pk": 13356, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-06-18T16:05:32Z", "update_user": null, "update_date": null, "bcgs_number": "082G005314"}}, {"model": "wells.bcgs_numbers", "pk": 13357, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-09-04T17:34:14Z", "update_user": null, "update_date": null, "bcgs_number": "092B022222"}}, {"model": "wells.bcgs_numbers", "pk": 13358, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-09-04T17:38:38Z", "update_user": null, "update_date": null, "bcgs_number": "092B024300"}}, {"model": "wells.bcgs_numbers", "pk": 13359, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-09-04T18:06:55Z", "update_user": null, "update_date": null, "bcgs_number": "092B025211"}}, {"model": "wells.bcgs_numbers", "pk": 13360, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-09-04T18:08:57Z", "update_user": null, "update_date": null, "bcgs_number": "091O028222"}}, {"model": "wells.bcgs_numbers", "pk": 13361, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-09-04T18:13:23Z", "update_user": null, "update_date": null, "bcgs_number": "092B039444"}}, {"model": "wells.bcgs_numbers", "pk": 13362, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-10-07T17:21:43Z", "update_user": null, "update_date": null, "bcgs_number": "092G035231"}}, {"model": "wells.bcgs_numbers", "pk": 13363, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-10-22T19:13:46Z", "update_user": null, "update_date": null, "bcgs_number": "082L081323"}}, {"model": "wells.bcgs_numbers", "pk": 13364, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-11-27T23:36:11Z", "update_user": null, "update_date": null, "bcgs_number": "092E030234"}}, {"model": "wells.bcgs_numbers", "pk": 13365, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-12-02T17:55:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H011242"}}, {"model": "wells.bcgs_numbers", "pk": 13366, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-12-05T20:27:14Z", "update_user": null, "update_date": null, "bcgs_number": "083E002422"}}, {"model": "wells.bcgs_numbers", "pk": 13367, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-12-05T20:27:14Z", "update_user": null, "update_date": null, "bcgs_number": "092P040312"}}, {"model": "wells.bcgs_numbers", "pk": 13368, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-04T03:05:34Z", "update_user": null, "update_date": null, "bcgs_number": "093H011213"}}, {"model": "wells.bcgs_numbers", "pk": 13369, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-04T03:48:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P034413"}}, {"model": "wells.bcgs_numbers", "pk": 13370, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-04T03:54:12Z", "update_user": null, "update_date": null, "bcgs_number": "092P067331"}}, {"model": "wells.bcgs_numbers", "pk": 13371, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-04T20:51:48Z", "update_user": null, "update_date": null, "bcgs_number": "092P087232"}}, {"model": "wells.bcgs_numbers", "pk": 13372, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-04T20:53:48Z", "update_user": null, "update_date": null, "bcgs_number": "092P074424"}}, {"model": "wells.bcgs_numbers", "pk": 13373, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-04T21:10:02Z", "update_user": null, "update_date": null, "bcgs_number": "092P043234"}}, {"model": "wells.bcgs_numbers", "pk": 13374, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-05T02:52:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G003423"}}, {"model": "wells.bcgs_numbers", "pk": 13375, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-05T02:52:46Z", "update_user": null, "update_date": null, "bcgs_number": "092P064441"}}, {"model": "wells.bcgs_numbers", "pk": 13376, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-07T02:47:25Z", "update_user": null, "update_date": null, "bcgs_number": "094A065423"}}, {"model": "wells.bcgs_numbers", "pk": 13377, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-16T00:43:12Z", "update_user": null, "update_date": null, "bcgs_number": "092I005221"}}, {"model": "wells.bcgs_numbers", "pk": 13378, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-18T01:45:04Z", "update_user": null, "update_date": null, "bcgs_number": "092P085343"}}, {"model": "wells.bcgs_numbers", "pk": 13379, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T02:24:35Z", "update_user": null, "update_date": null, "bcgs_number": "103I048312"}}, {"model": "wells.bcgs_numbers", "pk": 13380, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T02:53:42Z", "update_user": null, "update_date": null, "bcgs_number": "092P055234"}}, {"model": "wells.bcgs_numbers", "pk": 13381, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T02:56:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P088314"}}, {"model": "wells.bcgs_numbers", "pk": 13382, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T03:10:43Z", "update_user": null, "update_date": null, "bcgs_number": "092P096121"}}, {"model": "wells.bcgs_numbers", "pk": 13383, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T03:16:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I015131"}}, {"model": "wells.bcgs_numbers", "pk": 13384, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T03:19:17Z", "update_user": null, "update_date": null, "bcgs_number": "082G003324"}}, {"model": "wells.bcgs_numbers", "pk": 13385, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T03:20:05Z", "update_user": null, "update_date": null, "bcgs_number": "092I081111"}}, {"model": "wells.bcgs_numbers", "pk": 13386, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T04:32:26Z", "update_user": null, "update_date": null, "bcgs_number": "094B008122"}}, {"model": "wells.bcgs_numbers", "pk": 13387, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T04:39:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A098311"}}, {"model": "wells.bcgs_numbers", "pk": 13388, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-19T04:44:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A055422"}}, {"model": "wells.bcgs_numbers", "pk": 13389, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T00:57:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A018144"}}, {"model": "wells.bcgs_numbers", "pk": 13390, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T01:13:24Z", "update_user": null, "update_date": null, "bcgs_number": "094A036323"}}, {"model": "wells.bcgs_numbers", "pk": 13391, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T01:23:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A015234"}}, {"model": "wells.bcgs_numbers", "pk": 13392, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T01:45:47Z", "update_user": null, "update_date": null, "bcgs_number": "103G099234"}}, {"model": "wells.bcgs_numbers", "pk": 13393, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T01:54:25Z", "update_user": null, "update_date": null, "bcgs_number": "103G099243"}}, {"model": "wells.bcgs_numbers", "pk": 13394, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T01:56:27Z", "update_user": null, "update_date": null, "bcgs_number": "103I018314"}}, {"model": "wells.bcgs_numbers", "pk": 13395, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T01:57:50Z", "update_user": null, "update_date": null, "bcgs_number": "103I048321"}}, {"model": "wells.bcgs_numbers", "pk": 13396, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:02:18Z", "update_user": null, "update_date": null, "bcgs_number": "104G049242"}}, {"model": "wells.bcgs_numbers", "pk": 13397, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:03:08Z", "update_user": null, "update_date": null, "bcgs_number": "094P021444"}}, {"model": "wells.bcgs_numbers", "pk": 13398, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:03:36Z", "update_user": null, "update_date": null, "bcgs_number": "094P021442"}}, {"model": "wells.bcgs_numbers", "pk": 13399, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:03:55Z", "update_user": null, "update_date": null, "bcgs_number": "094P022333"}}, {"model": "wells.bcgs_numbers", "pk": 13400, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:06:10Z", "update_user": null, "update_date": null, "bcgs_number": "103P009142"}}, {"model": "wells.bcgs_numbers", "pk": 13401, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:06:22Z", "update_user": null, "update_date": null, "bcgs_number": "103J002313"}}, {"model": "wells.bcgs_numbers", "pk": 13402, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-20T02:07:11Z", "update_user": null, "update_date": null, "bcgs_number": "104B040444"}}, {"model": "wells.bcgs_numbers", "pk": 13403, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-25T16:37:57Z", "update_user": null, "update_date": null, "bcgs_number": "093H072122"}}, {"model": "wells.bcgs_numbers", "pk": 13404, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-25T16:43:13Z", "update_user": null, "update_date": null, "bcgs_number": "092H021124"}}, {"model": "wells.bcgs_numbers", "pk": 13405, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:03:11Z", "update_user": null, "update_date": null, "bcgs_number": "092G073213"}}, {"model": "wells.bcgs_numbers", "pk": 13406, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:03:54Z", "update_user": null, "update_date": null, "bcgs_number": "092H061221"}}, {"model": "wells.bcgs_numbers", "pk": 13407, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:05:09Z", "update_user": null, "update_date": null, "bcgs_number": "092I041142"}}, {"model": "wells.bcgs_numbers", "pk": 13408, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:05:35Z", "update_user": null, "update_date": null, "bcgs_number": "092H052143"}}, {"model": "wells.bcgs_numbers", "pk": 13409, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:06:01Z", "update_user": null, "update_date": null, "bcgs_number": "094C018122"}}, {"model": "wells.bcgs_numbers", "pk": 13410, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:08:07Z", "update_user": null, "update_date": null, "bcgs_number": "093H067122"}}, {"model": "wells.bcgs_numbers", "pk": 13411, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:09:10Z", "update_user": null, "update_date": null, "bcgs_number": "093G047132"}}, {"model": "wells.bcgs_numbers", "pk": 13412, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-01-27T02:19:46Z", "update_user": null, "update_date": null, "bcgs_number": "093H072241"}}, {"model": "wells.bcgs_numbers", "pk": 13413, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-01T22:33:20Z", "update_user": null, "update_date": null, "bcgs_number": "092H048231"}}, {"model": "wells.bcgs_numbers", "pk": 13414, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-03T22:57:25Z", "update_user": null, "update_date": null, "bcgs_number": "084L025342"}}, {"model": "wells.bcgs_numbers", "pk": 13415, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-08T01:21:47Z", "update_user": null, "update_date": null, "bcgs_number": "092G024242"}}, {"model": "wells.bcgs_numbers", "pk": 13416, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-08T01:29:10Z", "update_user": null, "update_date": null, "bcgs_number": "103H060222"}}, {"model": "wells.bcgs_numbers", "pk": 13417, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-08T02:08:44Z", "update_user": null, "update_date": null, "bcgs_number": "092H028313"}}, {"model": "wells.bcgs_numbers", "pk": 13418, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-09T22:35:20Z", "update_user": null, "update_date": null, "bcgs_number": "092F015311"}}, {"model": "wells.bcgs_numbers", "pk": 13419, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-09T22:41:49Z", "update_user": null, "update_date": null, "bcgs_number": "092H005414"}}, {"model": "wells.bcgs_numbers", "pk": 13420, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-10T21:06:06Z", "update_user": null, "update_date": null, "bcgs_number": "094A081144"}}, {"model": "wells.bcgs_numbers", "pk": 13421, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-17T02:31:05Z", "update_user": null, "update_date": null, "bcgs_number": "092G026232"}}, {"model": "wells.bcgs_numbers", "pk": 13422, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-17T02:34:50Z", "update_user": null, "update_date": null, "bcgs_number": "082G096124"}}, {"model": "wells.bcgs_numbers", "pk": 13423, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-20T23:42:07Z", "update_user": null, "update_date": null, "bcgs_number": "092L055343"}}, {"model": "wells.bcgs_numbers", "pk": 13424, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-20T23:56:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A074141"}}, {"model": "wells.bcgs_numbers", "pk": 13425, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-23T03:11:15Z", "update_user": null, "update_date": null, "bcgs_number": "092G037232"}}, {"model": "wells.bcgs_numbers", "pk": 13426, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-23T03:34:07Z", "update_user": null, "update_date": null, "bcgs_number": "092J028233"}}, {"model": "wells.bcgs_numbers", "pk": 13427, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-23T03:37:32Z", "update_user": null, "update_date": null, "bcgs_number": "092G037211"}}, {"model": "wells.bcgs_numbers", "pk": 13428, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-23T03:40:04Z", "update_user": null, "update_date": null, "bcgs_number": "092G010122"}}, {"model": "wells.bcgs_numbers", "pk": 13429, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-24T01:24:54Z", "update_user": null, "update_date": null, "bcgs_number": "114P049312"}}, {"model": "wells.bcgs_numbers", "pk": 13430, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-24T01:45:27Z", "update_user": null, "update_date": null, "bcgs_number": "103I068112"}}, {"model": "wells.bcgs_numbers", "pk": 13431, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-02-24T01:51:07Z", "update_user": null, "update_date": null, "bcgs_number": "092H022243"}}, {"model": "wells.bcgs_numbers", "pk": 13432, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-02T02:04:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A097213"}}, {"model": "wells.bcgs_numbers", "pk": 13433, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-02T03:15:37Z", "update_user": null, "update_date": null, "bcgs_number": "093A022233"}}, {"model": "wells.bcgs_numbers", "pk": 13434, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-02T04:03:04Z", "update_user": null, "update_date": null, "bcgs_number": "092I032412"}}, {"model": "wells.bcgs_numbers", "pk": 13435, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-03T03:22:12Z", "update_user": null, "update_date": null, "bcgs_number": "094H091444"}}, {"model": "wells.bcgs_numbers", "pk": 13436, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:07:22Z", "update_user": null, "update_date": null, "bcgs_number": "094A074121"}}, {"model": "wells.bcgs_numbers", "pk": 13437, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:07:51Z", "update_user": null, "update_date": null, "bcgs_number": "094A021122"}}, {"model": "wells.bcgs_numbers", "pk": 13438, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:30:24Z", "update_user": null, "update_date": null, "bcgs_number": "094A008312"}}, {"model": "wells.bcgs_numbers", "pk": 13439, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:33:25Z", "update_user": null, "update_date": null, "bcgs_number": "094G010431"}}, {"model": "wells.bcgs_numbers", "pk": 13440, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:36:14Z", "update_user": null, "update_date": null, "bcgs_number": "094A074123"}}, {"model": "wells.bcgs_numbers", "pk": 13441, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:36:44Z", "update_user": null, "update_date": null, "bcgs_number": "093P082223"}}, {"model": "wells.bcgs_numbers", "pk": 13442, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:40:18Z", "update_user": null, "update_date": null, "bcgs_number": "094B010332"}}, {"model": "wells.bcgs_numbers", "pk": 13443, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:41:22Z", "update_user": null, "update_date": null, "bcgs_number": "094H024122"}}, {"model": "wells.bcgs_numbers", "pk": 13444, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:44:47Z", "update_user": null, "update_date": null, "bcgs_number": "094H013224"}}, {"model": "wells.bcgs_numbers", "pk": 13445, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:50:00Z", "update_user": null, "update_date": null, "bcgs_number": "094A072233"}}, {"model": "wells.bcgs_numbers", "pk": 13446, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:50:53Z", "update_user": null, "update_date": null, "bcgs_number": "094A071232"}}, {"model": "wells.bcgs_numbers", "pk": 13447, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T21:52:47Z", "update_user": null, "update_date": null, "bcgs_number": "094A062433"}}, {"model": "wells.bcgs_numbers", "pk": 13448, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T23:00:19Z", "update_user": null, "update_date": null, "bcgs_number": "082L014424"}}, {"model": "wells.bcgs_numbers", "pk": 13449, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T23:02:39Z", "update_user": null, "update_date": null, "bcgs_number": "094A036332"}}, {"model": "wells.bcgs_numbers", "pk": 13450, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T23:08:04Z", "update_user": null, "update_date": null, "bcgs_number": "082F025213"}}, {"model": "wells.bcgs_numbers", "pk": 13451, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T23:09:13Z", "update_user": null, "update_date": null, "bcgs_number": "082L062211"}}, {"model": "wells.bcgs_numbers", "pk": 13452, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-09T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "082F068221"}}, {"model": "wells.bcgs_numbers", "pk": 13453, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-10T00:52:42Z", "update_user": null, "update_date": null, "bcgs_number": "093P077422"}}, {"model": "wells.bcgs_numbers", "pk": 13454, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-10T01:09:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G041231"}}, {"model": "wells.bcgs_numbers", "pk": 13455, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-10T01:26:59Z", "update_user": null, "update_date": null, "bcgs_number": "094A011433"}}, {"model": "wells.bcgs_numbers", "pk": 13456, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-10T21:52:25Z", "update_user": null, "update_date": null, "bcgs_number": "103I038343"}}, {"model": "wells.bcgs_numbers", "pk": 13457, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-11T01:20:55Z", "update_user": null, "update_date": null, "bcgs_number": "104A004412"}}, {"model": "wells.bcgs_numbers", "pk": 13458, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T19:02:01Z", "update_user": null, "update_date": null, "bcgs_number": "093P097321"}}, {"model": "wells.bcgs_numbers", "pk": 13459, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T19:03:54Z", "update_user": null, "update_date": null, "bcgs_number": "093H057242"}}, {"model": "wells.bcgs_numbers", "pk": 13460, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T19:19:52Z", "update_user": null, "update_date": null, "bcgs_number": "094G010222"}}, {"model": "wells.bcgs_numbers", "pk": 13461, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T20:06:34Z", "update_user": null, "update_date": null, "bcgs_number": "094J086312"}}, {"model": "wells.bcgs_numbers", "pk": 13462, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T20:08:25Z", "update_user": null, "update_date": null, "bcgs_number": "094J077331"}}, {"model": "wells.bcgs_numbers", "pk": 13463, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T20:54:47Z", "update_user": null, "update_date": null, "bcgs_number": "092H011333"}}, {"model": "wells.bcgs_numbers", "pk": 13464, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-17T21:01:18Z", "update_user": null, "update_date": null, "bcgs_number": "092F008423"}}, {"model": "wells.bcgs_numbers", "pk": 13465, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-26T18:44:49Z", "update_user": null, "update_date": null, "bcgs_number": "082N050143"}}, {"model": "wells.bcgs_numbers", "pk": 13466, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-26T20:46:28Z", "update_user": null, "update_date": null, "bcgs_number": "082L074243"}}, {"model": "wells.bcgs_numbers", "pk": 13467, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T16:03:47Z", "update_user": null, "update_date": null, "bcgs_number": "092K046122"}}, {"model": "wells.bcgs_numbers", "pk": 13468, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T16:23:30Z", "update_user": null, "update_date": null, "bcgs_number": "092I055442"}}, {"model": "wells.bcgs_numbers", "pk": 13469, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T21:02:04Z", "update_user": null, "update_date": null, "bcgs_number": "092F049443"}}, {"model": "wells.bcgs_numbers", "pk": 13470, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T21:11:29Z", "update_user": null, "update_date": null, "bcgs_number": "092H024224"}}, {"model": "wells.bcgs_numbers", "pk": 13471, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-14T17:55:48Z", "update_user": null, "update_date": null, "bcgs_number": "092K009444"}}, {"model": "wells.bcgs_numbers", "pk": 13472, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-14T18:16:25Z", "update_user": null, "update_date": null, "bcgs_number": "093O039321"}}, {"model": "wells.bcgs_numbers", "pk": 13473, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-22T18:47:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G044141"}}, {"model": "wells.bcgs_numbers", "pk": 13474, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-25T17:15:27Z", "update_user": null, "update_date": null, "bcgs_number": "092F068441"}}, {"model": "wells.bcgs_numbers", "pk": 13475, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-25T17:20:47Z", "update_user": null, "update_date": null, "bcgs_number": "092F087400"}}, {"model": "wells.bcgs_numbers", "pk": 13476, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-25T17:36:40Z", "update_user": null, "update_date": null, "bcgs_number": "092F078311"}}, {"model": "wells.bcgs_numbers", "pk": 13477, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-25T17:36:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F068313"}}, {"model": "wells.bcgs_numbers", "pk": 13478, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-27T19:01:50Z", "update_user": null, "update_date": null, "bcgs_number": "094K027334"}}, {"model": "wells.bcgs_numbers", "pk": 13479, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-27T19:36:24Z", "update_user": null, "update_date": null, "bcgs_number": "082L075441"}}, {"model": "wells.bcgs_numbers", "pk": 13480, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-27T19:40:27Z", "update_user": null, "update_date": null, "bcgs_number": "092O095232"}}, {"model": "wells.bcgs_numbers", "pk": 13481, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-27T19:42:38Z", "update_user": null, "update_date": null, "bcgs_number": "092E090212"}}, {"model": "wells.bcgs_numbers", "pk": 13482, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-27T23:29:11Z", "update_user": null, "update_date": null, "bcgs_number": "092K021422"}}, {"model": "wells.bcgs_numbers", "pk": 13483, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-28T15:42:42Z", "update_user": null, "update_date": null, "bcgs_number": "092E078444"}}, {"model": "wells.bcgs_numbers", "pk": 13484, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-28T15:51:26Z", "update_user": null, "update_date": null, "bcgs_number": "092F056344"}}, {"model": "wells.bcgs_numbers", "pk": 13485, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-28T16:37:44Z", "update_user": null, "update_date": null, "bcgs_number": "082F049121"}}, {"model": "wells.bcgs_numbers", "pk": 13486, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-28T16:40:36Z", "update_user": null, "update_date": null, "bcgs_number": "082K059442"}}, {"model": "wells.bcgs_numbers", "pk": 13487, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-01T22:57:59Z", "update_user": null, "update_date": null, "bcgs_number": "092F029243"}}, {"model": "wells.bcgs_numbers", "pk": 13488, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-01T22:58:51Z", "update_user": null, "update_date": null, "bcgs_number": "092G051221"}}, {"model": "wells.bcgs_numbers", "pk": 13489, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-01T23:00:48Z", "update_user": null, "update_date": null, "bcgs_number": "092F037441"}}, {"model": "wells.bcgs_numbers", "pk": 13490, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-01T23:18:17Z", "update_user": null, "update_date": null, "bcgs_number": "092F095141"}}, {"model": "wells.bcgs_numbers", "pk": 13491, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-01T23:19:50Z", "update_user": null, "update_date": null, "bcgs_number": "082F080221"}}, {"model": "wells.bcgs_numbers", "pk": 13492, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-01T23:20:10Z", "update_user": null, "update_date": null, "bcgs_number": "082G021234"}}, {"model": "wells.bcgs_numbers", "pk": 13493, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-03T17:17:38Z", "update_user": null, "update_date": null, "bcgs_number": "112B025241"}}, {"model": "wells.bcgs_numbers", "pk": 13494, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-03T17:18:22Z", "update_user": null, "update_date": null, "bcgs_number": "082L035332"}}, {"model": "wells.bcgs_numbers", "pk": 13495, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-03T17:21:47Z", "update_user": null, "update_date": null, "bcgs_number": "093C029222"}}, {"model": "wells.bcgs_numbers", "pk": 13496, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-03T19:29:53Z", "update_user": null, "update_date": null, "bcgs_number": "092O099311"}}, {"model": "wells.bcgs_numbers", "pk": 13497, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-11T16:22:27Z", "update_user": null, "update_date": null, "bcgs_number": "092P088312"}}, {"model": "wells.bcgs_numbers", "pk": 13498, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-06-30T16:06:37Z", "update_user": null, "update_date": null, "bcgs_number": "094A056112"}}, {"model": "wells.bcgs_numbers", "pk": 13499, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-07-03T18:46:17Z", "update_user": null, "update_date": null, "bcgs_number": "103P091311"}}, {"model": "wells.bcgs_numbers", "pk": 13500, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-07-06T16:45:26Z", "update_user": null, "update_date": null, "bcgs_number": "082F043112"}}, {"model": "wells.bcgs_numbers", "pk": 13501, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-07-10T23:09:28Z", "update_user": null, "update_date": null, "bcgs_number": "093B077232"}}, {"model": "wells.bcgs_numbers", "pk": 13502, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-07-17T21:22:09Z", "update_user": null, "update_date": null, "bcgs_number": "092K035341"}}, {"model": "wells.bcgs_numbers", "pk": 13503, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-07-17T21:25:56Z", "update_user": null, "update_date": null, "bcgs_number": "092K045121"}}, {"model": "wells.bcgs_numbers", "pk": 13504, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-08-06T19:30:34Z", "update_user": null, "update_date": null, "bcgs_number": "092L053133"}}, {"model": "wells.bcgs_numbers", "pk": 13505, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-08-06T20:25:00Z", "update_user": null, "update_date": null, "bcgs_number": "092F093421"}}, {"model": "wells.bcgs_numbers", "pk": 13506, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-08-11T23:08:09Z", "update_user": null, "update_date": null, "bcgs_number": "082F054112"}}, {"model": "wells.bcgs_numbers", "pk": 13507, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-08-11T23:10:28Z", "update_user": null, "update_date": null, "bcgs_number": "092G044333"}}, {"model": "wells.bcgs_numbers", "pk": 13508, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-03T04:20:00Z", "update_user": null, "update_date": null, "bcgs_number": "094A018143"}}, {"model": "wells.bcgs_numbers", "pk": 13509, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-08T20:32:15Z", "update_user": null, "update_date": null, "bcgs_number": "092I080332"}}, {"model": "wells.bcgs_numbers", "pk": 13510, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-14T14:43:57Z", "update_user": null, "update_date": null, "bcgs_number": "092P015132"}}, {"model": "wells.bcgs_numbers", "pk": 13511, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-16T18:21:05Z", "update_user": null, "update_date": null, "bcgs_number": "092I015113"}}, {"model": "wells.bcgs_numbers", "pk": 13512, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-16T19:18:22Z", "update_user": null, "update_date": null, "bcgs_number": "092I090341"}}, {"model": "wells.bcgs_numbers", "pk": 13513, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-23T20:13:19Z", "update_user": null, "update_date": null, "bcgs_number": "092J054111"}}, {"model": "wells.bcgs_numbers", "pk": 13514, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-09-30T19:00:43Z", "update_user": null, "update_date": null, "bcgs_number": "092P046121"}}, {"model": "wells.bcgs_numbers", "pk": 13515, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-11-03T23:12:26Z", "update_user": null, "update_date": null, "bcgs_number": "082G035113"}}, {"model": "wells.bcgs_numbers", "pk": 13516, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-11-16T17:27:08Z", "update_user": null, "update_date": null, "bcgs_number": "092B043221"}}, {"model": "wells.bcgs_numbers", "pk": 13517, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-11-16T19:02:23Z", "update_user": null, "update_date": null, "bcgs_number": "092G039421"}}, {"model": "wells.bcgs_numbers", "pk": 13518, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-11-16T19:19:21Z", "update_user": null, "update_date": null, "bcgs_number": "094P021333"}}, {"model": "wells.bcgs_numbers", "pk": 13519, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-11-16T19:24:16Z", "update_user": null, "update_date": null, "bcgs_number": "093J008313"}}, {"model": "wells.bcgs_numbers", "pk": 13520, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-11T23:53:48Z", "update_user": null, "update_date": null, "bcgs_number": "092P002441"}}, {"model": "wells.bcgs_numbers", "pk": 13521, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-22T20:07:18Z", "update_user": null, "update_date": null, "bcgs_number": "082L065324"}}, {"model": "wells.bcgs_numbers", "pk": 13522, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-23T21:03:33Z", "update_user": null, "update_date": null, "bcgs_number": "094A064322"}}, {"model": "wells.bcgs_numbers", "pk": 13523, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-08T20:41:45Z", "update_user": null, "update_date": null, "bcgs_number": "092F008142"}}, {"model": "wells.bcgs_numbers", "pk": 13524, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-08T22:09:53Z", "update_user": null, "update_date": null, "bcgs_number": "082C074431"}}, {"model": "wells.bcgs_numbers", "pk": 13525, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-11T23:37:52Z", "update_user": null, "update_date": null, "bcgs_number": "082L086212"}}, {"model": "wells.bcgs_numbers", "pk": 13526, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-11T23:57:21Z", "update_user": null, "update_date": null, "bcgs_number": "093A022434"}}, {"model": "wells.bcgs_numbers", "pk": 13527, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-20T19:38:50Z", "update_user": null, "update_date": null, "bcgs_number": "092H097244"}}, {"model": "wells.bcgs_numbers", "pk": 13528, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-22T22:46:20Z", "update_user": null, "update_date": null, "bcgs_number": "093C035334"}}, {"model": "wells.bcgs_numbers", "pk": 13529, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T16:43:26Z", "update_user": null, "update_date": null, "bcgs_number": "094H001232"}}, {"model": "wells.bcgs_numbers", "pk": 13530, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T16:54:00Z", "update_user": null, "update_date": null, "bcgs_number": "094G008332"}}, {"model": "wells.bcgs_numbers", "pk": 13531, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T16:58:30Z", "update_user": null, "update_date": null, "bcgs_number": "094B099413"}}, {"model": "wells.bcgs_numbers", "pk": 13532, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T21:27:00Z", "update_user": null, "update_date": null, "bcgs_number": "093L080113"}}, {"model": "wells.bcgs_numbers", "pk": 13533, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T21:51:34Z", "update_user": null, "update_date": null, "bcgs_number": "094G040421"}}, {"model": "wells.bcgs_numbers", "pk": 13534, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T22:33:07Z", "update_user": null, "update_date": null, "bcgs_number": "094H001241"}}, {"model": "wells.bcgs_numbers", "pk": 13535, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T23:24:24Z", "update_user": null, "update_date": null, "bcgs_number": "093O100242"}}, {"model": "wells.bcgs_numbers", "pk": 13536, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-28T23:44:15Z", "update_user": null, "update_date": null, "bcgs_number": "093O060422"}}, {"model": "wells.bcgs_numbers", "pk": 13537, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T00:36:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A094211"}}, {"model": "wells.bcgs_numbers", "pk": 13538, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T00:45:03Z", "update_user": null, "update_date": null, "bcgs_number": "094B040221"}}, {"model": "wells.bcgs_numbers", "pk": 13539, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T00:49:36Z", "update_user": null, "update_date": null, "bcgs_number": "093O072134"}}, {"model": "wells.bcgs_numbers", "pk": 13540, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T01:27:28Z", "update_user": null, "update_date": null, "bcgs_number": "092I063234"}}, {"model": "wells.bcgs_numbers", "pk": 13541, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T17:28:42Z", "update_user": null, "update_date": null, "bcgs_number": "093C014421"}}, {"model": "wells.bcgs_numbers", "pk": 13542, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T19:08:05Z", "update_user": null, "update_date": null, "bcgs_number": "092I059313"}}, {"model": "wells.bcgs_numbers", "pk": 13543, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-29T21:50:54Z", "update_user": null, "update_date": null, "bcgs_number": "103P034412"}}, {"model": "wells.bcgs_numbers", "pk": 13544, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-01T23:07:30Z", "update_user": null, "update_date": null, "bcgs_number": "092I070211"}}, {"model": "wells.bcgs_numbers", "pk": 13545, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T00:27:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P056441"}}, {"model": "wells.bcgs_numbers", "pk": 13546, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T00:35:36Z", "update_user": null, "update_date": null, "bcgs_number": "093C035333"}}, {"model": "wells.bcgs_numbers", "pk": 13547, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T00:40:56Z", "update_user": null, "update_date": null, "bcgs_number": "093C014434"}}, {"model": "wells.bcgs_numbers", "pk": 13548, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T00:58:59Z", "update_user": null, "update_date": null, "bcgs_number": "093C060341"}}, {"model": "wells.bcgs_numbers", "pk": 13549, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T01:04:14Z", "update_user": null, "update_date": null, "bcgs_number": "093C025412"}}, {"model": "wells.bcgs_numbers", "pk": 13550, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T01:06:23Z", "update_user": null, "update_date": null, "bcgs_number": "092I059312"}}, {"model": "wells.bcgs_numbers", "pk": 13551, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T18:28:16Z", "update_user": null, "update_date": null, "bcgs_number": "082L062344"}}, {"model": "wells.bcgs_numbers", "pk": 13552, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T21:47:56Z", "update_user": null, "update_date": null, "bcgs_number": "093A013212"}}, {"model": "wells.bcgs_numbers", "pk": 13553, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T21:51:37Z", "update_user": null, "update_date": null, "bcgs_number": "093A034332"}}, {"model": "wells.bcgs_numbers", "pk": 13554, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T21:55:07Z", "update_user": null, "update_date": null, "bcgs_number": "093A034444"}}, {"model": "wells.bcgs_numbers", "pk": 13555, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T22:00:25Z", "update_user": null, "update_date": null, "bcgs_number": "093C050221"}}, {"model": "wells.bcgs_numbers", "pk": 13556, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T23:10:14Z", "update_user": null, "update_date": null, "bcgs_number": "093B030341"}}, {"model": "wells.bcgs_numbers", "pk": 13557, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T23:11:07Z", "update_user": null, "update_date": null, "bcgs_number": "093A034413"}}, {"model": "wells.bcgs_numbers", "pk": 13558, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T23:12:51Z", "update_user": null, "update_date": null, "bcgs_number": "093A051224"}}, {"model": "wells.bcgs_numbers", "pk": 13559, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T23:24:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A061242"}}, {"model": "wells.bcgs_numbers", "pk": 13560, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-02T23:29:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A072322"}}, {"model": "wells.bcgs_numbers", "pk": 13561, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T23:12:45Z", "update_user": null, "update_date": null, "bcgs_number": "082E037213"}}, {"model": "wells.bcgs_numbers", "pk": 13562, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T21:32:28Z", "update_user": null, "update_date": null, "bcgs_number": "092I070124"}}, {"model": "wells.bcgs_numbers", "pk": 13563, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T21:41:33Z", "update_user": null, "update_date": null, "bcgs_number": "082L094332"}}, {"model": "wells.bcgs_numbers", "pk": 13564, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-16T16:08:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I075422"}}, {"model": "wells.bcgs_numbers", "pk": 13565, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-18T22:01:11Z", "update_user": null, "update_date": null, "bcgs_number": "082L081432"}}, {"model": "wells.bcgs_numbers", "pk": 13566, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T17:17:50Z", "update_user": null, "update_date": null, "bcgs_number": "092I009222"}}, {"model": "wells.bcgs_numbers", "pk": 13567, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T17:41:00Z", "update_user": null, "update_date": null, "bcgs_number": "092H077211"}}, {"model": "wells.bcgs_numbers", "pk": 13568, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T18:02:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L073332"}}, {"model": "wells.bcgs_numbers", "pk": 13569, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T18:07:36Z", "update_user": null, "update_date": null, "bcgs_number": "092P030131"}}, {"model": "wells.bcgs_numbers", "pk": 13570, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T18:34:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L084421"}}, {"model": "wells.bcgs_numbers", "pk": 13571, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T18:38:13Z", "update_user": null, "update_date": null, "bcgs_number": "092I069223"}}, {"model": "wells.bcgs_numbers", "pk": 13572, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T21:49:34Z", "update_user": null, "update_date": null, "bcgs_number": "082L043321"}}, {"model": "wells.bcgs_numbers", "pk": 13573, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-22T23:34:11Z", "update_user": null, "update_date": null, "bcgs_number": "092P036443"}}, {"model": "wells.bcgs_numbers", "pk": 13574, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-23T16:50:41Z", "update_user": null, "update_date": null, "bcgs_number": "092P025322"}}, {"model": "wells.bcgs_numbers", "pk": 13575, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-23T18:53:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P031322"}}, {"model": "wells.bcgs_numbers", "pk": 13576, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-23T19:05:48Z", "update_user": null, "update_date": null, "bcgs_number": "092P013144"}}, {"model": "wells.bcgs_numbers", "pk": 13577, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-30T18:19:35Z", "update_user": null, "update_date": null, "bcgs_number": "093F090441"}}, {"model": "wells.bcgs_numbers", "pk": 13578, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-30T21:49:54Z", "update_user": null, "update_date": null, "bcgs_number": "092H086131"}}, {"model": "wells.bcgs_numbers", "pk": 13579, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-30T22:31:57Z", "update_user": null, "update_date": null, "bcgs_number": "093G078332"}}, {"model": "wells.bcgs_numbers", "pk": 13580, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-30T22:34:43Z", "update_user": null, "update_date": null, "bcgs_number": "093J001222"}}, {"model": "wells.bcgs_numbers", "pk": 13581, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-30T23:13:13Z", "update_user": null, "update_date": null, "bcgs_number": "093H096234"}}, {"model": "wells.bcgs_numbers", "pk": 13582, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-30T23:14:26Z", "update_user": null, "update_date": null, "bcgs_number": "093B088412"}}, {"model": "wells.bcgs_numbers", "pk": 13583, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T21:55:08Z", "update_user": null, "update_date": null, "bcgs_number": "093K029224"}}, {"model": "wells.bcgs_numbers", "pk": 13584, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T21:55:52Z", "update_user": null, "update_date": null, "bcgs_number": "093F016433"}}, {"model": "wells.bcgs_numbers", "pk": 13585, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T22:29:48Z", "update_user": null, "update_date": null, "bcgs_number": "103J010312"}}, {"model": "wells.bcgs_numbers", "pk": 13586, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T22:56:48Z", "update_user": null, "update_date": null, "bcgs_number": "082F088241"}}, {"model": "wells.bcgs_numbers", "pk": 13587, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T22:58:26Z", "update_user": null, "update_date": null, "bcgs_number": "082F038243"}}, {"model": "wells.bcgs_numbers", "pk": 13588, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T22:58:55Z", "update_user": null, "update_date": null, "bcgs_number": "082F028213"}}, {"model": "wells.bcgs_numbers", "pk": 13589, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-31T23:01:25Z", "update_user": null, "update_date": null, "bcgs_number": "082F088342"}}, {"model": "wells.bcgs_numbers", "pk": 13590, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-06T16:04:58Z", "update_user": null, "update_date": null, "bcgs_number": "092L095222"}}, {"model": "wells.bcgs_numbers", "pk": 13591, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-06T16:17:24Z", "update_user": null, "update_date": null, "bcgs_number": "094C015143"}}, {"model": "wells.bcgs_numbers", "pk": 13592, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-08T18:37:42Z", "update_user": null, "update_date": null, "bcgs_number": "092G016141"}}, {"model": "wells.bcgs_numbers", "pk": 13593, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-11T17:17:50Z", "update_user": null, "update_date": null, "bcgs_number": "082L095133"}}, {"model": "wells.bcgs_numbers", "pk": 13594, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-11T19:19:29Z", "update_user": null, "update_date": null, "bcgs_number": "092G019123"}}, {"model": "wells.bcgs_numbers", "pk": 13595, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-11T21:39:09Z", "update_user": null, "update_date": null, "bcgs_number": "092H037134"}}, {"model": "wells.bcgs_numbers", "pk": 13596, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-11T22:22:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G006432"}}, {"model": "wells.bcgs_numbers", "pk": 13597, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-12T17:08:06Z", "update_user": null, "update_date": null, "bcgs_number": "092A081213"}}, {"model": "wells.bcgs_numbers", "pk": 13598, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-12T17:20:45Z", "update_user": null, "update_date": null, "bcgs_number": "092H021111"}}, {"model": "wells.bcgs_numbers", "pk": 13599, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-12T18:55:18Z", "update_user": null, "update_date": null, "bcgs_number": "093O012323"}}, {"model": "wells.bcgs_numbers", "pk": 13600, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-12T19:32:24Z", "update_user": null, "update_date": null, "bcgs_number": "093O015313"}}, {"model": "wells.bcgs_numbers", "pk": 13601, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T20:42:27Z", "update_user": null, "update_date": null, "bcgs_number": "093K008443"}}, {"model": "wells.bcgs_numbers", "pk": 13602, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:12:18Z", "update_user": null, "update_date": null, "bcgs_number": "102A063134"}}, {"model": "wells.bcgs_numbers", "pk": 13603, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:15:35Z", "update_user": null, "update_date": null, "bcgs_number": "092P060343"}}, {"model": "wells.bcgs_numbers", "pk": 13604, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:15:35Z", "update_user": null, "update_date": null, "bcgs_number": "082M021142"}}, {"model": "wells.bcgs_numbers", "pk": 13605, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:15:35Z", "update_user": null, "update_date": null, "bcgs_number": "092I076244"}}, {"model": "wells.bcgs_numbers", "pk": 13606, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:15:35Z", "update_user": null, "update_date": null, "bcgs_number": "082L072434"}}, {"model": "wells.bcgs_numbers", "pk": 13607, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:21:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A061213"}}, {"model": "wells.bcgs_numbers", "pk": 13608, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:21:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A036133"}}, {"model": "wells.bcgs_numbers", "pk": 13609, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:21:04Z", "update_user": null, "update_date": null, "bcgs_number": "094A064414"}}, {"model": "wells.bcgs_numbers", "pk": 13610, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-13T21:23:03Z", "update_user": null, "update_date": null, "bcgs_number": "094A051343"}}, {"model": "wells.bcgs_numbers", "pk": 13611, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-14T18:10:23Z", "update_user": null, "update_date": null, "bcgs_number": "094A064314"}}, {"model": "wells.bcgs_numbers", "pk": 13612, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-18T18:49:31Z", "update_user": null, "update_date": null, "bcgs_number": "092K004434"}}, {"model": "wells.bcgs_numbers", "pk": 13613, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-18T21:23:23Z", "update_user": null, "update_date": null, "bcgs_number": "082G005323"}}, {"model": "wells.bcgs_numbers", "pk": 13614, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-25T16:24:31Z", "update_user": null, "update_date": null, "bcgs_number": "093A023414"}}, {"model": "wells.bcgs_numbers", "pk": 13615, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-25T16:35:31Z", "update_user": null, "update_date": null, "bcgs_number": "093A055214"}}, {"model": "wells.bcgs_numbers", "pk": 13616, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-25T17:11:08Z", "update_user": null, "update_date": null, "bcgs_number": "093A033243"}}, {"model": "wells.bcgs_numbers", "pk": 13617, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-25T17:56:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G015411"}}, {"model": "wells.bcgs_numbers", "pk": 13618, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-25T21:46:10Z", "update_user": null, "update_date": null, "bcgs_number": "093A051212"}}, {"model": "wells.bcgs_numbers", "pk": 13619, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-25T22:15:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G025443"}}, {"model": "wells.bcgs_numbers", "pk": 13620, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-04-28T23:27:24Z", "update_user": null, "update_date": null, "bcgs_number": "082G053342"}}, {"model": "wells.bcgs_numbers", "pk": 13621, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T18:44:35Z", "update_user": null, "update_date": null, "bcgs_number": "082C039331"}}, {"model": "wells.bcgs_numbers", "pk": 13622, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T18:44:35Z", "update_user": null, "update_date": null, "bcgs_number": "082B047112"}}, {"model": "wells.bcgs_numbers", "pk": 13623, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T18:44:35Z", "update_user": null, "update_date": null, "bcgs_number": "082B047114"}}, {"model": "wells.bcgs_numbers", "pk": 13624, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T19:00:17Z", "update_user": null, "update_date": null, "bcgs_number": "094G072322"}}, {"model": "wells.bcgs_numbers", "pk": 13625, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T19:00:17Z", "update_user": null, "update_date": null, "bcgs_number": "104H072322"}}, {"model": "wells.bcgs_numbers", "pk": 13626, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T20:47:57Z", "update_user": null, "update_date": null, "bcgs_number": "082J086222"}}, {"model": "wells.bcgs_numbers", "pk": 13627, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T20:48:10Z", "update_user": null, "update_date": null, "bcgs_number": "082B037132"}}, {"model": "wells.bcgs_numbers", "pk": 13628, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T20:48:10Z", "update_user": null, "update_date": null, "bcgs_number": "092A037134"}}, {"model": "wells.bcgs_numbers", "pk": 13629, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-05T20:49:27Z", "update_user": null, "update_date": null, "bcgs_number": "082J037414"}}, {"model": "wells.bcgs_numbers", "pk": 13630, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-10T17:27:07Z", "update_user": null, "update_date": null, "bcgs_number": "093A004324"}}, {"model": "wells.bcgs_numbers", "pk": 13631, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-10T17:35:52Z", "update_user": null, "update_date": null, "bcgs_number": "092K065113"}}, {"model": "wells.bcgs_numbers", "pk": 13632, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-10T20:51:59Z", "update_user": null, "update_date": null, "bcgs_number": "093J001224"}}, {"model": "wells.bcgs_numbers", "pk": 13633, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-10T21:21:50Z", "update_user": null, "update_date": null, "bcgs_number": "093G097231"}}, {"model": "wells.bcgs_numbers", "pk": 13634, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-10T22:44:52Z", "update_user": null, "update_date": null, "bcgs_number": "093K015121"}}, {"model": "wells.bcgs_numbers", "pk": 13635, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-11T23:29:43Z", "update_user": null, "update_date": null, "bcgs_number": "082E026142"}}, {"model": "wells.bcgs_numbers", "pk": 13636, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-16T18:47:52Z", "update_user": null, "update_date": null, "bcgs_number": "102H041422"}}, {"model": "wells.bcgs_numbers", "pk": 13637, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-26T23:10:04Z", "update_user": null, "update_date": null, "bcgs_number": "082G097114"}}, {"model": "wells.bcgs_numbers", "pk": 13638, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-05-27T16:42:28Z", "update_user": null, "update_date": null, "bcgs_number": "082L036242"}}, {"model": "wells.bcgs_numbers", "pk": 13639, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-20T22:55:26Z", "update_user": null, "update_date": null, "bcgs_number": "092J046211"}}, {"model": "wells.bcgs_numbers", "pk": 13640, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-20T22:55:33Z", "update_user": null, "update_date": null, "bcgs_number": "092G035311"}}, {"model": "wells.bcgs_numbers", "pk": 13641, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-20T22:55:33Z", "update_user": null, "update_date": null, "bcgs_number": "092H052122"}}, {"model": "wells.bcgs_numbers", "pk": 13642, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-27T18:03:10Z", "update_user": null, "update_date": null, "bcgs_number": "104H072123"}}, {"model": "wells.bcgs_numbers", "pk": 13643, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-27T18:03:10Z", "update_user": null, "update_date": null, "bcgs_number": "104H072121"}}, {"model": "wells.bcgs_numbers", "pk": 13644, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:36:34Z", "update_user": null, "update_date": null, "bcgs_number": "092B031443"}}, {"model": "wells.bcgs_numbers", "pk": 13645, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:36:34Z", "update_user": null, "update_date": null, "bcgs_number": "092B063342"}}, {"model": "wells.bcgs_numbers", "pk": 13646, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "082B037312"}}, {"model": "wells.bcgs_numbers", "pk": 13647, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "082B047312"}}, {"model": "wells.bcgs_numbers", "pk": 13648, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "082B037134"}}, {"model": "wells.bcgs_numbers", "pk": 13649, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:06Z", "update_user": null, "update_date": null, "bcgs_number": "082B037114"}}, {"model": "wells.bcgs_numbers", "pk": 13650, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:07Z", "update_user": null, "update_date": null, "bcgs_number": "084O100421"}}, {"model": "wells.bcgs_numbers", "pk": 13651, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:07Z", "update_user": null, "update_date": null, "bcgs_number": "082K010321"}}, {"model": "wells.bcgs_numbers", "pk": 13652, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:07Z", "update_user": null, "update_date": null, "bcgs_number": "082B027332"}}, {"model": "wells.bcgs_numbers", "pk": 13653, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:38:07Z", "update_user": null, "update_date": null, "bcgs_number": "082F062234"}}, {"model": "wells.bcgs_numbers", "pk": 13654, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:42:13Z", "update_user": null, "update_date": null, "bcgs_number": "082G066123"}}, {"model": "wells.bcgs_numbers", "pk": 13655, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:42:13Z", "update_user": null, "update_date": null, "bcgs_number": "082F039332"}}, {"model": "wells.bcgs_numbers", "pk": 13656, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:43:53Z", "update_user": null, "update_date": null, "bcgs_number": "092G020141"}}, {"model": "wells.bcgs_numbers", "pk": 13657, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:45:44Z", "update_user": null, "update_date": null, "bcgs_number": "092B059321"}}, {"model": "wells.bcgs_numbers", "pk": 13658, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:45:44Z", "update_user": null, "update_date": null, "bcgs_number": "092G033413"}}, {"model": "wells.bcgs_numbers", "pk": 13659, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:45:44Z", "update_user": null, "update_date": null, "bcgs_number": "092K065434"}}, {"model": "wells.bcgs_numbers", "pk": 13660, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:45:44Z", "update_user": null, "update_date": null, "bcgs_number": "092K065342"}}, {"model": "wells.bcgs_numbers", "pk": 13661, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:45:44Z", "update_user": null, "update_date": null, "bcgs_number": "092F082443"}}, {"model": "wells.bcgs_numbers", "pk": 13662, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T20:46:54Z", "update_user": null, "update_date": null, "bcgs_number": "093B016232"}}, {"model": "wells.bcgs_numbers", "pk": 13663, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T21:04:50Z", "update_user": null, "update_date": null, "bcgs_number": "112H079333"}}, {"model": "wells.bcgs_numbers", "pk": 13664, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T21:04:50Z", "update_user": null, "update_date": null, "bcgs_number": "093J088242"}}, {"model": "wells.bcgs_numbers", "pk": 13665, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-12T21:04:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A065141"}}, {"model": "wells.bcgs_numbers", "pk": 13666, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-18T18:08:28Z", "update_user": null, "update_date": null, "bcgs_number": "093O071214"}}, {"model": "wells.bcgs_numbers", "pk": 13667, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-18T18:14:06Z", "update_user": null, "update_date": null, "bcgs_number": "093O059344"}}, {"model": "wells.bcgs_numbers", "pk": 13668, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-18T18:20:29Z", "update_user": null, "update_date": null, "bcgs_number": "082G057333"}}, {"model": "wells.bcgs_numbers", "pk": 13669, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-18T19:34:23Z", "update_user": null, "update_date": null, "bcgs_number": "094A059431"}}, {"model": "wells.bcgs_numbers", "pk": 13670, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-18T19:47:12Z", "update_user": null, "update_date": null, "bcgs_number": "094A059312"}}, {"model": "wells.bcgs_numbers", "pk": 13671, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-26T18:37:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I013121"}}, {"model": "wells.bcgs_numbers", "pk": 13672, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-26T18:57:42Z", "update_user": null, "update_date": null, "bcgs_number": "093P054343"}}, {"model": "wells.bcgs_numbers", "pk": 13673, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-26T19:01:34Z", "update_user": null, "update_date": null, "bcgs_number": "092J040342"}}, {"model": "wells.bcgs_numbers", "pk": 13674, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-26T19:21:12Z", "update_user": null, "update_date": null, "bcgs_number": "094B040342"}}, {"model": "wells.bcgs_numbers", "pk": 13675, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-07-27T20:12:42Z", "update_user": null, "update_date": null, "bcgs_number": "103I057234"}}, {"model": "wells.bcgs_numbers", "pk": 13676, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-07T07:44:47Z", "update_user": null, "update_date": null, "bcgs_number": "092I003331"}}, {"model": "wells.bcgs_numbers", "pk": 13677, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-08T14:32:39Z", "update_user": null, "update_date": null, "bcgs_number": "082L092413"}}, {"model": "wells.bcgs_numbers", "pk": 13678, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-15T19:47:47Z", "update_user": null, "update_date": null, "bcgs_number": "093G095213"}}, {"model": "wells.bcgs_numbers", "pk": 13679, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-15T19:58:58Z", "update_user": null, "update_date": null, "bcgs_number": "093G095433"}}, {"model": "wells.bcgs_numbers", "pk": 13680, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-18T21:03:10Z", "update_user": null, "update_date": null, "bcgs_number": "102C027332"}}, {"model": "wells.bcgs_numbers", "pk": 13681, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-18T23:26:17Z", "update_user": null, "update_date": null, "bcgs_number": "082N007431"}}, {"model": "wells.bcgs_numbers", "pk": 13682, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-08-22T19:24:19Z", "update_user": null, "update_date": null, "bcgs_number": "082K089222"}}, {"model": "wells.bcgs_numbers", "pk": 13683, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-09-02T20:19:03Z", "update_user": null, "update_date": null, "bcgs_number": "093P023444"}}, {"model": "wells.bcgs_numbers", "pk": 13684, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-09-02T21:14:23Z", "update_user": null, "update_date": null, "bcgs_number": "093P023432"}}, {"model": "wells.bcgs_numbers", "pk": 13685, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-09-20T20:09:14Z", "update_user": null, "update_date": null, "bcgs_number": "082L085121"}}, {"model": "wells.bcgs_numbers", "pk": 13686, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-09-22T22:44:44Z", "update_user": null, "update_date": null, "bcgs_number": "093J006211"}}, {"model": "wells.bcgs_numbers", "pk": 13687, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-04T22:27:55Z", "update_user": null, "update_date": null, "bcgs_number": "092G038342"}}, {"model": "wells.bcgs_numbers", "pk": 13688, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-12T22:51:14Z", "update_user": null, "update_date": null, "bcgs_number": "082J006123"}}, {"model": "wells.bcgs_numbers", "pk": 13689, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-13T18:55:22Z", "update_user": null, "update_date": null, "bcgs_number": "094A055121"}}, {"model": "wells.bcgs_numbers", "pk": 13690, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-19T12:45:25Z", "update_user": null, "update_date": null, "bcgs_number": "082L004421"}}, {"model": "wells.bcgs_numbers", "pk": 13691, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-19T17:36:49Z", "update_user": null, "update_date": null, "bcgs_number": "093L075213"}}, {"model": "wells.bcgs_numbers", "pk": 13692, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-19T17:47:07Z", "update_user": null, "update_date": null, "bcgs_number": "092J036432"}}, {"model": "wells.bcgs_numbers", "pk": 13693, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-19T19:19:14Z", "update_user": null, "update_date": null, "bcgs_number": "102K052443"}}, {"model": "wells.bcgs_numbers", "pk": 13694, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-19T23:07:45Z", "update_user": null, "update_date": null, "bcgs_number": "082G034314"}}, {"model": "wells.bcgs_numbers", "pk": 13695, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-23T18:29:00Z", "update_user": null, "update_date": null, "bcgs_number": "082L023441"}}, {"model": "wells.bcgs_numbers", "pk": 13696, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-25T13:26:02Z", "update_user": null, "update_date": null, "bcgs_number": "092K044414"}}, {"model": "wells.bcgs_numbers", "pk": 13697, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-25T13:58:42Z", "update_user": null, "update_date": null, "bcgs_number": "082E093421"}}, {"model": "wells.bcgs_numbers", "pk": 13698, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-26T10:41:57Z", "update_user": null, "update_date": null, "bcgs_number": "082L064311"}}, {"model": "wells.bcgs_numbers", "pk": 13699, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-27T05:06:11Z", "update_user": null, "update_date": null, "bcgs_number": "082L098314"}}, {"model": "wells.bcgs_numbers", "pk": 13700, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-28T16:53:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L061334"}}, {"model": "wells.bcgs_numbers", "pk": 13701, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-10-28T17:34:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I076243"}}, {"model": "wells.bcgs_numbers", "pk": 13702, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-02T16:19:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I081214"}}, {"model": "wells.bcgs_numbers", "pk": 13703, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-02T18:10:26Z", "update_user": null, "update_date": null, "bcgs_number": "092P021321"}}, {"model": "wells.bcgs_numbers", "pk": 13704, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-02T18:24:02Z", "update_user": null, "update_date": null, "bcgs_number": "092I082334"}}, {"model": "wells.bcgs_numbers", "pk": 13705, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-02T19:14:24Z", "update_user": null, "update_date": null, "bcgs_number": "092P002234"}}, {"model": "wells.bcgs_numbers", "pk": 13706, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-03T12:32:04Z", "update_user": null, "update_date": null, "bcgs_number": "082L043433"}}, {"model": "wells.bcgs_numbers", "pk": 13707, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-03T13:00:39Z", "update_user": null, "update_date": null, "bcgs_number": "082L062332"}}, {"model": "wells.bcgs_numbers", "pk": 13708, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-03T13:35:27Z", "update_user": null, "update_date": null, "bcgs_number": "082L037131"}}, {"model": "wells.bcgs_numbers", "pk": 13709, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-06T03:28:03Z", "update_user": null, "update_date": null, "bcgs_number": "092I023313"}}, {"model": "wells.bcgs_numbers", "pk": 13710, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-07T20:50:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G072342"}}, {"model": "wells.bcgs_numbers", "pk": 13711, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-09T20:17:13Z", "update_user": null, "update_date": null, "bcgs_number": "082L031444"}}, {"model": "wells.bcgs_numbers", "pk": 13712, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-09T20:59:59Z", "update_user": null, "update_date": null, "bcgs_number": "082L066212"}}, {"model": "wells.bcgs_numbers", "pk": 13713, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-16T15:30:31Z", "update_user": null, "update_date": null, "bcgs_number": "082L047131"}}, {"model": "wells.bcgs_numbers", "pk": 13714, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-17T19:41:09Z", "update_user": null, "update_date": null, "bcgs_number": "094G030222"}}, {"model": "wells.bcgs_numbers", "pk": 13715, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-17T19:58:06Z", "update_user": null, "update_date": null, "bcgs_number": "082L053231"}}, {"model": "wells.bcgs_numbers", "pk": 13716, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-17T21:48:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L041424"}}, {"model": "wells.bcgs_numbers", "pk": 13717, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-17T22:03:02Z", "update_user": null, "update_date": null, "bcgs_number": "082L026133"}}, {"model": "wells.bcgs_numbers", "pk": 13718, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-18T22:10:00Z", "update_user": null, "update_date": null, "bcgs_number": "094A020114"}}, {"model": "wells.bcgs_numbers", "pk": 13719, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T20:44:48Z", "update_user": null, "update_date": null, "bcgs_number": "082E061244"}}, {"model": "wells.bcgs_numbers", "pk": 13720, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T22:28:57Z", "update_user": null, "update_date": null, "bcgs_number": "082E062143"}}, {"model": "wells.bcgs_numbers", "pk": 13721, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-22T06:55:39Z", "update_user": null, "update_date": null, "bcgs_number": "082E005414"}}, {"model": "wells.bcgs_numbers", "pk": 13722, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-22T07:09:12Z", "update_user": null, "update_date": null, "bcgs_number": "082L026222"}}, {"model": "wells.bcgs_numbers", "pk": 13723, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-22T21:12:13Z", "update_user": null, "update_date": null, "bcgs_number": "093K082241"}}, {"model": "wells.bcgs_numbers", "pk": 13724, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-01T22:07:05Z", "update_user": null, "update_date": null, "bcgs_number": "093G045341"}}, {"model": "wells.bcgs_numbers", "pk": 13725, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-02T06:18:13Z", "update_user": null, "update_date": null, "bcgs_number": "093G095432"}}, {"model": "wells.bcgs_numbers", "pk": 13726, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-02T07:25:57Z", "update_user": null, "update_date": null, "bcgs_number": "093J008431"}}, {"model": "wells.bcgs_numbers", "pk": 13727, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-02T07:44:20Z", "update_user": null, "update_date": null, "bcgs_number": "093G084314"}}, {"model": "wells.bcgs_numbers", "pk": 13728, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-02T23:12:58Z", "update_user": null, "update_date": null, "bcgs_number": "082L099441"}}, {"model": "wells.bcgs_numbers", "pk": 13729, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-02T23:36:24Z", "update_user": null, "update_date": null, "bcgs_number": "093B019122"}}, {"model": "wells.bcgs_numbers", "pk": 13730, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-03T18:29:15Z", "update_user": null, "update_date": null, "bcgs_number": "092B045311"}}, {"model": "wells.bcgs_numbers", "pk": 13731, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-03T19:21:32Z", "update_user": null, "update_date": null, "bcgs_number": "092C048141"}}, {"model": "wells.bcgs_numbers", "pk": 13732, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-04T04:37:10Z", "update_user": null, "update_date": null, "bcgs_number": "094A052334"}}, {"model": "wells.bcgs_numbers", "pk": 13733, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-04T06:20:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A035443"}}, {"model": "wells.bcgs_numbers", "pk": 13734, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-04T06:38:34Z", "update_user": null, "update_date": null, "bcgs_number": "094A035434"}}, {"model": "wells.bcgs_numbers", "pk": 13735, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-04T06:49:01Z", "update_user": null, "update_date": null, "bcgs_number": "094A045231"}}, {"model": "wells.bcgs_numbers", "pk": 13736, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-07T22:14:28Z", "update_user": null, "update_date": null, "bcgs_number": "102P052214"}}, {"model": "wells.bcgs_numbers", "pk": 13737, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-08T14:13:30Z", "update_user": null, "update_date": null, "bcgs_number": "092P049112"}}, {"model": "wells.bcgs_numbers", "pk": 13738, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-08T19:08:53Z", "update_user": null, "update_date": null, "bcgs_number": "092P084123"}}, {"model": "wells.bcgs_numbers", "pk": 13739, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-08T20:10:28Z", "update_user": null, "update_date": null, "bcgs_number": "094A053333"}}, {"model": "wells.bcgs_numbers", "pk": 13740, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-08T21:48:54Z", "update_user": null, "update_date": null, "bcgs_number": "092P045334"}}, {"model": "wells.bcgs_numbers", "pk": 13741, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-09T05:44:24Z", "update_user": null, "update_date": null, "bcgs_number": "082F007222"}}, {"model": "wells.bcgs_numbers", "pk": 13742, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-10T23:03:26Z", "update_user": null, "update_date": null, "bcgs_number": "082F066411"}}, {"model": "wells.bcgs_numbers", "pk": 13743, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T02:55:20Z", "update_user": null, "update_date": null, "bcgs_number": "094H031223"}}, {"model": "wells.bcgs_numbers", "pk": 13744, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T03:13:59Z", "update_user": null, "update_date": null, "bcgs_number": "094A056123"}}, {"model": "wells.bcgs_numbers", "pk": 13745, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T03:31:20Z", "update_user": null, "update_date": null, "bcgs_number": "094A007344"}}, {"model": "wells.bcgs_numbers", "pk": 13746, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T04:03:46Z", "update_user": null, "update_date": null, "bcgs_number": "094A048134"}}, {"model": "wells.bcgs_numbers", "pk": 13747, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T16:57:00Z", "update_user": null, "update_date": null, "bcgs_number": "082E083312"}}, {"model": "wells.bcgs_numbers", "pk": 13748, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T18:27:33Z", "update_user": null, "update_date": null, "bcgs_number": "102A037444"}}, {"model": "wells.bcgs_numbers", "pk": 13749, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T20:35:43Z", "update_user": null, "update_date": null, "bcgs_number": "093G091433"}}, {"model": "wells.bcgs_numbers", "pk": 13750, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-13T19:25:58Z", "update_user": null, "update_date": null, "bcgs_number": "092H061434"}}, {"model": "wells.bcgs_numbers", "pk": 13751, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-13T20:03:49Z", "update_user": null, "update_date": null, "bcgs_number": "092G059314"}}, {"model": "wells.bcgs_numbers", "pk": 13752, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-14T19:57:36Z", "update_user": null, "update_date": null, "bcgs_number": "092I076424"}}, {"model": "wells.bcgs_numbers", "pk": 13753, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-14T20:12:02Z", "update_user": null, "update_date": null, "bcgs_number": "092I013314"}}, {"model": "wells.bcgs_numbers", "pk": 13754, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-14T20:55:51Z", "update_user": null, "update_date": null, "bcgs_number": "092I013132"}}, {"model": "wells.bcgs_numbers", "pk": 13755, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-14T21:40:18Z", "update_user": null, "update_date": null, "bcgs_number": "092I097121"}}, {"model": "wells.bcgs_numbers", "pk": 13756, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-14T22:37:46Z", "update_user": null, "update_date": null, "bcgs_number": "093B068342"}}, {"model": "wells.bcgs_numbers", "pk": 13757, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T05:15:50Z", "update_user": null, "update_date": null, "bcgs_number": "092P054143"}}, {"model": "wells.bcgs_numbers", "pk": 13758, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T05:58:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I097123"}}, {"model": "wells.bcgs_numbers", "pk": 13759, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T06:53:44Z", "update_user": null, "update_date": null, "bcgs_number": "092I076423"}}, {"model": "wells.bcgs_numbers", "pk": 13760, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T18:38:27Z", "update_user": null, "update_date": null, "bcgs_number": "092I064412"}}, {"model": "wells.bcgs_numbers", "pk": 13761, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T19:40:53Z", "update_user": null, "update_date": null, "bcgs_number": "092P016221"}}, {"model": "wells.bcgs_numbers", "pk": 13762, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-16T14:04:49Z", "update_user": null, "update_date": null, "bcgs_number": "092P093222"}}, {"model": "wells.bcgs_numbers", "pk": 13763, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-16T14:47:56Z", "update_user": null, "update_date": null, "bcgs_number": "092P084422"}}, {"model": "wells.bcgs_numbers", "pk": 13764, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-17T01:05:03Z", "update_user": null, "update_date": null, "bcgs_number": "092I064233"}}, {"model": "wells.bcgs_numbers", "pk": 13765, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-17T03:19:58Z", "update_user": null, "update_date": null, "bcgs_number": "083D015134"}}, {"model": "wells.bcgs_numbers", "pk": 13766, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-17T04:00:34Z", "update_user": null, "update_date": null, "bcgs_number": "092I044123"}}, {"model": "wells.bcgs_numbers", "pk": 13767, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-17T05:44:07Z", "update_user": null, "update_date": null, "bcgs_number": "092I074344"}}, {"model": "wells.bcgs_numbers", "pk": 13768, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-18T21:26:34Z", "update_user": null, "update_date": null, "bcgs_number": "082L026414"}}, {"model": "wells.bcgs_numbers", "pk": 13769, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-21T18:55:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G059321"}}, {"model": "wells.bcgs_numbers", "pk": 13770, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-04T18:19:55Z", "update_user": null, "update_date": null, "bcgs_number": "092J063421"}}, {"model": "wells.bcgs_numbers", "pk": 13771, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-04T23:23:30Z", "update_user": null, "update_date": null, "bcgs_number": "092C038112"}}, {"model": "wells.bcgs_numbers", "pk": 13772, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-04T23:23:30Z", "update_user": null, "update_date": null, "bcgs_number": "092F035421"}}, {"model": "wells.bcgs_numbers", "pk": 13773, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-04T23:23:31Z", "update_user": null, "update_date": null, "bcgs_number": "092F037242"}}, {"model": "wells.bcgs_numbers", "pk": 13774, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-04T23:25:41Z", "update_user": null, "update_date": null, "bcgs_number": "092F037241"}}, {"model": "wells.bcgs_numbers", "pk": 13775, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T18:10:15Z", "update_user": null, "update_date": null, "bcgs_number": "093H063342"}}, {"model": "wells.bcgs_numbers", "pk": 13776, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T21:24:53Z", "update_user": null, "update_date": null, "bcgs_number": "092I069311"}}, {"model": "wells.bcgs_numbers", "pk": 13777, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T21:53:12Z", "update_user": null, "update_date": null, "bcgs_number": "082F030332"}}, {"model": "wells.bcgs_numbers", "pk": 13778, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T22:01:24Z", "update_user": null, "update_date": null, "bcgs_number": "082E017411"}}, {"model": "wells.bcgs_numbers", "pk": 13779, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T22:08:26Z", "update_user": null, "update_date": null, "bcgs_number": "092I056232"}}, {"model": "wells.bcgs_numbers", "pk": 13780, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T22:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "083D084134"}}, {"model": "wells.bcgs_numbers", "pk": 13781, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T23:55:45Z", "update_user": null, "update_date": null, "bcgs_number": "092I068321"}}, {"model": "wells.bcgs_numbers", "pk": 13782, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T23:57:22Z", "update_user": null, "update_date": null, "bcgs_number": "092G013122"}}, {"model": "wells.bcgs_numbers", "pk": 13783, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-06T00:05:33Z", "update_user": null, "update_date": null, "bcgs_number": "092F069134"}}, {"model": "wells.bcgs_numbers", "pk": 13784, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-06T00:43:38Z", "update_user": null, "update_date": null, "bcgs_number": "092J063242"}}, {"model": "wells.bcgs_numbers", "pk": 13785, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-06T14:05:55Z", "update_user": null, "update_date": null, "bcgs_number": "082L061221"}}, {"model": "wells.bcgs_numbers", "pk": 13786, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-06T14:20:13Z", "update_user": null, "update_date": null, "bcgs_number": "092I056244"}}, {"model": "wells.bcgs_numbers", "pk": 13787, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-09T22:34:19Z", "update_user": null, "update_date": null, "bcgs_number": "092P084323"}}, {"model": "wells.bcgs_numbers", "pk": 13788, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-10T06:25:08Z", "update_user": null, "update_date": null, "bcgs_number": "102M074423"}}, {"model": "wells.bcgs_numbers", "pk": 13789, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-19T19:31:56Z", "update_user": null, "update_date": null, "bcgs_number": "094A053343"}}, {"model": "wells.bcgs_numbers", "pk": 13790, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-24T19:30:24Z", "update_user": null, "update_date": null, "bcgs_number": "082L033212"}}, {"model": "wells.bcgs_numbers", "pk": 13791, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-26T17:25:26Z", "update_user": null, "update_date": null, "bcgs_number": "094C009222"}}, {"model": "wells.bcgs_numbers", "pk": 13792, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-26T18:24:58Z", "update_user": null, "update_date": null, "bcgs_number": "092J037223"}}, {"model": "wells.bcgs_numbers", "pk": 13793, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-26T22:25:46Z", "update_user": null, "update_date": null, "bcgs_number": "092P066113"}}, {"model": "wells.bcgs_numbers", "pk": 13794, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-27T18:30:05Z", "update_user": null, "update_date": null, "bcgs_number": "092P087411"}}, {"model": "wells.bcgs_numbers", "pk": 13795, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-07T23:46:39Z", "update_user": null, "update_date": null, "bcgs_number": "082K030222"}}, {"model": "wells.bcgs_numbers", "pk": 13796, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-08T00:32:27Z", "update_user": null, "update_date": null, "bcgs_number": "092J046334"}}, {"model": "wells.bcgs_numbers", "pk": 13797, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-10T18:14:18Z", "update_user": null, "update_date": null, "bcgs_number": "094O052124"}}, {"model": "wells.bcgs_numbers", "pk": 13798, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-11T02:14:15Z", "update_user": null, "update_date": null, "bcgs_number": "094P028432"}}, {"model": "wells.bcgs_numbers", "pk": 13799, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-11T07:01:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A058241"}}, {"model": "wells.bcgs_numbers", "pk": 13800, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-14T20:02:22Z", "update_user": null, "update_date": null, "bcgs_number": "104P098231"}}, {"model": "wells.bcgs_numbers", "pk": 13801, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-17T21:54:55Z", "update_user": null, "update_date": null, "bcgs_number": "092I008121"}}, {"model": "wells.bcgs_numbers", "pk": 13802, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-17T23:55:48Z", "update_user": null, "update_date": null, "bcgs_number": "092E097232"}}, {"model": "wells.bcgs_numbers", "pk": 13803, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-23T18:21:15Z", "update_user": null, "update_date": null, "bcgs_number": "094A072111"}}, {"model": "wells.bcgs_numbers", "pk": 13804, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-23T18:22:17Z", "update_user": null, "update_date": null, "bcgs_number": "094A062333"}}, {"model": "wells.bcgs_numbers", "pk": 13805, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-23T18:55:22Z", "update_user": null, "update_date": null, "bcgs_number": "094A063144"}}, {"model": "wells.bcgs_numbers", "pk": 13806, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-23T20:12:54Z", "update_user": null, "update_date": null, "bcgs_number": "094A089124"}}, {"model": "wells.bcgs_numbers", "pk": 13807, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-27T15:54:26Z", "update_user": null, "update_date": null, "bcgs_number": "103I068241"}}, {"model": "wells.bcgs_numbers", "pk": 13808, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-27T17:38:37Z", "update_user": null, "update_date": null, "bcgs_number": "104H072321"}}, {"model": "wells.bcgs_numbers", "pk": 13809, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-11T21:31:59Z", "update_user": null, "update_date": null, "bcgs_number": "104N052443"}}, {"model": "wells.bcgs_numbers", "pk": 13810, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-11T22:42:23Z", "update_user": null, "update_date": null, "bcgs_number": "094A087432"}}, {"model": "wells.bcgs_numbers", "pk": 13811, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-12T19:10:30Z", "update_user": null, "update_date": null, "bcgs_number": "093G076443"}}, {"model": "wells.bcgs_numbers", "pk": 13812, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-12T19:42:54Z", "update_user": null, "update_date": null, "bcgs_number": "093J016112"}}, {"model": "wells.bcgs_numbers", "pk": 13813, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-18T19:19:44Z", "update_user": null, "update_date": null, "bcgs_number": "094A087421"}}, {"model": "wells.bcgs_numbers", "pk": 13814, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-18T21:55:41Z", "update_user": null, "update_date": null, "bcgs_number": "093P073344"}}, {"model": "wells.bcgs_numbers", "pk": 13815, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-20T19:55:56Z", "update_user": null, "update_date": null, "bcgs_number": "103A020233"}}, {"model": "wells.bcgs_numbers", "pk": 13816, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-28T22:43:41Z", "update_user": null, "update_date": null, "bcgs_number": "082L027211"}}, {"model": "wells.bcgs_numbers", "pk": 13817, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-01T19:10:57Z", "update_user": null, "update_date": null, "bcgs_number": "092J098334"}}, {"model": "wells.bcgs_numbers", "pk": 13818, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-02T22:14:52Z", "update_user": null, "update_date": null, "bcgs_number": "094A073312"}}, {"model": "wells.bcgs_numbers", "pk": 13819, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-03T21:46:57Z", "update_user": null, "update_date": null, "bcgs_number": "093B005114"}}, {"model": "wells.bcgs_numbers", "pk": 13820, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-03T22:33:18Z", "update_user": null, "update_date": null, "bcgs_number": "094A065114"}}, {"model": "wells.bcgs_numbers", "pk": 13821, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-03T23:38:17Z", "update_user": null, "update_date": null, "bcgs_number": "082G003423"}}, {"model": "wells.bcgs_numbers", "pk": 13822, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-03T23:40:05Z", "update_user": null, "update_date": null, "bcgs_number": "082C093333"}}, {"model": "wells.bcgs_numbers", "pk": 13823, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-03T23:45:04Z", "update_user": null, "update_date": null, "bcgs_number": "082K060333"}}, {"model": "wells.bcgs_numbers", "pk": 13824, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-10T21:45:52Z", "update_user": null, "update_date": null, "bcgs_number": "094O050213"}}, {"model": "wells.bcgs_numbers", "pk": 13825, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "103H097423"}}, {"model": "wells.bcgs_numbers", "pk": 13826, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "104H072114"}}, {"model": "wells.bcgs_numbers", "pk": 13827, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "104H072111"}}, {"model": "wells.bcgs_numbers", "pk": 13828, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "103P026333"}}, {"model": "wells.bcgs_numbers", "pk": 13829, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M037412"}}, {"model": "wells.bcgs_numbers", "pk": 13830, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "093M052134"}}, {"model": "wells.bcgs_numbers", "pk": 13831, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:09:42Z", "update_user": null, "update_date": null, "bcgs_number": "103G051132"}}, {"model": "wells.bcgs_numbers", "pk": 13832, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:15:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I070424"}}, {"model": "wells.bcgs_numbers", "pk": 13833, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:15:17Z", "update_user": null, "update_date": null, "bcgs_number": "082L044142"}}, {"model": "wells.bcgs_numbers", "pk": 13834, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:15:17Z", "update_user": null, "update_date": null, "bcgs_number": "092I067314"}}, {"model": "wells.bcgs_numbers", "pk": 13835, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:15:17Z", "update_user": null, "update_date": null, "bcgs_number": "082L056411"}}, {"model": "wells.bcgs_numbers", "pk": 13836, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:16:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A053414"}}, {"model": "wells.bcgs_numbers", "pk": 13837, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:16:45Z", "update_user": null, "update_date": null, "bcgs_number": "094M065314"}}, {"model": "wells.bcgs_numbers", "pk": 13838, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:16:45Z", "update_user": null, "update_date": null, "bcgs_number": "094A022121"}}, {"model": "wells.bcgs_numbers", "pk": 13839, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-12T23:22:42Z", "update_user": null, "update_date": null, "bcgs_number": "102H016332"}}, {"model": "wells.bcgs_numbers", "pk": 13840, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-06-19T22:28:58Z", "update_user": null, "update_date": null, "bcgs_number": "092G094124"}}, {"model": "wells.bcgs_numbers", "pk": 13841, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-06-19T23:13:55Z", "update_user": null, "update_date": null, "bcgs_number": "094A088334"}}, {"model": "wells.bcgs_numbers", "pk": 13842, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-02T19:21:38Z", "update_user": null, "update_date": null, "bcgs_number": "094A087414"}}, {"model": "wells.bcgs_numbers", "pk": 13843, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-02T20:38:00Z", "update_user": null, "update_date": null, "bcgs_number": "093K031331"}}, {"model": "wells.bcgs_numbers", "pk": 13844, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-11T17:57:05Z", "update_user": null, "update_date": null, "bcgs_number": "093B013221"}}, {"model": "wells.bcgs_numbers", "pk": 13845, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-11T18:43:46Z", "update_user": null, "update_date": null, "bcgs_number": "093B013212"}}, {"model": "wells.bcgs_numbers", "pk": 13846, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-14T22:13:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A085433"}}, {"model": "wells.bcgs_numbers", "pk": 13847, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-14T22:46:02Z", "update_user": null, "update_date": null, "bcgs_number": "093A022321"}}, {"model": "wells.bcgs_numbers", "pk": 13848, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-15T20:29:37Z", "update_user": null, "update_date": null, "bcgs_number": "094A012332"}}, {"model": "wells.bcgs_numbers", "pk": 13849, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-16T17:37:34Z", "update_user": null, "update_date": null, "bcgs_number": "094A034311"}}, {"model": "wells.bcgs_numbers", "pk": 13850, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-16T21:23:54Z", "update_user": null, "update_date": null, "bcgs_number": "094G050121"}}, {"model": "wells.bcgs_numbers", "pk": 13851, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-17T17:44:56Z", "update_user": null, "update_date": null, "bcgs_number": "082K061424"}}, {"model": "wells.bcgs_numbers", "pk": 13852, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-21T23:01:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L042232"}}, {"model": "wells.bcgs_numbers", "pk": 13853, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-23T22:48:31Z", "update_user": null, "update_date": null, "bcgs_number": "094A087412"}}, {"model": "wells.bcgs_numbers", "pk": 13854, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-25T17:50:44Z", "update_user": null, "update_date": null, "bcgs_number": "082K061442"}}, {"model": "wells.bcgs_numbers", "pk": 13855, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-28T21:33:50Z", "update_user": null, "update_date": null, "bcgs_number": "094A077442"}}, {"model": "wells.bcgs_numbers", "pk": 13856, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-28T22:55:40Z", "update_user": null, "update_date": null, "bcgs_number": "093P040212"}}, {"model": "wells.bcgs_numbers", "pk": 13857, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-29T04:20:48Z", "update_user": null, "update_date": null, "bcgs_number": "093K013412"}}, {"model": "wells.bcgs_numbers", "pk": 13858, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-29T16:58:02Z", "update_user": null, "update_date": null, "bcgs_number": "092G085332"}}, {"model": "wells.bcgs_numbers", "pk": 13859, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-29T18:30:58Z", "update_user": null, "update_date": null, "bcgs_number": "092K004344"}}, {"model": "wells.bcgs_numbers", "pk": 13860, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-29T18:30:58Z", "update_user": null, "update_date": null, "bcgs_number": "092L057434"}}, {"model": "wells.bcgs_numbers", "pk": 13861, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-29T18:30:58Z", "update_user": null, "update_date": null, "bcgs_number": "092L067212"}}, {"model": "wells.bcgs_numbers", "pk": 13862, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-29T18:30:59Z", "update_user": null, "update_date": null, "bcgs_number": "092B033132"}}, {"model": "wells.bcgs_numbers", "pk": 13863, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-30T18:45:07Z", "update_user": null, "update_date": null, "bcgs_number": "094A033111"}}, {"model": "wells.bcgs_numbers", "pk": 13864, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-30T18:49:32Z", "update_user": null, "update_date": null, "bcgs_number": "094A009111"}}, {"model": "wells.bcgs_numbers", "pk": 13865, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-30T23:32:08Z", "update_user": null, "update_date": null, "bcgs_number": "093K030313"}}, {"model": "wells.bcgs_numbers", "pk": 13866, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-31T20:02:20Z", "update_user": null, "update_date": null, "bcgs_number": "092M036111"}}, {"model": "wells.bcgs_numbers", "pk": 13867, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-31T21:25:09Z", "update_user": null, "update_date": null, "bcgs_number": "092D084323"}}, {"model": "wells.bcgs_numbers", "pk": 13868, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-31T22:07:42Z", "update_user": null, "update_date": null, "bcgs_number": "092F026422"}}, {"model": "wells.bcgs_numbers", "pk": 13869, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-01T21:23:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I068322"}}, {"model": "wells.bcgs_numbers", "pk": 13870, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-05T16:37:23Z", "update_user": null, "update_date": null, "bcgs_number": "082L021111"}}, {"model": "wells.bcgs_numbers", "pk": 13871, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-05T23:05:49Z", "update_user": null, "update_date": null, "bcgs_number": "093A001321"}}, {"model": "wells.bcgs_numbers", "pk": 13872, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-05T23:05:49Z", "update_user": null, "update_date": null, "bcgs_number": "093E038223"}}, {"model": "wells.bcgs_numbers", "pk": 13873, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-05T23:05:49Z", "update_user": null, "update_date": null, "bcgs_number": "093C054111"}}, {"model": "wells.bcgs_numbers", "pk": 13874, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T19:43:45Z", "update_user": null, "update_date": null, "bcgs_number": "093B030311"}}, {"model": "wells.bcgs_numbers", "pk": 13875, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T20:05:39Z", "update_user": null, "update_date": null, "bcgs_number": "082J002144"}}, {"model": "wells.bcgs_numbers", "pk": 13876, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T20:05:39Z", "update_user": null, "update_date": null, "bcgs_number": "082F054231"}}, {"model": "wells.bcgs_numbers", "pk": 13877, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T23:52:15Z", "update_user": null, "update_date": null, "bcgs_number": "082G053334"}}, {"model": "wells.bcgs_numbers", "pk": 13878, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T23:52:16Z", "update_user": null, "update_date": null, "bcgs_number": "082G034244"}}, {"model": "wells.bcgs_numbers", "pk": 13879, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T23:52:16Z", "update_user": null, "update_date": null, "bcgs_number": "092G065213"}}, {"model": "wells.bcgs_numbers", "pk": 13880, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-06T23:52:16Z", "update_user": null, "update_date": null, "bcgs_number": "102H011222"}}, {"model": "wells.bcgs_numbers", "pk": 13881, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-07T16:43:40Z", "update_user": null, "update_date": null, "bcgs_number": "092G015143"}}, {"model": "wells.bcgs_numbers", "pk": 13882, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-07T20:18:07Z", "update_user": null, "update_date": null, "bcgs_number": "092F076422"}}, {"model": "wells.bcgs_numbers", "pk": 13883, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-07T20:18:07Z", "update_user": null, "update_date": null, "bcgs_number": "092G003123"}}, {"model": "wells.bcgs_numbers", "pk": 13884, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-07T21:13:16Z", "update_user": null, "update_date": null, "bcgs_number": "092F078314"}}, {"model": "wells.bcgs_numbers", "pk": 13885, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-08T22:28:07Z", "update_user": null, "update_date": null, "bcgs_number": "082G020323"}}, {"model": "wells.bcgs_numbers", "pk": 13886, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-08T22:43:18Z", "update_user": null, "update_date": null, "bcgs_number": "082G005434"}}, {"model": "wells.bcgs_numbers", "pk": 13887, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-08T23:29:17Z", "update_user": null, "update_date": null, "bcgs_number": "082J016231"}}, {"model": "wells.bcgs_numbers", "pk": 13888, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T16:46:36Z", "update_user": null, "update_date": null, "bcgs_number": "082G076243"}}, {"model": "wells.bcgs_numbers", "pk": 13889, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T16:46:36Z", "update_user": null, "update_date": null, "bcgs_number": "082J016434"}}, {"model": "wells.bcgs_numbers", "pk": 13890, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T16:46:36Z", "update_user": null, "update_date": null, "bcgs_number": "082J016232"}}, {"model": "wells.bcgs_numbers", "pk": 13891, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T17:25:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G026234"}}, {"model": "wells.bcgs_numbers", "pk": 13892, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T18:22:06Z", "update_user": null, "update_date": null, "bcgs_number": "092G026412"}}, {"model": "wells.bcgs_numbers", "pk": 13893, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T18:53:48Z", "update_user": null, "update_date": null, "bcgs_number": "082J016214"}}, {"model": "wells.bcgs_numbers", "pk": 13894, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T21:11:41Z", "update_user": null, "update_date": null, "bcgs_number": "082G063433"}}, {"model": "wells.bcgs_numbers", "pk": 13895, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T22:40:21Z", "update_user": null, "update_date": null, "bcgs_number": "082F035112"}}, {"model": "wells.bcgs_numbers", "pk": 13896, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T22:40:21Z", "update_user": null, "update_date": null, "bcgs_number": "092P060132"}}, {"model": "wells.bcgs_numbers", "pk": 13897, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T22:40:21Z", "update_user": null, "update_date": null, "bcgs_number": "082G053331"}}, {"model": "wells.bcgs_numbers", "pk": 13898, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T23:19:50Z", "update_user": null, "update_date": null, "bcgs_number": "082F034344"}}, {"model": "wells.bcgs_numbers", "pk": 13899, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T23:19:50Z", "update_user": null, "update_date": null, "bcgs_number": "082K093221"}}, {"model": "wells.bcgs_numbers", "pk": 13900, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-11T23:44:02Z", "update_user": null, "update_date": null, "bcgs_number": "092J089243"}}, {"model": "wells.bcgs_numbers", "pk": 13901, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-15T19:36:45Z", "update_user": null, "update_date": null, "bcgs_number": "094G009312"}}, {"model": "wells.bcgs_numbers", "pk": 13902, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-18T16:36:30Z", "update_user": null, "update_date": null, "bcgs_number": "104H062314"}}, {"model": "wells.bcgs_numbers", "pk": 13903, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-19T20:42:11Z", "update_user": null, "update_date": null, "bcgs_number": "094B090413"}}, {"model": "wells.bcgs_numbers", "pk": 13904, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-09-19T22:12:35Z", "update_user": null, "update_date": null, "bcgs_number": "092P036111"}}, {"model": "wells.bcgs_numbers", "pk": 13905, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-13T18:53:19Z", "update_user": null, "update_date": null, "bcgs_number": "094G009213"}}, {"model": "wells.bcgs_numbers", "pk": 13906, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-13T18:59:46Z", "update_user": null, "update_date": null, "bcgs_number": "094G027332"}}, {"model": "wells.bcgs_numbers", "pk": 13907, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:12:07Z", "update_user": null, "update_date": null, "bcgs_number": "094B080113"}}, {"model": "wells.bcgs_numbers", "pk": 13908, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:16:45Z", "update_user": null, "update_date": null, "bcgs_number": "094G056232"}}, {"model": "wells.bcgs_numbers", "pk": 13909, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:19:03Z", "update_user": null, "update_date": null, "bcgs_number": "094B099424"}}, {"model": "wells.bcgs_numbers", "pk": 13910, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:20:51Z", "update_user": null, "update_date": null, "bcgs_number": "094B049224"}}, {"model": "wells.bcgs_numbers", "pk": 13911, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:22:49Z", "update_user": null, "update_date": null, "bcgs_number": "094G046343"}}, {"model": "wells.bcgs_numbers", "pk": 13912, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:24:03Z", "update_user": null, "update_date": null, "bcgs_number": "094B050112"}}, {"model": "wells.bcgs_numbers", "pk": 13913, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:25:32Z", "update_user": null, "update_date": null, "bcgs_number": "094G009211"}}, {"model": "wells.bcgs_numbers", "pk": 13914, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:28:08Z", "update_user": null, "update_date": null, "bcgs_number": "094B049142"}}, {"model": "wells.bcgs_numbers", "pk": 13915, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-19T17:57:00Z", "update_user": null, "update_date": null, "bcgs_number": "092G015341"}}, {"model": "wells.bcgs_numbers", "pk": 13916, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-25T16:22:18Z", "update_user": null, "update_date": null, "bcgs_number": "092H003433"}}, {"model": "wells.bcgs_numbers", "pk": 13917, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-25T18:26:29Z", "update_user": null, "update_date": null, "bcgs_number": "092I054412"}}, {"model": "wells.bcgs_numbers", "pk": 13918, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-25T18:29:13Z", "update_user": null, "update_date": null, "bcgs_number": "092G084443"}}, {"model": "wells.bcgs_numbers", "pk": 13919, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-26T19:52:28Z", "update_user": null, "update_date": null, "bcgs_number": "082E062122"}}, {"model": "wells.bcgs_numbers", "pk": 13920, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-26T20:35:36Z", "update_user": null, "update_date": null, "bcgs_number": "092H048244"}}, {"model": "wells.bcgs_numbers", "pk": 13921, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-27T00:22:07Z", "update_user": null, "update_date": null, "bcgs_number": "082L048333"}}, {"model": "wells.bcgs_numbers", "pk": 13922, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-31T16:37:29Z", "update_user": null, "update_date": null, "bcgs_number": "094A007423"}}, {"model": "wells.bcgs_numbers", "pk": 13923, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-31T17:58:36Z", "update_user": null, "update_date": null, "bcgs_number": "082L046133"}}, {"model": "wells.bcgs_numbers", "pk": 13924, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-31T18:15:54Z", "update_user": null, "update_date": null, "bcgs_number": "082L045233"}}, {"model": "wells.bcgs_numbers", "pk": 13925, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-31T19:55:52Z", "update_user": null, "update_date": null, "bcgs_number": "092I051424"}}, {"model": "wells.bcgs_numbers", "pk": 13926, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-03T00:14:43Z", "update_user": null, "update_date": null, "bcgs_number": "094A063424"}}, {"model": "wells.bcgs_numbers", "pk": 13927, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-03T20:40:32Z", "update_user": null, "update_date": null, "bcgs_number": "092I059311"}}, {"model": "wells.bcgs_numbers", "pk": 13928, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-06T20:16:41Z", "update_user": null, "update_date": null, "bcgs_number": "092I006224"}}, {"model": "wells.bcgs_numbers", "pk": 13929, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-20T18:19:54Z", "update_user": null, "update_date": null, "bcgs_number": "092I056331"}}, {"model": "wells.bcgs_numbers", "pk": 13930, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-21T01:04:11Z", "update_user": null, "update_date": null, "bcgs_number": "092I034242"}}, {"model": "wells.bcgs_numbers", "pk": 13931, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-22T23:56:25Z", "update_user": null, "update_date": null, "bcgs_number": "082F024211"}}, {"model": "wells.bcgs_numbers", "pk": 13932, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-23T01:09:23Z", "update_user": null, "update_date": null, "bcgs_number": "082F027423"}}, {"model": "wells.bcgs_numbers", "pk": 13933, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-28T04:36:32Z", "update_user": null, "update_date": null, "bcgs_number": "104N052413"}}, {"model": "wells.bcgs_numbers", "pk": 13934, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-28T23:11:50Z", "update_user": null, "update_date": null, "bcgs_number": "093B050311"}}, {"model": "wells.bcgs_numbers", "pk": 13935, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-01T18:11:51Z", "update_user": null, "update_date": null, "bcgs_number": "092C098224"}}, {"model": "wells.bcgs_numbers", "pk": 13936, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-01T18:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "092G001312"}}, {"model": "wells.bcgs_numbers", "pk": 13937, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-01T18:11:52Z", "update_user": null, "update_date": null, "bcgs_number": "092F093223"}}, {"model": "wells.bcgs_numbers", "pk": 13938, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-04T23:20:16Z", "update_user": null, "update_date": null, "bcgs_number": "092H051222"}}, {"model": "wells.bcgs_numbers", "pk": 13939, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-04T23:22:21Z", "update_user": null, "update_date": null, "bcgs_number": "092H063424"}}, {"model": "wells.bcgs_numbers", "pk": 13940, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-08T19:07:01Z", "update_user": null, "update_date": null, "bcgs_number": "082L061344"}}, {"model": "wells.bcgs_numbers", "pk": 13941, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-21T19:26:54Z", "update_user": null, "update_date": null, "bcgs_number": "092G005322"}}, {"model": "wells.bcgs_numbers", "pk": 13942, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-12-21T20:27:10Z", "update_user": null, "update_date": null, "bcgs_number": "082K048331"}}, {"model": "wells.bcgs_numbers", "pk": 13943, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-09T06:24:27Z", "update_user": null, "update_date": null, "bcgs_number": "094A074411"}}, {"model": "wells.bcgs_numbers", "pk": 13944, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-15T07:16:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L085221"}}, {"model": "wells.bcgs_numbers", "pk": 13945, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-15T07:33:09Z", "update_user": null, "update_date": null, "bcgs_number": "103K085221"}}, {"model": "wells.bcgs_numbers", "pk": 13946, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-16T17:50:07Z", "update_user": null, "update_date": null, "bcgs_number": "093P082241"}}, {"model": "wells.bcgs_numbers", "pk": 13947, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-17T21:57:37Z", "update_user": null, "update_date": null, "bcgs_number": "093A001142"}}, {"model": "wells.bcgs_numbers", "pk": 13948, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-23T21:02:51Z", "update_user": null, "update_date": null, "bcgs_number": "092B044234"}}, {"model": "wells.bcgs_numbers", "pk": 13949, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T04:07:13Z", "update_user": null, "update_date": null, "bcgs_number": "093M023412"}}, {"model": "wells.bcgs_numbers", "pk": 13950, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T05:59:16Z", "update_user": null, "update_date": null, "bcgs_number": "093L075132"}}, {"model": "wells.bcgs_numbers", "pk": 13951, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T06:38:47Z", "update_user": null, "update_date": null, "bcgs_number": "093L075413"}}, {"model": "wells.bcgs_numbers", "pk": 13952, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T07:16:30Z", "update_user": null, "update_date": null, "bcgs_number": "093L065321"}}, {"model": "wells.bcgs_numbers", "pk": 13953, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T07:54:39Z", "update_user": null, "update_date": null, "bcgs_number": "093L047142"}}, {"model": "wells.bcgs_numbers", "pk": 13954, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T17:26:50Z", "update_user": null, "update_date": null, "bcgs_number": "093L085133"}}, {"model": "wells.bcgs_numbers", "pk": 13955, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T17:48:50Z", "update_user": null, "update_date": null, "bcgs_number": "093L076124"}}, {"model": "wells.bcgs_numbers", "pk": 13956, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T18:31:12Z", "update_user": null, "update_date": null, "bcgs_number": "093L066243"}}, {"model": "wells.bcgs_numbers", "pk": 13957, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T19:30:13Z", "update_user": null, "update_date": null, "bcgs_number": "093L085112"}}, {"model": "wells.bcgs_numbers", "pk": 13958, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T19:47:13Z", "update_user": null, "update_date": null, "bcgs_number": "093L075434"}}, {"model": "wells.bcgs_numbers", "pk": 13959, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-28T20:27:02Z", "update_user": null, "update_date": null, "bcgs_number": "093L066234"}}, {"model": "wells.bcgs_numbers", "pk": 13960, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-29T01:57:21Z", "update_user": null, "update_date": null, "bcgs_number": "093K001414"}}, {"model": "wells.bcgs_numbers", "pk": 13961, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-29T03:25:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L048344"}}, {"model": "wells.bcgs_numbers", "pk": 13962, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-29T06:57:21Z", "update_user": null, "update_date": null, "bcgs_number": "093L075412"}}, {"model": "wells.bcgs_numbers", "pk": 13963, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-29T22:06:55Z", "update_user": null, "update_date": null, "bcgs_number": "093L075112"}}, {"model": "wells.bcgs_numbers", "pk": 13964, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-29T22:33:40Z", "update_user": null, "update_date": null, "bcgs_number": "103I070441"}}, {"model": "wells.bcgs_numbers", "pk": 13965, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-30T02:38:11Z", "update_user": null, "update_date": null, "bcgs_number": "093M023144"}}, {"model": "wells.bcgs_numbers", "pk": 13966, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-30T05:52:25Z", "update_user": null, "update_date": null, "bcgs_number": "093M032413"}}, {"model": "wells.bcgs_numbers", "pk": 13967, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-30T06:04:53Z", "update_user": null, "update_date": null, "bcgs_number": "093L075211"}}, {"model": "wells.bcgs_numbers", "pk": 13968, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-30T21:25:41Z", "update_user": null, "update_date": null, "bcgs_number": "093L094411"}}, {"model": "wells.bcgs_numbers", "pk": 13969, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-01-30T21:59:16Z", "update_user": null, "update_date": null, "bcgs_number": "093L056214"}}, {"model": "wells.bcgs_numbers", "pk": 13970, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-04T23:34:08Z", "update_user": null, "update_date": null, "bcgs_number": "093L075114"}}, {"model": "wells.bcgs_numbers", "pk": 13971, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-05T00:47:05Z", "update_user": null, "update_date": null, "bcgs_number": "093L084424"}}, {"model": "wells.bcgs_numbers", "pk": 13972, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-05T01:56:40Z", "update_user": null, "update_date": null, "bcgs_number": "093L094343"}}, {"model": "wells.bcgs_numbers", "pk": 13973, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-05T02:07:22Z", "update_user": null, "update_date": null, "bcgs_number": "093L094344"}}, {"model": "wells.bcgs_numbers", "pk": 13974, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-05T23:20:12Z", "update_user": null, "update_date": null, "bcgs_number": "092G003124"}}, {"model": "wells.bcgs_numbers", "pk": 13975, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-09T20:44:35Z", "update_user": null, "update_date": null, "bcgs_number": "094A025331"}}, {"model": "wells.bcgs_numbers", "pk": 13976, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-14T05:33:44Z", "update_user": null, "update_date": null, "bcgs_number": "104P098124"}}, {"model": "wells.bcgs_numbers", "pk": 13977, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-16T03:50:49Z", "update_user": null, "update_date": null, "bcgs_number": "092O090341"}}, {"model": "wells.bcgs_numbers", "pk": 13978, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-17T00:57:09Z", "update_user": null, "update_date": null, "bcgs_number": "092H081433"}}, {"model": "wells.bcgs_numbers", "pk": 13979, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T00:50:05Z", "update_user": null, "update_date": null, "bcgs_number": "094A024423"}}, {"model": "wells.bcgs_numbers", "pk": 13980, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T02:23:05Z", "update_user": null, "update_date": null, "bcgs_number": "094G040441"}}, {"model": "wells.bcgs_numbers", "pk": 13981, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T18:40:55Z", "update_user": null, "update_date": null, "bcgs_number": "092K043232"}}, {"model": "wells.bcgs_numbers", "pk": 13982, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T19:03:37Z", "update_user": null, "update_date": null, "bcgs_number": "092G025321"}}, {"model": "wells.bcgs_numbers", "pk": 13983, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T19:37:59Z", "update_user": null, "update_date": null, "bcgs_number": "094B090444"}}, {"model": "wells.bcgs_numbers", "pk": 13984, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T19:52:46Z", "update_user": null, "update_date": null, "bcgs_number": "094H004131"}}, {"model": "wells.bcgs_numbers", "pk": 13985, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T20:08:49Z", "update_user": null, "update_date": null, "bcgs_number": "094A051114"}}, {"model": "wells.bcgs_numbers", "pk": 13986, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-18T20:19:26Z", "update_user": null, "update_date": null, "bcgs_number": "094A051111"}}, {"model": "wells.bcgs_numbers", "pk": 13987, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-21T18:51:34Z", "update_user": null, "update_date": null, "bcgs_number": "092F028344"}}, {"model": "wells.bcgs_numbers", "pk": 13988, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-21T18:56:40Z", "update_user": null, "update_date": null, "bcgs_number": "092L029114"}}, {"model": "wells.bcgs_numbers", "pk": 13989, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-21T23:12:21Z", "update_user": null, "update_date": null, "bcgs_number": "093A003344"}}, {"model": "wells.bcgs_numbers", "pk": 13990, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-21T23:16:23Z", "update_user": null, "update_date": null, "bcgs_number": "092P092421"}}, {"model": "wells.bcgs_numbers", "pk": 13991, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-21T23:16:29Z", "update_user": null, "update_date": null, "bcgs_number": "093A031213"}}, {"model": "wells.bcgs_numbers", "pk": 13992, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-23T00:17:45Z", "update_user": null, "update_date": null, "bcgs_number": "082M073134"}}, {"model": "wells.bcgs_numbers", "pk": 13993, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-23T01:47:16Z", "update_user": null, "update_date": null, "bcgs_number": "092P073211"}}, {"model": "wells.bcgs_numbers", "pk": 13994, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-23T05:59:47Z", "update_user": null, "update_date": null, "bcgs_number": "092O095141"}}, {"model": "wells.bcgs_numbers", "pk": 13995, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-23T19:26:45Z", "update_user": null, "update_date": null, "bcgs_number": "103I086443"}}, {"model": "wells.bcgs_numbers", "pk": 13996, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-23T21:51:07Z", "update_user": null, "update_date": null, "bcgs_number": "104H071122"}}, {"model": "wells.bcgs_numbers", "pk": 13997, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-23T22:35:34Z", "update_user": null, "update_date": null, "bcgs_number": "104H062343"}}, {"model": "wells.bcgs_numbers", "pk": 13998, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-24T01:51:00Z", "update_user": null, "update_date": null, "bcgs_number": "103I067242"}}, {"model": "wells.bcgs_numbers", "pk": 13999, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-24T03:48:08Z", "update_user": null, "update_date": null, "bcgs_number": "082L047111"}}, {"model": "wells.bcgs_numbers", "pk": 14000, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-24T15:58:03Z", "update_user": null, "update_date": null, "bcgs_number": "092G015432"}}, {"model": "wells.bcgs_numbers", "pk": 14001, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-24T16:40:01Z", "update_user": null, "update_date": null, "bcgs_number": "093O035232"}}, {"model": "wells.bcgs_numbers", "pk": 14002, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-02-27T03:51:09Z", "update_user": null, "update_date": null, "bcgs_number": "092P085341"}}, {"model": "wells.bcgs_numbers", "pk": 14003, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-01T18:58:08Z", "update_user": null, "update_date": null, "bcgs_number": "093O076232"}}, {"model": "wells.bcgs_numbers", "pk": 14004, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-01T19:34:52Z", "update_user": null, "update_date": null, "bcgs_number": "093G084321"}}, {"model": "wells.bcgs_numbers", "pk": 14005, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-01T20:04:05Z", "update_user": null, "update_date": null, "bcgs_number": "093H088341"}}, {"model": "wells.bcgs_numbers", "pk": 14006, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-02T21:17:27Z", "update_user": null, "update_date": null, "bcgs_number": "093G094212"}}, {"model": "wells.bcgs_numbers", "pk": 14007, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-03T04:38:17Z", "update_user": null, "update_date": null, "bcgs_number": "092H021241"}}, {"model": "wells.bcgs_numbers", "pk": 14008, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-03T16:51:01Z", "update_user": null, "update_date": null, "bcgs_number": "092G028200"}}, {"model": "wells.bcgs_numbers", "pk": 14009, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-05T18:39:36Z", "update_user": null, "update_date": null, "bcgs_number": "092G016344"}}, {"model": "wells.bcgs_numbers", "pk": 14010, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-06T00:56:53Z", "update_user": null, "update_date": null, "bcgs_number": "093K001442"}}, {"model": "wells.bcgs_numbers", "pk": 14011, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-06T20:45:39Z", "update_user": null, "update_date": null, "bcgs_number": "092P084212"}}, {"model": "wells.bcgs_numbers", "pk": 14012, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-06T21:31:36Z", "update_user": null, "update_date": null, "bcgs_number": "092G084423"}}, {"model": "wells.bcgs_numbers", "pk": 14013, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-07T19:23:26Z", "update_user": null, "update_date": null, "bcgs_number": "082E013443"}}, {"model": "wells.bcgs_numbers", "pk": 14014, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-08T21:17:40Z", "update_user": null, "update_date": null, "bcgs_number": "092H096124"}}, {"model": "wells.bcgs_numbers", "pk": 14015, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-09T04:26:02Z", "update_user": null, "update_date": null, "bcgs_number": "093L085142"}}, {"model": "wells.obswellstatuscode", "pk": "Active", "fields": {"create_user": "ETL_USER", "create_date": "2018-01-08T20:41:41.440Z", "update_user": "ETL_USER", "update_date": "2018-01-08T20:41:41.440Z", "description": "An observation well that is currently part of the provincial observation well network.", "display_order": 0, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.obswellstatuscode", "pk": "Inactive", "fields": {"create_user": "ETL_USER", "create_date": "2018-01-08T20:41:41.440Z", "update_user": "ETL_USER", "update_date": "2018-01-08T20:41:41.440Z", "description": "An observation well that no longer part of the provincial observation well network.", "display_order": 0, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.yieldestimationmethodcode", "pk": "AIR_LIFT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Air Lifting", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.yieldestimationmethodcode", "pk": "BAILING", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Bailing", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.yieldestimationmethodcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.yieldestimationmethodcode", "pk": "PUMPING", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Pumping", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.waterqualitycharacteristic", "pk": "CLEAR", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:52:30.273Z", "update_user": "steve", "update_date": "2018-09-12T18:52:30.273Z", "description": "Clear", "display_order": 1}}, {"model": "wells.waterqualitycharacteristic", "pk": "CLOUDY", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:52:48.092Z", "update_user": "steve", "update_date": "2018-09-12T18:52:48.092Z", "description": "Cloudy", "display_order": 2}}, {"model": "wells.waterqualitycharacteristic", "pk": "FRESH", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:53:02.106Z", "update_user": "steve", "update_date": "2018-09-12T18:53:02.106Z", "description": "Fresh", "display_order": 3}}, {"model": "wells.waterqualitycharacteristic", "pk": "GAS", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:53:11.894Z", "update_user": "steve", "update_date": "2018-09-12T18:53:11.894Z", "description": "Gas", "display_order": 4}}, {"model": "wells.waterqualitycharacteristic", "pk": "SALTY", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:53:24.630Z", "update_user": "steve", "update_date": "2018-09-12T18:53:24.630Z", "description": "Salty", "display_order": 5}}, {"model": "wells.waterqualitycharacteristic", "pk": "SEDIMENT", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:53:33.957Z", "update_user": "steve", "update_date": "2018-09-12T18:53:33.957Z", "description": "Sediment", "display_order": 6}}, {"model": "wells.developmentmethodcode", "pk": "AIR_LIFT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Air lifting", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.developmentmethodcode", "pk": "BAIL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Bailing", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.developmentmethodcode", "pk": "JET", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Jetting", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.developmentmethodcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 60, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.developmentmethodcode", "pk": "PUMP", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Pumping", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.developmentmethodcode", "pk": "SURGE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Surging", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.linermaterialcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.linermaterialcode", "pk": "PVC", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "PVC", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmethodcode", "pk": "OTHER", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Other", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmethodcode", "pk": "POURED", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Poured", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmethodcode", "pk": "PUMPED", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Pumped", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BN_BACKFLL", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Bentonite clay and backfill", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BN_CEM_MIX", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Bentonite clay and cement mixture", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BN_DRL_CUT", "fields": {"create_user": "WELLS", "create_date": "2008-05-07T17:26:37Z", "update_user": null, "update_date": null, "description": "Bentonite clay and drill cuttings", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BN_SD_WTMX", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Bentonite clay and sand and water mixture", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BN_STL_CSG", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Bentonite clay and steel casing", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BNTITE_CLY", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Bentonite clay", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "BN_WT_MIX", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Bentonite clay and water mixture", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "CON_GRT", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Concrete grout", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "GRT_STLCSG", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Grouted steel casing", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "NT_CMT_BMX", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Neat cement grout and bentonite mix", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "NT_CMT_GRT", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Neat cement grout", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "OTHER", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Other", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.surfacesealmaterialcode", "pk": "SND_CMT_GT", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:30Z", "update_user": null, "update_date": null, "description": "Sand cement grout", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "AIR_ROTARY", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Air Rotary", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "AUGER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Auger", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "CABLE_TOOL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Cable Tool", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "DRIVING", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Driving", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "DUGOUT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Dugout", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "DUO_ROTARY", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Duo Rotary", "display_order": 60, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "EXCAVATING", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Excavating", "display_order": 70, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "JETTING", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Jetting", "display_order": 80, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "MUD_ROTARY", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Mud Rotary", "display_order": 90, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingmethodcode", "pk": "UNK", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Unknown", "display_order": 110, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.drillingcompany", "pk": "0164ec0b-b1f5-4f1e-984c-7c0ee9263e9a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-05T18:07:08Z", "update_user": null, "update_date": null, "drilling_company_code": "507", "name": "Naxdis Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "01fb0256-7f11-4e11-a7ca-afbd2f0f8362", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "310", "name": "Klugger Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "022b60a4-f747-4130-b86c-484e5398f6a9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "199", "name": "Comverges Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "02b81b8d-1a14-4260-b4ab-f4d5b62b507f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "35", "name": "Nebulean Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "033b18cb-a83a-4cf2-aad3-e6e9cc2bb977", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "54", "name": "Ewaves Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "038abcff-637f-412c-af0a-57ad0bce166b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "252", "name": "Organica Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0422e584-f010-4d54-b409-379f8ba7bfe9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "320", "name": "Vortexaco Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "046c109c-4a6d-4560-acea-22a3abab0a5b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "420", "name": "Krag Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "454", "name": "Grainspot Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "06f170f5-53f0-45f1-b5d5-1680267ce7d7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "295", "name": "Ecraze Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "075bdb32-150c-4191-9abe-5c6abd485213", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "208", "name": "Assistia Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0892ea81-1d89-43d0-91b2-838113088bf6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "143", "name": "Zidox Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "09d45160-c752-478d-9886-ad7efc4ce195", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "80", "name": "Jimbies Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "09eada5c-1f37-4c34-98e6-80b217b8eadc", "fields": {"create_user": "WELLS", "create_date": "2005-02-25T18:26:25Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "472", "name": "Entogrok Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0aa2f785-1a24-4f45-aa3a-277df1e9698f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-07-13T21:16:00Z", "update_user": "PROXY_WELLS", "update_date": "2013-05-08T22:28:19Z", "drilling_company_code": "519", "name": "Temorak Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0b55bcc8-5736-4eb6-85e5-320da3437c48", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "234", "name": "Voratak Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0bb339a3-6cba-475d-9046-b71bc8145466", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "304", "name": "Permadyne Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0d844c8a-dcd8-498f-a406-db7c80ee7629", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-11-10T19:10:54Z", "update_user": null, "update_date": null, "drilling_company_code": "508", "name": "Zolarex Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0dd8ceb8-6252-4d70-a3dd-a2f4156327af", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "171", "name": "Fibrodyne Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0df0dcdd-8341-46f4-81f4-27fd4f755d23", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "51", "name": "Tubalum Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0e4a19d0-bd07-4933-98fc-e02a629770e1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "360", "name": "Mixers Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0f1e5d01-8339-42f1-8449-7151f3bffcc1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "127", "name": "Stelaecor Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0fa17be4-778b-4f46-9205-637541f05a5d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "23", "name": "Neurocell Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0fc9bb75-988c-4a39-872d-3dab940fc45c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "169", "name": "Ludak Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "0fd9e9cd-1a8f-477a-8961-bea22a4b11cd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "152", "name": "Hinway Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1016f1fb-e6b1-4c4c-8e42-7b9bd202a43a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "106", "name": "Insurety Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "108adf0c-ef26-4af7-8a86-ce2fe1f01e01", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "56", "name": "Myopium Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "10953f6f-2abd-4279-851c-70a03e10479e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "353", "name": "Telequiet Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "10f45e79-4517-4f64-9870-5d669fb417a4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-05-30T23:21:44Z", "update_user": null, "update_date": null, "drilling_company_code": "518", "name": "Fleetmix Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "11a6e09b-12f3-4e7d-85af-56ab45d7f655", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "400", "name": "Sarasonic Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1210ebea-4f8e-4922-bb51-4fc5b5055102", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "122", "name": "Geekosis Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "121f5b96-0a2e-489f-a96d-191cb1bfc830", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "348", "name": "Xerex Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "PROXY_WELLS", "update_date": "2008-08-28T22:10:40Z", "drilling_company_code": "104", "name": "Bezal Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "12c6bf11-dbf0-4ab5-ab61-54ada5a04e33", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "284", "name": "Aquafire Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "13a67328-5974-4b1b-b71b-34ebbf35bf82", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "287", "name": "Multiflex Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "13c0cb7b-1fee-44ab-b413-937fe4fc3603", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "354", "name": "Bluegrain Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "13eb55ef-a015-41ce-92a9-cd5e9f3d1ce5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "85", "name": "Diginetic Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "140077ab-a90a-41c7-91a8-52dbc749ad69", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "452", "name": "Ozean Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "149604ad-672f-4583-affc-137042819b70", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "445", "name": "Corporana Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "14fc0f25-16ee-48d1-9db8-c1a500192d69", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "282", "name": "Zillanet Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1513ce5d-6582-49c6-98d3-3bc5bdbac045", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "278", "name": "Gology Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "15c46add-e5ad-460c-afd7-1c08099cde81", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-14T17:53:29Z", "update_user": null, "update_date": null, "drilling_company_code": "1023", "name": "Geekology Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "15f94c5f-8c0b-4672-aa91-26ef2e2a4835", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "174", "name": "Pathways Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "16037843-10c1-4f0a-8102-7689fe6eccb8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "371", "name": "Comtest Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1642de1f-3576-46d1-a24f-b7e1fffe2927", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "65", "name": "Electonic Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "166319e7-05fb-4f1c-8082-96bbc8d71ac8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "255", "name": "Parleynet Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1670ad41-135a-467d-8ff0-d0953657e497", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "297", "name": "Furnafix Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "16bf2ee1-3cff-43fa-b4d5-b36dee896fc0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "273", "name": "Pyrami Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "16c0547a-6116-43b6-8e9f-6e56115b54b8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "121", "name": "Geoform Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "16eedad6-c0a8-4d4d-a3ab-557e94b8a044", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "322", "name": "Sloganaut Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "175be11e-2f01-4fa4-9d07-c8708847b772", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "254", "name": "Kidstock Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "17989fd1-ce9a-4ae9-8660-dccd43e094a1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "345", "name": "Wrapture Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "183260a1-3493-4ccf-a4ab-2a2f18057348", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "346", "name": "Jetsilk Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "18500725-b6f7-4961-9e38-3210b4e090c4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:41:04Z", "update_user": null, "update_date": null, "drilling_company_code": "1018", "name": "Eventix Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "18e79e47-10c8-45ea-a8b5-fa0b98c04e55", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "166", "name": "Interloo Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1982d74b-67ca-4794-8569-74693328cfcd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "146", "name": "Dentrex Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "19c2c6f4-4e70-47e5-b2ab-8be49c8ac51f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "112", "name": "Kog Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1a0cd035-b8e9-476d-9b3f-599992330302", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "468", "name": "Magnemo Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1a707c46-3c8c-449f-804f-b5e92ddd159d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "302", "name": "Maxemia Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1ad81693-38d6-406f-a7de-e9298101d423", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "429", "name": "Ecstasia Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1ad9db35-582d-4da8-aae6-9c3830e4d422", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-07-26T22:59:02Z", "update_user": null, "update_date": null, "drilling_company_code": "520", "name": "Kegular Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1b470056-9c63-4e59-ae5d-065afd1d1b3f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "235", "name": "Singavera Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1b74254a-af78-40c7-a464-cde7c9b44da8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "362", "name": "Roboid Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1d6b877d-65c0-4683-a1f4-260a52317155", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "427", "name": "Viasia Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1d7783db-c73b-438b-b79b-3a15f5c960bb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "40", "name": "Geeky Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1da2644f-7693-4c64-abb3-18ff50f7c04d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "232", "name": "Tropoli Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1df0b292-2f10-4bad-a22e-1900a9a52539", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "432", "name": "Magnafone Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1eb28f47-b346-4889-929d-58bcdf84307e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "261", "name": "Bittor Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1ecae0c0-7f76-4f02-b36b-4e71fb1bb665", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "90", "name": "Coriander Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "1fce8293-1fb6-4867-91aa-752a3601d430", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-23T17:59:26Z", "update_user": null, "update_date": null, "drilling_company_code": "498", "name": "Netur Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "20103ac3-0b40-4c24-bb78-8e7e99cf62f2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "370", "name": "Kaggle Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "20538064-5029-45f4-a5da-d5cd42a82f3d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "55", "name": "Zolar Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "20980de5-77c0-4429-9bc6-0f1cf7702f8d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "119", "name": "Rodemco Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2150a087-25e0-47e8-a801-c37442ee9b04", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "398", "name": "Affluex Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "21e5b156-9a85-4029-9ebd-9b64c4dceada", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "91", "name": "Combogene Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "240a6649-e612-453e-91a7-39c446718071", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "12", "name": "Momentia Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "24bef46e-82ee-4a1b-900d-5de31eedc9f8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "333", "name": "Earthwax Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "253439f8-a981-444e-9d2d-c9b4f066f14d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "48", "name": "Cinaster Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "257f7787-d304-4ec7-abfe-94f2ced5c96d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:35:26Z", "update_user": null, "update_date": null, "drilling_company_code": "1014", "name": "Zaphire Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2583ce56-c775-41fb-8c2b-2fac6f0646d3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "236", "name": "Qualitex Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "26030a46-9674-4c38-b00e-246d825f9fca", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "277", "name": "Repetwire Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "26bf2691-2db1-43d6-bd92-10d3a733ad2e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "326", "name": "Zilphur Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "270349e2-e693-452d-8bb9-d7dae3913405", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "203", "name": "Cytrek Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2712ba2d-a153-4157-8580-efa0a8407608", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "422", "name": "Velos Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "27b16ef8-36f7-4f9a-9954-fb394df45162", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "150", "name": "Exoblue Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "27b3b72f-7ede-4934-b1a5-d93c15869b5f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "201", "name": "Marqet Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "27cec79b-a3f1-477c-9a12-6cd54b0680ca", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-10-22T22:27:13Z", "update_user": "PROXY_WELLS", "update_date": "2007-10-22T22:29:12Z", "drilling_company_code": "486", "name": "Ginkogene Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2822670b-6394-4437-ac44-c4c7d4785477", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "237", "name": "Vicon Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "290fece3-9f09-4fe8-b5c1-57d4573274b4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "314", "name": "Insectus Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "296ec129-5bd2-4be1-bd06-98ff6de63c0c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "124", "name": "Chillium Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "29e93900-e6dc-4fbe-afe4-550ddf41c7e5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "424", "name": "Vinch Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2aa70e04-7c05-4294-b80a-10832cc27fe0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "441", "name": "Mangelica Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2b09eddb-1da8-41a6-a2b5-1e207d6c1690", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "19", "name": "Senmei Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2b4b1b00-765c-4adf-ad02-222079b8769f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "461", "name": "Zoid Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2b59fd3e-3aef-4957-8729-80046f10561a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "241", "name": "Avit Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2b87f7da-9c0a-41a6-947a-108b6d064331", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "308", "name": "Hatology Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2c15cd76-ee0a-45aa-b5b7-1083ad66ade3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "437", "name": "Irack Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2c4fd9cc-650a-46aa-803d-a2c6d643c477", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "6", "name": "Satiance Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2d09445b-1f77-49d0-9125-31650704e025", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "391", "name": "Isosure Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2d7f642a-9c1e-4674-9557-7d7c60185e63", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "110", "name": "Recognia Drilling Co"}}, {"model": "wells.drillingcompany", "pk": "2eca7ffc-b10e-4aa2-a366-1677ea8b8ed1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "111", "name": "Lyrichord Water Works"}}, {"model": "wells.drillingcompany", "pk": "2f43a6a0-7fd1-4db4-aff8-595bc9f47418", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "268", "name": "Xsports Water Works"}}, {"model": "wells.drillingcompany", "pk": "2f7517dc-26d0-4e6c-bb29-fae25f7f5ceb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "8", "name": "Cognicode Water Works"}}, {"model": "wells.drillingcompany", "pk": "316bc5a8-9c66-4d7c-8b14-847db593caf1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "UNK", "name": "Progenex Water Works"}}, {"model": "wells.drillingcompany", "pk": "31ef04f7-d33f-4509-9dd3-f2a6dc0c7e4f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "288", "name": "Animalia Water Works"}}, {"model": "wells.drillingcompany", "pk": "32031073-939d-4357-88d6-f5acfd83acf7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "426", "name": "Telequiet Water Works"}}, {"model": "wells.drillingcompany", "pk": "321f2de9-10cb-434c-8704-e59b4c4b8051", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "317", "name": "Centregy Water Works"}}, {"model": "wells.drillingcompany", "pk": "3298d239-a07f-49a5-806c-812fe112ff7d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "342", "name": "Codax Water Works"}}, {"model": "wells.drillingcompany", "pk": "32f1c292-a7fe-43e0-8c7c-3d6e3b911166", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-06-15T20:24:25Z", "update_user": "PROXY_WELLS", "update_date": "2009-06-15T20:25:15Z", "drilling_company_code": "502", "name": "Ecrater Water Works"}}, {"model": "wells.drillingcompany", "pk": "331c01e7-0b9f-441b-ae3f-a56ecd877210", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "213", "name": "Corporana Water Works"}}, {"model": "wells.drillingcompany", "pk": "336e36d8-d831-4547-aeb7-02cef0007227", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "378", "name": "Solaren Water Works"}}, {"model": "wells.drillingcompany", "pk": "34a177d1-cbc7-4012-820b-252ef2b88a39", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:31:42Z", "update_user": null, "update_date": null, "drilling_company_code": "1013", "name": "Quailcom Water Works"}}, {"model": "wells.drillingcompany", "pk": "34d6d72b-830c-488f-ae21-ea0cd1543193", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "393", "name": "Delphide Water Works"}}, {"model": "wells.drillingcompany", "pk": "34dc6535-96c3-4117-8458-fe480c9e4508", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "115", "name": "Pharmacon Water Works"}}, {"model": "wells.drillingcompany", "pk": "3528db7a-bb0b-40c6-906b-1c234559800c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "258", "name": "Thredz Water Works"}}, {"model": "wells.drillingcompany", "pk": "356bf5ae-a34c-46d9-abca-7e013772ee4b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "397", "name": "Combot Water Works"}}, {"model": "wells.drillingcompany", "pk": "3695aacf-8ab4-4079-a244-e062a7861387", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "31", "name": "Springbee Water Works"}}, {"model": "wells.drillingcompany", "pk": "371148b5-a080-449e-9fc6-6c8cd62d0a58", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "279", "name": "Telepark Water Works"}}, {"model": "wells.drillingcompany", "pk": "3760cf6c-926f-4fea-9f08-6c98805fae3c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "94", "name": "Tripsch Water Works"}}, {"model": "wells.drillingcompany", "pk": "376312d6-c18e-4824-989e-b65d513d3773", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "50", "name": "Nebulean Water Works"}}, {"model": "wells.drillingcompany", "pk": "37d66cc8-06f2-40aa-b0bb-956dca7fa8d8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "367", "name": "Nitracyr Water Works"}}, {"model": "wells.drillingcompany", "pk": "37df233f-2b10-4f39-ba3c-1efc06b0cbce", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "195", "name": "Acruex Water Works"}}, {"model": "wells.drillingcompany", "pk": "380a89e1-5f22-4c30-b1fa-0c2c4ca2c3fa", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "88", "name": "Ziore Water Works"}}, {"model": "wells.drillingcompany", "pk": "38404ed9-a8ea-4d11-a297-a2c691dda21a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "140", "name": "Jamnation Water Works"}}, {"model": "wells.drillingcompany", "pk": "3841ddc3-f077-44a5-9372-085e9c4a8fa9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "61", "name": "Biotica Water Works"}}, {"model": "wells.drillingcompany", "pk": "388bbc64-668f-4dfe-9426-dbefa60ebe5c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "141", "name": "Teraprene Water Works"}}, {"model": "wells.drillingcompany", "pk": "38e09c1e-fc5b-4f5f-ac46-bac5c3401a96", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "272", "name": "Reversus Water Works"}}, {"model": "wells.drillingcompany", "pk": "3926e04e-f562-4ecc-9957-2a996b3ab6b5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "292", "name": "Extrawear Water Works"}}, {"model": "wells.drillingcompany", "pk": "396142ad-1f19-4a9e-bc91-312ae15c14a8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "406", "name": "Tellifly Water Works"}}, {"model": "wells.drillingcompany", "pk": "39d552ff-af81-4471-9618-76fc517069ee", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "298", "name": "Prosely Water Works"}}, {"model": "wells.drillingcompany", "pk": "39e8f87f-d3eb-44ec-9ffd-3cd55c52aee2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "412", "name": "Geekosis Water Works"}}, {"model": "wells.drillingcompany", "pk": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-29T23:38:34Z", "update_user": null, "update_date": null, "drilling_company_code": "491", "name": "Jasper Water Works"}}, {"model": "wells.drillingcompany", "pk": "3a6195ba-b6f5-4204-bb52-c30dc91dd869", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "303", "name": "Architax Water Works"}}, {"model": "wells.drillingcompany", "pk": "3a93e1b3-11ca-4e88-b1da-1554d232a40c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "227", "name": "Plexia Water Works"}}, {"model": "wells.drillingcompany", "pk": "3c03c302-e417-48f3-9302-0bd55ac25d78", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "383", "name": "Rotodyne Water Works"}}, {"model": "wells.drillingcompany", "pk": "3c434731-0cfd-4f51-b27a-4d0d81770f00", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "224", "name": "Verton Water Works"}}, {"model": "wells.drillingcompany", "pk": "3c9f2173-be2b-4160-870b-c7b377cb8e2e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "374", "name": "Orbiflex Water Works"}}, {"model": "wells.drillingcompany", "pk": "3f230bb6-9620-4fec-a7aa-0922fcc3c8d0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "202", "name": "Toyletry Water Works"}}, {"model": "wells.drillingcompany", "pk": "3f9fa04d-4d86-458a-9670-7b397075c4b4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "113", "name": "Eyewax Water Works"}}, {"model": "wells.drillingcompany", "pk": "4004f3bb-3c0d-45f5-b33c-8dffd1bf6a3a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "411", "name": "Rodeocean Water Works"}}, {"model": "wells.drillingcompany", "pk": "40199e87-f4f8-4d37-bf62-3bf02e421447", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "37", "name": "Geologix Water Works"}}, {"model": "wells.drillingcompany", "pk": "4037edc6-1f02-44e7-9949-4c663981720e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "93", "name": "Signidyne Water Works"}}, {"model": "wells.drillingcompany", "pk": "417b5d4b-4552-4dbe-8514-47d9bd5474f9", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-07-04T17:09:02Z", "update_user": null, "update_date": null, "drilling_company_code": "492", "name": "Fitcore Water Works"}}, {"model": "wells.drillingcompany", "pk": "423b5ce7-da8c-431d-807f-d5212cff36c5", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:43:21Z", "update_user": null, "update_date": null, "drilling_company_code": "1020", "name": "Quility Water Works"}}, {"model": "wells.drillingcompany", "pk": "4296a719-4b04-422a-944c-f43a5d73bffb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "305", "name": "Ludak Water Works"}}, {"model": "wells.drillingcompany", "pk": "43ef6dec-953a-4a82-b923-fcf201c6b92c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "299", "name": "Ovation Water Works"}}, {"model": "wells.drillingcompany", "pk": "45c34e6f-b881-4068-bab5-143e785ab78b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "436", "name": "Gology Water Works"}}, {"model": "wells.drillingcompany", "pk": "464bdb26-7397-4cdb-b0c8-eee60a05b8e1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "399", "name": "Nurali Water Works"}}, {"model": "wells.drillingcompany", "pk": "46dbd6eb-afbd-476e-945f-d55af18f1097", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-14T18:00:57Z", "update_user": null, "update_date": null, "drilling_company_code": "503", "name": "Egypto Water Works"}}, {"model": "wells.drillingcompany", "pk": "47026b8d-1c46-42f0-ab67-6b9990e9308d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "245", "name": "Snowpoke Water Works"}}, {"model": "wells.drillingcompany", "pk": "474a83be-7a22-4495-8ce3-a64174afffe8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "226", "name": "Zillidium Water Works"}}, {"model": "wells.drillingcompany", "pk": "48371b17-144a-48a7-b1ca-a943c80edd61", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "109", "name": "Minga Water Works"}}, {"model": "wells.drillingcompany", "pk": "48a42aea-4313-42fd-ad0b-d93c3b9edaf2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "59", "name": "Imageflow Water Works"}}, {"model": "wells.drillingcompany", "pk": "48f43089-a56e-4136-8111-9c2dd3ad1ccb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "415", "name": "Comvey Water Works"}}, {"model": "wells.drillingcompany", "pk": "49833202-4583-4196-9ec6-407084e27f5a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "380", "name": "Trollery Water Works"}}, {"model": "wells.drillingcompany", "pk": "4994617a-0930-423d-85c6-992adb4b6e26", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "328", "name": "Conjurica Water Works"}}, {"model": "wells.drillingcompany", "pk": "49f28de5-686c-492c-9d56-a82ab8070633", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "256", "name": "Realmo Water Works"}}, {"model": "wells.drillingcompany", "pk": "4b1045ea-7b50-4a7a-98db-400db3280c93", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "39", "name": "Buzzmaker Water Works"}}, {"model": "wells.drillingcompany", "pk": "4b9b090a-0f7c-4422-ac03-d68b5b3d9251", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "243", "name": "Gazak Water Works"}}, {"model": "wells.drillingcompany", "pk": "4c740340-4e15-4e11-a51e-62f46c59b944", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "449", "name": "Bisba Water Works"}}, {"model": "wells.drillingcompany", "pk": "4d823fce-cef5-4ed0-909d-3be4f1e45150", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "74", "name": "Exospeed Water Works"}}, {"model": "wells.drillingcompany", "pk": "4d91d8d8-2023-4141-844f-996332e75d04", "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-05-05T21:55:28Z", "update_user": null, "update_date": null, "drilling_company_code": "1006", "name": "Puria Water Works"}}, {"model": "wells.drillingcompany", "pk": "4ec1bef0-ddec-43e4-b773-8cb126fe84ba", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "369", "name": "Multron Water Works"}}, {"model": "wells.drillingcompany", "pk": "4ee5e12e-8281-42e2-b489-04cddfe6a200", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "275", "name": "Endipin Water Works"}}, {"model": "wells.drillingcompany", "pk": "4f480de2-33e3-4df7-ac35-598aef32edaf", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "159", "name": "Oatfarm Water Works"}}, {"model": "wells.drillingcompany", "pk": "4fd1a566-5223-4077-b435-a4ceac4edc7b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "217", "name": "Boink Water Works"}}, {"model": "wells.drillingcompany", "pk": "4ffa8749-f5b0-43d0-8c8f-8f75588421d3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "318", "name": "Marqet Water Works"}}, {"model": "wells.drillingcompany", "pk": "501122a1-19bc-435e-b680-73b1f5bbf86a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "435", "name": "Vixo Water Works"}}, {"model": "wells.drillingcompany", "pk": "50aee03e-e9d5-4b1a-aac1-41afb1e66c1f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-08-27T16:07:40Z", "update_user": null, "update_date": null, "drilling_company_code": "1009", "name": "Dancerity Water Works"}}, {"model": "wells.drillingcompany", "pk": "516a9c71-dcf9-4b1b-b447-60bfd4a36d20", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "366", "name": "Accufarm Water Works"}}, {"model": "wells.drillingcompany", "pk": "523d93e9-5cf9-4ac7-b5a4-de44d85517ed", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "132", "name": "Kyaguru Water Works"}}, {"model": "wells.drillingcompany", "pk": "52406f9b-a62f-4acc-999e-b24d985da5c4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "335", "name": "Songlines Water Works"}}, {"model": "wells.drillingcompany", "pk": "5266094c-f933-4713-93fc-fe9a2866a21c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "386", "name": "Deepends Water Works"}}, {"model": "wells.drillingcompany", "pk": "52b36bb9-f7c8-4b61-a794-31aab3b1f7b7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-07T19:02:26Z", "update_user": null, "update_date": null, "drilling_company_code": "1012", "name": "Magneato Water Works"}}, {"model": "wells.drillingcompany", "pk": "52dfe15f-7581-48d3-841e-a7cec297fbe6", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-14T18:05:11Z", "update_user": null, "update_date": null, "drilling_company_code": "1024", "name": "Securia Water Works"}}, {"model": "wells.drillingcompany", "pk": "52f7fdcc-359f-4fb3-bfe8-1539e40118dc", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "408", "name": "Macronaut Water Works"}}, {"model": "wells.drillingcompany", "pk": "53118f99-4244-4655-95f9-4402a50b3f6d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "421", "name": "Franscene Water Works"}}, {"model": "wells.drillingcompany", "pk": "5370c687-ab21-4a97-82fe-950a3a32a8f9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "137", "name": "Schoolio Water Works"}}, {"model": "wells.drillingcompany", "pk": "53bc477d-f5dc-4ef0-b872-a52c0f863bdd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "338", "name": "Geekola Water Works"}}, {"model": "wells.drillingcompany", "pk": "53c0896e-80e8-487a-a0a2-bfaae022ab0e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "2", "name": "Pyrami Water Works"}}, {"model": "wells.drillingcompany", "pk": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "32", "name": "Goko Water Works"}}, {"model": "wells.drillingcompany", "pk": "541c9a4b-0d74-4a04-8d2c-67bf4d9b23de", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "161", "name": "Bulljuice Water Works"}}, {"model": "wells.drillingcompany", "pk": "54d096ac-372f-4580-8d03-d8943b3b89c1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "405", "name": "Genekom Water Works"}}, {"model": "wells.drillingcompany", "pk": "55ee9581-cdb6-4a54-9849-166f55665aba", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:40:06Z", "update_user": null, "update_date": null, "drilling_company_code": "1017", "name": "Ecolight Water Works"}}, {"model": "wells.drillingcompany", "pk": "561d0932-e291-4279-9a75-e7619920961e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "253", "name": "Combogene Water Works"}}, {"model": "wells.drillingcompany", "pk": "57350ce1-db09-4799-8324-f8a854c2801c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "352", "name": "Zolar Water Works"}}, {"model": "wells.drillingcompany", "pk": "58f9fd4c-76cb-49c9-93f4-06113268cb8f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "321", "name": "Waretel Water Works"}}, {"model": "wells.drillingcompany", "pk": "5ad7cd4f-e22f-43ef-9f85-a842b37ec371", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "350", "name": "Optyk Water Works"}}, {"model": "wells.drillingcompany", "pk": "5b8f51c9-a25b-4def-b14a-ea58477332c6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "200", "name": "Besto Water Works"}}, {"model": "wells.drillingcompany", "pk": "5b9e67d9-b86f-454a-b093-ac620132f384", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "300", "name": "Fiberox Water Works"}}, {"model": "wells.drillingcompany", "pk": "5c16ed42-f3ac-4d6f-a956-ff7ea97413ad", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "337", "name": "Skybold Water Works"}}, {"model": "wells.drillingcompany", "pk": "5cb5e741-d237-4099-ae8a-e6c8557cb264", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "128", "name": "Zilphur Water Works"}}, {"model": "wells.drillingcompany", "pk": "5d5caaa0-7234-4916-a4a3-5368ec571112", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-14T17:07:50Z", "update_user": null, "update_date": null, "drilling_company_code": "515", "name": "Remold Water Works"}}, {"model": "wells.drillingcompany", "pk": "5f31261f-2fb3-4b1e-86d2-cb64ef414d7e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "64", "name": "Xymonk Water Works"}}, {"model": "wells.drillingcompany", "pk": "60d604b1-7551-4f8c-924a-2817ca993cd8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "125", "name": "Zolarex Water Works"}}, {"model": "wells.drillingcompany", "pk": "60dab916-0bef-4854-89f5-e0f364fd39ea", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "332", "name": "Exospace Water Works"}}, {"model": "wells.drillingcompany", "pk": "60ea991e-bde7-4a7d-b26a-8f3896a1e746", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "99", "name": "Qaboos Water Works"}}, {"model": "wells.drillingcompany", "pk": "615c02ac-45c2-4d81-a285-0598f0e25380", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "266", "name": "Enervate Water Works"}}, {"model": "wells.drillingcompany", "pk": "6208193e-066e-4703-8e74-2e302e0005bb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "28", "name": "Frenex Water Works"}}, {"model": "wells.drillingcompany", "pk": "62409874-977b-4088-9588-6956de819c66", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-08-05T19:00:07Z", "update_user": null, "update_date": null, "drilling_company_code": "493", "name": "Mitroc Water Works"}}, {"model": "wells.drillingcompany", "pk": "6286631c-ab8f-4be9-b6c8-0516c45118e0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "76", "name": "Aquoavo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "63acc22e-325e-406b-964e-9e1e961a6697", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "259", "name": "Tetak Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "641aac79-23ec-4d3f-bbbf-dbda5987fb63", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "388", "name": "Geekology Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "64efec49-5522-4190-8844-1f2a9296265c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "361", "name": "Acium Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "65fd4020-4f86-4656-87f8-ad07cd7c74a0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-02-14T16:27:11Z", "update_user": null, "update_date": null, "drilling_company_code": "514", "name": "Zillatide Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "66a612c0-3400-4dcb-b236-69b6eb4b2d7c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "126", "name": "Enervate Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "66db7538-5182-4e5f-859d-ab5942acd81c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "439", "name": "Homelux Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "66f7acdf-5baf-474b-a0a5-b5ba72012dfd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "17", "name": "Quilm Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "675e4591-b9be-41a5-9ffd-b9b1c19ac6f2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "267", "name": "Caxt Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "677c2f21-4f3c-4d8d-8517-b2e6ee775501", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "138", "name": "Opticall Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6836f738-3fcb-45c2-943e-ca16bed96727", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "4", "name": "Ovium Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "683a14ef-f0aa-4987-849e-f80784e66891", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "248", "name": "Geologix Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "68e7e0a8-e5c1-4b09-b128-a20589eaa0a5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "14", "name": "Xurban Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6900f660-a452-4dc4-a570-943483fc4e8a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "178", "name": "Signity Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "PROXY_WELLS", "update_date": "2008-03-31T22:12:18Z", "drilling_company_code": "453", "name": "Lexicondo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "69799d97-74b0-42bc-a406-8e1039a41559", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "233", "name": "Acruex Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6986bf5a-55df-40b2-8f3a-ac57870adf3c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "179", "name": "Gadtron Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "145", "name": "Ginkogene Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6a301695-47af-4a02-b68d-ea83cc058bb2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "448", "name": "Unia Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6a328db8-64ff-411c-b2a5-7598fbaa47b1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "29", "name": "Blurrybus Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6b44835d-b7b6-4203-82ec-9d4cf12fd152", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "225", "name": "Hawkster Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6b46e159-15bd-46d4-a445-f5a56b76a496", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-05-27T22:08:27Z", "update_user": "PROXY_WELLS", "update_date": "2011-05-27T22:09:33Z", "drilling_company_code": "517", "name": "Waab Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6b54dcde-87d1-43b2-82b9-b284d09b4236", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "PROXY_WELLS", "update_date": "2015-10-05T15:46:42Z", "drilling_company_code": "1", "name": "Tropolis Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6ba9d57e-2f23-40ec-8437-8592458e29db", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-28T19:53:44Z", "update_user": null, "update_date": null, "drilling_company_code": "505", "name": "Collaire Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6baf54eb-d09b-4c45-afc1-be201ad712c7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "280", "name": "Jetsilk Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-03T17:42:23Z", "update_user": null, "update_date": null, "drilling_company_code": "494", "name": "Bizmatic Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6be40dfe-1c42-4c2c-a3df-afe82809b4fc", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "446", "name": "Magnemo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6c206882-b620-46ed-817b-fdee9b74c44c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "438", "name": "Tripsch Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6cf32f00-590e-4b4c-8aae-ca8a308ef2c1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "291", "name": "Klugger Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6d6c0b9e-948b-43cc-ae67-d1df675438a7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "22", "name": "Surelogic Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6daa6e5c-fa90-486f-81f9-6f076b95887b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "25", "name": "Rodeomad Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6f1a3e11-819a-451e-a7c8-33bd71e5218c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "73", "name": "Rodemco Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6f445364-e167-4e6c-b073-4781e6633bdf", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "265", "name": "Viagrand Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "6ffd37ab-0607-42b7-bfae-a31730d5b633", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "403", "name": "Zilch Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7081639a-9f2f-4c49-b930-5458afb444ca", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "311", "name": "Moltonic Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "70c10c03-45c9-47e9-9f93-8b0c205acf15", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "82", "name": "Anarco Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "70ef746f-d376-499b-8a5d-2eb0daec3590", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-01-21T21:04:50Z", "update_user": null, "update_date": null, "drilling_company_code": "1011", "name": "Dadabase Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "71642d57-b881-4686-b278-3844a1bd7806", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "276", "name": "Zensure Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "71cee8a4-93b7-4862-91a2-24732069410d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "34", "name": "Equitax Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "721f9887-3cd7-41be-9e40-181b1f35d58c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "42", "name": "Qualitex Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7277ce69-afce-41d1-8985-63b33c4c546b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "167", "name": "Zentix Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7280f34c-575d-48b2-8c18-ea38410eb994", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "3", "name": "Zillacon Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7293a599-4f80-4bb6-b80e-8fcf441b4658", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-29T18:43:42Z", "update_user": null, "update_date": null, "drilling_company_code": "490", "name": "Enormo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7345526b-cd2d-48e5-8884-2377ea0c7b2f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "418", "name": "Geekwagon Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "73502de2-5c8a-46ca-ace6-18d5f251d82c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "168", "name": "Grainspot Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "737381ee-6c5f-4b42-a91e-255984912222", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "180", "name": "Knowlysis Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "73ab229b-22ed-4650-ae37-1e00ce1835d2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "372", "name": "Zillar Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "74282bcf-b44f-495f-96c9-50478031d83c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "156", "name": "Ohmnet Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "414", "name": "Undertap Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "74fae3a9-9fed-46c0-b575-a0ff51535d3f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "13", "name": "Assistia Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "762798a7-db9e-429c-be28-3c1050b572e5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "364", "name": "Isosure Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "76d88efd-fe02-4f77-888e-981d5e645c76", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "334", "name": "Trasola Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "793742ed-464d-4be2-aee1-67228cd7c52f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-03-09T20:45:55Z", "update_user": null, "update_date": null, "drilling_company_code": "516", "name": "Teraprene Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "79916e22-c704-474b-b7f6-2282bec49bff", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "46", "name": "Silodyne Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "79f887b9-cbbb-4908-adef-2a60f99a188b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "307", "name": "Imageflow Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7a2b9716-f8cd-4aa2-94ef-647ae9f6262f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-23T19:33:21Z", "update_user": "PROXY_WELLS", "update_date": "2015-12-23T19:34:16Z", "drilling_company_code": "1010", "name": "Comtext Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7a97d979-9c16-4ba4-8166-cfb71b657f72", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "84", "name": "Imperium Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7ad6e239-502a-473f-9947-fb0962639776", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "135", "name": "Bunga Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7ae85f3b-ec81-4f37-8ef1-29f64aff4341", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "136", "name": "Satiance Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7b2d0193-ca22-4be5-9c2b-03df0c356e7e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "16", "name": "Micronaut Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7b65b147-071c-47f0-91d2-6f4e4dfd2dad", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "95", "name": "Zensus Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7d7fe3fb-33a9-4e18-85b1-db857b1ff02a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "260", "name": "Protodyne Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7db4e54a-47f8-49f4-b8ec-6e8e11e8b233", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "431", "name": "Talkola Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7e7c8bd3-7a34-4d18-b328-cbee62c08805", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-23T17:40:28Z", "update_user": null, "update_date": null, "drilling_company_code": "497", "name": "Entogrok Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7ebfa8dc-49b2-4960-80aa-c32b3b84e826", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "177", "name": "Amril Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7f4c7741-29c9-4c71-9117-83bf2b977f53", "fields": {"create_user": "WELLS", "create_date": "2005-01-07T19:27:42Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "470", "name": "Geofarm Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7f5f1f9e-0aa7-4e9d-8060-fd0c18a72d9b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "419", "name": "Assitia Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7fa4548f-164c-4b04-b3e9-9bfc4a52d6f0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "385", "name": "Xixan Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "7fb3440e-a271-40ab-b227-6116caa19f05", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "155", "name": "Interloo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "801f3527-432c-45f6-ba0b-7bf6c417a2ea", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "123", "name": "Straloy Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "80762e38-f146-43bb-b1e9-d672b29f80e2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "176", "name": "Gonkle Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "80d6582f-3136-4df4-a0b4-f617a64c8360", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "401", "name": "Neteria Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "824afe31-ee8e-467a-8add-1626126b627a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "389", "name": "Venoflex Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "828bc09b-e6d6-43ad-a6b2-571bef3a4414", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "290", "name": "Extro Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "82e56d3f-dcf5-435c-9db1-13607fe1c22d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "274", "name": "Signidyne Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "84f37ff6-4e48-425f-a2e7-182444e8dd18", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "165", "name": "Interfind Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "850e8b58-d90e-4034-a0a3-7d9ace7ae059", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "339", "name": "Neocent Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "854600ef-163b-49da-b462-2d0ccdcc3893", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-12-15T16:19:14Z", "update_user": null, "update_date": null, "drilling_company_code": "513", "name": "Olucore Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "85fa16d1-6863-4664-b6d0-c526342c1672", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "NA", "name": "Extremo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "87b5863e-e6f5-41b4-979c-ee05d4ff0ebc", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "118", "name": "Tingles Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8849bb4e-5dff-4ab3-b626-4076812ec3b5", "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-14T18:42:35Z", "update_user": null, "update_date": null, "drilling_company_code": "1005", "name": "Suremax Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8865ffa3-1f15-4488-b266-a18799d1db38", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "423", "name": "Pyramax Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "898758c1-82d6-4047-b13c-7efe5dee2d7a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "218", "name": "Entroflex Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8a84e3da-75df-47d8-bdca-0792132c4cf8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "120", "name": "Remotion Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8a9b23f6-f914-4dcc-b8b9-4509da07fc80", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "390", "name": "Inventure Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8bc5e5c4-9b55-4c85-877a-2dfd7c68e8cd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "86", "name": "Comvey Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8bd22e73-3ad8-4057-88ca-d642e552e86d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "30", "name": "Amtap Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8bd811c3-8d91-47b8-96fa-d5630433b6cd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "257", "name": "Parleynet Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8c9a5b40-792e-4b50-a8ac-50d88990746b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "26", "name": "Xelegyl Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8da54d3e-8325-4702-a1a4-416c85c7bc4d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "102", "name": "Trollery Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8dbcb373-7b99-4009-b8ac-93e6cfb29dd1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "153", "name": "Cincyr Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "8f623596-d451-4f94-80a3-33ee1e196823", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "78", "name": "Snowpoke Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "90615cb7-601b-41c0-86f5-e8c08e295894", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "100", "name": "Overfork Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "90cc3822-2c63-4a08-832a-315ac8540baf", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-28T23:27:40Z", "update_user": null, "update_date": null, "drilling_company_code": "489", "name": "Quizmo Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "90d9303a-6b03-41cb-978d-7c34236c5e8c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "33", "name": "Acumentor Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "914b637c-50ff-44bd-b2a3-37d86bdb24ce", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "246", "name": "Aeora Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "92a71018-c486-40ee-8031-1f5ed659d0c4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "209", "name": "Comvoy Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "93b322b0-a086-43d9-9ef5-80f8c0121e16", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "107", "name": "Nimon Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "93b5a776-7d47-4cfd-a765-4b2f5b5bd360", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "329", "name": "Ersum Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "9427d806-e92d-4529-8060-d668dfb58687", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "81", "name": "Accupharm Aquamasters"}}, {"model": "wells.drillingcompany", "pk": "9428a1f3-83c4-46c6-b830-3531990287a8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "459", "name": "Bobby Drillers"}}, {"model": "wells.drillingcompany", "pk": "94b227a7-761e-4528-bb36-cf1073600919", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "182", "name": "Rolland Drillers"}}, {"model": "wells.drillingcompany", "pk": "94e3f995-eb44-486f-bc3f-b9a913ca5c38", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "175", "name": "Hanny Drillers"}}, {"model": "wells.drillingcompany", "pk": "94f6bdda-d987-47af-bb36-caf6f7398419", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "356", "name": "Clement Drillers"}}, {"model": "wells.drillingcompany", "pk": "95639af3-0689-4fcc-8c43-6e4d4e616ead", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "286", "name": "Dorena Drillers"}}, {"model": "wells.drillingcompany", "pk": "9587a98e-6f0c-4cb5-97f3-6d91900c0292", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "319", "name": "Marena Drillers"}}, {"model": "wells.drillingcompany", "pk": "95ed0ceb-3a9c-439f-a19f-a799ce1d9c76", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "187", "name": "Sofia Drillers"}}, {"model": "wells.drillingcompany", "pk": "96a9e588-64d9-41db-82bc-1fc40594b5c4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-01-18T19:03:31Z", "update_user": null, "update_date": null, "drilling_company_code": "521", "name": "Annie Drillers"}}, {"model": "wells.drillingcompany", "pk": "96db7e76-c494-47ba-a184-99ab35928310", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "190", "name": "Avrit Drillers"}}, {"model": "wells.drillingcompany", "pk": "97f5276f-92ab-4fbf-9e7f-2669e3770609", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "229", "name": "Shanon Drillers"}}, {"model": "wells.drillingcompany", "pk": "9826ff10-2711-4ac3-b278-e35f925732df", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "327", "name": "Kaia Drillers"}}, {"model": "wells.drillingcompany", "pk": "99c54ad4-94e3-4ec7-aae2-908af9e10af8", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-04-19T21:08:42Z", "update_user": "PROXY_WELLS", "update_date": "2007-10-22T22:29:22Z", "drilling_company_code": "485", "name": "Patric Drillers"}}, {"model": "wells.drillingcompany", "pk": "9c165ce2-0d61-4e4e-8995-0565db72379b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "249", "name": "Giralda Drillers"}}, {"model": "wells.drillingcompany", "pk": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "440", "name": "Benjamen Drillers"}}, {"model": "wells.drillingcompany", "pk": "9c851452-2c9b-4cd6-b5a5-760cc0c8c58b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "160", "name": "Zed Drillers"}}, {"model": "wells.drillingcompany", "pk": "9d51963d-86b9-4099-a947-15bd3a0d6b23", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-07-15T17:29:55Z", "update_user": null, "update_date": null, "drilling_company_code": "504", "name": "Sylvia Drillers"}}, {"model": "wells.drillingcompany", "pk": "9db6ee86-1401-41fd-8b04-9cf6877ecbfe", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "462", "name": "Rosanna Drillers"}}, {"model": "wells.drillingcompany", "pk": "9de64860-45a0-49ee-9aff-db7e318a3ae8", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-28T23:11:40Z", "update_user": null, "update_date": null, "drilling_company_code": "488", "name": "Brittan Drillers"}}, {"model": "wells.drillingcompany", "pk": "9dff9db0-2bb4-488c-abf7-50729a177639", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-30T21:55:40Z", "update_user": null, "update_date": null, "drilling_company_code": "1004", "name": "Vinita Drillers"}}, {"model": "wells.drillingcompany", "pk": "9e27f0cd-1ec9-4da2-ba95-f8a22845ce20", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "450", "name": "Vaughn Drillers"}}, {"model": "wells.drillingcompany", "pk": "9f4ae753-724f-445e-b62b-bfd42fa4f782", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "315", "name": "Mendel Drillers"}}, {"model": "wells.drillingcompany", "pk": "9f6f1640-594c-4700-925d-d081033b01bb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "129", "name": "Valentine Drillers"}}, {"model": "wells.drillingcompany", "pk": "9fb5fe12-5271-49a4-9859-e1c7d47ab144", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "270", "name": "Sibyl Drillers"}}, {"model": "wells.drillingcompany", "pk": "9ffe3e78-c7ce-4aa4-bf1c-5abbdae5b5f8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "210", "name": "Blondy Drillers"}}, {"model": "wells.drillingcompany", "pk": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-29T23:32:42Z", "update_user": null, "update_date": null, "drilling_company_code": "499", "name": "Natale Drillers"}}, {"model": "wells.drillingcompany", "pk": "a1f639a2-eb1c-4126-80cd-c5782ee3005b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "382", "name": "Vivian Drillers"}}, {"model": "wells.drillingcompany", "pk": "a2e6588d-f2a5-4417-bed8-55756d7d0061", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "425", "name": "Lin Drillers"}}, {"model": "wells.drillingcompany", "pk": "a5642ef8-ed5d-4c17-8646-6b55e1edac5c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "289", "name": "Tamiko Drillers"}}, {"model": "wells.drillingcompany", "pk": "a59dd04c-8186-4e6d-b5a1-772d1c53b6eb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "189", "name": "Sylvia Drillers"}}, {"model": "wells.drillingcompany", "pk": "a646e3dd-cd46-4d2e-919c-538587a6ced7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "363", "name": "Kimbell Drillers"}}, {"model": "wells.drillingcompany", "pk": "a699ad8b-9585-4280-bf13-e29645d5b1d2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "285", "name": "Reuven Drillers"}}, {"model": "wells.drillingcompany", "pk": "a6c0b78f-bbad-472d-85eb-5f467fb8da31", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "205", "name": "Silvanus Drillers"}}, {"model": "wells.drillingcompany", "pk": "a6d18d27-081b-4d35-84fd-79816c757a13", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "434", "name": "Carine Drillers"}}, {"model": "wells.drillingcompany", "pk": "a70f144c-6031-4a3d-86f6-d8802c55c77e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "387", "name": "Nady Drillers"}}, {"model": "wells.drillingcompany", "pk": "a74042fd-e0f4-4ccc-8085-f29d224c1e09", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "92", "name": "Kippie Drillers"}}, {"model": "wells.drillingcompany", "pk": "a7453fcd-a10e-4ca8-af79-aee4de697adf", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "207", "name": "Elmore Drillers"}}, {"model": "wells.drillingcompany", "pk": "a7fba685-4cb9-4832-9c38-f68451a7dacd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "447", "name": "Hartley Drillers"}}, {"model": "wells.drillingcompany", "pk": "a814481a-28e9-4189-93ad-524bcb64dca6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "97", "name": "Jori Drillers"}}, {"model": "wells.drillingcompany", "pk": "a84f0a27-1786-4d0d-aafe-98f115b5a749", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-28T16:51:03Z", "update_user": null, "update_date": null, "drilling_company_code": "512", "name": "Marena Drillers"}}, {"model": "wells.drillingcompany", "pk": "a8b4acd3-d0cd-469b-aa85-f632179f6a51", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "309", "name": "Nicolette Drillers"}}, {"model": "wells.drillingcompany", "pk": "a8ef5bcf-99d1-4682-ae5a-e458de44482a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "283", "name": "Birgit Drillers"}}, {"model": "wells.drillingcompany", "pk": "a905e72d-89ae-4846-80d5-062b5dbb18a1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "359", "name": "Massimiliano Drillers"}}, {"model": "wells.drillingcompany", "pk": "a91dce8c-9e46-4d99-9c1f-cc7970e142f3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "139", "name": "Joelly Drillers"}}, {"model": "wells.drillingcompany", "pk": "a920d166-24f1-4d47-9a38-99ef271fe22a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "347", "name": "Robina Drillers"}}, {"model": "wells.drillingcompany", "pk": "a9c7fcf0-90e5-4295-be9d-da4da0fddaf4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "98", "name": "Loella Drillers"}}, {"model": "wells.drillingcompany", "pk": "aa69a3c6-1bbf-4cf8-98d7-8a86d3e31c32", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "231", "name": "Tiebold Drillers"}}, {"model": "wells.drillingcompany", "pk": "aa99d5d0-400e-4196-b961-7536dda4778d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "103", "name": "Fitzgerald Drillers"}}, {"model": "wells.drillingcompany", "pk": "aacc9de3-331c-4dcb-baf7-11fbfc485d2a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "376", "name": "Elliott Drillers"}}, {"model": "wells.drillingcompany", "pk": "ab11e44f-d3e8-4352-a243-60903303338d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "211", "name": "Nettle Drillers"}}, {"model": "wells.drillingcompany", "pk": "ab35b2ea-4afc-41b1-9c95-d3ef1986f5ae", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-06-15T16:08:30Z", "update_user": null, "update_date": null, "drilling_company_code": "510", "name": "Franny Drillers"}}, {"model": "wells.drillingcompany", "pk": "aba0989f-8a64-4a0c-a1fc-d73b2592db80", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "442", "name": "Kyrstin Drillers"}}, {"model": "wells.drillingcompany", "pk": "ac447551-ca85-4d29-81a6-70bed7a86244", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "147", "name": "Darya Drillers"}}, {"model": "wells.drillingcompany", "pk": "ac5c0e25-fb99-43bf-8f22-012f82d42c58", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "170", "name": "Agathe Drillers"}}, {"model": "wells.drillingcompany", "pk": "acc8b165-38a8-44b5-ba41-c75f185845f7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "43", "name": "Lishe Drillers"}}, {"model": "wells.drillingcompany", "pk": "acf86f01-c194-4482-9cde-a672b4e8ab37", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "220", "name": "Debor Drillers"}}, {"model": "wells.drillingcompany", "pk": "ad0a9e80-a233-4ad6-bcaa-6bf0e930083d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "343", "name": "Almeta Drillers"}}, {"model": "wells.drillingcompany", "pk": "ad55d6f5-d792-456a-ab64-a27bbc89526c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "296", "name": "Constantine Drillers"}}, {"model": "wells.drillingcompany", "pk": "add78c42-e88a-4806-bb1e-26851f846b3c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "186", "name": "Shelba Drillers"}}, {"model": "wells.drillingcompany", "pk": "aeabbd8b-51de-4b27-bce6-91a1ed06c3a7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "67", "name": "Igor Drillers"}}, {"model": "wells.drillingcompany", "pk": "af6cb442-28a4-4a94-8cab-0e709dcc2c64", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "313", "name": "Elinore Drillers"}}, {"model": "wells.drillingcompany", "pk": "af793b64-19ff-4066-9b51-1f8b02d12fb7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "221", "name": "Hastie Drillers"}}, {"model": "wells.drillingcompany", "pk": "afbc143e-03df-4748-8a4c-b0da72e8612f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "193", "name": "Marlon Drillers"}}, {"model": "wells.drillingcompany", "pk": "b00b1f12-c10a-4a1b-b88a-7fc1b8c0077d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:44:38Z", "update_user": null, "update_date": null, "drilling_company_code": "1021", "name": "Cindy Drillers"}}, {"model": "wells.drillingcompany", "pk": "b0759f2f-e5d0-42b9-a09c-e5b9d7be8dff", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "269", "name": "Nappie Drillers"}}, {"model": "wells.drillingcompany", "pk": "b0a913ea-00b8-4f61-b45d-2c16e0e8dc9e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "198", "name": "Marsiella Drillers"}}, {"model": "wells.drillingcompany", "pk": "b0e1edb7-f21c-4406-b182-d37ba506d5cb", "fields": {"create_user": "WELLS", "create_date": "2004-10-04T17:30:35Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "469", "name": "Erma Drillers"}}, {"model": "wells.drillingcompany", "pk": "b1774f14-e8f1-4009-b475-d4abf91c0163", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "306", "name": "Stearne Drillers"}}, {"model": "wells.drillingcompany", "pk": "b1fe73c0-9083-440b-b7d7-317548c52905", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "71", "name": "Aurlie Drillers"}}, {"model": "wells.drillingcompany", "pk": "b2a24c66-1db2-441b-8cf1-acc4a018cfe6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "77", "name": "Marlie Drillers"}}, {"model": "wells.drillingcompany", "pk": "b3afc507-66a8-4ea0-aab3-4241a914aaba", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "134", "name": "Symon Drillers"}}, {"model": "wells.drillingcompany", "pk": "b48a003d-c63a-4e9b-ac42-1adfaf336052", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "130", "name": "Bliss Drillers"}}, {"model": "wells.drillingcompany", "pk": "b4e8a03c-834d-4ba2-a7c6-77782e3e8606", "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-06-25T16:32:41Z", "update_user": null, "update_date": null, "drilling_company_code": "1007", "name": "Irena Drillers"}}, {"model": "wells.drillingcompany", "pk": "b582ec59-dc28-4545-af43-9a8765e59998", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "373", "name": "Marlon Drillers"}}, {"model": "wells.drillingcompany", "pk": "b58e59f0-6612-421d-acdb-25bb153a7f69", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "395", "name": "Fleur Drillers"}}, {"model": "wells.drillingcompany", "pk": "b5ad524a-292d-4e1e-9cd0-82fbe5b038c3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "105", "name": "Richart Drillers"}}, {"model": "wells.drillingcompany", "pk": "b60d10cd-28a0-4879-ae4d-47db3cd61345", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "96", "name": "Claudius Drillers"}}, {"model": "wells.drillingcompany", "pk": "b681c58f-f9e8-4aa7-aab0-8031fcf2ffb1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "355", "name": "Kahaleel Drillers"}}, {"model": "wells.drillingcompany", "pk": "b8283457-478f-46ad-b19f-68a98346abeb", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "60", "name": "Perry Drillers"}}, {"model": "wells.drillingcompany", "pk": "b92df4f9-cb28-411a-bc09-d25a726af69d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "407", "name": "Glenn Drillers"}}, {"model": "wells.drillingcompany", "pk": "b9c2efb0-a8bb-4670-bb40-580c1e0832dd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "47", "name": "Janice Drillers"}}, {"model": "wells.drillingcompany", "pk": "bbdc8d1e-e2a3-484b-baa7-4d4ec355371c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "149", "name": "Coralie Drillers"}}, {"model": "wells.drillingcompany", "pk": "bce73d31-fc1d-4049-a540-8714cc325ff9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "89", "name": "Elianore Drillers"}}, {"model": "wells.drillingcompany", "pk": "bd0bf996-b2c9-40da-8af4-6b3b209ffe11", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "66", "name": "Jacqui Drillers"}}, {"model": "wells.drillingcompany", "pk": "bd3090f8-0647-4148-9d91-f3efdd740b14", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "196", "name": "Aluino Drillers"}}, {"model": "wells.drillingcompany", "pk": "bd746e04-f792-4417-badd-b3c69ff9f7c6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "62", "name": "Godard Drillers"}}, {"model": "wells.drillingcompany", "pk": "bd7907e7-71d7-43e6-bc9f-91a1e6c6315b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "5", "name": "Delinda Drillers"}}, {"model": "wells.drillingcompany", "pk": "bd8f03fb-fe9a-4fa7-be8a-05a96fd22e99", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "197", "name": "Paige Drillers"}}, {"model": "wells.drillingcompany", "pk": "bdc2fb86-a387-45f9-a91c-288170940227", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "464", "name": "Janice Drillers"}}, {"model": "wells.drillingcompany", "pk": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-05T17:38:04Z", "update_user": null, "update_date": null, "drilling_company_code": "1022", "name": "Dom Drillers"}}, {"model": "wells.drillingcompany", "pk": "be4d081f-dab4-42cc-839b-945f00cd40ff", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "238", "name": "Farlie Drillers"}}, {"model": "wells.drillingcompany", "pk": "bed3aa91-0585-48cf-983d-cea47b7c24e5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "460", "name": "Rodolphe Drillers"}}, {"model": "wells.drillingcompany", "pk": "bedd57b1-c1b1-41ce-8151-b2ec3173dce8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "336", "name": "Boyce Drillers"}}, {"model": "wells.drillingcompany", "pk": "bf5d31ea-8a5a-4363-8a5e-6c00eed03058", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "44", "name": "Industrial Drillers"}}, {"model": "wells.drillingcompany", "pk": "bfebc9a7-9612-4c4b-a9a6-1de647534280", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "451", "name": "Clayson Drillers"}}, {"model": "wells.drillingcompany", "pk": "c013f305-fce3-4546-aa73-9422e905861c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "271", "name": "Saunder Drillers"}}, {"model": "wells.drillingcompany", "pk": "c0261a3e-93f0-45d1-b1d5-9bd01d73a24b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "251", "name": "Kati Drillers"}}, {"model": "wells.drillingcompany", "pk": "c0d0459f-33f8-48a9-a89e-3f4b83c0337a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "294", "name": "Kendal Drillers"}}, {"model": "wells.drillingcompany", "pk": "c0ebdb5a-c40a-4e05-9d5d-56a8c6bf8d38", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "417", "name": "Elinor Drillers"}}, {"model": "wells.drillingcompany", "pk": "c1d324c5-81f1-491b-9610-0bfadba62ba8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "204", "name": "Saunder Drillers"}}, {"model": "wells.drillingcompany", "pk": "c298f5f0-6b21-4819-b27d-471e4376a843", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "293", "name": "Torry Drillers"}}, {"model": "wells.drillingcompany", "pk": "c302de28-5a99-4c87-98b0-88ac199d4778", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "331", "name": "Nicholle Drillers"}}, {"model": "wells.drillingcompany", "pk": "c3f2dc71-e641-47cb-8200-03e09307c0ce", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-08-20T18:01:11Z", "update_user": null, "update_date": null, "drilling_company_code": "1001", "name": "Iona Drillers"}}, {"model": "wells.drillingcompany", "pk": "c3f767a7-485b-4182-b521-ae642450b414", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "392", "name": "Bart Drillers"}}, {"model": "wells.drillingcompany", "pk": "c4b24b44-f05e-46ef-8dcb-c866087679c4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "131", "name": "Dannie Drillers"}}, {"model": "wells.drillingcompany", "pk": "c515bdbb-d938-4cd3-87e9-4e3637947580", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "75", "name": "Rory Drillers"}}, {"model": "wells.drillingcompany", "pk": "c597ef71-c641-43db-aecb-44ddc7d41dd2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "463", "name": "Albertina Drillers"}}, {"model": "wells.drillingcompany", "pk": "c5c38228-9408-4847-9411-1cd39f4cb7a5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "467", "name": "Eirena Drillers"}}, {"model": "wells.drillingcompany", "pk": "c5c5621a-e252-4994-9b89-5f0e1943805a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "228", "name": "Mychal Drillers"}}, {"model": "wells.drillingcompany", "pk": "c6ee50d8-9618-4868-aa1c-ab5430c1b6c5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "185", "name": "Coop Drillers"}}, {"model": "wells.drillingcompany", "pk": "c8611543-059b-4466-95ab-fd32c78d5a30", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "377", "name": "Heath Drillers"}}, {"model": "wells.drillingcompany", "pk": "c88bf0ba-6be3-4553-b8d2-7498837e70b3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "142", "name": "Kayley Drillers"}}, {"model": "wells.drillingcompany", "pk": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-10-19T17:04:45Z", "update_user": null, "update_date": null, "drilling_company_code": "506", "name": "Cliff Drillers"}}, {"model": "wells.drillingcompany", "pk": "c900774b-c100-4ff8-ac84-365ec492b813", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "194", "name": "Dolli Drillers"}}, {"model": "wells.drillingcompany", "pk": "c92e9f26-ca63-4999-a6e1-941720b7ba62", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "325", "name": "Charmine Drillers"}}, {"model": "wells.drillingcompany", "pk": "c97f1dca-4001-4323-bb1e-32b615b0b6a1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "183", "name": "Keen Drillers"}}, {"model": "wells.drillingcompany", "pk": "c998d3b7-9a36-434b-b38b-66d69c239628", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "27", "name": "Abel Drillers"}}, {"model": "wells.drillingcompany", "pk": "c9ab08d2-7994-4dbf-a505-f2944380eb93", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "330", "name": "Phebe Drillers"}}, {"model": "wells.drillingcompany", "pk": "ca4a99b0-0dcf-4385-bccd-93a6e865d08e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:38:18Z", "update_user": null, "update_date": null, "drilling_company_code": "1016", "name": "Christin Drillers"}}, {"model": "wells.drillingcompany", "pk": "cb341f51-afe9-486a-b10b-f38003ae9118", "fields": {"create_user": "WELLS", "create_date": "2005-03-04T17:42:48Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "471", "name": "Blondelle Drillers"}}, {"model": "wells.drillingcompany", "pk": "cc1b9db9-7fe1-48e2-a7b9-f87588eaad7e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "38", "name": "Rolph Drillers"}}, {"model": "wells.drillingcompany", "pk": "cc2e8fc8-3331-42b5-b938-247cd477d29f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "413", "name": "Wernher Drillers"}}, {"model": "wells.drillingcompany", "pk": "cc815408-35e9-44e2-aad4-39ba872a16b5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "349", "name": "Alyssa Drillers"}}, {"model": "wells.drillingcompany", "pk": "cc8e7e6e-df65-433f-a854-75e80fc72823", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "222", "name": "Welch Drillers"}}, {"model": "wells.drillingcompany", "pk": "ccbc1255-81c7-4dd2-babe-ea3a98780de4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-30T23:29:02Z", "update_user": null, "update_date": null, "drilling_company_code": "1003", "name": "Humfrid Drillers"}}, {"model": "wells.drillingcompany", "pk": "cd1b59c7-cbcd-4e8d-915b-887adf599bef", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "239", "name": "Vern Drillers"}}, {"model": "wells.drillingcompany", "pk": "cd38a6b5-50fb-4564-ba2a-61fc7615435c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "206", "name": "Agnella Drillers"}}, {"model": "wells.drillingcompany", "pk": "cd795564-c592-4840-a2db-7f91b4f10acd", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "219", "name": "Tillie Drillers"}}, {"model": "wells.drillingcompany", "pk": "cdbb2912-877c-4873-ba15-632147b7b0e1", "fields": {"create_user": "PROXY_WELLS", "create_date": "2009-04-29T16:17:15Z", "update_user": null, "update_date": null, "drilling_company_code": "501", "name": "Julius Drillers"}}, {"model": "wells.drillingcompany", "pk": "cded940d-ec54-445b-878e-f4ebf021ff35", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "455", "name": "Meggi Drillers"}}, {"model": "wells.drillingcompany", "pk": "cf3d894e-7de0-4c3e-a25d-39823c1fb692", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "212", "name": "Bart Drillers"}}, {"model": "wells.drillingcompany", "pk": "cf829288-7768-4597-8f93-395fa1b33593", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "368", "name": "Cathrin Drillers"}}, {"model": "wells.drillingcompany", "pk": "cfd908ad-6633-4d09-b5a0-f33987a20a42", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "83", "name": "Cherice Drillers"}}, {"model": "wells.drillingcompany", "pk": "d02e6218-da52-4644-ad27-8846c1094193", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "148", "name": "Simmonds Drillers"}}, {"model": "wells.drillingcompany", "pk": "d07144f9-6da5-4cd0-a20f-ec44c0ab1d69", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "214", "name": "Donielle Drillers"}}, {"model": "wells.drillingcompany", "pk": "d0b47e86-2a84-4f2e-90b2-069dc3393e20", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "396", "name": "Domeniga Drillers"}}, {"model": "wells.drillingcompany", "pk": "d0c2f46b-6845-40f6-9ae2-390ec3f2defe", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "428", "name": "Michele Drillers"}}, {"model": "wells.drillingcompany", "pk": "d0ddb486-e6f9-4d32-a0dd-fa3777653a98", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "324", "name": "Hastie Drillers"}}, {"model": "wells.drillingcompany", "pk": "d31b711d-e89f-403c-b9c2-c5d7142a664c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "52", "name": "Dolli Drillers"}}, {"model": "wells.drillingcompany", "pk": "d343dddf-d810-4dd8-be4b-a84b7d9d9a7f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "87", "name": "Bianca Drillers"}}, {"model": "wells.drillingcompany", "pk": "d44a0e3d-7461-41c9-9bdf-d215fb9e0957", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "242", "name": "Marlon Drillers"}}, {"model": "wells.drillingcompany", "pk": "d44d1eaa-f016-42c5-94df-0f632240a42d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "341", "name": "Cindy Drillers"}}, {"model": "wells.drillingcompany", "pk": "d4d2e3a6-8815-4c59-b55e-2e919befce96", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "163", "name": "Erl Drillers"}}, {"model": "wells.drillingcompany", "pk": "d55f45d2-8778-472b-94b4-3fbf5efb17d5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "70", "name": "Phebe Drillers"}}, {"model": "wells.drillingcompany", "pk": "d5b3f8b1-25f8-47c5-8b85-832e23e7cb26", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "53", "name": "Adora Drillers"}}, {"model": "wells.drillingcompany", "pk": "d61c4937-14dc-453b-8430-eb9ab1cf094e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T18:14:32Z", "update_user": null, "update_date": null, "drilling_company_code": "495", "name": "Janie Drillers"}}, {"model": "wells.drillingcompany", "pk": "d64836dd-e423-47f2-bd71-70225ffdd0f9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "20", "name": "Mathian Drillers"}}, {"model": "wells.drillingcompany", "pk": "d7e4283c-ea1c-454e-b4ca-ec7b62d95d85", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "430", "name": "Cull Drillers"}}, {"model": "wells.drillingcompany", "pk": "d83825a9-3957-411d-a6e7-69beb06bbabf", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "108", "name": "Marlon Drillers"}}, {"model": "wells.drillingcompany", "pk": "d954cd4b-e62f-4851-b0d4-a2b4387fa077", "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-11-20T19:48:02Z", "update_user": "PROXY_WELLS", "update_date": "2007-11-20T19:49:07Z", "drilling_company_code": "487", "name": "Joann Drillers"}}, {"model": "wells.drillingcompany", "pk": "d9aa680f-c391-4272-8bc1-155e14c4ba63", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "230", "name": "Eulalie Drillers"}}, {"model": "wells.drillingcompany", "pk": "da7174d6-ff6d-4a8f-8b37-9e2fca51a3c9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "357", "name": "Abbi Drillers"}}, {"model": "wells.drillingcompany", "pk": "da7c9245-30aa-491a-90d8-9b0854440019", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "11", "name": "Lyssa Drillers"}}, {"model": "wells.drillingcompany", "pk": "da97e971-e5a4-4e1d-b34d-e7a65669a0a8", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "79", "name": "Carlotta Drillers"}}, {"model": "wells.drillingcompany", "pk": "db24b320-00b0-4a7c-a108-743d17bba84c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "24", "name": "Linnet Drillers"}}, {"model": "wells.drillingcompany", "pk": "db40f8f3-f270-4984-b045-7fb706e3817b", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "116", "name": "Krisha Drillers"}}, {"model": "wells.drillingcompany", "pk": "db4bbb76-116d-407d-b8ea-b8cec0e87c9c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "144", "name": "Astrix Drillers"}}, {"model": "wells.drillingcompany", "pk": "dc872b7c-49fd-40af-b0e0-457233543793", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "375", "name": "Hilly Drillers"}}, {"model": "wells.drillingcompany", "pk": "dca0e4e4-63e5-480e-b5e0-b31d60f31616", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "281", "name": "Queenie Drillers"}}, {"model": "wells.drillingcompany", "pk": "dd1dd3f6-b732-4628-a079-dded1120055e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "15", "name": "Gayler Drillers"}}, {"model": "wells.drillingcompany", "pk": "dda6e8ee-e03e-4e9e-a7ec-db122367a040", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "344", "name": "Ashil Drillers"}}, {"model": "wells.drillingcompany", "pk": "ddd132d0-205d-417a-9402-a9918f1d1e5e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "215", "name": "Cyndi Drillers"}}, {"model": "wells.drillingcompany", "pk": "debe40e2-0aca-46bd-99af-a4a393c0aff6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "45", "name": "Caria Drillers"}}, {"model": "wells.drillingcompany", "pk": "decca31f-cdb3-436a-ad58-37e3270aed26", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "191", "name": "Bliss Drillers"}}, {"model": "wells.drillingcompany", "pk": "df549242-0615-49d5-8a0d-5a0ff198e00e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "404", "name": "Gayelord Drillers"}}, {"model": "wells.drillingcompany", "pk": "e051f791-ea81-4fb3-b4a9-5efdb64fb70d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "456", "name": "Madelin Drillers"}}, {"model": "wells.drillingcompany", "pk": "e0614d0f-6858-410c-8621-1b22c46f2670", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "381", "name": "Carmel Drillers"}}, {"model": "wells.drillingcompany", "pk": "e06d51b1-b31e-45b1-b1e3-cfca55bb06a6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "458", "name": "Olia Drillers"}}, {"model": "wells.drillingcompany", "pk": "e239c535-fb13-495c-a244-8b60f8185a03", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "184", "name": "Kalli Drillers"}}, {"model": "wells.drillingcompany", "pk": "e2a089d9-43df-4a30-8565-e9061f907097", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "63", "name": "Vern Drillers"}}, {"model": "wells.drillingcompany", "pk": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "PROXY_WELLS", "update_date": "2012-04-04T21:25:40Z", "drilling_company_code": "443", "name": "Tallie Drillers"}}, {"model": "wells.drillingcompany", "pk": "e2af2859-7dbb-42df-b40a-6b4a9e309208", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "172", "name": "Celisse Drillers"}}, {"model": "wells.drillingcompany", "pk": "e3026564-8050-4737-8291-51fa54bc439e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "465", "name": "Phebe Drillers"}}, {"model": "wells.drillingcompany", "pk": "e3885233-ec40-4c95-b004-d2170a7c28c2", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "394", "name": "Marla Drillers"}}, {"model": "wells.drillingcompany", "pk": "e3b1dfea-bf34-4873-a7e3-a25087ffe57f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "18", "name": "Dorena Drillers"}}, {"model": "wells.drillingcompany", "pk": "e4764018-262c-433e-82db-3c383dd4c040", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "240", "name": "Dorena Drillers"}}, {"model": "wells.drillingcompany", "pk": "e4988113-f4b6-496b-a035-9f0d593f0a84", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-07-27T22:36:41Z", "update_user": "PROXY_WELLS", "update_date": "2010-07-27T22:36:50Z", "drilling_company_code": "511", "name": "Kailey Drillers"}}, {"model": "wells.drillingcompany", "pk": "e5ab66cf-6796-4cda-a4ff-5ad20567e79c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "379", "name": "Mayne Drillers"}}, {"model": "wells.drillingcompany", "pk": "e6aa8761-d340-4daf-b1f2-7be529e1e7b8", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-19T18:30:02Z", "update_user": null, "update_date": null, "drilling_company_code": "509", "name": "Euell Drillers"}}, {"model": "wells.drillingcompany", "pk": "e6bcd1e7-51ca-411a-b102-de506331b0cf", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "323", "name": "Coop Drillers"}}, {"model": "wells.drillingcompany", "pk": "e7319052-ece1-4f0e-a34d-3c157e7f16a5", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "181", "name": "Agnella Drillers"}}, {"model": "wells.drillingcompany", "pk": "e89ab9f4-5b06-432a-ab27-9acfc13783a0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "263", "name": "Cinderella Drillers"}}, {"model": "wells.drillingcompany", "pk": "e8c8a549-3658-4ed8-820b-24516772b62a", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "151", "name": "Jodie Drillers"}}, {"model": "wells.drillingcompany", "pk": "e8d08911-ce3f-474b-ba60-9198b84e3423", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "216", "name": "Dehlia Drillers"}}, {"model": "wells.drillingcompany", "pk": "e96a2772-34f0-413f-b379-c7ad4cc5856c", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "69", "name": "Ashleigh Drillers"}}, {"model": "wells.drillingcompany", "pk": "e987dd72-63b8-45f0-92c7-c120f2913903", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "264", "name": "Estrella Drillers"}}, {"model": "wells.drillingcompany", "pk": "ebc5f74d-fedb-45ed-b8cc-a13fd5478b90", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "247", "name": "Rooney Drillers"}}, {"model": "wells.drillingcompany", "pk": "eca55d9d-d3f5-4531-a2f6-cdcbfb045c94", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "250", "name": "Loni Drillers"}}, {"model": "wells.drillingcompany", "pk": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "36", "name": "Normie Drillers"}}, {"model": "wells.drillingcompany", "pk": "edb03572-4286-4b8b-92f9-f1b2065bf9a0", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "72", "name": "Viva Drillers"}}, {"model": "wells.drillingcompany", "pk": "ee401a70-ec48-45b3-8be9-6e6386d8d74c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-10-29T23:33:05Z", "update_user": null, "update_date": null, "drilling_company_code": "500", "name": "Jermaine Drillers"}}, {"model": "wells.drillingcompany", "pk": "ee99701f-5e98-43ea-bc8a-06892bbcbed4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "365", "name": "Delilah Drillers"}}, {"model": "wells.drillingcompany", "pk": "efc85ca7-0785-44dd-abfd-22e4af737595", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "133", "name": "Richart Drillers"}}, {"model": "wells.drillingcompany", "pk": "f019a49a-4ba7-4abf-9707-dc5e1c8aaf23", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "192", "name": "Marthena Drillers"}}, {"model": "wells.drillingcompany", "pk": "f01d25a1-e44c-44ff-8e7d-ab8921f95149", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "466", "name": "Richmound Drillers"}}, {"model": "wells.drillingcompany", "pk": "f1212571-87f5-4640-b5c3-e30349140ec4", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "162", "name": "Darwin Drillers"}}, {"model": "wells.drillingcompany", "pk": "f1382969-52cd-413b-9fd1-eca4d9f705db", "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-08-27T16:06:38Z", "update_user": "PROXY_WELLS", "update_date": "2015-08-27T16:07:12Z", "drilling_company_code": "1008", "name": "Tiffy Drillers"}}, {"model": "wells.drillingcompany", "pk": "f189d929-32e1-492d-8422-50c31100d368", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "49", "name": "Agnella Drillers"}}, {"model": "wells.drillingcompany", "pk": "f1c1d0f8-4320-4400-b3c3-9e225147d762", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "68", "name": "Lorry Drillers"}}, {"model": "wells.drillingcompany", "pk": "f1c814a4-1d28-4cc2-afaf-0e89b28c56ba", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "154", "name": "Kiah Drillers"}}, {"model": "wells.drillingcompany", "pk": "f204ec88-6e61-4366-9906-f3653489e099", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "312", "name": "Burlie Drillers"}}, {"model": "wells.drillingcompany", "pk": "f212ca1b-d8ab-4f4d-9ca9-ebb66af2daa3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "157", "name": "Slumberia Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f215f413-1e53-4ac5-974d-6467c5261014", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "409", "name": "Kyaguru Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f232d9ca-6cc6-4d17-9b83-d3239f8f34d9", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:36:33Z", "update_user": null, "update_date": null, "drilling_company_code": "1015", "name": "Stockpost Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f310e805-ed47-4fa3-8473-6f43258ffd8d", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "351", "name": "Zensure Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f31d919d-1fe4-425e-917e-0f9b9547e584", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "262", "name": "Bedlam Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f35826c7-1c0f-4a2e-8f60-292c87042c14", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "244", "name": "Irack Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f42cc744-8c21-4199-9200-72c0c3b27e8f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "101", "name": "Zillan Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f451c45b-be6a-4fb1-977a-80c60e5bc1a9", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "301", "name": "Ontagene Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f465c3bd-c9af-48c0-b609-7060e204a1a3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "9", "name": "Ebidco Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f5608daa-2f0e-4eec-883a-f963e391afa1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "164", "name": "Kegular Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f5d77642-5923-4e81-b7ad-c55cdd5383d1", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "188", "name": "Qimonk Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f606669c-a60c-422d-859a-fdc54278d9b0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2008-09-12T18:14:53Z", "update_user": null, "update_date": null, "drilling_company_code": "496", "name": "Flotonic Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f6976e77-4b4e-4550-a358-b04f94f2cfa6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "57", "name": "Genesynk Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f6c58528-3bf2-46d2-8777-4ebe0c1837ce", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "41", "name": "Kiggle Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f6f30d40-d9a3-4bcd-bd7f-3b61fd75d8e6", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "457", "name": "Radiantix Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f7cb26a4-bdf8-4843-bb27-82214451ed0e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "21", "name": "Orbin Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f8304133-f0c2-4a7f-8000-caa9efb59e8e", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "58", "name": "Cinesanct Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "117", "name": "Tubalum Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f9431cd7-017c-447d-926d-b48c26a7bb57", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "158", "name": "Aclima Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f954cabb-3731-49dc-a095-0bb3cce06b14", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "384", "name": "Turnabout Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f997c1b1-44b0-42c7-a38e-f16e357eb845", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-21T23:42:32Z", "update_user": null, "update_date": null, "drilling_company_code": "1019", "name": "Eyewax Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f9f1516f-0884-4c46-8f28-3fb737b406a3", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "358", "name": "Comvey Waterwell"}}, {"model": "wells.drillingcompany", "pk": "f9fc6f5e-1ade-42b6-9b94-bd84c675bb58", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "410", "name": "Magnemo Waterwell"}}, {"model": "wells.drillingcompany", "pk": "fab63643-4962-40ae-8e2d-974ce75de335", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "173", "name": "Quadeebo Waterwell"}}, {"model": "wells.drillingcompany", "pk": "fb4de0e4-4f34-4e89-80c8-1d1170bf2e3f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "114", "name": "Comveyor Waterwell"}}, {"model": "wells.drillingcompany", "pk": "fbce060f-cbaa-480e-a5cc-d9681aa7d350", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:15Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "402", "name": "Zepitope Waterwell"}}, {"model": "wells.drillingcompany", "pk": "fcf16f88-b3e3-4a56-8c30-9df76c0ecf86", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "7", "name": "Quarmony Waterwell"}}, {"model": "wells.drillingcompany", "pk": "fe197276-9f68-4493-9831-46af7395259f", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "223", "name": "Eschoir Waterwell"}}, {"model": "wells.drillingcompany", "pk": "ff0c6865-00fc-4a09-919e-471f25ded072", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-30T23:22:38Z", "update_user": null, "update_date": null, "drilling_company_code": "1002", "name": "Geekko Waterwell"}}, {"model": "wells.drillingcompany", "pk": "ff5a46ef-8ab6-41a4-9a9b-efa80ef4fcac", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "316", "name": "Quarex Waterwell"}}, {"model": "wells.drillingcompany", "pk": "ffb3ddce-1ed1-4a25-b4d2-5e6f9e84d2db", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:14Z", "update_user": "WELLS", "update_date": "2006-12-14T17:28:28Z", "drilling_company_code": "340", "name": "Genmex Waterwell"}}, {"model": "wells.landdistrictcode", "pk": "01", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "ALBERNI", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "02", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "BARCLAY", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "03", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "BRIGHT", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "04", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CAMERON", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "05", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CARIBOO", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "06", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CASSIAR", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "07", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CEDAR", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "08", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CHEMAINUS", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "09", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CLAYOQUOT", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "10", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COAST RANGE 1", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "11", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COAST RANGE 2", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "12", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COAST RANGE 3", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "13", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COAST RANGE 4", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "14", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COAST RANGE 5", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "15", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COMOX", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "16", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COWICHAN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "17", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COWICHAN LAKE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "18", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "CRANBERRY", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "19", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "DOUGLAS", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "20", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "DUNSMUIR", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "21", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "ESQUIMALT", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "22", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "GOLDSTREAM", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "23", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "HELMCKEN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "24", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "HIGHLAND", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "25", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "KAMLOOPS (KDYD)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "26", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "KOOTENAY", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "27", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "LILLOOET", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "28", "fields": {"create_user": "WELLS", "create_date": "2005-10-04T22:57:39Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "LYTTON DIV OF YALE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "29", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "MALAHAT", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "30", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "METCHOSIN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "31", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "MOUNTAIN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "32", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NANAIMO", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "33", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NANOOSE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "34", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NELSON", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "35", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NEWCASTLE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "36", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NEW WESTMINSTER", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "37", "fields": {"create_user": "WELLS", "create_date": "2005-10-04T22:57:39Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NEW WESTMINSTER Group 1", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "38", "fields": {"create_user": "WELLS", "create_date": "2005-10-04T22:57:39Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NEW WESTMINSTER Group 2", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "39", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NOOTKA", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "40", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "NORTH SAANICH", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "41", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "OSOYOOS (ODYD)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "42", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "OTTER", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "43", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "OYSTER", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "44", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "PEACE RIVER", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "45", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "QUAMICHAN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "46", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "QUEEN CHARLOTTE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "47", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "RENFREW", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "48", "fields": {"create_user": "WELLS", "create_date": "2005-10-04T22:57:39Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "RENFREW/COWICHAN LAKE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "49", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "RUPERT", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "50", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SAHTLAM", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "51", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SAYWARD", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "52", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SEYMOUR", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "53", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SHAWNIGAN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "54", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SIMILKAMEEN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "55", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SOOKE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "56", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "TEXADA ISLAND", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "57", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "VICTORIA", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "58", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "WELLINGTON", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "59", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "YALE (YDYD)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "60", "fields": {"create_user": "WELLS", "create_date": "2005-10-04T22:57:39Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "YALE LYTTON (LDYD)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "61", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SOMENOS", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "62", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "LAKE", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "63", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "COMIAKEN", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "64", "fields": {"create_user": "WELLS", "create_date": "2003-08-13T15:55:13Z", "update_user": "WELLS", "update_date": "2006-12-14T17:29:24Z", "name": "SOUTH SAANICH", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "65", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-29T17:47:35Z", "update_user": "PROXY_WELLS", "update_date": "2010-04-29T17:47:35Z", "name": "N SALTSPRING IS", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.landdistrictcode", "pk": "66", "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-04-29T17:47:52Z", "update_user": "PROXY_WELLS", "update_date": "2010-04-29T17:47:52Z", "name": "S SALTSPRING IS", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.licencedstatuscode", "pk": "LICENSED", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Licensed", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.licencedstatuscode", "pk": "UNLICENSED", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Unlicensed", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "COM", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Commercial and Industrial", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "DOM", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Private Domestic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "DWS", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Water Supply System", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "IRR", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Irrigation", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "OBS", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Observation Well", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "OP_LP_GEO", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Open LP Geoexchange", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "TST", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Test", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.intendedwaterusecode", "pk": "UNK", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Unknown Well Use", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "10K_MAP", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "1:10,000 Scale Map", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "20K_MAP", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "1:20,000 Scale Map", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "50K_MAP", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "1:50,000 Scale Map", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "5K_MAP", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "1:5000 Scale Map", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "ALTIMETER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Altimeter", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "DIFF_GPS", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Differential GPS", "display_order": 60, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "GPS", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "GPS", "display_order": 70, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.groundelevationmethodcode", "pk": "LEVEL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Level", "display_order": 80, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "CLS_LP_GEO", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Closed Loop Geo", "display_order": 16, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "DEWATERING", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Dewatering", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "DRAINAGE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Drainage", "display_order": 18, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "GEOTECH", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Geotechnical", "display_order": 8, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "INJECTION", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Injection", "display_order": 6, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "MONITOR", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Monitoring", "display_order": 4, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "RECHARGE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Recharge", "display_order": 12, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "REMEDIATE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Remediation", "display_order": 14, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellclasscode", "pk": "WATR_SPPLY", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Water Supply", "display_order": 2, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellstatuscode", "pk": "ABANDONED", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Abandoned", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellstatuscode", "pk": "ALTERATION", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Alteration", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellstatuscode", "pk": "CLOSURE", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Closure", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellstatuscode", "pk": "NEW", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "New", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellstatuscode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "3fa278b0-4ca1-11e7-b114-b2f933d5fe66", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "REMEDIATE", "well_subclass_code": "PERMANENT", "description": "Permanent", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "3fa27b8a-4ca1-11e7-b114-b2f933d5fe66", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "DRAINAGE", "well_subclass_code": "PERMANENT", "description": "Permanent", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "3fa27c98-4ca1-11e7-b114-b2f933d5fe66", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "CLS_LP_GEO", "well_subclass_code": "NA", "description": "Not Applicable", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "WATR_SPPLY", "well_subclass_code": "DOMESTIC", "description": "Domestic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "WATR_SPPLY", "well_subclass_code": "NON_DOMEST", "description": "Non Domestic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a314404-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "DEWATERING", "well_subclass_code": "TEMPORARY", "description": "Temporary", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a31460c-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "MONITOR", "well_subclass_code": "TEMPORARY", "description": "Temporary", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a3147d8-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "GEOTECH", "well_subclass_code": "SPECIAL", "description": "Special", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "DEWATERING", "well_subclass_code": "PERMANENT", "description": "Permanent", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a315106-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "GEOTECH", "well_subclass_code": "BOREHOLE", "description": "Borehole", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a3152c8-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": null, "well_subclass_code": "BOREHOLE", "description": "Borehole", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a315476-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": null, "well_subclass_code": "DOMESTIC", "description": "Domestic", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "5a31562e-47e7-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": null, "well_subclass_code": "TEST_PIT", "description": "Test Pit", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "93053cc0-4802-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "INJECTION", "well_subclass_code": "PERMANENT", "description": "Permanent", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "93053fd6-4802-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "GEOTECH", "well_subclass_code": "TEST_PIT", "description": "Test Pit", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellsubclasscode", "pk": "930540ee-4802-11e7-a919-92ebcb67fe33", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "well_class": "MONITOR", "well_subclass_code": "PERMANENT", "description": "Permanent", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "DRY", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Dry Hole", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "GPH", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Gallons per Hour (U.S./Imperial)", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "GPM", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Gallons per Minute (U.S./Imperial)", "display_order": 2, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "IGM", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Imperial Gallons per Minute", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "LPS", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Litres Per Second", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "UNK", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Unknown Yield", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.wellyieldunitcode", "pk": "USGPM", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "U.S. Gallons per Minute", "display_order": 1, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.well", "pk": 123, "fields": {"create_user": "", "create_date": "2018-02-08T17:06:47.229Z", "update_user": null, "update_date": "2018-02-08T17:06:47.231Z", "well_guid": "28efc8dd-4f4e-4b1e-84ce-5e2e7313bdb1", "identification_plate_number": null, "owner_full_name": "Nelly Peach", "owner_mailing_address": "", "owner_city": "", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DRAINAGE", "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "23 Forest Park 1", "city": "", "legal_lot": "1", "legal_plan": "773389", "legal_district_lot": "1", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": "61460", "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 124, "fields": {"create_user": "", "create_date": "2018-02-08T17:06:47.229Z", "update_user": null, "update_date": "2018-02-08T17:06:47.231Z", "well_guid": "28efc8dd-4f4e-4b1e-84ce-5e2e7313bdb1", "identification_plate_number": null, "owner_full_name": "BOB DRILLER", "owner_mailing_address": "", "owner_city": "", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DRAINAGE", "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "18 Forest Park", "city": "", "legal_lot": "1", "legal_plan": "773389", "legal_district_lot": "1", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": "61477", "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "48.673540", "longitude": "-123.465400", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 126, "fields": {"create_user": "", "create_date": "2018-02-08T17:06:47.229Z", "update_user": null, "update_date": "2018-02-08T17:06:47.231Z", "well_guid": "28efc8dd-4f4e-4b1e-84ce-5e2e7313bdb1", "identification_plate_number": null, "owner_full_name": "BOB DRILLER 2", "owner_mailing_address": "", "owner_city": "", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DRAINAGE", "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "1 Forest Park", "city": "", "legal_lot": "1", "legal_plan": "773389", "legal_district_lot": "1", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": "61177", "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "48.684560", "longitude": "-123.440000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 334, "fields": {"create_user": "", "create_date": "2018-02-08T17:06:47.229Z", "update_user": null, "update_date": "2018-02-08T17:06:47.231Z", "well_guid": "28efc8dd-4f4e-4b1e-84ce-5e2e7313bdb1", "identification_plate_number": null, "owner_full_name": "Bob Driller", "owner_mailing_address": "", "owner_city": "", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DRAINAGE", "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "Bob The Driller Lane 1", "city": "", "legal_lot": "1", "legal_plan": "77893", "legal_district_lot": "1", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": "612", "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 100001, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T21:20:21Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "defd5f7f-b96b-482c-bcee-0cf1b6d12368", "identification_plate_number": null, "owner_full_name": "KYRSTIN JENNEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2845 OCEANSIDE LANE 1", "city": "MILL BAY", "legal_lot": "12", "legal_plan": "44501", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3/4", "legal_township": " ", "legal_range": "9", "land_district": "53", "legal_pid": "61444", "well_location_description": "CORNER OF WELSH ROAD & OCEANSIDE LANE.", "construction_start_date": "1987-07-15", "construction_end_date": "1987-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "170.00", "finished_well_depth": "170.00", "final_casing_stick_up": null, "bedrock_depth": "13.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID ON CASING", "well_disinfected": false, "comments": "", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389526, "utm_easting": 458934, "utm_accuracy_code": "J", "bcgs_id": 2722, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 100127, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T23:16:16Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "a6b9e7dc-88ce-4cd1-b8b5-0181d8fb3746", "identification_plate_number": null, "owner_full_name": "GARY HANDLES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7239 PASS CREEK 1", "city": "BRIDGE LAKE", "legal_lot": "113", "legal_plan": "2933", "legal_district_lot": "127", "legal_block": "19", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "61444", "well_location_description": "E RASBERRY", "construction_start_date": "1987-02-06", "construction_end_date": "1987-02-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "12.000", "bedrock_depth": "75.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5465072, "utm_easting": 452447, "utm_accuracy_code": "J", "bcgs_id": 862, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 100200, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "d980a478-93c0-40ef-8a49-3c2c0af318aa", "identification_plate_number": null, "owner_full_name": "KENDAL DAYBELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "", "city": " ", "legal_lot": "117", "legal_plan": "5736", "legal_district_lot": "18", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "61567", "well_location_description": "LOT 17 OF SUBDIVISION OF LOT 2, BACK OF LOT", "construction_start_date": "1993-07-19", "construction_end_date": "1993-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2c15cd76-ee0a-45aa-b5b7-1083ad66ade3", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "41.00", "finished_well_depth": "41.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "22.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5590549, "utm_easting": 572957, "utm_accuracy_code": "J", "bcgs_id": 1375, "decommission_reason": "HOLE ABANDONED", "decommission_method": null, "sealant_material": null, "backfill_material": "BENTONITE AND GRAVEL", "decommission_details": "", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 100500, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "830e5890-bc43-4ec6-bd2b-6e7db4afefe8", "identification_plate_number": null, "owner_full_name": "WYE HEGGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13854 SPRATT ROAD 1", "city": "MISSION", "legal_lot": "1", "legal_plan": "RP 76360", "legal_district_lot": "1", "legal_block": " ", "legal_section": "31", "legal_township": "21", "legal_range": " ", "land_district": "36", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED.", "construction_start_date": "1989-05-09", "construction_end_date": "1989-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": null, "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "121.00", "finished_well_depth": "120.50", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "75.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455956, "utm_easting": 556488, "utm_accuracy_code": "G", "bcgs_id": 4446, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 100501, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "45b9455b-4d0a-4c04-baa8-4d417ee2601a", "identification_plate_number": null, "owner_full_name": "JODY CLEAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1 FOX CRESENT", "city": "GREEN LAKE", "legal_lot": "138", "legal_plan": "18835", "legal_district_lot": "13890", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "109689583", "well_location_description": " ", "construction_start_date": "1998-05-22", "construction_end_date": "1998-05-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "183.00", "finished_well_depth": "183.00", "final_casing_stick_up": "24.000", "bedrock_depth": "66.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "9.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5701028, "utm_easting": 631125, "utm_accuracy_code": "A", "bcgs_id": 5747, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 100542, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "62c6c086-98e4-4dfc-ad15-8160a0bc28ba", "identification_plate_number": null, "owner_full_name": "GORDAN COEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 LING COD WAY", "city": "MUDGE ISLAND", "legal_lot": "12", "legal_plan": "23697", "legal_district_lot": "132", "legal_block": " ", "legal_section": "28", "legal_township": " ", "legal_range": " ", "land_district": "32", "legal_pid": "101769758", "well_location_description": "PH # 756.0621", "construction_start_date": "1993-10-01", "construction_end_date": "1993-10-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "79916e22-c704-474b-b7f6-2282bec49bff", "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442505, "utm_easting": 440960, "utm_accuracy_code": "J", "bcgs_id": 4028, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 102364, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-10-26T18:55:39Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:30Z", "well_guid": "95b38a98-cf4e-4d54-b1ce-884ea871b92d", "identification_plate_number": 28508, "owner_full_name": "CATIE CAVENEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "OSOYOOS", "legal_lot": " ", "legal_plan": " ", "legal_district_lot": "12709", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "ANARCHIST MOUNTAIN (SUMMIT)", "construction_start_date": "2006-03-01", "construction_end_date": "2006-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "62409874-977b-4088-9588-6956de819c66", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_CEM_MIX", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "120.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": "402", "observation_well_status": "Active", "ems": "E283990", "utm_zone_code": "11", "utm_northing": 5433490, "utm_easting": 328426, "utm_accuracy_code": "H", "bcgs_id": 11434, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 102666, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "WELLS", "update_date": "2016-02-05T03:55:09Z", "well_guid": "e88ebaf6-e925-4520-bf98-c81788ae10e2", "identification_plate_number": 24677, "owner_full_name": "VINNIE DOICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "PGP41938", "legal_district_lot": "12518", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "124091553", "well_location_description": "NOT PROVIDED", "construction_start_date": "2004-06-17", "construction_end_date": "2004-06-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74fae3a9-9fed-46c0-b575-a0ff51535d3f", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.200000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "236.00", "finished_well_depth": "236.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": "PRESPATOU INDEPENDANT HOUSING", "water_supply_system_well_name": "PRESPATOU INDEPENDANT HOUSING WELL", "static_water_level": "81.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAPPED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": "E267021", "utm_zone_code": "10", "utm_northing": 6310848, "utm_easting": 617921, "utm_accuracy_code": "H", "bcgs_id": 8706, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 104533, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2011-05-30T22:59:47Z", "update_user": "WELLS", "update_date": "2016-02-11T21:55:01Z", "well_guid": "6f1c51d5-809d-407e-aec3-3e2aa8c9ce00", "identification_plate_number": 25788, "owner_full_name": "HANK GUITTET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6699 BERYL PRAIRIE ROAD 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "11252", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "114775255", "well_location_description": "6699 BERYL PRAIRIE ROAD, HUDSON'S HOPE, BC", "construction_start_date": "2010-01-05", "construction_end_date": "2010-01-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "10f45e79-4517-4f64-9870-5d669fb417a4", "well_identification_plate_attached": "WELL CASING", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_CEM_MIX", "surface_seal_length": "140.00", "surface_seal_thickness": "2.00", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "154.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": "BERYL PRAIRIE OPEN CAMP", "water_supply_system_well_name": "BERYL PRAIRIE OPEN CAMP WELL", "static_water_level": null, "well_yield": "200.000", "artesian_flow": "0.01", "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6224445, "utm_easting": 556430, "utm_accuracy_code": "H", "bcgs_id": 11900, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 104636, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2011-09-16T01:22:19Z", "update_user": "WELLS", "update_date": "2016-02-29T04:41:21Z", "well_guid": "4547aab5-762f-4e2d-b461-a152b2bc1347", "identification_plate_number": null, "owner_full_name": "ANNMARIE SPIRIT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Calvert Island", "legal_lot": "11414", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "2", "land_district": null, "legal_pid": "100967629", "well_location_description": "Well B, south of staff lodge, east of water treatment building.", "construction_start_date": "2011-08-26", "construction_end_date": "2011-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2011-08-31", "decommission_end_date": "2011-09-01", "drilling_company": "68e7e0a8-e5c1-4b09-b128-a20589eaa0a5", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": "35.00", "ground_elevation_method": "10K_MAP", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "22.50", "final_casing_stick_up": "0.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5722836, "utm_easting": 560138, "utm_accuracy_code": "H", "bcgs_id": 12189, "decommission_reason": "Well no longer in use.", "decommission_method": "POURED", "sealant_material": "Bentonite", "backfill_material": "Sand", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 104671, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2011-10-17T23:18:59Z", "update_user": "WELLS", "update_date": "2016-02-04T03:41:48Z", "well_guid": "0dcebdc8-2a0a-46d5-9e05-72a0503910b1", "identification_plate_number": null, "owner_full_name": "NETTLE TOPLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "1148 HIPWELL 1 12", "city": "CASTLEGAR", "legal_lot": "1PT A", "legal_plan": "4598", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "114496879", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2011-07-14", "decommission_end_date": "2011-07-14", "drilling_company": "d7e4283c-ea1c-454e-b4ca-ec7b62d95d85", "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "1623.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "223.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5459142, "utm_easting": 454619, "utm_accuracy_code": "H", "bcgs_id": 835, "decommission_reason": "NOT IN USE", "decommission_method": "PUMPED", "sealant_material": "BENTONITE", "backfill_material": null, "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 105417, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:31Z", "well_guid": "e8243da8-2829-4b40-8b0b-7d34a7c322ae", "identification_plate_number": 31764, "owner_full_name": "CEDRIC DICKER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4345 JUNE SPRINGS ROAD 1 12", "city": "EAST KELOWNA", "legal_lot": "143", "legal_plan": "1247", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "54", "legal_pid": "123456789", "well_location_description": "LEFT TURN OFF JUNE SPRINGS RD. UP DRIVEWAY TO FORK ON DRIVEWAY STAY LEFT. WELL APPROX 100' FROM CORNER/POWER POLE.", "construction_start_date": "2009-06-24", "construction_end_date": "2009-07-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "2039.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CEMENT & BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "600.00", "finished_well_depth": "600.00", "final_casing_stick_up": "24.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "0.01", "well_yield": "10.000", "artesian_flow": "0.50", "artesian_pressure": "6.00", "well_cap_type": "FLOW CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5522008, "utm_easting": 327816, "utm_accuracy_code": "H", "bcgs_id": 571, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 105508, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:31Z", "well_guid": "38cb4d33-9227-45ad-a05a-d38793cc502a", "identification_plate_number": 32814, "owner_full_name": "SHEPARD GRESCHIK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "A 1ST AVENUE 1 12", "city": "CHRISTINA LAKE", "legal_lot": "1A", "legal_plan": "8", "legal_district_lot": "1268", "legal_block": "8", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "54", "legal_pid": "117792304", "well_location_description": "PARCEL A PART KF49352", "construction_start_date": "2010-05-18", "construction_end_date": "2010-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "d7e4283c-ea1c-454e-b4ca-ec7b62d95d85", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.290000", "longitude": "-122.550000", "ground_elevation": "1624.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_CEM_MIX", "surface_seal_length": "18.00", "surface_seal_thickness": "1.65", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "110.00", "finished_well_depth": "109.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "87.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5430303, "utm_easting": 411471, "utm_accuracy_code": "J", "bcgs_id": 144, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 105747, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-03-01T20:18:31Z", "update_user": "WELLS", "update_date": "2016-02-12T06:01:06Z", "well_guid": "01dda995-5b21-4f24-a82e-92bfd8e7aa1d", "identification_plate_number": null, "owner_full_name": "SULLY SCROGGIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "BURRILL ROAD 1 12", "city": "GALIANO ISLAND", "legal_lot": "16", "legal_plan": "VIP10715", "legal_district_lot": "16", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "105337879", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "1967-08-01", "alteration_end_date": "1967-08-03", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "79916e22-c704-474b-b7f6-2282bec49bff", "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5415823, "utm_easting": 475212, "utm_accuracy_code": "J", "bcgs_id": 3034, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 106648, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-08-28T17:56:20Z", "update_user": "WELLS", "update_date": "2016-01-28T21:41:18Z", "well_guid": "49938893-f182-4078-82df-e50a3265c43a", "identification_plate_number": 19935, "owner_full_name": "KIMBELL DENECAMP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8125 SOUTH WIND DRIVE 1 12", "city": "LANTZVILLE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "378.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "259.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "128.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VENT CAST", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455459, "utm_easting": 417996, "utm_accuracy_code": "H", "bcgs_id": 3235, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 107072, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-11-14T17:29:09Z", "update_user": "WELLS", "update_date": "2016-03-03T19:59:23Z", "well_guid": "6fd323ee-b40e-4cf6-8560-fcbf100211b1", "identification_plate_number": 33575, "owner_full_name": "SYMON CHESSUM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HIGHWAY 37 1 12", "city": "MEZIADIAN", "legal_lot": "1A", "legal_plan": "BCP 20147", "legal_district_lot": "17083", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "06", "legal_pid": "126450020", "well_location_description": "NORTH EAST CORNER OF LOT.", "construction_start_date": "2012-10-06", "construction_end_date": "2012-10-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "1155.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "394.00", "finished_well_depth": "393.00", "final_casing_stick_up": "24.000", "bedrock_depth": "160.00", "water_supply_system_name": "MEZIADIN CAMP WATER SYSTEM", "water_supply_system_well_name": "MEZIADIN JUNCTION CAMP", "static_water_level": "70.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6217195, "utm_easting": 481119, "utm_accuracy_code": "H", "bcgs_id": 8929, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 107667, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-03-14T20:11:08Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:31Z", "well_guid": "221b7600-cc16-4e9c-b9e4-fae024c79650", "identification_plate_number": null, "owner_full_name": "GARY AKLESON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "218 RD 12", "city": "ROLLA", "legal_lot": "14", "legal_plan": "BCP21690", "legal_district_lot": "1", "legal_block": " ", "legal_section": "36", "legal_township": "79", "legal_range": "16", "land_district": "44", "legal_pid": "126737680", "well_location_description": "WELL IS ON THE PROPERTY ON THE SE CORNER OF THE INTERSECTION OF 218 RD AND 229 RD.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "2505.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": "E292973", "utm_zone_code": "10", "utm_northing": 6197098, "utm_easting": 664410, "utm_accuracy_code": "H", "bcgs_id": 13234, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 108025, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-10T16:57:56Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:29Z", "well_guid": "49237a99-f4d1-4639-bbcc-6143d8190566", "identification_plate_number": null, "owner_full_name": "LAURIE WIGGINGTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "62 AVE 1 12", "city": "LANGLEY", "legal_lot": "16", "legal_plan": "78765", "legal_district_lot": "1", "legal_block": " ", "legal_section": "9", "legal_township": "11", "legal_range": " ", "land_district": "36", "legal_pid": "123456789", "well_location_description": "L 6 SEC 9 TP 11 NEW WESTMINSTER DISTRICT PL 78765", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "10.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "79.00", "finished_well_depth": "79.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5440339, "utm_easting": 531788, "utm_accuracy_code": "B", "bcgs_id": 4173, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 108027, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:09:59Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:29Z", "well_guid": "cacbae37-5ead-48d4-9a04-ae11e7cc9457", "identification_plate_number": 38316, "owner_full_name": "ADINA CAPOUN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Ruckell Point Scout Camp 1 12", "city": "Ruckell Point", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": "23", "legal_range": "8", "land_district": "25", "legal_pid": "123456789", "well_location_description": "NE 1/4 34 West of 6 Meridian Land file LBF#3400865\r\nLicence 338882", "construction_start_date": "2013-08-05", "construction_end_date": "2013-08-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "casing", "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "9.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "156.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "sanitary well seal", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5652625, "utm_easting": 356386, "utm_accuracy_code": "A", "bcgs_id": 12392, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 109912, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:19Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:31Z", "well_guid": "f36505f9-cfd1-4e96-a771-57abab54013f", "identification_plate_number": 35239, "owner_full_name": "ROLLAND CORDELET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "12768 CLUE MOUNTAIN CRESCENT 1 12", "city": "MAPLE RIDGE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL DESCRIPTION NOT PROVIDED", "construction_start_date": "2014-08-19", "construction_end_date": "2014-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "1049.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "178.00", "finished_well_depth": "178.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5453590, "utm_easting": 538934, "utm_accuracy_code": "H", "bcgs_id": 4415, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 110000, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "WELLS", "update_date": "2015-05-21T16:50:31Z", "well_guid": "6d843e97-7b03-4e8a-9202-baf2623ab3d8", "identification_plate_number": 41404, "owner_full_name": "CLETIS RODEAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3679 MELROSE 1 12", "city": "QUALICUM BEACH", "legal_lot": "1A", "legal_plan": "2606", "legal_district_lot": "139", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "33", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2014-09-04", "construction_end_date": "2014-09-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "481.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "48.00", "finished_well_depth": "46.04", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "26.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5463395, "utm_easting": 389679, "utm_accuracy_code": "H", "bcgs_id": 3295, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 110627, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-02T21:43:34Z", "update_user": "WELLS", "update_date": "2016-03-23T21:13:08Z", "well_guid": "0b21258b-33eb-4c70-84fd-6917061716db", "identification_plate_number": 41048, "owner_full_name": "CORNELIA LEATHE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2064 MARRIOT ROAD 1 12", "city": "BIG BAR", "legal_lot": "147", "legal_plan": "KA754", "legal_district_lot": "11750", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "115749711", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-20", "construction_end_date": "2015-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "3560.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "14.000", "bedrock_depth": "55.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5685182, "utm_easting": 584115, "utm_accuracy_code": "H", "bcgs_id": 9474, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 110749, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:04Z", "update_user": "WELLS", "update_date": "2016-02-09T21:55:31Z", "well_guid": "30034006-21e2-4041-b941-e08f0a038a29", "identification_plate_number": 99, "owner_full_name": "ROYAL CANADIAN MOUNTED POLICE", "owner_mailing_address": "Canadia", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "H0H0H0", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "6647 CHRISTENSEN ROAD", "city": "ANAHIM LAKE", "legal_lot": "A", "legal_plan": "25014", "legal_district_lot": "405", "legal_block": "block", "legal_section": "section", "legal_township": "township", "legal_range": "3", "land_district": "44", "legal_pid": "008048142", "well_location_description": "PREVIOUS LEGAL PLAN: 14144", "construction_start_date": "1975-01-24", "construction_end_date": "1976-01-29", "alteration_start_date": "2014-11-23", "alteration_end_date": "2014-11-23", "decommission_start_date": "2014-11-23", "decommission_end_date": "2014-11-23", "drilling_company": "bf5d31ea-8a5a-4363-8a5e-6c00eed03058", "well_identification_plate_attached": "ON TOP", "latitude": "52.465449", "longitude": "-125.300830", "ground_elevation": "1.20", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": "test", "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": "FILL CLIPPINGS", "backfill_depth": "1.00", "liner_material": "PVC", "liner_diameter": "1.50", "liner_thickness": "33.000", "liner_from": "1.00", "liner_to": "2.00", "screen_intake_method": "OPEN_HOLE", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "test", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": "1.00", "filter_pack_to": "2.00", "filter_pack_thickness": "1.000", "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "test", "water_quality_colour": "test", "water_quality_odour": "test", "total_depth_drilled": "285.00", "finished_well_depth": "1.00", "final_casing_stick_up": "1.000", "bedrock_depth": "60.00", "water_supply_system_name": "test", "water_supply_system_well_name": "test", "static_water_level": "1.00", "well_yield": "15.000", "artesian_flow": "15.00", "artesian_pressure": "1.00", "well_cap_type": "1", "well_disinfected": false, "comments": "NOT RESPONSIBLE FOR QUALITY OR QUANTITY", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "4.5", "observation_well_number": "2", "observation_well_status": "Active", "ems": "2", "utm_zone_code": "10", "utm_northing": 5815298, "utm_easting": 343701, "utm_accuracy_code": "H", "bcgs_id": 6539, "decommission_reason": "SITE DEVELOPMENT", "decommission_method": "PUMPED", "sealant_material": "CONCRETE", "backfill_material": "test", "decommission_details": "NO ISSUES WITH CLOSURE. ONLY SLIGHT ARTESIAN FLOW IN NOV. 2014. CASING LEFT IN PLACE, PUMP PULLED.", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 110750, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:43Z", "update_user": "WELLS", "update_date": "2016-04-11T19:02:10Z", "well_guid": "261eb884-1957-482b-9ecc-c33bc0ae9ef1", "identification_plate_number": 47948, "owner_full_name": "ELINORE EYLES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 512 BAYVIEW ROAD", "city": "NAKUSP", "legal_lot": "112", "legal_plan": "12531", "legal_district_lot": "18152", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-20", "construction_end_date": "2015-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "MAILED TO CUSTOMER", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "FILL CLIPPINGS", "backfill_depth": "1.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "21.000", "bedrock_depth": "62.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": true, "comments": "NOT RESPONSIBLE FOR QUALITY OR QUANTITY", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5556266, "utm_easting": 444019, "utm_accuracy_code": "H", "bcgs_id": 1395, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 111752, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "WELLS", "update_date": "2016-11-01T21:03:23Z", "well_guid": "33f2b557-24c2-47b8-a8c8-b4bbbef6b891", "identification_plate_number": 39215, "owner_full_name": "WILIE PROUGHTEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 4780 HANEY ROAD", "city": "VERNON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NORTHWEST CORNER OF LOT", "construction_start_date": "2016-04-11", "construction_end_date": "2016-04-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": "1411.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "280.00", "final_casing_stick_up": "24.000", "bedrock_depth": "59.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "8.000", "artesian_flow": "4.50", "artesian_pressure": "90.00", "well_cap_type": "SANITARY SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5572322, "utm_easting": 337281, "utm_accuracy_code": "H", "bcgs_id": 1598, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112152, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-11-30T07:25:37Z", "update_user": "WELLS", "update_date": "2017-01-05T23:02:15Z", "well_guid": "f35f7b58-24e4-4360-bfa0-ba9eb5da52a9", "identification_plate_number": 40596, "owner_full_name": "CHARMAINE MCCRYSTAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH NANAIMO RIVER ROAD", "city": "NANAIMO", "legal_lot": "16", "legal_plan": "EPP14236", "legal_district_lot": "1", "legal_block": "589", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "19", "legal_pid": "128787404", "well_location_description": "NOTHING ENTERED.", "construction_start_date": "2016-07-18", "construction_end_date": "2016-07-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON CASING", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": "523.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "55.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.50", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5436671, "utm_easting": 423981, "utm_accuracy_code": "H", "bcgs_id": 11320, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112220, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "WELLS", "update_date": "2016-12-03T20:37:49Z", "well_guid": "f20192af-12ba-468a-8b92-09bdaf6262a9", "identification_plate_number": 34499, "owner_full_name": "NEALON WALARON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-22", "construction_end_date": "2016-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "590.00", "finished_well_depth": "525.00", "final_casing_stick_up": "18.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5363962, "utm_easting": 459498, "utm_accuracy_code": "H", "bcgs_id": 2559, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112221, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "WELLS", "update_date": "2016-12-03T20:38:14Z", "well_guid": "a48b30f0-fd23-4da7-9329-8810d0966d0f", "identification_plate_number": 34437, "owner_full_name": "FAIRLEIGH FLIEGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "11", "legal_plan": "EPP60451.1", "legal_district_lot": "1", "legal_block": " ", "legal_section": "19", "legal_township": " ", "legal_range": "5", "land_district": "61", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-02-23", "construction_end_date": "2016-03-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "178.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "275.00", "final_casing_stick_up": "18.000", "bedrock_depth": "64.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5412202, "utm_easting": 447435, "utm_accuracy_code": "H", "bcgs_id": 2945, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112222, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:12Z", "update_user": "WELLS", "update_date": "2016-12-03T20:38:54Z", "well_guid": "2b17e4e1-1595-443e-8292-8d96cb897585", "identification_plate_number": 34447, "owner_full_name": "KASSIA BERNAKIEWICZ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1570 ZANITA HEIGHTS 1 12", "city": "METCHOSIN", "legal_lot": "1B", "legal_plan": "VIP78325", "legal_district_lot": "1", "legal_block": " ", "legal_section": "40", "legal_township": " ", "legal_range": " ", "land_district": "22", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-12-14", "construction_end_date": "2016-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "915.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "10.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "775.00", "finished_well_depth": "750.00", "final_casing_stick_up": "18.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5361723, "utm_easting": 457426, "utm_accuracy_code": "H", "bcgs_id": 2550, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112223, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "WELLS", "update_date": "2016-12-03T22:37:40Z", "well_guid": "1ef86365-926e-4bc9-9b38-fdb703bd5c4e", "identification_plate_number": 34421, "owner_full_name": "BRIGGS SCAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8120 THOMSON PLACE 1 12", "city": "SAANICHTON", "legal_lot": "1C", "legal_plan": "VIP77212", "legal_district_lot": "1", "legal_block": " ", "legal_section": "45A", "legal_township": " ", "legal_range": " ", "land_district": "24", "legal_pid": "125992601", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-14", "construction_end_date": "2015-10-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": "862.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "625.00", "finished_well_depth": "625.00", "final_casing_stick_up": "18.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "160.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5378932, "utm_easting": 464954, "utm_accuracy_code": "H", "bcgs_id": 2637, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112224, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "WELLS", "update_date": "2016-12-03T20:55:48Z", "well_guid": "ceb72e2e-f813-499e-9be3-08c698caa401", "identification_plate_number": 34404, "owner_full_name": "LAINA SHIMMIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1832 BURNSIDE 1 12", "city": "VICTORIA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-18", "construction_end_date": "2016-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "18.000", "bedrock_depth": "0.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "200.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5369035, "utm_easting": 467582, "utm_accuracy_code": "H", "bcgs_id": 2576, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112225, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "WELLS", "update_date": "2016-12-03T21:12:34Z", "well_guid": "5bf0a469-1f39-4436-8714-a27bca50b307", "identification_plate_number": 34485, "owner_full_name": "SILVANUS FAULCONBRIDGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "912 FINLAYSON ARM ROAD 1 12", "city": "VICTORIA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-02", "construction_end_date": "2015-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "633.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "525.00", "finished_well_depth": "525.00", "final_casing_stick_up": "18.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5371457, "utm_easting": 460680, "utm_accuracy_code": "H", "bcgs_id": 2571, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112226, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "WELLS", "update_date": "2016-12-03T21:38:30Z", "well_guid": "4087fef0-8ac3-4280-ac44-0209dabd451e", "identification_plate_number": 34468, "owner_full_name": "TOBE UMBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "660 FREDERIC ROAD 1 12", "city": "VICTORIA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WILLING PARK, LANGFORD, BC", "construction_start_date": "2015-06-01", "construction_end_date": "2015-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "25.00", "surface_seal_thickness": "2.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "590.00", "finished_well_depth": "590.00", "final_casing_stick_up": "24.000", "bedrock_depth": "26.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "4.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING STEEL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5361930, "utm_easting": 460452, "utm_accuracy_code": "H", "bcgs_id": 2554, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112227, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "WELLS", "update_date": "2016-12-03T22:53:32Z", "well_guid": "ee0c937d-b021-464a-a75e-1024a1d24a36", "identification_plate_number": 34481, "owner_full_name": "LYNELLE SHILSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1720 BURNSIDE ROAD WEST 1 12", "city": "VICTORIA", "legal_lot": "110", "legal_plan": "VIP40729", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111674873", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-04-16", "construction_end_date": "2015-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "95.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "375.00", "finished_well_depth": "375.00", "final_casing_stick_up": "24.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5369315, "utm_easting": 467296, "utm_accuracy_code": "H", "bcgs_id": 2579, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112228, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "WELLS", "update_date": "2017-10-12T18:19:16Z", "well_guid": "d6911916-2e95-46cd-94bf-e35c58d27257", "identification_plate_number": 34480, "owner_full_name": "GIACOPO MAWHINNEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "COBBLE HILL ROAD 1 12", "city": "COBBLE HILL", "legal_lot": "1A", "legal_plan": "16100", "legal_district_lot": "1", "legal_block": " ", "legal_section": "8", "legal_township": " ", "legal_range": "8", "land_district": "53", "legal_pid": "103994635", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-04-01", "construction_end_date": "2015-04-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "344.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.25", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "18.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5391236, "utm_easting": 458261, "utm_accuracy_code": "H", "bcgs_id": 2724, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112229, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "WELLS", "update_date": "2016-12-03T23:11:56Z", "well_guid": "c0c0b040-2899-4193-af0e-6ac5ac5f627a", "identification_plate_number": 34428, "owner_full_name": "NANCEY STUDMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2451 KOKSILAH ROAD 1 12", "city": "COWICHAN", "legal_lot": "11", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "4", "legal_section": "4", "legal_township": " ", "legal_range": "1", "land_district": "16", "legal_pid": "108856567", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-03-01", "construction_end_date": "2015-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "248.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "423.00", "finished_well_depth": "423.00", "final_casing_stick_up": "24.000", "bedrock_depth": "80.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5397688, "utm_easting": 450874, "utm_accuracy_code": "H", "bcgs_id": 2796, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112230, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "WELLS", "update_date": "2016-12-03T23:47:56Z", "well_guid": "3bd1aaf6-2d4b-4f5c-8d1b-c57bd55aa0ae", "identification_plate_number": 34463, "owner_full_name": "CLETIS INGALL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "240 DURRANCE ROAD 1 12", "city": "VICTORIA", "legal_lot": "11", "legal_plan": "VIP4483", "legal_district_lot": "1", "legal_block": " ", "legal_section": "123", "legal_township": " ", "legal_range": " ", "land_district": "62", "legal_pid": "106106056", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-07-05", "construction_end_date": "2014-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BANDED ON TOP OF CASING", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": "368.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.25", "surface_seal_method": "POURED", "backfill_type": "3/8 HOLE PLUG & GRANULAR", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "325.00", "finished_well_depth": "325.00", "final_casing_stick_up": "12.000", "bedrock_depth": "171.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5377807, "utm_easting": 467182, "utm_accuracy_code": "H", "bcgs_id": 2638, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112231, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "WELLS", "update_date": "2016-12-04T00:58:05Z", "well_guid": "9ef46f8a-fd77-4cbd-91cd-155061a648a1", "identification_plate_number": 34440, "owner_full_name": "NORMIE CARDO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1B", "legal_plan": "EPP34699", "legal_district_lot": "1", "legal_block": " ", "legal_section": "46A", "legal_township": " ", "legal_range": " ", "land_district": "24", "legal_pid": "129253845", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-04-05", "construction_end_date": "2014-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "475.00", "finished_well_depth": "475.00", "final_casing_stick_up": "12.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "4.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL (W)", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5376713, "utm_easting": 464223, "utm_accuracy_code": "H", "bcgs_id": 2620, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112232, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "WELLS", "update_date": "2016-12-04T01:42:34Z", "well_guid": "91359548-5de4-4720-acac-8e4d89649995", "identification_plate_number": 34466, "owner_full_name": "SHERRY ROWCLIFFE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "909 TOWNER PARK ROAD 1 12", "city": "NORTH SAANICH", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-05-22", "construction_end_date": "2014-05-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "35.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "40.00", "surface_seal_thickness": "2.50", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "24.000", "bedrock_depth": "22.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5390474, "utm_easting": 466008, "utm_accuracy_code": "H", "bcgs_id": 2735, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112233, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:41:19Z", "update_user": "WELLS", "update_date": "2016-12-04T01:47:36Z", "well_guid": "5a9dda26-d854-458f-b90a-afb96db800b8", "identification_plate_number": 34448, "owner_full_name": "GERTRUDIS MINTRIM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "11", "legal_plan": "33091", "legal_district_lot": "1", "legal_block": " ", "legal_section": "41", "legal_township": " ", "legal_range": " ", "land_district": "24", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-08-24", "construction_end_date": "2013-08-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "442.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "24.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": "1.50", "artesian_pressure": null, "well_cap_type": "SPLIT RING", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5370721, "utm_easting": 459874, "utm_accuracy_code": "H", "bcgs_id": 2571, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112234, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:00:37Z", "update_user": "WELLS", "update_date": "2016-12-04T02:18:56Z", "well_guid": "85dcb014-6dd9-4d79-9750-d24b7de4bded", "identification_plate_number": 34431, "owner_full_name": "MICHELE WACE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3779 PHILIPS ROAD 1 12", "city": "SOOKE", "legal_lot": "12", "legal_plan": "VIP23562", "legal_district_lot": "1", "legal_block": " ", "legal_section": "25", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "103122301", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-10-10", "construction_end_date": "2013-10-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": "400.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "22.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359095, "utm_easting": 440581, "utm_accuracy_code": "H", "bcgs_id": 2497, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112235, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "WELLS", "update_date": "2016-12-04T02:22:09Z", "well_guid": "a6a7087b-8def-4590-8174-2de6dbfe5f60", "identification_plate_number": 34417, "owner_full_name": "VINCE BEIDEBEKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8870 RANDY'S PLACE 1 12", "city": "SOOKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-07-04", "construction_end_date": "2013-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "197.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": "SAND", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "345.00", "finished_well_depth": "345.00", "final_casing_stick_up": "24.000", "bedrock_depth": "180.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5358559, "utm_easting": 437332, "utm_accuracy_code": "H", "bcgs_id": 2496, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112236, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "WELLS", "update_date": "2016-12-04T02:48:03Z", "well_guid": "76a191eb-e80f-4dfa-b73e-066cf9e99b13", "identification_plate_number": 34415, "owner_full_name": "MAGGIE DEFONT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1663 MILLSTREAM ROAD 1 12", "city": "VICTORIA", "legal_lot": "14", "legal_plan": "37868", "legal_district_lot": "1", "legal_block": " ", "legal_section": "29&31", "legal_township": " ", "legal_range": " ", "land_district": "24", "legal_pid": "123456789", "well_location_description": "INCEPT PART PLAN 38417", "construction_start_date": "2013-07-01", "construction_end_date": "2013-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": "654.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5372849, "utm_easting": 461845, "utm_accuracy_code": "H", "bcgs_id": 2602, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112237, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "ab10fee7-c9f0-45ec-8986-97ea7bc09c8f", "identification_plate_number": 41801, "owner_full_name": "ICHABOD DILLOW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "NOT PROVIDED 1 12", "city": "108 MILE HOUSE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-19", "construction_end_date": "2015-09-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "2957.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "25.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "247.00", "finished_well_depth": "235.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5734343, "utm_easting": 612006, "utm_accuracy_code": "H", "bcgs_id": 5997, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112238, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "WELLS", "update_date": "2016-12-04T04:16:19Z", "well_guid": "af2a70f5-4792-40da-8854-f08652bbde00", "identification_plate_number": 14607, "owner_full_name": "WERNHER BOTTOMLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "NW1/4", "legal_section": "5", "legal_township": "85", "legal_range": "19", "land_district": "44", "legal_pid": "114629011", "well_location_description": "425' NORTH AND 200' EAST OF HOUSE", "construction_start_date": "2006-06-05", "construction_end_date": "2006-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "2557.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "25.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "310.00", "finished_well_depth": "310.00", "final_casing_stick_up": "24.000", "bedrock_depth": "64.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "249.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6.25\" X 1\" WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6246609, "utm_easting": 625267, "utm_accuracy_code": "H", "bcgs_id": 8554, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112239, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "WELLS", "update_date": "2016-12-09T20:11:16Z", "well_guid": "6bd27de9-1160-4cfe-83c9-fe11683320b8", "identification_plate_number": 48503, "owner_full_name": "ALIKEE RESDALE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "18701 UPPER HALFWAY 1 12", "city": "WONOWON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-27", "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": "2385.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "12.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "325.00", "finished_well_depth": "325.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "272.60", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6272813, "utm_easting": 576460, "utm_accuracy_code": "H", "bcgs_id": 13732, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112240, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:33Z", "update_user": "WELLS", "update_date": "2016-12-04T04:54:36Z", "well_guid": "43b346d6-d077-4a57-92d4-0465f4a5b06e", "identification_plate_number": 48502, "owner_full_name": "KAHALEEL D'ENRICO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "12633 E CHARLIE LAKE FRONTAGE ROAD 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-21", "construction_end_date": "2016-06-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "2315.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "35.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "LOCAL CLAY", "backfill_depth": "8.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "150.00", "finished_well_depth": "150.00", "final_casing_stick_up": "30.000", "bedrock_depth": "130.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "70.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6238233, "utm_easting": 627066, "utm_accuracy_code": "H", "bcgs_id": 8446, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112241, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": "WELLS", "update_date": "2016-12-04T05:08:50Z", "well_guid": "cee18bd9-8bd2-4203-bcf0-376ded4152cf", "identification_plate_number": 48501, "owner_full_name": "JOSEE SHIPLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13175 CHARLIE LAKE CRESENT 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-06", "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "2420.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "26.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "LOCAL CLAY", "backfill_depth": "8.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "145.00", "finished_well_depth": "145.00", "final_casing_stick_up": "30.000", "bedrock_depth": "90.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "122.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6239978, "utm_easting": 625193, "utm_accuracy_code": "H", "bcgs_id": 8450, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112242, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "WELLS", "update_date": "2016-12-04T05:39:31Z", "well_guid": "98f48019-c8ca-4999-b90f-a7bab27627d5", "identification_plate_number": 48500, "owner_full_name": "VINITA FENWICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13388 CHARLIE LAKE CRESENT 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-01", "construction_end_date": "2016-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "2370.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "29.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "88.00", "finished_well_depth": "88.00", "final_casing_stick_up": "12.000", "bedrock_depth": "26.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "63.10", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6241728, "utm_easting": 624595, "utm_accuracy_code": "H", "bcgs_id": 8549, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112243, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": "WELLS", "update_date": "2016-12-09T20:03:40Z", "well_guid": "5a31ccd7-a70a-4ee8-90df-99167e3f1f7e", "identification_plate_number": 48354, "owner_full_name": "JERAMIE HECTOR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "14299 EVERGREEN SUB 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-09", "construction_end_date": "2016-05-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "2900.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "60.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "60.00", "final_casing_stick_up": "27.000", "bedrock_depth": "60.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.70", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6253075, "utm_easting": 613165, "utm_accuracy_code": "H", "bcgs_id": 10772, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112244, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:51:36Z", "update_user": "WELLS", "update_date": "2016-12-04T05:55:02Z", "well_guid": "8755d8b1-d88c-4c73-9112-29769c5bcb35", "identification_plate_number": 48351, "owner_full_name": "TERSINA LAVALLIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13787 267 ROAD 1 12", "city": "MONTNEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-13", "construction_end_date": "2016-04-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": "2200.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "11.80", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "40.00", "final_casing_stick_up": "14.000", "bedrock_depth": "13.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.70", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6245180, "utm_easting": 632056, "utm_accuracy_code": "H", "bcgs_id": 8561, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112245, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:05:15Z", "update_user": "WELLS", "update_date": "2016-12-04T06:09:29Z", "well_guid": "0fe743e2-a8cd-47ac-8e88-d06613b8f478", "identification_plate_number": 48350, "owner_full_name": "VALENTINE CLEUGH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13621 248 ROAD 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-28", "construction_end_date": "2016-03-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "2660.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "25.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "36.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6244788, "utm_easting": 619206, "utm_accuracy_code": "H", "bcgs_id": 8536, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112246, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": "WELLS", "update_date": "2018-02-24T17:02:58Z", "well_guid": "e426e14b-102a-445d-a6a6-54390c927d34", "identification_plate_number": 48394, "owner_full_name": "RADDY DEEM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "NOT PROVIDED 1 12", "city": "NOT PROVIDED", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "23", "legal_township": "85", "legal_range": "20", "land_district": "44", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-25", "construction_end_date": "2015-11-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": "2370.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "36.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "80.00", "final_casing_stick_up": "20.000", "bedrock_depth": "11.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "54.00", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6251077, "utm_easting": 620539, "utm_accuracy_code": "H", "bcgs_id": 13733, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112247, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:37:50Z", "update_user": "WELLS", "update_date": "2016-12-09T19:59:09Z", "well_guid": "1ed38946-74fa-492d-ac08-fcbc9dc2d852", "identification_plate_number": 48348, "owner_full_name": "GREGORIO LILLEGARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "281 ROAD SOUTH 1 12", "city": "MONTNEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "26", "legal_township": "85", "legal_range": "20", "land_district": "44", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-17", "construction_end_date": "2015-11-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "2337.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "37.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "75.00", "final_casing_stick_up": "30.000", "bedrock_depth": "18.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "47.50", "well_yield": "150.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6251953, "utm_easting": 619884, "utm_accuracy_code": "H", "bcgs_id": 13734, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112248, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:47:27Z", "update_user": "WELLS", "update_date": "2016-12-04T06:50:31Z", "well_guid": "24d8f0b3-7f93-4a60-90d3-4f5e076b0751", "identification_plate_number": 48347, "owner_full_name": "HATTIE FARRESS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "283 ROAD 1 12", "city": "MONTNEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": "86", "legal_range": "20", "land_district": "44", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-21", "construction_end_date": "2015-10-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "25.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "90.70", "finished_well_depth": "90.00", "final_casing_stick_up": "30.000", "bedrock_depth": "74.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.30", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6255848, "utm_easting": 618192, "utm_accuracy_code": "H", "bcgs_id": 13735, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112249, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": "WELLS", "update_date": "2016-12-09T19:57:32Z", "well_guid": "e567db8c-9660-40f5-a547-10a44fe54ab3", "identification_plate_number": 48346, "owner_full_name": "CODY HENRYSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10296 LYNDEN SUB. 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-14", "construction_end_date": "2015-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": "2760.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "25.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "165.00", "finished_well_depth": "165.00", "final_casing_stick_up": "30.000", "bedrock_depth": "40.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "134.80", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6250653, "utm_easting": 615494, "utm_accuracy_code": "H", "bcgs_id": 11617, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112250, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:45:41Z", "update_user": "WELLS", "update_date": "2016-12-04T08:00:01Z", "well_guid": "2ba83132-d56f-40ef-84ef-d71c0a274d06", "identification_plate_number": 48345, "owner_full_name": "DARYA WASZCZYKOWSKI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13332 244 ROAD 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-07", "construction_end_date": "2015-10-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": "2670.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "26.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "38.000", "bedrock_depth": "127.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "116.80", "well_yield": "300.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6238530, "utm_easting": 621657, "utm_accuracy_code": "H", "bcgs_id": 12409, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112251, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": "WELLS", "update_date": "2016-12-04T08:14:55Z", "well_guid": "614b5135-4f2d-4440-9726-95a7cfb72d2b", "identification_plate_number": 48344, "owner_full_name": "ERIN DIKLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13363 244 ROAD 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-03", "construction_end_date": "2015-10-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "2730.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "28.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "90.00", "finished_well_depth": "90.00", "final_casing_stick_up": "30.000", "bedrock_depth": "68.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.50", "well_yield": "70.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6238025, "utm_easting": 621390, "utm_accuracy_code": "H", "bcgs_id": 8425, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112252, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T08:14:29Z", "update_user": "WELLS", "update_date": "2016-12-09T19:55:49Z", "well_guid": "dd373cc8-fc5f-4969-8262-bac78093c179", "identification_plate_number": 48343, "owner_full_name": "ISA HANSOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13263 OLD HOPE ROAD 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-24", "construction_end_date": "2015-10-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a6d18d27-081b-4d35-84fd-79816c757a13", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": "2570.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "116.50", "finished_well_depth": "116.50", "final_casing_stick_up": "30.000", "bedrock_depth": "104.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.30", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6238383, "utm_easting": 622098, "utm_accuracy_code": "H", "bcgs_id": 8425, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112253, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "WELLS", "update_date": "2016-12-06T02:05:38Z", "well_guid": "c14c5782-c76e-4593-8913-c3a402aa64e5", "identification_plate_number": 16117, "owner_full_name": "HELLI KAMING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "192 SUNDIAL ROAD 1 12", "city": "OLIVER", "legal_lot": "110", "legal_plan": "KAP7333", "legal_district_lot": "1158", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "110001531", "well_location_description": "IN THE BACKYARD ON THE EAST PROPERTY LINE", "construction_start_date": "2015-02-05", "construction_end_date": "2015-02-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "65.00", "finished_well_depth": "65.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5460933, "utm_easting": 316456, "utm_accuracy_code": "J", "bcgs_id": 286, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112254, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "WELLS", "update_date": "2016-12-06T02:07:57Z", "well_guid": "26a4c682-04c1-4b0f-9d8f-fce82c31a561", "identification_plate_number": 19855, "owner_full_name": "SHAUN TOMASONI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9770 SUNDIAL ROAD 1 12", "city": "OLIVER", "legal_lot": "117", "legal_plan": "KAP10427", "legal_district_lot": "1158", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2012-07-02", "construction_end_date": "2012-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "65.00", "finished_well_depth": "65.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5460854, "utm_easting": 316287, "utm_accuracy_code": "H", "bcgs_id": 285, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112255, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "WELLS", "update_date": "2016-12-08T20:33:13Z", "well_guid": "37e71274-e328-43c8-ae3b-6e7718fcd6af", "identification_plate_number": 48376, "owner_full_name": "LISSA IACOBINI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1970 OSPREY LANE 1 12", "city": "CAWSTON", "legal_lot": "11", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "CORNER SOUTHEAST OF PROPERTY BESIDE ROAD", "construction_start_date": "2016-01-25", "construction_end_date": "2016-01-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "12.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "41.00", "finished_well_depth": "41.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "SANITARY WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5449676, "utm_easting": 299142, "utm_accuracy_code": "H", "bcgs_id": 163, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112256, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:09Z", "update_user": "WELLS", "update_date": "2016-12-09T20:16:01Z", "well_guid": "b8308c6c-cea4-4455-8313-81a188bc305a", "identification_plate_number": null, "owner_full_name": "PHEBE FURMSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "264 SUNDIAL ROAD 1 12", "city": "OLIVER", "legal_lot": "118", "legal_plan": "10427", "legal_district_lot": "1158", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "109574131", "well_location_description": "BACK NORTHEAST CORNER OF THE LOT ON THE LAKE", "construction_start_date": "2015-04-25", "construction_end_date": "2015-04-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "68.00", "finished_well_depth": "68.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5460868, "utm_easting": 316275, "utm_accuracy_code": "A", "bcgs_id": 285, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112257, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "WELLS", "update_date": "2016-12-11T00:14:48Z", "well_guid": "647f253b-611e-4a04-93ca-74ef208b6901", "identification_plate_number": 48399, "owner_full_name": "CORALIE ROSITA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "163 FARLIEGH LAKE 1 12", "city": "PENTICTON", "legal_lot": "1", "legal_plan": "KAP23234", "legal_district_lot": "11444", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "106536557", "well_location_description": "DOWN IN THE BOTTOM OF THE FIELD BESIDE THE LAKE", "construction_start_date": "2015-06-09", "construction_end_date": "2015-06-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "38.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5480820, "utm_easting": 300784, "utm_accuracy_code": "J", "bcgs_id": 364, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112258, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "WELLS", "update_date": "2016-12-06T02:03:14Z", "well_guid": "e45e2407-41f6-46e8-a02a-a91b6e8a0943", "identification_plate_number": 48377, "owner_full_name": "CHARLINE SPILLARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1612 HIGHWAY 975 1 12", "city": "OKANAGAN FALLS", "legal_lot": "1A", "legal_plan": "21205", "legal_district_lot": "110", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "104642074", "well_location_description": "10' BEHIND SHOP", "construction_start_date": "2016-01-05", "construction_end_date": "2016-01-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "76.00", "finished_well_depth": "76.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5467856, "utm_easting": 313212, "utm_accuracy_code": "J", "bcgs_id": 337, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112259, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:06:01Z", "update_user": "WELLS", "update_date": "2016-12-09T20:32:22Z", "well_guid": "91fa7c59-c7d1-4fd4-b38c-c2f58c081505", "identification_plate_number": 48382, "owner_full_name": "RUTHY SOKILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "561 OLD HEDLEY ROAD 1 12", "city": "PRINCETON", "legal_lot": "1A", "legal_plan": "KAP36273", "legal_district_lot": "140752048", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "102991161", "well_location_description": "EAST OF ORIGINAL FARM HOUSE IN FIELD", "construction_start_date": "2016-01-18", "construction_end_date": "2016-01-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "12.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "60.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "150.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5482412, "utm_easting": 684816, "utm_accuracy_code": "J", "bcgs_id": 4849, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112260, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:12:47Z", "update_user": "WELLS", "update_date": "2017-01-06T00:10:58Z", "well_guid": "d91c837b-3ac5-4e37-b370-8dfb8835e589", "identification_plate_number": 42826, "owner_full_name": "RICHART CARP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "230 Brunette 1 12", "city": "New Westminster", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Construction Site", "construction_start_date": "2016-11-23", "construction_end_date": "2016-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "77.00", "finished_well_depth": "77.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5452109, "utm_easting": 508008, "utm_accuracy_code": "H", "bcgs_id": 9483, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112261, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:24:52Z", "update_user": "WELLS", "update_date": "2016-12-09T20:25:57Z", "well_guid": "59d1d3c7-5dc3-49f3-a34b-c82cf5169cd7", "identification_plate_number": 48373, "owner_full_name": "OLYMPIE BARRINGER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2359 PRINCETON/SUMMERLAND ROAD 1 12", "city": "PRINCETON", "legal_lot": "14", "legal_plan": "KAP28188", "legal_district_lot": "1937", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "104625099", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-04", "construction_end_date": "2016-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "42.00", "finished_well_depth": "42.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLUG", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5501613, "utm_easting": 691164, "utm_accuracy_code": "J", "bcgs_id": 4899, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112262, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:39:44Z", "update_user": "WELLS", "update_date": "2016-12-06T02:04:29Z", "well_guid": "0dfd190e-ab5a-458a-9662-a2cca2132dd1", "identification_plate_number": 48368, "owner_full_name": "BRYON COEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "554 SAN ANGE WAY 1 12", "city": "NOT PROVIDED", "legal_lot": "15", "legal_plan": "KAP53286", "legal_district_lot": "13528", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "118974732", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-12", "construction_end_date": "2016-07-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "41.00", "finished_well_depth": "41.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5482226, "utm_easting": 685127, "utm_accuracy_code": "J", "bcgs_id": 4849, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112263, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:53:09Z", "update_user": "WELLS", "update_date": "2016-12-09T20:20:11Z", "well_guid": "1e66dfdb-3592-438d-bfe2-4537c0e77ef3", "identification_plate_number": 19897, "owner_full_name": "LACIE FAULCONBRIDGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3230 WILDWOOD ROAD 1 12", "city": "KELOWNA", "legal_lot": "18", "legal_plan": "20240", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "107885466", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-26", "construction_end_date": "2016-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "80.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "5.00", "artesian_pressure": "5.00", "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5526425, "utm_easting": 324853, "utm_accuracy_code": "J", "bcgs_id": 561, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112264, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "WELLS", "update_date": "2016-12-06T02:06:01Z", "well_guid": "32f7fcfc-9794-45d8-96d3-4c5a2a2bd43e", "identification_plate_number": 48374, "owner_full_name": "NADY MACCLEOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1025 HIGHWAY 3 1 12", "city": "CAWSTON BC", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113772686", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-20", "construction_end_date": "2016-06-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "110.00", "finished_well_depth": "102.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "87.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5440737, "utm_easting": 301882, "utm_accuracy_code": "J", "bcgs_id": 22, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112265, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:26:00Z", "update_user": "WELLS", "update_date": "2016-12-09T20:24:03Z", "well_guid": "d0474a8e-4a89-4a14-8101-68ce75b48f0f", "identification_plate_number": 48367, "owner_full_name": "RUTHY ST.QUENTIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "908 BALFORT ROAD 1 12", "city": "PRINCETON", "legal_lot": "1", "legal_plan": "KAP3115B", "legal_district_lot": "11185", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "113024809", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-15", "construction_end_date": "2016-07-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "9.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "300.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5489403, "utm_easting": 680455, "utm_accuracy_code": "J", "bcgs_id": 4875, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112266, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:04:07Z", "update_user": "WELLS", "update_date": "2016-12-05T18:13:04Z", "well_guid": "3ca47856-a324-4268-b0bf-7048eafa5319", "identification_plate_number": null, "owner_full_name": "KALLI MURIEL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "942 CREIGHTON VALLEY ROAD 1 12", "city": "LUMBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1512", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "111515368", "well_location_description": "WELL LOCATED APPROXIMATELY 5 METERS FROM NORTH EAST CORNER OF HOUSE.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "35.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5563649, "utm_easting": 368075, "utm_accuracy_code": "A", "bcgs_id": 9016, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112267, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "1e8e0b3a-45f6-456d-9876-6472c7b327a1", "identification_plate_number": 48640, "owner_full_name": "FANCHETTE GUERRIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "VIP 67156", "legal_district_lot": "190", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Lot 2 of approved subdivision plan.", "construction_start_date": "2016-09-07", "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing ", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "349.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "Pea gravel and bentonite", "backfill_depth": "149.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "320.00", "finished_well_depth": "168.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "98.00", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5468651, "utm_easting": 383893, "utm_accuracy_code": "H", "bcgs_id": 11800, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112268, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:24:10Z", "update_user": "WELLS", "update_date": "2017-03-13T22:24:49Z", "well_guid": "904c97c5-3b61-4d04-b6d7-416eb7956a8c", "identification_plate_number": 10880, "owner_full_name": "NIKOLAOS DAINTRY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "2748 Sunshine Valley Road West Road RR 1 12", "city": "Merritt", "legal_lot": "1A", "legal_plan": "KAP56271", "legal_district_lot": "1", "legal_block": " ", "legal_section": "36", "legal_township": "13", "legal_range": "23", "land_district": null, "legal_pid": "123318112", "well_location_description": "NONE PROVIDED", "construction_start_date": "2006-08-08", "construction_end_date": "2006-08-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "12.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "412.00", "finished_well_depth": "412.00", "final_casing_stick_up": "24.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "150.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5555053, "utm_easting": 641174, "utm_accuracy_code": "A", "bcgs_id": 4965, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112269, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "258a0af9-e6a0-45e6-ae21-e11d475ecda0", "identification_plate_number": 48662, "owner_full_name": "MARIE-ANN BAUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Duncan", "legal_lot": "11", "legal_plan": "EPP 53285", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": " ", "legal_range": "8", "land_district": "50", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-18", "construction_end_date": "2016-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing ", "latitude": "49.290000", "longitude": "-122.550000", "ground_elevation": "383.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "605.00", "finished_well_depth": "605.00", "final_casing_stick_up": "24.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": "2.00", "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5404776, "utm_easting": 439565, "utm_accuracy_code": "H", "bcgs_id": 9636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112270, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "3c2f285c-d85e-410d-92cc-934e2a38e3e9", "identification_plate_number": 48638, "owner_full_name": "HEATH DYMOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1178", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "33", "legal_pid": "103663582", "well_location_description": "South 20 acre parcel of D.L. 178, access off Stonefly Road.", "construction_start_date": "2016-08-26", "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.200000", "longitude": "-122.510000", "ground_elevation": "333.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "190.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "138.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5458504, "utm_easting": 406603, "utm_accuracy_code": "H", "bcgs_id": 9181, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112271, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:41:55Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "949c1d9e-974c-4064-b27d-d51da4d0a943", "identification_plate_number": 48663, "owner_full_name": "DOM COBAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Duncan", "legal_lot": "12", "legal_plan": "EPP 53285", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": " ", "legal_range": "8", "land_district": "50", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-06-22", "construction_end_date": "2016-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "430.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "360.00", "finished_well_depth": "360.00", "final_casing_stick_up": "24.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.740", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Welded", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5404707, "utm_easting": 439510, "utm_accuracy_code": "H", "bcgs_id": 9636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112272, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "54305474-340e-4953-8f26-201c5f7af3f8", "identification_plate_number": 48647, "owner_full_name": "ICHABOD STOOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2780 Bradshaw 1 12", "city": "Qualcium Beach", "legal_lot": "1Strata 1", "legal_plan": "Strata EPS 722", "legal_district_lot": "190", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Together with an interest in the common property in proportion to the unit entitlement of the strata lot as shown on Form V.", "construction_start_date": "2016-07-26", "construction_end_date": "2016-07-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": "140.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "86.00", "finished_well_depth": "82.08", "final_casing_stick_up": "26.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "26.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5471036, "utm_easting": 384001, "utm_accuracy_code": "H", "bcgs_id": 3319, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112273, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "a1e36426-3011-4d3d-80c5-056fe441951f", "identification_plate_number": 48636, "owner_full_name": "JERVIS VARDEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2130 Sunking 1 12", "city": "Coombs", "legal_lot": "1Strata A", "legal_plan": "VIS 5322", "legal_district_lot": "12", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "33", "legal_pid": "125617061", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-23", "construction_end_date": "2016-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": "287.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "57.00", "finished_well_depth": "56.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "27.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5463188, "utm_easting": 397462, "utm_accuracy_code": "H", "bcgs_id": 3304, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112274, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "d70e5854-37c3-400e-b5d7-4d6871e73b74", "identification_plate_number": 48642, "owner_full_name": "RUSTIN KARCHOWSKI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "11887 Allison Way 1 12", "city": "Ladysmith", "legal_lot": "13", "legal_plan": "VIP 53304", "legal_district_lot": "193", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "43", "legal_pid": "117536499", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-20", "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": "72.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "145.00", "finished_well_depth": "145.00", "final_casing_stick_up": "24.000", "bedrock_depth": "67.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "55.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Simple", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5426653, "utm_easting": 444093, "utm_accuracy_code": "H", "bcgs_id": 3059, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112275, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "da65792c-0de5-4108-b50d-1aa5bafffef5", "identification_plate_number": 43601, "owner_full_name": "JEREMIAS KEARNS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2727 Charles 1 12", "city": "Nanaimo", "legal_lot": "1B", "legal_plan": "VIP 25476", "legal_district_lot": "1", "legal_block": " ", "legal_section": "14", "legal_township": " ", "legal_range": "3", "land_district": null, "legal_pid": "102916053", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-27", "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "122.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "24.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5439661, "utm_easting": 439790, "utm_accuracy_code": "H", "bcgs_id": 4022, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112276, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "4c5f4ed8-f816-416a-ab0c-0e2abb317dd0", "identification_plate_number": 48611, "owner_full_name": "KALLI FARRESS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4830 Island Hwy. West 1 12", "city": "Qualicum Beach", "legal_lot": "12", "legal_plan": "84867", "legal_district_lot": "181", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "127493016", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-23", "construction_end_date": "2016-09-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "138.00", "finished_well_depth": "138.00", "final_casing_stick_up": "34.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5470116, "utm_easting": 386652, "utm_accuracy_code": "H", "bcgs_id": 3314, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112278, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "43253c82-757b-402c-9c6f-bf7de179eaee", "identification_plate_number": 48651, "owner_full_name": "LOTHAIRE MINISTER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Turnbull 1 12", "city": "Qualicum Beach", "legal_lot": "112", "legal_plan": "35982", "legal_district_lot": "1", "legal_block": "360", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "01", "legal_pid": "100369578", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-15", "construction_end_date": "2016-08-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": "430.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "273.00", "finished_well_depth": "272.08", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "217.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5468654, "utm_easting": 351941, "utm_accuracy_code": "H", "bcgs_id": 13772, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112279, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "WELLS", "update_date": "2016-12-06T02:33:56Z", "well_guid": "cc214d98-5d55-42f4-b91b-67b60d671cf0", "identification_plate_number": 48380, "owner_full_name": "SLOAN AISHFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10208 HADDRELL AVENUE 1 12", "city": "SUMMERLAND", "legal_lot": "12", "legal_plan": "KAP4616", "legal_district_lot": "1475", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "BACKYARD CORNER SOUTH", "construction_start_date": "2016-12-05", "construction_end_date": "2016-12-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "47.00", "finished_well_depth": "47.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ARTESIAN", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5496535, "utm_easting": 304918, "utm_accuracy_code": "J", "bcgs_id": 426, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112280, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:33:20Z", "update_user": "WELLS", "update_date": "2016-12-06T02:37:22Z", "well_guid": "9c254145-1c2e-4151-9fd6-f0fcc5d11fc8", "identification_plate_number": 48365, "owner_full_name": "JENI ST.QUENTIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "124 ROAD 10 1 12", "city": "OLIVER", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-29", "construction_end_date": "2016-07-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "50.00", "finished_well_depth": "29.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5446607, "utm_easting": 312362, "utm_accuracy_code": "J", "bcgs_id": 182, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112281, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "WELLS", "update_date": "2016-12-08T20:28:20Z", "well_guid": "e29c38d4-e164-465f-8acc-df86d47787c3", "identification_plate_number": 48383, "owner_full_name": "JONIS FRANIES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1398 GREEN LAKE ROAD 1 12", "city": "WILLOWBROOK", "legal_lot": "12", "legal_plan": "KAP60687", "legal_district_lot": "128+3953S", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "54", "legal_pid": "123969865", "well_location_description": "WELL IS LOCATED APPROXIMATELY 20' OF THE SOUTHWEST CORNER OF PROPERTY", "construction_start_date": "2015-03-18", "construction_end_date": "2015-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "68.00", "finished_well_depth": "64.00", "final_casing_stick_up": "24.000", "bedrock_depth": "68.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.50", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5460760, "utm_easting": 310688, "utm_accuracy_code": "J", "bcgs_id": 263, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112282, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "WELLS", "update_date": "2017-01-06T00:08:56Z", "well_guid": "01b609a3-cdd7-4c32-ab48-9cd258238ef3", "identification_plate_number": 42847, "owner_full_name": "VERN SIVIL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "32086 LOUGHEED HIGHWAY 1 12", "city": "MISSION", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTH END OF PARKING LOT", "construction_start_date": "2016-12-05", "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "102.00", "finished_well_depth": "100.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "65.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442201, "utm_easting": 548450, "utm_accuracy_code": "H", "bcgs_id": 4245, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112283, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T18:57:31Z", "update_user": "WELLS", "update_date": "2017-05-03T23:45:13Z", "well_guid": "66c4da87-c1c1-477c-9b54-0edbd492485f", "identification_plate_number": 44247, "owner_full_name": "BERTRAND JOSELIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Horsethief Creek Road 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "112193", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "125824899", "well_location_description": "That part of district lot 12193 KD Except PL NEP 19510 lying north of a road shown on Plan NEP 19510", "construction_start_date": "2016-11-23", "construction_end_date": "2016-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "3226.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "96.00", "finished_well_depth": "96.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "86.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5604716, "utm_easting": 558377, "utm_accuracy_code": "H", "bcgs_id": 13823, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112284, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:13:19Z", "update_user": "WELLS", "update_date": "2016-12-08T22:09:43Z", "well_guid": "9ac1636d-045a-4c1c-b9a2-5926602242f5", "identification_plate_number": 41209, "owner_full_name": "IZAK MACY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "WILSON LAKE ROAD 1 12", "city": "BRIDGE LAKE", "legal_lot": "13", "legal_plan": "KAP64198", "legal_district_lot": "11467", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "124478270", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-13", "construction_end_date": "2016-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": "3772.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "140.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "7.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5707854, "utm_easting": 453855, "utm_accuracy_code": "H", "bcgs_id": 13736, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112285, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:19Z", "update_user": "WELLS", "update_date": "2016-12-08T22:09:11Z", "well_guid": "b959808a-f1f7-4e20-ae3b-ed3677c871de", "identification_plate_number": 41096, "owner_full_name": "TABBY ADAMOWICZ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6250 HIGHWAY 24 1 12", "city": "LONE BUTTE", "legal_lot": "11", "legal_plan": "KAP50586", "legal_district_lot": "12081", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-17", "construction_end_date": "2016-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "3561.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "79.00", "finished_well_depth": "79.00", "final_casing_stick_up": "22.000", "bedrock_depth": "32.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "3.50", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5711576, "utm_easting": 628622, "utm_accuracy_code": "H", "bcgs_id": 5817, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112286, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": "WELLS", "update_date": "2017-01-09T21:00:36Z", "well_guid": "becbdad5-31ae-4699-bbc8-7ccd1571f22d", "identification_plate_number": 41097, "owner_full_name": "RICHMOUND LATCHMORE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "127067505", "well_location_description": "OFF OF SOUTH EAGAN CREEK FORESTRY ROAD", "construction_start_date": "2016-05-05", "construction_end_date": "2016-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "182.00", "finished_well_depth": "182.00", "final_casing_stick_up": "18.000", "bedrock_depth": "37.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "7.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5698649, "utm_easting": 683218, "utm_accuracy_code": "H", "bcgs_id": 13737, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112287, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": "WELLS", "update_date": "2016-12-08T22:07:00Z", "well_guid": "dca87ca8-ba3a-4ecb-b29a-2687e2f96d45", "identification_plate_number": 41098, "owner_full_name": "JODIE SLIMINGS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7074 POWELL ROAD 1 12", "city": "SHERIDAN LAKE", "legal_lot": "1A", "legal_plan": "KAP21638", "legal_district_lot": "14465", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "129671124", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-16", "construction_end_date": "2016-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "3722.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "162.00", "finished_well_depth": "162.00", "final_casing_stick_up": "18.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "4.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5710302, "utm_easting": 642049, "utm_accuracy_code": "H", "bcgs_id": 5852, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112288, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "WELLS", "update_date": "2016-12-08T22:07:26Z", "well_guid": "b49266aa-7066-49e0-9b22-102deb5b3b25", "identification_plate_number": 41099, "owner_full_name": "ROANA BEXON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6428 EDEN ROAD 1 12", "city": "WATCH LAKE", "legal_lot": "19", "legal_plan": "26063", "legal_district_lot": "11919", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "105266661", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-17", "construction_end_date": "2016-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": "3566.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "222.00", "finished_well_depth": "222.00", "final_casing_stick_up": "18.000", "bedrock_depth": "30.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "3.600", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "TEMP STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5703364, "utm_easting": 631645, "utm_accuracy_code": "H", "bcgs_id": 5751, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112289, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T17:49:02Z", "update_user": "WELLS", "update_date": "2016-12-08T22:07:51Z", "well_guid": "e9c9ec27-3420-4a38-a121-747176f56b1f", "identification_plate_number": 41200, "owner_full_name": "CELISSE PROSKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7118 CONNIE ROAD 1 12", "city": "BRIDGE LAKE", "legal_lot": "11", "legal_plan": "KAP22611", "legal_district_lot": "14291", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "106799108", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-19", "construction_end_date": "2016-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "3736.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "68.00", "finished_well_depth": "62.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5711727, "utm_easting": 653898, "utm_accuracy_code": "H", "bcgs_id": 5880, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112290, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:16Z", "update_user": "WELLS", "update_date": "2016-12-08T22:08:14Z", "well_guid": "d79d7162-1998-4d5e-95a9-b6d9a9abc904", "identification_plate_number": 41201, "owner_full_name": "OSBOURN SAWERS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7807 NORTH BONAPARTE ROAD 1 12", "city": "BRIDGE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "11886", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-24", "construction_end_date": "2016-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": "3765.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "101.50", "final_casing_stick_up": "22.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "24.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5703379, "utm_easting": 654097, "utm_accuracy_code": "H", "bcgs_id": 5759, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112291, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:29:01Z", "update_user": "WELLS", "update_date": "2017-01-09T20:59:36Z", "well_guid": "2bb0eaf7-da1f-4c19-9f49-9de6e689b3b5", "identification_plate_number": 41202, "owner_full_name": "LEMAR WIGGALL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "NORTH POINT ROAD 1 12", "city": "SHERIDAN LAKE", "legal_lot": "1P", "legal_plan": "21225", "legal_district_lot": "14532", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "107554010", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-25", "construction_end_date": "2016-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": "3738.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "103.00", "finished_well_depth": "103.00", "final_casing_stick_up": "19.000", "bedrock_depth": "63.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5709665, "utm_easting": 644444, "utm_accuracy_code": "H", "bcgs_id": 5850, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112292, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:57:29Z", "update_user": "WELLS", "update_date": "2016-12-08T22:05:58Z", "well_guid": "3f5dfc46-f56b-4ecf-9ab2-423691324a8f", "identification_plate_number": 41302, "owner_full_name": "REYNOLD HARCUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5580 LAKESIDE COURT 1 12", "city": "103 MILE", "legal_lot": "17", "legal_plan": "31340", "legal_district_lot": "11111", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103745741", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-28", "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "3191.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "74.50", "final_casing_stick_up": "22.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "32.00", "well_yield": "36.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5727715, "utm_easting": 617517, "utm_accuracy_code": "H", "bcgs_id": 5923, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112293, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:08:16Z", "update_user": "WELLS", "update_date": "2016-12-08T19:18:33Z", "well_guid": "2d27a772-3d3b-4866-950b-99d7ceff2377", "identification_plate_number": 41204, "owner_full_name": "MATILDE PREST", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3980 LARSON LAKE ROAD 1 12", "city": "108 MILE RANCH", "legal_lot": "1", "legal_plan": "M11544", "legal_district_lot": "11113", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "104660927", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-30", "construction_end_date": "2016-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": "2980.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "402.00", "finished_well_depth": "402.00", "final_casing_stick_up": "18.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5741678, "utm_easting": 613864, "utm_accuracy_code": "H", "bcgs_id": 13738, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112294, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:40Z", "update_user": "WELLS", "update_date": "2016-12-08T22:04:59Z", "well_guid": "74fef057-813c-43b8-b77f-201cfd140a16", "identification_plate_number": 41206, "owner_full_name": "ASHLY ROZ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "KATCHMAR 1 12", "city": "HORSE LAKE", "legal_lot": "121", "legal_plan": "22538", "legal_district_lot": "14049", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "106812457", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-07", "construction_end_date": "2016-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": "3727.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "103.00", "finished_well_depth": "103.00", "final_casing_stick_up": "20.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "13.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5714088, "utm_easting": 628208, "utm_accuracy_code": "H", "bcgs_id": 5828, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112295, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "WELLS", "update_date": "2017-01-09T21:00:20Z", "well_guid": "9e591a8d-6450-4a2d-ae62-21b18cdd82a1", "identification_plate_number": 41207, "owner_full_name": "CHARMAINE SINDERLAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "KATCHMAR ROAD 1 12", "city": "HORSE LAKE", "legal_lot": "121", "legal_plan": "22538", "legal_district_lot": "14049", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "106812457", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-08", "construction_end_date": "2016-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "3792.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "281.00", "finished_well_depth": "281.00", "final_casing_stick_up": "18.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5713997, "utm_easting": 628173, "utm_accuracy_code": "H", "bcgs_id": 5826, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112296, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:04Z", "update_user": "WELLS", "update_date": "2017-10-27T21:33:54Z", "well_guid": "7138ee10-b424-4b22-94ef-fe887c0abfb3", "identification_plate_number": 50510, "owner_full_name": "VILHELMINA PULESTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "33", "legal_township": "87", "legal_range": "23", "land_district": null, "legal_pid": "123456789", "well_location_description": "N/E QUARTER. 87-23W6 AND 88-23W6. INGA LAKE RD. 2KM, LEFT 4.3 KM, LEFT 2KM INTO LOCATION", "construction_start_date": "2014-03-31", "construction_end_date": "2014-03-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "220.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "74.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAPPED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "5", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6273247, "utm_easting": 586123, "utm_accuracy_code": "A", "bcgs_id": 13739, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112297, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "WELLS", "update_date": "2016-12-08T22:04:05Z", "well_guid": "e0224c8e-257a-4a7a-8616-084e0ab7936d", "identification_plate_number": 41208, "owner_full_name": "VINNIE BRAFERTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6985 INMAN ROAD 1 12", "city": "LONE BUTTE", "legal_lot": "15", "legal_plan": "32524", "legal_district_lot": "14265", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103400646", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-10", "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": "3813.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "123.00", "finished_well_depth": "123.00", "final_casing_stick_up": "18.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "4.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5714009, "utm_easting": 622515, "utm_accuracy_code": "H", "bcgs_id": 5808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112298, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:40:02Z", "update_user": "WELLS", "update_date": "2016-12-08T22:03:40Z", "well_guid": "6b099e37-6b9e-476c-8525-2b6cb9299c56", "identification_plate_number": 41205, "owner_full_name": "TIFFANY TOMALA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "GROSSET ROAD 1 12", "city": "BRIDGE LAKE", "legal_lot": "1F", "legal_plan": "35175", "legal_district_lot": "11480", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "102888505", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-03", "construction_end_date": "2016-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "3830.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "36.000", "bedrock_depth": "72.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.200", "artesian_flow": "0.50", "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5711648, "utm_easting": 661309, "utm_accuracy_code": "H", "bcgs_id": 9514, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112299, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "WELLS", "update_date": "2017-01-09T21:00:04Z", "well_guid": "0c7f7e87-cf5f-42ec-bb54-789f75f5e64d", "identification_plate_number": 41210, "owner_full_name": "IVER YOUNGHUSBAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8083 NORTH BRIDGE LAKE ROAD 1 12", "city": "BRIDGE LAKE", "legal_lot": "11", "legal_plan": "KAP87827", "legal_district_lot": "11455", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "127707962", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-15", "construction_end_date": "2016-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.530000", "ground_elevation": "3853.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "137.00", "finished_well_depth": "133.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "9.600", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5710459, "utm_easting": 658311, "utm_accuracy_code": "H", "bcgs_id": 5879, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112300, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T21:47:38Z", "update_user": "WELLS", "update_date": "2016-12-08T22:02:51Z", "well_guid": "5f41bb70-f400-478d-8e86-27b5be516284", "identification_plate_number": 41211, "owner_full_name": "KELCI SHIPLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HINCHIE ROAD 1 12", "city": "LONE BUTTE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "13804", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "113363743", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-29", "construction_end_date": "2016-06-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "4024.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "143.00", "finished_well_depth": "143.00", "final_casing_stick_up": "16.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "4.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5706219, "utm_easting": 627612, "utm_accuracy_code": "H", "bcgs_id": 13740, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112301, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "WELLS", "update_date": "2016-12-08T22:25:13Z", "well_guid": "c241effb-c959-4f50-be03-eb9b91f14a63", "identification_plate_number": 41212, "owner_full_name": "NERITA RINGROSE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1537 CHASM ROAD 1 12", "city": "70 MILE HOUSE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1471", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "113288008", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-05", "construction_end_date": "2016-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "3538.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "182.00", "finished_well_depth": "182.00", "final_casing_stick_up": "20.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "0.260", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5675838, "utm_easting": 605925, "utm_accuracy_code": "H", "bcgs_id": 5663, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112302, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "WELLS", "update_date": "2017-06-26T18:47:00Z", "well_guid": "af7e86cb-9f3c-4ac3-b873-e197ab271e70", "identification_plate_number": 11550, "owner_full_name": "DRUCILL KEENLAYSIDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "5360 SCOTTY CREEK ROAD 1 12", "city": "KELOWNA", "legal_lot": "1A", "legal_plan": "KAP84569", "legal_district_lot": "1", "legal_block": " ", "legal_section": "7", "legal_township": "24", "legal_range": " ", "land_district": null, "legal_pid": "127168140", "well_location_description": "NONE PROVIDED", "construction_start_date": "2005-03-01", "construction_end_date": "2005-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "16.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "335.00", "finished_well_depth": "334.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5534356, "utm_easting": 331185, "utm_accuracy_code": "A", "bcgs_id": 652, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112303, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": "WELLS", "update_date": "2016-12-08T22:29:07Z", "well_guid": "3ce91866-31d9-402f-9d0b-36f7db6fa1f6", "identification_plate_number": 41213, "owner_full_name": "CATHRIN KLEHYN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7012 NETHERLAND ROAD 1 12", "city": "LONE BUTTE", "legal_lot": "113", "legal_plan": "KAP56225", "legal_district_lot": "14256", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123311835", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-06", "construction_end_date": "2016-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": "3861.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "162.00", "finished_well_depth": "162.00", "final_casing_stick_up": "18.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5713499, "utm_easting": 624047, "utm_accuracy_code": "H", "bcgs_id": 5807, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112304, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "WELLS", "update_date": "2016-12-09T05:04:12Z", "well_guid": "888b3faf-4a59-4cbb-ad8e-d624474e274e", "identification_plate_number": 41215, "owner_full_name": "JOHAN GOODE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7614 BEASLEY ROAD 1 12", "city": "DEKA LAKE", "legal_lot": "180", "legal_plan": "21280", "legal_district_lot": "13721", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "107540116", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-13", "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "3649.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "218.00", "finished_well_depth": "213.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "171.00", "well_yield": "14.400", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5720030, "utm_easting": 650073, "utm_accuracy_code": "H", "bcgs_id": 5948, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112305, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "WELLS", "update_date": "2017-01-09T21:01:26Z", "well_guid": "0bce4d8d-9d63-4751-8c59-886ce03abe93", "identification_plate_number": 41214, "owner_full_name": "LEESE DEEM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6482 WATSON ROAD 1 12", "city": "HORSE LAKE", "legal_lot": "12", "legal_plan": "KAP55330", "legal_district_lot": "13809", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123166622", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-07", "construction_end_date": "2016-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "3322.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "142.00", "finished_well_depth": "142.00", "final_casing_stick_up": "18.000", "bedrock_depth": "101.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "8.400", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5715899, "utm_easting": 630877, "utm_accuracy_code": "H", "bcgs_id": 5838, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112306, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "WELLS", "update_date": "2017-01-09T21:34:55Z", "well_guid": "7252882b-a3fd-4b50-a7fb-4c973bf9d944", "identification_plate_number": 47994, "owner_full_name": "KARRIE SMOGUR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "SUMMONS ROAD 1 12", "city": "CRESTON", "legal_lot": "1A", "legal_plan": "EPP59708", "legal_district_lot": "18644", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-11", "construction_end_date": "2016-10-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "1998.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "340.00", "finished_well_depth": "340.00", "final_casing_stick_up": "24.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "40.000", "artesian_flow": "22.00", "artesian_pressure": null, "well_cap_type": "WELDED FLANGE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5435530, "utm_easting": 529055, "utm_accuracy_code": "H", "bcgs_id": 699, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112307, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:01:15Z", "update_user": "WELLS", "update_date": "2016-12-11T01:37:21Z", "well_guid": "39f8d832-da0d-4bed-a912-e961ebe9d614", "identification_plate_number": 47905, "owner_full_name": "GREGORIUS DEBLASIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1630 EVANS ROAD 1 12", "city": "CRESTON", "legal_lot": "1A", "legal_plan": "NEP22557", "legal_district_lot": "19558", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123210931", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-14", "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "1961.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "DRILL CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "230.00", "finished_well_depth": "230.00", "final_casing_stick_up": "12.000", "bedrock_depth": "3.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "38.90", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5440173, "utm_easting": 526740, "utm_accuracy_code": "H", "bcgs_id": 786, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112308, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "WELLS", "update_date": "2016-12-11T01:37:02Z", "well_guid": "784cf831-9aae-408b-98a7-af6ba2da5f7b", "identification_plate_number": 47995, "owner_full_name": "ROBINA DUNK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "NOT PROVIDED 1 12", "city": "NOT PROVIDED", "legal_lot": "11", "legal_plan": "EPP66288", "legal_district_lot": "19558", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-09", "construction_end_date": "2016-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": "2003.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "123.00", "finished_well_depth": "123.00", "final_casing_stick_up": "19.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "60.000", "artesian_flow": "0.50", "artesian_pressure": null, "well_cap_type": "WATER TIGHT", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439798, "utm_easting": 527050, "utm_accuracy_code": "H", "bcgs_id": 9546, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112309, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:58:32Z", "update_user": "WELLS", "update_date": "2017-08-28T22:27:47Z", "well_guid": "6639df27-1f11-478b-b294-0deb7bd2db8d", "identification_plate_number": 47906, "owner_full_name": "ALANSON GRCIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "12", "legal_plan": "NEP22680", "legal_district_lot": "19558", "legal_block": "211", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-17", "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": "1965.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "DRILL CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "14.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.18", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439894, "utm_easting": 527065, "utm_accuracy_code": "H", "bcgs_id": 9546, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112310, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:21Z", "well_guid": "2de8b623-45fa-49ee-acae-7dc4599c20f8", "identification_plate_number": 49370, "owner_full_name": "EIRENA SIMUKOV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1515 Kilby Road 1 12", "city": "Harrison Mills", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Behind new barn, mechanical room.", "construction_start_date": "2016-12-06", "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "130.00", "finished_well_depth": "19.00", "final_casing_stick_up": "12.000", "bedrock_depth": "0.10", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "11.00", "well_yield": "20.000", "artesian_flow": "0.10", "artesian_pressure": null, "well_cap_type": "threaded", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5453863, "utm_easting": 578584, "utm_accuracy_code": "H", "bcgs_id": 4718, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112311, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "WELLS", "update_date": "2017-12-21T20:20:54Z", "well_guid": "dabb6d32-2068-420c-b5c6-d7e4e52efc0a", "identification_plate_number": 35008, "owner_full_name": "DOLLI GATH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "42009 BOWMAN 1 12", "city": "CHILLIWACK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-10-04", "construction_end_date": "2016-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "STICK UP", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "245.00", "finished_well_depth": "245.00", "final_casing_stick_up": "30.000", "bedrock_depth": "75.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434491, "utm_easting": 568467, "utm_accuracy_code": "H", "bcgs_id": 3999, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112312, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "WELLS", "update_date": "2017-12-21T20:14:42Z", "well_guid": "e2ed8090-c7db-42f9-a21a-96c0c68470df", "identification_plate_number": 35072, "owner_full_name": "ERIN COBAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "29399 0 AVENUE 1 12", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-11-07", "construction_end_date": "2016-11-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "STICK UP", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "79.00", "finished_well_depth": "79.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5427968, "utm_easting": 543113, "utm_accuracy_code": "H", "bcgs_id": 3857, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112313, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:14:49Z", "update_user": "WELLS", "update_date": "2017-01-09T21:24:04Z", "well_guid": "9e6fa5a1-9fd0-40c3-b963-66e999c6c26e", "identification_plate_number": null, "owner_full_name": "ANNMARIE HYLDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6142 HIGHWAY 3A 1 12", "city": "NELSON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-08-14", "construction_end_date": "2014-08-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "DRILL CUTTINGS", "backfill_depth": "3.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "60.00", "final_casing_stick_up": "17.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5495732, "utm_easting": 496276, "utm_accuracy_code": "G", "bcgs_id": 956, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112314, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "WELLS", "update_date": "2016-12-10T23:47:11Z", "well_guid": "9a8d0faf-9c69-4753-9aad-91651f9d0734", "identification_plate_number": 47953, "owner_full_name": "PRISCELLA MCILWRICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "17200 PILOT BAY ROAD 1 12", "city": "KOOTENAY BAY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "12560", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-26", "construction_end_date": "2016-05-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": "1817.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "285.00", "finished_well_depth": "285.00", "final_casing_stick_up": "22.000", "bedrock_depth": "37.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "37.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5500181, "utm_easting": 508651, "utm_accuracy_code": "H", "bcgs_id": 13742, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112315, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:24:53Z", "update_user": "WELLS", "update_date": "2016-12-10T23:46:55Z", "well_guid": "8452b697-9d57-48b1-8c1b-4008254ed65b", "identification_plate_number": 47963, "owner_full_name": "JAQUELIN TOSSPELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "105495211", "well_location_description": "100' EAST OF SOUTHEAST CORNER OF GARAGE", "construction_start_date": "2016-04-14", "construction_end_date": "2016-04-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": "1697.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "221.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5431823, "utm_easting": 412320, "utm_accuracy_code": "H", "bcgs_id": 12014, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112316, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "WELLS", "update_date": "2017-01-09T21:42:00Z", "well_guid": "23988748-eba8-44b8-ae7b-474084e306ed", "identification_plate_number": 47971, "owner_full_name": "SIMMONDS CATTONNET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "12243", "legal_district_lot": "11239", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "112588164", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-04", "construction_end_date": "2016-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "1697.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "141.20", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5470820, "utm_easting": 459804, "utm_accuracy_code": "H", "bcgs_id": 876, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112317, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:56:05Z", "update_user": "WELLS", "update_date": "2016-12-11T00:13:48Z", "well_guid": "38fdd368-a7f1-447d-85af-b64173c0159f", "identification_plate_number": 47965, "owner_full_name": "CARINE SPILLARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1B", "legal_plan": "NEP4913", "legal_district_lot": "11239", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-01", "construction_end_date": "2016-04-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "1667.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "141.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5470951, "utm_easting": 459711, "utm_accuracy_code": "H", "bcgs_id": 876, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112318, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "WELLS", "update_date": "2017-01-09T21:41:09Z", "well_guid": "12260619-b74f-41da-bf87-893d84b5cde7", "identification_plate_number": 47999, "owner_full_name": "HARV ORMSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "13", "legal_plan": "KAP84635", "legal_district_lot": "1268", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127189520", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-09", "construction_end_date": "2016-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "1683.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "22.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "223.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5431122, "utm_easting": 411089, "utm_accuracy_code": "H", "bcgs_id": 145, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112319, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "WELLS", "update_date": "2016-12-11T00:38:40Z", "well_guid": "7cb6cb6e-20ea-4ff8-8a91-3dbdd8973fb2", "identification_plate_number": 47892, "owner_full_name": "PRISCELLA TONKINSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "NEP17439", "legal_district_lot": "17786", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-12", "construction_end_date": "2016-05-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "420.00", "finished_well_depth": "420.00", "final_casing_stick_up": "23.000", "bedrock_depth": "58.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "32.65", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5438902, "utm_easting": 540573, "utm_accuracy_code": "H", "bcgs_id": 11518, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112320, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "WELLS", "update_date": "2016-12-11T00:51:48Z", "well_guid": "91b61cc3-6fe5-4773-a2e4-baafff4756b3", "identification_plate_number": 47967, "owner_full_name": "DORALYNNE TALE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "14", "legal_plan": "NEP10244", "legal_district_lot": "18383", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-12-10", "construction_end_date": "2016-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": "2020.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "190.00", "finished_well_depth": "190.00", "final_casing_stick_up": "23.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "59.00", "well_yield": "11.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5437029, "utm_easting": 459021, "utm_accuracy_code": "H", "bcgs_id": 694, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112321, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "WELLS", "update_date": "2016-12-11T01:04:26Z", "well_guid": "2da3c25f-9b74-4003-9640-6456fd08e935", "identification_plate_number": 47976, "owner_full_name": "IMMANUEL SALLEIR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "14", "legal_plan": "NEP22680", "legal_district_lot": "19558", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-13", "construction_end_date": "2016-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": "1846.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "360.00", "finished_well_depth": "360.00", "final_casing_stick_up": "18.000", "bedrock_depth": "33.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "5.000", "artesian_flow": "1.50", "artesian_pressure": null, "well_cap_type": "WATER TIGHT", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439766, "utm_easting": 527247, "utm_accuracy_code": "H", "bcgs_id": 9546, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112322, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "WELLS", "update_date": "2017-01-09T21:39:07Z", "well_guid": "71263219-ad9a-4ec9-94f5-78791d648169", "identification_plate_number": 47951, "owner_full_name": "MARENA HARRISSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "13", "legal_plan": "EPP66288", "legal_district_lot": "19558", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-14", "construction_end_date": "2016-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "1851.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "390.00", "finished_well_depth": "390.00", "final_casing_stick_up": "24.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": "2.50", "artesian_pressure": null, "well_cap_type": "WATER TIGHT", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439844, "utm_easting": 527246, "utm_accuracy_code": "H", "bcgs_id": 9546, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112323, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "WELLS", "update_date": "2016-12-11T04:02:28Z", "well_guid": "707251dc-59ea-409d-92cb-1f477a92f192", "identification_plate_number": 31944, "owner_full_name": "MARLON DYKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "KILOMETER 60 1 12", "city": "TOMMY LAKES", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "C-A078-C/94-H-5", "construction_start_date": "2016-08-03", "construction_end_date": "2016-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.200000", "longitude": "-122.510000", "ground_elevation": "2681.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "38.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "24.000", "bedrock_depth": "32.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "15.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6353054, "utm_easting": 569545, "utm_accuracy_code": "H", "bcgs_id": 13743, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112324, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "WELLS", "update_date": "2016-12-11T04:00:56Z", "well_guid": "cf092bab-0bee-42d3-9a85-ca03c7282939", "identification_plate_number": null, "owner_full_name": "BERRI KENTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "12518 260 ROAD 1 12", "city": "MONTNEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-26", "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "2550.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "36.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "180.40", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6265908, "utm_easting": 626637, "utm_accuracy_code": "H", "bcgs_id": 13744, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112325, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "WELLS", "update_date": "2017-01-09T22:34:18Z", "well_guid": "862bbc83-b1bb-44de-90ee-9390f42854aa", "identification_plate_number": 31957, "owner_full_name": "AVRAM MENERE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "11", "legal_township": "82", "legal_range": "18", "land_district": null, "legal_pid": "123456789", "well_location_description": "W6", "construction_start_date": "2016-09-06", "construction_end_date": "2016-09-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "2028.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "30.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "359.00", "finished_well_depth": "359.00", "final_casing_stick_up": "24.000", "bedrock_depth": "306.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "287.80", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6219121, "utm_easting": 642426, "utm_accuracy_code": "H", "bcgs_id": 13745, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112326, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "WELLS", "update_date": "2016-12-11T04:06:44Z", "well_guid": "e99eee12-dbfa-44ba-8b94-1124a94f1962", "identification_plate_number": 31945, "owner_full_name": "MAYNORD DEBLASIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "15293 SYPHON CREEK ROAD 1 12", "city": "CECIL LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LEFT SIDE OF THE HOUSE BY SHOP", "construction_start_date": "2016-08-15", "construction_end_date": "2016-08-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "30.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "358.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6257907, "utm_easting": 650643, "utm_accuracy_code": "A", "bcgs_id": 13746, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112327, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "WELLS", "update_date": "2017-01-09T22:43:24Z", "well_guid": "ff7f6c47-7cb9-4a01-990a-e5c22f9b238a", "identification_plate_number": null, "owner_full_name": "KERMY AVRAHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6809 BEARHEAD ROAD 1 12", "city": "VANDERHOOF", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "B", "legal_section": "31", "legal_township": "4", "legal_range": "4", "land_district": "13", "legal_pid": "104172990", "well_location_description": "PART NORTHEAST 1/4", "construction_start_date": "2016-06-05", "construction_end_date": "2016-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": "2642.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "80.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": null, "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5983501, "utm_easting": 411901, "utm_accuracy_code": "H", "bcgs_id": 6651, "decommission_reason": "DRY WELL", "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112328, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:57Z", "update_user": "WELLS", "update_date": "2017-01-13T18:23:38Z", "well_guid": "32d4919e-86d7-46e7-89df-ed715b0e5571", "identification_plate_number": null, "owner_full_name": "SHANON GOODSAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "GEOTECH", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "899 ANDERS ROAD 1 12", "city": "WEST KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "FRONT OF BUILDING", "construction_start_date": "2015-09-23", "construction_end_date": "2015-09-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "225.00", "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": "149.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "SANITARY SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5526204, "utm_easting": 316601, "utm_accuracy_code": "J", "bcgs_id": 13747, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112329, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "WELLS", "update_date": "2017-01-09T21:47:01Z", "well_guid": "531b45d9-5a82-4735-9f1d-5d13cd36a64c", "identification_plate_number": 28480, "owner_full_name": "BENJAMEN DIMIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "24600 SICAMORE 1 12", "city": "PRINCE GEORGE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-20", "construction_end_date": "2015-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "db24b320-00b0-4a7c-a108-743d17bba84c", "well_identification_plate_attached": "SIDE", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "420.00", "finished_well_depth": "420.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "320.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "SANITARY", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5986132, "utm_easting": 492106, "utm_accuracy_code": "J", "bcgs_id": 7316, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112330, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "WELLS", "update_date": "2017-01-09T23:20:18Z", "well_guid": "90642c89-5cc1-4c25-8ce3-7508823dcf53", "identification_plate_number": 34474, "owner_full_name": "FLEMMING SEAGOOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "PORT RENFREW", "legal_lot": "148", "legal_plan": "VIP68644", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-10-22", "construction_end_date": "2014-10-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND ON TOP OF CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "210.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "18.000", "bedrock_depth": "170.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5364638, "utm_easting": 420862, "utm_accuracy_code": "H", "bcgs_id": 9117, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112331, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "WELLS", "update_date": "2017-01-09T23:08:26Z", "well_guid": "17f682c0-bbb8-4580-bf28-c909adc0788d", "identification_plate_number": 34433, "owner_full_name": "DE THORNDYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1847 CONNIE ROAD 1 12", "city": "SOOKE", "legal_lot": "1B", "legal_plan": "VIP69721", "legal_district_lot": "1", "legal_block": " ", "legal_section": "116", "legal_township": " ", "legal_range": " ", "land_district": "55", "legal_pid": "124617261", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-08-19", "construction_end_date": "2014-08-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "149.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.33", "surface_seal_thickness": "2.69", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "210.00", "finished_well_depth": "210.00", "final_casing_stick_up": "18.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5360400, "utm_easting": 454342, "utm_accuracy_code": "J", "bcgs_id": 2522, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112332, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:31Z", "update_user": "WELLS", "update_date": "2017-01-09T21:50:17Z", "well_guid": "4264a41d-abb5-4d85-8f65-805d4f1758de", "identification_plate_number": null, "owner_full_name": "CHARMINE ORMSHAW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "B-34-14/94-G-8 (NE-2-95-1-W7)(NEIGHBOUR'S 24 DRILLING SITE)", "construction_start_date": "2016-02-03", "construction_end_date": "2016-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "740.00", "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6357934, "utm_easting": 557327, "utm_accuracy_code": "H", "bcgs_id": 13533, "decommission_reason": "DRY WELL", "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112333, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:12:36Z", "update_user": "WELLS", "update_date": "2016-12-11T19:18:23Z", "well_guid": "55d910a8-c69c-4f18-b72c-6c885bef4982", "identification_plate_number": 31902, "owner_full_name": "CORALIE TOLOMIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16886 LANGSTON ROAD 1 12", "city": "VANDERHOOF", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-16", "construction_end_date": "2016-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": "2530.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "80.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "106.00", "finished_well_depth": "105.00", "final_casing_stick_up": "24.000", "bedrock_depth": "105.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "83.60", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5972554, "utm_easting": 435049, "utm_accuracy_code": "H", "bcgs_id": 9963, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112334, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:19Z", "update_user": "WELLS", "update_date": "2016-12-11T20:08:26Z", "well_guid": "ef9236d2-6723-4f92-8ac7-a9a1e7fc8a20", "identification_plate_number": 38911, "owner_full_name": "QUINT SPRAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "314 NICHIPORUK ROAD 1 12", "city": "VANDERHOOF", "legal_lot": "1A", "legal_plan": "4210", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": "11", "legal_range": "5", "land_district": null, "legal_pid": "126303817", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-01", "construction_end_date": "2016-06-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": "2321.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "110.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "235.00", "finished_well_depth": "231.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.10", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5984258, "utm_easting": 433472, "utm_accuracy_code": "H", "bcgs_id": 7586, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112335, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "WELLS", "update_date": "2017-01-09T22:31:31Z", "well_guid": "5face13d-b969-4a16-baa6-a925499f8900", "identification_plate_number": 38924, "owner_full_name": "LOELLA JOBBING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8510 KLASSEN ROAD 1 12", "city": "VANDERHOOF", "legal_lot": "11", "legal_plan": "2", "legal_district_lot": "1EAST", "legal_block": " ", "legal_section": "32", "legal_township": "8", "legal_range": "4", "land_district": "13", "legal_pid": "115730450", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-29", "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING (TOP OF)", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "140.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "24.000", "bedrock_depth": "138.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.50", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5973686, "utm_easting": 441824, "utm_accuracy_code": "H", "bcgs_id": 7086, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112336, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "WELLS", "update_date": "2016-12-11T21:03:30Z", "well_guid": "56b8e8cc-d5f4-4a0f-a751-b91f57cb7905", "identification_plate_number": 31903, "owner_full_name": "JOHNNY COADY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "ENS ROAD 1 12", "city": "VANDERHOOF", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-31", "construction_end_date": "2016-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "2324.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "200.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "273.00", "finished_well_depth": "270.00", "final_casing_stick_up": "24.000", "bedrock_depth": "271.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "232.70", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5983380, "utm_easting": 442226, "utm_accuracy_code": "H", "bcgs_id": 13749, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112337, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "WELLS", "update_date": "2017-01-09T22:32:37Z", "well_guid": "5cf00f4b-1ab6-4c66-a276-07970ab5c8fa", "identification_plate_number": 31904, "owner_full_name": "KIPPIE BAUDI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13014 OLD HOPE ROAD 1 12", "city": "CHARLIE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-08", "construction_end_date": "2016-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "2700.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "60.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "351.00", "finished_well_depth": "351.00", "final_casing_stick_up": "24.000", "bedrock_depth": "114.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "244.50", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6238796, "utm_easting": 623314, "utm_accuracy_code": "H", "bcgs_id": 8429, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112338, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "WELLS", "update_date": "2017-01-09T23:19:00Z", "well_guid": "b4e4e70e-c5d4-4056-9e56-e78e2f43ef9d", "identification_plate_number": 34492, "owner_full_name": "NADY NEATHWAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3742 PETREL DRIVE 1 12", "city": "JORDON RIVER", "legal_lot": "160", "legal_plan": "VIP83894", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "123456789", "well_location_description": "7 FEET TO THE LEFT OF EXISTING WELL", "construction_start_date": "2014-09-21", "construction_end_date": "2014-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.200000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "110.00", "finished_well_depth": "96.50", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "72.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5364687, "utm_easting": 420677, "utm_accuracy_code": "H", "bcgs_id": 9117, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112339, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "WELLS", "update_date": "2017-01-13T18:08:04Z", "well_guid": "54a534e6-7ed0-4254-bafc-c238b52e72ff", "identification_plate_number": 34445, "owner_full_name": "TYBI DILUCIA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6720 WILLIS POINT ROAD 1 12", "city": "VICTORIA", "legal_lot": "12", "legal_plan": "KAP6199", "legal_district_lot": "1", "legal_block": " ", "legal_section": "46A", "legal_township": " ", "legal_range": " ", "land_district": "24", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-01", "construction_end_date": "2015-05-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.25", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "525.00", "finished_well_depth": "525.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL LOCKABLE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5379247, "utm_easting": 464059, "utm_accuracy_code": "G", "bcgs_id": 2636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112340, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "WELLS", "update_date": "2017-01-13T18:06:02Z", "well_guid": "78a9c615-a588-4046-9e1f-545c975cdd83", "identification_plate_number": 34471, "owner_full_name": "JONIS BIDDLECOMBE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "TREGEAR ROAD 1 12", "city": "SOOKE", "legal_lot": "1#1 OF B", "legal_plan": "KAP6133", "legal_district_lot": "1", "legal_block": " ", "legal_section": "51", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-11-17", "construction_end_date": "2014-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "625.00", "finished_well_depth": "625.00", "final_casing_stick_up": "18.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "70.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359282, "utm_easting": 440459, "utm_accuracy_code": "G", "bcgs_id": 2497, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112341, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:20:59Z", "update_user": "WELLS", "update_date": "2017-01-09T23:13:58Z", "well_guid": "2e25b2ed-d2b5-4c00-9bf3-dd08a9aa0cbf", "identification_plate_number": 34436, "owner_full_name": "LAURICE DAINTRY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1660 CONNIE ROAD 1 12", "city": "SOOKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127775071", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-11-01", "construction_end_date": "2014-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "650.00", "finished_well_depth": "650.00", "final_casing_stick_up": "18.000", "bedrock_depth": "13.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "200.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359645, "utm_easting": 454479, "utm_accuracy_code": "J", "bcgs_id": 2522, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112342, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "WELLS", "update_date": "2016-12-12T00:49:29Z", "well_guid": "8dfe5a24-dc92-4cdb-97db-9e13320ed587", "identification_plate_number": 34467, "owner_full_name": "MODESTA MARYET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5930 BEAR HILL ROAD 1 12", "city": "VICTORIA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-09-06", "construction_end_date": "2014-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "600.00", "finished_well_depth": "600.00", "final_casing_stick_up": "18.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5377089, "utm_easting": 469460, "utm_accuracy_code": "J", "bcgs_id": 2625, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112343, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "WELLS", "update_date": "2016-12-12T01:29:21Z", "well_guid": "77ff2496-b8c7-4729-84fe-3ca96ca6b76d", "identification_plate_number": 34429, "owner_full_name": "TAMIKO STRELITZER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "417 GOWARD ROAD 1 12", "city": "VICTORIA", "legal_lot": "14", "legal_plan": "16733", "legal_district_lot": "1", "legal_block": " ", "legal_section": "75", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "104066014", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-07-31", "construction_end_date": "2014-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.260000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "3/8 HOLE PLUG & GRANULAR", "backfill_depth": "8.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "275.00", "final_casing_stick_up": "24.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5373413, "utm_easting": 468924, "utm_accuracy_code": "J", "bcgs_id": 2617, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112344, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:26:58Z", "update_user": "WELLS", "update_date": "2017-01-13T18:09:07Z", "well_guid": "eeff2e5b-d7a5-4214-9350-bae0ff4c207e", "identification_plate_number": 34422, "owner_full_name": "TERRI-JO DIFRANCESHCI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4511 PARRY CROSS ROAD 1 12", "city": "VICTORIA", "legal_lot": "121", "legal_plan": "1184", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "30", "legal_pid": "101664352", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-08-13", "construction_end_date": "2014-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BANDED ON CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "3/8 HOLE PLUG", "backfill_depth": "20.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "325.00", "finished_well_depth": "325.00", "final_casing_stick_up": "36.000", "bedrock_depth": "142.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5358162, "utm_easting": 461050, "utm_accuracy_code": "J", "bcgs_id": 2535, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112345, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "WELLS", "update_date": "2016-12-12T04:27:45Z", "well_guid": "6184af37-3c54-494f-ae1b-569ea545f576", "identification_plate_number": 34402, "owner_full_name": "KIPPIE DAWIDOWSKY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2291 DOVEDALE ROAD 1 12", "city": "SHAWNIGAN LAKE", "legal_lot": "141", "legal_plan": "VIP1925", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "106679684", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-03", "construction_end_date": "2015-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "40.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "18.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388535, "utm_easting": 451637, "utm_accuracy_code": "J", "bcgs_id": 2675, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112346, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "WELLS", "update_date": "2016-12-12T04:30:50Z", "well_guid": "a986421b-5c01-4936-b7ec-3843377443d5", "identification_plate_number": 34444, "owner_full_name": "BETTY OLENOV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1670 PELL ROAD 1 12", "city": "ROBERTS CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-12-11", "construction_end_date": "2016-12-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BANDED AROUND CASING", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "425.00", "finished_well_depth": "425.00", "final_casing_stick_up": "24.000", "bedrock_depth": "65.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "14.000", "artesian_flow": "0.50", "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5476904, "utm_easting": 451960, "utm_accuracy_code": "J", "bcgs_id": 4523, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112347, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "2e4bb000-b9b9-4d85-9a25-40e70deecb81", "identification_plate_number": 48623, "owner_full_name": "BRYNNE GILBRIDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109639446", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-31", "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": "185.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "139.00", "finished_well_depth": "138.06", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": "2.00", "well_cap_type": "WTMLC - A06", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5513100, "utm_easting": 352711, "utm_accuracy_code": "H", "bcgs_id": 3544, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112348, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "WELLS", "update_date": "2017-01-05T21:59:17Z", "well_guid": "db80eb4b-5927-48c4-97f3-1671311b9c06", "identification_plate_number": 40189, "owner_full_name": "THOMA MATTHEUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "112 belmond 1 12", "city": "salmo", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on airport rd", "construction_start_date": "2016-12-01", "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "57.00", "finished_well_depth": "56.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5442421, "utm_easting": 481075, "utm_accuracy_code": "H", "bcgs_id": 774, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112349, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:52:27Z", "update_user": "WELLS", "update_date": "2017-01-05T21:58:06Z", "well_guid": "641744d3-dca4-4562-ad48-045f22640544", "identification_plate_number": 40192, "owner_full_name": "BOGART GARMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "112 belmond 1 12", "city": "salmo", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "airport rd", "construction_start_date": "2016-12-01", "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5442573, "utm_easting": 481078, "utm_accuracy_code": "H", "bcgs_id": 774, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112350, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:01:50Z", "update_user": "WELLS", "update_date": "2017-01-05T21:55:05Z", "well_guid": "e10ab5df-1653-46b7-b15c-982cc99d4793", "identification_plate_number": 40193, "owner_full_name": "CORALINE WORCS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "beavervale road 1 12", "city": "fruitvale", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "back of property", "construction_start_date": "2016-11-29", "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.280000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "196.00", "finished_well_depth": "196.00", "final_casing_stick_up": "14.000", "bedrock_depth": "38.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5448117, "utm_easting": 465915, "utm_accuracy_code": "H", "bcgs_id": 769, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112351, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "d2948ab8-d45b-4e9e-ad33-45f2e09e3463", "identification_plate_number": 43611, "owner_full_name": "NEILL LILLEGARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Meadowood Way 1 12", "city": "Qualicum Beach", "legal_lot": "121", "legal_plan": "VIP 75374", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "125674901", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-01", "construction_end_date": "2016-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "454.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "50.00", "finished_well_depth": "47.04", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5463805, "utm_easting": 386496, "utm_accuracy_code": "H", "bcgs_id": 3292, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112352, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:12:38Z", "update_user": "WELLS", "update_date": "2017-01-05T21:53:22Z", "well_guid": "b7b8efc2-172e-4281-821d-9d1090974702", "identification_plate_number": 40188, "owner_full_name": "MADELLE BOLDOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4355 kikomoun road 1 12", "city": "elko", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "side of office and between buildings", "construction_start_date": "2016-11-25", "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "117.00", "finished_well_depth": "116.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5459200, "utm_easting": 560213, "utm_accuracy_code": "H", "bcgs_id": 13777, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112353, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:45:45Z", "update_user": "WELLS", "update_date": "2017-01-05T21:51:30Z", "well_guid": "2c5f0235-1d9e-471c-a048-8ab21ee7a3d8", "identification_plate_number": 40187, "owner_full_name": "VINITA LEARE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "22010 8th 1 12", "city": "cranbrook", "legal_lot": "129", "legal_plan": "1094", "legal_district_lot": "17225", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "115939782", "well_location_description": "far side on left side of property", "construction_start_date": "2016-11-23", "construction_end_date": "2016-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "235.00", "finished_well_depth": "235.00", "final_casing_stick_up": "16.000", "bedrock_depth": "70.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "4", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5482352, "utm_easting": 589275, "utm_accuracy_code": "H", "bcgs_id": 1097, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112354, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "14340381-fc78-46b1-b8af-54d7af1ce50f", "identification_plate_number": 48605, "owner_full_name": "ELLIOTT SCRIMSHIRE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Shawnigan Lake 1 12", "city": " ", "legal_lot": "12", "legal_plan": "EPP 28679", "legal_district_lot": "1", "legal_block": " ", "legal_section": "6", "legal_township": " ", "legal_range": "4", "land_district": "53", "legal_pid": "129147379", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-27", "construction_end_date": "2016-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": "445.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "24.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5390421, "utm_easting": 453745, "utm_accuracy_code": "H", "bcgs_id": 2688, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112355, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:00Z", "update_user": "WELLS", "update_date": "2017-01-05T21:43:34Z", "well_guid": "00f2be60-4bdb-4abe-aed2-651bb2866c86", "identification_plate_number": 40082, "owner_full_name": "ADRIENNE MEEDENDORPE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "910 noth star road 1 12", "city": "baynes lake", "legal_lot": "1", "legal_plan": "NEP 1181", "legal_district_lot": "1132", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "112705462", "well_location_description": "on land", "construction_start_date": "2016-11-29", "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "155.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "89.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5452361, "utm_easting": 629937, "utm_accuracy_code": "H", "bcgs_id": 1026, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112356, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:10:26Z", "update_user": "WELLS", "update_date": "2017-01-05T21:40:39Z", "well_guid": "7819f5d5-1e85-447c-a136-daae126ccb13", "identification_plate_number": 40151, "owner_full_name": "GREGORY GRCIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8768 eagan lake road 1 12", "city": "bridge lake", "legal_lot": "11433", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "property", "construction_start_date": "2016-10-26", "construction_end_date": "2016-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "72.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5693403, "utm_easting": 655832, "utm_accuracy_code": "H", "bcgs_id": 5709, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112357, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "0ee158a1-0ebb-4830-a389-c2bcd33ef3a3", "identification_plate_number": 48649, "owner_full_name": "CACILIA MOLLNAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2154 Alberni Hwy. 1 12", "city": "Coombs", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-10", "construction_end_date": "2016-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": "264.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "105.00", "final_casing_stick_up": "24.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5462362, "utm_easting": 397285, "utm_accuracy_code": "H", "bcgs_id": 3303, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112358, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:20:43Z", "update_user": "WELLS", "update_date": "2017-01-05T21:38:43Z", "well_guid": "ec1e67d2-9dce-40f5-8663-0cb61c892347", "identification_plate_number": 40040, "owner_full_name": "KISSEE LERWAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "pighin road 1 12", "city": "Wycliff", "legal_lot": "1b", "legal_plan": "EPP 32439", "legal_district_lot": "12969", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot", "construction_start_date": "2016-10-24", "construction_end_date": "2016-10-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "96.00", "finished_well_depth": "93.00", "final_casing_stick_up": "16.000", "bedrock_depth": "95.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "70.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5498468, "utm_easting": 582122, "utm_accuracy_code": "H", "bcgs_id": 1219, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112359, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "12ea9f93-5c27-4434-bb8d-9eeae8bb82d7", "identification_plate_number": 48627, "owner_full_name": "FLORELLA STOOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " SHERRITT DRIVE 1 12", "city": "NANOOSE BAY", "legal_lot": "12", "legal_plan": "VIP 57694", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "33", "legal_pid": "123456789", "well_location_description": "Proposed Lot 2, Lot ADL 37, within proposed lot boundaries.", "construction_start_date": "2016-10-06", "construction_end_date": "2016-10-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": "313.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "22.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "165.00", "finished_well_depth": "165.00", "final_casing_stick_up": "24.000", "bedrock_depth": "22.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5459562, "utm_easting": 414068, "utm_accuracy_code": "H", "bcgs_id": 3257, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112360, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:32:10Z", "update_user": "WELLS", "update_date": "2017-01-05T21:36:37Z", "well_guid": "cb0c74c5-9cb1-4217-83b1-d6475197767f", "identification_plate_number": 40055, "owner_full_name": "KALLI HANSCOMB", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "812 35th a 35 th ave north 1 12", "city": "Creston", "legal_lot": "16", "legal_plan": "943", "legal_district_lot": "16321", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "back of house area close to shop (left)", "construction_start_date": "2016-10-25", "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "295.00", "finished_well_depth": "295.00", "final_casing_stick_up": "16.000", "bedrock_depth": "99.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "3.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "4", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439303, "utm_easting": 538778, "utm_accuracy_code": "H", "bcgs_id": 803, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112361, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "ba1fd16f-c7be-4545-b50d-31c31c437525", "identification_plate_number": 43624, "owner_full_name": "ALIKEE WALEWSKI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1235 LEISHMANS", "city": "QUADRA ISLAND", "legal_lot": "1STR 8", "legal_plan": "STR VIS 4676", "legal_district_lot": "1756", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-10-27", "construction_end_date": "2016-10-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "77.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "19.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "33.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5552550, "utm_easting": 337560, "utm_accuracy_code": "H", "bcgs_id": 9191, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112362, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "WELLS", "update_date": "2016-12-12T18:56:13Z", "well_guid": "2a8fe12e-e5b6-41b5-bfb9-e2ab96e2ffae", "identification_plate_number": 19832, "owner_full_name": "DELORIA DEMANGEL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 PETREL DRIVE", "city": "JORDON RIVER", "legal_lot": "158", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127254119", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-12", "construction_end_date": "2015-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "120.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "35.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5364594, "utm_easting": 420693, "utm_accuracy_code": "J", "bcgs_id": 9117, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112363, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:14:25Z", "update_user": "WELLS", "update_date": "2017-01-04T20:41:59Z", "well_guid": "1c6dd915-6a6b-400f-ac5d-0b54981c53fa", "identification_plate_number": 43616, "owner_full_name": "RUDD DYMOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 Eggleton", "city": "Nanaimo", "legal_lot": "19", "legal_plan": "27748", "legal_district_lot": "1", "legal_block": " ", "legal_section": "2", "legal_township": " ", "legal_range": "6", "land_district": "07", "legal_pid": "102183668", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-24", "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": "177.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "305.00", "finished_well_depth": "305.00", "final_casing_stick_up": "36.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434618, "utm_easting": 442622, "utm_accuracy_code": "H", "bcgs_id": 3731, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112365, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "e7cef4af-432d-4a50-8556-8499772dece4", "identification_plate_number": 43615, "owner_full_name": "ALIKEE ZIEMS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 Robin Place", "city": "Qualicum Beach", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-16", "construction_end_date": "2016-11-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "205.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "225.00", "finished_well_depth": "223.02", "final_casing_stick_up": "27.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "103.00", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5465893, "utm_easting": 398049, "utm_accuracy_code": "H", "bcgs_id": 3309, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112366, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:38:04Z", "update_user": "WELLS", "update_date": "2017-01-09T23:11:03Z", "well_guid": "146444f1-7cba-41f4-b91e-e9d4bfb0e1c1", "identification_plate_number": 34458, "owner_full_name": "TREVAR GRINVAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 GIBB ROAD", "city": "ROBERTS CREEK", "legal_lot": "1B", "legal_plan": "BCP24550", "legal_district_lot": "12618", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "36", "legal_pid": "126723794", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-01", "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.220000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "475.00", "finished_well_depth": "475.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5476902, "utm_easting": 452170, "utm_accuracy_code": "J", "bcgs_id": 4523, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112367, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "WELLS", "update_date": "2017-01-09T23:15:08Z", "well_guid": "0cb2d7f5-13e5-4b5d-8696-74d93d7805ba", "identification_plate_number": 34452, "owner_full_name": "AGNELLA EIGHTEEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 RIMROCK ROAD", "city": "SECHELT", "legal_lot": "146", "legal_plan": "3659", "legal_district_lot": "11473", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "108863164", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-01", "construction_end_date": "2015-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "25.00", "surface_seal_thickness": "1.50", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "695.00", "finished_well_depth": "695.00", "final_casing_stick_up": "24.000", "bedrock_depth": "325.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5483525, "utm_easting": 443256, "utm_accuracy_code": "J", "bcgs_id": 4570, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112368, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "4f557dea-5267-4c6f-99b0-7c76fbebf9e4", "identification_plate_number": 43629, "owner_full_name": "KAHALEEL BEYNON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "570 Horne Lake Road 1 12", "city": "Qualicum Beach", "legal_lot": "12", "legal_plan": "EPP 64480", "legal_district_lot": "190", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "129948762", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-08", "construction_end_date": "2016-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "448.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "178.00", "finished_well_depth": "178.00", "final_casing_stick_up": "21.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "132.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5470575, "utm_easting": 382476, "utm_accuracy_code": "H", "bcgs_id": 3289, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112369, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "d8d46746-cc6e-4e95-afdb-514149d265db", "identification_plate_number": 48602, "owner_full_name": "BRYCE FELTEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "120", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 20. Within proposed lot boundaries.", "construction_start_date": "2016-08-29", "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": "496.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "12.000", "bedrock_depth": "86.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.06", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389103, "utm_easting": 449029, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112370, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "WELLS", "update_date": "2016-12-12T21:06:11Z", "well_guid": "37796451-c7c0-445f-9616-0b9b7d1523bb", "identification_plate_number": 34425, "owner_full_name": "BURLIE BUTTERLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3387 LYNWOOD ROAD 1 12", "city": "ROBERTS CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111518791", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-01", "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "24.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "475.00", "finished_well_depth": "475.00", "final_casing_stick_up": "24.000", "bedrock_depth": "24.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5476779, "utm_easting": 452263, "utm_accuracy_code": "J", "bcgs_id": 4523, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112371, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:55:00Z", "update_user": "WELLS", "update_date": "2017-01-05T21:33:19Z", "well_guid": "3fc0c490-8ed9-47b0-981a-b6f29b0cdb6e", "identification_plate_number": 40075, "owner_full_name": "ALWYN SPREADBURY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4931 downey ave south lane 1 12", "city": "fairmont", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "114504685", "well_location_description": "back of house area", "construction_start_date": "2016-11-21", "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "49.00", "finished_well_depth": "45.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "15.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5576741, "utm_easting": 580497, "utm_accuracy_code": "H", "bcgs_id": 1360, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112372, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:29Z", "update_user": "WELLS", "update_date": "2017-06-30T18:30:37Z", "well_guid": "9825a7ac-bbac-465c-a3e1-3b48d3a98d09", "identification_plate_number": null, "owner_full_name": "TOMMY DILUCIA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "35687 GALLAGHER ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127897460", "well_location_description": " ", "construction_start_date": "2000-05-02", "construction_end_date": "2000-05-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "16.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.184", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441049, "utm_easting": 555602, "utm_accuracy_code": "A", "bcgs_id": 4254, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112373, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "WELLS", "update_date": "2017-01-05T21:30:21Z", "well_guid": "100dd884-e5f1-45e9-b8b5-d2c02661851e", "identification_plate_number": 40144, "owner_full_name": "HEW ELDRED", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7745 Princeton Kamloops HWY 1", "city": "Stump Lake", "legal_lot": "11", "legal_plan": "KAP 72020", "legal_district_lot": "1", "legal_block": " ", "legal_section": "5", "legal_township": "17", "legal_range": "17", "land_district": "59", "legal_pid": "125506722", "well_location_description": "on land", "construction_start_date": "2016-08-29", "construction_end_date": "2016-08-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "375.00", "finished_well_depth": "375.00", "final_casing_stick_up": "16.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "195.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5587060, "utm_easting": 690626, "utm_accuracy_code": "H", "bcgs_id": 11264, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112374, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "c40cbfe7-40d3-4d8b-b687-a8610aac35ed", "identification_plate_number": 48603, "owner_full_name": "CLEM ASSAF", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "113", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 13, within proposed lot boundaries.", "construction_start_date": "2016-08-31", "construction_end_date": "2016-09-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "524.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "18.000", "bedrock_depth": "89.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389031, "utm_easting": 449265, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112375, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:40:19Z", "update_user": "WELLS", "update_date": "2017-01-05T21:28:12Z", "well_guid": "d429b049-07bc-42f9-bccd-9eb80e591b6c", "identification_plate_number": 42077, "owner_full_name": "JENO MURT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1796 Versatile Drive 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "on property", "construction_start_date": "2016-10-25", "construction_end_date": "2016-10-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "10.00", "surface_seal_thickness": "6.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "36.00", "finished_well_depth": "36.00", "final_casing_stick_up": "2.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof flush mount", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5615048, "utm_easting": 684228, "utm_accuracy_code": "H", "bcgs_id": 13776, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112376, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:47:44Z", "update_user": "WELLS", "update_date": "2017-01-05T21:26:34Z", "well_guid": "00943b55-d7ff-4453-9c60-4e24714af2fc", "identification_plate_number": 42078, "owner_full_name": "CYNTHY GOODSAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1796 Versatile Drive", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "on property", "construction_start_date": "2016-10-25", "construction_end_date": "2016-10-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "10.00", "surface_seal_thickness": "6.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "45.00", "finished_well_depth": "45.00", "final_casing_stick_up": "2.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "flush mount", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5615112, "utm_easting": 684225, "utm_accuracy_code": "H", "bcgs_id": 13776, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112377, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "WELLS", "update_date": "2017-01-04T23:28:04Z", "well_guid": "cfb0df59-a944-499a-bcb1-9c352cc089f5", "identification_plate_number": 48608, "owner_full_name": "BILLY BARTHOLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "111", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 11, within proposed lot boundaries.", "construction_start_date": "2016-08-25", "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "545.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": "92.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "61.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389127, "utm_easting": 449174, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112378, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "WELLS", "update_date": "2017-01-04T23:27:58Z", "well_guid": "05cb829c-804d-4669-ae22-e1696ecc5e1e", "identification_plate_number": 48601, "owner_full_name": "KARILYNN BRANDONI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1", "city": "Shawnigan Lake", "legal_lot": "110", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 10, within proposed lot boundaries.", "construction_start_date": "2016-09-06", "construction_end_date": "2016-09-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.220000", "longitude": "-122.550000", "ground_elevation": "469.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "24.000", "bedrock_depth": "71.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.06", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389166, "utm_easting": 449033, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112379, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "WELLS", "update_date": "2017-01-04T23:22:29Z", "well_guid": "c71bbb76-8386-478b-9a58-cd8b5df2d395", "identification_plate_number": 48614, "owner_full_name": "BRODERICK PITCOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1", "city": "Shawnigan Lake", "legal_lot": "112", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 12, within proposed lot boundaries.", "construction_start_date": "2016-09-07", "construction_end_date": "2016-09-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "494.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "24.000", "bedrock_depth": "112.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "56.06", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389119, "utm_easting": 449202, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112380, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "WELLS", "update_date": "2017-01-09T23:17:06Z", "well_guid": "3293951e-1d75-406f-8a26-e724e8652604", "identification_plate_number": 34490, "owner_full_name": "SONIA FEUELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1", "city": "PORT RENFREW", "legal_lot": "1A", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109592423", "well_location_description": "PCL A (DD 143426I) OF SEC 97 RENFREW EXCEPT THAT PART IN PLANS 15462 & VIP77871 AND EPP24972", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.25", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "700.00", "finished_well_depth": null, "final_casing_stick_up": "24.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5378540, "utm_easting": 395836, "utm_accuracy_code": "J", "bcgs_id": 3108, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112381, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "WELLS", "update_date": "2017-01-04T23:25:41Z", "well_guid": "88de4989-c1c5-4cbb-b70d-7446a1e919c9", "identification_plate_number": 48615, "owner_full_name": "HENKA LONGRIGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "121", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 21, within proposed lot boundaries.", "construction_start_date": "2016-09-09", "construction_end_date": "2016-09-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "547.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "127.00", "finished_well_depth": "125.06", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "85.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389180, "utm_easting": 448908, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112382, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:28:36Z", "update_user": "WELLS", "update_date": "2017-09-08T15:47:04Z", "well_guid": "461c4d94-3dbd-4d1a-997d-49ee706e7650", "identification_plate_number": null, "owner_full_name": "AURTHUR WALDUCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "41870 CHESTNUT AVENUE 1 12", "city": "CHILLIWACK", "legal_lot": "12", "legal_plan": "23913", "legal_district_lot": "1449", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "38", "legal_pid": "109281843", "well_location_description": "1 of 2 wells, side by side", "construction_start_date": "2006-05-25", "construction_end_date": "2006-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e051f791-ea81-4fb3-b4a9-5efdb64fb70d", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "21.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "14.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5437358, "utm_easting": 568205, "utm_accuracy_code": "A", "bcgs_id": 4003, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112383, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "WELLS", "update_date": "2017-01-04T23:25:41Z", "well_guid": "722435b8-49e0-4588-bf5c-a660a9067e99", "identification_plate_number": 48613, "owner_full_name": "PHEBE DUCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "126", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-13", "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": "617.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "80.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "340.00", "finished_well_depth": "340.00", "final_casing_stick_up": "36.000", "bedrock_depth": "70.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388891, "utm_easting": 448737, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112384, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T23:06:21Z", "update_user": "WELLS", "update_date": "2017-09-08T15:47:04Z", "well_guid": "eca35e0d-6bb8-4499-92e0-d50042486883", "identification_plate_number": null, "owner_full_name": "EARLIE FELTEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "41870 CHESTNUT AVENUE 1 12", "city": "CHILLIWACK", "legal_lot": "12", "legal_plan": "23913", "legal_district_lot": "1449", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "38", "legal_pid": "109281843", "well_location_description": "2 of 2 wells drilled side by side", "construction_start_date": "2006-07-06", "construction_end_date": "2006-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e051f791-ea81-4fb3-b4a9-5efdb64fb70d", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "21.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "14.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5437358, "utm_easting": 568205, "utm_accuracy_code": "A", "bcgs_id": 4003, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112385, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "WELLS", "update_date": "2016-12-13T06:35:21Z", "well_guid": "c1396b80-886b-4257-81ee-03cbb0af63f5", "identification_plate_number": 34401, "owner_full_name": "MOREEN DOCKREY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "849 SMITH ROAD 1 12", "city": "BOWEN ISLAND", "legal_lot": "11", "legal_plan": "4620", "legal_district_lot": "11334", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111458712", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-28", "construction_end_date": "2016-03-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "450.00", "finished_well_depth": "450.00", "final_casing_stick_up": "24.000", "bedrock_depth": "15.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5472142, "utm_easting": 473678, "utm_accuracy_code": "J", "bcgs_id": 9578, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112386, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "WELLS", "update_date": "2016-12-13T06:40:35Z", "well_guid": "6b8ef741-b9fc-44ea-9628-ac2cdcb5fea1", "identification_plate_number": 34460, "owner_full_name": "ALEJOA DEFONT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3058 PHILLIPS ROAD 1 12", "city": "SOOKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-01-25", "construction_end_date": "2016-02-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "725.00", "finished_well_depth": "725.00", "final_casing_stick_up": "18.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "2.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5362899, "utm_easting": 446822, "utm_accuracy_code": "J", "bcgs_id": 2545, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112387, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:12Z", "update_user": "WELLS", "update_date": "2016-12-13T07:02:43Z", "well_guid": "a2e8d231-2dd9-499d-a900-31dfb308b93d", "identification_plate_number": 40300, "owner_full_name": "JONIS AULETTA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1709 WARD COURT WILSON CREEK 1 12", "city": "SECHELT", "legal_lot": "118", "legal_plan": "4682", "legal_district_lot": "1102", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "111409363", "well_location_description": "LOT 18 EXCEPT PART IN PLAN 19680", "construction_start_date": "2016-02-01", "construction_end_date": "2016-02-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND ON TOP OF CASING", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "750.00", "finished_well_depth": "750.00", "final_casing_stick_up": "36.000", "bedrock_depth": "280.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL DISK", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5476993, "utm_easting": 448314, "utm_accuracy_code": "J", "bcgs_id": 4517, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112388, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:11Z", "update_user": "WELLS", "update_date": "2016-12-13T08:18:05Z", "well_guid": "f193d9ba-ec8b-46ec-89f0-31fec16b7597", "identification_plate_number": 34446, "owner_full_name": "JAYNE RUCKERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1580 EVERGREEN LANE 1 12", "city": "BOWEN ISLAND", "legal_lot": "14", "legal_plan": "BCP40743", "legal_district_lot": "1492 & 1545", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127933504", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-01", "construction_end_date": "2016-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.270000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "275.00", "final_casing_stick_up": "24.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5468026, "utm_easting": 470006, "utm_accuracy_code": "J", "bcgs_id": 4461, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112389, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "WELLS", "update_date": "2016-12-13T08:32:07Z", "well_guid": "7b7482c4-6be8-411e-a265-875fb5c0ccd0", "identification_plate_number": 34484, "owner_full_name": "HY HARCUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "113", "legal_plan": "BCS3421", "legal_district_lot": "11545", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "127933890", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-01", "construction_end_date": "2016-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "375.00", "finished_well_depth": "375.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5468015, "utm_easting": 469846, "utm_accuracy_code": "J", "bcgs_id": 4461, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112390, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:19:42Z", "update_user": "WELLS", "update_date": "2016-12-13T19:38:14Z", "well_guid": "5ba56a79-8c88-40ce-9b6d-3d73d47f44dc", "identification_plate_number": null, "owner_full_name": "OLIVIERO JENNEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1211 TRANMER ROAD 1 12", "city": "AGASSIZ", "legal_lot": "11", "legal_plan": "BCP40208", "legal_district_lot": "138", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "127876241", "well_location_description": " ", "construction_start_date": "1989-02-28", "construction_end_date": "1989-02-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "30.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5453304, "utm_easting": 591370, "utm_accuracy_code": "A", "bcgs_id": 4743, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112391, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "WELLS", "update_date": "2018-01-18T19:13:42Z", "well_guid": "1e9000a6-ca3e-4e9f-9ef8-bef58ef246ad", "identification_plate_number": 41535, "owner_full_name": "JAMESY STUDMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2701 ZILLINSKY ROAD 1 12", "city": "POWELL RIVER", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", "construction_start_date": "2016-11-28", "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "258.00", "finished_well_depth": "258.00", "final_casing_stick_up": "24.000", "bedrock_depth": "116.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5516051, "utm_easting": 400114, "utm_accuracy_code": "H", "bcgs_id": 3597, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112392, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "WELLS", "update_date": "2018-01-18T18:57:38Z", "well_guid": "ae74265c-a6f2-48e0-a24d-f3f8a9321728", "identification_plate_number": 41534, "owner_full_name": "ERMA GARMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2701 ZILLINSKY ROAD 1 12", "city": "POWELL RIVER", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", "construction_start_date": "2016-11-30", "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "398.00", "finished_well_depth": "398.00", "final_casing_stick_up": "24.000", "bedrock_depth": "71.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5516110, "utm_easting": 400333, "utm_accuracy_code": "H", "bcgs_id": 3597, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112393, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "WELLS", "update_date": "2016-12-13T20:44:33Z", "well_guid": "fe53b210-9616-47b6-8dad-f707f489f9bc", "identification_plate_number": 26994, "owner_full_name": "RUSTIN WAYVILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "18112", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "123456789", "well_location_description": "LAND TENURE NUMBER 2410118", "construction_start_date": "2010-03-09", "construction_end_date": "2010-03-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "72.17", "finished_well_depth": "72.17", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "38.08", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490575, "utm_easting": 546985, "utm_accuracy_code": "A", "bcgs_id": 13751, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112394, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:04:21Z", "update_user": "WELLS", "update_date": "2017-01-06T00:05:45Z", "well_guid": "4c5bced6-bb3a-4dcc-98b0-e57e6471aebe", "identification_plate_number": 41536, "owner_full_name": "LYNNELLE DROGHAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7338 BELL ROAD 1 12", "city": "TEXADA ISLAND", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", "construction_start_date": "2016-12-02", "construction_end_date": "2016-12-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "397.00", "finished_well_depth": "397.00", "final_casing_stick_up": "24.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5500556, "utm_easting": 401610, "utm_accuracy_code": "H", "bcgs_id": 13783, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112395, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:11:24Z", "update_user": "WELLS", "update_date": "2017-04-27T22:57:40Z", "well_guid": "f74fb615-2269-4c94-95ef-06618351031b", "identification_plate_number": null, "owner_full_name": "FRASIER BARCLAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2931 DAY ROAD 1 12", "city": "ROBERTS CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "107798261", "well_location_description": " ", "construction_start_date": "2001-01-01", "construction_end_date": "2001-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "25.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "9.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "36", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5476696, "utm_easting": 454198, "utm_accuracy_code": "A", "bcgs_id": 4526, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112396, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:18:37Z", "update_user": "WELLS", "update_date": "2017-01-09T22:12:33Z", "well_guid": "0e3b44cc-7e5c-46dc-8c05-9bdb58fe656b", "identification_plate_number": null, "owner_full_name": "BOGART HANSCOMB", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "KAP3777B", "legal_district_lot": "1", "legal_block": " ", "legal_section": "19", "legal_township": "21", "legal_range": "12", "land_district": null, "legal_pid": "104594045", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-04-13", "decommission_end_date": "2016-04-13", "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "1901.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5630392, "utm_easting": 313066, "utm_accuracy_code": "H", "bcgs_id": 13606, "decommission_reason": "4' casing rotted out", "decommission_method": "POURED", "sealant_material": "3/4 BENTONITE", "backfill_material": "GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112397, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:37:24Z", "update_user": "WELLS", "update_date": "2017-01-09T22:14:45Z", "well_guid": "86957461-113b-430f-af31-f48788e1a1be", "identification_plate_number": null, "owner_full_name": "MURRY MUNNINGS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "20572 84A AVENUE 1 12", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROXIMATELY 20' OFF STREET TO SOUTH. APPROXIMATELY CENTRE OF LOT UNDER FUTURE FOOTING.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2014-09-11", "decommission_end_date": "2014-09-11", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "150.50", "finished_well_depth": "150.50", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "99.90", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5444877, "utm_easting": 525334, "utm_accuracy_code": "H", "bcgs_id": 4155, "decommission_reason": "NEW CONSTRUCTION", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": null, "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112398, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "WELLS", "update_date": "2016-12-17T00:38:23Z", "well_guid": "c274bd59-dba6-4336-806a-219da36b5be8", "identification_plate_number": null, "owner_full_name": "BAXY SAUNPER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BESIDE CREEK", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2014-04-01", "decommission_end_date": "2014-04-03", "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "1562.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "1.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5635496, "utm_easting": 693357, "utm_accuracy_code": "H", "bcgs_id": 5339, "decommission_reason": "NOT PROVIDED", "decommission_method": "POURED", "sealant_material": "NOT PROVIDED", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112399, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "WELLS", "update_date": "2016-12-13T22:11:23Z", "well_guid": "7ca2258a-e571-414b-9667-75ea5089a380", "identification_plate_number": null, "owner_full_name": "PEIRCE DUMBRILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "RYAN'S HOUSE", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2014-07-27", "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.500000", "ground_elevation": "1582.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5635399, "utm_easting": 693502, "utm_accuracy_code": "H", "bcgs_id": 5339, "decommission_reason": "NOT PROVIDED", "decommission_method": "POURED", "sealant_material": "CLAY", "backfill_material": "ROCKS", "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112400, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "WELLS", "update_date": "2016-12-13T23:43:40Z", "well_guid": "f58a36d5-b4b7-4d25-8214-5d646c478818", "identification_plate_number": null, "owner_full_name": "PRISCELLA PERIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "11", "legal_plan": "1330", "legal_district_lot": "13081", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "RIGHT OF WAY OVER SURVEYED CROWN LAND TOGETHER WITH THAT PART OF LOT 1, DISTRICT LOT 3081,\r\nPLAN 1330, LILLOOET DISTRICT, SHOWN OUTLINED ON PLANKAP76545, ON FILE IN THE LAND TITLE OFFICE AT KAMLOOPS,\r\nCONTAINING 0.358 HECTARES", "construction_start_date": "2002-08-20", "construction_end_date": "2002-08-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "76.00", "finished_well_depth": "76.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL LID WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5596474, "utm_easting": 535920, "utm_accuracy_code": "A", "bcgs_id": 5428, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112401, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "WELLS", "update_date": "2016-12-14T18:15:55Z", "well_guid": "b2f05940-9c43-4214-aea9-1f17f6a55549", "identification_plate_number": 42220, "owner_full_name": "SONIA BYLES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "12", "legal_plan": "EPP50073", "legal_district_lot": "13062", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123513420", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-19", "construction_end_date": "2015-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "2028.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "51.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "15.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5749546, "utm_easting": 705360, "utm_accuracy_code": "H", "bcgs_id": 6099, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112402, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "WELLS", "update_date": "2016-12-14T18:32:16Z", "well_guid": "7993128a-8ace-4f09-ab9d-a907083a5f08", "identification_plate_number": 42219, "owner_full_name": "BERNADENE STOOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "PARKINSON ROAD 1 12", "city": "ARMSTRONG", "legal_lot": "111", "legal_plan": "B4541", "legal_district_lot": "150", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-04-14", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "1628.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5597228, "utm_easting": 340742, "utm_accuracy_code": "H", "bcgs_id": 1888, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112403, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "WELLS", "update_date": "2016-12-14T18:46:40Z", "well_guid": "dc809516-4f9d-4ebb-abf6-84904c684f02", "identification_plate_number": 42223, "owner_full_name": "GORDAN HELLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "PARKINSON ROAD 1 12", "city": "ARMSTRONG", "legal_lot": "111", "legal_plan": "B4541", "legal_district_lot": "150", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-04-30", "construction_end_date": "2015-04-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "1665.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": null, "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5597220, "utm_easting": 340985, "utm_accuracy_code": "H", "bcgs_id": 1888, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112405, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "WELLS", "update_date": "2017-01-09T19:32:39Z", "well_guid": "02c61846-9215-4178-91fc-e72a00b79da5", "identification_plate_number": 42203, "owner_full_name": "AVERELL MACCLEOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "106431631", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-04-21", "construction_end_date": "2015-04-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": "1512.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "660.00", "finished_well_depth": "656.00", "final_casing_stick_up": "18.000", "bedrock_depth": "580.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5582404, "utm_easting": 336018, "utm_accuracy_code": "J", "bcgs_id": 1717, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112406, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:43:20Z", "update_user": "WELLS", "update_date": "2016-12-14T19:47:58Z", "well_guid": "46d0a06b-00f7-4928-b03b-e51d088d0f45", "identification_plate_number": 42202, "owner_full_name": "MOLLIE LILLICO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "MERVYN ROAD 1 12", "city": "SICAMOUS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "30", "legal_township": "21", "legal_range": "7", "land_district": "25", "legal_pid": "102021188", "well_location_description": "UPPER PARCEL OF 1", "construction_start_date": "2015-04-13", "construction_end_date": "2015-04-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "1241.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "71.00", "finished_well_depth": "70.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "35.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5630060, "utm_easting": 361347, "utm_accuracy_code": "H", "bcgs_id": 2225, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112407, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:56:53Z", "update_user": "WELLS", "update_date": "2016-12-14T19:59:59Z", "well_guid": "4660bd9a-0d6c-4ceb-9351-663a4884b8d3", "identification_plate_number": 42201, "owner_full_name": "OLIVIERO TRUMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "14", "legal_township": "21", "legal_range": "21", "land_district": null, "legal_pid": "123456789", "well_location_description": "MERIDIAN 6 PARCEL A, MERIDIAN W6, EXCEPT PLAN 400 (DD223465F) OF SOUTHEAST 1/4", "construction_start_date": "2015-04-10", "construction_end_date": "2015-04-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "1184.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "155.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "85.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5627089, "utm_easting": 654959, "utm_accuracy_code": "H", "bcgs_id": 13752, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112408, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "WELLS", "update_date": "2016-12-17T00:37:56Z", "well_guid": "452554b9-7b71-4caf-80d2-e62caa00c2b6", "identification_plate_number": 42250, "owner_full_name": "ELOISE KOPTA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1180 GEORGE ROAD 1 12", "city": "LYTTON", "legal_lot": "12", "legal_plan": "34759", "legal_district_lot": "1", "legal_block": " ", "legal_section": "13", "legal_township": "14", "legal_range": "27", "land_district": "25", "legal_pid": "102926393", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-03-12", "construction_end_date": "2015-03-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "1487.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "40.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5558874, "utm_easting": 602653, "utm_accuracy_code": "H", "bcgs_id": 13753, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112409, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "WELLS", "update_date": "2016-12-14T20:58:58Z", "well_guid": "66ff736b-756e-4b94-bf21-6604209ea4ba", "identification_plate_number": 42251, "owner_full_name": "DESIRI ROUKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "11-1", "legal_plan": "KAP47860", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1", "legal_township": "14", "legal_range": "27", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-02-23", "construction_end_date": "2015-03-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": "703.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "40.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "452.00", "finished_well_depth": "450.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "270.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5554751, "utm_easting": 602252, "utm_accuracy_code": "H", "bcgs_id": 13754, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112410, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:10Z", "update_user": "WELLS", "update_date": "2017-01-09T18:32:53Z", "well_guid": "e206b08a-8326-429e-b40c-7b6a4cc2f658", "identification_plate_number": 42252, "owner_full_name": "KATINA CARDO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5899 LOAKIN-BEAR CREEK ROAD 1 12", "city": "NOT PROVIDED", "legal_lot": "1", "legal_plan": "BC262", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SAHHALTKUM INDIAN RESERVE NO. 4", "construction_start_date": "2015-02-16", "construction_end_date": "2015-02-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": "1792.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "460.00", "finished_well_depth": "457.00", "final_casing_stick_up": "18.000", "bedrock_depth": "18.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "7.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5631438, "utm_easting": 307017, "utm_accuracy_code": "H", "bcgs_id": 12414, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112411, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:21:07Z", "update_user": "WELLS", "update_date": "2016-12-14T22:07:16Z", "well_guid": "242cfd46-3aa2-42ec-b5cf-05587e2858fb", "identification_plate_number": 42253, "owner_full_name": "NELLY TORRA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-02-09", "construction_end_date": "2015-02-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": "2244.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "64.00", "finished_well_depth": "56.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "38.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6093012, "utm_easting": 497504, "utm_accuracy_code": "H", "bcgs_id": 7447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112412, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": "WELLS", "update_date": "2016-12-14T21:43:10Z", "well_guid": "302c319b-45cd-4834-8185-ad6f4bd67818", "identification_plate_number": 42254, "owner_full_name": "CELESTIA BARENS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8660 TRANQUILLE CRISS CREEK 1 12", "city": "RED LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-02-04", "construction_end_date": "2015-02-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "215.00", "final_casing_stick_up": "18.000", "bedrock_depth": "41.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "63.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5642179, "utm_easting": 659024, "utm_accuracy_code": "H", "bcgs_id": 13755, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112413, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "WELLS", "update_date": "2017-01-09T18:37:32Z", "well_guid": "506a3519-b35b-4cf8-9402-978bf59eb72e", "identification_plate_number": 42212, "owner_full_name": "LEE MCILWRICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5031 PARKVIEW ROAD 1 12", "city": "QUESNEL", "legal_lot": "17", "legal_plan": "27365", "legal_district_lot": "16195", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "106637434", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-01", "construction_end_date": "2015-07-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "2414.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "440.00", "finished_well_depth": "440.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "250.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5881783, "utm_easting": 537508, "utm_accuracy_code": "H", "bcgs_id": 6755, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112414, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "WELLS", "update_date": "2016-12-14T22:47:13Z", "well_guid": "23740007-638a-46ed-b0d2-456799e53e72", "identification_plate_number": 42211, "owner_full_name": "VIOLETTE DEEM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6952 WEST FRASER 1 12", "city": "QUESNEL", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "115041131", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-29", "construction_end_date": "2015-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": "2009.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "250.00", "final_casing_stick_up": "48.000", "bedrock_depth": "240.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "150.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5836897, "utm_easting": 532925, "utm_accuracy_code": "H", "bcgs_id": 13756, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112415, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "WELLS", "update_date": "2016-12-14T23:01:37Z", "well_guid": "3ae31cdf-9860-4cb5-a134-e38b133867ed", "identification_plate_number": 42210, "owner_full_name": "VIOLET LLEWELYN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "14", "legal_plan": "EPP8293", "legal_district_lot": "11745", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-23", "construction_end_date": "2015-06-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "3669.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5683747, "utm_easting": 584971, "utm_accuracy_code": "H", "bcgs_id": 10993, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112416, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "WELLS", "update_date": "2016-12-14T23:19:20Z", "well_guid": "00b8c62d-26a3-40ed-b78e-41027f1fd559", "identification_plate_number": 42209, "owner_full_name": "GIBBY DENZILOE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "NOT PROVIDED 1 12", "city": "BIG BAR", "legal_lot": "1A", "legal_plan": "EPP17327", "legal_district_lot": "11745", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "HCA # 2008-0267 BORDEN#EHRK-4", "construction_start_date": "2015-06-22", "construction_end_date": "2015-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": "3595.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "220.00", "final_casing_stick_up": "18.000", "bedrock_depth": "200.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "20.00", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5683843, "utm_easting": 585702, "utm_accuracy_code": "H", "bcgs_id": 10992, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112417, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:33:40Z", "update_user": "WELLS", "update_date": "2017-01-09T18:35:05Z", "well_guid": "1ca17c08-8dc1-44fe-ab99-192ee0944687", "identification_plate_number": 42208, "owner_full_name": "CARLOTTA BETTISON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1B", "legal_plan": "EPP8293", "legal_district_lot": "11745", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "128774884", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-19", "construction_end_date": "2015-06-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "58.50", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5683860, "utm_easting": 585644, "utm_accuracy_code": "H", "bcgs_id": 10992, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112418, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "WELLS", "update_date": "2016-12-15T05:28:40Z", "well_guid": "1058b222-460c-48f4-bdde-a62cc0775356", "identification_plate_number": 42207, "owner_full_name": "JEREMIAS IMORT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7165 HIGHWAY 97 1 12", "city": "100 MILE HOUSE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "101987992", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-18", "construction_end_date": "2015-06-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "3908.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "196.00", "final_casing_stick_up": "18.000", "bedrock_depth": "43.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "105.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5712254, "utm_easting": 614618, "utm_accuracy_code": "H", "bcgs_id": 13757, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112419, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "WELLS", "update_date": "2016-12-15T05:43:28Z", "well_guid": "dad02332-c21b-4555-8d3b-e176233ee4eb", "identification_plate_number": 42237, "owner_full_name": "THORNTON FERRON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3185 REED ROAD 1 12", "city": "BRIDGE LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "11437", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "SOUTHEAST QUARTER OF DISTRICT LOT 1437", "construction_start_date": "2015-06-16", "construction_end_date": "2015-06-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "3386.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "290.00", "finished_well_depth": "290.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": "10.00", "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5695013, "utm_easting": 659502, "utm_accuracy_code": "H", "bcgs_id": 5712, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112420, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "WELLS", "update_date": "2016-12-15T05:44:55Z", "well_guid": "c6b5721d-9e5e-4311-9861-d90d6d9ac611", "identification_plate_number": 42206, "owner_full_name": "IRV GURWOOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6205 ROBIN ROAD 1 12", "city": "100 MILE HOUSE", "legal_lot": "19", "legal_plan": "31832", "legal_district_lot": "13868", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103600203", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-17", "construction_end_date": "2015-06-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "96.00", "final_casing_stick_up": "12.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "34.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5716457, "utm_easting": 627668, "utm_accuracy_code": "H", "bcgs_id": 5834, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112421, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "WELLS", "update_date": "2017-01-09T19:35:21Z", "well_guid": "24e35dec-adf5-402e-ae69-58b753cfe4f0", "identification_plate_number": 42205, "owner_full_name": "SANDRO AVRAHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "11", "legal_plan": "KAP92960", "legal_district_lot": "132", "legal_block": " ", "legal_section": " ", "legal_township": "22", "legal_range": "20", "land_district": "25", "legal_pid": "129152607", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-05", "construction_end_date": "2015-06-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": "2255.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "123.00", "finished_well_depth": "123.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "86.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5643240, "utm_easting": 658918, "utm_accuracy_code": "H", "bcgs_id": 13758, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112422, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "WELLS", "update_date": "2016-12-15T06:51:35Z", "well_guid": "e9f9bd93-a48e-46de-a7f3-3f376a05cb7e", "identification_plate_number": 42225, "owner_full_name": "LYNNELLE REGITZ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4760 HARRISON 1 12", "city": "PRITCHARD", "legal_lot": "17", "legal_plan": "24451", "legal_district_lot": "1", "legal_block": " ", "legal_section": "6", "legal_township": "20", "legal_range": "13", "land_district": "25", "legal_pid": "105920108", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-01", "construction_end_date": "2015-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.500000", "ground_elevation": "2200.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "12.000", "bedrock_depth": "60.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "191.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5616270, "utm_easting": 303291, "utm_accuracy_code": "H", "bcgs_id": 1999, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112423, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "WELLS", "update_date": "2016-12-15T06:55:24Z", "well_guid": "21429682-ebaa-461f-8dcd-72ab876fcc5c", "identification_plate_number": 42204, "owner_full_name": "PRISSIE PORKER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6453 PINECREST DRIVE 1 12", "city": "SAVANA", "legal_lot": "14", "legal_plan": "KAP862", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": "21", "legal_range": "22", "land_district": null, "legal_pid": "112067679", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-26", "construction_end_date": "2015-05-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "612.00", "finished_well_depth": "612.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": "28.50", "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5625760, "utm_easting": 651828, "utm_accuracy_code": "H", "bcgs_id": 13759, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112424, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "WELLS", "update_date": "2016-12-15T07:29:54Z", "well_guid": "9a2060cc-14dc-4391-9851-f4a83cbe0ade", "identification_plate_number": 42224, "owner_full_name": "HASTIE GOODE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2841 BARNHARTVALE ROAD 1 12", "city": "KAMLOOPS", "legal_lot": "1C", "legal_plan": "KAP59448", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": "19", "legal_range": "14", "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-25", "construction_end_date": "2015-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "2204.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": null, "final_casing_stick_up": "18.000", "bedrock_depth": "32.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5607174, "utm_easting": 295069, "utm_accuracy_code": "H", "bcgs_id": 10760, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112425, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:28:29Z", "update_user": "WELLS", "update_date": "2016-12-15T07:31:44Z", "well_guid": "5e9ce214-6f68-444e-9174-d293c748f9d6", "identification_plate_number": 42218, "owner_full_name": "ROI TITHACOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HIGHWAY 5 1 12", "city": "BARRIER", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108568871", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-21", "construction_end_date": "2015-05-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "80.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5677895, "utm_easting": 698104, "utm_accuracy_code": "H", "bcgs_id": 12218, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112426, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "WELLS", "update_date": "2016-12-15T18:23:26Z", "well_guid": "8ed91a38-e983-4f59-ad68-3f97e86c77d9", "identification_plate_number": 42242, "owner_full_name": "TRUMAN SORRO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1370 COLLINGS ROAD 1 12", "city": "SEYMOUR ARM", "legal_lot": "1B", "legal_plan": "KAP33054", "legal_district_lot": "12946", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "103262995", "well_location_description": "KAP22054 EXCEPT PLAN 34422", "construction_start_date": "2015-08-06", "construction_end_date": "2015-08-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "9.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "44.00", "final_casing_stick_up": "12.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "11.50", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5678121, "utm_easting": 364597, "utm_accuracy_code": "H", "bcgs_id": 2344, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112427, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:22:43Z", "update_user": "WELLS", "update_date": "2016-12-15T19:38:06Z", "well_guid": "9184d77e-7a92-4ce8-b2e9-525e8b33f497", "identification_plate_number": 42245, "owner_full_name": "JEHANNA PETZOLT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1370 COLLINGS ROAD 1 12", "city": "SEYMOUR ARM", "legal_lot": "1B", "legal_plan": "KAP33054", "legal_district_lot": "12946", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "103262995", "well_location_description": "PLAN: KAP33054 EXCEPT PLAN 34422", "construction_start_date": "2015-08-10", "construction_end_date": "2015-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "17.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "48.00", "finished_well_depth": "48.00", "final_casing_stick_up": "36.000", "bedrock_depth": "48.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "7.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5678121, "utm_easting": 364597, "utm_accuracy_code": "H", "bcgs_id": 2344, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112428, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "WELLS", "update_date": "2017-01-09T18:39:38Z", "well_guid": "702fb8b3-330c-42ed-8206-9d85bb7f8740", "identification_plate_number": 42241, "owner_full_name": "CINDERELLA COWUP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "195", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "106075037", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-04", "construction_end_date": "2015-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "112.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "28.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5613581, "utm_easting": 622239, "utm_accuracy_code": "H", "bcgs_id": 13760, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112429, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "WELLS", "update_date": "2017-01-09T19:48:49Z", "well_guid": "d926fe25-502a-4229-83c2-a90987b149bc", "identification_plate_number": 41736, "owner_full_name": "RAFAELIA SPIRIT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4683 HIGHWAY 97 NORTH 1 12", "city": "WESTWOLD", "legal_lot": "11", "legal_plan": "9141", "legal_district_lot": "1", "legal_block": " ", "legal_section": "31", "legal_township": "17", "legal_range": "13", "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-10", "construction_end_date": "2016-03-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "OWNER", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "280.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "60.00", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5595428, "utm_easting": 302038, "utm_accuracy_code": "A", "bcgs_id": 1773, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112430, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "WELLS", "update_date": "2016-12-15T19:22:22Z", "well_guid": "9ebfcefa-1f79-42e6-ab06-633c2f53dee0", "identification_plate_number": 42238, "owner_full_name": "URSULINE ALEJANDRI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6494 MONETTE ROAD 1 12", "city": "100 MILE HOUSE", "legal_lot": "11", "legal_plan": "KAP88050", "legal_district_lot": "14060", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "127759393", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-30", "construction_end_date": "2015-07-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "3329.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "12.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5716315, "utm_easting": 632230, "utm_accuracy_code": "H", "bcgs_id": 5845, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112431, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "b82e7b2e-b429-4b99-b7ce-f01dd3718487", "identification_plate_number": 48622, "owner_full_name": "THOMA AULETTA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3300 Arrowsmith 1 12", "city": "Nanaimo", "legal_lot": "12", "legal_plan": "EPP 51603", "legal_district_lot": "131", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "58", "legal_pid": "129634041", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-10-03", "construction_end_date": "2016-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "403.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "52.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "565.00", "finished_well_depth": "565.00", "final_casing_stick_up": "18.000", "bedrock_depth": "11.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5452240, "utm_easting": 427770, "utm_accuracy_code": "H", "bcgs_id": 4329, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112432, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "WELLS", "update_date": "2017-01-09T20:29:43Z", "well_guid": "3f3c053c-3194-4975-bead-b79cdb42bbb9", "identification_plate_number": 42236, "owner_full_name": "BABS RRAUNDL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7547 BEAZLEY ROAD 1 12", "city": "LONNE BUTTE", "legal_lot": "144", "legal_plan": "21793", "legal_district_lot": "13720", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-29", "construction_end_date": "2015-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "218.00", "finished_well_depth": "216.00", "final_casing_stick_up": "12.000", "bedrock_depth": "216.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "124.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5719522, "utm_easting": 649417, "utm_accuracy_code": "H", "bcgs_id": 5948, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112433, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "34ab3444-5a9a-4276-82e4-9e94dfdec012", "identification_plate_number": 43617, "owner_full_name": "KATHERYN WALLEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2540 McPherson Road 1 12", "city": "Qualicum Beach", "legal_lot": "1A", "legal_plan": "VIP 66620", "legal_district_lot": "1", "legal_block": "390", "legal_section": " ", "legal_township": " ", "legal_range": "Q", "land_district": "35", "legal_pid": "124042854", "well_location_description": "Within property boundaries", "construction_start_date": "2016-11-29", "construction_end_date": "2016-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": "333.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "166.00", "finished_well_depth": "163.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5466020, "utm_easting": 383266, "utm_accuracy_code": "H", "bcgs_id": 13773, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112434, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "378a53a4-f124-44d5-a25b-e0aafac2a52f", "identification_plate_number": 48641, "owner_full_name": "GEORGEANNA WINSER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9466 Martin Park Drive 1 12", "city": "Black Creek", "legal_lot": "14", "legal_plan": "26755", "legal_district_lot": "1", "legal_block": " ", "legal_section": "21/22", "legal_township": "4", "legal_range": " ", "land_district": "15", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-16", "construction_end_date": "2016-09-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "237.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "136.00", "finished_well_depth": "116.06", "final_casing_stick_up": "36.000", "bedrock_depth": "135.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "87.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5527934, "utm_easting": 341676, "utm_accuracy_code": "H", "bcgs_id": 3606, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112435, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:09:12Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "2b1a5d96-c707-44e9-af2b-1686c4a10edb", "identification_plate_number": 40995, "owner_full_name": "WOODY MCCLANCY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6409 Island Hwy. South 1 12", "city": "Union Bay", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-07-12", "construction_end_date": "2016-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": "92.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "83.00", "finished_well_depth": "83.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "39.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5489626, "utm_easting": 365025, "utm_accuracy_code": "H", "bcgs_id": 3407, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112436, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "WELLS", "update_date": "2017-01-04T23:25:41Z", "well_guid": "e5d5faf6-08a3-426e-a3e1-344fddeceb1b", "identification_plate_number": 48669, "owner_full_name": "TEMP WHITEMARSH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "WA", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "900 Beasley 1 12", "city": "Cortes Island", "legal_lot": "11", "legal_plan": "24208", "legal_district_lot": "1", "legal_block": " ", "legal_section": "8", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "100029441", "well_location_description": "Except parts in Plan 26376 and Plan 39468. Within property boundaries.", "construction_start_date": "2016-06-28", "construction_end_date": "2016-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": "229.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_BACKFLL", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "254.04", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "217.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5547110, "utm_easting": 358130, "utm_accuracy_code": "H", "bcgs_id": 5482, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112437, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:51:48Z", "update_user": "WELLS", "update_date": "2017-01-04T23:25:41Z", "well_guid": "050b8a3a-ea29-4e29-a6bd-d03add0b4484", "identification_plate_number": 48625, "owner_full_name": "VINITA BREED", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2746 Marshland 1 12", "city": "Qualicum Beach", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "810", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "01", "legal_pid": "108713538", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-10-26", "construction_end_date": "2016-10-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": "724.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "480.00", "finished_well_depth": "480.00", "final_casing_stick_up": "18.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5466064, "utm_easting": 381745, "utm_accuracy_code": "H", "bcgs_id": 13774, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112438, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:05Z", "update_user": "WELLS", "update_date": "2017-01-09T18:43:45Z", "well_guid": "01a517e0-159d-4150-98d3-1f08d27c4bac", "identification_plate_number": 42248, "owner_full_name": "LEONARD DURRANS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6536 ASHCROFT ROAD 1 12", "city": "WALHACHIN", "legal_lot": "18", "legal_plan": "862", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3 & 1", "legal_township": "21", "legal_range": "22", "land_district": "25", "legal_pid": "112067652", "well_location_description": "PLAN 862 EXCEPT PLAN H674; WEST OF 6TH MERIDIAN", "construction_start_date": "2015-08-26", "construction_end_date": "2015-08-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "560.00", "finished_well_depth": "560.00", "final_casing_stick_up": "12.000", "bedrock_depth": "525.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5625689, "utm_easting": 642683, "utm_accuracy_code": "J", "bcgs_id": 10147, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112439, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "WELLS", "update_date": "2017-01-04T23:17:13Z", "well_guid": "8b1fa490-4a98-42d1-9889-fcf777f4c97d", "identification_plate_number": 48626, "owner_full_name": "BROOK BERARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8642 Lory ROAD 1 12", "city": "Black Creek", "legal_lot": "120", "legal_plan": "28903", "legal_district_lot": "1", "legal_block": "29", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "101453939", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-10-11", "construction_end_date": "2016-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "290.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "85.00", "finished_well_depth": "85.00", "final_casing_stick_up": "18.000", "bedrock_depth": "9.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Weld on", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5524288, "utm_easting": 344233, "utm_accuracy_code": "H", "bcgs_id": 3628, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112440, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "WELLS", "update_date": "2017-01-09T18:41:43Z", "well_guid": "7f7fca23-6a11-44b6-812b-0456ae1a206e", "identification_plate_number": 42247, "owner_full_name": "GAYELORD ARDLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6532 PINECREST DRIVE 1 12", "city": "SAVONA", "legal_lot": "116", "legal_plan": "862", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": "1", "legal_range": "22", "land_district": "25", "legal_pid": "112067903", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-24", "construction_end_date": "2015-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.520000", "ground_elevation": "1435.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "560.00", "finished_well_depth": "540.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "212.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5625222, "utm_easting": 642703, "utm_accuracy_code": "J", "bcgs_id": 5251, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112441, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "WELLS", "update_date": "2017-01-04T23:25:30Z", "well_guid": "b2276b93-80c8-48cf-b19c-f7d24e24d607", "identification_plate_number": 48635, "owner_full_name": "DOLORITAS SPINAGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Lindsey ROAD 1 12", "city": "Cedar", "legal_lot": "18", "legal_plan": "VIP 67150", "legal_district_lot": "1", "legal_block": " ", "legal_section": "19", "legal_township": " ", "legal_range": "2", "land_district": "07", "legal_pid": "124209724", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-08-22", "construction_end_date": "2016-08-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "188.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "305.00", "finished_well_depth": "305.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "82.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441679, "utm_easting": 438204, "utm_accuracy_code": "H", "bcgs_id": 4023, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112442, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "a598829e-0689-4cfd-99d1-62491f8af5d6", "identification_plate_number": 48620, "owner_full_name": "JYOTI LINNOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "11", "legal_plan": "EPP 6656", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-28", "construction_end_date": "2016-09-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "315.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "89.00", "finished_well_depth": "89.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "39.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5466019, "utm_easting": 386539, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112443, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:34Z", "update_user": "WELLS", "update_date": "2017-01-04T23:23:31Z", "well_guid": "ca6f66c4-9148-4b9e-aee4-979814c63ec4", "identification_plate_number": 48644, "owner_full_name": "WHIT BULLMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "12", "legal_plan": "EPP 66561", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-22", "construction_end_date": "2016-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": "308.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "92.00", "finished_well_depth": "89.06", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "42.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5466010, "utm_easting": 386471, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112444, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "WELLS", "update_date": "2016-12-15T21:44:51Z", "well_guid": "a03d1291-21b3-4c57-b158-6ebd1bb281b8", "identification_plate_number": 42246, "owner_full_name": "GLENN MEADEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "114375729", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-19", "construction_end_date": "2015-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": "2992.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "360.00", "finished_well_depth": "360.00", "final_casing_stick_up": "12.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5606485, "utm_easting": 690847, "utm_accuracy_code": "H", "bcgs_id": 5112, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112445, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "WELLS", "update_date": "2017-01-04T23:15:43Z", "well_guid": "b2441576-db78-4a31-a97a-4f745ef4259d", "identification_plate_number": 48653, "owner_full_name": "LOTHAIRE HARRISSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "13", "legal_plan": "EPP 66561", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-26", "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "340.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "108.00", "finished_well_depth": "106.06", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5465924, "utm_easting": 386428, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112446, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:55:22Z", "update_user": "WELLS", "update_date": "2016-12-15T21:58:38Z", "well_guid": "54f55e5a-b8ab-497d-a797-44b5c9c9c2d6", "identification_plate_number": 42244, "owner_full_name": "CANDICE REARDON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "11515 FOUNTAIN VALLEY ROAD 1 12", "city": "LILLOOET", "legal_lot": "12", "legal_plan": "11873", "legal_district_lot": "17669", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-17", "construction_end_date": "2015-08-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": "3016.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "76.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5613186, "utm_easting": 584630, "utm_accuracy_code": "H", "bcgs_id": 9760, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112447, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:04Z", "update_user": "WELLS", "update_date": "2016-12-15T22:10:12Z", "well_guid": "3e65e637-0615-4ed3-9da6-1d3059a8e244", "identification_plate_number": 42243, "owner_full_name": "TRUDE BITTERTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2644 EAGLE CREEK 1 12", "city": "EAGLE CREEK", "legal_lot": "113", "legal_plan": " ", "legal_district_lot": "15009", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "104085060", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-13", "construction_end_date": "2015-08-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": "2666.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "320.00", "finished_well_depth": "317.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "46.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5746582, "utm_easting": 643661, "utm_accuracy_code": "H", "bcgs_id": 10933, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112448, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "WELLS", "update_date": "2017-01-04T23:13:57Z", "well_guid": "aa84156b-000f-4aee-9f19-2ccc960312ec", "identification_plate_number": 48643, "owner_full_name": "JAYNE FALLEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "14", "legal_plan": "EPP 66561", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-21", "construction_end_date": "2016-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.270000", "longitude": "-122.530000", "ground_elevation": "346.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "112.00", "finished_well_depth": "106.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5465938, "utm_easting": 386418, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112449, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "WELLS", "update_date": "2017-01-04T23:12:32Z", "well_guid": "aeb50833-2e14-4c1e-97da-dfd3fcf9286a", "identification_plate_number": 48652, "owner_full_name": "KENNY BILBROOKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "15", "legal_plan": "EPP 66561", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-23", "construction_end_date": "2016-09-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": "384.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_BACKFLL", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "79.00", "finished_well_depth": "78.04", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "51.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5465830, "utm_easting": 386426, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112450, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "WELLS", "update_date": "2016-12-16T13:18:52Z", "well_guid": "1a4b5e45-841d-4515-96e5-dd224833ee85", "identification_plate_number": 41712, "owner_full_name": "RAVID HOULTHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "797 COLDWATER ROAD 1 12", "city": "MERRITT", "legal_lot": "1A", "legal_plan": "KAP21157", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": "91", "legal_range": " ", "land_district": null, "legal_pid": "107598688", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-15", "construction_end_date": "2015-10-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "2209.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "96.00", "final_casing_stick_up": "48.000", "bedrock_depth": "78.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5550345, "utm_easting": 659510, "utm_accuracy_code": "H", "bcgs_id": 4953, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112451, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "WELLS", "update_date": "2017-01-04T23:11:13Z", "well_guid": "8201b046-5a58-4a2c-84b1-c06dc4415d45", "identification_plate_number": 48621, "owner_full_name": "WOODY NOAKES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "16", "legal_plan": "Epp 66561", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-29", "construction_end_date": "2016-09-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "377.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "181.00", "finished_well_depth": "177.06", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "137.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Simple", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5465379, "utm_easting": 386678, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112452, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:44:46Z", "update_user": "WELLS", "update_date": "2017-01-04T23:09:51Z", "well_guid": "094697c8-80cf-4fd8-9319-4beec0c4ffd8", "identification_plate_number": 48673, "owner_full_name": "IMMANUEL STOOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Timberlake Place 1 12", "city": "Qualicum Beach", "legal_lot": "17", "legal_plan": "EPP 66561", "legal_district_lot": "1", "legal_block": "359", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-09-27", "construction_end_date": "2016-09-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": "312.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "78.00", "finished_well_depth": "78.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5465929, "utm_easting": 386445, "utm_accuracy_code": "H", "bcgs_id": 3296, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112453, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:03Z", "update_user": "WELLS", "update_date": "2016-12-16T13:22:57Z", "well_guid": "bfe101cb-6231-4d54-9387-c0a34d9146fa", "identification_plate_number": 41710, "owner_full_name": "TIEBOLD WOOLLENDS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3220 HORSEFLY-QUESNEL LAKE ROAD 1 12", "city": "HORSEFLY", "legal_lot": "1A", "legal_plan": "30978", "legal_district_lot": "1504;1501;2659;8782", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-08", "construction_end_date": "2015-10-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "2516.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "280.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5801291, "utm_easting": 608315, "utm_accuracy_code": "H", "bcgs_id": 6213, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112454, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "WELLS", "update_date": "2016-12-16T13:39:34Z", "well_guid": "aa2c4350-8f2b-4151-b264-fc34d6278d25", "identification_plate_number": 41709, "owner_full_name": "LATIA MCCRYSTAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5833 JENKINS WAY 1 12", "city": "TATLA LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "11696", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "2", "land_district": null, "legal_pid": "123456789", "well_location_description": "EAGLE LAKE PARADISE RESORT", "construction_start_date": "2015-10-06", "construction_end_date": "2015-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": "3470.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "12.000", "bedrock_depth": "167.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "41.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5750146, "utm_easting": 401173, "utm_accuracy_code": "H", "bcgs_id": 12850, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112455, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": "WELLS", "update_date": "2017-01-09T18:48:02Z", "well_guid": "cc8b69e8-b3d1-4173-8ba5-3350dfbbb374", "identification_plate_number": 41707, "owner_full_name": "GISELLA LOEBER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1030 FOX MOUNTAIN ROAD 1 12", "city": "WILLIAMS LAKE", "legal_lot": "16", "legal_plan": "BCP13037", "legal_district_lot": "18815", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-30", "construction_end_date": "2015-09-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "2590.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "320.00", "finished_well_depth": "320.00", "final_casing_stick_up": "12.000", "bedrock_depth": "220.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "198.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5777828, "utm_easting": 559221, "utm_accuracy_code": "H", "bcgs_id": 6311, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112456, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "WELLS", "update_date": "2016-12-16T17:10:04Z", "well_guid": "dc0a4ad6-2957-47ba-b8e9-6d3add83be79", "identification_plate_number": 41708, "owner_full_name": "DONELLE TONKINSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3041 SPOUT LAKE ROAD 1 12", "city": "LAC LA HACHE", "legal_lot": "1D", "legal_plan": "29895", "legal_district_lot": "1", "legal_block": " ", "legal_section": "31", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-30", "construction_end_date": "2015-10-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "3507.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "12.000", "bedrock_depth": "31.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "206.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5751535, "utm_easting": 609318, "utm_accuracy_code": "H", "bcgs_id": 13762, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112457, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "WELLS", "update_date": "2016-12-16T14:22:01Z", "well_guid": "73bd4618-7e5f-41bb-ab6e-af5c41d02a3e", "identification_plate_number": 41702, "owner_full_name": "ENGELBERT HARFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "111572", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "115289168", "well_location_description": "AREA 24 JURISDICTION 727, WILLIAMS LAKE. RURAL. ROLL 07081,000", "construction_start_date": "2015-09-21", "construction_end_date": "2015-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "36.000", "bedrock_depth": "94.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5726435, "utm_easting": 622799, "utm_accuracy_code": "H", "bcgs_id": 5925, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112458, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "WELLS", "update_date": "2017-01-09T18:46:37Z", "well_guid": "8bd74c52-bd01-4f29-a92a-6ec57931bd15", "identification_plate_number": null, "owner_full_name": "PRISCELLA FOOTER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2760 EAST SHUSHWAP ROAD 1 12", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "101726633", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5616155, "utm_easting": 705583, "utm_accuracy_code": "H", "bcgs_id": 5223, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112459, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "WELLS", "update_date": "2016-12-16T14:50:22Z", "well_guid": "a2f1339a-866e-41c8-adce-56067cf77d19", "identification_plate_number": 41706, "owner_full_name": "VINITA HADDACKS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "34705", "legal_district_lot": "14176", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "102935830", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-17", "construction_end_date": "2015-09-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.500000", "ground_elevation": "3217.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "86.00", "finished_well_depth": "86.00", "final_casing_stick_up": "36.000", "bedrock_depth": "86.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5746850, "utm_easting": 622301, "utm_accuracy_code": "H", "bcgs_id": 13763, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112460, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "WELLS", "update_date": "2016-12-16T15:01:51Z", "well_guid": "5fe0b8a7-f3a3-40ac-ba48-f1869c9796d7", "identification_plate_number": 41704, "owner_full_name": "DAFFI HOULTHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7558 WOMACK 1 12", "city": "DECA LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-14", "construction_end_date": "2015-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "3712.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5663769, "utm_easting": 650993, "utm_accuracy_code": "H", "bcgs_id": 13761, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112461, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "WELLS", "update_date": "2016-12-16T17:25:32Z", "well_guid": "c400276c-3e92-4120-b73d-96c0f9fb2b40", "identification_plate_number": 41703, "owner_full_name": "ANGELINE VARVARA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "TRANQUILLE CRISS CREEK 1 12", "city": "KAMLOOPS", "legal_lot": "12", "legal_plan": "92960", "legal_district_lot": "132", "legal_block": " ", "legal_section": " ", "legal_township": "22", "legal_range": "20", "land_district": "25", "legal_pid": "129152615", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-10", "construction_end_date": "2015-09-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": "3714.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "12.000", "bedrock_depth": "92.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "187.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5642651, "utm_easting": 658373, "utm_accuracy_code": "H", "bcgs_id": 13758, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112462, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:09:47Z", "update_user": "WELLS", "update_date": "2017-01-04T23:06:58Z", "well_guid": "fc20ee61-59a0-4f69-9b66-9ee3e90aa996", "identification_plate_number": 43618, "owner_full_name": "TORRIN BIRKENSHAW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Eggleton ROAD 1 12", "city": " ", "legal_lot": "18", "legal_plan": "27748", "legal_district_lot": "1", "legal_block": " ", "legal_section": "2", "legal_township": " ", "legal_range": "6", "land_district": "07", "legal_pid": "102183315", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-12-05", "construction_end_date": "2016-12-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": "198.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "24.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434559, "utm_easting": 442724, "utm_accuracy_code": "J", "bcgs_id": 3731, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112463, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "WELLS", "update_date": "2017-01-04T23:00:34Z", "well_guid": "78b47ece-8c56-4eeb-bbcf-699c87fdfd74", "identification_plate_number": 48655, "owner_full_name": "CHERISE BUYE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1519 Hyacinthe Bay 1 12", "city": "Quadra Island", "legal_lot": "128", "legal_plan": "1109", "legal_district_lot": "1216", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "107894686", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-07-25", "construction_end_date": "2016-07-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.290000", "longitude": "-122.550000", "ground_elevation": "290.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "205.00", "finished_well_depth": "205.00", "final_casing_stick_up": "24.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5552163, "utm_easting": 341268, "utm_accuracy_code": "H", "bcgs_id": 5497, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112464, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "WELLS", "update_date": "2017-01-09T18:45:21Z", "well_guid": "7dd38cbd-7f4d-4aa9-9c4e-7676bb460cde", "identification_plate_number": 41701, "owner_full_name": "SALEM PURRIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7620 KING ROAD 1 12", "city": "DECA LAKE", "legal_lot": "1251", "legal_plan": "21667", "legal_district_lot": "13721", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "107350180", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-07", "construction_end_date": "2015-09-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": "3819.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "520.00", "finished_well_depth": "520.00", "final_casing_stick_up": "12.000", "bedrock_depth": "152.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "263.50", "well_yield": "13.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5719571, "utm_easting": 650630, "utm_accuracy_code": "H", "bcgs_id": 9295, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112465, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:30:44Z", "update_user": "WELLS", "update_date": "2017-01-04T20:47:34Z", "well_guid": "77ba474e-dec6-48a4-9d9c-4ab3e6bb5803", "identification_plate_number": 40909, "owner_full_name": "MICHELE BIRKENHEAD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "351 Bayview Park Drive 1 12", "city": "Lantzville", "legal_lot": "118", "legal_plan": "VIP 25993", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-04-26", "construction_end_date": "2016-04-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "307.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "205.00", "finished_well_depth": "205.00", "final_casing_stick_up": "30.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "3.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455415, "utm_easting": 417189, "utm_accuracy_code": "H", "bcgs_id": 3235, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112466, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:41:54Z", "update_user": "WELLS", "update_date": "2016-12-16T17:45:51Z", "well_guid": "6f36298c-b1f3-4df8-93d6-43b1a0122cfd", "identification_plate_number": 41700, "owner_full_name": "FLORENCIA CLEAVER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2765 SHORE COURT 1 12", "city": "70 MILE HOUSE", "legal_lot": "12", "legal_plan": " ", "legal_district_lot": "15", "legal_block": " ", "legal_section": "22", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-07", "construction_end_date": "2015-09-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": "3378.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "56.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5693073, "utm_easting": 636546, "utm_accuracy_code": "H", "bcgs_id": 5703, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112467, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "WELLS", "update_date": "2017-01-04T20:44:51Z", "well_guid": "1ce134b4-6a41-436c-8cf4-2b2153e6e670", "identification_plate_number": 48664, "owner_full_name": "BECK GIANNASSI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "17", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-06-21", "construction_end_date": "2016-06-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": "515.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "30.000", "bedrock_depth": "31.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389244, "utm_easting": 448766, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112468, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "WELLS", "update_date": "2016-12-16T17:56:42Z", "well_guid": "7e151cbb-dbe4-4e4c-ad89-18d71b5d029d", "identification_plate_number": 42249, "owner_full_name": "LYNDEL TERTRE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1036 VISTA POINT ROAD 1 12", "city": "BARRIER", "legal_lot": "16", "legal_plan": "33812", "legal_district_lot": "11571", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-01", "construction_end_date": "2015-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "12.000", "bedrock_depth": "60.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5674929, "utm_easting": 703159, "utm_accuracy_code": "H", "bcgs_id": 5652, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112469, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "WELLS", "update_date": "2017-01-04T20:43:36Z", "well_guid": "225dc2f3-7ea9-4ac5-a7c1-490aa015145e", "identification_plate_number": 48659, "owner_full_name": "BRANDAIS DOWNS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "125", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-07-22", "construction_end_date": "2016-07-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "432.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "360.00", "finished_well_depth": "360.00", "final_casing_stick_up": "12.000", "bedrock_depth": "38.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "69.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389067, "utm_easting": 448932, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112470, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "WELLS", "update_date": "2017-01-04T20:37:23Z", "well_guid": "5bef5b3b-3e77-4ea4-8996-97adadf553c3", "identification_plate_number": 48606, "owner_full_name": "PHEBE SKIP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "19", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-08-17", "construction_end_date": "2016-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.570000", "ground_elevation": "571.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": "82.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.06", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389195, "utm_easting": 448992, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112471, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "WELLS", "update_date": "2017-01-04T20:18:47Z", "well_guid": "087705c4-7874-4f2f-b89d-a861c6d8b704", "identification_plate_number": 48607, "owner_full_name": "JOSEE SPILLARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": "Shawnigan Lake", "legal_lot": "114", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-08-22", "construction_end_date": "2016-08-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "539.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "160.00", "final_casing_stick_up": "24.000", "bedrock_depth": "54.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.06", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389029, "utm_easting": 449318, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112472, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T20:23:33Z", "update_user": "WELLS", "update_date": "2017-02-06T19:03:40Z", "well_guid": "b1f15a73-5da4-4086-a612-8e81eac26c16", "identification_plate_number": null, "owner_full_name": "STEVE TINGLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "67 MCMANUS ROAD 1 12", "city": "GRINDROD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "19", "legal_township": "19", "legal_range": "8", "land_district": "59", "legal_pid": "113812165", "well_location_description": "Part w1/2 of sw 1/4,except plan B1811 21922", "construction_start_date": "2005-10-25", "construction_end_date": "2005-10-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "39.60", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609721, "utm_easting": 350804, "utm_accuracy_code": "A", "bcgs_id": 2045, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112473, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "WELLS", "update_date": "2016-12-17T00:50:37Z", "well_guid": "6b291e97-b86d-4aaf-8002-1ab0a2a760db", "identification_plate_number": 41727, "owner_full_name": "CINDERELLA BUNTAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5008 CARIBOO HIGHWAY 97 NORTH 1 12", "city": "WILLIAMS LAKE", "legal_lot": "1A", "legal_plan": "BCP16999", "legal_district_lot": "1552", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "126259152", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-02-03", "construction_end_date": "2015-02-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "2296.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "295.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "127.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5792896, "utm_easting": 558021, "utm_accuracy_code": "H", "bcgs_id": 13556, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112474, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "WELLS", "update_date": "2016-12-17T01:08:32Z", "well_guid": "3a262abd-e0f9-4dd5-b9cf-da08e14b5ff9", "identification_plate_number": 41726, "owner_full_name": "KASSIA COVENDON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "29", "legal_township": "19", "legal_range": "24", "land_district": "25", "legal_pid": "114545365", "well_location_description": "EAST 1/2 OF SOUTHEAST 1/4 WEST OF 6TH MERIDIAN", "construction_start_date": "2015-12-07", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "152.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5611125, "utm_easting": 621531, "utm_accuracy_code": "H", "bcgs_id": 13764, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112475, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "WELLS", "update_date": "2016-12-17T01:26:16Z", "well_guid": "c84afa71-9d85-462a-8a2b-063f9e7e561f", "identification_plate_number": 41725, "owner_full_name": "EULALIE MACIUNAS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "28", "legal_township": "19", "legal_range": "24", "land_district": "25", "legal_pid": "114545241", "well_location_description": "PART OF W 1/2 OF SW 1/4 LAYING NORTH AND WEST OF INDIAN RESERVE #7 WEST OF 6TH MERIDIAN", "construction_start_date": "2015-12-06", "construction_end_date": "2015-12-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": "2017.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "12.000", "bedrock_depth": "84.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5611053, "utm_easting": 621613, "utm_accuracy_code": "H", "bcgs_id": 13764, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112476, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "WELLS", "update_date": "2017-01-09T18:57:58Z", "well_guid": "87150cb5-8fe8-4f94-921f-cdd04e110db3", "identification_plate_number": 41724, "owner_full_name": "SIOBHAN TANFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3901 PETIT CREEK 1 12", "city": "MERRITT", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "22", "legal_township": "13", "legal_range": "23", "land_district": "25", "legal_pid": "112429732", "well_location_description": "PART OF NORTHEAST 1/4", "construction_start_date": "2015-12-02", "construction_end_date": "2015-12-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "2394.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "420.00", "finished_well_depth": "420.00", "final_casing_stick_up": "12.000", "bedrock_depth": "140.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5552337, "utm_easting": 638889, "utm_accuracy_code": "H", "bcgs_id": 4959, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112477, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "WELLS", "update_date": "2016-12-17T03:09:24Z", "well_guid": "b5ab4145-0493-460d-86a3-813692700612", "identification_plate_number": 41718, "owner_full_name": "CASSAUNDRA DRABBLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6740 BARNETT ROAD 1 12", "city": "100 MILE HOUSE", "legal_lot": "16", "legal_plan": "32305", "legal_district_lot": "17758", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103500209", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-05", "construction_end_date": "2015-11-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "3836.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "24.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "329.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5716876, "utm_easting": 618056, "utm_accuracy_code": "H", "bcgs_id": 5810, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112478, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "WELLS", "update_date": "2016-12-17T03:22:17Z", "well_guid": "6bbd2b2c-61f7-47e2-ab48-b29e6b2439ab", "identification_plate_number": 41716, "owner_full_name": "DONNA MURIEL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "B4752", "legal_district_lot": "17383", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-22", "construction_end_date": "2015-10-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "2877.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "84.00", "finished_well_depth": "84.00", "final_casing_stick_up": "72.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.50", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5778733, "utm_easting": 351971, "utm_accuracy_code": "H", "bcgs_id": 13765, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112479, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "WELLS", "update_date": "2016-12-17T03:34:14Z", "well_guid": "85625adb-473c-4dca-8121-e5adc106afce", "identification_plate_number": 41715, "owner_full_name": "GIRALDA THEURER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "211 INCH LOGAN ROAD 1 12", "city": "ENDERBY", "legal_lot": "1", "legal_plan": "3460", "legal_district_lot": "1185", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "?SAVE AND EXCEPT PLAN 3460? DIFFICULT TO READ", "construction_start_date": "2015-10-21", "construction_end_date": "2015-10-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "1557.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "50.00", "finished_well_depth": "50.00", "final_casing_stick_up": "12.000", "bedrock_depth": "52.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5607179, "utm_easting": 351133, "utm_accuracy_code": "H", "bcgs_id": 1941, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112480, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "WELLS", "update_date": "2017-01-09T18:49:29Z", "well_guid": "cd1eaac0-2328-48fa-8ac3-07ed9b6dac7a", "identification_plate_number": 41714, "owner_full_name": "ALOISIA STUDMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7095 NAPIER LAKE 1 12", "city": "KNUTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1455", "legal_block": "17", "legal_section": "17", "legal_township": "17", "legal_range": " ", "land_district": "25", "legal_pid": "104569253", "well_location_description": "PID=ALSO 004569245; THAT PART OF LS3 NOT INCLUDED THAT PART OF LS2 LYING WEST OF THE WEST SHORE OF NAPIER LAKE", "construction_start_date": "2015-10-19", "construction_end_date": "2015-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "2603.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "12.000", "bedrock_depth": "20.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "210.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5590010, "utm_easting": 691001, "utm_accuracy_code": "H", "bcgs_id": 11175, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112481, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "WELLS", "update_date": "2017-08-28T22:47:25Z", "well_guid": "2d65b548-0313-4b91-bc21-09d1eb97bc34", "identification_plate_number": 41713, "owner_full_name": "JAQUELIN VONDRA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3705 NORTH FRONTAGE ROAD 1 12", "city": "SPENCES BRIDGE", "legal_lot": "15", "legal_plan": "8674", "legal_district_lot": "1369", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-16", "construction_end_date": "2015-10-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "802.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "92.00", "final_casing_stick_up": "12.000", "bedrock_depth": "92.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "54.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5587189, "utm_easting": 617725, "utm_accuracy_code": "H", "bcgs_id": 13766, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112482, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "WELLS", "update_date": "2016-12-17T05:32:26Z", "well_guid": "aa3f1a9d-9dfa-48fd-b232-40b633c2015d", "identification_plate_number": 41735, "owner_full_name": "JEHANNA BARDNAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4183 WILCOX ROAD 1 12", "city": "FOREST GROVE", "legal_lot": "1", "legal_plan": "H-14698", "legal_district_lot": "12942", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "DL-2942 LD PART NORTHWEST 1/4 EXCEPT PLAN HIGHWAY PLAN H-14698", "construction_start_date": "2016-03-03", "construction_end_date": "2016-03-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "870.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "92.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5740377, "utm_easting": 631399, "utm_accuracy_code": "H", "bcgs_id": 6033, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112483, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "WELLS", "update_date": "2016-12-17T06:02:15Z", "well_guid": "458b8289-6850-4307-be00-4e69c89c4997", "identification_plate_number": 41740, "owner_full_name": "LORALYN BRANGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "945 CAMPBELL HILL DRIVE WEST 1 12", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": "C", "legal_section": "18", "legal_township": "21", "legal_range": "24", "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", "construction_start_date": "2016-04-06", "construction_end_date": "2016-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "92.00", "finished_well_depth": "87.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5628484, "utm_easting": 618197, "utm_accuracy_code": "H", "bcgs_id": 13767, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112484, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "WELLS", "update_date": "2016-12-17T07:20:51Z", "well_guid": "e2c41810-3cea-41f6-8193-45a71197dc4f", "identification_plate_number": 41739, "owner_full_name": "ENGELBERT TALE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "945 CAMPBELL HILL DRIVE WEST 1 12", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": "C", "legal_section": "18", "legal_township": "21", "legal_range": "24", "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", "construction_start_date": "2016-04-04", "construction_end_date": "2016-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "532.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "116.00", "final_casing_stick_up": "48.000", "bedrock_depth": "85.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5627632, "utm_easting": 618665, "utm_accuracy_code": "H", "bcgs_id": 13767, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112485, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "WELLS", "update_date": "2017-01-09T19:41:45Z", "well_guid": "653af069-9db7-451b-80d3-bd60ffbeea70", "identification_plate_number": 41745, "owner_full_name": "JEFFERSON MCALPINE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "11", "legal_plan": "51660", "legal_district_lot": "14047", "legal_block": " ", "legal_section": "32", "legal_township": "41", "legal_range": " ", "land_district": "41", "legal_pid": "118639364", "well_location_description": "GRAVEL PIT. \r\nDRILLER HAS WRITTEN \"51660 EXPECT\" IN PLAN", "construction_start_date": "2016-05-02", "construction_end_date": "2016-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "216.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5570003, "utm_easting": 363921, "utm_accuracy_code": "A", "bcgs_id": 1651, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112486, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "WELLS", "update_date": "2016-12-17T06:36:16Z", "well_guid": "22a6fcc0-7f5f-4e26-90aa-6e2e56fa47b0", "identification_plate_number": 41747, "owner_full_name": "ADE JERRAMS\n ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1E", "legal_plan": "KAP90628 PL473818", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "128194411", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-09", "construction_end_date": "2016-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "1144.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "12.000", "bedrock_depth": "93.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "64.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5701006, "utm_easting": 615457, "utm_accuracy_code": "H", "bcgs_id": 10125, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112487, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:23Z", "update_user": "WELLS", "update_date": "2016-12-17T06:59:15Z", "well_guid": "213635ff-d16d-419a-8dde-4abbe2543969", "identification_plate_number": 41750, "owner_full_name": "TRUMAN RIGTS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "21900 FOUNTAIN VALLEY ROAD 1 12", "city": "LILLOOET", "legal_lot": "17", "legal_plan": "KAP31185", "legal_district_lot": "12972", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "103813517", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-18", "construction_end_date": "2016-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": "809.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5603866, "utm_easting": 586607, "utm_accuracy_code": "H", "bcgs_id": 10776, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112488, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "WELLS", "update_date": "2016-12-17T07:27:44Z", "well_guid": "2c342b55-a792-4cea-ac50-f13bef1058bb", "identification_plate_number": 41752, "owner_full_name": "BRANDAIS BUYE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4769 ATWATER 1 12", "city": "PASKA LAKE", "legal_lot": "116", "legal_plan": "KAP19519", "legal_district_lot": "14157", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-14", "construction_end_date": "2016-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "160.00", "final_casing_stick_up": "12.000", "bedrock_depth": "145.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5600444, "utm_easting": 666914, "utm_accuracy_code": "H", "bcgs_id": 5101, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112489, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "WELLS", "update_date": "2017-01-09T18:51:18Z", "well_guid": "ecece65f-7ddf-4ddf-84f9-7c5c4506647b", "identification_plate_number": 41738, "owner_full_name": "LEMAR PAIREMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3469 PRINCETON-KAMLOOPS HIGHWAY A 1 12", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1441", "legal_block": " ", "legal_section": "8", "legal_township": "19", "legal_range": "17", "land_district": null, "legal_pid": "123456789", "well_location_description": "S/E 1/4 W6M LYING E PROD SLY OF W BDY DL441", "construction_start_date": "2016-03-29", "construction_end_date": "2016-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": "902.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "440.00", "finished_well_depth": "440.00", "final_casing_stick_up": "12.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5607923, "utm_easting": 690272, "utm_accuracy_code": "H", "bcgs_id": 5113, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112490, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "WELLS", "update_date": "2016-12-17T08:25:36Z", "well_guid": "a189c64a-9602-4d97-a6f8-fb1eed5b0f2f", "identification_plate_number": 41729, "owner_full_name": "ICHABOD LINNOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "945 CAMPBELL HILL DRIVE WEST 1 12", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": "C", "legal_section": "18", "legal_township": "21", "legal_range": "24", "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", "construction_start_date": "2016-02-18", "construction_end_date": "2016-02-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "163.00", "final_casing_stick_up": "36.000", "bedrock_depth": "150.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5628314, "utm_easting": 618511, "utm_accuracy_code": "H", "bcgs_id": 13767, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112491, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "WELLS", "update_date": "2016-12-17T08:29:55Z", "well_guid": "4b27d0e3-adcd-4ba2-a3f9-7af7981888af", "identification_plate_number": 41728, "owner_full_name": "MARENA HAYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "945 CAMPBELL HILL DRIVE WEST 1 12", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": "C", "legal_section": "18", "legal_township": "21", "legal_range": "24", "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", "construction_start_date": "2016-02-15", "construction_end_date": "2016-02-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "148.00", "finished_well_depth": "144.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5628314, "utm_easting": 618443, "utm_accuracy_code": "H", "bcgs_id": 13767, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112492, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "WELLS", "update_date": "2017-02-03T21:45:49Z", "well_guid": "f11af7f3-653a-4e8b-9638-d6bf2febf953", "identification_plate_number": 41737, "owner_full_name": "DANIT FOXTEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1176", "legal_plan": "77931 CLSR", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 176 N'KWALA INDUSTRIAL PARK, OKANAGAN IR1", "construction_start_date": "2016-03-23", "construction_end_date": "2016-03-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "1555.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "380.00", "finished_well_depth": "361.50", "final_casing_stick_up": "21.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "192.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5585970, "utm_easting": 335137, "utm_accuracy_code": "H", "bcgs_id": 1798, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112493, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:18:51Z", "update_user": "WELLS", "update_date": "2017-01-11T22:46:56Z", "well_guid": "136ac15b-5af3-4aaf-abaf-afb70bf331d0", "identification_plate_number": 41719, "owner_full_name": "ROANA COWUP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "123", "legal_district_lot": "151 & 77", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "CARIBOO DISTRICT PLAN 32161 EXCEPT PLAN 32472", "construction_start_date": "2015-11-09", "construction_end_date": "2015-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": "1544.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "45.00", "finished_well_depth": "35.00", "final_casing_stick_up": "44.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5870786, "utm_easting": 533913, "utm_accuracy_code": "H", "bcgs_id": 6503, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112494, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "WELLS", "update_date": "2016-12-17T22:54:00Z", "well_guid": "eff5e6de-fb36-427d-936f-040a355a460f", "identification_plate_number": 41720, "owner_full_name": "GUS GUILBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-10", "construction_end_date": "2015-11-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "1663.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "90.00", "finished_well_depth": "70.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "31.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5870499, "utm_easting": 532998, "utm_accuracy_code": "H", "bcgs_id": 6491, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112495, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "WELLS", "update_date": "2016-12-17T23:09:45Z", "well_guid": "66cce9cc-4abc-4c3e-bb74-25844366735b", "identification_plate_number": 41722, "owner_full_name": "LOREN GRIMOLBIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-14", "construction_end_date": "2015-11-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "1659.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "11.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "165.00", "finished_well_depth": "150.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "170.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5870439, "utm_easting": 532821, "utm_accuracy_code": "H", "bcgs_id": 6491, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112496, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "WELLS", "update_date": "2017-01-09T18:52:19Z", "well_guid": "198c79d3-b953-4ca7-bddd-30a4a089e77e", "identification_plate_number": 41753, "owner_full_name": "DORY IMORT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4753 ATWATER ROAD 1 12", "city": "PASKA LAKE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108012865", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-15", "construction_end_date": "2016-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "160.00", "final_casing_stick_up": "36.000", "bedrock_depth": "143.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5600421, "utm_easting": 666849, "utm_accuracy_code": "H", "bcgs_id": 5101, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112497, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "WELLS", "update_date": "2017-01-09T18:54:59Z", "well_guid": "1fb0003d-5318-46bf-b389-61ae097d147e", "identification_plate_number": 41730, "owner_full_name": "CLAYSON LAUXMANN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "KAP 62303", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "P1", "construction_start_date": "2016-02-22", "construction_end_date": "2016-02-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "1042.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "166.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5595678, "utm_easting": 653894, "utm_accuracy_code": "H", "bcgs_id": 5075, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112498, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "WELLS", "update_date": "2017-01-09T18:56:18Z", "well_guid": "b8de88bf-abae-4068-9244-d2a469f3ba06", "identification_plate_number": 41746, "owner_full_name": "ERNESTA PERIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "LOUIE VIEW DRIVE 1 12", "city": " ", "legal_lot": "11", "legal_plan": "51660", "legal_district_lot": "14047", "legal_block": " ", "legal_section": "32", "legal_township": "41", "legal_range": " ", "land_district": "41", "legal_pid": "118639364", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-03", "construction_end_date": "2016-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "3000.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "480.00", "finished_well_depth": "480.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "284.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5569564, "utm_easting": 363141, "utm_accuracy_code": "H", "bcgs_id": 1650, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112499, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "WELLS", "update_date": "2016-12-18T21:48:15Z", "well_guid": "b1235c79-2829-40e6-a05f-a3314cb5f249", "identification_plate_number": 41751, "owner_full_name": "KARLEN MCGINTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4777 ATWATER ROAD 1 12", "city": "PASKA LAKE", "legal_lot": "115", "legal_plan": "19519", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "102275716", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-06", "construction_end_date": "2016-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "220.00", "final_casing_stick_up": "36.000", "bedrock_depth": "145.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "78.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5600440, "utm_easting": 666938, "utm_accuracy_code": "H", "bcgs_id": 5101, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112500, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "WELLS", "update_date": "2016-12-19T13:35:01Z", "well_guid": "0e8d3791-f4e3-4a5c-b943-ffff1b41636e", "identification_plate_number": 41742, "owner_full_name": "KATHLEEN ALDERSEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "114", "legal_plan": "PGP40882", "legal_district_lot": "11228", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-21", "construction_end_date": "2016-04-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "NT_CMT_BMX", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "230.00", "finished_well_depth": "140.00", "final_casing_stick_up": "0.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5870366, "utm_easting": 531710, "utm_accuracy_code": "H", "bcgs_id": 6490, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112501, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:12Z", "update_user": "WELLS", "update_date": "2016-12-20T16:55:38Z", "well_guid": "062e2afd-3b35-475a-8463-420be120f7a6", "identification_plate_number": 41744, "owner_full_name": "MANFRED IBBETSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "110", "legal_plan": "PGP23879", "legal_district_lot": "11228", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-25", "construction_end_date": "2016-04-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "230.00", "finished_well_depth": "230.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5870184, "utm_easting": 531607, "utm_accuracy_code": "H", "bcgs_id": 6490, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112504, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:28Z", "update_user": "WELLS", "update_date": "2017-01-14T00:26:55Z", "well_guid": "c111e772-d489-466b-9c49-5f10b488d3d6", "identification_plate_number": 39253, "owner_full_name": "ABBEY ALDERSEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "800 KAL LAKE ROAD 1 12", "city": "VERNON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "105723159", "well_location_description": "AT 7 TEE", "construction_start_date": "2016-09-26", "construction_end_date": "2016-09-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICKUP", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": "1306.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "78.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "150.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5568395, "utm_easting": 338128, "utm_accuracy_code": "H", "bcgs_id": 1581, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112505, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:29:33Z", "update_user": "WELLS", "update_date": "2017-04-03T22:00:28Z", "well_guid": "1cdce605-fb6c-494a-8f1a-3df18a9466a3", "identification_plate_number": 26934, "owner_full_name": "CHRISTIN BASKETFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1249", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "3", "land_district": null, "legal_pid": "116943538", "well_location_description": "CERTIFICATE OF TITLE NO W11951", "construction_start_date": "2011-10-19", "construction_end_date": "2011-10-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "57.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": "6.00", "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5814414, "utm_easting": 343193, "utm_accuracy_code": "H", "bcgs_id": 6538, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112506, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:43:36Z", "update_user": "WELLS", "update_date": "2016-12-19T20:00:36Z", "well_guid": "b8fb8427-73d9-4d23-9030-8164df91cb02", "identification_plate_number": null, "owner_full_name": "LYNDSAY MCCLANCY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2055 264 STREET 1 12", "city": "ALDERGROVE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109364480", "well_location_description": " ", "construction_start_date": "1988-06-02", "construction_end_date": "1988-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2d7f642a-9c1e-4674-9557-7d7c60185e63", "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "21.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "250.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LID", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "42", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431887, "utm_easting": 537017, "utm_accuracy_code": "A", "bcgs_id": 3862, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112507, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:47:58Z", "update_user": "WELLS", "update_date": "2016-12-19T19:47:58Z", "well_guid": "a02cea32-db3e-47f0-b6c3-76a6dce5f888", "identification_plate_number": null, "owner_full_name": "JAMESY TRASE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2055 264 STREET 1 12", "city": "ALDERGROVE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109364480", "well_location_description": " ", "construction_start_date": "1988-06-02", "construction_end_date": "1988-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2d7f642a-9c1e-4674-9557-7d7c60185e63", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "25.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "300.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LID", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "42", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431881, "utm_easting": 537014, "utm_accuracy_code": "A", "bcgs_id": 3862, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112508, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "WELLS", "update_date": "2017-02-04T02:11:46Z", "well_guid": "31e29c28-bc6d-4b17-b4a4-3ff14495ec0a", "identification_plate_number": 41811, "owner_full_name": "SHANI RUGGIERO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "4284 CARIBOO HIGHWAY 1 12", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113287834", "well_location_description": "HOLE # 4 - EAST WELL #1", "construction_start_date": "2013-11-06", "construction_end_date": "2013-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "173.00", "finished_well_depth": "173.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5642755, "utm_easting": 611045, "utm_accuracy_code": "A", "bcgs_id": 11101, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112509, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "WELLS", "update_date": "2017-02-04T02:11:46Z", "well_guid": "74b7146f-b4c0-47be-b161-fb734d47d18b", "identification_plate_number": 41812, "owner_full_name": "VINNIE FANNON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "4052 OLD CARIBOO ROAD 1 12", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111518871", "well_location_description": "HOLE #2 WEST WELL #1", "construction_start_date": "2013-10-08", "construction_end_date": "2013-10-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "87.00", "finished_well_depth": "85.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": "5.00", "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5642222, "utm_easting": 610983, "utm_accuracy_code": "A", "bcgs_id": 5359, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112510, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:40:23Z", "update_user": "WELLS", "update_date": "2017-02-22T21:21:08Z", "well_guid": "4caddc88-0cf7-4b51-851c-f2f353839e5f", "identification_plate_number": null, "owner_full_name": "VALERIA RIHANEK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-10-26", "construction_end_date": "2015-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "60.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "10", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5505166, "utm_easting": 582283, "utm_accuracy_code": "A", "bcgs_id": 13750, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112511, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "WELLS", "update_date": "2017-01-09T20:31:27Z", "well_guid": "0650fa1a-eb00-4d72-84f4-45c7317c897e", "identification_plate_number": 42227, "owner_full_name": "CAREY MISSENDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1221", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "EXCEPT PLANS 8267, 13045, 18004, 20392, 21827, 23158", "construction_start_date": "2015-07-09", "construction_end_date": "2015-09-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "100.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "27.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5872951, "utm_easting": 534090, "utm_accuracy_code": "H", "bcgs_id": 6725, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112512, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "WELLS", "update_date": "2016-12-20T17:10:07Z", "well_guid": "b7ace2eb-ce77-44ad-9658-c8f6d042e45c", "identification_plate_number": 42228, "owner_full_name": "WHITTAKER MCNULTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1221", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "EXCEPT PLANS 8267, 13045, 18004, 20392, 21827, 23158", "construction_start_date": "2015-07-10", "construction_end_date": "2015-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "1558.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "150.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "27.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5872941, "utm_easting": 532250, "utm_accuracy_code": "H", "bcgs_id": 6716, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112513, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "WELLS", "update_date": "2017-01-05T22:54:36Z", "well_guid": "3b56ec93-c95a-4700-97d0-67dc3ea283cf", "identification_plate_number": 50141, "owner_full_name": "STACEY DELBERGUE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " WHITE ROAD 1 12", "city": "DUNCAN", "legal_lot": "1A", "legal_plan": "NOT ASSIGNED YET", "legal_district_lot": "1", "legal_block": " ", "legal_section": "8", "legal_township": " ", "legal_range": "5", "land_district": "50", "legal_pid": "123430788", "well_location_description": "NOTHING ENTERED ", "construction_start_date": "2016-12-01", "construction_end_date": "2016-12-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "554.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "135.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "97.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPH", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5402834, "utm_easting": 438081, "utm_accuracy_code": "H", "bcgs_id": 2776, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112514, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:20Z", "update_user": "WELLS", "update_date": "2017-01-05T22:54:36Z", "well_guid": "7845b01a-f573-4c94-9ae2-e8be12651297", "identification_plate_number": 50140, "owner_full_name": "KRISHA STAINBURN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " TIMBERLINE WAY 1 12", "city": "JORDAN RIVER", "legal_lot": "12", "legal_plan": "NOT YET ASSIGNED", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-12-01", "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "527.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "745.00", "finished_well_depth": "745.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPH", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5365715, "utm_easting": 421382, "utm_accuracy_code": "H", "bcgs_id": 9047, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112515, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:12:59Z", "update_user": "WELLS", "update_date": "2017-01-05T22:54:36Z", "well_guid": "cce3a438-4f03-4a14-9c40-a8934fc29874", "identification_plate_number": 50137, "owner_full_name": "SISSY WHITEMARSH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " TIMBERLINE WAY 1 12", "city": "JORDAN RIVER", "legal_lot": "13", "legal_plan": "NOT YET ASSIGNED", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-12-14", "construction_end_date": "2016-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "506.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "24.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPH", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5365707, "utm_easting": 421390, "utm_accuracy_code": "H", "bcgs_id": 9047, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112516, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:34:52Z", "update_user": "WELLS", "update_date": "2017-01-05T22:35:19Z", "well_guid": "e9ae0120-adf1-46fd-9833-4290be8ddc9e", "identification_plate_number": 50139, "owner_full_name": "DORALYNNE MALLAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "TIMBERLINE WAY 1 12", "city": "JORDAN RIVER", "legal_lot": "14", "legal_plan": "NOT YET ASSIGNED", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-12-07", "construction_end_date": "2016-12-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "488.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "16.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "70.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5365600, "utm_easting": 421448, "utm_accuracy_code": "H", "bcgs_id": 9047, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112517, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "WELLS", "update_date": "2017-01-05T22:27:21Z", "well_guid": "c5091ba2-0beb-46cb-bd40-1ecfb0c4fada", "identification_plate_number": 50174, "owner_full_name": "LATIA BARDNAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1841 RADWAY ROAD 1 12", "city": "SHAWNIGAN LAKE", "legal_lot": "1A", "legal_plan": "VIP59397", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "118928242", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-12-14", "construction_end_date": "2016-12-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "458.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "277.00", "finished_well_depth": "277.00", "final_casing_stick_up": "24.000", "bedrock_depth": "131.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388003, "utm_easting": 453786, "utm_accuracy_code": "H", "bcgs_id": 2678, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112518, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "WELLS", "update_date": "2016-12-21T18:55:03Z", "well_guid": "cdbefbcd-2e6f-44c3-8694-3607bc263327", "identification_plate_number": null, "owner_full_name": "FITZGERALD DILLOW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Legal Description: That Parcel or Tract of Land in the vicinity of district Lot 8112, Group 1, New Westminister District containing 2.677 HA, more or less\r\nLand Tenure Number: 2410694", "construction_start_date": "2012-08-13", "construction_end_date": "2012-08-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "50.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490185, "utm_easting": 547743, "utm_accuracy_code": "A", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112519, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T16:11:27Z", "update_user": "WELLS", "update_date": "2017-01-05T21:22:46Z", "well_guid": "cd452004-6a40-4fee-a9c0-4c2892965b18", "identification_plate_number": 42088, "owner_full_name": "GABBIE BLESSED", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "fording mi fording mine road 1 12", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "taylor pit", "construction_start_date": "2016-12-06", "construction_end_date": "2016-12-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "683.00", "finished_well_depth": "683.00", "final_casing_stick_up": "36.000", "bedrock_depth": "673.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "615.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "locking cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "5", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5561077, "utm_easting": 652255, "utm_accuracy_code": "H", "bcgs_id": 1345, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112520, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "ff91bd5a-761c-4501-b1aa-4deed06984ab", "identification_plate_number": 49338, "owner_full_name": "CANDY SADDLETON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3885 River Road South 1 12", "city": "Dewdney", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In Backyard NW Side", "construction_start_date": "2016-11-21", "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head", "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "Topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "37.00", "finished_well_depth": "31.60", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.60", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5443894, "utm_easting": 559417, "utm_accuracy_code": "H", "bcgs_id": 4290, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112521, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "WELLS", "update_date": "2017-01-05T23:55:45Z", "well_guid": "12cb5c71-05fe-47f0-8848-c46ffa115501", "identification_plate_number": 41597, "owner_full_name": "DELILAH HAYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4500 WEST TRANS-CANADA HIGHWAY 1 12", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "MINE SITE", "construction_start_date": "2016-12-07", "construction_end_date": "2016-12-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "217.00", "finished_well_depth": "217.00", "final_casing_stick_up": "3.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5614150, "utm_easting": 674603, "utm_accuracy_code": "H", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112522, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:37Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "5af5abb5-333f-467d-9dab-047fe31f4ee5", "identification_plate_number": 49337, "owner_full_name": "ERTHA BIESTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7248 Lickman Road 1 12", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In front of barn", "construction_start_date": "2016-11-14", "construction_end_date": "2016-11-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "stick up", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "21.00", "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "gravel", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "87.00", "finished_well_depth": "71.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "galv", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442694, "utm_easting": 572643, "utm_accuracy_code": "H", "bcgs_id": 4303, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112523, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "c902a3d7-20d0-42e8-9ca6-691081b37570", "identification_plate_number": 49339, "owner_full_name": "ALFORD HOWLETT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "33775 Aish Ave 1 12", "city": "Abbotsford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "280ft E of dry cow barn", "construction_start_date": "2016-11-24", "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "37.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "aluminium", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5440549, "utm_easting": 552257, "utm_accuracy_code": "H", "bcgs_id": 4251, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112525, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:21Z", "update_user": "WELLS", "update_date": "2017-01-03T20:45:58Z", "well_guid": "11f4c0ce-63df-44fe-9928-1285ea6096aa", "identification_plate_number": 31937, "owner_full_name": "BERENICE IDALE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6095 BRADEN ROAD 1 12", "city": "NOT PROVIDED", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LEFT HAND SIDE OF HOUSE, LEFT HAND SIDE OF DRIVEWAY (CLOSE TO CORRALS)", "construction_start_date": "2016-02-23", "construction_end_date": "2016-02-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.290000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "58.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "336.00", "finished_well_depth": "336.00", "final_casing_stick_up": "24.000", "bedrock_depth": "45.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6190171, "utm_easting": 639769, "utm_accuracy_code": "H", "bcgs_id": 8251, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112526, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "WELLS", "update_date": "2017-01-03T22:14:46Z", "well_guid": "57cd4dba-ce0b-4d41-95b6-09a965b42b76", "identification_plate_number": 31901, "owner_full_name": "JANENE WALLACH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "LOT 3 STORE AVE 1 12", "city": "PRESPATOU", "legal_lot": "13", "legal_plan": "EPP50130", "legal_district_lot": "12518", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "129630819", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-06", "construction_end_date": "2016-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": "2353.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "58.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "236.00", "finished_well_depth": "236.00", "final_casing_stick_up": "24.000", "bedrock_depth": "43.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "67.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6310398, "utm_easting": 617535, "utm_accuracy_code": "H", "bcgs_id": 9528, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112527, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:56Z", "update_user": "WELLS", "update_date": "2017-01-05T17:51:59Z", "well_guid": "912cf168-1686-406d-8f74-5a9622dfc6de", "identification_plate_number": 31935, "owner_full_name": "JOLYNN MUMBEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "26003", "legal_district_lot": "12788", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "104805381", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-11", "construction_end_date": "2016-05-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": "2318.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "50.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "295.00", "finished_well_depth": "295.00", "final_casing_stick_up": "24.000", "bedrock_depth": "55.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.30", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6310417, "utm_easting": 618973, "utm_accuracy_code": "H", "bcgs_id": 8705, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112528, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "67ef1b7e-3bbb-4e37-8091-dd5926c17288", "identification_plate_number": 47480, "owner_full_name": "CORALINE WILCOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 8928 Koehle Rd 1 12", "city": "Caslow", "legal_lot": "1A", "legal_plan": "11328", "legal_district_lot": "1819", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "128504518", "well_location_description": "8928 Koehle Rd Caslow B.C. KD Lot A Pl 11328 DL 819", "construction_start_date": "2016-12-21", "construction_end_date": "2016-12-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": "1783.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "148.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5533207, "utm_easting": 507127, "utm_accuracy_code": "H", "bcgs_id": 10099, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112530, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-04T19:40:42Z", "update_user": "WELLS", "update_date": "2017-01-09T23:33:46Z", "well_guid": "99c0eb3f-5ed9-4b3d-bef0-427f04586468", "identification_plate_number": 30630, "owner_full_name": "ANATOLE RAWLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3201 FRANK STREET 1 12", "city": "TERRACE", "legal_lot": "11", "legal_plan": "BCP43227", "legal_district_lot": "11745", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "128110463", "well_location_description": "BASED ON SKETCH: LOCATED BESIDE FRANK STREET WELLS PUMP HOUSE", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "WELL CASING", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "216.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": "TERRACE COMMUNITY WATER SYSTEM", "water_supply_system_well_name": "FRANK STREET WELL # 3", "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6041244, "utm_easting": 523459, "utm_accuracy_code": "H", "bcgs_id": 8854, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112531, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-04T19:59:54Z", "update_user": "WELLS", "update_date": "2017-04-27T17:52:08Z", "well_guid": "19bb95fd-564b-4a1e-ba4a-41ed5b4380e6", "identification_plate_number": 47813, "owner_full_name": "KIMBERLYN HEIDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8474 BUNCE ROAD 1 12", "city": "PRINCE GEORGE", "legal_lot": "1A", "legal_plan": "16620", "legal_district_lot": "11598", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111738588", "well_location_description": "SKETCH AVAILABLE", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "UNKNOWN", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "265.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5965997, "utm_easting": 511624, "utm_accuracy_code": "A", "bcgs_id": 7016, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112532, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T18:22:04Z", "update_user": "WELLS", "update_date": "2017-01-05T18:26:46Z", "well_guid": "8cf289a8-0137-480b-b229-d11e01ff6309", "identification_plate_number": 31956, "owner_full_name": "BERK HULANCE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-01-28", "construction_end_date": "2015-01-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "30.000", "bedrock_depth": "35.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "82.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6290041, "utm_easting": 579552, "utm_accuracy_code": "H", "bcgs_id": 13445, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112533, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:05Z", "update_user": "WELLS", "update_date": "2017-01-05T19:44:18Z", "well_guid": "6b4cc25f-07a7-43bd-a5d5-a386ebfefb20", "identification_plate_number": 41756, "owner_full_name": "GOLDA WINSER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 624 BRADFORD ROAD 1 12", "city": "BARRIERE", "legal_lot": "11", "legal_plan": "KAP 6092", "legal_district_lot": "11354", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "LAND DISTRICT=KDYD EXCEPT PLAN 26429", "construction_start_date": "2016-07-11", "construction_end_date": "2016-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "288.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5674586, "utm_easting": 700983, "utm_accuracy_code": "J", "bcgs_id": 5647, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112534, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "WELLS", "update_date": "2017-02-03T21:39:24Z", "well_guid": "baae3fbc-c6a1-4ed3-bc1d-17b6d3a1577f", "identification_plate_number": 41749, "owner_full_name": "DAME LEGH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "104543998", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-13", "construction_end_date": "2016-05-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": "840.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "104.00", "finished_well_depth": "104.00", "final_casing_stick_up": "12.000", "bedrock_depth": "104.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5604275, "utm_easting": 686658, "utm_accuracy_code": "J", "bcgs_id": 13550, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112535, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:21Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "6cb981a7-3d45-4126-9786-71848a6836be", "identification_plate_number": 49342, "owner_full_name": "GUALTERIO STERLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 536 Naismith Rd 1 12", "city": "Harrison Hot Springs", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In backyard 27ft diagonal from SW corner and 51ft diagonal from SE corner of house 21ft south.", "construction_start_date": "2016-12-28", "construction_end_date": "2016-12-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "31.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5461560, "utm_easting": 589119, "utm_accuracy_code": "H", "bcgs_id": 4767, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112536, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "WELLS", "update_date": "2017-01-05T20:18:50Z", "well_guid": "9f68229a-a651-43a4-8278-3c0aefd30dc7", "identification_plate_number": 41748, "owner_full_name": "BERRI SPIRIT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1120 CARIBOO HIGHWAY", "city": "CLINTON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-06", "construction_end_date": "2016-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "913.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "53.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5660210, "utm_easting": 598620, "utm_accuracy_code": "H", "bcgs_id": 9651, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112537, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "WELLS", "update_date": "2017-01-05T20:52:03Z", "well_guid": "c07ee7b2-c472-4142-801d-27d85f621f1f", "identification_plate_number": 41711, "owner_full_name": "URSULINE KEENLAYSIDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 1 12", "city": " ", "legal_lot": "12", "legal_plan": "EPS725", "legal_district_lot": "1280", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-13", "construction_end_date": "2015-10-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "276.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5616187, "utm_easting": 705968, "utm_accuracy_code": "H", "bcgs_id": 5223, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112538, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "WELLS", "update_date": "2017-01-05T20:55:45Z", "well_guid": "78a45f5d-0c49-4cac-a858-31435d9e144b", "identification_plate_number": 41788, "owner_full_name": "ADELAIDE MCGEACHY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 1519 HEFFLEY-LOUIS CREEK ROAD 1 12", "city": "HEFFLEY CREEK", "legal_lot": "1", "legal_plan": "H12094", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": "22", "legal_range": "16", "land_district": null, "legal_pid": "114373564", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-31", "construction_end_date": "2016-09-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "291.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "156.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5637610, "utm_easting": 701116, "utm_accuracy_code": "H", "bcgs_id": 5354, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112539, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "WELLS", "update_date": "2017-01-05T22:08:10Z", "well_guid": "275e904b-c7c5-47ce-b356-050527607545", "identification_plate_number": 41787, "owner_full_name": "GIB MACCAWLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 89 VEALE ROAD 1 12", "city": "MERRITT", "legal_lot": "11", "legal_plan": "KAP90990", "legal_district_lot": "13255", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "128248791", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-25", "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "580.00", "finished_well_depth": "576.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5547088, "utm_easting": 657092, "utm_accuracy_code": "H", "bcgs_id": 4947, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112540, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "WELLS", "update_date": "2017-02-03T21:43:32Z", "well_guid": "6e0994a6-af5f-44a9-8016-1454cae5f50b", "identification_plate_number": 41786, "owner_full_name": "TERSINA SAUNPER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 1 12", "city": " ", "legal_lot": "1A", "legal_plan": "KAP52424", "legal_district_lot": "1781", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "118793282", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-23", "construction_end_date": "2016-08-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "320.00", "finished_well_depth": "316.00", "final_casing_stick_up": "18.000", "bedrock_depth": "128.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5600517, "utm_easting": 651547, "utm_accuracy_code": "H", "bcgs_id": 13779, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112541, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:12:21Z", "update_user": "WELLS", "update_date": "2017-03-29T21:57:32Z", "well_guid": "c1f6306c-3b44-41ea-8765-13f6c15d8ad1", "identification_plate_number": null, "owner_full_name": "ZAHARA KLAUER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "16TH 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "113066", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "Land tenure number: 703943", "construction_start_date": "2007-10-04", "construction_end_date": "2007-10-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "22.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "30", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5857224, "utm_easting": 341567, "utm_accuracy_code": "A", "bcgs_id": 13780, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112542, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:16:41Z", "update_user": "WELLS", "update_date": "2017-01-06T13:47:07Z", "well_guid": "49f44e2b-21cd-4339-90b0-66e61d9561fc", "identification_plate_number": 41789, "owner_full_name": "CHRISTINA SWARBRIGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 4110 STEWART ROAD 1 12", "city": "PRITCHARD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-02", "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "195.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5618594, "utm_easting": 300761, "utm_accuracy_code": "H", "bcgs_id": 1990, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112543, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "WELLS", "update_date": "2018-01-16T00:34:42Z", "well_guid": "0ef8a40d-0e07-45ed-a59c-861a27b9f6a6", "identification_plate_number": 13613, "owner_full_name": "CHRISTIN SCOUGAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "16TH 2660 HOLDEN CORSO ROAD 1 12", "city": "NANAIMO", "legal_lot": "12", "legal_plan": "VIP6194", "legal_district_lot": "1", "legal_block": " ", "legal_section": "16", "legal_township": " ", "legal_range": "3", "land_district": "07", "legal_pid": "155914370", "well_location_description": "Except Plan VIP 13243, & EXC PL VIP41241;", "construction_start_date": "2001-02-07", "construction_end_date": "2001-02-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "87.00", "finished_well_depth": "86.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "unknown", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5440349, "utm_easting": 439583, "utm_accuracy_code": "A", "bcgs_id": 4023, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112544, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T13:46:32Z", "update_user": "WELLS", "update_date": "2017-01-06T13:51:18Z", "well_guid": "06b1d7a1-db67-4d42-ac8f-4e73324a61b4", "identification_plate_number": 41795, "owner_full_name": "CARMEL SWARBRIGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH 7760 TUNKWA LAKE ROAD 1 12", "city": "LOGAN LAKE", "legal_lot": "1A", "legal_plan": "KAP52424", "legal_district_lot": "1781", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "118793282", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-20", "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "75.00", "final_casing_stick_up": "18.000", "bedrock_depth": "48.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5600364, "utm_easting": 651804, "utm_accuracy_code": "H", "bcgs_id": 13779, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112545, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "WELLS", "update_date": "2017-02-03T21:52:24Z", "well_guid": "47557699-06fe-48fb-ad47-871843ce7e08", "identification_plate_number": 41761, "owner_full_name": "ANNALIESE PENTYCOST", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16TH BERRY ROAD 1 12", "city": "PRITCHARD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "11", "legal_township": "19", "legal_range": "14", "land_district": "25", "legal_pid": "114326451", "well_location_description": "N 1/2 NW 1/4", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "893.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "460.00", "finished_well_depth": "460.00", "final_casing_stick_up": "12.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609635, "utm_easting": 298453, "utm_accuracy_code": "H", "bcgs_id": 13785, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112546, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:17:14Z", "update_user": "WELLS", "update_date": "2017-01-06T14:23:20Z", "well_guid": "55d28c92-d191-42ec-80eb-552bf8a576f6", "identification_plate_number": 41794, "owner_full_name": "LEMAR SYLVESTER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1 12", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "13250", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "112994774", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-19", "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "396.00", "final_casing_stick_up": "18.000", "bedrock_depth": "82.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5600984, "utm_easting": 654611, "utm_accuracy_code": "H", "bcgs_id": 13786, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112547, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "WELLS", "update_date": "2017-02-03T21:53:32Z", "well_guid": "7e02e2f7-b30b-4f48-be02-87df887901f7", "identification_plate_number": 41793, "owner_full_name": "CALVIN BAUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3289 BRADLEY ROAD 1 12", "city": "FOREST GROVE", "legal_lot": "1", "legal_plan": "H17259", "legal_district_lot": "14841", "legal_block": " ", "legal_section": "23", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "113220527", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-15", "construction_end_date": "2016-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "117.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "7.000", "artesian_flow": "2.00", "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5749183, "utm_easting": 629656, "utm_accuracy_code": "H", "bcgs_id": 10924, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112548, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "WELLS", "update_date": "2017-02-03T21:26:09Z", "well_guid": "44a75955-c3cd-4038-b220-ecbbc143908a", "identification_plate_number": 41792, "owner_full_name": "SHEBA GELLETLY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2790 WEST FRASER ROAD 1", "city": "QUESNEL", "legal_lot": "11", "legal_plan": "PGP38064", "legal_district_lot": "17277", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "118815502", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-13", "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "192.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "123.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5857076, "utm_easting": 535756, "utm_accuracy_code": "H", "bcgs_id": 13582, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112549, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "69ed5197-36a0-4df4-bd55-2fb7178656c3", "identification_plate_number": 32264, "owner_full_name": "SUZI SWALOWE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10251 Gibraltar Mine Road 12", "city": "McLeese Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2016-12-05", "construction_end_date": "2016-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "3596.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "640.00", "finished_well_depth": "640.00", "final_casing_stick_up": "14.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "215.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "steel plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "10", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5817442, "utm_easting": 549341, "utm_accuracy_code": "H", "bcgs_id": 9552, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112550, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "2132b353-26f4-4c09-92d5-8b6ebcb40245", "identification_plate_number": 32268, "owner_full_name": "AVERELL O'DOUGHERTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10251 Gibraltar Mine Road 12", "city": "McLeese Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2016-11-24", "construction_end_date": "2016-12-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "3365.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "18.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "1.00", "well_yield": "180.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "steel plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5817436, "utm_easting": 550525, "utm_accuracy_code": "H", "bcgs_id": 9552, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112551, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "f7fe7efc-cd90-4b73-bad4-b04462049996", "identification_plate_number": 32272, "owner_full_name": "NIKOLAOS MEADEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10251 Gibraltar Mine Road 1", "city": "McLeese Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2016-11-17", "construction_end_date": "2016-11-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": "3515.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "550.00", "finished_well_depth": "550.00", "final_casing_stick_up": "18.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "160.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "steel plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5817604, "utm_easting": 550055, "utm_accuracy_code": "H", "bcgs_id": 9552, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112552, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "WELLS", "update_date": "2017-02-03T21:34:04Z", "well_guid": "1a3668d4-b77a-4818-b707-58776e0bc27f", "identification_plate_number": 41791, "owner_full_name": "SIMMONDS BRIMMICOMBE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2790 WEST FRASER ROAD 1", "city": "QUESNEL", "legal_lot": "11", "legal_plan": "PGP38064", "legal_district_lot": "17277", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "118815502", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-12", "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "296.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5857155, "utm_easting": 535369, "utm_accuracy_code": "J", "bcgs_id": 6428, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112554, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "WELLS", "update_date": "2017-04-28T17:00:01Z", "well_guid": "a8caf439-6a46-466f-a5fc-e9c923dd8306", "identification_plate_number": 50135, "owner_full_name": "DOLORITA FASHION", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "979 LORALEE ROAD 1", "city": "COBBLE HILL", "legal_lot": "125", "legal_plan": "VIP 26681", "legal_district_lot": "1", "legal_block": " ", "legal_section": "13", "legal_township": " ", "legal_range": "8", "land_district": "23", "legal_pid": "102395967", "well_location_description": "NOTHING ENTERED.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2016-09-07", "alteration_end_date": "2016-09-08", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "NOTHING ENTERED.", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "380.00", "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "183.00", "finished_well_depth": "181.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "139.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PITLESS", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5393447, "utm_easting": 458043, "utm_accuracy_code": "H", "bcgs_id": 2730, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112558, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:26Z", "update_user": "WELLS", "update_date": "2017-01-12T23:14:42Z", "well_guid": "1d6fd127-1c27-47f1-ae6e-2cfb71f7bd17", "identification_plate_number": 48609, "owner_full_name": "JENI COLBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Shawnigan Lake", "legal_lot": "115", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-08-08", "construction_end_date": "2016-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": "533.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "30.000", "bedrock_depth": "53.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388993, "utm_easting": 449332, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112559, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "WELLS", "update_date": "2017-01-13T00:42:47Z", "well_guid": "d47ce913-2bcb-4d51-9bd5-4db008052d18", "identification_plate_number": 48658, "owner_full_name": "SHERRY KEMSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Shawnigan Lake", "legal_lot": "116", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-08-02", "construction_end_date": "2016-08-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to well casing", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": "568.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "120.00", "final_casing_stick_up": "24.000", "bedrock_depth": "43.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "51.06", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388958, "utm_easting": 449309, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112560, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "WELLS", "update_date": "2017-02-08T00:01:28Z", "well_guid": "ab2215f0-86fe-4dac-a94d-51e1f1b28d22", "identification_plate_number": 48600, "owner_full_name": "JORI MAISEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Shawnigan Lake", "legal_lot": "117", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-08-04", "construction_end_date": "2016-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": "567.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": "32.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "56.06", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388986, "utm_easting": 449270, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112561, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "WELLS", "update_date": "2017-01-09T19:29:26Z", "well_guid": "03dc96af-fcf5-4a26-8360-a8540d0f76f7", "identification_plate_number": 41759, "owner_full_name": "LURLENE MANNS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5337 EXETER-MCKINNLEY ROAD 1", "city": "100 MILE HOUSE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "15386", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-25", "construction_end_date": "2016-07-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "130.00", "finished_well_depth": "130.00", "final_casing_stick_up": "18.000", "bedrock_depth": "90.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "36.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5728280, "utm_easting": 611818, "utm_accuracy_code": "H", "bcgs_id": 5916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112562, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "WELLS", "update_date": "2017-01-09T19:45:50Z", "well_guid": "53a45abf-6e9c-4b4f-881b-66feec347be1", "identification_plate_number": 41760, "owner_full_name": "HAKIM GURWOOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "333 DAVIS STREET 1", "city": "LILLOOET", "legal_lot": "12", "legal_plan": "11073", "legal_district_lot": "11294", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "109527206", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-26", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "118.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5617512, "utm_easting": 576767, "utm_accuracy_code": "H", "bcgs_id": 5229, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112563, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:34Z", "update_user": "WELLS", "update_date": "2017-02-03T21:50:38Z", "well_guid": "66a4dde0-10b1-48c0-9e9e-f8aabd9c552c", "identification_plate_number": 41755, "owner_full_name": "TIMOTHEA D'EATHE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "150", "legal_plan": "367IR RSBC BC", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NRCAN PIN 1191243; IR#3 RESERVE REMAINDER", "construction_start_date": "2016-06-08", "construction_end_date": "2016-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "CON_GRT", "surface_seal_length": "80.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "0.00", "well_yield": "200.000", "artesian_flow": "0.01", "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5633806, "utm_easting": 613704, "utm_accuracy_code": "H", "bcgs_id": 5307, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112564, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:22Z", "update_user": "WELLS", "update_date": "2017-01-09T21:56:20Z", "well_guid": "2b740cd1-8e45-4755-a99d-480fd5d7704b", "identification_plate_number": 41758, "owner_full_name": "BLONDY TICEHURST", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "171 EXPHP", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "EXP HP 47-A610-13", "construction_start_date": "2016-07-20", "construction_end_date": "2016-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": "911.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5753857, "utm_easting": 568986, "utm_accuracy_code": "H", "bcgs_id": 6108, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112565, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "WELLS", "update_date": "2017-01-09T22:37:55Z", "well_guid": "8c45c759-29d2-4bf7-9ad8-47463bfec898", "identification_plate_number": 41757, "owner_full_name": "DELBERT ENION", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3417 TIMOTHY HIGHLAND ROAD 1", "city": "LAC LA HACHE", "legal_lot": "1C", "legal_plan": "KAP55938", "legal_district_lot": "13647", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-19", "construction_end_date": "2016-07-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": "992.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "120.00", "final_casing_stick_up": "12.000", "bedrock_depth": "100.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "98.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5747488, "utm_easting": 615004, "utm_accuracy_code": "H", "bcgs_id": 13787, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112566, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "WELLS", "update_date": "2017-01-09T22:46:04Z", "well_guid": "c5295dbf-dc92-4b36-a258-b59d0d7fe021", "identification_plate_number": 38128, "owner_full_name": "CINDERELLA AGRON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "15332 NORTH BLUFF ROAD 1", "city": "WHITE ROCK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "101847872", "well_location_description": "NOT PROVIDED", "construction_start_date": "2012-01-30", "construction_end_date": "2012-04-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "38.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "480.00", "finished_well_depth": "480.00", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "355.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5430915, "utm_easting": 514809, "utm_accuracy_code": "A", "bcgs_id": 3780, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112567, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:50:58Z", "update_user": "WELLS", "update_date": "2017-01-09T23:03:59Z", "well_guid": "b2951be8-57c3-41f4-af9c-229bec0e98a3", "identification_plate_number": 728, "owner_full_name": "URSULINE JORCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1444 Oxford Street 1", "city": "White Rock", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "129076242", "well_location_description": " ", "construction_start_date": "1980-01-01", "construction_end_date": "1980-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "336.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "16", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5430617, "utm_easting": 513787, "utm_accuracy_code": "A", "bcgs_id": 3757, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112568, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:21Z", "well_guid": "b8952dac-9386-4860-a9e2-3916ae6380c6", "identification_plate_number": 49341, "owner_full_name": "JENI ROUBEIX", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "41565 Keith Wilson Road 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In front yard of South house", "construction_start_date": "2016-12-20", "construction_end_date": "2016-12-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "88.00", "finished_well_depth": "24.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "aluminium", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5439723, "utm_easting": 567309, "utm_accuracy_code": "H", "bcgs_id": 4291, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112570, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:41:19Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "22c2165f-bf67-4a41-a9ba-a95d94d76dba", "identification_plate_number": 49313, "owner_full_name": "MARENA DENECAMP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "41505 South Sumas Road 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In front yard, SW side.", "construction_start_date": "2016-08-30", "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "stick up", "latitude": "49.230000", "longitude": "-122.500000", "ground_elevation": "20.00", "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "5.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "23.00", "finished_well_depth": "15.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ss cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441030, "utm_easting": 567518, "utm_accuracy_code": "H", "bcgs_id": 4294, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112571, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "WELLS", "update_date": "2017-01-10T07:58:33Z", "well_guid": "7087cbd4-dba1-4517-99ff-2e8ab2151e2d", "identification_plate_number": 38951, "owner_full_name": "ALMETA PIETZKER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "KM 14 FARREL CREEK ROAD 1", "city": "NOT PROVIDED", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-31", "construction_end_date": "2016-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": "BENTONITE", "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "24.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "GALVANIZED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112572, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "WELLS", "update_date": "2017-01-10T06:03:31Z", "well_guid": "052ff0ae-c4df-4462-82d4-eab1222642fa", "identification_plate_number": 34426, "owner_full_name": "ROBINA SCOTTING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HIGHFIELD ROAD 1", "city": "VICTORIA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-08-04", "construction_end_date": "2015-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "825.00", "finished_well_depth": "825.00", "final_casing_stick_up": "18.000", "bedrock_depth": "137.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112573, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "WELLS", "update_date": "2017-01-10T06:28:16Z", "well_guid": "53ea5739-ffdb-4cc4-bb65-8e899c9043da", "identification_plate_number": 34488, "owner_full_name": "EDMON KLUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "875 WHITTAKER ROAD 1", "city": "MALAHAT", "legal_lot": "13", "legal_plan": "LOT A / VIP 88428", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-23", "construction_end_date": "2015-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "18.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13788, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112574, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "WELLS", "update_date": "2017-01-10T07:32:54Z", "well_guid": "aed87b2b-de49-40c8-b430-e816d48dc97d", "identification_plate_number": 34435, "owner_full_name": "ERICA SIMPKINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "DICKSON ROAD 1", "city": "MILL BAY", "legal_lot": "11", "legal_plan": "EPP21139", "legal_district_lot": "172", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "128936523", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-25", "construction_end_date": "2015-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "8 FEET STICK UP", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "350.00", "finished_well_depth": "350.00", "final_casing_stick_up": null, "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED SOLID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112575, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "WELLS", "update_date": "2017-01-10T07:37:06Z", "well_guid": "1102845c-d98d-4740-a6f0-865092f67c90", "identification_plate_number": 34405, "owner_full_name": "NEILL BAMFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "VIP85007", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "123456789", "well_location_description": "PROPOSED SUBDIVISION OF LOT D DISTRICT LOT 132", "construction_start_date": "2016-02-15", "construction_end_date": "2016-02-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND AT TOP OF CASING", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "350.00", "finished_well_depth": "350.00", "final_casing_stick_up": "18.000", "bedrock_depth": "37.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5378879, "utm_easting": 456897, "utm_accuracy_code": "A", "bcgs_id": 2626, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112576, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:51:59Z", "update_user": "WELLS", "update_date": "2017-01-10T07:57:36Z", "well_guid": "052a6191-5d9c-48b2-87ae-9a6496f7fd5f", "identification_plate_number": 34461, "owner_full_name": "BRYNNE PARBROOK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "VIP75948", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "123456789", "well_location_description": "PROPOSED SUBDIVISION OF LOT D DISTRICT LOT 132", "construction_start_date": "2016-02-12", "construction_end_date": "2016-02-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "BAND NEAR TOP OF CASING", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "25.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "375.00", "finished_well_depth": "375.00", "final_casing_stick_up": "18.000", "bedrock_depth": "44.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5378934, "utm_easting": 456750, "utm_accuracy_code": "A", "bcgs_id": 2626, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112577, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "WELLS", "update_date": "2017-02-08T00:29:52Z", "well_guid": "173de2ea-dda4-4fbe-b8e2-3ca49eb8bbdf", "identification_plate_number": 49343, "owner_full_name": "SAYER FERRON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5475 Lougheed Hwy 1", "city": "Agassiz", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In backyard", "construction_start_date": "2016-12-22", "construction_end_date": "2016-12-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "stickup", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "34.00", "finished_well_depth": "32.00", "final_casing_stick_up": "2.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "steel", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455351, "utm_easting": 586633, "utm_accuracy_code": "H", "bcgs_id": 4725, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112578, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:39Z", "update_user": "WELLS", "update_date": "2017-01-10T18:14:03Z", "well_guid": "0e9c6040-140a-4192-8487-5fa2018808dc", "identification_plate_number": 34441, "owner_full_name": "ERSKINE CATTONNET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "EAGLE CLIFF ROAD 1", "city": "BOWEN ISLAND", "legal_lot": "11", "legal_plan": "BCP41244", "legal_district_lot": "11552 GR", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": "2016-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "28.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "444.00", "finished_well_depth": "444.00", "final_casing_stick_up": "24.000", "bedrock_depth": "19.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": "6.00", "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112579, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "WELLS", "update_date": "2017-01-10T18:46:11Z", "well_guid": "90cf52c0-0c82-4d70-a368-3ea652eaa253", "identification_plate_number": 34475, "owner_full_name": "LOELLA JERRARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "EAGLE CLIFF DRIVE 1", "city": "BOWEN ISLAND", "legal_lot": "12", "legal_plan": "BCS3465", "legal_district_lot": "11552 GR", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "127997456", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "46.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "510.00", "finished_well_depth": "510.00", "final_casing_stick_up": "24.000", "bedrock_depth": "35.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "1.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112580, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:04:38Z", "update_user": "WELLS", "update_date": "2017-01-10T19:14:36Z", "well_guid": "c603248c-72ae-4d41-a0e6-3b8f1fe96aa5", "identification_plate_number": 40304, "owner_full_name": "HARDY WASZCZYKOWSKI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "758 BEECHWOOD DRIVE 1", "city": "MAYNE ISLAND", "legal_lot": "1A", "legal_plan": "VIP72321", "legal_district_lot": "1", "legal_block": " ", "legal_section": "2", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "125028502", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": "2016-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "275.00", "final_casing_stick_up": null, "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112581, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "WELLS", "update_date": "2017-01-10T20:02:02Z", "well_guid": "8038cd3c-1827-4bac-a311-a5346048d0aa", "identification_plate_number": 34493, "owner_full_name": "PAIGE ALWOOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "875 WHITTAKER ROAD 1", "city": "MALAHAT", "legal_lot": "1 OF LOT A", "legal_plan": "VIP88428", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-28", "construction_end_date": "2015-10-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "18\" STICK UP", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "440.00", "finished_well_depth": "440.00", "final_casing_stick_up": "18.000", "bedrock_depth": "0.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112582, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "WELLS", "update_date": "2017-01-10T20:05:18Z", "well_guid": "2d60ed52-9060-48b1-8949-0cc13fb6b6df", "identification_plate_number": 38974, "owner_full_name": "DORTHEA RIHANEK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "300 ROAD 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "PLEASE REFER TO: 16-20-87-22-W6", "construction_start_date": "2016-07-19", "construction_end_date": "2016-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "30.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "340.00", "finished_well_depth": "340.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "77.80", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112583, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "WELLS", "update_date": "2017-01-10T20:24:05Z", "well_guid": "7ce9d2d1-76aa-45c1-b3e7-7a7b60d0a8f6", "identification_plate_number": null, "owner_full_name": "BLONDY LAMBERSEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BA 62 I / 94-A-12", "construction_start_date": "2016-07-16", "construction_end_date": "2016-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "320.00", "finished_well_depth": "320.00", "final_casing_stick_up": "18.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "71.33", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112584, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:15Z", "update_user": "WELLS", "update_date": "2017-01-10T20:40:12Z", "well_guid": "f046d60b-02f8-4d8a-9b50-fa78f86bad51", "identification_plate_number": 38973, "owner_full_name": "CARLOTTA BOWERY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "86 ROAD 1", "city": "NOT PROVIDED", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "PLEASE USE 1-24-88-23-W6", "construction_start_date": "2016-07-18", "construction_end_date": "2016-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "30.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "65.00", "finished_well_depth": "58.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "38.12", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112585, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "WELLS", "update_date": "2017-01-10T21:09:04Z", "well_guid": "13d242de-224a-455b-8151-e9d52cc64a53", "identification_plate_number": null, "owner_full_name": "JERRIE BARTRAP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "15", "legal_plan": "VIP81170", "legal_district_lot": "1", "legal_block": " ", "legal_section": "51", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "126701791", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-10-04", "construction_end_date": "2013-10-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "650.00", "finished_well_depth": "650.00", "final_casing_stick_up": "24.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "LPS", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112586, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "WELLS", "update_date": "2017-01-10T22:09:59Z", "well_guid": "0336ce70-a3f3-461b-9a75-d6083a45531d", "identification_plate_number": 34420, "owner_full_name": "CORALIE MATEJKA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "12", "legal_plan": "VIP73535", "legal_district_lot": "1", "legal_block": " ", "legal_section": "91", "legal_township": " ", "legal_range": " ", "land_district": "55", "legal_pid": "123456789", "well_location_description": "WELL # 3 FOR SITE 3", "construction_start_date": "2015-08-25", "construction_end_date": "2015-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "325.00", "finished_well_depth": "325.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112587, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "WELLS", "update_date": "2017-01-10T22:14:28Z", "well_guid": "dafbb9f8-4605-4b37-b571-3a443658a5ef", "identification_plate_number": 34403, "owner_full_name": "PERRY HANSOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "12", "legal_plan": "VIP73535", "legal_district_lot": "1", "legal_block": " ", "legal_section": "91", "legal_township": " ", "legal_range": " ", "land_district": "55", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.25", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "650.00", "finished_well_depth": "650.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112588, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:26:22Z", "update_user": "WELLS", "update_date": "2017-01-10T22:29:49Z", "well_guid": "6677ee2c-e88b-496b-b523-3165fe8fab13", "identification_plate_number": 34456, "owner_full_name": "EMILEE MALEK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "12", "legal_plan": "VIP73535", "legal_district_lot": "1", "legal_block": " ", "legal_section": "91", "legal_township": " ", "legal_range": " ", "land_district": "55", "legal_pid": "123456789", "well_location_description": "WELL # 1 FOR SITE 2", "construction_start_date": null, "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "7ad6e239-502a-473f-9947-fb0962639776", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "275.00", "final_casing_stick_up": "24.000", "bedrock_depth": "15.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112589, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "WELLS", "update_date": "2017-01-11T18:23:28Z", "well_guid": "48ba3388-6a7f-4d53-b7f7-ab9d4da3051a", "identification_plate_number": 41743, "owner_full_name": "MATTHAEUS RUSHFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "188", "legal_plan": "PGP19704", "legal_district_lot": "11227", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-24", "construction_end_date": "2016-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "95.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112590, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "WELLS", "update_date": "2017-01-11T18:26:02Z", "well_guid": "c793a2b8-4e11-4393-8471-1d5556145c52", "identification_plate_number": 41734, "owner_full_name": "NOBE SPRAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "ARD RIGH ROAD 1", "city": "LOGAN LAKE", "legal_lot": "1", "legal_plan": "KAP62389", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-02-29", "construction_end_date": "2016-02-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112591, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "WELLS", "update_date": "2017-01-11T18:44:05Z", "well_guid": "b8328d6b-4552-4ca1-844a-dfce4b4a5577", "identification_plate_number": 41741, "owner_full_name": "KEITH HADKINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "182", "legal_plan": "PGP19704", "legal_district_lot": "11227", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-20", "construction_end_date": "2016-04-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "230.00", "finished_well_depth": "230.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112592, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "WELLS", "update_date": "2017-01-11T19:54:01Z", "well_guid": "5661c913-9a04-482d-9c99-596b2171bcbb", "identification_plate_number": 42213, "owner_full_name": "BOGART SCHULT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WEST QUESNEL PW7 AREA", "construction_start_date": "2015-07-07", "construction_end_date": "2015-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "115.00", "finished_well_depth": null, "final_casing_stick_up": "36.000", "bedrock_depth": "35.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112593, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "WELLS", "update_date": "2017-01-11T19:57:46Z", "well_guid": "6b404ba6-a897-448d-9649-a1dc22f11302", "identification_plate_number": 42226, "owner_full_name": "FAIRLEIGH PURRIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "PW7 AREA", "construction_start_date": "2015-07-09", "construction_end_date": "2015-07-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "129.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112594, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "WELLS", "update_date": "2017-02-03T23:12:47Z", "well_guid": "5c3c1e37-c6cf-4616-8cbc-282c4a403519", "identification_plate_number": 41731, "owner_full_name": "BERNITA SLARK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "KAP62303", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "123456789", "well_location_description": "P1", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "106.00", "finished_well_depth": "106.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112595, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:29:35Z", "update_user": "WELLS", "update_date": "2017-02-03T23:14:02Z", "well_guid": "d9d79272-28ee-4fd0-97bc-b2e21a024561", "identification_plate_number": 42214, "owner_full_name": "ALWYN CICCCITTI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "11", "legal_plan": "14475", "legal_district_lot": "11123", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-08", "construction_end_date": "2015-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "125.00", "finished_well_depth": "115.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112596, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "WELLS", "update_date": "2017-01-11T21:28:24Z", "well_guid": "300ee12c-5f0f-4a2d-826e-a9f236728306", "identification_plate_number": 41733, "owner_full_name": "IZAK GRCIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "KAP61118", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "P2A", "construction_start_date": "2016-03-01", "construction_end_date": "2016-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "105.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112597, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "WELLS", "update_date": "2017-01-11T21:44:51Z", "well_guid": "3e56420b-3699-43ce-a7cb-5b38aa88527c", "identification_plate_number": 41732, "owner_full_name": "DIANN CURRM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "KAP61118", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "P2A", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112598, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "WELLS", "update_date": "2017-02-03T22:58:32Z", "well_guid": "561162c7-93b6-4abc-b331-9d8d0b39f10f", "identification_plate_number": 41721, "owner_full_name": "TWYLA JORCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "KAP6100", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-11-11", "construction_end_date": "2015-11-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "56.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "130.00", "finished_well_depth": "114.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "62.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112599, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "WELLS", "update_date": "2017-01-11T22:51:54Z", "well_guid": "f4436aaa-4c7a-4e9f-8a87-b644524b9b32", "identification_plate_number": 42235, "owner_full_name": "DAVEEN BREED", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1A", "legal_plan": "32161", "legal_district_lot": "151 & 77", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 32161 EXCEPT PAN 32472", "construction_start_date": "2015-07-23", "construction_end_date": "2015-07-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "DRILLER", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": null, "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112600, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "WELLS", "update_date": "2017-02-03T23:02:04Z", "well_guid": "a3b35009-aaec-4a63-88eb-f853dc0148df", "identification_plate_number": 42230, "owner_full_name": "SOPHI DRIES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1D", "legal_plan": "14414", "legal_district_lot": "15014", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 14414 EXCEPT PLAN 19897", "construction_start_date": "2015-07-13", "construction_end_date": "2015-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112601, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "WELLS", "update_date": "2017-02-03T23:03:46Z", "well_guid": "3755e680-d92e-4353-8c32-25eb80c2f789", "identification_plate_number": 42231, "owner_full_name": "VALERIE DURRANS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1PARCEL B", "legal_plan": "B6099", "legal_district_lot": "11226", "legal_block": "11", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 2798 EXCEPT PLAN 8578", "construction_start_date": "2015-07-14", "construction_end_date": "2015-07-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "155.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112602, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "WELLS", "update_date": "2017-02-03T23:09:28Z", "well_guid": "2f457067-ddcf-4330-915f-a7cb69cb9bd3", "identification_plate_number": 42232, "owner_full_name": "SIG JANKOVIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "2798", "legal_district_lot": "11226", "legal_block": "7", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-15", "construction_end_date": "2015-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "95.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112603, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "WELLS", "update_date": "2017-02-03T23:11:24Z", "well_guid": "527e874b-c993-46aa-94c0-a8db82b34182", "identification_plate_number": 42234, "owner_full_name": "INGELBERT FLEWAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "CARIBOO HIGHWAY NO 97 13TU1233", "construction_start_date": "2015-07-20", "construction_end_date": "2015-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "220.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112604, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "WELLS", "update_date": "2017-02-03T22:52:46Z", "well_guid": "e7b79722-71b9-4331-bc40-8b93a1f6d84f", "identification_plate_number": 42239, "owner_full_name": "MARCELIA DEBLASI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "PGP36834", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "PARCEL 1, LOTS 710 + 6682 + 6683", "construction_start_date": "2015-07-21", "construction_end_date": "2015-07-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "220.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112605, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "WELLS", "update_date": "2017-02-03T22:54:08Z", "well_guid": "9093a5b8-6f49-4c64-b9b5-dc7eb489ab26", "identification_plate_number": 42240, "owner_full_name": "DEBOR SAMMARS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1PARCEL A", "legal_plan": "34959", "legal_district_lot": "151, 77 & 710", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 34959 EXCEPT PGP41141", "construction_start_date": "2015-07-22", "construction_end_date": "2015-07-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "115.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112606, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "WELLS", "update_date": "2017-02-03T22:55:43Z", "well_guid": "7822ef50-9275-4040-846f-e97210a9c028", "identification_plate_number": 42229, "owner_full_name": "MATTHAEUS MALENFANT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "23852", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "ROAD RIGHT OF WAY", "construction_start_date": "2015-07-11", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "276.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112607, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "WELLS", "update_date": "2017-02-07T23:51:29Z", "well_guid": "40823b71-6857-491e-ada3-346edfa2f2e0", "identification_plate_number": 48604, "owner_full_name": "FIANN CHAFFIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Shawnigan Lake", "legal_lot": "118", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-08-03", "construction_end_date": "2016-08-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "591.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "93.50", "finished_well_depth": "92.00", "final_casing_stick_up": "24.000", "bedrock_depth": "93.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "62.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389032, "utm_easting": 449204, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112608, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "WELLS", "update_date": "2017-01-12T20:13:12Z", "well_guid": "ec56a9a8-c176-4169-bd55-92d8008a831d", "identification_plate_number": null, "owner_full_name": "KARY BARBOSA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "176", "legal_plan": "77931 CLSR", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 176 N'KWALA INDUSTRIAL PARK, OKANAGAN 1R1", "construction_start_date": "2016-03-21", "construction_end_date": "2016-03-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-21", "decommission_end_date": "2016-03-21", "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NO WELL TAG ATTACHED", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "110.00", "finished_well_depth": "110.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "10", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": "NOT PROVIDED", "decommission_method": null, "sealant_material": "NOT PROVIDED", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112609, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "83e03adb-b08f-4dae-a5e2-210830210730", "identification_plate_number": 48657, "owner_full_name": "MYRON ALBION", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Shawnigan Lake", "legal_lot": "119", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-07-28", "construction_end_date": "2016-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "568.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "78.00", "finished_well_depth": "78.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389062, "utm_easting": 449025, "utm_accuracy_code": "H", "bcgs_id": 9916, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112610, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "a1612385-8a1f-4775-9101-970287d91f39", "identification_plate_number": 43603, "owner_full_name": "LINNET HEGGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Shawnigan Lake", "legal_lot": "14", "legal_plan": "2210", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", "construction_start_date": "2016-10-17", "construction_end_date": "2016-10-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "577.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "24.000", "bedrock_depth": "55.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "71.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389250, "utm_easting": 448386, "utm_accuracy_code": "H", "bcgs_id": 2680, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112611, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:50:46Z", "update_user": "WELLS", "update_date": "2017-01-12T20:10:38Z", "well_guid": "5d9d8410-4ba4-4691-9112-9b43c664c196", "identification_plate_number": null, "owner_full_name": "JAYNE MCGINTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-13", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-05-13", "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "120.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": null, "decommission_reason": "NO WATER", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NATURAL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112612, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "WELLS", "update_date": "2017-01-13T00:44:14Z", "well_guid": "05f0ed62-7af6-4814-a0da-97e99e6f73d2", "identification_plate_number": 43621, "owner_full_name": "QUENTIN GURWOOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5445 Maclean Road 1", "city": "Hornby Island", "legal_lot": "12", "legal_plan": "32518", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": " ", "legal_range": " ", "land_district": "32", "legal_pid": "100157431", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-03", "construction_end_date": "2016-11-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": "67.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "145.00", "finished_well_depth": "145.00", "final_casing_stick_up": "24.000", "bedrock_depth": "41.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5488517, "utm_easting": 381468, "utm_accuracy_code": "H", "bcgs_id": 3447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112613, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "WELLS", "update_date": "2017-01-13T00:36:58Z", "well_guid": "656570f8-cd0c-419d-8dce-104cfd7790b5", "identification_plate_number": 43613, "owner_full_name": "JEREMIAS SEROT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6050 St. John's Point Road 1", "city": "Hornby Island", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-03", "construction_end_date": "2016-11-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": "96.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "125.00", "finished_well_depth": "125.00", "final_casing_stick_up": "16.000", "bedrock_depth": "16.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5487782, "utm_easting": 381741, "utm_accuracy_code": "H", "bcgs_id": 3445, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112614, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:30Z", "update_user": "WELLS", "update_date": "2017-02-03T22:57:27Z", "well_guid": "5a471b88-a462-4205-a69c-2c0926a1f1ce", "identification_plate_number": null, "owner_full_name": "HANNY JILLITT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-20", "construction_end_date": "2015-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "44.00", "finished_well_depth": "94.00", "final_casing_stick_up": "12.000", "bedrock_depth": "90.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112615, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "WELLS", "update_date": "2017-01-13T19:07:20Z", "well_guid": "bdc71c2f-2fd8-4f5c-8441-8b7f804f2f21", "identification_plate_number": null, "owner_full_name": "MARCELIA FELTEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "WESTWOLD STATION ROAD 1", "city": "WESTWOLD", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTHWEST CORNER OF FIELD, ACROSS ROAD FROM MINISTRY OF ENVIRONMENT MONITORING WELL", "construction_start_date": "2015-06-15", "construction_end_date": "2015-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-06-23", "decommission_end_date": "2016-06-25", "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": "2033.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "245.00", "final_casing_stick_up": "26.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "33.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5595006, "utm_easting": 304345, "utm_accuracy_code": "H", "bcgs_id": 1769, "decommission_reason": "NOT SUFFICIENT WATER", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "CUTTINGS", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112616, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "WELLS", "update_date": "2017-01-13T19:20:43Z", "well_guid": "7996b039-8986-44ee-9ca7-628218653abf", "identification_plate_number": null, "owner_full_name": "HANSON WILFING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8525 SILVER STAR ROAD 1", "city": "VERNON", "legal_lot": "14", "legal_plan": "KAP75314", "legal_district_lot": "12242", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": "2003-10-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "d954cd4b-e62f-4851-b0d4-a2b4387fa077", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "112.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": "5.50", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5577317, "utm_easting": 347075, "utm_accuracy_code": "H", "bcgs_id": 9024, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112617, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T19:32:44Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "c6f52ba3-6846-449c-9eac-ac4db83bcb45", "identification_plate_number": 47428, "owner_full_name": "DANNIE MATTEUCCI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Fruitvale", "legal_lot": "1", "legal_plan": "1258", "legal_district_lot": "11236", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "113468332", "well_location_description": "Plan 1258 DL 1236 KD", "construction_start_date": "2016-07-11", "construction_end_date": "2016-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": "2024.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "296.00", "finished_well_depth": "296.00", "final_casing_stick_up": "16.000", "bedrock_depth": "50.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "62.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5442211, "utm_easting": 462403, "utm_accuracy_code": "H", "bcgs_id": 762, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112619, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T21:03:43Z", "update_user": "WELLS", "update_date": "2017-12-06T18:22:41Z", "well_guid": "a97bdde8-b2cd-4f68-8007-82ebab79e3cc", "identification_plate_number": null, "owner_full_name": "ROLAND MICK RUFFY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "REMEDIATE", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1229 LAKE ROAD", "city": "Lindell Beach", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2002-12-17", "construction_end_date": "2002-12-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "210.00", "finished_well_depth": "210.00", "final_casing_stick_up": "1.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "welded", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5430643, "utm_easting": 569575, "utm_accuracy_code": "H", "bcgs_id": 3978, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112620, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T22:17:32Z", "update_user": "WELLS", "update_date": "2017-02-08T00:48:17Z", "well_guid": "cc799267-3cd0-455c-a84e-f71aae7a11ab", "identification_plate_number": 43633, "owner_full_name": "JENA ROLAND TEMPLEMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Ellis ROAD 1", "city": "Galiano Island", "legal_lot": "14", "legal_plan": "1974", "legal_district_lot": "15 & 6", "legal_block": "3", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "106620892", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-11-19", "construction_end_date": "2016-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "250.00", "final_casing_stick_up": "12.000", "bedrock_depth": "9.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5416519, "utm_easting": 474662, "utm_accuracy_code": "H", "bcgs_id": 3105, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112621, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "WELLS", "update_date": "2018-01-18T19:43:54Z", "well_guid": "43a7ba1c-3536-4e32-bba1-a652189bfd7f", "identification_plate_number": 42805, "owner_full_name": "GARY TABBY HAYSHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9130 HURLEY ROAD 1", "city": "PEMBERTON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WEST SIDE OF FIELD, EAST OF HOUSE", "construction_start_date": "2017-01-10", "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "3.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "135.00", "final_casing_stick_up": "54.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "600.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5593309, "utm_easting": 502353, "utm_accuracy_code": "H", "bcgs_id": 13796, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112622, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "WELLS", "update_date": "2017-05-03T23:19:49Z", "well_guid": "7007ccf4-210d-4df0-b8ff-e628ee38dd62", "identification_plate_number": 42808, "owner_full_name": "GARY ROBERS THOMANN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "IR#4 MCCARTNEYS FLAT 1", "city": "LILLOOET", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-12-21", "construction_end_date": "2017-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "356.00", "finished_well_depth": "356.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "210.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5611947, "utm_easting": 578519, "utm_accuracy_code": "H", "bcgs_id": 5138, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112623, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "WELLS", "update_date": "2017-05-03T21:48:45Z", "well_guid": "8a7beed0-0bcb-4ad1-8e8d-956e257ae683", "identification_plate_number": 42848, "owner_full_name": "GARY FLORELLA FULLERTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "IR#1 ANAHIM'S FLAT PILGRIM", "city": "WILLIAMS LAKE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-12-13", "construction_end_date": "2016-12-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "OTHER", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "318.00", "finished_well_depth": "318.00", "final_casing_stick_up": "30.000", "bedrock_depth": "65.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "200.00", "well_yield": "70.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5762734, "utm_easting": 489084, "utm_accuracy_code": "H", "bcgs_id": 13819, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112624, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "WELLS", "update_date": "2017-05-03T23:18:03Z", "well_guid": "f447d594-7e7d-42bc-94a5-d87faaae3331", "identification_plate_number": 42645, "owner_full_name": "GARY ELIANORE BEXON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6850 COX ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "GRAVEL PIT - MAINLAND SAND AND GRAVEL", "construction_start_date": "2017-01-05", "construction_end_date": "2017-01-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "277.00", "finished_well_depth": "277.00", "final_casing_stick_up": "24.000", "bedrock_depth": "70.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442062, "utm_easting": 559562, "utm_accuracy_code": "H", "bcgs_id": 9558, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112625, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "WELLS", "update_date": "2017-02-03T23:40:28Z", "well_guid": "91962615-66b9-4343-a994-c8b036046ef0", "identification_plate_number": 48505, "owner_full_name": "GARY GENNIFER DAWIDOWSKY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "12-36-87-26-W6", "construction_start_date": "2016-07-16", "construction_end_date": null, "alteration_start_date": "2016-08-12", "alteration_end_date": "2016-08-13", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "30.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "170.00", "finished_well_depth": "170.00", "final_casing_stick_up": "28.000", "bedrock_depth": "24.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.90", "well_yield": "200.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STANDARD / ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6272640, "utm_easting": 589809, "utm_accuracy_code": "H", "bcgs_id": 13789, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112627, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "WELLS", "update_date": "2017-12-06T18:06:42Z", "well_guid": "4c4ea17d-3ad1-472d-b857-ebf80977b1b6", "identification_plate_number": null, "owner_full_name": "GARY DI BAMFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "525 Maple Falls Road 1", "city": "Columbia Valley", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2004-10-26", "construction_end_date": "2004-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "1.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "welded", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5429339, "utm_easting": 568599, "utm_accuracy_code": "H", "bcgs_id": 3976, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112628, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "WELLS", "update_date": "2017-02-08T00:22:01Z", "well_guid": "dd11c23e-889b-4a30-a7f0-a99a3c7b6205", "identification_plate_number": 28595, "owner_full_name": "GARY MARYANNA BRUGMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "35380 HARTLEY ROAD 1", "city": "MISSION", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "55997", "well_location_description": "UNKNOWN", "construction_start_date": "2016-08-02", "construction_end_date": "2016-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "215.00", "final_casing_stick_up": "2.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455389, "utm_easting": 554890, "utm_accuracy_code": "H", "bcgs_id": 4442, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112629, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:38:50Z", "update_user": "WELLS", "update_date": "2017-10-12T18:44:23Z", "well_guid": "523d0638-24bb-4fcc-b841-97eec5358d33", "identification_plate_number": 33639, "owner_full_name": "GARY BRYNNE BELVERSTONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "21285 ALLARD CRESCENT 1", "city": "LANGLEY", "legal_lot": "15", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111927470", "well_location_description": "WELL LOCATED BETWEEN HOUSE AND SHED.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2009-12-10", "alteration_end_date": "2009-12-10", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "WELL CASING", "latitude": "49.220000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "2.33", "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": "NATIVE", "backfill_depth": "0.33", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": "METRO VANCOUVER PARKS", "water_supply_system_well_name": "METRO VANCOUVER PARKS #11", "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449969, "utm_easting": 526806, "utm_accuracy_code": "H", "bcgs_id": 4372, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112630, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:55:26Z", "update_user": "WELLS", "update_date": "2017-10-12T18:46:51Z", "well_guid": "82659b2e-abf0-43ed-8927-67ce7df6d4b8", "identification_plate_number": null, "owner_full_name": "GARY BAB WEBEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "3300 DUCK RANGE ROAD 1", "city": "PRITCHARD", "legal_lot": "1A", "legal_plan": "21043", "legal_district_lot": "1", "legal_block": " ", "legal_section": "14", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "107646780", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2013-10-30", "alteration_end_date": "2013-11-01", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "UNKNOWN", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "2646.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "340.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "110.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5611291, "utm_easting": 299659, "utm_accuracy_code": "J", "bcgs_id": 1969, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112631, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:12:35Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "81f08473-908a-4161-86c6-c4d407d24b4f", "identification_plate_number": 40191, "owner_full_name": "GARY RAVID MARGINSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "12300 bronn creek east 1", "city": "grandforks", "legal_lot": "1a", "legal_plan": "kap55440", "legal_district_lot": "13292", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property in field", "construction_start_date": "2016-12-13", "construction_end_date": "2016-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "135.00", "final_casing_stick_up": "60.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5449830, "utm_easting": 395369, "utm_accuracy_code": "H", "bcgs_id": 11346, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112632, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:21:05Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "d48af21c-cd30-4890-a3d1-3cbda100fb92", "identification_plate_number": 40131, "owner_full_name": "GARY LAINA ALEJANDRE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 highway 3/95", "city": "yahk bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property", "construction_start_date": "2016-07-27", "construction_end_date": "2016-07-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "2933.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "156.00", "finished_well_depth": "156.00", "final_casing_stick_up": "56.000", "bedrock_depth": "22.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5436954, "utm_easting": 567169, "utm_accuracy_code": "H", "bcgs_id": 745, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112633, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:27:19Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "85c03da1-0bda-45ea-b6cf-b81533fe95f8", "identification_plate_number": 40185, "owner_full_name": "GARY ENOS HAYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9246 hwy 3/95 1", "city": "yahk bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property", "construction_start_date": "2016-07-27", "construction_end_date": "2016-07-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "16.000", "bedrock_depth": "15.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5436804, "utm_easting": 567131, "utm_accuracy_code": "H", "bcgs_id": 745, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112634, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:35:15Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "50ab1b86-7a99-466f-8322-285903f14db4", "identification_plate_number": 40132, "owner_full_name": "GARY MARLON COLBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9246 hwy 3/95 1", "city": "yahk bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property", "construction_start_date": "2016-07-26", "construction_end_date": "2016-07-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.280000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5438214, "utm_easting": 567357, "utm_accuracy_code": "H", "bcgs_id": 746, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112635, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:42:35Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "30307109-7e5d-41e4-8916-920a6c843f11", "identification_plate_number": 35569, "owner_full_name": "GARY AIMEE PORTMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9246 hwy 3/95 1", "city": "yahk bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property ", "construction_start_date": "2008-06-13", "construction_end_date": "2008-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5438248, "utm_easting": 567339, "utm_accuracy_code": "H", "bcgs_id": 746, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112636, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T22:43:52Z", "update_user": "WELLS", "update_date": "2017-02-08T00:03:46Z", "well_guid": "97da81d6-fe6b-4936-95c7-24be49b20ca5", "identification_plate_number": 47582, "owner_full_name": "GARY LEW DAKHOV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "35130 Beaton Road 1", "city": "Abbotsford", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside pump house behind", "construction_start_date": "2016-04-14", "construction_end_date": "2016-04-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "4.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "22.00", "finished_well_depth": "19.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "1.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "2\" galv cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5440194, "utm_easting": 554692, "utm_accuracy_code": "H", "bcgs_id": 4250, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112638, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T15:40:18Z", "update_user": "WELLS", "update_date": "2017-02-07T23:49:28Z", "well_guid": "d9153da8-44b2-4201-ab85-7565f22a06db", "identification_plate_number": 40150, "owner_full_name": "GARY HILLY CRONK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "white tail lake road 1", "city": "canalflats", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on sub div lot 10", "construction_start_date": "2016-10-20", "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "54.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562349, "utm_easting": 569869, "utm_accuracy_code": "H", "bcgs_id": 13795, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112639, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:00:45Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "dc6c7c7f-3187-46d4-912b-50cf38ee9f97", "identification_plate_number": 40149, "owner_full_name": "GARY RODI STEART", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " white tail lake road 1", "city": "canalflats bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 11 on sub div", "construction_start_date": "2016-10-19", "construction_end_date": "2016-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "54.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562415, "utm_easting": 569841, "utm_accuracy_code": "H", "bcgs_id": 13795, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112640, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:36:16Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "cb6dd84d-04f9-4629-9f7f-768cb039b9f3", "identification_plate_number": 40148, "owner_full_name": "GARY HEDA THORNEYWORK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " white tail lake road 1", "city": "canalflats bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 12 on sub div", "construction_start_date": "2016-10-17", "construction_end_date": "2016-10-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562426, "utm_easting": 569858, "utm_accuracy_code": "H", "bcgs_id": 13795, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112641, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:43:53Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "304b7e6a-2b1f-4c42-abf5-82f9c7230172", "identification_plate_number": 40147, "owner_full_name": "GARY LINNELL DRIES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " white tail lake road 1", "city": "canalflats bc", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 13 of sub div", "construction_start_date": "2016-10-17", "construction_end_date": "2016-10-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "96.00", "finished_well_depth": "94.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "24.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562492, "utm_easting": 569846, "utm_accuracy_code": "H", "bcgs_id": 13795, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112642, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:57:35Z", "update_user": "WELLS", "update_date": "2017-02-07T23:47:03Z", "well_guid": "cf4b8807-71e6-405f-8481-c8f1247bbe13", "identification_plate_number": 40146, "owner_full_name": "GARY ALBERTINA COGGINGS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "white tail lake road 1", "city": "canalflats", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 14 sub div", "construction_start_date": "2016-10-16", "construction_end_date": "2016-10-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "76.00", "finished_well_depth": "74.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562521, "utm_easting": 569842, "utm_accuracy_code": "H", "bcgs_id": 13795, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112644, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "WELLS", "update_date": "2017-02-07T22:02:48Z", "well_guid": "1a06fb24-1e8a-4bb9-9cc1-f275303e00df", "identification_plate_number": 50146, "owner_full_name": "GARY FLEUR HEMSTEAD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "690 HOLLING ROAD 1", "city": "MILL BAY", "legal_lot": "11", "legal_plan": "VIP 14239", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": "9", "land_district": "53", "legal_pid": "104374185", "well_location_description": "NOTHING ENTERED ON THE REPORT", "construction_start_date": "2017-01-12", "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": "33.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "221.00", "finished_well_depth": "221.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPH", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5389675, "utm_easting": 459411, "utm_accuracy_code": "H", "bcgs_id": 2722, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112645, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "WELLS", "update_date": "2017-02-07T21:59:55Z", "well_guid": "8ca4868f-c841-4fb0-a117-4740f4c56854", "identification_plate_number": 50147, "owner_full_name": "GARY AGNELLA DILUCIA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "846 FOSKETT ROAD 1", "city": "COMOX", "legal_lot": "111", "legal_plan": "57820", "legal_district_lot": "189G", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "118540490", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-01-03", "construction_end_date": "2017-01-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "30.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "washed gravel", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "354.00", "finished_well_depth": "343.00", "final_casing_stick_up": "18.000", "bedrock_depth": "354.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "28.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5506094, "utm_easting": 364747, "utm_accuracy_code": "H", "bcgs_id": 3500, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112646, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "WELLS", "update_date": "2017-02-07T21:55:15Z", "well_guid": "5e74f36c-c96d-468c-ba09-3c9e85461b53", "identification_plate_number": 43620, "owner_full_name": "GARY KATHLEEN TAMLETT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1542 Heriot Bay Road 1", "city": "Quadra Island", "legal_lot": "14", "legal_plan": "38940", "legal_district_lot": "124", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "100131598", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-01-10", "construction_end_date": "2017-01-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "64.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "81.00", "finished_well_depth": "77.08", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "58.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5552331, "utm_easting": 342189, "utm_accuracy_code": "H", "bcgs_id": 5497, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112647, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T22:23:38Z", "update_user": "WELLS", "update_date": "2017-03-09T17:56:14Z", "well_guid": "f43d5e90-6c5f-4dc8-bae0-f93de1f3dc18", "identification_plate_number": null, "owner_full_name": "GARY JEHANNA KEMSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "9508 HIGHWAY 97C 1", "city": "MERRITT", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "113049291", "well_location_description": "south 1/2 DL 3982", "construction_start_date": "1996-09-29", "construction_end_date": "1996-09-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "16.40", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "59", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5578215, "utm_easting": 656230, "utm_accuracy_code": "A", "bcgs_id": 5056, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112648, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:13:44Z", "update_user": "WELLS", "update_date": "2017-01-27T22:39:10Z", "well_guid": "eff15ffc-89a9-4923-b7d7-fe8f0c61039b", "identification_plate_number": 32651, "owner_full_name": "GARY GIULIA SALLY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "789 HEPBURN ROAD 1", "city": "CHASE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2013-05-14", "alteration_end_date": "2013-05-15", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.220000", "longitude": "-122.510000", "ground_elevation": "2025.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "460.00", "finished_well_depth": "460.00", "final_casing_stick_up": null, "bedrock_depth": "50.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "130.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5630334, "utm_easting": 313733, "utm_accuracy_code": "H", "bcgs_id": 2098, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112649, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:27:24Z", "update_user": "WELLS", "update_date": "2017-01-27T22:39:57Z", "well_guid": "71f64911-eddb-4a9f-8f81-8ea725bc5a93", "identification_plate_number": 39209, "owner_full_name": "GARY DYNA WORCS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "442 6 MILE CREEK ROAD 1", "city": "VERNON", "legal_lot": "12", "legal_plan": "28829", "legal_district_lot": "1570", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2016-01-15", "alteration_end_date": "2016-01-19", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "2028.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "540.00", "finished_well_depth": "540.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "6.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5575210, "utm_easting": 325486, "utm_accuracy_code": "H", "bcgs_id": 13790, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112650, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:42:54Z", "update_user": "WELLS", "update_date": "2017-01-27T22:40:10Z", "well_guid": "ca842257-9cce-4133-b79c-93152603f26b", "identification_plate_number": null, "owner_full_name": "GARY IRV LOCKIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "245 TRINITY VALLEY ROAD 1", "city": "LUMBY", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2012-07-11", "alteration_end_date": "2012-07-11", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "2148.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": "3.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5573609, "utm_easting": 361321, "utm_accuracy_code": "H", "bcgs_id": 1657, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112651, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:58:07Z", "update_user": "WELLS", "update_date": "2017-01-27T22:40:28Z", "well_guid": "051fcea8-6da4-4e4b-be9f-7ff7eafecab0", "identification_plate_number": null, "owner_full_name": "GARY DEBRA D'EATHE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "CROZIER ROAD 1", "city": "ARMSTRONG", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2013-06-25", "alteration_end_date": "2013-07-10", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "1343.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "185.00", "finished_well_depth": "185.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "200.000", "artesian_flow": "150.00", "artesian_pressure": "15.00", "well_cap_type": "WELDED FLANGE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5586173, "utm_easting": 342344, "utm_accuracy_code": "H", "bcgs_id": 1807, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112652, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T20:09:07Z", "update_user": "WELLS", "update_date": "2017-01-27T22:40:42Z", "well_guid": "d59c325a-2855-4bfb-83c3-17975183d44e", "identification_plate_number": 39448, "owner_full_name": "GARY FIANN ABRAMZON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "28 NAYLOR ROAD 1", "city": "SALMON ARM", "legal_lot": "11", "legal_plan": "29943", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "104127242", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2014-09-15", "alteration_end_date": "2014-09-17", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "1926.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "1.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5610944, "utm_easting": 346267, "utm_accuracy_code": "H", "bcgs_id": 2047, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112653, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T20:24:55Z", "update_user": "WELLS", "update_date": "2017-01-27T22:41:10Z", "well_guid": "df3a5aab-3207-432c-beff-044e877277fc", "identification_plate_number": 39433, "owner_full_name": "GARY PENNIE PERSCHKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "123 18074 HEREFORD ROAD", "city": "LAKE COUNTRY", "legal_lot": "117", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": "22", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "106326820", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2014-07-08", "alteration_end_date": "2014-07-11", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": "2445.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "780.00", "finished_well_depth": "780.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "461.00", "well_yield": "0.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5557534, "utm_easting": 327244, "utm_accuracy_code": "H", "bcgs_id": 1535, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112654, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:10Z", "update_user": "WELLS", "update_date": "2017-02-07T21:57:38Z", "well_guid": "3ae9887f-1420-482d-8e83-a6521cb3f2de", "identification_plate_number": 44211, "owner_full_name": "GARY LIN D'ENRICO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123", "city": "Invermere", "legal_lot": "17", "legal_plan": "EPP 43962", "legal_district_lot": "14596", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "129712122", "well_location_description": " ", "construction_start_date": "2016-10-18", "construction_end_date": "2016-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "3060.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "15.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "395.00", "finished_well_depth": "395.00", "final_casing_stick_up": "12.000", "bedrock_depth": "110.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "240.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5591995, "utm_easting": 568652, "utm_accuracy_code": "H", "bcgs_id": 1428, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112655, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:17:12Z", "update_user": "WELLS", "update_date": "2017-10-12T18:49:28Z", "well_guid": "b6d44fd6-5ad8-4c09-8f18-ad3d31c1230f", "identification_plate_number": 36934, "owner_full_name": "GARY ALFORD MACGUFFOG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "123 ILSE PIERRE", "city": "PRINCE GEORGE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2014-01-18", "alteration_end_date": "2014-01-20", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6be40dfe-1c42-4c2c-a3df-afe82809b4fc", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": "2138.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "71.00", "finished_well_depth": "71.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "44.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5978824, "utm_easting": 484108, "utm_accuracy_code": "H", "bcgs_id": 7127, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112656, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "WELLS", "update_date": "2017-10-12T18:48:38Z", "well_guid": "1539585f-ddbe-4b9b-b91f-83510e2a3fc8", "identification_plate_number": 41629, "owner_full_name": "GARY LYNNELLE KINAHAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "123 WESTWOOD", "city": "DUNCAN", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": " ", "legal_range": "8", "land_district": "50", "legal_pid": "123456789", "well_location_description": "PROPOSED LOT 8, PLAN EPP53285; WITHIN PROPERTY BOUNDARY", "construction_start_date": "2015-05-29", "construction_end_date": "2015-06-01", "alteration_start_date": "2015-06-22", "alteration_end_date": "2015-06-23", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "STRAPPED TO CASING", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "250.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "39.000", "bedrock_depth": "54.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPH", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5404508, "utm_easting": 440085, "utm_accuracy_code": "H", "bcgs_id": 9636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112657, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:32:57Z", "update_user": "WELLS", "update_date": "2017-10-12T19:06:14Z", "well_guid": "994082cd-3d17-4a6a-a3e6-2ec37118fe52", "identification_plate_number": null, "owner_full_name": "GARY TED TOPLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "16TH 16988 30A AVENUE 1", "city": "SURREY", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTHWEST CORNER OF BUILDING", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2eca7ffc-b10e-4aa2-a366-1677ea8b8ed1", "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "195.00", "finished_well_depth": "195.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5433744, "utm_easting": 518112, "utm_accuracy_code": "H", "bcgs_id": 3805, "decommission_reason": "NO LONGER REQUIRED", "decommission_method": null, "sealant_material": "CEMENT/BENTONITE", "backfill_material": "NOT PROVIDED", "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112658, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:49:28Z", "update_user": "WELLS", "update_date": "2017-01-27T22:44:04Z", "well_guid": "35f47180-567b-4f76-b7cb-0279936eaffb", "identification_plate_number": null, "owner_full_name": "GARY ROI MCCONNAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-01", "decommission_end_date": "2016-03-01", "drilling_company": "2eca7ffc-b10e-4aa2-a366-1677ea8b8ed1", "well_identification_plate_attached": "NO WELL TAG", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": "240.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "145.00", "finished_well_depth": "145.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT APPLICABLE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431451, "utm_easting": 527698, "utm_accuracy_code": "H", "bcgs_id": 3801, "decommission_reason": "NEW WELL DRILLED", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112659, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:19:53Z", "update_user": "WELLS", "update_date": "2017-02-11T20:47:24Z", "well_guid": "cbcfc0ed-199d-4f2c-8e94-f1539f5aaa8d", "identification_plate_number": null, "owner_full_name": "GARY KAILEY RABLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "DW 98-13 MUIRFIELD ROAD (CITY ROADWAY) 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": "KAP47404", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-28", "decommission_end_date": "2016-03-28", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "137.40", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5613433, "utm_easting": 685752, "utm_accuracy_code": "H", "bcgs_id": 9147, "decommission_reason": "NO LONGER PRODUCING", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "PEA GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112660, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:37:04Z", "update_user": "WELLS", "update_date": "2017-01-27T22:43:32Z", "well_guid": "7def95b3-dfdf-4bf8-a9c2-32ba6f161554", "identification_plate_number": 99874, "owner_full_name": "GARY MENDEL KSANDRA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "22246 67 AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "24bef46e-82ee-4a1b-900d-5de31eedc9f8", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "530.00", "finished_well_depth": "530.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": "DRY", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "SAND", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112661, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:59:27Z", "update_user": "WELLS", "update_date": "2017-10-12T19:04:17Z", "well_guid": "1a64a72b-c663-412f-b71c-5af6dbe563c5", "identification_plate_number": null, "owner_full_name": "GARY KIPPIE CHAFFIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "4178 232ND STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "112733849", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2011-07-30", "decommission_end_date": "2011-07-30", "drilling_company": "24bef46e-82ee-4a1b-900d-5de31eedc9f8", "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "68.00", "finished_well_depth": "68.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5436180, "utm_easting": 530642, "utm_accuracy_code": "J", "bcgs_id": 3876, "decommission_reason": "DRY", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NATIVE CLAY", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112662, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "WELLS", "update_date": "2017-01-27T22:42:46Z", "well_guid": "b628d96c-3235-4b9b-bb18-d65b457c463c", "identification_plate_number": null, "owner_full_name": "GARY BESSIE DROGHAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "1960 KLO ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "129465788", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-21", "decommission_end_date": "2016-03-22", "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": "1186.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "160.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": "45.00", "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5526217, "utm_easting": 323829, "utm_accuracy_code": "H", "bcgs_id": 556, "decommission_reason": "WELL NO LONGER NEEDED", "decommission_method": "POURED", "sealant_material": "CEMENT/BENTONITE", "backfill_material": "NATIVE SOIL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112663, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "WELLS", "update_date": "2017-02-06T23:27:00Z", "well_guid": "d14accd9-3c04-4dca-a35f-f6d6b6f03c0c", "identification_plate_number": 49350, "owner_full_name": "GARY TALLIE ROSITA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "43238 Yale Road 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "in front on secondary dwelling", "construction_start_date": "2017-01-23", "construction_end_date": "2017-01-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "ON WELL HEAD", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "TOPSOIL", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "118.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.50", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "welded", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5443348, "utm_easting": 570935, "utm_accuracy_code": "H", "bcgs_id": 4304, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112664, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:44:36Z", "update_user": "WELLS", "update_date": "2017-10-12T19:01:33Z", "well_guid": "bb1d583c-65fe-4114-843e-6c95e7d9796a", "identification_plate_number": null, "owner_full_name": "GARY KATERINA SEAGOOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "6201 TAMARACK DRIVE 1", "city": "OSOYOOS", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "KINSMEN PARK", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-09-28", "decommission_end_date": "2015-09-28", "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": "958.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "38.00", "finished_well_depth": "38.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5433546, "utm_easting": 321573, "utm_accuracy_code": "H", "bcgs_id": 37, "decommission_reason": "NOT SUFFICIENT WATER", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "CLAY & GRAVEL", "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112665, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:07Z", "update_user": "WELLS", "update_date": "2017-01-25T18:25:09Z", "well_guid": "c1508bdf-b058-41bb-89d7-e919d5d529e5", "identification_plate_number": 47952, "owner_full_name": "GARY MASSIMILIANO LAVALLIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "550 40TH STREET 1", "city": "CRESTON", "legal_lot": "1B", "legal_plan": "NEP83990", "legal_district_lot": "19555", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "127090876", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-18", "construction_end_date": "2016-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": "1840.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "540.00", "finished_well_depth": "540.00", "final_casing_stick_up": "29.000", "bedrock_depth": "55.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "47.50", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5435684, "utm_easting": 535029, "utm_accuracy_code": "H", "bcgs_id": 720, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112666, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:40:17Z", "update_user": "WELLS", "update_date": "2017-01-25T18:47:57Z", "well_guid": "7a3d03d6-3f33-41db-ae2d-4054e9ba80fc", "identification_plate_number": 47959, "owner_full_name": "GARY MATILDE GILLBEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "11384 HIGHWAY 3A 1", "city": "SANCA", "legal_lot": "11", "legal_plan": "NEP16119", "legal_district_lot": "17459", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-25", "construction_end_date": "2016-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "1749.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "18.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.23", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5472797, "utm_easting": 518690, "utm_accuracy_code": "H", "bcgs_id": 9944, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112667, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "WELLS", "update_date": "2017-01-25T19:02:26Z", "well_guid": "7dfe6d02-5eee-4e82-9fb0-9669bdac6950", "identification_plate_number": 47986, "owner_full_name": "GARY YETTY HAYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "110", "legal_plan": "NEP1652", "legal_district_lot": "1281", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111881763", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-20", "construction_end_date": "2016-06-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "2007.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "30.000", "bedrock_depth": "26.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5436834, "utm_easting": 527951, "utm_accuracy_code": "H", "bcgs_id": 701, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112668, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "WELLS", "update_date": "2017-01-25T19:19:42Z", "well_guid": "2e65d74a-8d35-485c-ac43-2fe584b69866", "identification_plate_number": 47957, "owner_full_name": "GARY CHERISE FRANCESCONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "14", "legal_plan": "NEP23427", "legal_district_lot": "1892", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-03", "construction_end_date": "2016-06-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "1947.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "21.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "22.10", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439950, "utm_easting": 534556, "utm_accuracy_code": "H", "bcgs_id": 794, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112669, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:07:31Z", "update_user": "WELLS", "update_date": "2017-10-12T18:33:23Z", "well_guid": "db417111-0b00-47d6-9c7d-7b3bed886df7", "identification_plate_number": null, "owner_full_name": "GARY WAYLAND SHILSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1B", "legal_plan": "EPP44690", "legal_district_lot": "14592", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-10-15", "construction_end_date": "2015-11-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "SOIL", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "89.00", "well_yield": "11.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": 13308, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112670, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": "WELLS", "update_date": "2017-01-25T23:28:38Z", "well_guid": "cb48916e-505d-4a27-b501-2e4b459a5c18", "identification_plate_number": 47949, "owner_full_name": "JILLY KENNIFECK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "11", "legal_plan": "NEP11711", "legal_district_lot": "1892", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "112770680", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-11-08", "construction_end_date": "2015-11-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "DRILL CUTTINGS", "backfill_depth": "1.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "12.000", "bedrock_depth": "25.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5441653, "utm_easting": 534184, "utm_accuracy_code": "J", "bcgs_id": 799, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112671, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:54:43Z", "update_user": "WELLS", "update_date": "2017-08-28T22:27:47Z", "well_guid": "1b1119ed-581a-4042-8989-78a902bcc380", "identification_plate_number": 47954, "owner_full_name": "ADRIENNE SAWERS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1A", "legal_plan": "12643", "legal_district_lot": "11236", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-30", "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": "2050.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "58.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "32.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5442789, "utm_easting": 480933, "utm_accuracy_code": "H", "bcgs_id": 775, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112672, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T23:06:56Z", "update_user": "WELLS", "update_date": "2017-08-28T22:27:47Z", "well_guid": "a1c20a78-4f03-4202-89eb-197c16b9be30", "identification_plate_number": 47958, "owner_full_name": "MADELEINE AUBREY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1121", "legal_plan": "785B", "legal_district_lot": "11236", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-31", "construction_end_date": "2016-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "WELDED TO CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "1973.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "80.00", "final_casing_stick_up": "22.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5437547, "utm_easting": 458870, "utm_accuracy_code": "H", "bcgs_id": 695, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112673, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "WELLS", "update_date": "2017-01-28T23:42:00Z", "well_guid": "ffe15cfc-b179-44b6-bf9c-cdaba56272d4", "identification_plate_number": 39009, "owner_full_name": "BERTRAND INGARFILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7239 PARADISE ROAD 1", "city": "TREPENIER BENCH/PEACHLAND", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 310 FEET EAST DOWN DRIVEWAY WITH WELL ON LEFT SIDE OF DRIVEWAY.", "construction_start_date": "2014-04-17", "construction_end_date": "2014-04-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": "1832.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "119.00", "finished_well_depth": "117.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "71.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5521783, "utm_easting": 301635, "utm_accuracy_code": "H", "bcgs_id": 503, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112674, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:42:28Z", "update_user": "WELLS", "update_date": "2017-01-30T22:05:19Z", "well_guid": "9128d8ea-3fae-4b4c-9aef-f1473fa2a6ca", "identification_plate_number": 39030, "owner_full_name": "ELINOR BENZ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1971 STEWARD ROAD 1", "city": "CAWSTON", "legal_lot": "17", "legal_plan": "1479", "legal_district_lot": "1", "legal_block": "17", "legal_section": "3", "legal_township": "52", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 60 FEET EAST OF HOUSE ON LEFT SIDE OF DRIVEWAY", "construction_start_date": "2014-04-24", "construction_end_date": "2014-04-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "1330.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "16 BAGS OF BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "59.00", "finished_well_depth": "59.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "7.50", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5450045, "utm_easting": 299633, "utm_accuracy_code": "H", "bcgs_id": 166, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112675, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "WELLS", "update_date": "2017-01-30T22:04:22Z", "well_guid": "2f951f46-107c-43d8-8bb3-ed9e7cf61ccb", "identification_plate_number": 38662, "owner_full_name": "HARTLEY BEAMES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "288 LAWLESS CREEK ROAD 1", "city": "TULAMEEN", "legal_lot": "1C", "legal_plan": "32820", "legal_district_lot": "11020", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "103309541", "well_location_description": "WELL APPROXIMATELY 150' NORTHWEST OF HOUSE IN BACKYARD ON LEFT HAND SIDE OF DRIVEWAY", "construction_start_date": "2013-10-31", "construction_end_date": "2013-11-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": "2866.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "3.5 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "535.00", "finished_well_depth": "520.00", "final_casing_stick_up": "24.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "85.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM LOCKING", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490436, "utm_easting": 661161, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112676, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "WELLS", "update_date": "2017-01-26T17:25:26Z", "well_guid": "3d3deaab-cc67-4358-89bc-40fdaabc3958", "identification_plate_number": 47861, "owner_full_name": "ARA FROUDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "km 150 FINLAY FOREST ROAD 1", "city": "MACKENZIE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NONE PROVIDED", "construction_start_date": "2016-10-24", "construction_end_date": "2016-10-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "SIDE", "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": "2251.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "135.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6208086, "utm_easting": 423987, "utm_accuracy_code": "H", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112677, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:50:44Z", "update_user": "WELLS", "update_date": "2017-01-26T18:14:45Z", "well_guid": "63bdb868-ba0d-45a9-8551-a9b9018bf1fb", "identification_plate_number": null, "owner_full_name": "NELLY PAVLENKO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "400 OLD HEDLEY ROAD 1", "city": "PRINCETON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "11836", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108564817", "well_location_description": "PLAN B1739 EXCEPT 34942. ALONG FENCE LINE IN MIDDLE OF PROPERTY", "construction_start_date": "1922-08-01", "construction_end_date": "1922-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "60.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5482223, "utm_easting": 683155, "utm_accuracy_code": "A", "bcgs_id": 4846, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112678, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:09:44Z", "update_user": "WELLS", "update_date": "2017-01-27T22:41:24Z", "well_guid": "f76ca4eb-d6f1-461c-acd0-70543820aa93", "identification_plate_number": 39459, "owner_full_name": "TREVAR BRAUND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "ALTERATION", "licenced_status": "UNLICENSED", "street_address": "15883 BARKLEY ROAD 1", "city": "LAKE COUNTRY", "legal_lot": "18", "legal_plan": "712", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2015-03-09", "alteration_end_date": "2015-03-11", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": "1790.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "600.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5554133, "utm_easting": 324983, "utm_accuracy_code": "H", "bcgs_id": 11953, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112679, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:22:00Z", "update_user": "WELLS", "update_date": "2017-01-26T18:52:42Z", "well_guid": "ac2a53ef-3306-437a-a877-b58681477999", "identification_plate_number": 41226, "owner_full_name": "SHAYLAH MAUNDERS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6064 NORMAN ROAD 1", "city": "HORSE LAKE", "legal_lot": "129", "legal_plan": "KAP20628", "legal_district_lot": "14260", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "107773668", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-19", "construction_end_date": "2016-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": "3392.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "142.00", "finished_well_depth": "142.00", "final_casing_stick_up": "16.000", "bedrock_depth": "35.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "4.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5717655, "utm_easting": 625378, "utm_accuracy_code": "H", "bcgs_id": 5835, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112680, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:35:52Z", "update_user": "WELLS", "update_date": "2017-01-26T18:53:00Z", "well_guid": "a5f1dbe1-7d23-4ed2-ad0e-b6e4339c166d", "identification_plate_number": 41225, "owner_full_name": "MAGGIE HELIX", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6526 HORSE LAKE ROAD 1", "city": "HORSE LAKE", "legal_lot": "12", "legal_plan": "32685", "legal_district_lot": "14068", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103329593", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-17", "construction_end_date": "2016-08-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": "3440.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "302.00", "finished_well_depth": "301.00", "final_casing_stick_up": "24.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "160.00", "well_yield": "4.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "TEMP STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5716569, "utm_easting": 632839, "utm_accuracy_code": "H", "bcgs_id": 5845, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112681, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "WELLS", "update_date": "2017-01-26T18:56:40Z", "well_guid": "65044cca-5026-44d5-bb31-3174bae4fb29", "identification_plate_number": 41224, "owner_full_name": "MELISSA BARCLAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "BRIDGE LAKE NORTH ROAD 1", "city": "BRIDGE LAKE", "legal_lot": "11", "legal_plan": "34006", "legal_district_lot": "11484", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103031519", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-15", "construction_end_date": "2016-08-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.520000", "ground_elevation": "3788.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "162.00", "finished_well_depth": "162.00", "final_casing_stick_up": "24.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "9.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5706611, "utm_easting": 660610, "utm_accuracy_code": "H", "bcgs_id": 5776, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112682, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "WELLS", "update_date": "2017-01-26T19:21:06Z", "well_guid": "7a6f29fc-8801-43f5-a963-161e1ff0f2ea", "identification_plate_number": 41223, "owner_full_name": "GREGORY GREENARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6699 HORSE LAKE ROAD 1", "city": "HORSE LAKE", "legal_lot": "12", "legal_plan": "32132", "legal_district_lot": "14070", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103513891", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-12", "construction_end_date": "2016-08-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": "3212.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "88.00", "finished_well_depth": "87.50", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "24.00", "well_yield": "18.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "TEMP STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5718688, "utm_easting": 635481, "utm_accuracy_code": "H", "bcgs_id": 5933, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112683, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:32:10Z", "update_user": "WELLS", "update_date": "2017-01-26T19:35:28Z", "well_guid": "a1d3dfe0-616d-44a5-b8cc-bdee23b86f65", "identification_plate_number": 41222, "owner_full_name": "BARBRA PROSKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7087 93 MILE LOOP ROAD 1", "city": "100 MILE HOUSE", "legal_lot": "11", "legal_plan": "KAP60286", "legal_district_lot": "18154", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123932902", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-10", "construction_end_date": "2016-08-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "3966.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "303.00", "finished_well_depth": "303.00", "final_casing_stick_up": "18.000", "bedrock_depth": "2.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5713670, "utm_easting": 613531, "utm_accuracy_code": "H", "bcgs_id": 5796, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112684, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": "WELLS", "update_date": "2017-01-26T19:45:40Z", "well_guid": "6f56004a-29a3-4027-b3c1-102a13ea1c9a", "identification_plate_number": 41221, "owner_full_name": "JONIS GIANNASSI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5164 LAKES ROAD 1", "city": "105 MILE HOUSE", "legal_lot": "112", "legal_plan": "KAP56268", "legal_district_lot": "1434", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123317990", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-04", "construction_end_date": "2016-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "3157.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "143.00", "finished_well_depth": "140.00", "final_casing_stick_up": "18.000", "bedrock_depth": "37.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "70.00", "well_yield": "2.400", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5729987, "utm_easting": 614976, "utm_accuracy_code": "H", "bcgs_id": 5992, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112685, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:55:29Z", "update_user": "WELLS", "update_date": "2017-01-26T19:58:39Z", "well_guid": "3238d96a-11d2-4a4a-bf22-b37da3903b69", "identification_plate_number": 41220, "owner_full_name": "CORALIE DUBOSE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5588 LAKESIDE CRESCENT 1", "city": "103 MILE", "legal_lot": "15", "legal_plan": "32329", "legal_district_lot": "11111", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "103491498", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-02", "construction_end_date": "2016-08-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "2971.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "57.00", "finished_well_depth": "53.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5727715, "utm_easting": 617640, "utm_accuracy_code": "H", "bcgs_id": 5923, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112686, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:39Z", "update_user": "WELLS", "update_date": "2017-01-26T20:18:47Z", "well_guid": "1c949363-cc14-415c-9dc2-86bdeb57d82d", "identification_plate_number": 41219, "owner_full_name": "JAYNE CRISTOFORO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3591 HIGHWAY 97 1", "city": "LAC LA HACHE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "12806", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "108342091", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-27", "construction_end_date": "2016-07-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "202.00", "finished_well_depth": "200.00", "final_casing_stick_up": "18.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "24.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5745394, "utm_easting": 594969, "utm_accuracy_code": "H", "bcgs_id": 6050, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112687, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:34:28Z", "update_user": "WELLS", "update_date": "2017-01-26T20:37:40Z", "well_guid": "5b16ffa7-9986-4a40-bc33-578c9d4da439", "identification_plate_number": 41218, "owner_full_name": "IAN JESS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6199 HUNT ROAD 1", "city": "HORSE LAKE", "legal_lot": "13", "legal_plan": "KAP51244", "legal_district_lot": "13868", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "118555233", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-25", "construction_end_date": "2016-07-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.500000", "ground_elevation": "3272.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "59.50", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "18.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "TEMP STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5716899, "utm_easting": 627524, "utm_accuracy_code": "H", "bcgs_id": 5836, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112688, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "WELLS", "update_date": "2017-01-26T20:48:36Z", "well_guid": "28138702-4614-44cc-a4b1-a487b96b65dd", "identification_plate_number": 41217, "owner_full_name": "HUSEIN BERTHOLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6430 HIGHWAY 24 1", "city": "LONE BUTTE", "legal_lot": "1A", "legal_plan": "EPP45946", "legal_district_lot": "13825", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "129519993", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-20", "construction_end_date": "2016-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "3809.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "303.00", "finished_well_depth": "303.00", "final_casing_stick_up": "20.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "38.00", "well_yield": "2.400", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5712295, "utm_easting": 632073, "utm_accuracy_code": "H", "bcgs_id": 5821, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112689, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "WELLS", "update_date": "2017-01-26T21:18:11Z", "well_guid": "766f0bea-7bb5-4a86-a6d0-b8b3a9ce0494", "identification_plate_number": 41216, "owner_full_name": "SKELLY RAWLISON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1692 CHASM ROAD 1", "city": "CHASM", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "18590", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "107644221", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-18", "construction_end_date": "2016-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "3583.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "243.00", "finished_well_depth": "242.00", "final_casing_stick_up": "20.000", "bedrock_depth": "21.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "4.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5676799, "utm_easting": 606105, "utm_accuracy_code": "H", "bcgs_id": 5664, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112690, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:14:53Z", "update_user": "WELLS", "update_date": "2017-01-26T21:17:43Z", "well_guid": "dc87ee42-0c36-4c91-a683-cde21e84964b", "identification_plate_number": 41240, "owner_full_name": "SARINE JANDA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6315 BERGSTROM ROAD 1", "city": "DEKA LAKE", "legal_lot": "1186", "legal_plan": "KAP21667", "legal_district_lot": "13721", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "107341211", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-08", "construction_end_date": "2016-11-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": "3857.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "158.00", "finished_well_depth": "158.00", "final_casing_stick_up": "18.000", "bedrock_depth": "16.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "36.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5719374, "utm_easting": 651092, "utm_accuracy_code": "H", "bcgs_id": 9295, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112691, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:24:08Z", "update_user": "WELLS", "update_date": "2017-01-26T22:13:31Z", "well_guid": "ceedb29e-ee41-4932-879e-11c9026da63d", "identification_plate_number": 41241, "owner_full_name": "ELFIE CHESTLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HORSE LAKE ROAD 1", "city": "SHERIDAN LAKE", "legal_lot": "1D", "legal_plan": "KAP82252", "legal_district_lot": "14457", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "126855259", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-27", "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": "3764.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "117.00", "finished_well_depth": "117.00", "final_casing_stick_up": "22.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "73.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5713134, "utm_easting": 644689, "utm_accuracy_code": "H", "bcgs_id": 11051, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112692, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T22:23:26Z", "update_user": "WELLS", "update_date": "2017-01-26T22:26:38Z", "well_guid": "34248e7e-b52f-495f-afe9-bfb62e36b2b9", "identification_plate_number": 41239, "owner_full_name": "QUEENIE FATTORE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6125 DORMAN ROAD 1", "city": "HORSE LAKE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "13707", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "113372815", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-06", "construction_end_date": "2016-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.530000", "ground_elevation": "3352.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "46.00", "finished_well_depth": "46.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "36.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5721222, "utm_easting": 638859, "utm_accuracy_code": "H", "bcgs_id": 13793, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112693, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:26:43Z", "update_user": "WELLS", "update_date": "2017-01-27T18:31:44Z", "well_guid": "da4c2375-a795-4d8c-957c-24075dd8ddb9", "identification_plate_number": 41238, "owner_full_name": "ERSKINE YELYASHEV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3572 HIGGINS ROAD 1", "city": "CANIM LAKE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": "C", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "117604893", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-19", "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "2638.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "202.00", "finished_well_depth": "202.00", "final_casing_stick_up": "26.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "1.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5746996, "utm_easting": 659416, "utm_accuracy_code": "H", "bcgs_id": 13794, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112694, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:42:26Z", "update_user": "WELLS", "update_date": "2017-01-27T18:46:14Z", "well_guid": "aeb59292-f67f-4438-abe0-764e09694ff3", "identification_plate_number": 41237, "owner_full_name": "MEREDITHE CARAS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "CARIBOO CHALET ROAD 1", "city": "DEKA LAKE", "legal_lot": "16", "legal_plan": "KAP27014", "legal_district_lot": "13720", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "102017105", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-12", "construction_end_date": "2016-10-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": "3680.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "37.00", "finished_well_depth": "31.00", "final_casing_stick_up": "29.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": "1.20", "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5720399, "utm_easting": 648326, "utm_accuracy_code": "H", "bcgs_id": 9654, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112695, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": "WELLS", "update_date": "2017-01-27T18:53:54Z", "well_guid": "a01a3ab1-8d71-4afe-891a-73fa9893094d", "identification_plate_number": 41236, "owner_full_name": "REEVA SCAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7085 WATCH LAKE ROAD 1", "city": "LONE BUTTE", "legal_lot": "1C", "legal_plan": "KAP73485", "legal_district_lot": "13830", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "125660624", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-03", "construction_end_date": "2016-10-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "3870.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "202.00", "finished_well_depth": "202.00", "final_casing_stick_up": "18.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "1.560", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5712184, "utm_easting": 626498, "utm_accuracy_code": "H", "bcgs_id": 5814, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112696, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:00:58Z", "update_user": "WELLS", "update_date": "2017-02-06T23:23:45Z", "well_guid": "8578b2ef-33bd-4da1-93d7-9f1033052750", "identification_plate_number": 50132, "owner_full_name": "WELLS TOMINI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9110 MARBLE BAY ROAD 1", "city": "LAKE COWICHAN", "legal_lot": "13", "legal_plan": "VIP4648", "legal_district_lot": "19", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "17", "legal_pid": "105999405", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-01-23", "construction_end_date": "2017-01-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "603.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.50", "finished_well_depth": "40.50", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5409403, "utm_easting": 418497, "utm_accuracy_code": "H", "bcgs_id": 3118, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112697, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": "WELLS", "update_date": "2017-01-27T22:37:47Z", "well_guid": "d973e2ab-ec31-40f8-a4b6-232be6628f1d", "identification_plate_number": 41235, "owner_full_name": "JONIS MUNT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6325 N. GREEN LAKE ROAD 1", "city": "GREEN LAKE", "legal_lot": "125", "legal_plan": "19057", "legal_district_lot": "13888", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "108140111", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-01", "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": "3625.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "18.000", "bedrock_depth": "91.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "1.800", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5701026, "utm_easting": 630058, "utm_accuracy_code": "H", "bcgs_id": 5746, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112698, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "WELLS", "update_date": "2017-10-23T23:37:41Z", "well_guid": "510a7151-0e02-498f-8e9d-ae6fec38a32c", "identification_plate_number": 50145, "owner_full_name": "ANGEL GARDNER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "132 CORBETT ROAD 1", "city": "SALTSPRING ISLAND", "legal_lot": "1A", "legal_plan": "VIP41612", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": " ", "legal_range": "3E", "land_district": "16", "legal_pid": "100698865", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-01-20", "construction_end_date": "2017-01-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": "79.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "39.50", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5412068, "utm_easting": 463007, "utm_accuracy_code": "H", "bcgs_id": 2985, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112699, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T22:51:15Z", "update_user": "WELLS", "update_date": "2017-01-27T22:56:29Z", "well_guid": "b6b44f4f-9f0a-4c00-9090-7b270a561580", "identification_plate_number": 41234, "owner_full_name": "RODI CORDERO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6820 JESMOND ROAD 1", "city": "CLINTON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "14677", "legal_block": "B", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "113391046", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-26", "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "4003.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "106.00", "finished_well_depth": "101.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "44.00", "well_yield": "15.600", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5654837, "utm_easting": 585061, "utm_accuracy_code": "H", "bcgs_id": 9205, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112700, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:02:01Z", "update_user": "WELLS", "update_date": "2017-01-27T23:03:43Z", "well_guid": "199a2860-10ab-4f9b-a010-c085f4aab787", "identification_plate_number": 41233, "owner_full_name": "SYLVIA GLADYER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "21 POINT ROAD 1", "city": "SOUTH GREEN LAKE", "legal_lot": "111", "legal_plan": "13433", "legal_district_lot": "11636", "legal_block": "7", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "115429792", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-21", "construction_end_date": "2016-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": "3544.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "283.00", "finished_well_depth": "283.00", "final_casing_stick_up": "18.000", "bedrock_depth": "30.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "2.400", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5691845, "utm_easting": 620024, "utm_accuracy_code": "H", "bcgs_id": 13369, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112701, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "WELLS", "update_date": "2017-01-27T23:17:41Z", "well_guid": "e0cfb73a-6780-465f-8d5a-f5769d75d21f", "identification_plate_number": 41232, "owner_full_name": "CHRIS BUTTERFILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7707 WATCH LAKE ROAD 1", "city": " ", "legal_lot": "11", "legal_plan": "KAP37254", "legal_district_lot": "14092", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "104954327", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-20", "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "3544.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "143.00", "finished_well_depth": "143.00", "final_casing_stick_up": "18.000", "bedrock_depth": "9.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "36.00", "well_yield": "7.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5706678, "utm_easting": 631992, "utm_accuracy_code": "H", "bcgs_id": 9809, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112702, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:23:20Z", "update_user": "WELLS", "update_date": "2017-01-27T23:25:51Z", "well_guid": "699ca447-cc77-4a1a-bf33-5d62be16b026", "identification_plate_number": 41231, "owner_full_name": "HUSEIN ASSAF", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7601 MACHETTE LAKE ROAD 1", "city": "BRIDGE LAKE", "legal_lot": "1A", "legal_plan": "KAP90107", "legal_district_lot": "11488", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "128106679", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-13", "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING, STICK UP", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": "3785.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "143.00", "finished_well_depth": "143.00", "final_casing_stick_up": "18.000", "bedrock_depth": "35.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "7.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5706365, "utm_easting": 662415, "utm_accuracy_code": "H", "bcgs_id": 5775, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112703, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:33:32Z", "update_user": "WELLS", "update_date": "2017-01-27T23:35:57Z", "well_guid": "f2cfa139-4470-4ccb-b710-0f708035835f", "identification_plate_number": 41230, "owner_full_name": "YANKEE SWALOWE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8322 NORTH BRIDGE LAKE ROAD 1", "city": "BRIDGE LAKE", "legal_lot": "14", "legal_plan": "24427", "legal_district_lot": "11852", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "105922402", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-12", "construction_end_date": "2016-09-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING, STICK UP", "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "3860.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "203.00", "finished_well_depth": "203.00", "final_casing_stick_up": "18.000", "bedrock_depth": "16.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "1.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5708907, "utm_easting": 661075, "utm_accuracy_code": "H", "bcgs_id": 9823, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112704, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:41:37Z", "update_user": "WELLS", "update_date": "2017-01-27T23:44:17Z", "well_guid": "83d9d5f3-83ef-47a0-b45b-f262126d0e7d", "identification_plate_number": 41229, "owner_full_name": "PATRIC BELVERSTONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1348 KELLY LAKE ROAD 1", "city": "CLINTON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1806", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "113295942", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-29", "construction_end_date": "2016-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "3471.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "34.00", "finished_well_depth": "34.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "22.00", "well_yield": "19.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5653550, "utm_easting": 591255, "utm_accuracy_code": "H", "bcgs_id": 5599, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112705, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "WELLS", "update_date": "2017-01-28T00:18:54Z", "well_guid": "76042c6b-7bff-409a-bda6-2c8483032527", "identification_plate_number": 41228, "owner_full_name": "MELISENDA RENNICKS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7010 NORTH NETHERLAND ROAD 1", "city": "LONE BUTTE", "legal_lot": "1B", "legal_plan": "EPP20701", "legal_district_lot": "14256", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "128869036", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-25", "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "3786.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "182.00", "finished_well_depth": "182.00", "final_casing_stick_up": "18.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "3.300", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5713600, "utm_easting": 623609, "utm_accuracy_code": "H", "bcgs_id": 5807, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112706, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": "WELLS", "update_date": "2017-01-28T22:28:48Z", "well_guid": "8c83f132-5891-4fb9-9b9d-33f67e5dedd8", "identification_plate_number": 41227, "owner_full_name": "KRISTOPHER DUFFIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7513 GAUTHIER ROAD 1", "city": "DEKA LAKE", "legal_lot": "1126", "legal_plan": "20594", "legal_district_lot": "13720", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "107808984", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-23", "construction_end_date": "2016-08-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "69f5459a-5ec1-49e1-94b6-58b0eb90b368", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "3613.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "283.00", "finished_well_depth": "283.00", "final_casing_stick_up": "18.000", "bedrock_depth": "130.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "130.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5720231, "utm_easting": 648720, "utm_accuracy_code": "H", "bcgs_id": 9654, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112707, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "WELLS", "update_date": "2017-02-01T19:00:18Z", "well_guid": "5c00cb99-9350-4e77-a828-f1bc768afd5e", "identification_plate_number": 39075, "owner_full_name": "THEODOSIA MATTHEUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4639 JUNE SPRINGS ROAD 1", "city": "EAST KELOWNA", "legal_lot": "19", "legal_plan": "34975", "legal_district_lot": "1", "legal_block": " ", "legal_section": "26", "legal_township": "29", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROXIMATELY 2/3 UP DRIVE WAY, WELL LOCATED APPROXIMATELY 100 FEET RIGHT (SE) OF DRIVEWAY, DOWN IN DRAW", "construction_start_date": "2015-09-22", "construction_end_date": "2015-09-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": "2689.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "29.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5520379, "utm_easting": 328661, "utm_accuracy_code": "H", "bcgs_id": 12274, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112708, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "WELLS", "update_date": "2017-02-01T18:59:37Z", "well_guid": "4c603b7f-5a7f-4818-85fd-44e900e81cc7", "identification_plate_number": 39074, "owner_full_name": "ARNE BITTERTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1515 SIDLEY CAMP MCKINNEY ROAD 1", "city": "BRIDESVILLE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "118095", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "MOBILE HOME REG=75912. WELL LOCATION AT END OF DRIVEWAY APPROXIMATELY 100' FROM UPPER CORNER OF HOUSE.", "construction_start_date": "2015-09-04", "construction_end_date": "2015-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.530000", "ground_elevation": "3842.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "17.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "440.00", "finished_well_depth": "440.00", "final_casing_stick_up": "36.000", "bedrock_depth": "62.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "77.00", "well_yield": "1.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5435184, "utm_easting": 336451, "utm_accuracy_code": "H", "bcgs_id": 67, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112709, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "WELLS", "update_date": "2017-02-06T23:18:16Z", "well_guid": "32689c39-812c-4675-9107-aa8e002613ed", "identification_plate_number": 49352, "owner_full_name": "KATHERYN THREADKELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "34472 Blatchford 1", "city": "Abbotsford", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SE Property line near powerpole", "construction_start_date": "2017-01-27", "construction_end_date": "2017-01-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "stick up", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "8.00", "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "68.00", "finished_well_depth": "65.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "2\" pipe cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431342, "utm_easting": 565076, "utm_accuracy_code": "H", "bcgs_id": 12351, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112710, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "WELLS", "update_date": "2017-02-06T23:15:46Z", "well_guid": "76d8faa4-c350-4506-80c4-bb112f34ba96", "identification_plate_number": 49351, "owner_full_name": "DANTE SLIMINGS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7357 Lickman Road 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "North of new layer barn", "construction_start_date": "2017-01-25", "construction_end_date": "2017-01-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": "5.00", "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "65.50", "finished_well_depth": "65.50", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "sst pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442878, "utm_easting": 572333, "utm_accuracy_code": "H", "bcgs_id": 4303, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112711, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "WELLS", "update_date": "2017-02-01T20:37:29Z", "well_guid": "c1f8f47a-fb6d-4612-990c-7a9404a5846a", "identification_plate_number": 39073, "owner_full_name": "GARY GOREISR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HEREFORD ROAD 1", "city": "CARRS LANDING", "legal_lot": "13", "legal_plan": "KAP32474", "legal_district_lot": "1", "legal_block": " ", "legal_section": "22", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 30' EAST OF MAIN ROAD. APPROXIMATELY 80' UP DRIVEWAY AND DIRECTLY ACROSS THE STREET FROM HOUSE AT 18056.", "construction_start_date": "2015-08-18", "construction_end_date": "2015-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.220000", "longitude": "-122.510000", "ground_elevation": "2778.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_CEM_MIX", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "1 BAG CEMENT, 3 BAGS BENTONITE", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "800.00", "finished_well_depth": "800.00", "final_casing_stick_up": "24.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5557602, "utm_easting": 327813, "utm_accuracy_code": "H", "bcgs_id": 1535, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112712, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "WELLS", "update_date": "2017-02-01T18:58:37Z", "well_guid": "49445f5d-82fb-4e4e-a19b-cef698201e9f", "identification_plate_number": 39072, "owner_full_name": "ENOS DENZILOE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2662 OTTER AVENUE 1", "city": "TULAMEEN", "legal_lot": "1B", "legal_plan": "EPP42074", "legal_district_lot": "1128", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON UPPER CORNER OF LOT FACING OTTER AVENUE, TULAMEEN", "construction_start_date": "2015-08-05", "construction_end_date": "2015-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.210000", "longitude": "-122.540000", "ground_elevation": "2563.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "6 BAGS OF BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "43.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5491001, "utm_easting": 662022, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112713, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "WELLS", "update_date": "2017-02-01T18:57:29Z", "well_guid": "2437236c-f51a-4bb0-bb65-ad67b8e76b4a", "identification_plate_number": 39071, "owner_full_name": "INGELBERT HYLDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "142 6TH STREET & OTTER AVENUE 1", "city": "TULAMEEN", "legal_lot": "116", "legal_plan": "123", "legal_district_lot": "1128", "legal_block": "31", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "112917001", "well_location_description": "WELL IN FAR UPPER CORNER OF LOT OF OTTER AVE AND 6TH STREET, TULAMEEN", "construction_start_date": "2015-08-04", "construction_end_date": "2015-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "2563.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "5 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": "6.00", "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490991, "utm_easting": 662002, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112714, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:14:28Z", "update_user": "WELLS", "update_date": "2017-02-01T18:56:47Z", "well_guid": "a4f3ff42-e0d3-4f74-b66e-b9013156dfd5", "identification_plate_number": 39070, "owner_full_name": "CRYSTIE WIGGINGTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2664 OTTER AVENUE 1", "city": "TULLAMEEN", "legal_lot": "1A", "legal_plan": "EPP42074", "legal_district_lot": "1128", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "123456789", "well_location_description": "WELL LOCATION ON UPPER CORNER OF LOT FACING OTTER AVENUE NEXT TO POWER POLE", "construction_start_date": "2015-07-30", "construction_end_date": "2015-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "2563.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "4 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "54.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5491022, "utm_easting": 661990, "utm_accuracy_code": "H", "bcgs_id": 4870, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112715, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:22:30Z", "update_user": "WELLS", "update_date": "2017-02-09T20:56:34Z", "well_guid": "b5cfb641-602e-4db2-a2e5-10be11e243ed", "identification_plate_number": null, "owner_full_name": "CORNELIA CAULDFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "449 AMBERHILL ROAD 1", "city": "PRINCETON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-06-15", "construction_end_date": "2015-06-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": "2206.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "30.000", "bedrock_depth": "34.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5481511, "utm_easting": 684548, "utm_accuracy_code": "H", "bcgs_id": 4844, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112716, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "WELLS", "update_date": "2017-01-31T18:37:16Z", "well_guid": "d678bed3-846b-42cd-9037-c7e7cb3c2ab2", "identification_plate_number": 39069, "owner_full_name": "VINNIE OLIVETTA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "230 & 232 8TH AVENUE 1", "city": "PRINCETON", "legal_lot": "1230+232", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON SOUTH SIDE OF LARGE SAWDUST PILE NEXT DOOR APPROXIMATELY 40 FEET FROM BERM ON SOUTHEAST CORNER OF PROPERTY (COMPOUND)", "construction_start_date": "2015-07-24", "construction_end_date": "2015-07-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "2124.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "280.00", "final_casing_stick_up": "24.000", "bedrock_depth": "51.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "0.330", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL CAP WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5482579, "utm_easting": 682088, "utm_accuracy_code": "H", "bcgs_id": 4845, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112717, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T22:25:15Z", "update_user": "WELLS", "update_date": "2017-02-01T18:53:43Z", "well_guid": "a9a9bfd1-4643-4b0a-a2e1-c16a7b234ed9", "identification_plate_number": 39068, "owner_full_name": "TOBE IVANYUTIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "143 1ST STREET AND OTTER AVENUE 1", "city": "TULAMEEN", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED IN FRONT CENTRE OF LOT APPROXIMATELY 5 FEET FROM FENCE LINE", "construction_start_date": "2015-07-16", "construction_end_date": "2015-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "2592.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "59.00", "finished_well_depth": "59.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490276, "utm_easting": 662148, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112718, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "WELLS", "update_date": "2017-02-01T19:31:17Z", "well_guid": "f6160184-c381-4364-836b-d82622a95663", "identification_plate_number": 39067, "owner_full_name": "JOLYNN CRISTOFORO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1297 GLENMORE DRIVE 1", "city": "KELOWNA", "legal_lot": "1A", "legal_plan": "KAP64220", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION NORTHEAST OF CLUB HOUSE BESIDE POND APPROXIMATELY 40'", "construction_start_date": "2015-07-02", "construction_end_date": "2015-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.590000", "ground_elevation": "1226.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "14 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "250.00", "final_casing_stick_up": "36.000", "bedrock_depth": "240.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.50", "well_yield": "130.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5529503, "utm_easting": 323907, "utm_accuracy_code": "H", "bcgs_id": 566, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112719, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "WELLS", "update_date": "2017-10-12T18:37:36Z", "well_guid": "6a04a67b-69aa-4097-91bf-39cf77b15f3c", "identification_plate_number": 39066, "owner_full_name": "DANYETTE STOCKBRIDGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1297 GLENMORE DRIVE 1", "city": "KELOWNA", "legal_lot": "1A", "legal_plan": "KAP64220", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION ON UPPER SOUTHEAST CORNER OF GOLF COURSE, APPROXIMATELY 15' FROM FENCE LINE", "construction_start_date": "2015-06-25", "construction_end_date": "2015-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": "1292.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "5 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "230.00", "finished_well_depth": "230.00", "final_casing_stick_up": "30.000", "bedrock_depth": "211.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "91.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5529199, "utm_easting": 324102, "utm_accuracy_code": "H", "bcgs_id": 8993, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112720, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "WELLS", "update_date": "2017-02-06T23:13:45Z", "well_guid": "51d9c0a6-d439-445d-88f8-d7d5e0ba746e", "identification_plate_number": 50167, "owner_full_name": "CARLETON VOUSDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3615 RIVERSIDE ROAD 1", "city": "DUNCAN", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "19", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "53", "legal_pid": "110336397", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-01-12", "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "390.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "221.00", "finished_well_depth": "221.00", "final_casing_stick_up": "12.000", "bedrock_depth": "9.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "27.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5392955, "utm_easting": 451867, "utm_accuracy_code": "H", "bcgs_id": 2692, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112721, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "WELLS", "update_date": "2017-02-01T18:51:41Z", "well_guid": "5a460b2e-711f-4d8a-8ea5-b586b2cd1723", "identification_plate_number": 39063, "owner_full_name": "TED ISSACOV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "110 CHARLES ROAD 1", "city": "PRINCETON", "legal_lot": "1A", "legal_plan": "KAP47428", "legal_district_lot": "11005", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION ON FRONT CORNER OF BARN (HOUSE SIDE)", "construction_start_date": "2015-06-10", "construction_end_date": "2015-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "5 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "80.00", "final_casing_stick_up": "24.000", "bedrock_depth": "18.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.50", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5481601, "utm_easting": 677195, "utm_accuracy_code": "H", "bcgs_id": 4835, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112722, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "WELLS", "update_date": "2017-02-01T18:51:07Z", "well_guid": "b770350e-3774-4305-923e-fdb376115dce", "identification_plate_number": 39062, "owner_full_name": "HEDA AVRAHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "542 SANG ANG WAY 1", "city": "PRINCETON", "legal_lot": "113", "legal_plan": "34664", "legal_district_lot": "13528", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION IF FRONT YARD IN FRONT OF HOUSE IN APPROXIMATELY 30' FROM STREET IN CENTRE OF LOT", "construction_start_date": "2015-06-03", "construction_end_date": "2015-06-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "2029.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "38.00", "finished_well_depth": "38.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.50", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5482130, "utm_easting": 685132, "utm_accuracy_code": "H", "bcgs_id": 4849, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112723, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T20:27:18Z", "update_user": "WELLS", "update_date": "2017-02-01T18:50:22Z", "well_guid": "f418c51c-ae78-4418-a163-23ead2cc8f39", "identification_plate_number": 39061, "owner_full_name": "JEANNINE SHELLIDAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "395 VLA ROAD 1", "city": "CAWSTON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED APPROXIMATELY 1/2 WAY UP SOUTHEAST FENCE LINE ON LEFT SIDE OF PROPERTY", "construction_start_date": "2015-05-26", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "1307.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.50", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5450698, "utm_easting": 298583, "utm_accuracy_code": "H", "bcgs_id": 168, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112724, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "WELLS", "update_date": "2017-01-31T21:16:39Z", "well_guid": "e53374e5-6802-4942-b565-7fe1fde7b324", "identification_plate_number": 39060, "owner_full_name": "ALENE FRANCESCONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1585 SIDNEY CAMP MCKINNY ROAD 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "110425", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "114964813", "well_location_description": "APPROXIMATELY 200 M NORTHEAST OF UPPER VINEYARD APPROXIMATELY 300 M EAST OF MAIN DRIVEWAY", "construction_start_date": "2015-05-20", "construction_end_date": "2015-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": "4059.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": false, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "30.000", "bedrock_depth": "67.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "62.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5435897, "utm_easting": 336574, "utm_accuracy_code": "H", "bcgs_id": 69, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112725, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "WELLS", "update_date": "2017-02-01T18:49:22Z", "well_guid": "199f96ae-550f-476f-bc9f-6fdfc0c7f672", "identification_plate_number": 39059, "owner_full_name": "BENDITE MURDY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1485 PIONEER ROAD 1", "city": "KELOWNA BC", "legal_lot": "1A", "legal_plan": "28646", "legal_district_lot": "1132", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 50' NORTHEAST IN FRONT OF FRONT DOOR OF HOUSE IN APPROX ?? FROM PROPERTY LINE IN FRONT YEAR", "construction_start_date": "2015-05-07", "construction_end_date": "2015-05-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": "1139.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "5 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "79.00", "finished_well_depth": "77.50", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5525080, "utm_easting": 322911, "utm_accuracy_code": "H", "bcgs_id": 556, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112726, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "WELLS", "update_date": "2017-02-01T18:48:42Z", "well_guid": "a0e15ba8-b902-47e5-a937-0cc07062ede1", "identification_plate_number": 39056, "owner_full_name": "JODY DOORBAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4495 (TREPANIER) MAXWELL ROAD 1", "city": "PEACHLAND", "legal_lot": "14", "legal_plan": "KAP35690", "legal_district_lot": "1484", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON UPPER BENCH ON NORTHWEST END OF PROPERTY APPROXIMATELY 300' NORTHWEST OF MAXWELL ROAD", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "2043.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "14 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "700.00", "finished_well_depth": "700.00", "final_casing_stick_up": "24.000", "bedrock_depth": "164.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "189.00", "well_yield": "0.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5522294, "utm_easting": 301932, "utm_accuracy_code": "H", "bcgs_id": 503, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112727, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:32Z", "update_user": "WELLS", "update_date": "2017-02-01T18:48:06Z", "well_guid": "af85ecdc-1b25-49f8-9cef-4fea6792b47c", "identification_plate_number": 39053, "owner_full_name": "ALMETA DROGHAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6738-6824 SUNVALLEY ROAD (JOE RICH) 1", "city": "KELOWNA", "legal_lot": "12", "legal_plan": "40515", "legal_district_lot": "1", "legal_block": " ", "legal_section": "23", "legal_township": "27", "legal_range": " ", "land_district": "41", "legal_pid": "112622362", "well_location_description": "WELL LOCATION AT BOTTOM OF UPPER DRIVEWAY ON LEFT SIDE OF DRIVEWAY APPROXIMATELY CENTRE OF LOT", "construction_start_date": "2014-12-18", "construction_end_date": "2014-12-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "3613.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "6 BAGS OF BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "24.000", "bedrock_depth": "82.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": "0.50", "artesian_pressure": "6.00", "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5527709, "utm_easting": 338571, "utm_accuracy_code": "H", "bcgs_id": 594, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112728, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "WELLS", "update_date": "2017-11-17T21:21:33Z", "well_guid": "c91b1969-f383-4470-9df2-a2e5faf8dab1", "identification_plate_number": 39052, "owner_full_name": "BRYON PERIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1598 BYLAND ROAD 1", "city": "WESTBANK", "legal_lot": "195", "legal_plan": "KAP5381", "legal_district_lot": "1507", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "109421301", "well_location_description": "WELL LOCATION APPROXIMATELY 50' SOUTHWEST OF FENCELINE AT END OF WATER POND AT LAST 2 ROWS OF GREEN HOUSES OFF OF BYLAND ROAD", "construction_start_date": "2014-12-08", "construction_end_date": "2014-12-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "1585.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "299.00", "finished_well_depth": "299.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "86.00", "well_yield": "120.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5526667, "utm_easting": 314551, "utm_accuracy_code": "H", "bcgs_id": 548, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112729, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "WELLS", "update_date": "2017-02-01T18:44:55Z", "well_guid": "92e54262-013d-4e8d-be18-853d450c204a", "identification_plate_number": 39051, "owner_full_name": "GRETHEL LISCIARDELLI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5884 OYAMA LAKE ROAD 1", "city": "LAKE COUNTRY BC", "legal_lot": "11", "legal_plan": "35112", "legal_district_lot": "1", "legal_block": " ", "legal_section": "6", "legal_township": "10", "legal_range": " ", "land_district": "41", "legal_pid": "102892677", "well_location_description": "WELL LOCATED ON LEFT SIDE OF DRIVEWAY AT BOTTOM OF HILL NEXT TO CONTAINER SHOP", "construction_start_date": "2014-11-17", "construction_end_date": "2014-12-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "2395.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "6 BAGS OF BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "600.00", "finished_well_depth": "600.00", "final_casing_stick_up": "24.000", "bedrock_depth": "24.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "249.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5552384, "utm_easting": 332764, "utm_accuracy_code": "H", "bcgs_id": 1549, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112730, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "WELLS", "update_date": "2017-02-01T18:44:12Z", "well_guid": "b540bf5d-c002-4d79-a2cd-f6a308d22453", "identification_plate_number": 39049, "owner_full_name": "CODY PETTINGER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "PRESTON ROAD (GLENROSA) 1", "city": "WESTBANK BC", "legal_lot": "163", "legal_plan": "KAP777", "legal_district_lot": "13191", "legal_block": "63", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL ON LOWER CORNER OF LOT WELL APPROXIMATELY 40' WEST OF ROAD AND 15' WEST AND 50' SOUTH OF PROPERTY MARKERS LOT AT THE END OF CARRE ROAD; 36414642001", "construction_start_date": "2014-11-04", "construction_end_date": "2014-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": "2537.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "6 BAGS OF BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "36.000", "bedrock_depth": "30.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5524178, "utm_easting": 305982, "utm_accuracy_code": "H", "bcgs_id": 517, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112731, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T08:29:39Z", "update_user": "WELLS", "update_date": "2017-02-01T18:43:37Z", "well_guid": "0c298c1c-a811-432c-b329-2431455c4645", "identification_plate_number": 39031, "owner_full_name": "ARDENE CHERRYMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "725 HIGHWAY 5A 1", "city": "PRINCETON", "legal_lot": "11", "legal_plan": "2634", "legal_district_lot": "1964", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "25", "legal_pid": "111098261", "well_location_description": "WELL LOCATION APPROXIMATELY 100' EAST OF REAR OF HOUSE", "construction_start_date": "2014-04-29", "construction_end_date": "2014-05-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "2349.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "9 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "59.00", "finished_well_depth": "59.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5488610, "utm_easting": 680115, "utm_accuracy_code": "H", "bcgs_id": 4874, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112732, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T17:49:23Z", "update_user": "WELLS", "update_date": "2017-10-12T18:42:09Z", "well_guid": "a6538e4f-e816-4b71-8bbb-eda1445b0fa0", "identification_plate_number": 39007, "owner_full_name": "ANGE FORES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3750 WESTBAY ROAD 1", "city": "WESTBANK", "legal_lot": "12", "legal_plan": "2685", "legal_district_lot": "1434", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 100' WEST OF HOUSE (GREY) AT LOWER SIDE OF VINEYARD", "construction_start_date": "2014-04-04", "construction_end_date": "2014-04-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "1146.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "9 BAGS BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5523088, "utm_easting": 314462, "utm_accuracy_code": "H", "bcgs_id": 530, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112733, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T18:28:06Z", "update_user": "WELLS", "update_date": "2017-02-01T19:01:17Z", "well_guid": "5a85016e-b01c-40b0-ac7c-24d4f08f3b86", "identification_plate_number": 39058, "owner_full_name": "RICHMOUND LUGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2642 OTTER AVENUE 1", "city": "TULAMEEN", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION IN CENTRE OF LOT IN FRONT OF HOUSE NEXT TO OTTER AVENUE", "construction_start_date": "2015-05-01", "construction_end_date": "2015-05-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "2631.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "41.00", "finished_well_depth": "41.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490848, "utm_easting": 662035, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112734, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "WELLS", "update_date": "2017-02-01T19:30:07Z", "well_guid": "7173b901-7e20-4bb2-b7a9-ac546e42f8c2", "identification_plate_number": 39055, "owner_full_name": "IOLANTHE HYLDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1301 HIGHWAY 3 1", "city": "CAWSTON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROXIMATELY 5 KM SOUTH OF CAWSTON AND 1 KM SOUTH OF LOWER SIMILKAMEEN BAND OFFICE ON RIGHT SIDE OF HIGHWAY AT FAR END OF HAY FIELD PAST RED BARD", "construction_start_date": "2015-03-30", "construction_end_date": "2015-04-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": "1296.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "16 BAGS OF BENTONITE CHIPS", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "9.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "138.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "43.00", "well_yield": "150.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5442497, "utm_easting": 301339, "utm_accuracy_code": "H", "bcgs_id": 156, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112735, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "WELLS", "update_date": "2017-02-01T20:02:34Z", "well_guid": "86a9aa8d-27b3-4dc5-b8b5-edcb7fe84b20", "identification_plate_number": 39004, "owner_full_name": "ALWYN PROSKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1A", "legal_plan": "KAP70973", "legal_district_lot": "12709", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "125386556", "well_location_description": "WELL LOCATED APPROXIMATELY 20' SW OF LOG HOUSE ON UPPER PART OF PROPERTY.", "construction_start_date": "2014-02-04", "construction_end_date": "2014-02-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": "2784.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BN_CEM_MIX", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "1 BAG OF CEMENT AND 3 BAGS OF BENTONITE", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "707.00", "finished_well_depth": "700.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "262.00", "well_yield": "2.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5432686, "utm_easting": 324989, "utm_accuracy_code": "H", "bcgs_id": 55, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112736, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:51Z", "update_user": "WELLS", "update_date": "2017-02-01T20:35:15Z", "well_guid": "d1ef0234-9e9e-4838-b88b-84ad623a29ac", "identification_plate_number": 39008, "owner_full_name": "GOLDARINA COLTAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1851 B MARRON VALLEY ROAD 1", "city": "PENTICTON", "legal_lot": "127", "legal_plan": "59990CLSR", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON UPPER NORTHWEST CORNER OF LOT", "construction_start_date": "2014-04-08", "construction_end_date": "2014-04-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "2158.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "10 BAGS OF BENTONITE CHIPS", "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "380.00", "finished_well_depth": "380.00", "final_casing_stick_up": "30.000", "bedrock_depth": "52.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5475106, "utm_easting": 304519, "utm_accuracy_code": "H", "bcgs_id": 12017, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112737, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "WELLS", "update_date": "2017-02-02T18:47:00Z", "well_guid": "bfb15ce4-f185-41d9-952f-50e24e19834d", "identification_plate_number": 39064, "owner_full_name": "IOLANTHE HAYBALL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "GEOTECH", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "449 AMBERHILL ROAD 1", "city": "PRINCETON", "legal_lot": "14", "legal_plan": "28580", "legal_district_lot": "1S1 AND 1827", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY CENTRE OF LOT ON UPPER BUILDING SITE ON UPPER CENTRE BACKSIDE OF DUG OUT SPOT FOR HOUSE", "construction_start_date": "2015-05-30", "construction_end_date": "2015-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": "2180.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": "19.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5481439, "utm_easting": 684568, "utm_accuracy_code": "H", "bcgs_id": 4844, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112738, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "WELLS", "update_date": "2017-02-02T18:45:46Z", "well_guid": "681d15c0-211e-4752-80b2-349b502c574e", "identification_plate_number": 39079, "owner_full_name": "EDDY SIMUKOV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2743 COALMONT ROAD 1", "city": "TULAMEEN", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED APPROXIMATELY 50' OFF REAR CORNER OF HOUSE IN FAR LEFT SIDE OF REAR YARD", "construction_start_date": "2015-10-27", "construction_end_date": "2015-10-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": "2577.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "58.50", "finished_well_depth": "58.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "11.50", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5491194, "utm_easting": 661782, "utm_accuracy_code": "H", "bcgs_id": 4870, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112739, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:54:18Z", "update_user": "WELLS", "update_date": "2017-02-01T23:34:44Z", "well_guid": "1eda03cc-f73e-4215-9fdc-ebf147989ced", "identification_plate_number": 28539, "owner_full_name": "DOMINICA GRABERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "MABLE LAKE ROAD 1", "city": "LUMBY", "legal_lot": "18", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "27.5 KM MABLE LAKE ROAD SOUTH", "construction_start_date": "2015-08-26", "construction_end_date": "2015-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": "1059.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "30.00", "finished_well_depth": "30.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.60", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609484, "utm_easting": 380640, "utm_accuracy_code": "H", "bcgs_id": 10447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112740, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "WELLS", "update_date": "2017-02-02T19:16:00Z", "well_guid": "24e9b705-476d-45d5-9f7a-767eb1f258a7", "identification_plate_number": 39057, "owner_full_name": "VIVIANA COLBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "GEOTECH", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "938 CORNER OF HEMBRIE MOUNTAIN ROAD AND SUMMERLAND PRINCETON ROAD 1", "city": "PRINCETON", "legal_lot": "11155", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL ON UPPER NORTHWEST OF HAYFIELD OFF HEMBRIE MOUNTAIN ROAD APPROXIMATELY 300' FROM ONE FENCELINE AND APPROXIMATELY 150' FROM OTHER", "construction_start_date": "2015-04-24", "construction_end_date": "2015-04-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": "3128.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "30.000", "bedrock_depth": "134.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "210.00", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490647, "utm_easting": 682867, "utm_accuracy_code": "H", "bcgs_id": 4882, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112741, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "WELLS", "update_date": "2017-02-02T20:05:41Z", "well_guid": "6f0dcef5-d692-419b-a01d-311b2ffc6f9f", "identification_plate_number": 39082, "owner_full_name": "DINNIE MCCLANCY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "223 PINERIDGE DRIVE 1", "city": "PRINCETON", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "TOWARD LINK LAKE; WELL LOCATION APPROXIMATELY 80' SOUTHEAST OF REAR OF MOBILE HOME ON RIGHT SIDE OF DRIVEWAY", "construction_start_date": "2015-11-04", "construction_end_date": "2015-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": "3123.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "11 BAGS BENTONITE CHIPS", "backfill_depth": "20.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "158.00", "finished_well_depth": "156.00", "final_casing_stick_up": "30.000", "bedrock_depth": "156.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "130.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5505654, "utm_easting": 692571, "utm_accuracy_code": "H", "bcgs_id": 4904, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112742, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "WELLS", "update_date": "2017-02-03T17:55:41Z", "well_guid": "f7b6d29c-a8e1-4c90-b9c1-10d7715ae130", "identification_plate_number": 39084, "owner_full_name": "DORTHEA DOORBAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "136 FARLIEGH LAKE ROAD 1", "city": "PENTICTON", "legal_lot": "15", "legal_plan": "23234", "legal_district_lot": "11444", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "106536476", "well_location_description": "WELL LOCATION APPROXIMATELY 150' IN FROM ROAD ON UPPER NORTHWEST SIDE OF PROPERTY", "construction_start_date": "2015-11-16", "construction_end_date": "2015-11-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "2419.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "19.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "39.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "41.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5480613, "utm_easting": 300834, "utm_accuracy_code": "H", "bcgs_id": 364, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112743, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "WELLS", "update_date": "2017-02-02T22:20:25Z", "well_guid": "1cc3dae6-b3e7-4c47-a25f-d95c0aaf5877", "identification_plate_number": 41840, "owner_full_name": "CANDICE FIRMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "29223 HUNTINGDON ROAD 1", "city": "ABBOTSFORD", "legal_lot": "11", "legal_plan": "NWP4590", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": "13", "legal_range": " ", "land_district": "36", "legal_pid": "111094184", "well_location_description": "EXC: PT Subdivided by PL 42813", "construction_start_date": "2014-08-12", "construction_end_date": "2014-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "69.00", "finished_well_depth": "67.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "34.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5429893, "utm_easting": 542798, "utm_accuracy_code": "H", "bcgs_id": 3859, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112744, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:06:29Z", "update_user": "WELLS", "update_date": "2017-02-03T18:18:46Z", "well_guid": "e6bdc67c-0234-4ea8-8fe8-ff25c748dd29", "identification_plate_number": 39083, "owner_full_name": "SYLVIA MATTEUCCI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "137 BEECROFT RIVER ROAD 1", "city": "CAWSTON", "legal_lot": "114", "legal_plan": "KAP1573", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": "52", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 150' EAST OF HOUSE BETWEEN DRIVEWAYS NEXT TO OLD PUMPHOUSE", "construction_start_date": "2015-11-10", "construction_end_date": "2015-11-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "1281.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "8 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "42.00", "finished_well_depth": "42.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "53.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5449221, "utm_easting": 298796, "utm_accuracy_code": "H", "bcgs_id": 163, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112745, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:35:25Z", "update_user": "WELLS", "update_date": "2017-02-03T18:41:05Z", "well_guid": "4dc40cae-e83e-4612-b00b-5aeb2c972188", "identification_plate_number": 39081, "owner_full_name": "THAIN SCAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "172 4TH STREET 1", "city": "TULAMEEN", "legal_lot": "116", "legal_plan": "128", "legal_district_lot": "117", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "112913847", "well_location_description": "WELL LOCATED IN VERY FRONT OF LOT APPROXIMATELY 4' FROM POWER POLE LOT AT END OF 4TH STREET AT BASE OF MOUNTAIN RIGHT SIDE", "construction_start_date": "2015-11-02", "construction_end_date": "2015-11-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "7 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "15.50", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490622, "utm_easting": 661873, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112746, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:50:47Z", "update_user": "WELLS", "update_date": "2017-02-03T18:53:47Z", "well_guid": "4bc63d1b-9ae0-4abf-95e0-a2d85de70c74", "identification_plate_number": 39080, "owner_full_name": "BURLIE RINGROSE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "113 3RD STREET 1", "city": "TULAMEEN", "legal_lot": "13", "legal_plan": "123", "legal_district_lot": "1128", "legal_block": "9", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "106286895", "well_location_description": "WELL LOCATION ON FAR LEFT CORNER OF REAR OF LOT", "construction_start_date": "2015-10-29", "construction_end_date": "2015-10-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.590000", "ground_elevation": "2552.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "6 BAGS OF BENTONITE CHIPS", "backfill_depth": "18.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5490478, "utm_easting": 662291, "utm_accuracy_code": "H", "bcgs_id": 4867, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112747, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "WELLS", "update_date": "2017-02-03T22:16:41Z", "well_guid": "0c2e580f-2786-4bd4-ada4-799b9b34a49f", "identification_plate_number": 39078, "owner_full_name": "MARLEY KNOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1297 GLENMORE DRIVE 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED APPROXIMATELY 150M NORTH OF SHOP ON LEFT SIDE OF CART PATH (NEAR END OF CART PATH)", "construction_start_date": "2015-10-16", "construction_end_date": "2015-10-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "1278.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": "9 BAGS BENTONITE CHIPS", "backfill_depth": "19.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "141.00", "finished_well_depth": "300.00", "final_casing_stick_up": "36.000", "bedrock_depth": "185.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5529668, "utm_easting": 324130, "utm_accuracy_code": "H", "bcgs_id": 8993, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112748, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "WELLS", "update_date": "2017-02-03T22:37:52Z", "well_guid": "0458e2a0-fc8d-4441-b734-11001c6a569b", "identification_plate_number": 39077, "owner_full_name": "MARENA AVRAHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1918 BARKLY ROAD 1", "city": "WEST KELOWNA", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 3/4 UP DRIVEWAY ON LEFT HAND SIDE APPROXIMATELY 100' SOUTH OF HOUSE", "construction_start_date": "2015-10-05", "construction_end_date": "2015-10-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "2026.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "4 BAGS BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "36.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "299.00", "well_yield": "1.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINUM CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5528758, "utm_easting": 314196, "utm_accuracy_code": "H", "bcgs_id": 552, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112749, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "WELLS", "update_date": "2017-02-03T23:07:42Z", "well_guid": "3340ecc8-b174-4636-a671-77b91611410d", "identification_plate_number": 39076, "owner_full_name": "VALENTINE EMM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "422 TREPANIER 1", "city": "PEACHLAND", "legal_lot": "15", "legal_plan": "33145", "legal_district_lot": "1524", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "103239063", "well_location_description": "WELL LOCATION APPROXIMATELY 60' OFF LOWER SOUTHEAST CORNER OF HOUSE", "construction_start_date": "2015-09-29", "construction_end_date": "2015-09-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "04f271a3-5fae-4344-9b7d-6cd2b7b6f8d5", "well_identification_plate_attached": "HOSE CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.530000", "ground_elevation": "1866.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "10 BAGS OF BENTONITE CHIPS", "backfill_depth": "17.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "59.00", "finished_well_depth": "40.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "11.50", "well_yield": "22.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELD ON CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5522350, "utm_easting": 300654, "utm_accuracy_code": "H", "bcgs_id": 503, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112750, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "WELLS", "update_date": "2017-04-04T19:04:39Z", "well_guid": "bf644abf-64a3-4bd9-b89d-3f8d37e4cc0f", "identification_plate_number": null, "owner_full_name": "HALE CURNOW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108695148", "well_location_description": "NONE PROVIDED", "construction_start_date": "2003-05-15", "construction_end_date": "2003-05-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "68e7e0a8-e5c1-4b09-b128-a20589eaa0a5", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": "NATURAL MUD CUTTINGS", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "116.00", "finished_well_depth": "113.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5556007, "utm_easting": 334512, "utm_accuracy_code": "A", "bcgs_id": 9615, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112752, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "WELLS", "update_date": "2017-05-03T23:21:33Z", "well_guid": "baffabc1-dbef-4197-9d37-ef144d77bc7a", "identification_plate_number": 42646, "owner_full_name": "AIMEE LIGHTNING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1794 GLADWIN ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-02-02", "construction_end_date": "2017-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "115.00", "finished_well_depth": "115.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "70.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431554, "utm_easting": 550077, "utm_accuracy_code": "H", "bcgs_id": 3913, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112753, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "WELLS", "update_date": "2017-05-03T23:11:49Z", "well_guid": "b612d315-f923-4b99-8d62-be11a2e0a3e1", "identification_plate_number": 42850, "owner_full_name": "MATTHEW EMM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "26225 GRANT AVENUE 1", "city": "MISSION", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-30", "construction_end_date": "2017-01-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "71.00", "finished_well_depth": "69.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449928, "utm_easting": 536642, "utm_accuracy_code": "H", "bcgs_id": 4406, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112754, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "WELLS", "update_date": "2017-05-03T22:33:35Z", "well_guid": "1ca440b0-002b-4fc1-bc08-8686978e92be", "identification_plate_number": 42644, "owner_full_name": "SALEM VARRAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "24299 32ND AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "126814668", "well_location_description": " ", "construction_start_date": "2017-01-26", "construction_end_date": "2017-01-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "248.00", "finished_well_depth": "248.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "145.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434352, "utm_easting": 532758, "utm_accuracy_code": "H", "bcgs_id": 3869, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112755, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "WELLS", "update_date": "2017-05-03T22:46:30Z", "well_guid": "db47c218-901a-498c-b903-9756875ef48e", "identification_plate_number": 42643, "owner_full_name": "TORRY MOGGIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2349 264TH STREET 1", "city": "ALDERGROVE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-25", "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "96.00", "finished_well_depth": "95.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5432608, "utm_easting": 537061, "utm_accuracy_code": "H", "bcgs_id": 3862, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112756, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "0940bd6f-0a16-49a2-8366-8b894a06750a", "identification_plate_number": 42840, "owner_full_name": "NEILLA FARDOE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "28490 123RD AVENUE 1", "city": "MAPLE RIDGE", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "128061527", "well_location_description": "BARE LOT", "construction_start_date": "2017-01-25", "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "256.00", "finished_well_depth": "256.00", "final_casing_stick_up": "24.000", "bedrock_depth": "71.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "103.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5452503, "utm_easting": 541296, "utm_accuracy_code": "H", "bcgs_id": 4412, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112757, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "1038a328-066b-4071-a05d-92ac53d4f5cf", "identification_plate_number": 42648, "owner_full_name": "ESTRELLA DILUCIA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 25469 84TH AVENUE", "city": "LANGLEY", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "112242306", "well_location_description": "*", "construction_start_date": "2017-01-12", "construction_end_date": "2017-01-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "390.00", "finished_well_depth": "376.00", "final_casing_stick_up": "60.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": "7.00", "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5444828, "utm_easting": 535127, "utm_accuracy_code": "H", "bcgs_id": 4207, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112758, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "c461216a-a399-4b00-a851-b8f43b6fb098", "identification_plate_number": 42810, "owner_full_name": "MICKI\n VARVARA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 108 VEALE ROAD 1", "city": "MERRITT", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "128248911", "well_location_description": "BARE LOT", "construction_start_date": "2017-01-16", "construction_end_date": "2017-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "390.00", "finished_well_depth": "388.00", "final_casing_stick_up": "66.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "280.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5547256, "utm_easting": 657325, "utm_accuracy_code": "H", "bcgs_id": 4947, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112759, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "b338189e-d9db-40fc-a3dc-e9a37ffc15e9", "identification_plate_number": 42817, "owner_full_name": "TAMIKO CALVERLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 11511 HIGHWAY 97C NORTH 1", "city": "MERRITT", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-01-24", "construction_end_date": "2017-02-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "265.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "160.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5568644, "utm_easting": 653774, "utm_accuracy_code": "H", "bcgs_id": 12232, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112760, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:14Z", "update_user": "WELLS", "update_date": "2017-10-12T19:19:17Z", "well_guid": "d9d748f4-ccc7-4e16-bc3c-43d65ea3adcb", "identification_plate_number": null, "owner_full_name": "MARGIT CROSIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123", "city": "OSOYOOS", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "126027909", "well_location_description": "HAYNES CREEK AT HIGHWAY 3, OSOYOOS", "construction_start_date": "2003-12-21", "construction_end_date": "2003-12-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bfebc9a7-9612-4c4b-a9a6-1de647534280", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": null, "bedrock_depth": "222.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "96.00", "well_yield": "2.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5430987, "utm_easting": 331156, "utm_accuracy_code": "J", "bcgs_id": 12294, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112761, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "WELLS", "update_date": "2017-02-14T18:44:58Z", "well_guid": "ade2374a-b005-49ee-8b74-508e6b3f09ed", "identification_plate_number": null, "owner_full_name": "HUBERT MANDRE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 NOT PROVIDED 1", "city": "BLUEBERRY IR", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "1983-09-13", "construction_end_date": "1983-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": "2136.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "9.80", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "239.00", "finished_well_depth": "239.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "33.80", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6285450, "utm_easting": 615835, "utm_accuracy_code": "J", "bcgs_id": 12704, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112762, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "WELLS", "update_date": "2017-02-14T18:44:35Z", "well_guid": "0958e79e-8896-4abd-9aea-3decfd6b6494", "identification_plate_number": null, "owner_full_name": "GARRETT GILLIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 1 PILGRIM", "city": "BLUEBERRY RIVER IR", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "11487", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "116993314", "well_location_description": "BLUEBERRY RIVER IR (IR 205)", "construction_start_date": "1992-03-16", "construction_end_date": "1992-03-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "220.00", "final_casing_stick_up": "2.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6285534, "utm_easting": 615727, "utm_accuracy_code": "J", "bcgs_id": 12704, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112763, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:20:28Z", "update_user": "WELLS", "update_date": "2017-02-14T21:08:08Z", "well_guid": "c03c6316-a390-4aea-a00d-878bb0df367a", "identification_plate_number": null, "owner_full_name": "COLENE FELDHUHN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 267 ROAD 1", "city": " ", "legal_lot": "1SW 1/4", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": "24", "legal_township": "84", "legal_range": "19", "land_district": "44", "legal_pid": "114782758", "well_location_description": "W6W", "construction_start_date": "2016-01-19", "construction_end_date": "2016-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "2331.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "24.00", "finished_well_depth": "24.00", "final_casing_stick_up": "34.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6241051, "utm_easting": 632200, "utm_accuracy_code": "A", "bcgs_id": 8464, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112764, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:56:15Z", "update_user": "WELLS", "update_date": "2017-02-14T21:10:18Z", "well_guid": "f96c11f8-1a1e-4f81-8834-fdffd53d60c7", "identification_plate_number": null, "owner_full_name": "RONNA GUILAYN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 267 ROAD 1", "city": " ", "legal_lot": "1SW 1/4", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": "24", "legal_township": "84", "legal_range": "19", "land_district": "44", "legal_pid": "114782758", "well_location_description": "W6W", "construction_start_date": "2016-01-19", "construction_end_date": "2016-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.500000", "ground_elevation": "2341.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "9.50", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "20.00", "finished_well_depth": "20.00", "final_casing_stick_up": "35.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6240993, "utm_easting": 632172, "utm_accuracy_code": "H", "bcgs_id": 8464, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112765, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T07:42:22Z", "update_user": "WELLS", "update_date": "2017-02-14T21:12:22Z", "well_guid": "44917d27-28b6-48e4-928c-a5caa5a04b78", "identification_plate_number": null, "owner_full_name": "ROONEY TEMPLEMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 267 ROAD 1", "city": " ", "legal_lot": "1SW 1/4", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": "24", "legal_township": "84", "legal_range": "19", "land_district": "44", "legal_pid": "114782758", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-01-19", "construction_end_date": "2016-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "2328.80", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "9.50", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "20.00", "finished_well_depth": "20.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6240984, "utm_easting": 632231, "utm_accuracy_code": "H", "bcgs_id": 8464, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112766, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "WELLS", "update_date": "2017-02-14T18:42:18Z", "well_guid": "62b6dfd9-680b-49d1-a858-e8279896e1cb", "identification_plate_number": null, "owner_full_name": "TUCK BRUCKENTAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123", "city": " ", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "CHEVRON PATRY D-28-B/094-0-12 WELLSITE", "construction_start_date": "2015-11-18", "construction_end_date": "2015-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "52dfe15f-7581-48d3-841e-a7cec297fbe6", "well_identification_plate_attached": "N/A", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "1463.80", "ground_elevation_method": "GPS", "drilling_method": "MUD_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "139.00", "surface_seal_thickness": "1.32", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "JET", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1486.00", "finished_well_depth": "1486.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "202.10", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "BOLTED FLANGE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6598634, "utm_easting": 459521, "utm_accuracy_code": "H", "bcgs_id": 13797, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112767, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T18:55:27Z", "update_user": "WELLS", "update_date": "2017-02-10T19:01:57Z", "well_guid": "681d3616-c4ad-429e-a013-61259674cb98", "identification_plate_number": null, "owner_full_name": "SONIA COEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123 6301 Doumont Road 1", "city": "Nanaimo", "legal_lot": "1", "legal_plan": "123", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109436651", "well_location_description": "South of home at corner of fenced blueberry patch", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "13.00", "final_casing_stick_up": "8.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "0.01", "artesian_pressure": null, "well_cap_type": "None", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "30", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5452808, "utm_easting": 423045, "utm_accuracy_code": "H", "bcgs_id": 3238, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112768, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "WELLS", "update_date": "2017-02-14T18:43:48Z", "well_guid": "e776f10f-75a6-4911-b594-b2a569483865", "identification_plate_number": null, "owner_full_name": "KEV CICCOTTO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123", "city": " ", "legal_lot": "1", "legal_plan": "54433", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "CHEVRON PATRY D-28-B/094-0-12 WELLSITE", "construction_start_date": "2015-11-11", "construction_end_date": "2015-12-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "52dfe15f-7581-48d3-841e-a7cec297fbe6", "well_identification_plate_attached": "N/A", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "1464.00", "ground_elevation_method": "GPS", "drilling_method": "MUD_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "139.00", "surface_seal_thickness": "1.32", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "24.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1502.00", "finished_well_depth": "1502.00", "final_casing_stick_up": "17.000", "bedrock_depth": "84.60", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "176.14", "well_yield": "330.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "BOLTED FLANGE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6598634, "utm_easting": 459539, "utm_accuracy_code": "H", "bcgs_id": 13797, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112769, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T22:00:44Z", "update_user": "WELLS", "update_date": "2017-03-17T21:04:05Z", "well_guid": "31f45a9d-a0e9-4e55-a131-e48d41923ecd", "identification_plate_number": null, "owner_full_name": "LES ALEJANDRI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "123", "city": " ", "legal_lot": "11", "legal_plan": "EPP19520", "legal_district_lot": "1348", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "49", "legal_pid": "128916930", "well_location_description": " ", "construction_start_date": "1988-05-06", "construction_end_date": "1988-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "83.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "34.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "16", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5598617, "utm_easting": 650623, "utm_accuracy_code": "H", "bcgs_id": 11224, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112770, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "WELLS", "update_date": "2017-02-11T02:12:17Z", "well_guid": "70892165-5ad2-4f04-8ff1-dfa6f500b68a", "identification_plate_number": null, "owner_full_name": "HUMFRID BIRKENHEAD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "123", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2000-06-07", "construction_end_date": "2000-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ee401a70-ec48-45b3-8be9-6e6386d8d74c", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "310.00", "finished_well_depth": "310.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "110.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": "H", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112771, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "WELLS", "update_date": "2017-02-11T01:25:36Z", "well_guid": "1067368e-20d1-4b72-9a58-5a4a7cc3747a", "identification_plate_number": null, "owner_full_name": "MERRILL BASILIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "POWELL ROAD (80TH STREET) 1", "city": "HUDSON'S HOPE", "legal_lot": "1NE 1/4", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "30", "legal_township": "81", "legal_range": "25", "land_district": "44", "legal_pid": "114815079", "well_location_description": "W6M", "construction_start_date": "2000-08-06", "construction_end_date": "2000-08-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ee401a70-ec48-45b3-8be9-6e6386d8d74c", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "342.00", "finished_well_depth": "342.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "147.00", "well_yield": "1.000", "artesian_flow": "1.00", "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6212449, "utm_easting": 569056, "utm_accuracy_code": "J", "bcgs_id": 8346, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112772, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:10:30Z", "update_user": "WELLS", "update_date": "2017-02-11T02:42:43Z", "well_guid": "9bf6c51b-2ce1-4fa2-b242-3eeb4c91d1a3", "identification_plate_number": null, "owner_full_name": "JEFFERSON MISSENDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "D-38-C/94P8; MINERAL TITLES GRID (094P08D038C)", "construction_start_date": "2005-03-07", "construction_end_date": "2005-03-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74fae3a9-9fed-46c0-b575-a0ff51535d3f", "well_identification_plate_attached": "NOT APPLICABLE", "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "510.00", "finished_well_depth": "510.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT APPLICABLE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6574319, "utm_easting": 643857, "utm_accuracy_code": "G", "bcgs_id": 13798, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112773, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:42:26Z", "update_user": "WELLS", "update_date": "2017-02-11T03:13:43Z", "well_guid": "4eb4a377-a7b1-47b5-893d-92f8c33790d3", "identification_plate_number": null, "owner_full_name": "HASKEL IACOBINI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "1960 KLO ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "129656893", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-18", "decommission_end_date": "2016-03-18", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "1180.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": "9.00", "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "4", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5526074, "utm_easting": 323880, "utm_accuracy_code": "H", "bcgs_id": 556, "decommission_reason": "WELL NO LONGER NEEDED", "decommission_method": "PUMPED", "sealant_material": "NOT PROVIDED", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112774, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:19Z", "update_user": "WELLS", "update_date": "2017-02-11T03:27:08Z", "well_guid": "ebc6d258-bd48-4b2f-b76e-5ea5dab54dfc", "identification_plate_number": null, "owner_full_name": "SHEPARD HARBACH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "22331 LABONTE AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-08-03", "decommission_end_date": "2016-08-03", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "57.62", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": "DIRT/GRAVEL", "backfill_depth": "1.00", "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5443657, "utm_easting": 528727, "utm_accuracy_code": "H", "bcgs_id": 4137, "decommission_reason": "NOT PROVIDED", "decommission_method": "POURED", "sealant_material": "BENTONITE/BIRDS EYE GRAVEL", "backfill_material": "DIRT/GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112775, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:33:43Z", "update_user": "WELLS", "update_date": "2017-02-11T03:36:23Z", "well_guid": "2e9a7f08-9018-4d86-9894-5454fdb921ff", "identification_plate_number": null, "owner_full_name": "WOODY MOORHEAD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "6404 NORTH BONAPARTE ROAD 1", "city": "PRESSY LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "18272", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "SKETCH ATTACHED = FACING PRESSY LAKE, WELL IS TO LEFT OF CABIN SLIGHTLY OUTSIDE OF PROPERTY LINE.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-07-04", "decommission_end_date": "2016-07-04", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "26.00", "finished_well_depth": "26.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5692786, "utm_easting": 636103, "utm_accuracy_code": "H", "bcgs_id": 5703, "decommission_reason": "WELL WAS ON WRONG PROPERTY", "decommission_method": "POURED", "sealant_material": "BENSEAL", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112776, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "WELLS", "update_date": "2017-02-11T04:51:51Z", "well_guid": "76aeaa4c-3b9e-4faf-b3b5-61072faf6683", "identification_plate_number": null, "owner_full_name": "SHELBA DUCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "GEOTECH", "well_subclass": "5a315106-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "1799 RIVERSIDE ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SKETCH PROVIDED=~8' SOUTH OF BOILER HOUSE", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2001-06-02", "decommission_end_date": "2001-06-02", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": "65.00", "ground_elevation_method": "20K_MAP", "drilling_method": "AUGER", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "73.00", "finished_well_depth": "73.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431643, "utm_easting": 553113, "utm_accuracy_code": "H", "bcgs_id": 3925, "decommission_reason": "GEOTECHNICAL BOREHOLE", "decommission_method": "PUMPED", "sealant_material": "NOT PROVIDED", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112777, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:13:15Z", "update_user": "WELLS", "update_date": "2017-02-11T05:37:51Z", "well_guid": "6a70a025-377b-4aef-b9f2-f57c14b08997", "identification_plate_number": null, "owner_full_name": "WOODY KAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "2546 192 STREET 1", "city": "SURREY", "legal_lot": "1A", "legal_plan": "BCP49888", "legal_district_lot": "1", "legal_block": " ", "legal_section": "22", "legal_township": "7", "legal_range": " ", "land_district": "36", "legal_pid": "128916883", "well_location_description": "SKETCH PROVIDED, NO DESCRIPTION", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-12-14", "decommission_end_date": "2016-12-14", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "78.00", "finished_well_depth": "78.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.60", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5432836, "utm_easting": 522599, "utm_accuracy_code": "H", "bcgs_id": 3798, "decommission_reason": "THE PROPERTY IS BEING REDEVELOPED AND THE WATER WELL WILL NO LONGER BE REQUIRED", "decommission_method": null, "sealant_material": "NOT PROVIDED", "backfill_material": "BENTONITE CHIPS", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112778, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:35:11Z", "update_user": "WELLS", "update_date": "2017-02-11T05:45:37Z", "well_guid": "4a478be9-412e-4b78-8484-e17a915a6b51", "identification_plate_number": null, "owner_full_name": "ROBERS SCRUBY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "2546 192 STREET 1", "city": "SURREY", "legal_lot": "1A", "legal_plan": "BCP49888", "legal_district_lot": "1", "legal_block": " ", "legal_section": "22", "legal_township": "7", "legal_range": " ", "land_district": "36", "legal_pid": "128916883", "well_location_description": "SKETCH PROVIDED, NO DESCRIPTION", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-12-14", "decommission_end_date": "2016-12-14", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "8.00", "finished_well_depth": "8.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "3.50", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5432888, "utm_easting": 522634, "utm_accuracy_code": "H", "bcgs_id": 3798, "decommission_reason": "THE PROPERTY IS BEING REDEVELOPED AND THE WATER WELL WILL NO LONGER BE REQUIRED", "decommission_method": null, "sealant_material": "NOT PROVIDED", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112779, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "WELLS", "update_date": "2017-02-11T07:31:39Z", "well_guid": "f71eeb08-4281-4f90-90b4-7f1c3920289c", "identification_plate_number": null, "owner_full_name": "DIANN BOWERY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-26", "construction_end_date": "2016-03-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-26", "decommission_end_date": "2016-03-28", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "395.00", "finished_well_depth": "395.00", "final_casing_stick_up": null, "bedrock_depth": "95.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "5.56", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6255579, "utm_easting": 651007, "utm_accuracy_code": "H", "bcgs_id": 8637, "decommission_reason": "DRY HOLE", "decommission_method": "PUMPED", "sealant_material": "CEMENT", "backfill_material": "BENTONITE CHIPS", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112780, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "WELLS", "update_date": "2017-02-11T07:32:01Z", "well_guid": "7375fd8a-0613-4bd3-b551-ef3d1d0f5fd0", "identification_plate_number": null, "owner_full_name": "URSULINE TANFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "34", "legal_township": "87", "legal_range": "15", "land_district": null, "legal_pid": "123456789", "well_location_description": "LAND DISTRICT=W6", "construction_start_date": "2016-03-06", "construction_end_date": "2016-03-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-06", "decommission_end_date": "2016-03-08", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "MUD_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "376.50", "finished_well_depth": "376.50", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "5.13", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6274385, "utm_easting": 666429, "utm_accuracy_code": "H", "bcgs_id": 13669, "decommission_reason": "DRY HOLE", "decommission_method": "PUMPED", "sealant_material": "CEMENT", "backfill_material": "BENTONITE", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112781, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:43:12Z", "update_user": "WELLS", "update_date": "2017-02-11T07:32:27Z", "well_guid": "3125f013-ccdc-4edf-afe7-edea03c4f1bf", "identification_plate_number": null, "owner_full_name": "MARLIE WEST", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-25", "construction_end_date": "2016-03-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-25", "decommission_end_date": "2016-03-25", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "45.00", "finished_well_depth": "45.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "5.13", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6255579, "utm_easting": 651007, "utm_accuracy_code": "H", "bcgs_id": 8637, "decommission_reason": "UNCONTROLLABLE FORMATIONS", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "CHIPS", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112782, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "WELLS", "update_date": "2017-02-11T07:33:01Z", "well_guid": "0a4ec97d-2bb1-4e33-9e07-0f222f113df4", "identification_plate_number": null, "owner_full_name": "EDMON D'EATHE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-21", "construction_end_date": "2016-03-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-21", "decommission_end_date": "2016-03-24", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "215.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "5.13", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6268809, "utm_easting": 657707, "utm_accuracy_code": "H", "bcgs_id": 13799, "decommission_reason": "LACK OF WATER, CAVING FORMATIONS", "decommission_method": "PUMPED", "sealant_material": "CEMENT", "backfill_material": "BENTONITE CHIPS", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112783, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:18:11Z", "update_user": "WELLS", "update_date": "2017-02-11T20:06:21Z", "well_guid": "493a8e8c-3ff6-4e24-8d30-2e51d57c496e", "identification_plate_number": null, "owner_full_name": "CANDY BEXON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-09-15", "decommission_end_date": "2015-09-15", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "8.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "63.10", "finished_well_depth": "63.10", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449014, "utm_easting": 487589, "utm_accuracy_code": "H", "bcgs_id": 4074, "decommission_reason": "WELL FAILED", "decommission_method": "POURED", "sealant_material": "3/8 BENTONITE", "backfill_material": "CONCRETE PLUG", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112784, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:47:28Z", "update_user": "WELLS", "update_date": "2017-02-11T20:06:42Z", "well_guid": "d3df1d20-928b-471e-9ea5-34af368a5832", "identification_plate_number": null, "owner_full_name": "LEZLIE STAINBURN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-09-10", "decommission_end_date": "2015-09-10", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.30", "finished_well_depth": "60.30", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "22.88", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5448930, "utm_easting": 487817, "utm_accuracy_code": "H", "bcgs_id": 4074, "decommission_reason": "WELL FAILED/SCREEN COLLAPSE", "decommission_method": "POURED", "sealant_material": "3/8 BENTONITE", "backfill_material": "QUICKRETE", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112785, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:57:52Z", "update_user": "WELLS", "update_date": "2017-02-11T20:07:42Z", "well_guid": "feb71990-db38-4cb3-a81d-8010d03aa060", "identification_plate_number": null, "owner_full_name": "CALVIN ANDREONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-09-28", "decommission_end_date": "2015-09-28", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "62.20", "finished_well_depth": "62.20", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.60", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5448930, "utm_easting": 487655, "utm_accuracy_code": "H", "bcgs_id": 4074, "decommission_reason": "WELL FAILED/SCREEN COLLAPSE", "decommission_method": "POURED", "sealant_material": "3/8 BENTONITE", "backfill_material": "QUICKRETE", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112786, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "WELLS", "update_date": "2017-02-11T20:05:42Z", "well_guid": "343e8a3e-98e5-4f66-bdca-d60a8872c7e6", "identification_plate_number": null, "owner_full_name": "CHET BRANGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "20412 66 AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-11-23", "decommission_end_date": "2015-11-23", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "131.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "14.00", "finished_well_depth": "14.00", "final_casing_stick_up": "1.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "36", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441160, "utm_easting": 525071, "utm_accuracy_code": "H", "bcgs_id": 4125, "decommission_reason": "NOT IN USE", "decommission_method": "POURED", "sealant_material": "3/8 BENTONITE", "backfill_material": "NATIVE SOIL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112787, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:26:22Z", "update_user": "WELLS", "update_date": "2017-02-11T20:05:17Z", "well_guid": "379ea706-65e7-4df1-9494-7d6510143144", "identification_plate_number": null, "owner_full_name": "RUDD IACOBINI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-04-05", "decommission_end_date": "2016-04-05", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "164.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "34.90", "finished_well_depth": "34.90", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "7.35", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434145, "utm_easting": 523663, "utm_accuracy_code": "H", "bcgs_id": 3820, "decommission_reason": "NOT IN USE", "decommission_method": "POURED", "sealant_material": "3/8 BENTONITE", "backfill_material": "CRUSH GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112788, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:29:38Z", "update_user": "WELLS", "update_date": "2017-02-11T20:04:36Z", "well_guid": "5f952197-f905-469e-9e53-e696ed9aaf9c", "identification_plate_number": null, "owner_full_name": "HELENKA HEMSTEAD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "7755 202A STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-29", "decommission_end_date": "2016-03-29", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "229.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "218.65", "finished_well_depth": "218.65", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "134.83", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5443474, "utm_easting": 524615, "utm_accuracy_code": "H", "bcgs_id": 4133, "decommission_reason": "NOT IN USE", "decommission_method": "POURED", "sealant_material": "3/8\" BENTONITE", "backfill_material": "3/8\" CRUSH GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112789, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:39:35Z", "update_user": "WELLS", "update_date": "2017-02-11T20:04:07Z", "well_guid": "6c81359a-f20c-43c4-923a-2abe0f8accca", "identification_plate_number": null, "owner_full_name": "WANG BERNOCCHI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SKETCH PROVIDED: 32' WEST IF 201A STREET, VERY SLIGHTLY NORTH OF THE DRIVEWAY", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-05-20", "decommission_end_date": "2016-05-20", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "108.26", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "44.00", "finished_well_depth": "44.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "28.20", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5435723, "utm_easting": 524447, "utm_accuracy_code": "H", "bcgs_id": 3823, "decommission_reason": "NOT IN USE (HOOK UP TO CITY WATER)", "decommission_method": "POURED", "sealant_material": "3/8\" BENTONITE", "backfill_material": "NATIVE SOIL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112790, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:59:55Z", "update_user": "WELLS", "update_date": "2017-02-11T20:03:19Z", "well_guid": "8b31f151-178b-4e36-a6a8-a9686b2b93c4", "identification_plate_number": null, "owner_full_name": "ELIAS FLATT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SKETCH PROVIDED: 50-75' SOUTH OF HIGHWAY 29. EXACTLY ACROSS FROM BOUCHER LAKE ROAD.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-04-05", "decommission_end_date": "2016-04-05", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": "2249.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "53.33", "finished_well_depth": "53.33", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "29.30", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6188763, "utm_easting": 583142, "utm_accuracy_code": "H", "bcgs_id": 8210, "decommission_reason": "NOT IN USE", "decommission_method": "POURED", "sealant_material": "3/8\" BENTONITE", "backfill_material": "NATIVE SOIL AND BEDDING SAND", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112791, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:22:05Z", "update_user": "WELLS", "update_date": "2017-02-11T20:26:52Z", "well_guid": "86527e74-f534-4f43-857a-f39535e16d73", "identification_plate_number": null, "owner_full_name": "DOLLI PIPPIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "SALES PIT 1", "city": "QUESNEL", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-07-25", "decommission_end_date": "2016-07-25", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": "2022.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "46.00", "finished_well_depth": "46.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5865081, "utm_easting": 537401, "utm_accuracy_code": "H", "bcgs_id": 6483, "decommission_reason": "NOT REQUIRED", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112792, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:31:15Z", "update_user": "WELLS", "update_date": "2017-02-11T20:45:41Z", "well_guid": "733a8a01-7ea2-4705-8a23-2bd31f662fee", "identification_plate_number": null, "owner_full_name": "SAUDRA ENGELBRECHT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-07-25", "decommission_end_date": "2016-07-25", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": "2022.00", "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "46.00", "finished_well_depth": "46.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "2", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5865091, "utm_easting": 537411, "utm_accuracy_code": "H", "bcgs_id": 6483, "decommission_reason": "NOT REQUIRED", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NOT PROVIDED", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112793, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:53:56Z", "update_user": "WELLS", "update_date": "2017-02-11T20:57:14Z", "well_guid": "d8e96b5b-087b-4cd1-8b51-9b987e1454dd", "identification_plate_number": null, "owner_full_name": "ROONEY FENELOW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "DW 98-11 HECTOR DR (CITY ROADWAY) 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": "KAP31125", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-03-29", "decommission_end_date": "2016-03-29", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5613705, "utm_easting": 686370, "utm_accuracy_code": "H", "bcgs_id": 9147, "decommission_reason": "NO LONGER REQUIRED", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "PEA GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112794, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T21:02:16Z", "update_user": "WELLS", "update_date": "2017-02-11T21:04:53Z", "well_guid": "f6f82488-7029-452e-9eae-9912cc0b28ec", "identification_plate_number": null, "owner_full_name": "TABBY GRCIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "DW 98-10 HUNTER PLACE, CITY ROADWAY 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": "KAP31125", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2015-12-07", "decommission_end_date": "2015-12-09", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5613854, "utm_easting": 686307, "utm_accuracy_code": "H", "bcgs_id": 9147, "decommission_reason": "NO LONGER PRODUCING", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "PEA GRAVEL", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112795, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "WELLS", "update_date": "2017-07-07T18:04:07Z", "well_guid": "7cbbf079-deaa-476f-bc33-d72afa366cdf", "identification_plate_number": 41963, "owner_full_name": "CHRISTINA GOODSAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "Deep Creek Road 1", "city": "Enderby", "legal_lot": "1B", "legal_plan": "KAP 40645", "legal_district_lot": "1", "legal_block": " ", "legal_section": "6", "legal_township": "19", "legal_range": "9", "land_district": "25", "legal_pid": "112929298", "well_location_description": "260m East of Deep Creek Road, 250m West of Deep Creek", "construction_start_date": "2004-03-29", "construction_end_date": "2004-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "TO CASING", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": "1800.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "3.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "84.00", "finished_well_depth": "84.00", "final_casing_stick_up": "24.000", "bedrock_depth": "83.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "350.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5606153, "utm_easting": 341695, "utm_accuracy_code": "A", "bcgs_id": 1904, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112796, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T19:59:25Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "0ea3b477-3d52-4060-a029-b920621e1ca9", "identification_plate_number": 40076, "owner_full_name": "QUEENIE AUBREY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " fording river rd 1", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on operations side", "construction_start_date": "2017-02-10", "construction_end_date": "2017-02-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "195.00", "finished_well_depth": "195.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "plate", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5555671, "utm_easting": 651024, "utm_accuracy_code": "H", "bcgs_id": 13887, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112797, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "WELLS", "update_date": "2018-02-19T20:11:15Z", "well_guid": "7b002075-da7d-41c3-b213-c9db4fbee3d8", "identification_plate_number": null, "owner_full_name": "KATINA PIETZKER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": "Lower Post", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "06", "legal_pid": "123456789", "well_location_description": "500m south of Alaska Highway, 630m north of Lower Post Access Road", "construction_start_date": "2012-11-09", "construction_end_date": "2012-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a74042fd-e0f4-4ccc-8085-f29d224c1e09", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.70", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "90.90", "final_casing_stick_up": "33.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "41.50", "well_yield": "13208.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6643912, "utm_easting": 528247, "utm_accuracy_code": "H", "bcgs_id": 13800, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112798, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:11Z", "update_user": "WELLS", "update_date": "2018-02-19T20:11:15Z", "well_guid": "0c75d151-18d2-4bd3-ae20-9a9acc3d3915", "identification_plate_number": null, "owner_full_name": "ABBI BOTTOMLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": "LOWER POST", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-05-15", "construction_end_date": "2015-05-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a74042fd-e0f4-4ccc-8085-f29d224c1e09", "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.10", "surface_seal_thickness": "1.50", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "98.40", "finished_well_depth": "98.40", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "41.50", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6643912, "utm_easting": 528247, "utm_accuracy_code": "H", "bcgs_id": 13800, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112799, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T00:21:34Z", "update_user": "WELLS", "update_date": "2017-02-15T00:22:48Z", "well_guid": "5098e466-1a8c-4f88-be08-12183f9ef156", "identification_plate_number": null, "owner_full_name": "IONA RAWKESBY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "524 SMUGGLERS COVE ROAD 1", "city": "BOWEN ISLAND", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WITHIN STRATA PLAN VAS2806", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "150.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5473529, "utm_easting": 475321, "utm_accuracy_code": "H", "bcgs_id": 4557, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112800, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "fa32cc2f-6272-4684-bd7f-7d52bbd00205", "identification_plate_number": 34286, "owner_full_name": "FLETCH SINOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "19091 36TH AVENUE 1", "city": "SURREY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "PARKING LOT", "construction_start_date": "2017-02-10", "construction_end_date": "2017-02-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "123.00", "finished_well_depth": "120.00", "final_casing_stick_up": "2.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5435225, "utm_easting": 522454, "utm_accuracy_code": "H", "bcgs_id": 3822, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112802, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "WELLS", "update_date": "2017-12-04T22:06:46Z", "well_guid": "4290078d-0439-4999-902d-d324522e8e2a", "identification_plate_number": 41469, "owner_full_name": "JENILEE BRUCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "MCKELVIE ROAD 1", "city": "TAHSIS", "legal_lot": "1", "legal_plan": "25028", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NONE PROVIDED", "construction_start_date": "2014-03-31", "construction_end_date": "2014-04-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "82.00", "finished_well_depth": "76.80", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "10.75", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5533780, "utm_easting": 668509, "utm_accuracy_code": "A", "bcgs_id": 13802, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112803, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "c53b6483-7d41-49e5-8c4f-33606550aa07", "identification_plate_number": 50168, "owner_full_name": "LISSA SPRAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " LOWER GANGES ROAD 1", "city": "SALTSPRING ISLAND", "legal_lot": "11", "legal_plan": "VIP63799", "legal_district_lot": "1", "legal_block": " ", "legal_section": "3", "legal_township": " ", "legal_range": "3", "land_district": "66", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-01-24", "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "138.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "421.00", "finished_well_depth": "421.00", "final_casing_stick_up": "18.000", "bedrock_depth": "21.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.125", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5412065, "utm_easting": 462418, "utm_accuracy_code": "H", "bcgs_id": 2985, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112804, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "3f08ad02-2910-4a5a-8e76-b5d4e325fcd2", "identification_plate_number": 50144, "owner_full_name": "CLEM SCAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "186 SOUTH RIDGE 1", "city": "SALTSPRING ISLAND", "legal_lot": "17", "legal_plan": "VIP39103", "legal_district_lot": "1", "legal_block": " ", "legal_section": "15", "legal_township": " ", "legal_range": "2", "land_district": "66", "legal_pid": "100968935", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-01-27", "construction_end_date": "2017-01-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": "230.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "355.00", "finished_well_depth": "355.00", "final_casing_stick_up": "16.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5402592, "utm_easting": 467376, "utm_accuracy_code": "H", "bcgs_id": 2871, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112805, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:25:03Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "764f9537-417e-4f34-a654-ae26f40354a4", "identification_plate_number": 50163, "owner_full_name": "LINDIE VOUSDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "856 SUNSET DRIVE 1", "city": "SALTSPRING", "legal_lot": "119", "legal_plan": "VIP9115", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "105545510", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-01", "construction_end_date": "2017-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.270000", "longitude": "-122.530000", "ground_elevation": "84.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "385.00", "finished_well_depth": "385.00", "final_casing_stick_up": "16.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "8.000", "artesian_flow": "1.00", "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5417430, "utm_easting": 456856, "utm_accuracy_code": "H", "bcgs_id": 3069, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112806, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "5d1f58b3-6fca-44b0-b0d5-f9d1e4799716", "identification_plate_number": 50134, "owner_full_name": "ZED COUSHE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "185 NEILD RD", "city": "METCHOSIN", "legal_lot": "15", "legal_plan": "VIP30597", "legal_district_lot": "1", "legal_block": " ", "legal_section": "116", "legal_township": " ", "legal_range": " ", "land_district": "30", "legal_pid": "100844004", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-10", "construction_end_date": "2017-02-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.220000", "longitude": "-122.550000", "ground_elevation": "631.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "205.00", "finished_well_depth": "205.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5361532, "utm_easting": 458345, "utm_accuracy_code": "H", "bcgs_id": 2551, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112811, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:21Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "1ab4a349-7362-4b8c-825e-bf90b0a865a9", "identification_plate_number": 49345, "owner_full_name": "KALIE REARDON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "631 Bridge Road 1", "city": "Rosedale", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside pumphouse, NW corner.", "construction_start_date": "2017-02-22", "construction_end_date": "2017-02-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "On well head stick-up.", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "Topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "45.00", "finished_well_depth": "35.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5452658, "utm_easting": 589905, "utm_accuracy_code": "H", "bcgs_id": 4735, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112812, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "2ee6355b-101d-4fa1-b2a8-792b2b155b39", "identification_plate_number": 50150, "owner_full_name": "PASCAL MUSTILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " GOGGS & EVERALL 1", "city": "WHITE ROCK", "legal_lot": "12", "legal_plan": "25563", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": "1", "legal_range": " ", "land_district": "36", "legal_pid": "129076242", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-11-22", "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "TO STICK UP", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "319.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "22.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "3'' minus gravel", "backfill_depth": "3.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "40.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "394.00", "finished_well_depth": "391.50", "final_casing_stick_up": "42.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "308.00", "well_yield": "600.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "TACK WELD PLATE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5430665, "utm_easting": 513911, "utm_accuracy_code": "H", "bcgs_id": 3757, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112813, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-23T19:56:46Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "391d4ee4-e441-4055-a677-137e891376ec", "identification_plate_number": 39173, "owner_full_name": "VINCE LABRONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " RIVER BOTTOM ROAD 1", "city": "DUNCAN", "legal_lot": "11-6-2", "legal_plan": "RSBC 2634R", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "IR #5", "construction_start_date": "2015-10-13", "construction_end_date": "2015-10-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "210.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "PEA GRAVEL", "backfill_depth": "4.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "52.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "HINGE + HASP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5401017, "utm_easting": 438926, "utm_accuracy_code": "H", "bcgs_id": 2768, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112814, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "27b65e1a-9709-4746-a7c2-11278eb06899", "identification_plate_number": 42446, "owner_full_name": "RADDY BOLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " CLARK RD 1", "city": "SOOKE", "legal_lot": "18", "legal_plan": " ", "legal_district_lot": "142", "legal_block": " ", "legal_section": "38", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "109497731", "well_location_description": "WELL #6 IN SUBDIV", "construction_start_date": "2015-11-05", "construction_end_date": "2015-11-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "561.00", "finished_well_depth": "561.00", "final_casing_stick_up": "18.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "36.30", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359446, "utm_easting": 438757, "utm_accuracy_code": "H", "bcgs_id": 2496, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112815, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "15ea77e1-0b45-41da-ab29-dfe7c4e35552", "identification_plate_number": 42544, "owner_full_name": "MARLON WILCOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " CLERK RD 1", "city": "SOOKE", "legal_lot": "111", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "38", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "109497731", "well_location_description": "WELL #2 IN SUBDIV", "construction_start_date": "2015-10-16", "construction_end_date": "2015-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "187.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "600.00", "finished_well_depth": "600.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359186, "utm_easting": 438236, "utm_accuracy_code": "H", "bcgs_id": 2496, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112816, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "44933d8a-9f99-4e34-86e1-7a6aeb91355a", "identification_plate_number": 40577, "owner_full_name": "WES MIGUET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " CLARK RD 1", "city": "SOOKE", "legal_lot": "19", "legal_plan": " ", "legal_district_lot": "142", "legal_block": " ", "legal_section": "38", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "109497731", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-03-08", "construction_end_date": "2016-03-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": "329.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1020.00", "finished_well_depth": "1020.00", "final_casing_stick_up": "12.000", "bedrock_depth": "21.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359181, "utm_easting": 438517, "utm_accuracy_code": "H", "bcgs_id": 2496, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112818, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-27T18:54:34Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "883058db-c6c8-4573-bb50-ceb61a881f17", "identification_plate_number": 43614, "owner_full_name": "DANIT TILLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2197 Kerr Road 1", "city": "Coombs", "legal_lot": "1B", "legal_plan": "32886", "legal_district_lot": "1149", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "33", "legal_pid": "123456789", "well_location_description": "Parcel A of Lot B.", "construction_start_date": "2016-11-10", "construction_end_date": "2016-11-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.260000", "longitude": "-122.560000", "ground_elevation": "425.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "205.00", "finished_well_depth": "205.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin Proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5461448, "utm_easting": 397073, "utm_accuracy_code": "H", "bcgs_id": 3204, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112819, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "8c44dffa-ce05-4a43-aa8a-38614cfeab51", "identification_plate_number": 49346, "owner_full_name": "RADDY MELLOY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9055 PETERS RD 1", "city": "AGASSIZ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside driveway south of house", "construction_start_date": "2017-02-23", "construction_end_date": "2017-02-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "WELL HEAD STICKUP", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "TOPSOIL", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "37.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5460163, "utm_easting": 593545, "utm_accuracy_code": "H", "bcgs_id": 9557, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112820, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "WELLS", "update_date": "2017-09-27T19:59:58Z", "well_guid": "156d8a67-3b87-4b59-9226-69fb27280bae", "identification_plate_number": 10429, "owner_full_name": "CHARMAINE O'SCANDALL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1484 Wilkie Road 1", "city": "Williams Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BETWEEN THE TWO WEST FASTBALL DIAMONDS", "construction_start_date": "2006-10-05", "construction_end_date": "2006-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "3035.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "415.00", "final_casing_stick_up": "20.000", "bedrock_depth": "14.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "steel plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5771989, "utm_easting": 556240, "utm_accuracy_code": "H", "bcgs_id": 6286, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112822, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "e9bedd0c-4a4e-4da2-8d3c-1bf22ce4f851", "identification_plate_number": 50138, "owner_full_name": "WHIT MORSLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " TIMBERLINE WAY 1", "city": "JORDAN RIVER", "legal_lot": "11", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-12-09", "construction_end_date": "2016-12-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "609.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "720.00", "finished_well_depth": "720.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5365792, "utm_easting": 421299, "utm_accuracy_code": "H", "bcgs_id": 9047, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112823, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "dc814593-676a-44bb-a11e-dac76fa5ae6f", "identification_plate_number": 42842, "owner_full_name": "MARYANNA HOWLETT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3245 KARSON ROAD 1", "city": "CHILLIWACK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", "construction_start_date": "2017-02-20", "construction_end_date": "2017-02-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "817.00", "finished_well_depth": "817.00", "final_casing_stick_up": "30.000", "bedrock_depth": "156.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434739, "utm_easting": 568704, "utm_accuracy_code": "H", "bcgs_id": 3999, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112824, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "c5cb0bb7-d69e-40f0-ba13-d75ca29f0fa6", "identification_plate_number": 42866, "owner_full_name": "RODI STILLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1339 227TH STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-02-20", "construction_end_date": "2017-02-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "174.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5430393, "utm_easting": 529506, "utm_accuracy_code": "H", "bcgs_id": 3844, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112825, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:21Z", "update_user": "WELLS", "update_date": "2017-12-21T19:52:58Z", "well_guid": "e0b92418-ffd6-44c4-a587-26a392cf0b36", "identification_plate_number": 35076, "owner_full_name": "HARDY KLEHYN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "23620 32ND AVE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-03", "construction_end_date": "2017-01-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "PIPE", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "2.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434180, "utm_easting": 531420, "utm_accuracy_code": "H", "bcgs_id": 3869, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112826, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:08:27Z", "update_user": "WELLS", "update_date": "2017-12-21T19:50:19Z", "well_guid": "a21a00d4-ec4e-4be1-8550-a3d13efe6aeb", "identification_plate_number": 35077, "owner_full_name": "GUALTERIO TICEHURST", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "53558 McGREGOR ROAD 1", "city": "CHILLIWACK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-05", "construction_end_date": "2017-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "PIPE", "latitude": "49.270000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "156.00", "finished_well_depth": "156.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5451075, "utm_easting": 591250, "utm_accuracy_code": "H", "bcgs_id": 4736, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112827, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "WELLS", "update_date": "2017-12-21T19:49:53Z", "well_guid": "d09696ad-943f-4260-87b7-adf40bc0529c", "identification_plate_number": 35078, "owner_full_name": "NANCI WHITEMARSH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6678 SUMAS PRAIRIE ROAD 1", "city": "CHILLIWACK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-11", "construction_end_date": "2017-01-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "PIPE", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "184.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441576, "utm_easting": 569710, "utm_accuracy_code": "H", "bcgs_id": 4297, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112828, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "WELLS", "update_date": "2017-12-21T19:51:55Z", "well_guid": "a16bf86d-ae9c-441b-9e82-112cb38f89dc", "identification_plate_number": 35079, "owner_full_name": "GRETHEL MURIEL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10991 SYLVESTER ROAD 1", "city": "MISSION", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-24", "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "PIPE", "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "306.00", "finished_well_depth": "306.00", "final_casing_stick_up": "30.000", "bedrock_depth": "64.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5450170, "utm_easting": 556107, "utm_accuracy_code": "H", "bcgs_id": 4436, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112829, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T18:57:30Z", "update_user": "WELLS", "update_date": "2017-05-03T23:36:23Z", "well_guid": "6694f85c-4594-45e5-935a-8db0726cb8f7", "identification_plate_number": 37932, "owner_full_name": "KAYLEY PETRASCH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Highway 95A 1", "city": " ", "legal_lot": "1", "legal_plan": "88635", "legal_district_lot": "111579", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "127833089", "well_location_description": "Highway 95A PL 88635 DL 11579 KD", "construction_start_date": "2012-08-21", "construction_end_date": "2012-08-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.290000", "longitude": "-122.500000", "ground_elevation": "3560.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "43.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5505138, "utm_easting": 576978, "utm_accuracy_code": "H", "bcgs_id": 1229, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112830, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "9dc5762f-0869-47e0-b4e6-cd9be01a2e8b", "identification_plate_number": 42524, "owner_full_name": "CONWAY ALEXIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "19", "legal_plan": " ", "legal_district_lot": "142", "legal_block": " ", "legal_section": "38", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "109497731", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2015-11-24", "construction_end_date": "2015-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "350.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1140.00", "finished_well_depth": "1140.00", "final_casing_stick_up": "16.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359223, "utm_easting": 438573, "utm_accuracy_code": "H", "bcgs_id": 2496, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112831, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T21:01:46Z", "update_user": "WELLS", "update_date": "2017-09-01T23:39:22Z", "well_guid": "4312cf82-9306-48b7-9141-25932309c945", "identification_plate_number": 40567, "owner_full_name": "CORNELIA DEANDREIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4584 WESTWOOD DR 1", "city": "DUNCAN", "legal_lot": "19", "legal_plan": "VIP89360", "legal_district_lot": "1", "legal_block": " ", "legal_section": "10", "legal_township": " ", "legal_range": "8", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-03-23", "construction_end_date": "2016-03-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": null, "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5404481, "utm_easting": 440591, "utm_accuracy_code": "H", "bcgs_id": 9636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112833, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "20ed3303-e54d-47cd-8620-abab4972f13b", "identification_plate_number": 42764, "owner_full_name": "JAYNE HENRYSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " HARWOOD RD 1", "city": "LANTZVILLE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "471", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "33", "legal_pid": "100060097", "well_location_description": "WELL # 7, 2015", "construction_start_date": "2015-07-24", "construction_end_date": "2015-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "1046.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "656.00", "finished_well_depth": "656.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "90.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5453823, "utm_easting": 420084, "utm_accuracy_code": "H", "bcgs_id": 3243, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112834, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "bcf1577e-59f6-4cb8-a188-2c80a46d612d", "identification_plate_number": 42522, "owner_full_name": "WELCH GUBBINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " HIGHWAY #99 1", "city": "SQUAMISH", "legal_lot": "1", "legal_plan": "3565", "legal_district_lot": "11211", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2015-11-04", "construction_end_date": "2015-11-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": "847.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "48.000", "bedrock_depth": "52.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.00", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5524959, "utm_easting": 488507, "utm_accuracy_code": "H", "bcgs_id": 13858, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112835, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "d6b61b2a-a295-4417-80d0-a517863b6e28", "identification_plate_number": 40519, "owner_full_name": "ERL CICCOTTO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5585 WEST RIVERBOTTOM RD 1", "city": "DUNCAN", "legal_lot": "18", "legal_plan": "VIP28275", "legal_district_lot": "1", "legal_block": " ", "legal_section": "7", "legal_township": " ", "legal_range": "2", "land_district": "50", "legal_pid": "100038831", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-07-14", "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "252.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "41.00", "finished_well_depth": "39.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5402006, "utm_easting": 435560, "utm_accuracy_code": "H", "bcgs_id": 2766, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112836, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T19:13:03Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "04db47a1-71d8-4f54-a158-378fcb3bb9ec", "identification_plate_number": 42783, "owner_full_name": "CORNELIA SCROGGIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " N/A 1", "city": "RIVERS INLET", "legal_lot": "11542", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "2", "land_district": "11", "legal_pid": "123456789", "well_location_description": "KATIT INDIAN RESERVE #1, RIVERS INLET", "construction_start_date": "2016-05-10", "construction_end_date": "2016-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": "63.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "94.00", "finished_well_depth": "93.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "500.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5727077, "utm_easting": 622387, "utm_accuracy_code": "H", "bcgs_id": 13273, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112837, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:05:31Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "1b07a08d-7b36-4b0e-a14c-2a3e4ec596de", "identification_plate_number": 50151, "owner_full_name": "LOELLA BEW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8505 WEST SAANICH 1", "city": "NORTH SAANICH", "legal_lot": "1A", "legal_plan": "VIP68778", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1", "legal_township": " ", "legal_range": "2W", "land_district": "40", "legal_pid": "124473499", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-16", "construction_end_date": "2017-02-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": "251.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "605.00", "finished_well_depth": "605.00", "final_casing_stick_up": "16.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5384546, "utm_easting": 465190, "utm_accuracy_code": "H", "bcgs_id": 2709, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112838, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:32:25Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "8b2d9e83-47ce-49f5-8a9f-686bda2ee073", "identification_plate_number": 50152, "owner_full_name": "ALEXANDRO BRAUNTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1733 MILLSTREAM RD 1", "city": "VICTORIA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "31", "legal_township": " ", "legal_range": " ", "land_district": "24", "legal_pid": "101548751", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-22", "construction_end_date": "2017-02-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "456.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "290.00", "finished_well_depth": "290.00", "final_casing_stick_up": "24.000", "bedrock_depth": "2.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5372113, "utm_easting": 462131, "utm_accuracy_code": "H", "bcgs_id": 2602, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112839, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:02:57Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "77c5e454-25fb-4904-961a-998b48cdcfeb", "identification_plate_number": 50170, "owner_full_name": "KARRIE CARILLO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " PAISLEY RD 1", "city": "PENDER ISLAND", "legal_lot": "12A", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "C", "legal_section": "23", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "106009620", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-27", "construction_end_date": "2017-02-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "24.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.330", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5406887, "utm_easting": 476778, "utm_accuracy_code": "H", "bcgs_id": 3007, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112840, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:23Z", "update_user": "WELLS", "update_date": "2017-05-03T23:51:56Z", "well_guid": "96ed7b92-9c15-4736-9ce8-7d243ed47ea4", "identification_plate_number": 52411, "owner_full_name": "TIPHANY SKEATS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8785 STONEY HILL ROAD 1", "city": "DUNCAN", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-16", "construction_end_date": "2017-02-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": "235.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "14.000", "bedrock_depth": "19.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5405121, "utm_easting": 458561, "utm_accuracy_code": "H", "bcgs_id": 2857, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112841, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "cf769e3d-b4be-438b-afd7-b4c48cf1d959", "identification_plate_number": 50157, "owner_full_name": "GIULIA BIESTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3433 RAVENCREST 1", "city": "COBBLE HILL", "legal_lot": "11", "legal_plan": "VIP51058", "legal_district_lot": "1", "legal_block": " ", "legal_section": "11", "legal_township": " ", "legal_range": "8", "land_district": "53", "legal_pid": "116471733", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-20", "construction_end_date": "2017-02-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "438.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "208.00", "finished_well_depth": "206.00", "final_casing_stick_up": "15.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "155.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5392610, "utm_easting": 458428, "utm_accuracy_code": "H", "bcgs_id": 2728, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112842, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-10T17:18:11Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "4c381cf1-1b14-457a-bdae-bd692098a827", "identification_plate_number": 40047, "owner_full_name": "GABRIEL BLABEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "highway 3 highway 1", "city": "sparwood", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "mine operations", "construction_start_date": "2017-03-07", "construction_end_date": "2017-03-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "83.00", "finished_well_depth": "83.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "1000.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "plate", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5512093, "utm_easting": 656095, "utm_accuracy_code": "H", "bcgs_id": 13888, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112843, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "b3b7cc4c-412d-4f74-87e5-d8ba44346aec", "identification_plate_number": 42853, "owner_full_name": "ALBERTO WEEKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "24615 36TH AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-03-10", "construction_end_date": "2017-03-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "211.00", "finished_well_depth": "209.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "130.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5435067, "utm_easting": 533369, "utm_accuracy_code": "H", "bcgs_id": 3874, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112844, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:13:26Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "1d7a408a-e282-4c76-b8d5-27826c4704e6", "identification_plate_number": 42852, "owner_full_name": "BLISSE MAASZE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "80 TOWNLINE ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "CORNER OF FIELD", "construction_start_date": "2017-03-02", "construction_end_date": "2017-03-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "28.00", "finished_well_depth": "28.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5428044, "utm_easting": 546808, "utm_accuracy_code": "H", "bcgs_id": 3901, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112845, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "59701ddd-8877-4a72-be1e-d057e5eb30da", "identification_plate_number": 42818, "owner_full_name": "DANTE MEEDENDORPE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3933 BOUNDARY ROAD 1", "city": "RICHMOND", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NORTH OF BUILDING", "construction_start_date": "2017-02-20", "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "49.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "13.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "116.00", "finished_well_depth": "106.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "250.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5448173, "utm_easting": 503099, "utm_accuracy_code": "H", "bcgs_id": 4093, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112846, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "f875d192-e3e8-439c-ba12-e107c118643f", "identification_plate_number": 42870, "owner_full_name": "SHANI ORWIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2244 16TH STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-02-27", "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "317.00", "finished_well_depth": "315.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5432170, "utm_easting": 527437, "utm_accuracy_code": "H", "bcgs_id": 3803, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112847, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "a8d8af8f-c89d-486f-a960-e51b24b2a5da", "identification_plate_number": 42647, "owner_full_name": "SHEFFIELD GAUCHE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3115 224TH STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", "construction_start_date": "2017-02-27", "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "245.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "180.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5433981, "utm_easting": 532927, "utm_accuracy_code": "H", "bcgs_id": 3872, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112848, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "ed023b57-70aa-41cd-a58b-e589b0bdcd39", "identification_plate_number": 52410, "owner_full_name": "LORRY LODEKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2970 GLEN EAGLES RD 1", "city": "SHAWNIGAN LAKE", "legal_lot": "15", "legal_plan": "VIP2210", "legal_district_lot": "131", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "106410014", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-02-27", "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": "389.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "301.00", "finished_well_depth": "180.00", "final_casing_stick_up": "14.000", "bedrock_depth": "33.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5390302, "utm_easting": 448156, "utm_accuracy_code": "H", "bcgs_id": 2681, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112849, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:21Z", "well_guid": "0e43f6d6-cf89-4807-82e2-ac4ec1e25255", "identification_plate_number": 49354, "owner_full_name": "FRANNY WILFING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1154 Fadden Rd 1", "city": "Abbotsford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Fadden Road 25 meters East of Fadden Road", "construction_start_date": "2017-03-21", "construction_end_date": "2017-03-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head stickup", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "11.00", "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "35.00", "finished_well_depth": "35.00", "final_casing_stick_up": "19.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5430251, "utm_easting": 558051, "utm_accuracy_code": "H", "bcgs_id": 3923, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112850, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:24:36Z", "update_user": "WELLS", "update_date": "2017-10-25T17:37:03Z", "well_guid": "38feb0ec-b254-4964-9285-15d957c5f79f", "identification_plate_number": null, "owner_full_name": "DOM GRABERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4936 BARRIERE TOWN ROAD 1", "city": "BARRIERE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "105260361", "well_location_description": "NORTHEAST CORNER OF BRADFORD PARK IN THE DISTRICT OF BARRIERE", "construction_start_date": null, "construction_end_date": "2017-01-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "258.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5674593, "utm_easting": 701038, "utm_accuracy_code": null, "bcgs_id": 5647, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112851, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T17:01:16Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "2493f96d-6364-40eb-b8c8-b9ab67b68dc1", "identification_plate_number": 40194, "owner_full_name": "CORINE HEARNDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "fording mi FORDING RIVER MINE ROAD 1", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "MINE OPS", "construction_start_date": "2017-01-13", "construction_end_date": "2017-03-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "196.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "35.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "656.50", "finished_well_depth": "656.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "525.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "14", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562867, "utm_easting": 653378, "utm_accuracy_code": "H", "bcgs_id": 13889, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112852, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "74e6db53-916c-4aa5-9b22-c45cbc006d51", "identification_plate_number": 51593, "owner_full_name": "KIAH KLUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "A545/94A12", "construction_start_date": "2016-11-29", "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "33.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "623.00", "finished_well_depth": "623.00", "final_casing_stick_up": "24.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "193.70", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6285635, "utm_easting": 573885, "utm_accuracy_code": "H", "bcgs_id": 13803, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112853, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "51606c7f-c928-4d9d-99b4-2fbb8f0cbb59", "identification_plate_number": 51592, "owner_full_name": "SIOBHAN BELLOCHT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "A-54-5/94-A-12", "construction_start_date": "2016-11-30", "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "161.00", "finished_well_depth": "161.00", "final_casing_stick_up": "24.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "104.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6283809, "utm_easting": 573888, "utm_accuracy_code": "H", "bcgs_id": 13804, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112854, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "74349fa8-1142-48d0-8404-0801bd578f25", "identification_plate_number": 31924, "owner_full_name": "KIAH CARTMILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "A-54-5-94-A-12; MILE 100, OFF THE ALASKA HIGHWAY, LEFT SIDE OF HWY", "construction_start_date": "2016-09-22", "construction_end_date": "2016-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "2985.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "641.00", "finished_well_depth": "641.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "372.20", "well_yield": "12.000", "artesian_flow": "372.20", "artesian_pressure": null, "well_cap_type": "WELDED CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6285705, "utm_easting": 573820, "utm_accuracy_code": "H", "bcgs_id": 13803, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112856, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "3e9c271c-fdc5-4fa1-a8ed-e3b23c26a341", "identification_plate_number": 49355, "owner_full_name": "FELICITY HECTOR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6610 Pioneer Avenue 1", "city": "Agassiz", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "20ft behind shop", "construction_start_date": "2017-03-16", "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "On well head stick-up.", "latitude": "49.290000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "52.00", "finished_well_depth": "48.60", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.60", "well_yield": "130.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "aluminium", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5454823, "utm_easting": 588891, "utm_accuracy_code": "H", "bcgs_id": 4741, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112857, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:37Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "9e6eae4f-4a02-4880-a7cc-8d41176d363d", "identification_plate_number": 38916, "owner_full_name": "LINNET HALLAGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-14", "construction_end_date": "2016-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "2754.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "117.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "375.00", "finished_well_depth": "375.00", "final_casing_stick_up": "25.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "318.20", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6278627, "utm_easting": 591038, "utm_accuracy_code": "H", "bcgs_id": 13805, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112858, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "WELLS", "update_date": "2017-12-19T21:36:09Z", "well_guid": "ef647180-5477-4a5a-b7e4-0a71209d7575", "identification_plate_number": 51594, "owner_full_name": "FILIDE TEMPLEMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "12-36-87-23-W6", "construction_start_date": "2017-01-03", "construction_end_date": "2017-01-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": "2602.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "36.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "212.80", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6272656, "utm_easting": 589815, "utm_accuracy_code": "H", "bcgs_id": 13789, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112859, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:15:00Z", "update_user": "WELLS", "update_date": "2017-05-03T23:48:20Z", "well_guid": "4ea4a3ac-73b5-4299-ab76-7181f4cd7ef3", "identification_plate_number": 52409, "owner_full_name": "IONA LUDDY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "ANDERTON ROAD 1", "city": "COURTENAY", "legal_lot": "1A", "legal_plan": "49168", "legal_district_lot": "1", "legal_block": "72", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "114863898", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-09", "construction_end_date": "2017-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "179.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "110.00", "finished_well_depth": "102.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "42.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "HINGE + HASP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5509028, "utm_easting": 360522, "utm_accuracy_code": "H", "bcgs_id": 3562, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112860, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "17869974-b37f-4248-a9d9-a588731e3fed", "identification_plate_number": 38978, "owner_full_name": "WES DUINBLETON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 300RD 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100000000", "well_location_description": "16-20-87-22-W6", "construction_start_date": "2016-12-20", "construction_end_date": "2016-12-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "2817.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "58.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "341.00", "finished_well_depth": "341.00", "final_casing_stick_up": "24.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "121.00", "well_yield": "4.000", "artesian_flow": "121.00", "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6270221, "utm_easting": 594269, "utm_accuracy_code": "H", "bcgs_id": 13836, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112861, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:32Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "08f708f2-ebf3-4511-8dc0-2045b4127bcf", "identification_plate_number": 38988, "owner_full_name": "GUS NECREWS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 300 ROAD 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100000000", "well_location_description": "16-20-87-22-W6", "construction_start_date": "2016-12-21", "construction_end_date": "2016-12-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": "2813.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "61.00", "finished_well_depth": "61.00", "final_casing_stick_up": "24.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "43.20", "well_yield": "0.200", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6270214, "utm_easting": 594272, "utm_accuracy_code": "H", "bcgs_id": 13836, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112862, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "6b5acaba-a500-4fd1-8989-dd67f1aa27bf", "identification_plate_number": 51597, "owner_full_name": "JERRIE STEART", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1930", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-25", "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "2400.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "40.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "117.00", "finished_well_depth": "117.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "54.40", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6299844, "utm_easting": 664160, "utm_accuracy_code": "H", "bcgs_id": 13806, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112863, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:04Z", "update_user": "WELLS", "update_date": "2017-11-27T22:21:42Z", "well_guid": "128a0853-e9f3-4bff-9b94-7a102d66e5b2", "identification_plate_number": 38975, "owner_full_name": "DIANDRA BRITZIUS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "KWADACHA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-18", "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": "2523.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "106.50", "finished_well_depth": "106.50", "final_casing_stick_up": "39.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.50", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6368895, "utm_easting": 341327, "utm_accuracy_code": "H", "bcgs_id": 12301, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112864, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "9179340e-3f1e-4e23-98ec-23e74d156c08", "identification_plate_number": 52481, "owner_full_name": "JAN STOOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " YOUBOU RD 1", "city": "LAKE COWICHAN", "legal_lot": "1A", "legal_plan": "EPP56119", "legal_district_lot": "1", "legal_block": "488", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "17", "legal_pid": "129748020", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-14", "construction_end_date": "2017-03-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "665.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "GRAVEL", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "153.00", "finished_well_depth": "116.00", "final_casing_stick_up": "16.000", "bedrock_depth": "143.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "53.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5409788, "utm_easting": 419944, "utm_accuracy_code": "H", "bcgs_id": 3122, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112865, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "61001bb2-a6fd-4782-ada3-165647b21da1", "identification_plate_number": 51598, "owner_full_name": "DOM TANSLY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " ALASKA HIGHWAY 1", "city": "FIRESIDE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100000000", "well_location_description": "MILE 543 ALASKA HIGHWAY, BUILDING NUMBER 7100, MAINTENANCE CAMP", "construction_start_date": "2016-10-12", "construction_end_date": "2016-10-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": "2094.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": "50.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "127.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "93.20", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6616628, "utm_easting": 604020, "utm_accuracy_code": "H", "bcgs_id": 13837, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112866, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "5919ecad-757b-4eea-a46c-ba8784a11ffa", "identification_plate_number": 52408, "owner_full_name": "VINITA DEBRUIJN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " NANAIMO RIVER RD 1", "city": "NANAIMO", "legal_lot": "19", "legal_plan": "EPP14236", "legal_district_lot": "1", "legal_block": "589", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "19", "legal_pid": "128787439", "well_location_description": "NOTHING ENTERED ", "construction_start_date": "2017-03-15", "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "546.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "52.00", "finished_well_depth": "52.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5436737, "utm_easting": 424302, "utm_accuracy_code": "H", "bcgs_id": 11320, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112867, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T17:46:27Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "fc13b423-9deb-4a57-8043-3bc3785fb18b", "identification_plate_number": 49353, "owner_full_name": "BETTEANNE GOODE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5145 Wells Road 1", "city": "Agassiz", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside Pump", "construction_start_date": "2017-03-17", "construction_end_date": "2017-03-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "stickup", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "18.00", "finished_well_depth": "18.00", "final_casing_stick_up": "17.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.50", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455077, "utm_easting": 586015, "utm_accuracy_code": "H", "bcgs_id": 4725, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112868, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:07Z", "update_user": "WELLS", "update_date": "2017-05-12T23:16:45Z", "well_guid": "9c59a5b6-31ff-4a39-a3ab-b51d9346acf6", "identification_plate_number": 31958, "owner_full_name": "KINNY CARDO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " FARRELL CREEK ROAD 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100000000", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-09", "construction_end_date": "2016-09-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", "well_identification_plate_attached": "TOP OF CASING", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "2127.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "295.00", "finished_well_depth": "295.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "95.10", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6230190, "utm_easting": 578844, "utm_accuracy_code": "H", "bcgs_id": 13838, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112869, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:25:54Z", "update_user": "WELLS", "update_date": "2017-10-12T17:46:56Z", "well_guid": "c1c5e6e4-112b-4388-8dcc-7a10213e7860", "identification_plate_number": 39831, "owner_full_name": "MARSIELLA ZIEMS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9183 KNOUFF LAKE 1", "city": "HEFFLEY CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-22", "construction_end_date": "2016-07-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": "3914.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "114.00", "finished_well_depth": "114.00", "final_casing_stick_up": "27.000", "bedrock_depth": "25.75", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "46.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5649136, "utm_easting": 701955, "utm_accuracy_code": "H", "bcgs_id": 5388, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112870, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "WELLS", "update_date": "2017-10-12T18:06:44Z", "well_guid": "dd37d6ed-e48a-4298-bde4-554c4464578e", "identification_plate_number": 39839, "owner_full_name": "KARE CURRUM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-25", "construction_end_date": "2016-05-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": "1651.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "564.00", "finished_well_depth": null, "final_casing_stick_up": "21.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5638179, "utm_easting": 337604, "utm_accuracy_code": "H", "bcgs_id": 2211, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112871, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "465629e2-c367-4602-8c1b-025a22b38735", "identification_plate_number": 39826, "owner_full_name": "JOELLY BOLDOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "PINITAN LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100000000", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-28", "construction_end_date": "2016-07-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": "2966.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "564.00", "finished_well_depth": "564.00", "final_casing_stick_up": "28.000", "bedrock_depth": "33.17", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.625", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5623773, "utm_easting": 709511, "utm_accuracy_code": "H", "bcgs_id": 5284, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112872, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:09:18Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "20e26d87-b687-488f-bbd0-16f9160c7c99", "identification_plate_number": 39834, "owner_full_name": "HEDA PADDICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " MCKIM ROAD 1", "city": "PRITCHARD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-02", "construction_end_date": "2016-08-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "2900.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "294.00", "finished_well_depth": "294.00", "final_casing_stick_up": "27.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5610358, "utm_easting": 299824, "utm_accuracy_code": "H", "bcgs_id": 13785, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112873, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:18:32Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "d96bc536-d803-4c82-9436-f673fb244eee", "identification_plate_number": 33029, "owner_full_name": "FAIRLEIGH PULESTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2658 KAISER ROAD 1", "city": "SALMON ARM", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-05", "construction_end_date": "2016-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": "1340.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "58.00", "finished_well_depth": "58.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "3.00", "well_yield": "200.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5598487, "utm_easting": 333317, "utm_accuracy_code": "H", "bcgs_id": 9391, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112874, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:25:55Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "d07e0328-1c90-4f1f-a8f4-fc6cffa7b5dd", "identification_plate_number": 39822, "owner_full_name": "HUMFRID STOODERS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5415 TUNKWA LAKE ROAD 1", "city": "LOGAN LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-11", "construction_end_date": "2016-08-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.230000", "longitude": "-122.500000", "ground_elevation": "3788.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "26.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5607617, "utm_easting": 651858, "utm_accuracy_code": "H", "bcgs_id": 5151, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112875, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:35:31Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "5581d1f6-a257-4ba0-be78-c6daa195c813", "identification_plate_number": 39836, "owner_full_name": "WILIE TONKINSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2565 SQUILAX ANGLEMOUNT ROAD 1", "city": "LEE CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-16", "construction_end_date": "2016-08-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "1141.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "37.50", "final_casing_stick_up": "32.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5642231, "utm_easting": 320709, "utm_accuracy_code": "H", "bcgs_id": 2249, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112876, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "64c8915f-5052-4d28-898e-f6ef69b2b30e", "identification_plate_number": 39825, "owner_full_name": "ALEXANDRINA ROSKELLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4185 DIXON MOUNTAIN ROAD 1", "city": "BARRIERE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-18", "construction_end_date": "2016-08-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "1700.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "97.83", "final_casing_stick_up": "34.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "61.50", "well_yield": "18.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5671741, "utm_easting": 703808, "utm_accuracy_code": "H", "bcgs_id": 5650, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112877, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:53:24Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "5cf6f029-283e-489a-b867-ae2a5e77e540", "identification_plate_number": 39878, "owner_full_name": "BERNADENE KEARNS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3288 LONG LAKE ROAD 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-01", "construction_end_date": "2016-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "2925.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "394.00", "finished_well_depth": "394.00", "final_casing_stick_up": "27.000", "bedrock_depth": "109.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "51.00", "well_yield": "3.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5608632, "utm_easting": 689853, "utm_accuracy_code": "H", "bcgs_id": 5113, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112878, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:33Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "88ac9744-5582-498f-a9aa-1aaa4e0ae414", "identification_plate_number": 52483, "owner_full_name": "ROBERS FROUDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " COWICHAN LAKE RD 1", "city": "DUNCAN", "legal_lot": "1PROP A", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1/2 9", "legal_township": " ", "legal_range": "8", "land_district": "50", "legal_pid": "109850741", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-08", "construction_end_date": "2017-03-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": "470.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "81.00", "finished_well_depth": "81.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "31.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5403060, "utm_easting": 440147, "utm_accuracy_code": "H", "bcgs_id": 2777, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112879, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "d388e474-d2d6-41a5-8862-a151de540ce2", "identification_plate_number": 39833, "owner_full_name": "WOODY LUGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " CAMP 2 ROAD 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100000000", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-25", "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "1520.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "218.17", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "168.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5726555, "utm_easting": 701613, "utm_accuracy_code": "H", "bcgs_id": 5970, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112880, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:21:09Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "4653ee02-8513-4b00-9b7f-7b2e8faac0da", "identification_plate_number": 39824, "owner_full_name": "TIRRELL FOLLIT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " JORDAN WAY 1", "city": "SCOTCH CREEK", "legal_lot": "14", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-11", "construction_end_date": "2016-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "1182.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "60.00", "finished_well_depth": "59.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5642159, "utm_easting": 327386, "utm_accuracy_code": "H", "bcgs_id": 2253, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112881, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:23:42Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "283aa3e2-1955-47dc-9c7e-f82867255cb9", "identification_plate_number": 52482, "owner_full_name": "EMILEE NESTLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " COWICHAN LAKE RD 1", "city": "DUNCAN", "legal_lot": "1PROP B", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1/2 9", "legal_township": " ", "legal_range": "8", "land_district": "50", "legal_pid": "109850741", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-09", "construction_end_date": "2017-03-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "470.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5403060, "utm_easting": 440147, "utm_accuracy_code": "H", "bcgs_id": 2777, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112882, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "e4222a2e-667d-48ab-9199-4b8728c46b6c", "identification_plate_number": 39827, "owner_full_name": "CONWAY COWING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "445 WESTSIDE ROAD 1", "city": "REVELSTOKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-07-19", "construction_end_date": "2016-07-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "1590.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "120.00", "finished_well_depth": "119.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "92.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5653969, "utm_easting": 413641, "utm_accuracy_code": "H", "bcgs_id": 2332, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112883, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "1ab4d32c-cb50-4df7-a374-da75b9b262a5", "identification_plate_number": 39829, "owner_full_name": "MARIBEL JINKINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1944 BARNHARTVALE ROAD 1", "city": "BARNHARTVALE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-10", "construction_end_date": "2016-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": "2171.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "560.00", "finished_well_depth": "532.00", "final_casing_stick_up": "24.000", "bedrock_depth": "123.25", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "114.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609005, "utm_easting": 291692, "utm_accuracy_code": "H", "bcgs_id": 9286, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112884, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "f4ba70da-0c5a-4f54-901c-6b0daaaeb76d", "identification_plate_number": 39837, "owner_full_name": "GIULIA TOMICKI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3307 SHUSWAP ROAD 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-22", "construction_end_date": "2016-06-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "1236.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "560.00", "finished_well_depth": "560.00", "final_casing_stick_up": "24.000", "bedrock_depth": "130.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5616531, "utm_easting": 710351, "utm_accuracy_code": "H", "bcgs_id": 13832, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112885, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "a77ba6dc-e575-48e5-9a8e-f853bf1cacac", "identification_plate_number": 39841, "owner_full_name": "ABBI DOCKREY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1672 LOON LAKE ROAD 1", "city": "CACHE CREEK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113363913", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-29", "construction_end_date": "2016-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": "2722.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "182.00", "finished_well_depth": "182.00", "final_casing_stick_up": "24.000", "bedrock_depth": "56.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "72.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5658283, "utm_easting": 615478, "utm_accuracy_code": "H", "bcgs_id": 13090, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112886, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "70e9833f-a6f8-4eef-954e-4644dce7c771", "identification_plate_number": 39842, "owner_full_name": "PRISCELLA CATTONNET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1620 LOON LAKE ROAD 1", "city": "CACHE CREEK", "legal_lot": "1013363913", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-30", "construction_end_date": "2016-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": "ON SIDE OF CASING ", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": "2665.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "182.00", "finished_well_depth": "182.00", "final_casing_stick_up": "12.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "39.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL VENTED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5658010, "utm_easting": 615400, "utm_accuracy_code": "H", "bcgs_id": 5606, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112887, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "WELLS", "update_date": "2017-10-12T17:40:13Z", "well_guid": "6ba74064-725a-4d07-86e0-ab28162f46d1", "identification_plate_number": 47625, "owner_full_name": "NETTLE HILLABY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "200 EMERY LOUIS ROAD 1", "city": "ARMSTRONG", "legal_lot": "112-1", "legal_plan": "174", "legal_district_lot": "1", "legal_block": "1", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "90 FEET NORTH OF GYM", "construction_start_date": "2016-12-02", "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "1465.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "108.00", "finished_well_depth": "108.00", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "74.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5588899, "utm_easting": 334921, "utm_accuracy_code": "H", "bcgs_id": 13833, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112888, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "e648cea2-733f-492a-b1e0-137a95956352", "identification_plate_number": 39249, "owner_full_name": "CARLETON MCGRIRL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " MCLENNON ROAD 1", "city": "SPALLUMCHEEN", "legal_lot": "13", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "31", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "LOT 3 OF PROPOSED SUBDIVISION OF PART OF THE S 1/2 OF THE SW 1/4 SEC 31 TP.S., ", "construction_start_date": "2016-11-23", "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK UP", "latitude": "49.290000", "longitude": "-122.550000", "ground_elevation": "2599.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "36.000", "bedrock_depth": "68.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "26.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5579136, "utm_easting": 342340, "utm_accuracy_code": "H", "bcgs_id": 1714, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112889, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:19Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "28e6c8ce-b1db-4a2a-92fa-2b214cb0c83b", "identification_plate_number": 39256, "owner_full_name": "IZAK STOCKBRIDGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " OYAMA ROAD 1", "city": "WINFIELD", "legal_lot": "136", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "112593681", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-02", "construction_end_date": "2016-11-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "1602.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1100.00", "finished_well_depth": "1100.00", "final_casing_stick_up": "46.000", "bedrock_depth": "76.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5547580, "utm_easting": 329247, "utm_accuracy_code": "H", "bcgs_id": 1516, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112890, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:16Z", "well_guid": "d57fcb12-31ac-4f80-9464-866dcee10a8b", "identification_plate_number": 39247, "owner_full_name": "LYNDEL MENERE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "15", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "118138837", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-09", "construction_end_date": "2016-11-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "2664.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "840.00", "finished_well_depth": "840.00", "final_casing_stick_up": "24.000", "bedrock_depth": "114.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5576746, "utm_easting": 342944, "utm_accuracy_code": "H", "bcgs_id": 1708, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112891, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "9e9fec9a-0a33-48f5-b4c5-cff65a68c98a", "identification_plate_number": 39254, "owner_full_name": "LATIA GAVINI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2390 TUNKWA LAKE ROAD 1", "city": "SAVONA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "13 KM TUNKWA LAKE ROAD, SOUTH OF CORRALS", "construction_start_date": "2016-10-12", "construction_end_date": "2016-10-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": "2776.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "43.00", "finished_well_depth": "38.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "15.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5615194, "utm_easting": 657814, "utm_accuracy_code": "H", "bcgs_id": 13834, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112892, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:07Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "113bad4c-11b5-4cd5-816e-30a542a13232", "identification_plate_number": 39255, "owner_full_name": "FANCHETTE COVENDON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1866 MABLE LAKE ROAD 1", "city": "ENDERBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "114015862", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-17", "construction_end_date": "2016-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": "1383.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "55.00", "well_yield": "6.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5602053, "utm_easting": 365635, "utm_accuracy_code": "H", "bcgs_id": 13835, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112893, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "e32aadad-edcb-4a0b-b157-dec8547a3562", "identification_plate_number": 39251, "owner_full_name": "WILLIE DUTTERIDGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "653 PARK ROAD 1", "city": "GARDEN LAKE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108812748", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-29", "construction_end_date": "2016-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "1865.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "502.00", "finished_well_depth": "497.00", "final_casing_stick_up": "24.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "43.00", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5608210, "utm_easting": 343742, "utm_accuracy_code": "H", "bcgs_id": 2013, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112894, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "daf3c8ce-88c7-4043-8aa7-f85b1088cf3c", "identification_plate_number": 39250, "owner_full_name": "DOV KLEINLERER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " MCLENNON ROAD 1", "city": "VERNON", "legal_lot": "12", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "31", "legal_township": "5", "legal_range": " ", "land_district": "41", "legal_pid": "123456789", "well_location_description": "LOT 2 OF PROPOSED SUBDIVISION OF PART OF THE S 1/2 OF THE SW 1/4", "construction_start_date": "2016-09-22", "construction_end_date": "2016-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.200000", "longitude": "-122.510000", "ground_elevation": "2523.00", "ground_elevation_method": "GPS", "drilling_method": "AUGER", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "24.000", "bedrock_depth": "36.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "28.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5579038, "utm_easting": 342268, "utm_accuracy_code": "H", "bcgs_id": 1714, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112895, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:17Z", "well_guid": "ea510f5e-2a7e-4744-8caf-93aac83c1f5b", "identification_plate_number": 39252, "owner_full_name": "NOBE COLBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3977 DEAR ROAD 1", "city": "FALKLAND", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "005337879", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-07", "construction_end_date": "2016-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "1787.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "119.00", "finished_well_depth": "118.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5592530, "utm_easting": 322074, "utm_accuracy_code": "H", "bcgs_id": 1788, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112896, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:29:27Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "fd4ad9d1-f2d4-4da6-a6f2-efd0fa30070e", "identification_plate_number": 39246, "owner_full_name": "PHYLLIS BELVERSTONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "GEOTECH", "well_subclass": null, "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4500 29TH STREET 1", "city": "VERNON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "128874331", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-14", "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": "1286.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "37.00", "finished_well_depth": "37.00", "final_casing_stick_up": "24.000", "bedrock_depth": "28.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5572008, "utm_easting": 338200, "utm_accuracy_code": "H", "bcgs_id": 1599, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112897, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "fb87baab-e001-4884-befd-9dc78b809606", "identification_plate_number": 39248, "owner_full_name": "TUCK LABRONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3850 MURRAY DRIVE 1", "city": "ARMSTRONG", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "118549110", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-15", "construction_end_date": "2016-09-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": "1274.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "293.00", "finished_well_depth": "291.00", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "84.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5591195, "utm_easting": 343200, "utm_accuracy_code": "H", "bcgs_id": 1827, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112898, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "WELLS", "update_date": "2017-10-12T18:04:13Z", "well_guid": "ae4dcff0-234b-4a25-9c3e-e7fc79c759d5", "identification_plate_number": null, "owner_full_name": "MARCELIA WIGGALL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7488 SKIMIKIN ROAD 1", "city": "CHASE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "20", "legal_township": "21", "legal_range": "12", "land_district": null, "legal_pid": "114131064", "well_location_description": "W 1/2 SE 1/4 W6M", "construction_start_date": "2016-08-22", "construction_end_date": "2016-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": "2004.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "139.00", "finished_well_depth": "139.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5631016, "utm_easting": 315182, "utm_accuracy_code": "H", "bcgs_id": 13158, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112899, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "8f934f88-f53b-4a78-8741-7c3a047940ed", "identification_plate_number": 39240, "owner_full_name": "OATES DUINBLETON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " WHATSHON ROAD 1", "city": "EDGEWOOD", "legal_lot": "14", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "105712700", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-13", "construction_end_date": "2016-08-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "2177.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "14.000", "bedrock_depth": "33.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "SANITARY SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5532552, "utm_easting": 420564, "utm_accuracy_code": "H", "bcgs_id": 9291, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112900, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:06:23Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "76fa0cf6-0b89-496c-873b-2f97111b7b16", "identification_plate_number": 39241, "owner_full_name": "LUIGI MINTRIM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "85 MCLENNON ROAD", "city": "SPALLUMCHEEN", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113571541", "well_location_description": "5 ACRES TO BE SUBDIVIDED ACROSS MCLENNAN ROAD FROM 8125", "construction_start_date": "2016-08-17", "construction_end_date": "2016-08-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "2676.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5579306, "utm_easting": 342639, "utm_accuracy_code": "H", "bcgs_id": 1714, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112901, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:24:40Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "4fe93ea3-60f8-48fa-934a-5bb02fd13f72", "identification_plate_number": 39245, "owner_full_name": "GABRIEL GLADYER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3702 TRINITY VALLEY ROAD 1", "city": "ENDERBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111217111", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-09", "construction_end_date": "2016-09-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": "1211.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "192.00", "finished_well_depth": "191.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "SANITARY SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5600511, "utm_easting": 357680, "utm_accuracy_code": "H", "bcgs_id": 1925, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112902, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "3fb81ac7-6715-4af3-870a-2a62b7bde941", "identification_plate_number": 39243, "owner_full_name": "KRISHA RABLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9050 70 AVENUE SW 1", "city": "SALMON ARM", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113887572", "well_location_description": "PROPOSED ADDRESS NUMBER 9044", "construction_start_date": "2016-08-31", "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "1391.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "98.00", "finished_well_depth": "98.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "47.50", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5613713, "utm_easting": 331044, "utm_accuracy_code": "H", "bcgs_id": 13698, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112903, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "bd416ed5-9981-4a8e-a4e6-f3563ea83896", "identification_plate_number": 39244, "owner_full_name": "BARBRA BRANDONI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9050 70 AV 1", "city": "SALMON ARM", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113887572", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-07", "construction_end_date": "2016-09-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": "STICK-UP", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "1380.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "112.00", "finished_well_depth": "111.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "33.50", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5613672, "utm_easting": 331048, "utm_accuracy_code": "H", "bcgs_id": 13698, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112904, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "WELLS", "update_date": "2017-10-12T17:59:45Z", "well_guid": "43340ae3-259b-483a-af35-6ad7f8135288", "identification_plate_number": null, "owner_full_name": "TEMP BASSIL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "KALUM LAKE ROAD 1", "city": "TERRACE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "GRAVEL PIT AT 7 KM ON KALUM LAKE ROAD", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-08-29", "decommission_end_date": "2016-08-30", "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6025009, "utm_easting": 529926, "utm_accuracy_code": "H", "bcgs_id": 8830, "decommission_reason": "NO WATER", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NATIVE", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112905, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:27:52Z", "update_user": "WELLS", "update_date": "2017-10-12T18:00:50Z", "well_guid": "826945ec-5a47-4012-809d-f28731d9a018", "identification_plate_number": 100003, "owner_full_name": "YETTY O'DOUGHERTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "CLOSURE", "licenced_status": "UNLICENSED", "street_address": "KALUM LAKE ROAD 1", "city": "TERRACE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "GRAVEL PIT AT 7 KM ON KALUM LAKE ROAD", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": "2016-09-12", "decommission_end_date": "2016-09-13", "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6048889, "utm_easting": 522840, "utm_accuracy_code": "H", "bcgs_id": 8864, "decommission_reason": "NO WATER", "decommission_method": "POURED", "sealant_material": "BENTONITE", "backfill_material": "NATIVE", "decommission_details": "DRILLER=BOB DRILLER (WD 123456), PRECISION SERVICES", "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112906, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "WELLS", "update_date": "2017-10-12T18:02:26Z", "well_guid": "c1666bcf-12b5-4867-a124-15a7da9769e3", "identification_plate_number": null, "owner_full_name": "LYSSA MURT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "17260 HIGHWAY 16 1", "city": "TERRACE", "legal_lot": "1466", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "114290995", "well_location_description": " ", "construction_start_date": "2016-10-26", "construction_end_date": "2016-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "STICK-UP", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": "390.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "115.00", "finished_well_depth": "112.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "71.20", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6056786, "utm_easting": 539692, "utm_accuracy_code": "H", "bcgs_id": 8892, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112907, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:52:19Z", "update_user": "WELLS", "update_date": "2017-04-28T22:56:18Z", "well_guid": "9f9600cf-c97b-4b47-a28f-b6f9cdeafaab", "identification_plate_number": 39312, "owner_full_name": "BLYTHE ENGELBRECHT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "COPPER ESTATES 1", "city": "TERRACE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTH EAST CORNER", "construction_start_date": "2017-03-26", "construction_end_date": "2017-03-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": "262.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "37.00", "finished_well_depth": "37.00", "final_casing_stick_up": "24.000", "bedrock_depth": "36.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6044872, "utm_easting": 534570, "utm_accuracy_code": "H", "bcgs_id": 9977, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112909, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "WELLS", "update_date": "2017-06-29T22:47:20Z", "well_guid": "50ea15a8-8f50-4a77-b7c2-7a5a1c1f8802", "identification_plate_number": 39334, "owner_full_name": "JEANNA GRZEGOREK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4783 KALUM LAKE ROAD 1", "city": "ROSSWOOD", "legal_lot": "11", "legal_plan": "8935", "legal_district_lot": "11037", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "106611834", "well_location_description": " ", "construction_start_date": "2015-01-26", "construction_end_date": "2015-01-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "318.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "55.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.50", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6082184, "utm_easting": 510639, "utm_accuracy_code": "H", "bcgs_id": 9929, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112910, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:20:12Z", "update_user": "WELLS", "update_date": "2017-06-29T22:49:03Z", "well_guid": "5dee4a61-678f-4752-b9d7-90b08616865a", "identification_plate_number": 39335, "owner_full_name": "ROZAMOND BIDDLECOMBE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "ATTREE ROAD 1", "city": "TERRACE", "legal_lot": "1A", "legal_plan": "ERPI3962", "legal_district_lot": "16248", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "128857925", "well_location_description": "JACK PINE FLATS", "construction_start_date": "2015-04-07", "construction_end_date": "2015-04-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": "370.60", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "64.00", "finished_well_depth": "64.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6033508, "utm_easting": 532422, "utm_accuracy_code": "H", "bcgs_id": 8842, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112911, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "WELLS", "update_date": "2017-06-29T22:52:07Z", "well_guid": "dddaddb6-6291-405b-bcfb-1eee20ecb5fe", "identification_plate_number": 39336, "owner_full_name": "CORINE ISLAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "KITIMAAT VILLAGE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROX. 25M SOUTH OF EXISTING WELLS OUTSIDE COMPOUND", "construction_start_date": "2015-04-15", "construction_end_date": "2015-04-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "26.20", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "10.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "70.00", "finished_well_depth": "66.00", "final_casing_stick_up": "39.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "8\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5980762, "utm_easting": 523320, "utm_accuracy_code": "H", "bcgs_id": 13825, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112912, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:59:37Z", "update_user": "WELLS", "update_date": "2017-06-29T22:54:00Z", "well_guid": "de9fa121-8134-46de-aebb-756d09747986", "identification_plate_number": 39338, "owner_full_name": "MASSIMO GULLEFANT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "305 WILLIAM CREEK AVENUE 1", "city": "TERRACE", "legal_lot": "1A", "legal_plan": "12723", "legal_district_lot": "11729", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-05-25", "construction_end_date": "2015-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "351.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "16.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6034723, "utm_easting": 532947, "utm_accuracy_code": "H", "bcgs_id": 8846, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112913, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "WELLS", "update_date": "2017-06-29T22:56:04Z", "well_guid": "12f50778-3de4-4709-b761-fb241b5cb54c", "identification_plate_number": 39339, "owner_full_name": "GARY MARTITA BEHNEKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1030 FARKVAM ROAD 1", "city": "TERRACE", "legal_lot": "1APL", "legal_plan": "13149", "legal_district_lot": "11101", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-06-01", "construction_end_date": "2015-06-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "295.00", "finished_well_depth": "295.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6037018, "utm_easting": 525768, "utm_accuracy_code": "H", "bcgs_id": 8840, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112914, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "WELLS", "update_date": "2017-06-29T22:57:32Z", "well_guid": "a4bc5122-edfe-42ac-941e-15ca7bd2410a", "identification_plate_number": 39341, "owner_full_name": "GARY AURTHUR INNETT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA-RECLAIM DAM", "construction_start_date": "2015-07-02", "construction_end_date": "2015-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "ON CASING", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "1055.50", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "213.00", "finished_well_depth": "212.00", "final_casing_stick_up": "60.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL TAG", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6401123, "utm_easting": 456810, "utm_accuracy_code": "H", "bcgs_id": 13808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112915, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "WELLS", "update_date": "2017-06-29T22:59:14Z", "well_guid": "14db8745-8d21-4158-b840-b33d8d8bd4ab", "identification_plate_number": 39343, "owner_full_name": "GARY KERMY FURMSTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA ABOVE RECLAIM DAM", "construction_start_date": "2015-06-30", "construction_end_date": "2015-07-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "1056.20", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "4.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "65.00", "final_casing_stick_up": "60.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "0.01", "artesian_pressure": null, "well_cap_type": "ALUMINIUM, VERMIN PROOF", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6401158, "utm_easting": 456737, "utm_accuracy_code": "H", "bcgs_id": 13808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112916, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "WELLS", "update_date": "2017-06-29T23:01:41Z", "well_guid": "53cee8f8-695c-4e80-82af-e11590ef1ba0", "identification_plate_number": 39348, "owner_full_name": "GARY KIMMIE MCGRIRL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA - RELCAIM DAM", "construction_start_date": "2015-07-23", "construction_end_date": "2015-08-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "1053.32", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "25.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "12.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "215.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "55.66", "well_yield": "300.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6401250, "utm_easting": 456786, "utm_accuracy_code": "H", "bcgs_id": 13808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112917, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:41:53Z", "update_user": "WELLS", "update_date": "2017-07-06T16:54:55Z", "well_guid": "edee0fa4-005e-4229-b9bf-49faa12e5fb4", "identification_plate_number": 39347, "owner_full_name": "GARY ELFIE SPIRIT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-23", "construction_end_date": "2015-07-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": "1470.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "5.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "150.00", "finished_well_depth": "150.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.33", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM, VERMIN PROOF", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6397968, "utm_easting": 453929, "utm_accuracy_code": "H", "bcgs_id": 13826, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112918, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": "WELLS", "update_date": "2017-07-06T16:56:15Z", "well_guid": "5c567743-657a-4830-9eb2-2e19f1b37b15", "identification_plate_number": 39346, "owner_full_name": "GARY VALENTINE BRANTL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NEAR PRIMARY CRUSHER STOCK PILE ESCAPE VENT", "construction_start_date": "2015-07-22", "construction_end_date": "2015-07-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "1491.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "155.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.58", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM, VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6398537, "utm_easting": 454309, "utm_accuracy_code": "H", "bcgs_id": 13167, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112919, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "WELLS", "update_date": "2017-07-06T16:57:08Z", "well_guid": "05ad5ee6-b0d2-4e23-86f4-0e65530dcd8a", "identification_plate_number": 39345, "owner_full_name": "GUALTERIO CRAW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "KM 19.5 OLD TIA ROAD", "construction_start_date": "2015-07-20", "construction_end_date": "2015-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": "1481.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "4.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "155.00", "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.50", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM, VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6398331, "utm_easting": 454210, "utm_accuracy_code": "H", "bcgs_id": 13826, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112920, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:04:38Z", "update_user": "WELLS", "update_date": "2017-07-06T16:59:49Z", "well_guid": "fa402919-1563-4d7e-838e-71216751040e", "identification_plate_number": 39340, "owner_full_name": "MARSIELLA TIMCKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "EAST SIDE OF MINE", "construction_start_date": "2015-06-23", "construction_end_date": "2015-06-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "5.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "60.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM, LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6398734, "utm_easting": 454431, "utm_accuracy_code": "H", "bcgs_id": 13167, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112921, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "WELLS", "update_date": "2017-07-06T17:00:36Z", "well_guid": "47a0a3ff-4501-4b4e-a765-9afa2903ff04", "identification_plate_number": 39344, "owner_full_name": "ANGELINE GIANNASSI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BY PRIMARY CRUSHER", "construction_start_date": "2015-07-06", "construction_end_date": "2015-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "1436.60", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "125.00", "finished_well_depth": "125.00", "final_casing_stick_up": "24.000", "bedrock_depth": "10.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM, VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6396638, "utm_easting": 452969, "utm_accuracy_code": "H", "bcgs_id": 13827, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112922, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:57Z", "update_user": "WELLS", "update_date": "2017-10-12T17:56:44Z", "well_guid": "3a45ed53-15b1-4513-9298-dfff44f9545d", "identification_plate_number": 39342, "owner_full_name": "AVERELL COEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "RED CHRIS MINE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA ABOVE RECLAIM DAM", "construction_start_date": "2015-06-17", "construction_end_date": "2015-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "1055.50", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "4.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "212.00", "finished_well_depth": null, "final_casing_stick_up": "60.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "42.00", "well_yield": "325.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM, LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6401158, "utm_easting": 456737, "utm_accuracy_code": "H", "bcgs_id": 13808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112923, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:39:03Z", "update_user": "WELLS", "update_date": "2017-07-06T17:01:57Z", "well_guid": "d6d4ea84-f3ea-4838-bcfc-9b919b591137", "identification_plate_number": 39356, "owner_full_name": "TERSINA DELABARRE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5136 FOSBERY 1", "city": "TERRACE", "legal_lot": "12", "legal_plan": "EPP19525", "legal_district_lot": "1590", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": null, "legal_pid": "129292263", "well_location_description": "WEST END OF HOUSE", "construction_start_date": "2015-10-01", "construction_end_date": "2015-10-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "335.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "30.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "195.00", "finished_well_depth": "195.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "164.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6047301, "utm_easting": 522348, "utm_accuracy_code": "H", "bcgs_id": 8858, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112924, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:46:04Z", "update_user": "WELLS", "update_date": "2017-07-06T17:02:55Z", "well_guid": "bd9c8ce8-2371-405f-9079-6ba8f0ce374b", "identification_plate_number": 39350, "owner_full_name": "JON BUCKTHORPE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "JACK PINE", "legal_lot": "115", "legal_plan": "PRP6528", "legal_district_lot": "14127", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-08-15", "construction_end_date": "2015-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "STICK-UP", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "75.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "23.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6025070, "utm_easting": 530659, "utm_accuracy_code": "H", "bcgs_id": 8830, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112925, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "WELLS", "update_date": "2017-07-06T17:04:04Z", "well_guid": "ebad0fd1-2b53-474b-9058-e48e25278349", "identification_plate_number": 39380, "owner_full_name": "BECK GUILAYN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4815 MERKLY ROAD 1", "city": "TERRACE", "legal_lot": "11", "legal_plan": "BCP5011", "legal_district_lot": "1589", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-09-20", "construction_end_date": "2016-09-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "STICK-UP", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "88.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6045245, "utm_easting": 525562, "utm_accuracy_code": "H", "bcgs_id": 8860, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112926, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:15:55Z", "update_user": "WELLS", "update_date": "2018-01-19T22:14:33Z", "well_guid": "9523696d-7138-439a-9684-c97fa194f96f", "identification_plate_number": 39381, "owner_full_name": "CLEM COTTESFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HIGHWAY 37 1", "city": "TERRACE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "13980", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": null, "legal_pid": "123456789", "well_location_description": "CROWN LAND, LAKELSE LAKE PROVINCIAL PARK PICNIC SITE", "construction_start_date": "2016-09-26", "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "STICK-UP", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "324.72", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "35.00", "final_casing_stick_up": "39.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "1.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6029679, "utm_easting": 530905, "utm_accuracy_code": "H", "bcgs_id": 9100, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112927, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:26:23Z", "update_user": "WELLS", "update_date": "2017-08-15T21:08:32Z", "well_guid": "3360646f-66d5-41b6-b94c-79b4e2cd1c03", "identification_plate_number": 39378, "owner_full_name": "CORAL PARBROOK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2430 KROYER 1", "city": "TERRACE", "legal_lot": "135", "legal_plan": "5138", "legal_district_lot": "14127", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "107599927", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "ON CASING STICK-UP", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "14.00", "well_yield": "14.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6125806, "utm_easting": 587331, "utm_accuracy_code": "H", "bcgs_id": 7949, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112928, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:40:29Z", "update_user": "WELLS", "update_date": "2017-08-15T21:12:43Z", "well_guid": "37158bd8-83df-4f1a-9b4b-32021610fca8", "identification_plate_number": 39353, "owner_full_name": "DE GADDAS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "DRGT CAMP 128B", "construction_start_date": "2015-09-14", "construction_end_date": "2015-09-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "138.00", "finished_well_depth": "138.00", "final_casing_stick_up": "30.000", "bedrock_depth": "137.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "250.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6127114, "utm_easting": 501191, "utm_accuracy_code": "H", "bcgs_id": 13828, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112929, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "WELLS", "update_date": "2017-08-15T21:14:40Z", "well_guid": "f70d2992-ff03-46e8-959c-0f616dd894dc", "identification_plate_number": 35364, "owner_full_name": "DOM TOMASONI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-11-29", "construction_end_date": "2015-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "255.00", "final_casing_stick_up": "36.000", "bedrock_depth": "155.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "142.09", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6137545, "utm_easting": 647456, "utm_accuracy_code": "H", "bcgs_id": 13829, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112930, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:59:19Z", "update_user": "WELLS", "update_date": "2017-08-15T21:16:00Z", "well_guid": "d6faf3c0-eb7b-4337-8e94-e7fad4308051", "identification_plate_number": 35363, "owner_full_name": "SYMON JANKOVIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-11-26", "construction_end_date": "2015-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "152.82", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "DRY", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6137298, "utm_easting": 647675, "utm_accuracy_code": "H", "bcgs_id": 13829, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112931, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:07:36Z", "update_user": "WELLS", "update_date": "2017-08-15T21:17:51Z", "well_guid": "9b403e3d-ca91-4fcb-9aec-1828af375c8f", "identification_plate_number": 39365, "owner_full_name": "TED HANSOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-10", "construction_end_date": "2016-09-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "30.000", "bedrock_depth": "37.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "21.00", "well_yield": "87.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6156526, "utm_easting": 577290, "utm_accuracy_code": "H", "bcgs_id": 13830, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112932, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:16:06Z", "update_user": "WELLS", "update_date": "2017-08-15T21:19:17Z", "well_guid": "eac0b0c8-db36-41ad-8f2a-d7d69c61dece", "identification_plate_number": 39372, "owner_full_name": "ALFORD SWARBRIGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "KALUM LAKE ROAD 1", "city": "ROSSWOOD", "legal_lot": "1B", "legal_plan": "BCP42906", "legal_district_lot": "11231", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-06-09", "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "STICK-UP", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "115.00", "finished_well_depth": "115.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "26.90", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6057215, "utm_easting": 539621, "utm_accuracy_code": "H", "bcgs_id": 8892, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112933, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:23:55Z", "update_user": "WELLS", "update_date": "2017-08-15T21:20:57Z", "well_guid": "8ee33ceb-3289-4310-8c6d-955a3b553fc6", "identification_plate_number": 39376, "owner_full_name": "BLONDELL SPONTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS MINE ORCA SITE \r\nRED CHRIS ID# WW16-15", "construction_start_date": "2016-07-18", "construction_end_date": "2016-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "4346.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "215.00", "final_casing_stick_up": "39.000", "bedrock_depth": "15.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6400777, "utm_easting": 453855, "utm_accuracy_code": "H", "bcgs_id": 13215, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112934, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:30:45Z", "update_user": "WELLS", "update_date": "2017-08-15T21:22:01Z", "well_guid": "970eed22-c4a4-4ef2-859d-93ab8c03fd9c", "identification_plate_number": 39375, "owner_full_name": "PRUDY ROSLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS ACCESS ROAD 17.5 KM; RED CHRIS ID # WW16-14", "construction_start_date": "2016-07-16", "construction_end_date": "2016-07-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": "4775.68", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "105.00", "final_casing_stick_up": "28.000", "bedrock_depth": "15.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "7.30", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6400065, "utm_easting": 454023, "utm_accuracy_code": "H", "bcgs_id": 13218, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112935, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:37:19Z", "update_user": "WELLS", "update_date": "2017-10-12T17:57:56Z", "well_guid": "394fe723-c225-4770-9b55-c1f27166be87", "identification_plate_number": 39374, "owner_full_name": "CHET STANYFORTH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS MINE 18.5 KM ACROSS ROAD; RED CHRIS ID # WW16-13", "construction_start_date": "2016-07-15", "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.550000", "ground_elevation": "4808.48", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "195.00", "finished_well_depth": null, "final_casing_stick_up": "24.000", "bedrock_depth": "12.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.50", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6391493, "utm_easting": 454435, "utm_accuracy_code": "H", "bcgs_id": 13902, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112936, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "WELLS", "update_date": "2017-08-15T21:23:16Z", "well_guid": "3a502413-9041-4822-8aad-ecff194c4225", "identification_plate_number": 39373, "owner_full_name": "ADE WEEKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "ISKUT", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS MINE TIA SOUTH; RED CHRIS ID#SPW16-I-D", "construction_start_date": "2016-07-11", "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "15.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "273.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "104.25", "well_yield": "500.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6396597, "utm_easting": 455680, "utm_accuracy_code": "H", "bcgs_id": 13643, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112937, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": "WELLS", "update_date": "2017-08-15T21:25:53Z", "well_guid": "efaa75a7-78e4-4f17-8ab3-3628c037f96c", "identification_plate_number": 39362, "owner_full_name": "AIMEE ANTAT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4405 KALUM LAKE ROAD 1", "city": "ROSSWOOD", "legal_lot": "12", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-01-09", "construction_end_date": "2015-01-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": "919.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "BLUE CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6078456, "utm_easting": 512129, "utm_accuracy_code": "H", "bcgs_id": 8895, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112938, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "WELLS", "update_date": "2017-08-15T21:43:32Z", "well_guid": "cf6355eb-46fc-49ec-b5f4-fa0cc922467e", "identification_plate_number": 33542, "owner_full_name": "ALYSSA CAPSTAKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "TATCHO STREET 1", "city": "DEASE LAKE", "legal_lot": "12", "legal_plan": "10334", "legal_district_lot": "1268", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "06", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2011-06-14", "construction_end_date": "2011-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": "2646.96", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "95.00", "final_casing_stick_up": "60.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "81.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6477929, "utm_easting": 441973, "utm_accuracy_code": "H", "bcgs_id": 8934, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112939, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "WELLS", "update_date": "2017-08-15T21:28:55Z", "well_guid": "7d83cc97-013f-4404-ae3d-d5e055a3b93a", "identification_plate_number": 39357, "owner_full_name": "MURRY TANFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "475 BRAND QUEEN CHARLOTTE 1", "city": "QUEEN CHARLOTTE ISLAND", "legal_lot": "1C", "legal_plan": "RRP14713", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "2363 LOT", "construction_start_date": "2015-01-13", "construction_end_date": "2015-01-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "ON CASING", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": "91.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "150.00", "finished_well_depth": "150.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5935618, "utm_easting": 303955, "utm_accuracy_code": "H", "bcgs_id": 13831, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112940, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:44:00Z", "update_user": "WELLS", "update_date": "2017-08-15T21:30:28Z", "well_guid": "f763f69a-7995-4876-ade0-03e285c2ee61", "identification_plate_number": 39368, "owner_full_name": "GARNER HALLAGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13059 TOW HILL ROAD 1", "city": "QUEEN CHARLOTTE ISLAND", "legal_lot": "11", "legal_plan": "1213", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": null, "legal_pid": "112924172", "well_location_description": "LAND DISTRICT: SKEENA?", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "WELL HEAD", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": "305.04", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "75.00", "finished_well_depth": "75.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "26.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "6\" WTC", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6054293, "utm_easting": 538264, "utm_accuracy_code": "H", "bcgs_id": 10695, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112941, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:52:25Z", "update_user": "WELLS", "update_date": "2017-08-15T21:38:49Z", "well_guid": "d664a807-8fe4-4080-9f8e-3d07fe872476", "identification_plate_number": 39360, "owner_full_name": "CATHRINE HOLLERIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1463 BEITUSH ROAD 1", "city": "QUEEN CHARLOTTE ISLAND", "legal_lot": "1A", "legal_plan": "PRP14823", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123573848", "well_location_description": "1350 LOT; 6.5 ACRES 750 HAIDA GWAII 03422.060", "construction_start_date": "2015-10-18", "construction_end_date": "2015-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "35.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": "2.00", "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5941792, "utm_easting": 305857, "utm_accuracy_code": "H", "bcgs_id": 8809, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112942, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:04:49Z", "update_user": "WELLS", "update_date": "2017-08-15T21:32:21Z", "well_guid": "ef5d264e-f338-49e2-be77-027b3a8808a7", "identification_plate_number": 39367, "owner_full_name": "GIUSTINO BLESLI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "CRANBERRY 1", "city": " ", "legal_lot": "14", "legal_plan": "11497", "legal_district_lot": "1693", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "COASTAL DISTRICT", "construction_start_date": "2016-01-11", "construction_end_date": "2016-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "PUMPHOUSE DOOR", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "174.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "85.00", "final_casing_stick_up": "22.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "43.60", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6043390, "utm_easting": 524048, "utm_accuracy_code": "H", "bcgs_id": 8856, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112943, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:15:36Z", "update_user": "WELLS", "update_date": "2017-08-15T21:33:44Z", "well_guid": "f47da72e-5227-4e70-aefd-d5ebc9e286dd", "identification_plate_number": 39366, "owner_full_name": "KAJA BIESTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "HWY 37 TRUCK ROUTE/DYKE ROAD 1", "city": "STEWART", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "RIGHT SIDE OF HIGHWAY 37 AT OFF NORTH ENTRANCE TO STEWART", "construction_start_date": "2016-01-04", "construction_end_date": "2016-01-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "PUMPHOUSE DOOR", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "80.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "24.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "85.00", "final_casing_stick_up": "6.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.80", "well_yield": "400.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6201260, "utm_easting": 438664, "utm_accuracy_code": "H", "bcgs_id": 13499, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112944, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:22:30Z", "update_user": "WELLS", "update_date": "2017-08-15T21:35:16Z", "well_guid": "8011b001-e417-408e-baa7-0581c8162b8f", "identification_plate_number": 39351, "owner_full_name": "JOSEE JIGGINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1ST AVENUE 1", "city": "LAKELSE", "legal_lot": "1", "legal_plan": "PRP4615", "legal_district_lot": "14127", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "111504323", "well_location_description": " ", "construction_start_date": "2015-08-15", "construction_end_date": "2015-08-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "65.00", "finished_well_depth": "55.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "15.000", "artesian_flow": "1.00", "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6025063, "utm_easting": 529576, "utm_accuracy_code": "H", "bcgs_id": 8830, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112945, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:31:58Z", "update_user": "WELLS", "update_date": "2017-08-15T21:37:32Z", "well_guid": "655342bc-a85e-46ca-9949-e26836600732", "identification_plate_number": 39352, "owner_full_name": "VIVIANA KLASSMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "13", "legal_plan": "961", "legal_district_lot": "139", "legal_block": "D", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "06", "legal_pid": "114102021", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-02", "construction_end_date": "2015-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "TO CASING STICK UP", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "235.00", "finished_well_depth": "235.00", "final_casing_stick_up": "36.000", "bedrock_depth": "65.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6123964, "utm_easting": 587761, "utm_accuracy_code": "H", "bcgs_id": 7948, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112946, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "WELLS", "update_date": "2017-10-12T17:48:14Z", "well_guid": "8072ed35-0a50-40f4-8aa5-73af4fb6d6a9", "identification_plate_number": 48364, "owner_full_name": "VALENTINE JANDA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7466 ISLAND ROAD 1", "city": "OLIVER", "legal_lot": "12", "legal_plan": "KAP4092", "legal_district_lot": "124505", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "54", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-11-22", "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "32.00", "finished_well_depth": "25.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5455052, "utm_easting": 314246, "utm_accuracy_code": "H", "bcgs_id": 270, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112947, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "ee6e496f-1a4b-4a10-85c1-408798c6e70c", "identification_plate_number": 48363, "owner_full_name": "CULL ALGATE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1B", "legal_plan": "11742", "legal_district_lot": "124505", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "54", "legal_pid": "100000000", "well_location_description": "DRIVEWAY", "construction_start_date": "2016-10-03", "construction_end_date": "2016-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "178.00", "finished_well_depth": "176.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5437504, "utm_easting": 316773, "utm_accuracy_code": "H", "bcgs_id": 44, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112948, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:33:45Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "48b8d88a-c6d1-4040-a3f2-686fc8b686b7", "identification_plate_number": 48362, "owner_full_name": "TERSINA PAGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "725 HIGHWAY 3A 1", "city": "CAWSTON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "TRIANGULAR FIELD NEXT TO BARN", "construction_start_date": "2016-11-14", "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": "1931.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "9.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "36.00", "finished_well_depth": "32.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF ", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5437897, "utm_easting": 302146, "utm_accuracy_code": "H", "bcgs_id": 16, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112949, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:39:45Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "483b124e-befc-4c38-94e6-150b207b6a7e", "identification_plate_number": 48361, "owner_full_name": "CASSEY HOULTHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1853 HIGHWAY 3 1", "city": "CAWSTON", "legal_lot": "1171", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "104370406", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-29", "construction_end_date": "2016-10-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "30.00", "finished_well_depth": "30.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5448747, "utm_easting": 299728, "utm_accuracy_code": "H", "bcgs_id": 164, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112950, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:48:52Z", "update_user": "WELLS", "update_date": "2017-05-12T23:15:18Z", "well_guid": "32dff77c-8ad8-42bf-b088-949fe0803509", "identification_plate_number": 48366, "owner_full_name": "BERNADENE MUMBEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1853 HIGHWAY 3 1", "city": "CAWSTON", "legal_lot": "1171", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "59", "legal_pid": "100437048", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-13", "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bdeb6555-d09b-48f3-8f16-80ff138e4046", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "72.00", "finished_well_depth": "70.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "450.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5437954, "utm_easting": 302189, "utm_accuracy_code": "H", "bcgs_id": 18, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112951, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "WELLS", "update_date": "2017-10-12T18:05:34Z", "well_guid": "b22af424-1e18-42d4-8297-429324a48b9a", "identification_plate_number": null, "owner_full_name": "RADDY WYNESS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "11375 REISWIG ROAD 1", "city": "WINFIELD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-03-28", "construction_end_date": "2016-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.590000", "ground_elevation": "1314.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "84.00", "finished_well_depth": "84.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5546720, "utm_easting": 328394, "utm_accuracy_code": "H", "bcgs_id": 1515, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112952, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "WELLS", "update_date": "2017-04-28T22:17:19Z", "well_guid": "0ed90e01-f6e7-4a31-ab32-c023111102ca", "identification_plate_number": 48762, "owner_full_name": "SIMEON STANYFORTH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6167 HIGHWAY 6 1", "city": "LAVINGTON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-28", "construction_end_date": "2016-10-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": "1681.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "194.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "36.40", "well_yield": "110.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5567332, "utm_easting": 350265, "utm_accuracy_code": "H", "bcgs_id": 10741, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112953, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:15:19Z", "update_user": "WELLS", "update_date": "2017-04-28T22:20:57Z", "well_guid": "00c7a508-0a3b-48db-b6da-275fc0a20255", "identification_plate_number": 48765, "owner_full_name": "NICOLAS ELIJAHU", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "MABEL LAKE ROAD 1", "city": "LUMBY", "legal_lot": "1A", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "14", "legal_township": "40", "legal_range": " ", "land_district": "41", "legal_pid": "127311317", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-11", "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": "1344.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "39.00", "final_casing_stick_up": "30.000", "bedrock_depth": "39.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5573506, "utm_easting": 369254, "utm_accuracy_code": "H", "bcgs_id": 1669, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112955, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "WELLS", "update_date": "2017-04-28T22:25:23Z", "well_guid": "a152c430-c41f-4954-992a-29a689067da3", "identification_plate_number": 28551, "owner_full_name": "MARLON TOMENSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2642 WOODLAND CRESCENT 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-09-12", "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "1228.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "70.00", "finished_well_depth": "70.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "42.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5527390, "utm_easting": 325629, "utm_accuracy_code": "H", "bcgs_id": 561, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112957, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "WELLS", "update_date": "2017-04-28T22:28:28Z", "well_guid": "9280b4f8-880e-4030-823a-7f4b790515af", "identification_plate_number": 28552, "owner_full_name": "DORY FOXTEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3552 SPIERS ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-08-26", "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "1094.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "40.00", "surface_seal_thickness": "4.00", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "144.00", "finished_well_depth": "144.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "40.000", "artesian_flow": "17.50", "artesian_pressure": null, "well_cap_type": "6\" WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5525300, "utm_easting": 324326, "utm_accuracy_code": "H", "bcgs_id": 559, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112958, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "WELLS", "update_date": "2017-04-28T22:29:56Z", "well_guid": "c22840d9-3f97-4d46-88fe-babeeb8b9560", "identification_plate_number": 28550, "owner_full_name": "JODY VERONIQUE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "205 WHITEVALE ROAD 1", "city": "LUMBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-20", "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "1621.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "20.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "282.00", "finished_well_depth": "277.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "350.000", "artesian_flow": "60.00", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5565795, "utm_easting": 359703, "utm_accuracy_code": "H", "bcgs_id": 1636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112959, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "WELLS", "update_date": "2017-04-28T22:31:33Z", "well_guid": "40387e91-44d4-4896-a387-59a277de8103", "identification_plate_number": 28549, "owner_full_name": "CONWAY INGREE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-07", "construction_end_date": "2016-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": "1633.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "88.00", "finished_well_depth": "86.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "50.000", "artesian_flow": "10.00", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5565639, "utm_easting": 359318, "utm_accuracy_code": "H", "bcgs_id": 1636, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112960, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "WELLS", "update_date": "2017-04-28T22:33:02Z", "well_guid": "8a824eb0-39fb-4bd8-85c1-6c281cf18f6c", "identification_plate_number": 28548, "owner_full_name": "RAFAELIA LONGRIGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3780 CASORSO ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-26", "construction_end_date": "2016-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "1131.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "210.00", "finished_well_depth": "53.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5524624, "utm_easting": 322301, "utm_accuracy_code": "H", "bcgs_id": 542, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112961, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:57:18Z", "update_user": "WELLS", "update_date": "2017-04-28T22:34:48Z", "well_guid": "9c44cc76-b3c6-4bcd-8ec3-2fc8b718192c", "identification_plate_number": 28547, "owner_full_name": "CLAUS KLASSMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3780 CASORSO ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-05-26", "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": "1134.00", "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": null, "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "37.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5524734, "utm_easting": 322365, "utm_accuracy_code": "H", "bcgs_id": 542, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112962, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "WELLS", "update_date": "2017-04-28T22:36:15Z", "well_guid": "b37f0d51-c6ec-411d-ac9b-f5e888697c8d", "identification_plate_number": 28519, "owner_full_name": "ASTRIX LUIPOLD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "GERTSMAR PARK 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-04-12", "construction_end_date": "2016-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": "1351.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "70.00", "finished_well_depth": "70.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "64.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "LOCKING", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5527682, "utm_easting": 326945, "utm_accuracy_code": "H", "bcgs_id": 568, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112963, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "WELLS", "update_date": "2017-04-28T22:38:39Z", "well_guid": "b00c3a4b-cf65-4764-a122-cabf5e2a4632", "identification_plate_number": 28554, "owner_full_name": "KARE WEBEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3380 WESTON ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-01-27", "construction_end_date": "2016-04-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "ON CASING", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "1490.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "56.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "322.00", "finished_well_depth": "322.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "137.90", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5534017, "utm_easting": 330692, "utm_accuracy_code": "H", "bcgs_id": 650, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112964, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "WELLS", "update_date": "2017-04-28T22:40:05Z", "well_guid": "15b11b15-d53e-44a0-94a4-be7f46e474f4", "identification_plate_number": 28546, "owner_full_name": "LEONERD D'ENRICO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4106 25TH AVENUE 1", "city": "VERNON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BEHIND MECHANICAL ROOM @ CRUIZERS CAR WASH", "construction_start_date": "2015-11-24", "construction_end_date": "2015-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.290000", "longitude": "-122.560000", "ground_elevation": "1153.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "73.00", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5569944, "utm_easting": 336536, "utm_accuracy_code": "H", "bcgs_id": 1590, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112965, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:27:24Z", "update_user": "WELLS", "update_date": "2017-04-28T22:41:43Z", "well_guid": "2d40ad86-5617-45d4-b102-eb9fa48b60f0", "identification_plate_number": 28545, "owner_full_name": "ANNIE PORKER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "27.5 KM MABEL LAKE ROAD 1", "city": "LUMBY", "legal_lot": "112", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 12 MABEL LAKE HOLDINGS", "construction_start_date": "2015-11-20", "construction_end_date": "2015-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "30.00", "finished_well_depth": "30.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.10", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609169, "utm_easting": 380633, "utm_accuracy_code": "H", "bcgs_id": 10447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112966, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:33:54Z", "update_user": "WELLS", "update_date": "2017-04-28T22:45:08Z", "well_guid": "3e207b45-4092-4e38-af31-24e75fc540c7", "identification_plate_number": 28544, "owner_full_name": "ANDRIS AVRAHAMOF", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "27.5 KM MABEL LAKE ROAD 1", "city": "LUMBY", "legal_lot": "113", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 13 MABLE LAKE HOLDINGS", "construction_start_date": "2015-11-19", "construction_end_date": "2015-11-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": "1177.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "30.00", "finished_well_depth": "30.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.10", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609150, "utm_easting": 380656, "utm_accuracy_code": "H", "bcgs_id": 10447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112967, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "0955d22b-6d0e-4867-b794-6bc5a17a8c17", "identification_plate_number": 28543, "owner_full_name": "MITCHAEL PULLER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4050 HIGHWAY 6 1", "city": "LUMBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-09-27", "construction_end_date": "2015-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "1680.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "40.00", "final_casing_stick_up": "30.000", "bedrock_depth": "40.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "8.000", "artesian_flow": "1.50", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5566730, "utm_easting": 355957, "utm_accuracy_code": "H", "bcgs_id": 1626, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112968, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:48:49Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "6e9a9f79-ff3a-4e9a-91e4-f34fa24f7f43", "identification_plate_number": 28542, "owner_full_name": "ENOS DIFRANCESHCI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "27.5 KM MABEL LAKE ROAD 1", "city": "LUMBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "MABEL LAKE HOLDINGS", "construction_start_date": "2015-09-23", "construction_end_date": "2015-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "1245.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "30.00", "finished_well_depth": "30.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.60", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609248, "utm_easting": 380387, "utm_accuracy_code": "H", "bcgs_id": 10447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112969, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "74e5d696-2ea7-420f-9c74-1a600a78ae6a", "identification_plate_number": 28541, "owner_full_name": "KARE MCELVOGUE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "27 KM MABEL LAKE ROAD 1", "city": "LUMBY", "legal_lot": "150", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 50 MABLE LAKE HOLDINGS", "construction_start_date": "2015-09-14", "construction_end_date": "2015-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.220000", "longitude": "-122.590000", "ground_elevation": "1302.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "50.00", "finished_well_depth": "49.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "35.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609474, "utm_easting": 381053, "utm_accuracy_code": "H", "bcgs_id": 10447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112970, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:07:17Z", "update_user": "WELLS", "update_date": "2017-04-28T22:46:42Z", "well_guid": "fdd5777d-5ca8-4464-9fa1-824747f213f0", "identification_plate_number": 28540, "owner_full_name": "RORY TERRAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "MABLE LAKE ROAD SOUTH 1", "city": "LUMBY", "legal_lot": "143", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "27.5 KM MABLE LAKE ROAD LOT 43", "construction_start_date": "2015-08-29", "construction_end_date": "2015-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": "1350.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "43.00", "finished_well_depth": "43.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "26.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5609402, "utm_easting": 380992, "utm_accuracy_code": "H", "bcgs_id": 10447, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112971, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:15:17Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "3feb8668-8817-4dd0-94f4-1bac36982f57", "identification_plate_number": 28538, "owner_full_name": "ELFIE COBAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2516 14TH AVENUE 1", "city": "VERNON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "WEST OF BUILDING", "construction_start_date": "2015-08-21", "construction_end_date": "2015-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "1255.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "46.00", "finished_well_depth": "44.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "90.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5569086, "utm_easting": 338519, "utm_accuracy_code": "H", "bcgs_id": 1591, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112972, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:23:22Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "0dfba887-e2e1-40e5-98c6-3c934ae8bbdc", "identification_plate_number": 28537, "owner_full_name": "CLAYSON JINKINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2565 DUNSMUIR ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-07-08", "construction_end_date": "2015-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": "1284.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "78.00", "finished_well_depth": "78.00", "final_casing_stick_up": "22.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "49.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5526586, "utm_easting": 325279, "utm_accuracy_code": "H", "bcgs_id": 561, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112973, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:36:40Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "38ac6025-1d9c-41ac-b1bd-3e1fd0336e46", "identification_plate_number": 28536, "owner_full_name": "TIMMI JANKOVIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "578 GRANDVIEW BENCH ROAD 1", "city": "SALMON ARM", "legal_lot": "12", "legal_plan": "KAP69973", "legal_district_lot": "1", "legal_block": " ", "legal_section": "35", "legal_township": "19", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2015-05-19", "construction_end_date": "2015-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": "2213.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "24.00", "finished_well_depth": "24.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5613976, "utm_easting": 348212, "utm_accuracy_code": "H", "bcgs_id": 2059, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112975, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "1faa8d13-1306-4b5b-bdd6-33ddb40b4fec", "identification_plate_number": 28518, "owner_full_name": "PET SWADLINGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "11620 SEYMOUR 1", "city": "WINFIELD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-11-04", "construction_end_date": "2014-11-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.280000", "longitude": "-122.570000", "ground_elevation": "1305.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "119.00", "finished_well_depth": "118.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "50.000", "artesian_flow": "10.00", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5547117, "utm_easting": 327595, "utm_accuracy_code": "H", "bcgs_id": 1505, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112976, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "dce45784-596f-4387-bfec-14c88745d9f8", "identification_plate_number": 28521, "owner_full_name": "NOBLE VARDEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " CASORSO ROAD 1", "city": "KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-08-11", "construction_end_date": "2014-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "ON CASING", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "1169.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "64.00", "finished_well_depth": "63.00", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CONDUIT", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5524199, "utm_easting": 323379, "utm_accuracy_code": "H", "bcgs_id": 542, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112977, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:31Z", "update_user": "WELLS", "update_date": "2017-05-03T21:35:02Z", "well_guid": "7dbd6761-e7ec-4890-9730-8da5df43a9c7", "identification_plate_number": 42754, "owner_full_name": "BRIGGS BERNHARDI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4345 KINGSCOTE ROAD 1", "city": "COBBLE HILL", "legal_lot": "1AM7", "legal_plan": "VIP1032", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1 & 2", "legal_township": " ", "legal_range": "8", "land_district": "16", "legal_pid": "108080046", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2015-07-02", "construction_end_date": "2015-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": "160.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "169.00", "finished_well_depth": "169.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "127.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5396890, "utm_easting": 458064, "utm_accuracy_code": "H", "bcgs_id": 2838, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112978, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "80581981-730a-4f08-bcae-12d13a0b49ba", "identification_plate_number": 28515, "owner_full_name": "PEIRCE GRIBBON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "11530 TURTLE BAY CRESCENT 1", "city": "WINFIELD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-05-15", "construction_end_date": "2014-05-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "8\" SURFACE CASING", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "1308.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "117.00", "finished_well_depth": "117.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "30.000", "artesian_flow": "7.50", "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5546931, "utm_easting": 327589, "utm_accuracy_code": "H", "bcgs_id": 1503, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112979, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "WELLS", "update_date": "2017-04-28T22:51:01Z", "well_guid": "22619b25-324b-4247-8fa5-f63290a5335d", "identification_plate_number": 28526, "owner_full_name": "SHANI RUGGIERO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6010 OKANAGAN AVENUE 1", "city": "VERNON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-03-17", "construction_end_date": "2013-03-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "1208.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "25.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "107.00", "finished_well_depth": "106.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "20.000", "artesian_flow": "7.00", "artesian_pressure": "10.00", "well_cap_type": "WELL SEAL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5568375, "utm_easting": 335108, "utm_accuracy_code": "H", "bcgs_id": 1573, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112980, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:55:14Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "c6ca691b-f61b-4dfa-a983-94857532bae2", "identification_plate_number": 28527, "owner_full_name": "JENNICA RECKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2032 LAKESHORE DRIVE 1", "city": "OSOYOOS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-03-01", "construction_end_date": "2014-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "CASING", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": "914.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "14.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "21.00", "finished_well_depth": "21.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.40", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5431287, "utm_easting": 321583, "utm_accuracy_code": "H", "bcgs_id": 29, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112981, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "57ef4dfe-cc1e-424e-b211-442189e32f57", "identification_plate_number": 40514, "owner_full_name": "BERENICE SHIMMIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4351 BLENKINSOP RD 1", "city": "VICTORIA", "legal_lot": "1A", "legal_plan": "VIP69489", "legal_district_lot": "1", "legal_block": " ", "legal_section": "51", "legal_township": " ", "legal_range": " ", "land_district": "57", "legal_pid": "124586161", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-06-20", "construction_end_date": "2016-06-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "230.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "305.00", "finished_well_depth": "305.00", "final_casing_stick_up": "18.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "65.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5370653, "utm_easting": 473859, "utm_accuracy_code": "H", "bcgs_id": 2590, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112982, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "8b46cc1f-86f1-4f04-b0dd-6d6fdc657334", "identification_plate_number": 28514, "owner_full_name": "BARBRA TOCQUE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "26 CREIGHTON VALLEY ROAD", "city": "LUMBY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "ABOVE CAMPGROUND ALONGSIDE OF ACCESS ROAD", "construction_start_date": "2014-02-13", "construction_end_date": "2014-02-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.270000", "longitude": "-122.520000", "ground_elevation": "2790.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "81.00", "finished_well_depth": "77.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562598, "utm_easting": 378921, "utm_accuracy_code": "H", "bcgs_id": 13816, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112983, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "5415725c-da5f-4e1f-8c04-608229351863", "identification_plate_number": 50130, "owner_full_name": "BURLIE WHARMBY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "81 KNIGHT RD", "city": "COMOX", "legal_lot": "1C", "legal_plan": "25428", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "100571261", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-10-04", "construction_end_date": "2016-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "41.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "GRAVEL", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "89.00", "finished_well_depth": "87.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "33.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5507391, "utm_easting": 364185, "utm_accuracy_code": "H", "bcgs_id": 3571, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112984, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:21Z", "well_guid": "297e0bcd-0578-433e-badb-3cf3e76f3001", "identification_plate_number": 49356, "owner_full_name": "JENIFFER PADDICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "19211 Murphy Road 1", "city": "Hope", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Behind shop 20ft from building.", "construction_start_date": "2017-03-27", "construction_end_date": "2017-03-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "On well head stick-up.", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": "84.00", "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "45.00", "finished_well_depth": "38.50", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.50", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5467034, "utm_easting": 601924, "utm_accuracy_code": "H", "bcgs_id": 4777, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112985, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "WELLS", "update_date": "2017-04-28T22:52:07Z", "well_guid": "626cc65b-5576-4958-9944-c621ce4a550a", "identification_plate_number": 28516, "owner_full_name": "SHANNAH KEATES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "ROCK ISLAND ROAD 1", "city": "NAKUSP", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-06-20", "construction_end_date": "2013-06-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "ON CASING", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "290.00", "finished_well_depth": "290.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "5.000", "artesian_flow": "0.50", "artesian_pressure": null, "well_cap_type": "CONDUIT CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5550423, "utm_easting": 434994, "utm_accuracy_code": "H", "bcgs_id": 10426, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112986, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "WELLS", "update_date": "2017-04-28T22:43:41Z", "well_guid": "38f87f65-916f-4d6a-9cee-82f8be1edfc9", "identification_plate_number": 28512, "owner_full_name": "LILLLIE HECKNEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "416 WHITEVALE ROAD 1", "city": "LUMBU", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BETWEEN EXISTING DWELLING AND WHITEVALE ROAD", "construction_start_date": "2013-09-20", "construction_end_date": "2013-09-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "9c55c8c6-be36-4293-a3e6-1c5594bc2af9", "well_identification_plate_attached": "ON CASING", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "1650.00", "ground_elevation_method": "GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "51.00", "finished_well_depth": "51.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "11.80", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5565468, "utm_easting": 358064, "utm_accuracy_code": "H", "bcgs_id": 1632, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112987, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:29:36Z", "update_user": "WELLS", "update_date": "2017-04-28T22:03:35Z", "well_guid": "9353a3c6-4cae-4373-a517-dd1944b366ff", "identification_plate_number": 47987, "owner_full_name": "HERMON FOLK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "12", "legal_plan": "NEP80240", "legal_district_lot": "18973", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "126568519", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-24", "construction_end_date": "2016-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": "2097.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "135.00", "final_casing_stick_up": "23.000", "bedrock_depth": "68.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "37.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5439848, "utm_easting": 526596, "utm_accuracy_code": "H", "bcgs_id": 9546, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112988, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:43:22Z", "update_user": "WELLS", "update_date": "2017-05-12T23:22:02Z", "well_guid": "efe536a3-e16d-45a9-b5bd-c35fc5d49cb3", "identification_plate_number": 36321, "owner_full_name": "LIANNE CARILLO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1445 BROADVIEW DRIVE 1", "city": "GARBIOLA", "legal_lot": "1D", "legal_plan": "17651", "legal_district_lot": "1003958855", "legal_block": " ", "legal_section": "31", "legal_township": " ", "legal_range": " ", "land_district": "32", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2013-09-03", "construction_end_date": "2013-09-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1982d74b-67ca-4794-8569-74693328cfcd", "well_identification_plate_attached": "CASING", "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "0.00", "surface_seal_method": "POURED", "backfill_type": "BLUE CLAY", "backfill_depth": "10.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "12.000", "bedrock_depth": "25.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449447, "utm_easting": 438179, "utm_accuracy_code": "H", "bcgs_id": 4048, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112989, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:56:25Z", "update_user": "WELLS", "update_date": "2017-06-29T22:40:47Z", "well_guid": "8193a8d4-1dba-4f64-94b6-cbedc6525c93", "identification_plate_number": 24401, "owner_full_name": "KARIL BLUNDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1410 LINDSEY PLACE 1", "city": "DELTA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "ANNACIS ISLAND WASTE WATER TREATMENT PLANT", "construction_start_date": "2016-05-16", "construction_end_date": "2016-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "66db7538-5182-4e5f-859d-ab5942acd81c", "well_identification_plate_attached": "TOP OF CAP", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "3.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "122.00", "finished_well_depth": "112.00", "final_casing_stick_up": "34.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "ALUMINIUM", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5448142, "utm_easting": 503601, "utm_accuracy_code": "H", "bcgs_id": 13839, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112990, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "WELLS", "update_date": "2017-05-12T23:22:02Z", "well_guid": "894ef68a-02de-4572-9b49-5ac59a58fd29", "identification_plate_number": 30748, "owner_full_name": "KAREN REDINGTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3075 HIGHWAY 97 SOUTH 1", "city": "150 MILE HOUSE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "111 & 12", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "115134776", "well_location_description": "NOT PROVIDED", "construction_start_date": "2014-08-02", "construction_end_date": "2014-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "721f9887-3cd7-41be-9e40-181b1f35d58c", "well_identification_plate_attached": "5\" BTOC", "latitude": "49.290000", "longitude": "-122.540000", "ground_elevation": "2449.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "141.00", "finished_well_depth": "141.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "52.00", "well_yield": "11.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5773623, "utm_easting": 573484, "utm_accuracy_code": "H", "bcgs_id": 6127, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112991, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "WELLS", "update_date": "2017-12-21T20:28:49Z", "well_guid": "083cbdce-f9ac-434d-9873-8a953317ee11", "identification_plate_number": 35080, "owner_full_name": "GERTIE FROUDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7838 HARVIE ROAD 1", "city": "SURREY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-01-31", "construction_end_date": "2017-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "casing", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "1.50", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "385.00", "finished_well_depth": null, "final_casing_stick_up": "38.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "welded", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5443586, "utm_easting": 520099, "utm_accuracy_code": "H", "bcgs_id": 4121, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112992, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "WELLS", "update_date": "2017-04-28T22:05:31Z", "well_guid": "6a799e1d-82f4-4f77-8db5-16a1ecd7baf0", "identification_plate_number": 47989, "owner_full_name": "CLEMENCE LEBORGNE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "352811", "legal_district_lot": "1492", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-10-26", "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": "2449.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELL SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "UNK", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5445296, "utm_easting": 550733, "utm_accuracy_code": "H", "bcgs_id": 817, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112993, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "WELLS", "update_date": "2017-04-28T22:10:03Z", "well_guid": "bc88e386-bad1-4289-aaeb-1a5287c755f3", "identification_plate_number": 47993, "owner_full_name": "MATILDE ZIEMS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "12", "legal_plan": "10704", "legal_district_lot": "11236", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "112883204", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-17", "construction_end_date": "2016-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": "2617.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "420.00", "finished_well_depth": "420.00", "final_casing_stick_up": "36.000", "bedrock_depth": "19.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.00", "well_yield": "17.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5437979, "utm_easting": 461611, "utm_accuracy_code": "H", "bcgs_id": 697, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112994, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "WELLS", "update_date": "2017-04-28T22:11:09Z", "well_guid": "9c2d406b-ef16-423f-922e-b0f724df5cd8", "identification_plate_number": 47996, "owner_full_name": "ABEL RAHL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "1237", "legal_district_lot": "1304", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "110902635", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-12-27", "construction_end_date": "2016-12-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "1916.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "270.00", "finished_well_depth": "260.00", "final_casing_stick_up": "36.000", "bedrock_depth": "19.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "75.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5481422, "utm_easting": 477395, "utm_accuracy_code": "H", "bcgs_id": 910, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112995, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:09:53Z", "update_user": "WELLS", "update_date": "2017-04-28T22:12:13Z", "well_guid": "419adc54-e4f1-4062-92d9-c69555d08746", "identification_plate_number": 47118, "owner_full_name": "HALLI DAINTRY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "11", "legal_plan": "18348", "legal_district_lot": "14592", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-11-26", "construction_end_date": "2016-11-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f606669c-a60c-422d-859a-fdc54278d9b0", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": "2193.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "CUTTINGS", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "80.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.50", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "RODENT FREE", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5443030, "utm_easting": 542160, "utm_accuracy_code": "H", "bcgs_id": 807, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112996, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:24:46Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "ca8d7556-8dec-45ab-b43e-15078d72c6d6", "identification_plate_number": 40091, "owner_full_name": "PANCHO MORSLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " fording mine rd 1", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", "construction_start_date": "2017-03-22", "construction_end_date": "2017-03-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "115.00", "finished_well_depth": "115.00", "final_casing_stick_up": "36.000", "bedrock_depth": "102.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "1000.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5555647, "utm_easting": 651018, "utm_accuracy_code": "H", "bcgs_id": 13887, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112997, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:31:18Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:36Z", "well_guid": "cedf002f-d1ae-4bf7-b7c6-e30bd128b2d0", "identification_plate_number": 40052, "owner_full_name": "TYBI LONGRIGG", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "fording mine road 1", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", "construction_start_date": "2017-03-18", "construction_end_date": "2017-03-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "127.00", "finished_well_depth": "127.00", "final_casing_stick_up": "36.000", "bedrock_depth": "120.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "1000.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5555664, "utm_easting": 650986, "utm_accuracy_code": "H", "bcgs_id": 13887, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112998, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:37:47Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "b187ea5c-d8e9-43ba-b93f-39c835d8aae2", "identification_plate_number": 40014, "owner_full_name": "SANDRO ALEJANDRI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "fording mine road 1", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on operations", "construction_start_date": "2017-03-16", "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "116.00", "finished_well_depth": "116.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "500.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5555929, "utm_easting": 650380, "utm_accuracy_code": "H", "bcgs_id": 13887, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 112999, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:43:15Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "6d0027f1-2cee-41a7-82a8-8e8dc8dab0b1", "identification_plate_number": 40080, "owner_full_name": "TABBY AVRAHAMOF", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314404-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "fording mi fording mine road 1", "city": "elkford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", "construction_start_date": "2017-03-14", "construction_end_date": "2017-03-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "116.00", "finished_well_depth": "116.00", "final_casing_stick_up": "36.000", "bedrock_depth": "99.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "1000.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PLATE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "219", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5555622, "utm_easting": 652483, "utm_accuracy_code": "H", "bcgs_id": 13890, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113000, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T16:19:42Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "83ae532e-311c-43c1-98b2-9055bae18314", "identification_plate_number": 49311, "owner_full_name": "ROLAND FELDHUHN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "43675 Adams RD 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "On east side of house 15ft ft from SE corner diagonal, 33ft from NE corner diagonal toward SSE.", "construction_start_date": "2016-08-29", "construction_end_date": "2016-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "STICK UP", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "20.00", "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "5.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "80.00", "finished_well_depth": "66.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "SS CAP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442407, "utm_easting": 571813, "utm_accuracy_code": "H", "bcgs_id": 4303, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113001, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-31T19:07:15Z", "update_user": "WELLS", "update_date": "2017-04-13T20:31:34Z", "well_guid": "098ca937-a9f6-46b6-a911-0e84b63b88bc", "identification_plate_number": null, "owner_full_name": "RONALD CRISTOFORO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "6311 MALAHAT ROAD", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100246182", "well_location_description": "IN SMALL RED PUMP HOUSE NEAR PROPERTY ENTRANCE", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "24.00", "final_casing_stick_up": "6.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CONCRETE", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "42", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5452712, "utm_easting": 423431, "utm_accuracy_code": "H", "bcgs_id": 3238, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113002, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-31T23:21:48Z", "update_user": "WELLS", "update_date": "2017-03-31T23:31:32Z", "well_guid": "19027a11-3ece-448e-8982-7b3f9dcb84f0", "identification_plate_number": null, "owner_full_name": "ROLAND TOMKIN STAINBURN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7272 252 A CRESCENT 1", "city": "LANGLEY", "legal_lot": "117", "legal_plan": "43475", "legal_district_lot": "1", "legal_block": " ", "legal_section": "23", "legal_township": "11", "legal_range": " ", "land_district": "36", "legal_pid": "106884822", "well_location_description": "LOWER BACK EAST FENCE - \"SOURCE 2\"", "construction_start_date": "1985-10-01", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "73502de2-5c8a-46ca-ace6-18d5f251d82c", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "NT_CMT_GRT", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "44.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "3.00", "well_yield": "200.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5442447, "utm_easting": 534990, "utm_accuracy_code": "A", "bcgs_id": 4183, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113003, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "WELLS", "update_date": "2017-04-03T22:23:01Z", "well_guid": "e2b684cf-189d-4d9f-854a-7ced31fc4454", "identification_plate_number": 32958, "owner_full_name": "ROLAND SAYER HANSOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4942 Sooke Road 1", "city": "Prince George", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2015-10-18", "construction_end_date": "2015-10-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "200.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "2.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Unknown", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5986504, "utm_easting": 512646, "utm_accuracy_code": "H", "bcgs_id": 7350, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113004, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:54Z", "update_user": "WELLS", "update_date": "2017-07-11T23:18:29Z", "well_guid": "5bd1e896-8147-4c13-8e3f-147f359a9baa", "identification_plate_number": 41964, "owner_full_name": "ROLAND LYNDSAY ENION", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "1095 Deep Creek Road 1", "city": "Enderby", "legal_lot": "13", "legal_plan": "KAP40645", "legal_district_lot": "1", "legal_block": " ", "legal_section": "6", "legal_township": "19", "legal_range": "9", "land_district": "25", "legal_pid": "112929298", "well_location_description": "60m East of Deep Creek Road, 150m North of South Property line.", "construction_start_date": "2002-09-24", "construction_end_date": "2002-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "To Casing", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": "1800.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "283.00", "finished_well_depth": "283.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin Proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6.63", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5606080, "utm_easting": 341536, "utm_accuracy_code": "H", "bcgs_id": 1904, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113005, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:06:55Z", "update_user": "WELLS", "update_date": "2017-06-07T17:18:14Z", "well_guid": "ba579d25-d319-423e-8e04-a4c942c9ff4b", "identification_plate_number": 44427, "owner_full_name": "ROLAND GERHARDINE ANTAT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "1455 Cowichan Bay Road 1", "city": "Cobble Hill", "legal_lot": "1A", "legal_plan": "VIP62341", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1", "legal_township": " ", "legal_range": "5 & 6", "land_district": "16", "legal_pid": "123286733", "well_location_description": "Not Provided", "construction_start_date": "1958-01-01", "construction_end_date": "1958-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "314.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5396449, "utm_easting": 455744, "utm_accuracy_code": "H", "bcgs_id": 2794, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113006, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:19:05Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "58a8588a-29ae-4f21-8304-31911ef04356", "identification_plate_number": 50149, "owner_full_name": "ROLAND SYMON OLAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9036 CLARKSON AVE 1", "city": "BLACK CREEK", "legal_lot": "1B", "legal_plan": "31114", "legal_district_lot": "1221", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "101174029", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-21", "construction_end_date": "2017-03-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": "14.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "21.00", "finished_well_depth": "18.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5526159, "utm_easting": 347890, "utm_accuracy_code": "H", "bcgs_id": 3633, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113007, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "8a1ee06f-472f-4126-aa4a-a584314aa7d0", "identification_plate_number": 52407, "owner_full_name": "ROLAND ROMAN PORTMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " RIVERSIDE RD 1", "city": "DUNCAN", "legal_lot": "118", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "23", "legal_pid": "109711082", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-21", "construction_end_date": "2017-03-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "570.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "250.00", "final_casing_stick_up": "13.000", "bedrock_depth": "1.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5391601, "utm_easting": 449582, "utm_accuracy_code": "H", "bcgs_id": 2690, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113008, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "9772ea31-78f5-4d7f-9a45-519811893900", "identification_plate_number": 49357, "owner_full_name": "ROLAND GORDAN OLENOV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1562 Vimy Road 1", "city": "Agassiz", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "In backyard 25ft E of house", "construction_start_date": "2017-04-04", "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head stickup", "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": "45.00", "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "40.00", "finished_well_depth": "29.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.50", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5454088, "utm_easting": 590248, "utm_accuracy_code": "H", "bcgs_id": 4740, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113009, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:15:00Z", "update_user": "WELLS", "update_date": "2017-04-12T19:31:13Z", "well_guid": "c6f86716-3507-41e1-bf28-6f60f4311bb7", "identification_plate_number": 32924, "owner_full_name": "ROLAND LORALEE GLADYER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "18400 Hughes Road 1", "city": "Prince George", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Not Provided", "construction_start_date": "2016-02-03", "construction_end_date": "2016-02-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "Not Provided", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": "2307.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "163.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "137.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Not Provided", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5960248, "utm_easting": 510891, "utm_accuracy_code": "H", "bcgs_id": 13811, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113010, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "d25b516b-a09c-4b31-821d-eee5a155c9ce", "identification_plate_number": 32298, "owner_full_name": "ROLAND BRODERICK SAMBER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1939 Ross Road 1", "city": "Williams Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per GPS", "construction_start_date": "2017-04-05", "construction_end_date": "2017-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.280000", "longitude": "-122.590000", "ground_elevation": "2960.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "155.00", "final_casing_stick_up": "25.000", "bedrock_depth": "36.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "107.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "water tight cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5776885, "utm_easting": 563331, "utm_accuracy_code": "H", "bcgs_id": 6324, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113011, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T17:34:33Z", "update_user": "WELLS", "update_date": "2017-06-09T23:17:33Z", "well_guid": "e47d1c08-d234-462d-93a8-5016814274b6", "identification_plate_number": null, "owner_full_name": "BERNADENE URVOY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "11", "legal_plan": "35726", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1", "legal_township": " ", "legal_range": " ", "land_district": "32", "legal_pid": "100359173", "well_location_description": "Not Provided", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5445367, "utm_easting": 429713, "utm_accuracy_code": "J", "bcgs_id": 4030, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113012, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T17:52:59Z", "update_user": "WELLS", "update_date": "2017-06-09T23:17:33Z", "well_guid": "6f76d35a-fe88-47f6-9530-eabf01451ff6", "identification_plate_number": null, "owner_full_name": "ASTRIX TANFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "11", "legal_plan": "35726", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1", "legal_township": " ", "legal_range": " ", "land_district": "32", "legal_pid": "100359173", "well_location_description": "Proposed well ~ not constructed", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Not Provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5445536, "utm_easting": 429584, "utm_accuracy_code": "G", "bcgs_id": 4030, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113013, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T19:53:42Z", "update_user": "WELLS", "update_date": "2017-04-10T20:57:31Z", "well_guid": "8f4315bc-7be9-4243-b764-41ba9395da9d", "identification_plate_number": 52484, "owner_full_name": "MERRIDIE KOPTA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "EMPRESS RD 1", "city": "SHAWNIGAN LAKE", "legal_lot": "1", "legal_plan": "VIP88137", "legal_district_lot": "1", "legal_block": " ", "legal_section": "8&9", "legal_township": " ", "legal_range": " ", "land_district": "53", "legal_pid": "123456789", "well_location_description": "LOCATED ON THE ROAD RIGHT OF WAY AT THE END OF EMPRESS ROAD.", "construction_start_date": "2017-03-06", "construction_end_date": "2017-03-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": "497.00", "ground_elevation_method": "20K_MAP", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "186.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "16.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": "439", "observation_well_status": "Active", "ems": "E308046", "utm_zone_code": "10", "utm_northing": 5391707, "utm_easting": 454680, "utm_accuracy_code": "H", "bcgs_id": 2694, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113014, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "1b6e1c5d-3347-452c-bd8a-bde0680736a4", "identification_plate_number": 49347, "owner_full_name": "HASKEL FRANKLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10371 Young Rd 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "in front yard 9 meters east", "construction_start_date": "2017-04-03", "construction_end_date": "2017-04-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head", "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "7.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "51.00", "finished_well_depth": "36.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.50", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449189, "utm_easting": 576309, "utm_accuracy_code": "H", "bcgs_id": 4680, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113015, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T23:41:35Z", "update_user": "WELLS", "update_date": "2017-10-26T15:34:20Z", "well_guid": "dd5e9c9c-12fb-4f6d-842e-776693779985", "identification_plate_number": 49501, "owner_full_name": "BERENICE GRENSHIELDS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "29850 Highway 16 West 1", "city": "Burns Lake", "legal_lot": "1A", "legal_plan": "43468", "legal_district_lot": "13529 and 3530", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "124386375", "well_location_description": "Not provided", "construction_start_date": "1981-06-26", "construction_end_date": "1981-06-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "212.00", "finished_well_depth": "212.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6032582, "utm_easting": 690670, "utm_accuracy_code": "H", "bcgs_id": 7782, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113016, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "WELLS", "update_date": "2017-04-12T20:07:51Z", "well_guid": "28090faa-3569-4d04-bc63-e546c8f5a3b8", "identification_plate_number": 32960, "owner_full_name": "JEHANNA MEADEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "15720 SCHEFER ROAD 1", "city": "PRINCE GEORGE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-01-27", "construction_end_date": "2016-01-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6be40dfe-1c42-4c2c-a3df-afe82809b4fc", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": "2501.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5995707, "utm_easting": 501450, "utm_accuracy_code": "H", "bcgs_id": 7407, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113017, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T17:33:18Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "36e53ca7-a1fa-45aa-9e3f-b41dca3808e0", "identification_plate_number": 50154, "owner_full_name": "KIRBIE MUSHART", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " CRESCENT RD 1", "city": "DENMAN ISLAND", "legal_lot": "1A", "legal_plan": "VIP88949", "legal_district_lot": "1", "legal_block": " ", "legal_section": "12", "legal_township": " ", "legal_range": " ", "land_district": "32", "legal_pid": "128605691", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-27", "construction_end_date": "2017-03-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "250.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "16.000", "bedrock_depth": "16.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.330", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5486240, "utm_easting": 371263, "utm_accuracy_code": "H", "bcgs_id": 3421, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113018, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:11:13Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "2aefb1ca-ed74-4f69-9475-49502691d0da", "identification_plate_number": 52487, "owner_full_name": "PRISSIE RIGTS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "165 MARINERS WAY 1", "city": "MAYNE ISLAND", "legal_lot": "1142", "legal_plan": "VIP23981", "legal_district_lot": "1", "legal_block": " ", "legal_section": "6", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "101153480", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-04-04", "construction_end_date": "2017-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": "72.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.250", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5409936, "utm_easting": 475623, "utm_accuracy_code": "H", "bcgs_id": 3009, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113019, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "WELLS", "update_date": "2017-04-10T19:30:19Z", "well_guid": "8897eae5-bb5b-41b6-97e1-f4676f738293", "identification_plate_number": 29376, "owner_full_name": "CHRISTIN PLUM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "48 Savanna Road 1", "city": "Summerland", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "13762", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "106910360", "well_location_description": "LEFT FIELD, SOUTH END OF PROPERTY. 30-40 FT FROM PROPERTY LINE", "construction_start_date": "2015-06-01", "construction_end_date": "2015-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "aba0989f-8a64-4a0c-a1fc-d73b2592db80", "well_identification_plate_attached": "CLAMPED", "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "24.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "39.00", "well_yield": "17.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6.63", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5507603, "utm_easting": 297671, "utm_accuracy_code": "A", "bcgs_id": 455, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113020, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "WELLS", "update_date": "2017-04-10T20:46:01Z", "well_guid": "00c401ef-3a30-4adc-b2e9-04f1879037e6", "identification_plate_number": 29378, "owner_full_name": "CACILIA BRANGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "46 SAVANNA ROAD 1", "city": "SUMMERLAND", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "13672", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "106910360", "well_location_description": "NONE PROVIDED", "construction_start_date": "2015-11-01", "construction_end_date": "2015-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "aba0989f-8a64-4a0c-a1fc-d73b2592db80", "well_identification_plate_attached": "CLAMPED", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "14.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "310.00", "finished_well_depth": "274.00", "final_casing_stick_up": "24.000", "bedrock_depth": "167.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "47.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6.63", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5507821, "utm_easting": 297593, "utm_accuracy_code": "A", "bcgs_id": 457, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113021, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "WELLS", "update_date": "2017-08-29T16:58:03Z", "well_guid": "a13c1e6e-22d9-499c-9def-c5df7879011e", "identification_plate_number": 50153, "owner_full_name": "ROLEY MAUNDERS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1904 BATES RD 1", "city": "COURTENAY", "legal_lot": "19", "legal_plan": "22883", "legal_district_lot": "1", "legal_block": "71", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "100044873", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-21", "construction_end_date": "2017-03-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": "182.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "174.00", "finished_well_depth": "173.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5513315, "utm_easting": 358809, "utm_accuracy_code": "H", "bcgs_id": 3576, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113022, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:26:38Z", "update_user": "WELLS", "update_date": "2017-05-29T22:03:13Z", "well_guid": "9fc3cd8e-a998-49de-807e-d3a7cff1631c", "identification_plate_number": null, "owner_full_name": "CONSUELA MALLAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "2", "legal_township": "50", "legal_range": " ", "land_district": "36", "legal_pid": "114753651", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5508390, "utm_easting": 490494, "utm_accuracy_code": "H", "bcgs_id": 4599, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113023, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:30:37Z", "update_user": "WELLS", "update_date": "2017-07-19T21:58:12Z", "well_guid": "e9f9d197-b6a0-4718-8989-48e0b5b75f95", "identification_plate_number": 10839, "owner_full_name": "STEARNE BEXON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "5230 LANDSDOWNE ROAD 1", "city": "ARMSTRONG", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": "18", "legal_range": "9", "land_district": "59", "legal_pid": "113795511", "well_location_description": "THAT PART OF THE NORTH 1/2 SECTION 9 WHICH LIES TO THE WEST OF THE WESTERN LIMIT OF SPALLUMCHEEN INDIAN RESERVE NO 2 TOWNSHIP 18 RANGE 9 WEST OF THE 6TH MERIDIAN KAMLOOPS DIVISION YALE DISTRICT", "construction_start_date": "2006-01-05", "construction_end_date": "2006-01-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.520000", "ground_elevation": "1698.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "159.00", "finished_well_depth": "159.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6.63", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5598467, "utm_easting": 344769, "utm_accuracy_code": "H", "bcgs_id": 1910, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113024, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T17:48:48Z", "update_user": "WELLS", "update_date": "2017-08-03T07:25:03Z", "well_guid": "63675eab-06d7-42d7-bc0e-60ebbb5157c5", "identification_plate_number": 49502, "owner_full_name": "TALLIE WEEKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3621 Billeter Road 1", "city": "Smithers", "legal_lot": "11", "legal_plan": "2884", "legal_district_lot": "11203", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": "14", "legal_pid": "127997618", "well_location_description": "not provided", "construction_start_date": "1940-01-01", "construction_end_date": "1940-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "20.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "48", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6072693, "utm_easting": 623548, "utm_accuracy_code": "H", "bcgs_id": 7871, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113025, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "WELLS", "update_date": "2017-05-17T17:15:19Z", "well_guid": "c221a09b-6765-4110-8698-7efa4bb4c092", "identification_plate_number": 32930, "owner_full_name": "SIBYL MUSTILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1100 Wilan Road", "city": "Prince George", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "No Description provided in Well Construction Report.", "construction_start_date": "2016-05-30", "construction_end_date": "2016-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "2354.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "243.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "160.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5962070, "utm_easting": 505061, "utm_accuracy_code": "H", "bcgs_id": 6994, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113026, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "WELLS", "update_date": "2017-08-14T21:15:57Z", "well_guid": "1ad30bfc-a749-445e-99d8-4ac6abad99c6", "identification_plate_number": 50501, "owner_full_name": "ULISES HOLLERIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "INJECTION", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Legal Description: b-54-G/94-A-15\r\nLand Tenure Number: 8012838", "construction_start_date": "2009-03-30", "construction_end_date": "2009-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.70", "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "495.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "276.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAP", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6305995, "utm_easting": 641808, "utm_accuracy_code": "A", "bcgs_id": 13810, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113027, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:53Z", "update_user": "WELLS", "update_date": "2017-04-12T18:19:44Z", "well_guid": "0c4527a5-8368-43e8-8c03-1a12c0c1c6c7", "identification_plate_number": 32931, "owner_full_name": "VIVI CAPOUN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "775 Laurie 1", "city": "Prince George", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "No information provided other than coordinates.", "construction_start_date": "2016-02-16", "construction_end_date": "2016-02-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": "2283.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "194.00", "finished_well_depth": "194.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "160.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Unknown", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5965554, "utm_easting": 503140, "utm_accuracy_code": "H", "bcgs_id": 6998, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113028, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": "WELLS", "update_date": "2017-04-12T17:43:43Z", "well_guid": "8a38d3c5-5cd6-4613-a45a-2291daffbe00", "identification_plate_number": 32964, "owner_full_name": "ARA BROADSTOCK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "13115 EAGLE CREST ROAD 1", "city": "PRINCE GEORGE", "legal_lot": "154", "legal_plan": "PGP 20774", "legal_district_lot": "12427", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "109796495", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-01-05", "construction_end_date": "2016-01-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": "2473.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "203.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "110.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5988820, "utm_easting": 511939, "utm_accuracy_code": "H", "bcgs_id": 7351, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113029, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "WELLS", "update_date": "2017-06-02T20:51:57Z", "well_guid": "7602414b-b51b-4203-b3d9-33fb9fca440d", "identification_plate_number": 44428, "owner_full_name": "LISHE DOWNE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": "Denny Island", "legal_lot": "11", "legal_plan": "44186", "legal_district_lot": "11597 and 1599", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "12", "legal_pid": "105698839", "well_location_description": "Not Provided", "construction_start_date": "2016-04-15", "construction_end_date": "2016-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "4b1045ea-7b50-4a7a-98db-400db3280c93", "well_identification_plate_attached": "Not Provided", "latitude": "49.230000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "240.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.50", "well_yield": "65.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Not Provided", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5777788, "utm_easting": 562102, "utm_accuracy_code": "A", "bcgs_id": 13815, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113030, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "WELLS", "update_date": "2017-04-12T18:32:15Z", "well_guid": "860b540c-7235-4c53-acdc-e170d4f30354", "identification_plate_number": 32957, "owner_full_name": "COURTNAY GADSDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4361 Grouse Road 1", "city": "Prince George", "legal_lot": "12", "legal_plan": "25922", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "107485000", "well_location_description": "Not provided", "construction_start_date": "2016-02-09", "construction_end_date": "2016-02-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "Not provided", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": "2556.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "470.00", "finished_well_depth": "470.00", "final_casing_stick_up": "24.000", "bedrock_depth": "230.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "260.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Not provided", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5963756, "utm_easting": 513001, "utm_accuracy_code": "H", "bcgs_id": 7009, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113031, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:37:28Z", "update_user": "WELLS", "update_date": "2017-05-17T18:10:18Z", "well_guid": "d46f475d-96f8-4334-ab0a-4cd43127a282", "identification_plate_number": 37536, "owner_full_name": "LORALYN AISHFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "2302 Skimikin Lake Road 1", "city": "Tappen", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "A", "legal_section": "24", "legal_township": "21", "legal_range": "11", "land_district": "25", "legal_pid": "118668631", "well_location_description": "W6M", "construction_start_date": "2015-12-18", "construction_end_date": "2015-12-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1fce8293-1fb6-4867-91aa-752a3601d430", "well_identification_plate_attached": "SIDE OF CASING", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "1483.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "SAND", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "160.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMIN PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5630502, "utm_easting": 331624, "utm_accuracy_code": "H", "bcgs_id": 11450, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113032, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-13T21:03:09Z", "update_user": "WELLS", "update_date": "2017-07-27T13:51:22Z", "well_guid": "0531f809-af5c-49fd-b73b-d610f3dd5428", "identification_plate_number": 25807, "owner_full_name": "DIANDRA CLELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "160 Saddlehorn Drive 1", "city": "Kaleden", "legal_lot": "11", "legal_plan": "KAP 49966", "legal_district_lot": "12454S", "legal_block": " ", "legal_section": "10", "legal_township": "88", "legal_range": " ", "land_district": "54", "legal_pid": "118296831", "well_location_description": "SOUTH END KITLEY LAKE", "construction_start_date": "2008-01-07", "construction_end_date": "2008-01-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bfebc9a7-9612-4c4b-a9a6-1de647534280", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "340.00", "finished_well_depth": "340.00", "final_casing_stick_up": "1.000", "bedrock_depth": "45.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "1", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5469937, "utm_easting": 308043, "utm_accuracy_code": "H", "bcgs_id": 326, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113033, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:02Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "f978c685-555d-4e3b-b14d-22b391071e2b", "identification_plate_number": 49359, "owner_full_name": "ROBIN DIKLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "49930 Castleman Rd 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Behind Shop SE corner", "construction_start_date": "2017-04-13", "construction_end_date": "2017-04-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head stickup", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "26.00", "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "gravel", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "65.00", "finished_well_depth": "55.60", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "aluminium", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449247, "utm_easting": 584343, "utm_accuracy_code": "H", "bcgs_id": 4697, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113035, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "WELLS", "update_date": "2017-12-05T00:05:39Z", "well_guid": "edd2c0ed-14b8-49be-b61b-253658e94e57", "identification_plate_number": 49344, "owner_full_name": "CLAYSON BOGIES", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9760 McGrath Road 1", "city": "Rosedale", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NNE corner of shop", "construction_start_date": "2017-04-17", "construction_end_date": "2017-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head stickup", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "gravel", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "128.00", "finished_well_depth": "123.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5447941, "utm_easting": 587177, "utm_accuracy_code": "H", "bcgs_id": 4696, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113036, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T19:13:30Z", "update_user": "WELLS", "update_date": "2017-08-14T21:15:25Z", "well_guid": "e53ce6dd-a4ba-45f3-b848-3bfaa425aeea", "identification_plate_number": 50500, "owner_full_name": "PHEBE BRITO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "a-A21-G/94-A-15, WEST AND SOUTH OF PEEJAY 4-WAY", "construction_start_date": "2014-03-14", "construction_end_date": "2014-03-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "23.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "700.00", "finished_well_depth": "680.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "208.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAPPED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6303304, "utm_easting": 644561, "utm_accuracy_code": "A", "bcgs_id": 13813, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113038, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T21:52:58Z", "update_user": "WELLS", "update_date": "2017-04-18T21:55:41Z", "well_guid": "6bc0177f-47fc-49dc-a610-fde14386e564", "identification_plate_number": null, "owner_full_name": "BERTRAND MCCLANCY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "114706695", "well_location_description": "DL484 PEACE RIVER EXC PLS 26371 & 45135", "construction_start_date": "2014-10-29", "construction_end_date": "2014-10-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "60.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.470", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "5", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6183442, "utm_easting": 593810, "utm_accuracy_code": "A", "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113039, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T20:46:02Z", "update_user": "WELLS", "update_date": "2017-05-03T23:34:48Z", "well_guid": "a825dcea-7669-4871-b835-98d729bafb7f", "identification_plate_number": 47485, "owner_full_name": "KIAH SANSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6220 Redfish Road North Shore 1", "city": "Nelson", "legal_lot": "19", "legal_plan": "5817", "legal_district_lot": "11313", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "110406671", "well_location_description": "Lot 9 PL 5817 DL 1313 KD", "construction_start_date": "2017-04-12", "construction_end_date": "2017-04-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": "1758.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "10.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5495498, "utm_easting": 496647, "utm_accuracy_code": "H", "bcgs_id": 957, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113040, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T22:11:12Z", "update_user": "WELLS", "update_date": "2017-07-27T14:41:15Z", "well_guid": "1f1c17e0-d0da-4952-b75a-f608c888a6f8", "identification_plate_number": 10420, "owner_full_name": "KRISTIEN COWUP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4662 Likely Road 1", "city": "Big Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "18279", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "115261999", "well_location_description": "Driller construction report shows the address as 4632 Likely Road, application and maps confirm in IMAP that the address is 4662 Likely Road.", "construction_start_date": "2006-03-30", "construction_end_date": "2006-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "not provided", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "GRT_STLCSG", "surface_seal_length": "20.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "OTHER", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "255.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5808662, "utm_easting": 578058, "utm_accuracy_code": "A", "bcgs_id": 6232, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113041, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:17:59Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "495b1d7f-63da-4631-aca3-ea0331900660", "identification_plate_number": 43647, "owner_full_name": "NANICE TRASE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1720 Whibley 1", "city": "Coombs", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-04-04", "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "348.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "39.00", "finished_well_depth": "39.00", "final_casing_stick_up": "12.000", "bedrock_depth": "38.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.06", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5462074, "utm_easting": 399538, "utm_accuracy_code": "H", "bcgs_id": 3326, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113043, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:48Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "a1b2af23-fd0b-43a2-936f-400ddd8f2c6f", "identification_plate_number": 32293, "owner_full_name": "CARMEN DEBLASI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2581 Chimney Lake Road 1", "city": "Williams Lake ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " 40 feet from north east corner of house", "construction_start_date": "2017-04-13", "construction_end_date": "2017-04-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "2895.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "189.00", "finished_well_depth": "189.00", "final_casing_stick_up": "26.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "73.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "water tight cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5755370, "utm_easting": 569576, "utm_accuracy_code": "H", "bcgs_id": 12150, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113052, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "WELLS", "update_date": "2017-05-03T23:28:36Z", "well_guid": "e8655a44-4f03-41ad-b67a-9c9dd2f3b6a9", "identification_plate_number": 44215, "owner_full_name": "IRV AVRAHAM", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Invermere", "legal_lot": "15", "legal_plan": "88930", "legal_district_lot": "14596", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "127903095", "well_location_description": "Lot 5 Pl 88930 KD", "construction_start_date": "2017-04-19", "construction_end_date": "2017-04-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.280000", "longitude": "-122.510000", "ground_elevation": "3243.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "355.00", "finished_well_depth": "355.00", "final_casing_stick_up": "12.000", "bedrock_depth": "245.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "250.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5593590, "utm_easting": 566911, "utm_accuracy_code": "H", "bcgs_id": 10097, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113056, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:35Z", "update_user": "WELLS", "update_date": "2017-05-03T22:59:24Z", "well_guid": "1cbeae32-3997-4bfe-bcc9-10e99491475a", "identification_plate_number": 42857, "owner_full_name": "ERSKINE WIGGINGTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4685 241 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-04-20", "construction_end_date": "2017-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "236.00", "finished_well_depth": "234.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "75.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5437266, "utm_easting": 532316, "utm_accuracy_code": "A", "bcgs_id": 3877, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113057, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "WELLS", "update_date": "2017-05-03T22:48:14Z", "well_guid": "9950574b-37ff-4a3a-b0b6-14f5b7cabfc1", "identification_plate_number": 42885, "owner_full_name": "ALBERTINA HOBELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "21448 18 AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-04-21", "construction_end_date": "2017-04-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "238.00", "finished_well_depth": "238.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431335, "utm_easting": 527100, "utm_accuracy_code": "H", "bcgs_id": 3800, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113058, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "WELLS", "update_date": "2017-05-03T22:02:49Z", "well_guid": "3d978b93-75b1-43d4-a696-f9cefc76d51e", "identification_plate_number": 42884, "owner_full_name": "DIANDRA GREENARD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "46265 PRAIRIE CENTRAL ROAD 1", "city": "CHILLIWACK", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-04-19", "construction_end_date": "2017-04-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "19.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "7.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5444443, "utm_easting": 576974, "utm_accuracy_code": "H", "bcgs_id": 4662, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113060, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "WELLS", "update_date": "2017-05-03T22:39:34Z", "well_guid": "f42aced6-4a32-4b7a-b1d8-4bf2bf4bdc98", "identification_plate_number": 42652, "owner_full_name": "IRA RODEAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4061B 240 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-04-18", "construction_end_date": "2017-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "207.00", "final_casing_stick_up": "31.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "110.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5435968, "utm_easting": 532179, "utm_accuracy_code": "H", "bcgs_id": 3877, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113065, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "WELLS", "update_date": "2017-05-03T22:31:58Z", "well_guid": "861eceb0-e579-4128-b256-629c05059065", "identification_plate_number": 42696, "owner_full_name": "HATTIE HADLINGTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1779 216 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-04-06", "construction_end_date": "2017-04-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "216.00", "finished_well_depth": "219.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "100.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431351, "utm_easting": 527318, "utm_accuracy_code": "H", "bcgs_id": 3800, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113066, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "WELLS", "update_date": "2017-05-03T22:17:49Z", "well_guid": "a1ff7b9a-9550-4f58-9d84-24620e999c01", "identification_plate_number": 42694, "owner_full_name": "DEEDEE HEERSEMA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "23230 34A AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "110574107", "well_location_description": " ", "construction_start_date": "2017-03-23", "construction_end_date": "2017-03-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "123.00", "finished_well_depth": "121.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "50.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434675, "utm_easting": 530635, "utm_accuracy_code": "H", "bcgs_id": 3870, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113067, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "WELLS", "update_date": "2017-05-03T22:05:24Z", "well_guid": "ac9cc025-b8e8-4f11-9e2a-3a365ea8b36d", "identification_plate_number": 42695, "owner_full_name": "LILLIS NECREWS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2595 LEFEUVRE ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108689431", "well_location_description": " ", "construction_start_date": "2017-03-27", "construction_end_date": "2017-03-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "336.00", "finished_well_depth": "42.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "2.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5433035, "utm_easting": 540247, "utm_accuracy_code": "H", "bcgs_id": 3866, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113069, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "WELLS", "update_date": "2017-05-03T21:52:16Z", "well_guid": "f7095522-bcb4-46e7-a783-6f6b04cbcaa1", "identification_plate_number": 42854, "owner_full_name": "CATHE TITHACOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4901 256 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-03-13", "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "315.00", "finished_well_depth": "311.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5437759, "utm_easting": 535159, "utm_accuracy_code": "H", "bcgs_id": 3883, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113070, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "7034bc8f-04de-4d25-8b25-ce9266c6edbd", "identification_plate_number": 42856, "owner_full_name": "ADORA ROPER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "LOT 8 257A STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-03-14", "construction_end_date": "2017-03-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "47.00", "finished_well_depth": "43.00", "final_casing_stick_up": "72.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5445235, "utm_easting": 535683, "utm_accuracy_code": "H", "bcgs_id": 4207, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113073, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-26T21:23:56Z", "update_user": "WELLS", "update_date": "2017-04-26T21:33:40Z", "well_guid": "11002744-d003-4582-81ea-c627fb3517cc", "identification_plate_number": 32928, "owner_full_name": "SILVANUS TOLOMIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7420 OTWAY ROAD 1", "city": "PRINCE GEORGE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NONE PROVIDED", "construction_start_date": "2016-05-17", "construction_end_date": "2016-05-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": "1944.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "67.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5979860, "utm_easting": 509496, "utm_accuracy_code": "H", "bcgs_id": 7155, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113074, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T17:12:55Z", "update_user": "WELLS", "update_date": "2017-05-16T19:08:50Z", "well_guid": "186f5a26-9053-4fd5-b43f-6ac515177406", "identification_plate_number": 32927, "owner_full_name": "LYNDEL D'ENRICO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10200 HARTMAN ROAD 1", "city": "PRINCE GEORGE", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": "2016-06-01", "construction_end_date": "2016-06-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "2457.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "350.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "300.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5964277, "utm_easting": 507836, "utm_accuracy_code": "H", "bcgs_id": 7010, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113076, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:06:54Z", "update_user": "WELLS", "update_date": "2017-08-04T21:56:09Z", "well_guid": "bfa1a32b-b93e-4988-8285-d90c769cfad4", "identification_plate_number": 50701, "owner_full_name": "BECK BLESSED", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "82345 Blackwater Road 1", "city": "Prince George", "legal_lot": "11035", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "115058867", "well_location_description": "not provided", "construction_start_date": "1969-01-01", "construction_end_date": "1969-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "12.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "48", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5934016, "utm_easting": 476310, "utm_accuracy_code": "H", "bcgs_id": 12181, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113077, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "WELLS", "update_date": "2017-09-05T20:46:25Z", "well_guid": "3a9e7337-81f2-4702-b3b5-5b3cfb0f470c", "identification_plate_number": 47006, "owner_full_name": "SIMMONDS SCHINETTI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9750 Hwy 99 1", "city": "Whistler", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "North side of parking pad.", "construction_start_date": "2016-11-02", "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "70ef746f-d376-499b-8a5d-2eb0daec3590", "well_identification_plate_attached": "on casing", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "2027.00", "ground_elevation_method": "LEVEL", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "NT_CMT_BMX", "surface_seal_length": "513.00", "surface_seal_thickness": "2.00", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1001.00", "finished_well_depth": "1001.00", "final_casing_stick_up": "28.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "52.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Flange", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5557075, "utm_easting": 505586, "utm_accuracy_code": "H", "bcgs_id": 5411, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113078, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "WELLS", "update_date": "2017-11-03T17:21:09Z", "well_guid": "4918d328-a13f-46d9-b944-0cd13ccd4675", "identification_plate_number": 50702, "owner_full_name": "GARFIELD MACPIKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Hamilton Avenue 1", "city": "Vanderhoof", "legal_lot": "1A", "legal_plan": "6863", "legal_district_lot": "1", "legal_block": " ", "legal_section": "16", "legal_township": "11", "legal_range": " ", "land_district": "14", "legal_pid": "109644741", "well_location_description": "Northside Water Services work yard", "construction_start_date": "2005-08-25", "construction_end_date": "2005-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": null, "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "232.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": "Northside Water Services Well # 2", "static_water_level": "25.30", "well_yield": "400.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "IGM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5987248, "utm_easting": 434203, "utm_accuracy_code": "H", "bcgs_id": 7593, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113079, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "0bd70b38-67bb-46fd-9623-89e25a327386", "identification_plate_number": 42452, "owner_full_name": "ANNMARIE D'ELIAS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3156 JINGLE POT ROAD 1", "city": "NANAIMO", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "14", "legal_township": " ", "legal_range": "5", "land_district": "31", "legal_pid": "109451587", "well_location_description": "PROPOSED LOT #12. EASTERN MOST WELL", "construction_start_date": "2016-02-29", "construction_end_date": "2016-03-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "447.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "245.00", "finished_well_depth": "245.00", "final_casing_stick_up": "20.000", "bedrock_depth": "69.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5447808, "utm_easting": 425482, "utm_accuracy_code": "H", "bcgs_id": 3163, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113080, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:34:02Z", "update_user": "WELLS", "update_date": "2017-05-10T22:54:57Z", "well_guid": "6892cdfc-0e0d-4232-bc8c-35033a0ff983", "identification_plate_number": 12167, "owner_full_name": "BROOK MILILLO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Komie Road 1", "city": "Fort Nelson", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Land Tenure File 9705176. d-7-I/94-0-8", "construction_start_date": "2012-03-24", "construction_end_date": "2012-03-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "350.00", "finished_well_depth": "330.00", "final_casing_stick_up": "36.000", "bedrock_depth": "50.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "24.00", "well_yield": "3.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "set", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6587529, "utm_easting": 552364, "utm_accuracy_code": "H", "bcgs_id": 13824, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113081, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:42:28Z", "update_user": "WELLS", "update_date": "2017-06-20T23:16:01Z", "well_guid": "637b4147-847e-41cb-b540-9162b39bd7b8", "identification_plate_number": 50697, "owner_full_name": "PHYLLIS VARVARA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "SQUAMISH VALLEY ROAD 1", "city": "SQUAMISH", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "18143", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "128279450", "well_location_description": "Hole #2", "construction_start_date": "2013-03-04", "construction_end_date": "2013-03-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": null, "surface_seal_thickness": "6.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "22.00", "finished_well_depth": "22.00", "final_casing_stick_up": "36.000", "bedrock_depth": "17.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NA", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5529124, "utm_easting": 476670, "utm_accuracy_code": "H", "bcgs_id": 13840, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113082, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "WELLS", "update_date": "2017-05-03T21:24:11Z", "well_guid": "6e74ac07-c9f4-4aca-bc7c-e2e2da2b7c65", "identification_plate_number": 42456, "owner_full_name": "ANDREE KRAUSS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3156 JINGLE POT ROAD 1", "city": "NANAIMO", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "14", "legal_township": " ", "legal_range": "5", "land_district": "31", "legal_pid": "109451587", "well_location_description": "PROPOSED LOT #1", "construction_start_date": "2016-03-09", "construction_end_date": "2016-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON STICK UP", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "388.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "18.000", "bedrock_depth": "46.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5448071, "utm_easting": 425446, "utm_accuracy_code": "H", "bcgs_id": 3163, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113083, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T15:39:10Z", "update_user": "WELLS", "update_date": "2017-05-09T21:46:30Z", "well_guid": "b0182ac5-dd90-41d4-aaa1-9e2d7d7dd568", "identification_plate_number": 49504, "owner_full_name": "RORY DYMOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "29 Swan Lake Road 1", "city": "Hazelton", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1396", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "06", "legal_pid": "108129118", "well_location_description": "Southeast 1/4", "construction_start_date": "1975-01-01", "construction_end_date": "1975-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "1.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "48", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6139679, "utm_easting": 584419, "utm_accuracy_code": "H", "bcgs_id": 12699, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113085, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "WELLS", "update_date": "2017-05-16T19:13:16Z", "well_guid": "54dfe483-41ee-482c-ad7f-8b66d645b342", "identification_plate_number": 32925, "owner_full_name": "ALBERTA SMOGUR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6922 Swanson Road 1", "city": "Prince George", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "128912110", "well_location_description": "Not Provided. NAD 83: Zone 2 provided.", "construction_start_date": "2016-06-08", "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "2612.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "490.00", "final_casing_stick_up": "24.000", "bedrock_depth": "93.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Not provided", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5975348, "utm_easting": 509496, "utm_accuracy_code": "H", "bcgs_id": 7148, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113086, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T23:59:30Z", "update_user": "WELLS", "update_date": "2017-05-08T22:38:42Z", "well_guid": "f31d9d31-d0ad-483f-9977-604cb03303ed", "identification_plate_number": 50703, "owner_full_name": "ULYSSES CHAZERAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "10371 Goldie Road 1", "city": "Vanderhoof", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "9", "legal_township": "18", "legal_range": "5", "land_district": null, "legal_pid": "115610195", "well_location_description": "SE 1/4", "construction_start_date": "1981-07-17", "construction_end_date": "1981-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "8bd22e73-3ad8-4057-88ca-d642e552e86d", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "4", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5995557, "utm_easting": 415279, "utm_accuracy_code": "A", "bcgs_id": 7634, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113087, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "WELLS", "update_date": "2017-05-16T21:17:35Z", "well_guid": "491d50e5-771d-40e6-ba16-c7bac7fb11f9", "identification_plate_number": 32926, "owner_full_name": "CLAUS DUMBAR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7670 Block Road 1", "city": "Prince George", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-06-13", "construction_end_date": "2016-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": "2617.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "320.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "270.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5986928, "utm_easting": 509554, "utm_accuracy_code": "H", "bcgs_id": 7348, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113088, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "WELLS", "update_date": "2017-05-03T21:20:31Z", "well_guid": "787f7477-971b-4f63-96cc-fc0e91a993fb", "identification_plate_number": 52406, "owner_full_name": "ALLISSA WYNESS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1975 RENFREW ROAD 1", "city": "SHAWNIGAN LAKE", "legal_lot": "1", "legal_plan": "EPP8614", "legal_district_lot": "1", "legal_block": " ", "legal_section": "5", "legal_township": " ", "legal_range": "2", "land_district": "53", "legal_pid": "109475869", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-04-17", "construction_end_date": "2017-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": "481.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "501.00", "finished_well_depth": "501.00", "final_casing_stick_up": "12.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5390159, "utm_easting": 452207, "utm_accuracy_code": "H", "bcgs_id": 2688, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113089, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:15:13Z", "update_user": "WELLS", "update_date": "2018-03-08T19:30:49Z", "well_guid": "039e3b52-d087-4c72-974d-5f997f10558f", "identification_plate_number": 50711, "owner_full_name": "NOAH CHEESLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4030 RED ROCK ROAD EAST 1", "city": "PRINCE GEORGE", "legal_lot": "11", "legal_plan": "PGP35258", "legal_district_lot": "11993", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "117220165", "well_location_description": " ", "construction_start_date": "1990-08-22", "construction_end_date": "1990-08-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.260000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "500.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5949338, "utm_easting": 521751, "utm_accuracy_code": "A", "bcgs_id": 6859, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113090, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:35:24Z", "update_user": "WELLS", "update_date": "2017-05-03T21:16:35Z", "well_guid": "b3cb548c-ce14-4bc2-81e0-025d8ca56f4b", "identification_plate_number": 50117, "owner_full_name": "DOLORITA DUNK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7441 WESTHOLME 1", "city": "DUNCAN", "legal_lot": "13", "legal_plan": "VIP3344", "legal_district_lot": "1", "legal_block": " ", "legal_section": "19", "legal_township": " ", "legal_range": "6", "land_district": "61", "legal_pid": "106277063", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-04-21", "construction_end_date": "2017-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": "198.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "181.00", "finished_well_depth": "181.00", "final_casing_stick_up": "20.000", "bedrock_depth": "29.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": "0.10", "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5411978, "utm_easting": 448049, "utm_accuracy_code": "H", "bcgs_id": 2945, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113091, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:00:34Z", "update_user": "WELLS", "update_date": "2017-05-02T21:32:08Z", "well_guid": "d50767ca-27ee-4b1b-b1fd-a7fc87dec8b2", "identification_plate_number": 31818, "owner_full_name": "ANNALIESE DULEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1615 PRINCE GEORGE HIGHWAY 16 WEST", "city": "PRINCE GEORGE", "legal_lot": "11", "legal_plan": "BCP 33102", "legal_district_lot": "1616", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127263801", "well_location_description": " ", "construction_start_date": "2010-04-30", "construction_end_date": "2010-04-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "bf5d31ea-8a5a-4363-8a5e-6c00eed03058", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "240.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.370", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5962396, "utm_easting": 504576, "utm_accuracy_code": null, "bcgs_id": 6993, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113092, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "WELLS", "update_date": "2017-05-03T21:13:49Z", "well_guid": "d07249e5-8819-488e-8b06-445e1669beaa", "identification_plate_number": 52404, "owner_full_name": "COOP STOOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "860 SAND PINES CRESCENT 1", "city": "COMOX", "legal_lot": "123", "legal_plan": "28592", "legal_district_lot": "1245", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "101787896", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-04-25", "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "22.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "53.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5506198, "utm_easting": 364141, "utm_accuracy_code": "H", "bcgs_id": 3500, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113093, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "WELLS", "update_date": "2017-10-27T21:49:42Z", "well_guid": "bb4a8e0a-27b4-4088-ba83-bf7dbde26b35", "identification_plate_number": 50509, "owner_full_name": "ATLANTA BEXON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "ALTERATION", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "FIREWEED AREA - d-6-A/94-A-13", "construction_start_date": "2014-11-17", "construction_end_date": "2014-11-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "531.50", "final_casing_stick_up": "28.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "67.00", "well_yield": "13.400", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "unknown", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6291033, "utm_easting": 587708, "utm_accuracy_code": "A", "bcgs_id": 13818, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113094, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T23:10:11Z", "update_user": "WELLS", "update_date": "2017-06-12T16:32:34Z", "well_guid": "04f6e237-5e97-4acf-b4f5-3bf443ef8329", "identification_plate_number": null, "owner_full_name": "DOROTHY GEROLDI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": "9460", "legal_district_lot": "1217", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": "4", "land_district": null, "legal_pid": "106011021", "well_location_description": " ", "construction_start_date": "1983-01-01", "construction_end_date": "1983-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "400.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5981414, "utm_easting": 310113, "utm_accuracy_code": "A", "bcgs_id": 6612, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113095, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "WELLS", "update_date": "2017-05-03T22:38:36Z", "well_guid": "0f170cf4-287d-49b5-ba45-312fc361536b", "identification_plate_number": null, "owner_full_name": "GAN CONNOP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "114652846", "well_location_description": "16-07-088-20-W6M. 16 KM ON 73 ROAD LAND FARM", "construction_start_date": "2002-12-05", "construction_end_date": "2002-12-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "240.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "CAPPED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6277046, "utm_easting": 612373, "utm_accuracy_code": "A", "bcgs_id": 13820, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113096, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:39Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "ffe253a0-dccb-4af5-8fb1-a9144a87bf73", "identification_plate_number": 52405, "owner_full_name": "SHANDRA LEBORGNE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5362 LANGLOIS ROAD 1", "city": "COURTENAY", "legal_lot": "11", "legal_plan": "48992", "legal_district_lot": "1", "legal_block": "71", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "114640414", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-04-20", "construction_end_date": "2017-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.240000", "longitude": "-122.560000", "ground_elevation": "287.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "235.00", "finished_well_depth": "220.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "173.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5511982, "utm_easting": 356216, "utm_accuracy_code": "H", "bcgs_id": 3565, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113097, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "0f301665-21b5-42dd-86af-fc5a986a836e", "identification_plate_number": 52416, "owner_full_name": "DANNIE BRISTER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "TST", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " MILL BAY ROAD 1", "city": "MILL BAY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "MALAHAT IR 11", "construction_start_date": "2017-04-20", "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": "379.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "543.00", "finished_well_depth": "543.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5384711, "utm_easting": 460464, "utm_accuracy_code": "H", "bcgs_id": 12162, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113099, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "WELLS", "update_date": "2017-05-16T16:50:52Z", "well_guid": "abd2266d-506f-4123-9041-aac63e09c0f6", "identification_plate_number": 32933, "owner_full_name": "LYN DULEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4123 WRIGHT STREET", "city": "PRINCE GEORGE", "legal_lot": "112", "legal_plan": "935", "legal_district_lot": "11562", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2016-06-22", "construction_end_date": "2016-06-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.540000", "ground_elevation": "2205.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "500.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "380.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5967154, "utm_easting": 521540, "utm_accuracy_code": "H", "bcgs_id": 7056, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113100, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "WELLS", "update_date": "2017-07-13T16:13:15Z", "well_guid": "3dd0c94d-dcfe-4e73-bfe3-08bb0954c649", "identification_plate_number": 35005, "owner_full_name": "PANCHO BOUNDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7815 184 STREET 1", "city": "SURREY", "legal_lot": "1", "legal_plan": "8976", "legal_district_lot": "1", "legal_block": " ", "legal_section": "20", "legal_township": "8", "legal_range": " ", "land_district": "36", "legal_pid": "113230620", "well_location_description": " ", "construction_start_date": "2016-05-16", "construction_end_date": "2016-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": "33.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "325.00", "finished_well_depth": "294.00", "final_casing_stick_up": "3.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "6.00", "artesian_pressure": null, "well_cap_type": "UNKNOWN", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "10", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5443655, "utm_easting": 520585, "utm_accuracy_code": "H", "bcgs_id": 4121, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113101, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:04Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "da25ebec-5f92-43e0-af81-039bb145bf02", "identification_plate_number": 52418, "owner_full_name": "FIANN BARTHOLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "TST", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " MILL BAY ROAD 1", "city": "MILL BAY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "MALAHAT IR 11", "construction_start_date": "2017-04-25", "construction_end_date": "2017-04-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.220000", "longitude": "-122.530000", "ground_elevation": "280.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "35.00", "surface_seal_thickness": "2.00", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "550.00", "finished_well_depth": "550.00", "final_casing_stick_up": "16.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5386122, "utm_easting": 460441, "utm_accuracy_code": "H", "bcgs_id": 2704, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113103, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T16:33:40Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "e6ab3053-949d-4685-8c81-0752a06f9873", "identification_plate_number": 44300, "owner_full_name": "ANNE HASTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8086 Hwy 95A 1", "city": "Kimberley", "legal_lot": "11", "legal_plan": "EPC 431", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "8086 Hwy 95A Kimberley BC KD", "construction_start_date": "2017-05-01", "construction_end_date": "2017-05-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "3225.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5505196, "utm_easting": 582526, "utm_accuracy_code": "H", "bcgs_id": 1235, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113104, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T16:42:46Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "44feca1a-d5e8-453d-8acd-fb27727a14d5", "identification_plate_number": 44301, "owner_full_name": "CORAL BLUNDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8086 Hwy 95A 1", "city": "Kimberley", "legal_lot": "12", "legal_plan": "EPC 431", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "8086 Hwy 95A Kimberley BC KD", "construction_start_date": "2017-05-03", "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.240000", "longitude": "-122.500000", "ground_elevation": "3284.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5505112, "utm_easting": 582572, "utm_accuracy_code": "H", "bcgs_id": 1235, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113105, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:55Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "4988563b-1764-4308-8f4e-18fc6e16007f", "identification_plate_number": 47489, "owner_full_name": "REEVA TANKIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2417 McLeary Crescent N 1", "city": "Cranbrook", "legal_lot": "120", "legal_plan": "2575", "legal_district_lot": "111304", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "115204308", "well_location_description": "Lot 20 Pl 2575 DL 11304 KD", "construction_start_date": "2017-05-04", "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "3328.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "215.00", "finished_well_depth": "215.00", "final_casing_stick_up": "12.000", "bedrock_depth": "50.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5505683, "utm_easting": 581389, "utm_accuracy_code": "H", "bcgs_id": 1235, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113106, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "84f8a9a5-595c-4234-9bbb-999d805ce714", "identification_plate_number": 32251, "owner_full_name": "ROSELINE GELLETLY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "13", "legal_plan": "PGP41563", "legal_district_lot": "1587", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "05", "legal_pid": "123898429", "well_location_description": "as per \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nas per GPS", "construction_start_date": "2017-05-02", "construction_end_date": "2017-05-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": "2570.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "123.00", "finished_well_depth": "123.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5775231, "utm_easting": 571772, "utm_accuracy_code": "H", "bcgs_id": 9645, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113107, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "2034684e-c525-4ca6-9cff-17a8d9945879", "identification_plate_number": 43644, "owner_full_name": "KRISTINE DOD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3155 Northwood Road 1", "city": "Nanaimo", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-03-06", "construction_end_date": "2017-03-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "753.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "345.00", "finished_well_depth": "345.00", "final_casing_stick_up": "24.000", "bedrock_depth": "43.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5447603, "utm_easting": 422710, "utm_accuracy_code": "H", "bcgs_id": 3160, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113108, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:58Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "4fd80a38-eb36-46c8-874f-32806f155c19", "identification_plate_number": 43619, "owner_full_name": "MARJ BELVERSTONE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2720 Carwithen 1", "city": "Courtenay", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "36", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "103587339", "well_location_description": "Except Plan 1532 and Exc Pl 15343, VIP 65617 and PCL B.DD4459N.", "construction_start_date": "2017-01-04", "construction_end_date": "2017-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "76.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "177.06", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "1.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5510114, "utm_easting": 355295, "utm_accuracy_code": "H", "bcgs_id": 3532, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113109, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-09T23:19:52Z", "update_user": "WELLS", "update_date": "2017-05-09T23:19:52Z", "well_guid": "3198f439-b318-4956-9c21-8cede3cfd968", "identification_plate_number": null, "owner_full_name": "ADEY BOULDING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5400381, "utm_easting": 447240, "utm_accuracy_code": null, "bcgs_id": 2808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113110, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-09T23:23:49Z", "update_user": "WELLS", "update_date": "2017-05-09T23:24:32Z", "well_guid": "47c6ec67-4a5c-44d9-ab21-e309dbecec1f", "identification_plate_number": null, "owner_full_name": "SOPHI MULVIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5400285, "utm_easting": 447238, "utm_accuracy_code": null, "bcgs_id": 2808, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113111, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T17:02:05Z", "update_user": "WELLS", "update_date": "2017-06-27T21:19:33Z", "well_guid": "eeed0436-3dec-4d97-a7f6-68ba012eb451", "identification_plate_number": 50704, "owner_full_name": "JARAD SPRAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Larson Road 1", "city": "Vanderhoof", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "1", "legal_township": "19", "legal_range": "5", "land_district": "14", "legal_pid": "115758974", "well_location_description": "NOT PROVIDED", "construction_start_date": "1975-01-01", "construction_end_date": "1975-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "EXCAVATING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "100.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "unknown", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5993585, "utm_easting": 429353, "utm_accuracy_code": "H", "bcgs_id": 12143, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113112, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T22:29:18Z", "update_user": "WELLS", "update_date": "2017-05-23T20:39:54Z", "well_guid": "6451804e-fe7f-4eb6-9a43-2fe107a210a8", "identification_plate_number": null, "owner_full_name": "JUSTINN PURRIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "11", "legal_plan": "PAR 4186", "legal_district_lot": "11372", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "5", "land_district": null, "legal_pid": "111649534", "well_location_description": "LAND DISTRICT: CD.", "construction_start_date": "2015-09-21", "construction_end_date": "2015-09-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": "STICK UP", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": null, "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "335.00", "finished_well_depth": "335.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 6037314, "utm_easting": 525902, "utm_accuracy_code": "H", "bcgs_id": 8840, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113113, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "72fae1f3-d932-4583-b521-225d799109b3", "identification_plate_number": 52419, "owner_full_name": "HERMON RATTENBERIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1791 EMPRESS ROAD 1", "city": "COBBLE HILL", "legal_lot": "1A", "legal_plan": "88137", "legal_district_lot": "1", "legal_block": " ", "legal_section": "8", "legal_township": " ", "legal_range": "5", "land_district": "16", "legal_pid": "128274113", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-05", "construction_end_date": "2017-05-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": "444.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "405.00", "finished_well_depth": "405.00", "final_casing_stick_up": "14.000", "bedrock_depth": "24.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5391451, "utm_easting": 454659, "utm_accuracy_code": "H", "bcgs_id": 2689, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113114, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T23:31:41Z", "update_user": "WELLS", "update_date": "2017-06-29T22:39:14Z", "well_guid": "f61d7a14-985f-43af-a49d-dd2a447a3851", "identification_plate_number": null, "owner_full_name": "JEANNA VLASYEV", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3150 MAYRUS ROAD 1", "city": "WINFIELD", "legal_lot": "16", "legal_plan": "KAP 216", "legal_district_lot": "1169", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "41", "legal_pid": "111811013", "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "75.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "1.25", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5546105, "utm_easting": 327811, "utm_accuracy_code": "A", "bcgs_id": 1503, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113115, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "5aa656cc-3e02-4e99-ae6c-776847c3dae4", "identification_plate_number": 47490, "owner_full_name": "PRYCE BARTHOLIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "998 Highway 3A 1", "city": " ", "legal_lot": "1 1 & 2", "legal_plan": "87253", "legal_district_lot": "1908 & 3690", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "998 Highway 3A KD", "construction_start_date": "2017-05-09", "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": "1766.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "146.00", "finished_well_depth": "146.00", "final_casing_stick_up": "10.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5486195, "utm_easting": 479246, "utm_accuracy_code": "H", "bcgs_id": 13876, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113116, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "5e46954c-9a2b-483c-961e-e9205f89783a", "identification_plate_number": 52480, "owner_full_name": "MELISENDA FALLEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7700 STURGESS ROAD 1", "city": "BLACK CREEK", "legal_lot": "11", "legal_plan": "VIP87545", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "128136969", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-03-24", "construction_end_date": "2017-03-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": "283.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "230.00", "finished_well_depth": "230.00", "final_casing_stick_up": "16.000", "bedrock_depth": "60.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5519429, "utm_easting": 345711, "utm_accuracy_code": "H", "bcgs_id": 3609, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113117, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "a9d024ce-66ba-45ff-a7e1-59b31509fc58", "identification_plate_number": 52454, "owner_full_name": "MAIGA PENTYCOST", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "14282 MORRIS VALLEY ROAD 1", "city": "HARRISON MILLS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1542", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "01", "legal_pid": "108779899", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2016-11-14", "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": null, "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "MUD_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "96.00", "surface_seal_thickness": "2.00", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "1458.00", "finished_well_depth": "1458.00", "final_casing_stick_up": "24.000", "bedrock_depth": "700.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "500.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5456518, "utm_easting": 576660, "utm_accuracy_code": "H", "bcgs_id": 4727, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113118, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "WELLS", "update_date": "2017-09-01T22:00:20Z", "well_guid": "79406a37-b613-476d-8446-2cf296ccf819", "identification_plate_number": 47031, "owner_full_name": "CANDICE VONDRA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "17466 Siphon Creek Rd. 1", "city": "Cecil lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "20' south of the well shack", "construction_start_date": "2017-02-20", "construction_end_date": "2017-02-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "70ef746f-d376-499b-8a5d-2eb0daec3590", "well_identification_plate_attached": "on casing", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "2536.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.40", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "72.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "220.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "99.00", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin seal", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6276020, "utm_easting": 660999, "utm_accuracy_code": "H", "bcgs_id": 11562, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113119, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:43Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "7fb7add5-0590-40d6-bd06-e1415bb3e27b", "identification_plate_number": 52420, "owner_full_name": "RAFAELIA DRINKHALL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3850 COBBLE HILL ROAD 1", "city": "COBBLE HILL", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": "16", "legal_township": " ", "legal_range": "5", "land_district": "53", "legal_pid": "109462473", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-10", "construction_end_date": "2017-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "286.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "115.00", "finished_well_depth": "115.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5394444, "utm_easting": 455162, "utm_accuracy_code": "H", "bcgs_id": 2792, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113121, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "c15a918a-ed65-4c55-a27f-932bb9466f34", "identification_plate_number": 52403, "owner_full_name": "IZAK GRINVALDS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "891 ISABELLA POINT ROAD 1", "city": "SALT SPRING ISLAND", "legal_lot": "1B", "legal_plan": "25535", "legal_district_lot": "1", "legal_block": " ", "legal_section": "41", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "102923874", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-03", "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "333.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "151.00", "finished_well_depth": "151.00", "final_casing_stick_up": "24.000", "bedrock_depth": "16.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "67.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5398947, "utm_easting": 467810, "utm_accuracy_code": "H", "bcgs_id": 2848, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113123, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "f3596c3a-efbd-4e9b-acee-2f93381eb260", "identification_plate_number": 52402, "owner_full_name": "BLONDELLE ROLLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "221 DRAKE ROAD 1", "city": "SALT SPRING ISLAND", "legal_lot": "1A", "legal_plan": "VIP28650", "legal_district_lot": "1", "legal_block": " ", "legal_section": "20", "legal_township": " ", "legal_range": "3", "land_district": "16", "legal_pid": "101751581", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-09", "construction_end_date": "2017-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "370.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "241.00", "finished_well_depth": "241.00", "final_casing_stick_up": "24.000", "bedrock_depth": "22.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "12.000", "artesian_flow": "12.00", "artesian_pressure": "30.00", "well_cap_type": "WELL SEAL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5410756, "utm_easting": 462449, "utm_accuracy_code": "H", "bcgs_id": 2969, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113124, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T12:50:57Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "5d263d7b-3f16-4192-b97b-9eeb956773ec", "identification_plate_number": 42089, "owner_full_name": "CLETIS WOOLLENDS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " fording mine road 1", "city": "elkford bc", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", "construction_start_date": "2017-03-29", "construction_end_date": "2017-04-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "33.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "638.00", "finished_well_depth": "638.00", "final_casing_stick_up": "26.000", "bedrock_depth": "642.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "520.00", "well_yield": "200.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "16", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5562821, "utm_easting": 653383, "utm_accuracy_code": "H", "bcgs_id": 13889, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113125, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "WELLS", "update_date": "2017-09-13T20:51:51Z", "well_guid": "26b387a8-c1ee-45e5-8bbb-57beb619aa42", "identification_plate_number": 42907, "owner_full_name": "CORDELL PERIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2052 272 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-05-03", "construction_end_date": "2017-05-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "53.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5432085, "utm_easting": 538897, "utm_accuracy_code": "H", "bcgs_id": 3863, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113126, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:27Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "eacbd2b0-7b30-45d4-ab9a-4317d8d6a05f", "identification_plate_number": 42849, "owner_full_name": "KENNY GABITS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3139 210 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-05-04", "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "233.00", "finished_well_depth": "231.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "70.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5434087, "utm_easting": 526117, "utm_accuracy_code": "H", "bcgs_id": 3824, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113127, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "729b40d1-affd-4281-b98c-b8addc5bac03", "identification_plate_number": 42906, "owner_full_name": "CORRINE FOOTER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "25693 16 AVENUE 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-05-08", "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "5.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "293.00", "finished_well_depth": "290.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431104, "utm_easting": 535653, "utm_accuracy_code": "H", "bcgs_id": 3849, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113128, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:21Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:26Z", "well_guid": "b10e14ef-f3b1-40f9-aa67-c2524d588ea9", "identification_plate_number": 42905, "owner_full_name": "DOMENIGA HARDI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "272 STREET 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "NO CIVIC NUMBER", "construction_start_date": "2017-05-11", "construction_end_date": "2017-05-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "296.00", "finished_well_depth": "294.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "170.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441228, "utm_easting": 538192, "utm_accuracy_code": "H", "bcgs_id": 4188, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113129, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "ab369c3c-6e63-4b35-9819-8061c4f30c91", "identification_plate_number": 42886, "owner_full_name": "TEMP BLESLI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "32172 HUNTINGDON ROAD 1", "city": "ABBOTSFORD", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-05-02", "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "196.00", "finished_well_depth": "196.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "60.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5429419, "utm_easting": 548802, "utm_accuracy_code": "H", "bcgs_id": 3906, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113130, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "07663bd4-8ea1-4894-8d84-553c9c8165cc", "identification_plate_number": 42887, "owner_full_name": "VALERIE FENWICK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "16069 56 AVENUE 1", "city": "SURREY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-05-09", "construction_end_date": "2017-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "396.00", "finished_well_depth": "393.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "1.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5439137, "utm_easting": 516240, "utm_accuracy_code": "H", "bcgs_id": 4106, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113131, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "b58582ef-67df-4077-b6b8-f06f4a25cd4e", "identification_plate_number": 42908, "owner_full_name": "ANA RECKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "26155 TELEGRAPH TRAIL 1", "city": "LANGLEY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-04-27", "construction_end_date": "2017-05-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "213.00", "finished_well_depth": "210.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441380, "utm_easting": 536587, "utm_accuracy_code": "H", "bcgs_id": 4188, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113132, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:12:03Z", "update_user": "WELLS", "update_date": "2017-07-27T21:38:59Z", "well_guid": "3d6189d9-4dd0-458c-a548-0885370a1a72", "identification_plate_number": 10836, "owner_full_name": "DONELLE MUMBEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109603603", "well_location_description": "Between the residence and the narrow tree grove off of Jackson Road.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "Casing stick up", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "160.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Steel", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5598915, "utm_easting": 691283, "utm_accuracy_code": "H", "bcgs_id": 5105, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113133, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "4a89bed5-37e7-4ed5-abdf-ff53d27d6608", "identification_plate_number": 43649, "owner_full_name": "PENNIE HOBELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "14 David Crescent", "city": "Saltspring Island ", "legal_lot": "117", "legal_plan": "VIP 23236", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": "E4", "land_district": "16", "legal_pid": "103067149", "well_location_description": "Section: 16,17 & 18. Portion North Saltspring, Except Plan 24804 & VIP 79195. Within property boundaries.", "construction_start_date": "2017-05-02", "construction_end_date": "2017-05-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": "740.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "125.00", "finished_well_depth": "125.00", "final_casing_stick_up": "36.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "17.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5409464, "utm_easting": 463380, "utm_accuracy_code": "H", "bcgs_id": 2976, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113134, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "4c7f1785-0e6f-49e0-a9ba-5b25bc16c0d5", "identification_plate_number": 50116, "owner_full_name": "MATHIAN SHIPLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "OTHER", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1B", "legal_plan": "VIP80467", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-10", "construction_end_date": "2017-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "202.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "OTHER", "surface_seal_length": "60.00", "surface_seal_thickness": "1.00", "surface_seal_method": "PUMPED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "246.00", "finished_well_depth": "246.00", "final_casing_stick_up": "24.000", "bedrock_depth": "155.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.010", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5551149, "utm_easting": 334132, "utm_accuracy_code": "H", "bcgs_id": 13859, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113135, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "WELLS", "update_date": "2017-08-31T20:05:25Z", "well_guid": "57895225-72b0-402a-b553-30ad26042990", "identification_plate_number": 43651, "owner_full_name": "NOAK GILBRIDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Evans Road 1", "city": "Nanaimo", "legal_lot": "16", "legal_plan": "1995", "legal_district_lot": "1", "legal_block": " ", "legal_section": "12", "legal_township": " ", "legal_range": "5", "land_district": "18", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-05-10", "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": "133.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "205.00", "finished_well_depth": "205.00", "final_casing_stick_up": "24.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5439013, "utm_easting": 433794, "utm_accuracy_code": "H", "bcgs_id": 4011, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113136, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "WELLS", "update_date": "2017-08-31T22:01:28Z", "well_guid": "9ee6d3ad-ae32-4f3e-bada-c0ad200489ba", "identification_plate_number": 43648, "owner_full_name": "BRYCE ARANGY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5877 Stuart Avenue 1", "city": "Port Alberni", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-04-19", "construction_end_date": "2017-04-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.250000", "longitude": "-122.550000", "ground_elevation": "242.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "470.00", "finished_well_depth": "470.00", "final_casing_stick_up": "30.000", "bedrock_depth": "114.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "98.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5460468, "utm_easting": 362670, "utm_accuracy_code": "H", "bcgs_id": 3183, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113137, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "WELLS", "update_date": "2017-08-31T22:07:42Z", "well_guid": "096fef62-064d-46b3-92de-976edf599b0a", "identification_plate_number": 43657, "owner_full_name": "THEODOSIA GORBELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6942 Dickinson Road 1", "city": "Lantzville", "legal_lot": "11", "legal_plan": "27449", "legal_district_lot": "137", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "58", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-04-24", "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": "72.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "102.00", "finished_well_depth": "100.08", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "66.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455668, "utm_easting": 422938, "utm_accuracy_code": "H", "bcgs_id": 3246, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113138, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:53Z", "update_user": "WELLS", "update_date": "2017-08-31T22:07:42Z", "well_guid": "f11321eb-783b-4ff6-9825-ae3f551a8f74", "identification_plate_number": 43622, "owner_full_name": "FANCY BLESLI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1560 Rodgers Road 1", "city": "Qualicum Beach", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2016-10-21", "construction_end_date": "2016-10-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.200000", "longitude": "-122.540000", "ground_elevation": "210.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "183.00", "finished_well_depth": "178.06", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "128.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5468990, "utm_easting": 389658, "utm_accuracy_code": "H", "bcgs_id": 3318, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113139, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "d769fbfe-2b8e-46ae-94f9-d7972022e17f", "identification_plate_number": 42807, "owner_full_name": "SYLVIA KEATCH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4050 WEST TRANS-CANADA HIGHWAY 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": " ", "construction_start_date": "2017-03-29", "construction_end_date": "2017-04-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.200000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": "PEA GRAVEL", "backfill_depth": "13.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "12.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "82.00", "final_casing_stick_up": "24.000", "bedrock_depth": "93.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "63.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5614492, "utm_easting": 676022, "utm_accuracy_code": "H", "bcgs_id": 13869, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113140, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "WELLS", "update_date": "2017-09-05T23:38:06Z", "well_guid": "f8b5799c-7061-4b59-9649-372b626c573b", "identification_plate_number": 43641, "owner_full_name": "BOGART CLEMETTS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3925 Cove Road 1", "city": "Ladysmith", "legal_lot": "11 & 2", "legal_plan": "32139", "legal_district_lot": "193", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "43", "legal_pid": "101097555", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-03-03", "construction_end_date": "2017-03-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": "69.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "305.00", "finished_well_depth": "305.00", "final_casing_stick_up": "24.000", "bedrock_depth": "22.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "55.00", "well_yield": "0.330", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5426152, "utm_easting": 443599, "utm_accuracy_code": "H", "bcgs_id": 3057, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113141, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "f204bb7b-3fa6-4ca9-b842-9f6604edcdcc", "identification_plate_number": 42876, "owner_full_name": "ABBEY SUMMERFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4050 WEST TRANS-CANADA HIGHWAY 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-04-03", "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": "PEA GRAVEL", "backfill_depth": "41.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "6.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "117.00", "finished_well_depth": "77.00", "final_casing_stick_up": "48.000", "bedrock_depth": "94.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "63.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5614496, "utm_easting": 676021, "utm_accuracy_code": "H", "bcgs_id": 13869, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113142, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:56:26Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "5b1e10e5-5f55-4df9-ac2c-eaef2287fc63", "identification_plate_number": 42877, "owner_full_name": "SVEN BASKETFIELD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "DEWATERING", "well_subclass": "5a314ee0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4050 WEST TRANS-CANADA HIGHWAY 1", "city": "KAMLOOPS", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "*", "construction_start_date": "2017-04-05", "construction_end_date": "2017-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.270000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": "PEA GRAVEL", "backfill_depth": "3.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "9.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "78.00", "finished_well_depth": "75.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "59.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5614415, "utm_easting": 675935, "utm_accuracy_code": "H", "bcgs_id": 13869, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113143, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "WELLS", "update_date": "2017-08-31T22:07:42Z", "well_guid": "af7f8a51-7a51-4bd6-aa4a-355d245cd576", "identification_plate_number": 43658, "owner_full_name": "MOREEN STILLING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "53 Lovers Lane 1", "city": "Galiano Island", "legal_lot": "11", "legal_plan": "33662", "legal_district_lot": "191", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "100057151", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-05-03", "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.220000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "323.00", "finished_well_depth": "323.00", "final_casing_stick_up": "12.000", "bedrock_depth": "6.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "125.00", "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5427063, "utm_easting": 458633, "utm_accuracy_code": "H", "bcgs_id": 3100, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113144, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T17:05:29Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:40Z", "well_guid": "3f71782b-1f20-4cf4-95f7-2034c3c4d731", "identification_plate_number": 47492, "owner_full_name": "ELAINA BOYFORD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2711 Jacks Crescent 1", "city": "Playmore", "legal_lot": "1Part of 8", "legal_plan": "782", "legal_district_lot": "1303", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "116051483", "well_location_description": "2711 Jacks Crescent Playmore KD PL Included in RW Plan 1862 Except Parts Included in Plans 12485 & 12997", "construction_start_date": "2017-05-16", "construction_end_date": "2017-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "1630.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "234.00", "finished_well_depth": "234.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "180.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5476066, "utm_easting": 461327, "utm_accuracy_code": "H", "bcgs_id": 886, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113145, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "df5fda33-a69a-4571-9253-67c826d57289", "identification_plate_number": 52412, "owner_full_name": "ALBERTA LEED", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3321 KILIPI 1", "city": "MILL BAY", "legal_lot": "1A", "legal_plan": "VIP16724", "legal_district_lot": "1", "legal_block": " ", "legal_section": "9", "legal_township": " ", "legal_range": "10", "land_district": "53", "legal_pid": "104013093", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-15", "construction_end_date": "2017-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": "196.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.50", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "640.00", "finished_well_depth": "640.00", "final_casing_stick_up": "18.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "55.25", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5391827, "utm_easting": 460549, "utm_accuracy_code": "H", "bcgs_id": 2731, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113146, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "WELLS", "update_date": "2017-06-16T18:54:25Z", "well_guid": "ec04a446-c118-4cbd-8b52-12f86dfcb666", "identification_plate_number": 38816, "owner_full_name": "PETE MOORHEAD", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Slim Creek Highway 16 East 1", "city": "Slim Creek", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Located in the middle of property inside the proposed steel fence.", "construction_start_date": "2017-01-18", "construction_end_date": "2017-02-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "side", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "2603.00", "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "10.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "530.00", "finished_well_depth": "530.00", "final_casing_stick_up": "30.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "140.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "welded - plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5953440, "utm_easting": 624358, "utm_accuracy_code": "A", "bcgs_id": 7258, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113147, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "d8129a0e-f906-4297-b1bf-b22a138ff394", "identification_plate_number": 52451, "owner_full_name": "TAMIKO BUNTAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "BERRY ISLAND", "legal_lot": "1D", "legal_plan": "EPP19195", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "10", "legal_pid": "128972201", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-04-26", "construction_end_date": "2017-04-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.270000", "longitude": "-122.580000", "ground_elevation": "122.00", "ground_elevation_method": "GPS", "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "255.00", "final_casing_stick_up": "18.000", "bedrock_depth": "7.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "18.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PITLESS", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5607786, "utm_easting": 664979, "utm_accuracy_code": "H", "bcgs_id": 13860, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113148, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:25:26Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "db6e84b5-2d3c-43c5-9cad-68f129b74ecf", "identification_plate_number": 52446, "owner_full_name": "MOREEN MOLAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "BERRY ISLAND", "legal_lot": "1A", "legal_plan": "EPP19195", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "10", "legal_pid": "128972171", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-02", "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "287.00", "finished_well_depth": "287.00", "final_casing_stick_up": "18.000", "bedrock_depth": "0.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "68.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PITLESS", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5608062, "utm_easting": 664987, "utm_accuracy_code": "H", "bcgs_id": 13861, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113149, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:56Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:40Z", "well_guid": "360b3523-c673-4695-a33e-302ce2232f0b", "identification_plate_number": 47493, "owner_full_name": "LYNELLE GELLETLY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2604 4th A 1", "city": "Cranbrook", "legal_lot": "15", "legal_plan": "1094", "legal_district_lot": "17225", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "116028732", "well_location_description": "2604 4th Ave Cranbrook BC KD", "construction_start_date": "2017-05-17", "construction_end_date": "2017-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.270000", "longitude": "-122.530000", "ground_elevation": "3381.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "195.00", "finished_well_depth": "195.00", "final_casing_stick_up": "4.000", "bedrock_depth": "42.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "9.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5481940, "utm_easting": 588691, "utm_accuracy_code": "H", "bcgs_id": 1096, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113150, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "a79dd892-f85a-408d-8268-aa84e520215d", "identification_plate_number": 49363, "owner_full_name": "MURIAL PAIREMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "49524 Castleman Rd 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside barn, behind old milking parlour.", "construction_start_date": "2017-05-19", "construction_end_date": "2017-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "Well head stickup", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "45.00", "finished_well_depth": "32.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5449199, "utm_easting": 583595, "utm_accuracy_code": "H", "bcgs_id": 4694, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113151, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "WELLS", "update_date": "2017-08-30T16:27:43Z", "well_guid": "ff4c5bd7-7a2e-4947-a25b-8b452ea0c978", "identification_plate_number": 34107, "owner_full_name": "PAT FEUELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "3959 PADGETT ROAD 1", "city": "POWELL RIVER", "legal_lot": "11", "legal_plan": " ", "legal_district_lot": "15490", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "37", "legal_pid": "129677432", "well_location_description": "GROUP 1 NEW WESTMINSTER DISTRICT", "construction_start_date": "2010-10-01", "construction_end_date": "2010-10-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6d6c0b9e-948b-43cc-ae67-d1df675438a7", "well_identification_plate_attached": "6 INCH BELOW TOP OF WELL CASING", "latitude": "49.270000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "VERMON PROOF", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5519896, "utm_easting": 393532, "utm_accuracy_code": "H", "bcgs_id": 3641, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113152, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "8969e462-0db3-4fe4-ac09-b657e625d22f", "identification_plate_number": 49361, "owner_full_name": "JOANN CARP", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "41525 Bovington Road 1", "city": "Deroche", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "left side of house in side lawn", "construction_start_date": "2017-04-16", "construction_end_date": "2017-04-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head stickup", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "35.00", "finished_well_depth": "28.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5445617, "utm_easting": 567426, "utm_accuracy_code": "H", "bcgs_id": 4316, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113153, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "7f08ebf6-3a02-44da-91be-d4bfd4528bbd", "identification_plate_number": 49362, "owner_full_name": "DOMINICA OLDAKER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4070 Boundary Road 1", "city": "Abbotsford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "Back field along E fence", "construction_start_date": "2017-05-18", "construction_end_date": "2017-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "on well head stickup", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "7.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "5.00", "finished_well_depth": "18.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "3.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5436353, "utm_easting": 567281, "utm_accuracy_code": "H", "bcgs_id": 4002, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113154, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:21Z", "well_guid": "4ccd2da6-171d-4abc-b70c-04c35c33e873", "identification_plate_number": 49360, "owner_full_name": "CARLOTTA PEARE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "35562 Mercer Road 1", "city": "Abbotsford", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "N of Quanset building", "construction_start_date": "2017-05-09", "construction_end_date": "2017-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head stickup", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "8.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "gravel", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "83.00", "finished_well_depth": "45.50", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "9.50", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5441626, "utm_easting": 555394, "utm_accuracy_code": "H", "bcgs_id": 4254, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113155, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "WELLS", "update_date": "2017-09-11T16:46:37Z", "well_guid": "d4f1ba56-0d32-4f25-9a73-b06f7925735f", "identification_plate_number": 40046, "owner_full_name": "ZED STURMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "upper lake lake view road upper 1", "city": "invermere", "legal_lot": "12", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "115068153", "well_location_description": "middle front", "construction_start_date": "2016-10-31", "construction_end_date": "2016-11-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.220000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "395.00", "finished_well_depth": "395.00", "final_casing_stick_up": "13.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5595258, "utm_easting": 570229, "utm_accuracy_code": "H", "bcgs_id": 1438, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113166, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:40Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "70bb2480-25d7-41c6-98b1-64e19f2bbdbb", "identification_plate_number": 49364, "owner_full_name": "DANNIE JESS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9650 Chapman Road 1", "city": "Chilliwack", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "6ft west of shop N side", "construction_start_date": "2017-05-23", "construction_end_date": "2017-05-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head stickup", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": "39.00", "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "25.00", "finished_well_depth": "25.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "4.00", "well_yield": "130.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe plug", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5447823, "utm_easting": 585561, "utm_accuracy_code": "H", "bcgs_id": 4695, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113167, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "80d4a0f3-4b66-4d48-a1f2-273ab0fa2082", "identification_plate_number": 49365, "owner_full_name": "ELLIOTT SCANTLEBURY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "47036 Yale Road 1", "city": "Rosedale", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "in front yard, N side of shop", "construction_start_date": "2017-05-26", "construction_end_date": "2017-05-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "well head stickup", "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": "GPS", "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": null, "backfill_type": "topsoil", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "134.00", "finished_well_depth": "100.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "12.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5448039, "utm_easting": 578469, "utm_accuracy_code": "H", "bcgs_id": 4682, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113168, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:54Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:40Z", "well_guid": "0db4a0ad-cdba-4e13-a475-19d939125dd5", "identification_plate_number": 47486, "owner_full_name": "JANICE LEEBURN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Highway 95 1", "city": "Brisco", "legal_lot": "11", "legal_plan": " ", "legal_district_lot": "19574", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Highway 95 DL 9574 Lot 1 KD", "construction_start_date": "2017-04-24", "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": "2812.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "90.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "88.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5625101, "utm_easting": 556044, "utm_accuracy_code": "H", "bcgs_id": 1468, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113169, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:43:17Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:39Z", "well_guid": "bbe5aa3f-de08-4de7-b246-6a32e51d4a8c", "identification_plate_number": 47487, "owner_full_name": "RUTHY TOOBY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Highway 95 1", "city": "Brisco", "legal_lot": "12", "legal_plan": " ", "legal_district_lot": "19574", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Highway 95 DL 9574 KD", "construction_start_date": "2017-04-25", "construction_end_date": "2017-05-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": "3091.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "196.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5625227, "utm_easting": 556369, "utm_accuracy_code": "H", "bcgs_id": 10453, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113170, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "WELLS", "update_date": "2018-03-06T18:51:43Z", "well_guid": "722ec4c8-eb1b-4d37-989c-263568b02e72", "identification_plate_number": 50502, "owner_full_name": "ERL CABERA", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": "unknown 1", "city": "unknown", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: d-A65-H/94-A-15 - Land Tenure Number: OGC file 9639501, WA# 29788 (permitted as a water source well)", "construction_start_date": "2000-01-11", "construction_end_date": "2000-01-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "477.00", "finished_well_depth": "477.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6307634, "utm_easting": 648995, "utm_accuracy_code": "A", "bcgs_id": 13841, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113171, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "d379941b-aeab-494b-a211-b2408fbcf983", "identification_plate_number": 52422, "owner_full_name": "KRYSTALLE MCKEATING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "835 CHAPMAN ROAD 1", "city": "COBBLE HILL", "legal_lot": "13", "legal_plan": "VIP25822", "legal_district_lot": "1", "legal_block": " ", "legal_section": "11", "legal_township": " ", "legal_range": "8", "land_district": "53", "legal_pid": "102687372", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-23", "construction_end_date": "2017-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": "450.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "253.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "180.00", "well_yield": "7.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5352612, "utm_easting": 458616, "utm_accuracy_code": "H", "bcgs_id": 13862, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113172, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "WELLS", "update_date": "2017-08-02T20:30:46Z", "well_guid": "5b4728fb-9173-44b3-a10e-8bdda3bdccce", "identification_plate_number": 50503, "owner_full_name": "HALE BELLOCHT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "not provided 1", "city": "not provided", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "124904074", "well_location_description": "Legal Description: b-44-G/94-A-15 - OGC file 9639347, WA# 29724 (permitted as a water source well)", "construction_start_date": "2004-07-11", "construction_end_date": "2004-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.280000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "500.00", "finished_well_depth": "500.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "unknown", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6305326, "utm_easting": 641854, "utm_accuracy_code": "H", "bcgs_id": 13842, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113173, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "WELLS", "update_date": "2017-09-06T20:05:40Z", "well_guid": "8859bec8-e8db-467d-8329-7c59a95271f1", "identification_plate_number": 47484, "owner_full_name": "JULIUS CALVERLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Rosen Lake Rd 1", "city": "Jaffray", "legal_lot": "1", "legal_plan": "EPP63315", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Pl EPP63315 KD", "construction_start_date": "2017-01-02", "construction_end_date": "2017-02-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "2630.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "44.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5468598, "utm_easting": 623471, "utm_accuracy_code": "H", "bcgs_id": 1058, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113174, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-08T16:46:30Z", "update_user": "WELLS", "update_date": "2017-08-10T18:10:07Z", "well_guid": "b953f194-7181-461d-9217-853ecf7df829", "identification_plate_number": 49209, "owner_full_name": "HAMNET SIMPSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "IRR", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "GELLATLY ROAD 1", "city": "WEST KELOWNA", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "101502859", "well_location_description": "WELL IS LOCATED ON THE NE SIDE OF THE BYLANDS BUILDING 15M SOUTH OF GELLATLY ROAD.", "construction_start_date": "1990-01-31", "construction_end_date": "1990-02-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "0fa17be4-778b-4f46-9205-637541f05a5d", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.270000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "35.00", "finished_well_depth": "35.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "24.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5521276, "utm_easting": 310662, "utm_accuracy_code": "A", "bcgs_id": 513, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113177, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T17:55:33Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "8ae181ed-1007-4a30-9015-317cc1cc2148", "identification_plate_number": 47497, "owner_full_name": "RUTHY MACHEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Bull River Rd 1", "city": " ", "legal_lot": "10", "legal_plan": "2992", "legal_district_lot": "14590", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Dry Well Bull River Rd KD DL 4590 Pl 2992 Easement is Granted through Lot A ", "construction_start_date": "2017-06-07", "construction_end_date": "2017-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "2675.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "250.00", "finished_well_depth": "250.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.100", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5494560, "utm_easting": 602950, "utm_accuracy_code": "H", "bcgs_id": 9738, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113178, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T18:39:10Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "5fe0c59a-79b8-4f93-abee-3ed9b274ef93", "identification_plate_number": 47498, "owner_full_name": "WILIE VARDEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " Bull River Rd 1", "city": " ", "legal_lot": "11", "legal_plan": "2992", "legal_district_lot": "14590", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Lot 1 PL 2992 Easement Is Granted Through Lot A DL 4590 KD", "construction_start_date": "2017-06-08", "construction_end_date": "2017-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": "2695.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "91.00", "finished_well_depth": "91.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "84.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5494757, "utm_easting": 603090, "utm_accuracy_code": "H", "bcgs_id": 13877, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113179, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:42Z", "update_user": "WELLS", "update_date": "2017-09-08T22:10:06Z", "well_guid": "505c4450-e49f-4623-91c5-19e3b0d64ae3", "identification_plate_number": 44216, "owner_full_name": "SONIA BRISTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5 Edwards Road 1", "city": "Baynes Lake", "legal_lot": "15", "legal_plan": "1181", "legal_district_lot": "1132", "legal_block": "21", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Lot 5 BLK 21 DL 132 KDP 1181 : 5 Edwards Road Baynes Lake Rd KD", "construction_start_date": "2017-06-09", "construction_end_date": "2017-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.260000", "longitude": "-122.570000", "ground_elevation": "2673.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "156.00", "finished_well_depth": "156.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "110.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5453350, "utm_easting": 629653, "utm_accuracy_code": "H", "bcgs_id": 1028, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113180, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "8c9c8b3d-4a9e-4cda-baeb-aed2ca1a0b4a", "identification_plate_number": 47495, "owner_full_name": "PALOMA WILFING", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "640 Upper Lakeview Rd 1", "city": "Invermere", "legal_lot": "1A", "legal_plan": "19804", "legal_district_lot": "14347", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "640 Upper Lakeview Rd KD Lot A PL 19804 DL 4347", "construction_start_date": "2017-05-25", "construction_end_date": "2017-06-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.290000", "longitude": "-122.570000", "ground_elevation": "2871.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "210.00", "finished_well_depth": "209.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "180.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5595138, "utm_easting": 570406, "utm_accuracy_code": "H", "bcgs_id": 1438, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113181, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:43:58Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "15103c60-e55d-436a-9534-4829a05a5734", "identification_plate_number": 47496, "owner_full_name": "BABS PINHORN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Lumberton", "legal_lot": "10", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "109793232", "well_location_description": "PID 009793232 & 009793330", "construction_start_date": "2017-06-02", "construction_end_date": "2017-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": "3346.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "155.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "85.00", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5476373, "utm_easting": 580674, "utm_accuracy_code": "H", "bcgs_id": 10710, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113182, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "ed2a36b4-be03-4ec6-a618-bacc06e13de3", "identification_plate_number": 47494, "owner_full_name": "LOTHAIRE FAIVRE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4201 Echo Field Rd 1", "city": "Cranbrook", "legal_lot": "10", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "4201 Echo Field Rd Cranbrook BC", "construction_start_date": "2017-05-23", "construction_end_date": "2017-05-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.210000", "longitude": "-122.580000", "ground_elevation": "3387.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "255.00", "final_casing_stick_up": "12.000", "bedrock_depth": "140.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "5.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5481941, "utm_easting": 588694, "utm_accuracy_code": "H", "bcgs_id": 1096, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113183, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "WELLS", "update_date": "2017-12-22T20:04:10Z", "well_guid": "93c695e2-8e39-4652-a607-0a2bedfe2b77", "identification_plate_number": 14951, "owner_full_name": "TERRI-JO KINNEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "32315 South Fraser Way 1", "city": "Abbotsford", "legal_lot": "11", "legal_plan": "EPP70757", "legal_district_lot": "1", "legal_block": " ", "legal_section": "20", "legal_township": "16", "legal_range": " ", "land_district": "36", "legal_pid": "130104831", "well_location_description": "On west side of courthouse parking lot.", "construction_start_date": "2006-02-15", "construction_end_date": "2006-03-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c998d3b7-9a36-434b-b38b-66d69c239628", "well_identification_plate_attached": "On steel casing stick-up", "latitude": "49.290000", "longitude": "-122.580000", "ground_elevation": "208.30", "ground_elevation_method": "DIFF_GPS", "drilling_method": "CABLE_TOOL", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "GRT_STLCSG", "surface_seal_length": "20.50", "surface_seal_thickness": "2.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "154.00", "finished_well_depth": "126.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.00", "well_yield": "55.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Locked cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "LPS", "diameter": " ", "observation_well_number": "441", "observation_well_status": "Active", "ems": "E308886", "utm_zone_code": "10", "utm_northing": 5433446, "utm_easting": 548806, "utm_accuracy_code": "F", "bcgs_id": 3936, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113184, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "WELLS", "update_date": "2017-09-05T18:16:22Z", "well_guid": "a99690cc-9d63-4826-9642-09b3e6f5ec12", "identification_plate_number": 49366, "owner_full_name": "BERTINA WEBEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6281 Mccallum Road 1", "city": "Agassiz", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "behind rental house in front", "construction_start_date": "2017-06-07", "construction_end_date": "2017-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "39ee5036-e0e8-4e6c-9e44-c98b15dbf25d", "well_identification_plate_attached": "barn wall", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DRIVING", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "6.00", "surface_seal_thickness": "0.15", "surface_seal_method": "POURED", "backfill_type": "topsoil", "backfill_depth": "1.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "SURGE", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "47.00", "finished_well_depth": "42.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "8.50", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "pipe plug", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5456985, "utm_easting": 588298, "utm_accuracy_code": "H", "bcgs_id": 4745, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113185, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T16:48:19Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "a74bd524-4ba8-4c65-a1db-fe728e33c76b", "identification_plate_number": 32281, "owner_full_name": "MADELIN REDDLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2702 Smith Road 1", "city": "Hagensborg", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-05-16", "construction_end_date": "2017-06-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.270000", "longitude": "-122.500000", "ground_elevation": "404.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "119.00", "finished_well_depth": "119.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5807985, "utm_easting": 671345, "utm_accuracy_code": "H", "bcgs_id": 6566, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113186, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T19:52:22Z", "update_user": "WELLS", "update_date": "2017-09-06T23:57:46Z", "well_guid": "47343ede-0194-4ef6-a5fc-7326a0a313b1", "identification_plate_number": 44217, "owner_full_name": "ANGE SWADLINGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3706 Ladybird Rd 1", "city": "Krestova", "legal_lot": "1E", "legal_plan": "5927", "legal_district_lot": "17362", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "107396155", "well_location_description": "Lot E Plan NEP 5972 DL 7362 KD & DL 8773 KD", "construction_start_date": "2017-06-12", "construction_end_date": "2017-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "2008.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "160.00", "final_casing_stick_up": "12.000", "bedrock_depth": "135.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5476777, "utm_easting": 456438, "utm_accuracy_code": "H", "bcgs_id": 10166, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113188, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "cb962dcd-0396-4f92-8326-cc56ca0bba82", "identification_plate_number": 32285, "owner_full_name": "MAIBLE SPINAGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2902 Quenton Road 1", "city": "Hagensborg", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-05-18", "construction_end_date": "2017-05-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "355.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "155.00", "finished_well_depth": "155.00", "final_casing_stick_up": "23.000", "bedrock_depth": "97.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "79.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5807833, "utm_easting": 671841, "utm_accuracy_code": "H", "bcgs_id": 6567, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113189, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "WELLS", "update_date": "2017-12-22T19:58:56Z", "well_guid": "0b71628d-69f1-4fd0-af87-6d05977f94c3", "identification_plate_number": 33707, "owner_full_name": "ABBYE FARDOE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Oceanmount Boulevard 1", "city": "Town of Gibsons", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "South side of Oceanmount Boulevard on the right-of-way, west of Shaw Road, north of and adjacent to 897 Oceanmount Boulevard", "construction_start_date": "2010-04-08", "construction_end_date": "2010-04-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "Steel stick-up casing", "latitude": "49.220000", "longitude": "-122.500000", "ground_elevation": "352.53", "ground_elevation_method": "DIFF_GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "515.00", "finished_well_depth": "405.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "277.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Locked cabinet", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": "460", "observation_well_status": "Active", "ems": "E308926", "utm_zone_code": "10", "utm_northing": 5472236, "utm_easting": 462268, "utm_accuracy_code": "F", "bcgs_id": 4542, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113190, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "b1e05c90-401e-4e4f-9b46-0791c19417d9", "identification_plate_number": 32295, "owner_full_name": "VINCE ORMSHAW", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2895 Lost Lake Forest Service Rd 1", "city": "Hagensborg", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-05-28", "construction_end_date": "2017-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "544.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "168.00", "finished_well_depth": "168.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "125.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5910853, "utm_easting": 670182, "utm_accuracy_code": "H", "bcgs_id": 13872, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113191, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "59e48770-ce91-4c70-b414-62264e465d3e", "identification_plate_number": 32254, "owner_full_name": "SAYER CHAMPAGNE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "751 Thorsen Road 1", "city": "Bella Coola", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-06-01", "construction_end_date": "2017-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "140.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "280.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "32.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "9", "utm_northing": 5803631, "utm_easting": 656924, "utm_accuracy_code": "H", "bcgs_id": 13257, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113192, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "c19c679d-7981-4de4-814f-d82a62b5b61e", "identification_plate_number": 32297, "owner_full_name": "INGELBERT BOUNDE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3174 Elsey Road 1", "city": "Anahim Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-06-12", "construction_end_date": "2017-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "3605.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "110.00", "finished_well_depth": "110.00", "final_casing_stick_up": "22.000", "bedrock_depth": "83.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "35.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5820492, "utm_easting": 338230, "utm_accuracy_code": "H", "bcgs_id": 13873, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113193, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "c394a8a6-2418-421a-9b23-eae55c7f5c4b", "identification_plate_number": 50206, "owner_full_name": "ROBIN NISBET", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "974 Anderson Road 1", "city": "Williams Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-06-16", "construction_end_date": "2017-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing ", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "3020.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "159.00", "finished_well_depth": "159.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "115.00", "well_yield": "12.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5770452, "utm_easting": 562291, "utm_accuracy_code": "H", "bcgs_id": 6292, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113199, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "WELLS", "update_date": "2017-08-23T22:30:59Z", "well_guid": "becf22e4-709c-4af9-9a43-8b9ad1ada5bc", "identification_plate_number": 50504, "owner_full_name": "ZEDEKIAH IVAKIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "114926695", "well_location_description": "Legal Description: d-A3-E/94-A-16- Land Tenure Number: OGC file 9639499, WA# 29786 (permitted as a water source well). On private land owned by CNRL.", "construction_start_date": "1999-12-15", "construction_end_date": "1999-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.590000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "PERF_PIPE", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "140.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "123.00", "well_yield": "75.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "not provided", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6302310, "utm_easting": 658378, "utm_accuracy_code": "A", "bcgs_id": 11852, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113200, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:48Z", "update_user": "WELLS", "update_date": "2017-08-23T23:02:09Z", "well_guid": "a2031624-06ba-4194-8ed9-102bbcde8711", "identification_plate_number": 50505, "owner_full_name": "TOMKIN WORCS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "114899001", "well_location_description": "Legal Description: d-B23-G/94-A-15 - Land Tenure Number: OGC file 9631106, WA# 25370 (permitted as a water source well).", "construction_start_date": "2009-04-03", "construction_end_date": "2009-04-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "180.00", "well_yield": "80.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Plate", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6303882, "utm_easting": 643081, "utm_accuracy_code": "A", "bcgs_id": 13853, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113202, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-26T19:39:27Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "61ae4879-3592-4de6-8c6c-b5f4d10ea30e", "identification_plate_number": 44222, "owner_full_name": "HEDA GRINVAL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "588 Berry Road 1", "city": "Castlegar", "legal_lot": "1B", "legal_plan": "2949", "legal_district_lot": "11598", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "126812355", "well_location_description": "588 Berry Rd Castlegar BC Lot B PL 2949 DL1598", "construction_start_date": "2017-06-21", "construction_end_date": "2017-06-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.250000", "longitude": "-122.580000", "ground_elevation": "1413.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "49.00", "finished_well_depth": "49.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5462386, "utm_easting": 453703, "utm_accuracy_code": "H", "bcgs_id": 857, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113203, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:11:08Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "ba9f257f-e829-4053-918a-69d5ac6de99d", "identification_plate_number": 44220, "owner_full_name": "CARLETON JANKOVIC", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2057 Hwy 3A 1", "city": "Castlegar (Tarrys)", "legal_lot": "12", "legal_plan": "NEP 9603", "legal_district_lot": "11239", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "113056646", "well_location_description": "Lot 2 Pl 9603 DL 1239 KD", "construction_start_date": "2017-06-15", "construction_end_date": "2017-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "1661.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "194.00", "finished_well_depth": "194.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "150.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5470901, "utm_easting": 459847, "utm_accuracy_code": "H", "bcgs_id": 4455, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113204, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:19:47Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "bf1a9f70-e855-4003-9067-291e48c35ba7", "identification_plate_number": 44221, "owner_full_name": "GIFFARD GILLIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "120", "legal_plan": "NEP 9603", "legal_district_lot": "11239", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "114651521", "well_location_description": "Lot 20 Pl 9603 DL 1239 KD", "construction_start_date": "2017-06-20", "construction_end_date": "2017-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "1674.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "138.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5470682, "utm_easting": 459879, "utm_accuracy_code": "H", "bcgs_id": 876, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113205, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:17Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "9b3965df-8e53-4718-99f4-e8ea4d0871ae", "identification_plate_number": 44224, "owner_full_name": "MASSIMO GOVE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3760 Highway 393 1", "city": "Galloway", "legal_lot": "10", "legal_plan": " ", "legal_district_lot": "16357", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "3760 Highway 393 DL 6357 KD", "construction_start_date": "2017-06-23", "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": "2863.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "96.00", "finished_well_depth": "96.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5467156, "utm_easting": 629491, "utm_accuracy_code": "H", "bcgs_id": 13878, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113206, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "e87deb16-1342-454a-9619-b5ff25cb64c4", "identification_plate_number": 44225, "owner_full_name": "CALVIN DUNS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3760 Highway 393 1", "city": "Galloway", "legal_lot": "10.0", "legal_plan": " ", "legal_district_lot": "16357", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "3760 Highway 393 DL 6357 KD", "construction_start_date": "2017-06-26", "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.230000", "longitude": "-122.560000", "ground_elevation": "2868.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "95.00", "finished_well_depth": "95.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "30.00", "well_yield": "35.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5467161, "utm_easting": 629491, "utm_accuracy_code": "H", "bcgs_id": 13878, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113209, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:11Z", "update_user": "WELLS", "update_date": "2018-03-06T21:22:12Z", "well_guid": "6f8b593d-7d09-42ff-9744-dce3ca84b85b", "identification_plate_number": 50506, "owner_full_name": "MAYNORD STERLEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "LICENSED", "street_address": " 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: b-49-A/94-A-15; OGC file: 9633942 - permitted as a water source well.", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": "2011-04-10", "alteration_end_date": "2011-04-10", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "GRT_STLCSG", "surface_seal_length": "18.00", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "820.00", "finished_well_depth": "820.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "232.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "capped", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "4.5", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6296253, "utm_easting": 646043, "utm_accuracy_code": "A", "bcgs_id": 13855, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113210, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "WELLS", "update_date": "2017-08-29T02:10:30Z", "well_guid": "2e317bee-903f-47b0-92f8-ed10c38cda7c", "identification_plate_number": 50507, "owner_full_name": "JULIUS ALLIOT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1409", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: Block A District Lot 409 Peace River District (C-64-A/93-P-8) - Water Supply wells located on land authorized under OGC file 9621917 (Land Tenure Disposition # 924320).", "construction_start_date": "2006-03-08", "construction_end_date": "2006-03-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", "well_identification_plate_attached": null, "latitude": "49.240000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.40", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "capped", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6.12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6132595, "utm_easting": 687210, "utm_accuracy_code": "H", "bcgs_id": 13856, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113211, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:13Z", "update_user": "WELLS", "update_date": "2017-08-31T22:01:28Z", "well_guid": "1f0dbe25-c488-4fe5-89ca-a80331f7b6ed", "identification_plate_number": 43656, "owner_full_name": "JERMAINE SOKILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "845 Shawn Road 1", "city": "Coombs", "legal_lot": "11", "legal_plan": "VIP 52334", "legal_district_lot": "12", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "117339243", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-06-01", "construction_end_date": "2017-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.500000", "ground_elevation": "310.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "72.00", "finished_well_depth": "70.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "18.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5463151, "utm_easting": 397581, "utm_accuracy_code": "H", "bcgs_id": 3304, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113212, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "WELLS", "update_date": "2017-08-31T22:07:42Z", "well_guid": "297f0ee0-c691-469b-9a0a-d57f64b68f2a", "identification_plate_number": 40936, "owner_full_name": "SONIA ZINCKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "820 Corcan Road 1", "city": "Qualicum Beach", "legal_lot": "19", "legal_plan": "VIP 36719", "legal_district_lot": "190", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "100421871", "well_location_description": "Except Plan VIP 39792 and ECP Plan VIP 57498 and EPP 62828 - within property boundaries.", "construction_start_date": "2017-04-07", "construction_end_date": "2017-04-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing.", "latitude": "49.290000", "longitude": "-122.510000", "ground_elevation": "251.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "255.00", "finished_well_depth": "252.06", "final_casing_stick_up": "24.000", "bedrock_depth": "252.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "80.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5467162, "utm_easting": 387018, "utm_accuracy_code": "H", "bcgs_id": 3297, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113213, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "WELLS", "update_date": "2017-08-31T22:07:42Z", "well_guid": "0c502f51-260e-4f31-b2e2-c22662126065", "identification_plate_number": 43630, "owner_full_name": "MAIRE JERRAMS\n ", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "936 Gowlland Harbour Road 1", "city": "Quadra Island", "legal_lot": "1C", "legal_plan": "39479", "legal_district_lot": "1215", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "100976512", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-06-12", "construction_end_date": "2017-06-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.220000", "longitude": "-122.580000", "ground_elevation": "143.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "280.00", "finished_well_depth": "280.00", "final_casing_stick_up": "24.000", "bedrock_depth": "1.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5551378, "utm_easting": 339845, "utm_accuracy_code": "H", "bcgs_id": 5461, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113214, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "WELLS", "update_date": "2017-08-31T22:07:42Z", "well_guid": "c7d99e6b-4aa7-4bc4-8feb-ccf6a18f5947", "identification_plate_number": 43631, "owner_full_name": "ARLEYNE GRINVALDS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8764 Faber Road 1", "city": "Port Alberni", "legal_lot": "137", "legal_plan": "880", "legal_district_lot": "141", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "01", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-04-18", "construction_end_date": "2017-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.210000", "longitude": "-122.510000", "ground_elevation": "63.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "180.00", "finished_well_depth": "180.00", "final_casing_stick_up": "30.000", "bedrock_depth": "22.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "104.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5460346, "utm_easting": 360153, "utm_accuracy_code": "H", "bcgs_id": 3175, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113215, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "WELLS", "update_date": "2017-09-19T22:11:54Z", "well_guid": "82b2850c-c986-490e-bc37-a91f73284fbb", "identification_plate_number": 43661, "owner_full_name": "PETE MCGIFFIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "898 Bluff Road East 1", "city": "Galiano Island", "legal_lot": "1B", "legal_plan": "VIP 41198", "legal_district_lot": "1", "legal_block": " ", "legal_section": "4", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", "construction_start_date": "2017-05-23", "construction_end_date": "2017-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", "well_identification_plate_attached": "Strapped to casing", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "12.000", "bedrock_depth": "9.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "54.00", "well_yield": "3.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WTCC6", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5412989, "utm_easting": 476046, "utm_accuracy_code": "H", "bcgs_id": 3026, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113216, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "WELLS", "update_date": "2017-08-28T23:09:59Z", "well_guid": "c4ba0107-e926-436f-aa72-409b10caf679", "identification_plate_number": 50508, "owner_full_name": "THAIN FOLK", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "AB", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1409", "legal_plan": " ", "legal_district_lot": "1", "legal_block": "A", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: Block A District Lot 409 Peace River District (C-64-A/93-P-8) - Water Supply wells located on land authorized under OGC file 9621917 (Land Tenure Disposition # 924320).", "construction_start_date": "2006-03-09", "construction_end_date": "2006-03-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.210000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.40", "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "300.00", "finished_well_depth": "300.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "120.00", "well_yield": "18.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "capped", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6132731, "utm_easting": 687230, "utm_accuracy_code": "H", "bcgs_id": 13856, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113217, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "WELLS", "update_date": "2017-09-05T23:05:49Z", "well_guid": "fbe0b88b-7434-4db6-b6e6-535c1831403e", "identification_plate_number": 32278, "owner_full_name": "KLEON BUYE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5955 West Fraser Rd 1", "city": "Quesnel", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", "construction_start_date": "2017-06-28", "construction_end_date": "2017-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "e2a508a2-e481-4731-8a9b-becf3a913cd7", "well_identification_plate_attached": "casing", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "2299.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "135.00", "finished_well_depth": "135.00", "final_casing_stick_up": "22.000", "bedrock_depth": "115.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "91.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermon proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5844266, "utm_easting": 532354, "utm_accuracy_code": "H", "bcgs_id": 6403, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113218, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:16:08Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "fc2acde9-df7e-4e32-b163-487d3300de2c", "identification_plate_number": 44219, "owner_full_name": "MADELIN STAINBURN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3702 Robin Road 1", "city": "Crescent Valley", "legal_lot": "12", "legal_plan": "12947", "legal_district_lot": "1303", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "105195951", "well_location_description": "Lot 2 Pl NEP 12947 Except Plan 17240 DL 303 KD", "construction_start_date": "2017-06-14", "construction_end_date": "2017-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": "1630.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "70.00", "finished_well_depth": "70.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5476783, "utm_easting": 459532, "utm_accuracy_code": "H", "bcgs_id": 885, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113219, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T22:55:59Z", "update_user": "WELLS", "update_date": "2017-08-29T04:40:58Z", "well_guid": "0165b562-3ad5-4c1a-bfd0-94354f013340", "identification_plate_number": 31825, "owner_full_name": "WHITTAKER SHOVEL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "22975 Highway 16 East 1", "city": "Burns Lake", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "128568168", "well_location_description": "Below Fire Pond", "construction_start_date": "2010-11-03", "construction_end_date": "2010-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": "on casing", "latitude": "49.250000", "longitude": "-122.520000", "ground_elevation": "2358.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "146.00", "finished_well_depth": "146.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "200.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Steel cap", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "8", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 6003524, "utm_easting": 339956, "utm_accuracy_code": "H", "bcgs_id": 13857, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113242, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:34Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "6b2ccc76-4993-4a27-8b0c-0299cd3a5bad", "identification_plate_number": 50194, "owner_full_name": "SISSY DEANDREIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6325 RENNIE ROAD 1", "city": "COURTENAY", "legal_lot": "1A", "legal_plan": "48635", "legal_district_lot": "1", "legal_block": "29", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "114102820", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-30", "construction_end_date": "2017-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.240000", "longitude": "-122.580000", "ground_elevation": "175.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "193.00", "finished_well_depth": "193.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "90.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5516597, "utm_easting": 354351, "utm_accuracy_code": "H", "bcgs_id": 3553, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113243, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:37:33Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "043830e6-dc92-4083-8c18-c07053112dd0", "identification_plate_number": 50172, "owner_full_name": "URSULINE RINGROSE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "6191 HEADQUARTERS ROAD 1", "city": "COURTENAY", "legal_lot": "1A", "legal_plan": "29451", "legal_district_lot": "1197", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "101398521", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-01", "construction_end_date": "2017-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.290000", "longitude": "-122.520000", "ground_elevation": "320.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "77.00", "finished_well_depth": "76.50", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "38.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5513637, "utm_easting": 351687, "utm_accuracy_code": "H", "bcgs_id": 3541, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113244, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T18:00:21Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "dc6eb0c5-27b3-4c67-9e3e-5f244ebd56f0", "identification_plate_number": 52450, "owner_full_name": "ANNMARIE UMBERT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2036 LEONARD ROAD 1", "city": "SHAWNIGAN LAKE", "legal_lot": "13", "legal_plan": "VIP1679", "legal_district_lot": "1", "legal_block": "8", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "104228791", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-29", "construction_end_date": "2017-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.210000", "longitude": "-122.530000", "ground_elevation": "469.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "284.00", "finished_well_depth": "284.00", "final_casing_stick_up": "24.000", "bedrock_depth": "1.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "48.00", "well_yield": "2.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "PITLESS", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5385651, "utm_easting": 452702, "utm_accuracy_code": "H", "bcgs_id": 2673, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113246, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "d308d792-a21b-4f87-87c2-8e83838b89f0", "identification_plate_number": 50155, "owner_full_name": "FRANK DICKMAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8425 BERRAY ROAD 1", "city": "FANNY BAY", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "109668187", "well_location_description": "FEDERAL PROPERTY #EXCPCL A DD 28879N", "construction_start_date": "2017-06-13", "construction_end_date": "2017-06-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "22.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.50", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "PUMP", "development_hours": "30.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "83.00", "finished_well_depth": "82.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "142.00", "well_yield": "1000.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5480254, "utm_easting": 371417, "utm_accuracy_code": "H", "bcgs_id": 3375, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113247, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T22:12:57Z", "update_user": "WELLS", "update_date": "2017-08-29T18:30:59Z", "well_guid": "15bcc84a-b7da-417e-acd6-29f13c498751", "identification_plate_number": 52400, "owner_full_name": "DOTTI MACKLEDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "385 BATES DRIVE 1", "city": "SHIPS POINT", "legal_lot": "124", "legal_plan": "23165", "legal_district_lot": "130", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "35", "legal_pid": "103050467", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-29", "construction_end_date": "2017-05-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "20.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "37.00", "finished_well_depth": "37.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5483941, "utm_easting": 368683, "utm_accuracy_code": "H", "bcgs_id": 3363, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113249, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T15:26:58Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "9d77c3c4-6876-4b84-9711-7c63854d97b4", "identification_plate_number": 44218, "owner_full_name": "FITZGERALD SHELLIDAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "3461 Pass Creek Rd 1", "city": "Krestova", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "17639", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "115205100", "well_location_description": "Parcel D CR4922 of DL 7639", "construction_start_date": "2017-06-13", "construction_end_date": "2017-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": "1641.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "53.00", "finished_well_depth": "53.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "20.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5476545, "utm_easting": 458889, "utm_accuracy_code": "H", "bcgs_id": 885, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113250, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T17:09:46Z", "update_user": "WELLS", "update_date": "2017-10-02T17:31:23Z", "well_guid": "80b244b2-fa32-46ef-abbd-d0c11af63002", "identification_plate_number": 50691, "owner_full_name": "BLISS EALDEN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1735 SPRING CREEK DRIVE 1", "city": "LINDELL BEACH", "legal_lot": "12", "legal_plan": "2385", "legal_district_lot": "1", "legal_block": " ", "legal_section": "15", "legal_township": "22", "legal_range": " ", "land_district": "36", "legal_pid": "103656667", "well_location_description": "WELL APPROXIMATELY 128 METERS NW OF SPRING CREEK DRIVE, LINDELL AVE JUNCTION.", "construction_start_date": "1985-08-15", "construction_end_date": "1985-08-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.220000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": "92.00", "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5431747, "utm_easting": 572268, "utm_accuracy_code": "H", "bcgs_id": 3981, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113251, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:25Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "ba2cecb3-2a00-4719-ba1b-4891295b6445", "identification_plate_number": 44227, "owner_full_name": "GOLDA HENRYSON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Invermere", "legal_lot": "1D", "legal_plan": "66209", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "Lot D Of Plan NEP 66209 KD", "construction_start_date": "2017-07-05", "construction_end_date": "2017-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.270000", "longitude": "-122.590000", "ground_elevation": "2625.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "47.00", "finished_well_depth": "47.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "3.00", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5596546, "utm_easting": 569019, "utm_accuracy_code": "H", "bcgs_id": 1439, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113252, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "WELLS", "update_date": "2017-09-06T23:52:16Z", "well_guid": "c18fd7ec-d260-4372-a95b-8aa46280d3d9", "identification_plate_number": 44229, "owner_full_name": "CANDY BOLLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": "Gold Creek", "legal_lot": "155", "legal_plan": "1180", "legal_district_lot": "13557", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "159171000", "well_location_description": "Lot 55 Plan 1180 DL 3557 KD", "construction_start_date": "2017-07-11", "construction_end_date": "2017-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "1237493e-ebd8-41e2-83ca-0a600da00bc9", "well_identification_plate_attached": "Top of Casing", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": "3428.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": "Bentonite", "backfill_depth": "16.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "175.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "45.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Bolt On", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5482590, "utm_easting": 592799, "utm_accuracy_code": "H", "bcgs_id": 9356, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113253, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "bde5f254-4833-471c-be09-99e70745d8b8", "identification_plate_number": 52427, "owner_full_name": "LEESE BRISTER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5028 BELVEDERE CRESCENT 1", "city": "DUNCAN", "legal_lot": "111", "legal_plan": "VIP30394", "legal_district_lot": "1", "legal_block": " ", "legal_section": "7", "legal_township": " ", "legal_range": "5", "land_district": "50", "legal_pid": "101254189", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-31", "construction_end_date": "2017-06-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "406.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "165.00", "finished_well_depth": "165.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "115.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5401991, "utm_easting": 438252, "utm_accuracy_code": "H", "bcgs_id": 2770, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113254, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "d2ac98a3-4f56-43f3-a792-cd9c9670bbf3", "identification_plate_number": 52455, "owner_full_name": "TAYLOR ANSTIS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "361 SUNSET DRIVE 1", "city": "SALTSPRING ISLAND", "legal_lot": "1A", "legal_plan": "44304", "legal_district_lot": "1", "legal_block": " ", "legal_section": "13", "legal_township": " ", "legal_range": "4W", "land_district": "16", "legal_pid": "105624827", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-21", "construction_end_date": "2017-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.240000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.50", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "401.00", "finished_well_depth": "401.00", "final_casing_stick_up": "18.000", "bedrock_depth": "10.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "2.00", "well_yield": "25.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5415615, "utm_easting": 457719, "utm_accuracy_code": "H", "bcgs_id": 2990, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113255, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "1dc875e2-cf1b-49a3-a86e-de6f702b5da5", "identification_plate_number": 50148, "owner_full_name": "TED KEELINGE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "361 SUNSET DRIVE 1", "city": "SALTSPRING ISLAND", "legal_lot": "1A", "legal_plan": "44304", "legal_district_lot": "1", "legal_block": " ", "legal_section": "13", "legal_township": " ", "legal_range": "4W", "land_district": "16", "legal_pid": "105624827", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-19", "construction_end_date": "2017-06-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.200000", "longitude": "-122.570000", "ground_elevation": "340.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "501.00", "finished_well_depth": "501.00", "final_casing_stick_up": "14.000", "bedrock_depth": "13.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "0.750", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5415817, "utm_easting": 457823, "utm_accuracy_code": "H", "bcgs_id": 2990, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113257, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "WELLS", "update_date": "2017-09-11T18:40:55Z", "well_guid": "e7cbdc4f-e0fa-431e-8525-4406e8012352", "identification_plate_number": 50690, "owner_full_name": "ARIELLA SCAIN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "771 AUSTIN AVENUE 1", "city": "COQUITLAM", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "124744034", "well_location_description": "north end of pond", "construction_start_date": "2003-08-27", "construction_end_date": "2003-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": "426.00", "ground_elevation_method": "ALTIMETER", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "7.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "275.00", "finished_well_depth": "274.00", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "212.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Pitless", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455299, "utm_easting": 509155, "utm_accuracy_code": "H", "bcgs_id": 13892, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113259, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "WELLS", "update_date": "2017-09-11T18:01:49Z", "well_guid": "d91e14be-b125-43ed-87f0-6726eed1ae02", "identification_plate_number": 50689, "owner_full_name": "ADEY PULESTON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "771 AUSTIN AVENUE 1", "city": "COQUITLAM", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "124744034", "well_location_description": "South West of the pond", "construction_start_date": "1995-10-17", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.250000", "longitude": "-122.590000", "ground_elevation": "420.00", "ground_elevation_method": "ALTIMETER", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "1.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "267.00", "finished_well_depth": "262.50", "final_casing_stick_up": "12.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "176.50", "well_yield": "300.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "Pittless", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5455201, "utm_easting": 509107, "utm_accuracy_code": "H", "bcgs_id": 13891, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113260, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:30Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "836f8103-c893-4c9b-9366-fd75f2a6134a", "identification_plate_number": 52453, "owner_full_name": "TORRY DELBERGUE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "361 SUNSET DRIVE 1", "city": "SALTSPRING ISLAND", "legal_lot": "1A", "legal_plan": "44304", "legal_district_lot": "1", "legal_block": " ", "legal_section": "13", "legal_township": " ", "legal_range": "4W", "land_district": "16", "legal_pid": "105624827", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-23", "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.230000", "longitude": "-122.530000", "ground_elevation": "230.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "440.00", "finished_well_depth": "440.00", "final_casing_stick_up": "14.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": "60.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5415353, "utm_easting": 458023, "utm_accuracy_code": "H", "bcgs_id": 2991, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113261, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:02Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "7d4880d5-64f8-46fb-a655-8ce0fcffeaa9", "identification_plate_number": 52426, "owner_full_name": "JEREMIAS TIMCKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " COWICHAN IR #1 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111263466", "well_location_description": "LOT 264-3 IR#1", "construction_start_date": "2017-05-30", "construction_end_date": "2017-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.590000", "ground_elevation": "334.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "220.00", "finished_well_depth": "220.00", "final_casing_stick_up": "16.000", "bedrock_depth": "117.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5402110, "utm_easting": 443891, "utm_accuracy_code": "H", "bcgs_id": 2806, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113262, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "21939c8d-9f09-44f5-8932-c1bd185c95bc", "identification_plate_number": 52479, "owner_full_name": "JON FEUELL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " COWICHAN IR #1 1", "city": " ", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "111263466", "well_location_description": "LOT 264-3 IR#1", "construction_start_date": "2017-06-07", "construction_end_date": "2017-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.520000", "ground_elevation": "290.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "105.00", "final_casing_stick_up": "16.000", "bedrock_depth": "95.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5401855, "utm_easting": 443847, "utm_accuracy_code": "H", "bcgs_id": 2806, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113263, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:39:22Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "5197fd8f-ecb9-46a9-8061-b36ea5ca102c", "identification_plate_number": 50171, "owner_full_name": "HUBERT BERNHARDI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "110 FRANCIS ROAD", "city": "MERVILLE", "legal_lot": "12", "legal_plan": "84175", "legal_district_lot": "1", "legal_block": " ", "legal_section": "22", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "127350011", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-05", "construction_end_date": "2017-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.230000", "longitude": "-122.500000", "ground_elevation": "340.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLATE", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "55.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "22.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5518106, "utm_easting": 352085, "utm_accuracy_code": "H", "bcgs_id": 3551, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113264, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:53Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "c20ad2ed-dc35-49fe-b69a-4b20381b3cdd", "identification_plate_number": 50169, "owner_full_name": "SARINE GABBOT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1D", "legal_plan": "28422", "legal_district_lot": "1", "legal_block": " ", "legal_section": "29", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "102317630", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-06", "construction_end_date": "2017-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.230000", "longitude": "-122.500000", "ground_elevation": "120.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": "15.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "89.00", "finished_well_depth": "88.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "54.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5516871, "utm_easting": 356208, "utm_accuracy_code": "H", "bcgs_id": 3580, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113265, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "f1c78e6d-ee94-4f7c-8601-f23e32f9c312", "identification_plate_number": 52467, "owner_full_name": "SHAUN DIKLE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "211 OLD SCOTT ROAD 1", "city": "SALTSPRING ISLAND", "legal_lot": "12", "legal_plan": "1422", "legal_district_lot": "120", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "107513259", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-15", "construction_end_date": "2017-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.200000", "longitude": "-122.560000", "ground_elevation": "184.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5411092, "utm_easting": 465972, "utm_accuracy_code": "H", "bcgs_id": 2997, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113266, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T21:51:57Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "1aa99a3d-6f8a-427d-9976-210761ded1ad", "identification_plate_number": 52456, "owner_full_name": "JENNICA WALARON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "846 FOSKETT ROAD 1", "city": "COMOX", "legal_lot": "111", "legal_plan": "57820", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "118540490", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-27", "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.280000", "longitude": "-122.530000", "ground_elevation": "26.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "OPEN_HOLE", "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "64.00", "finished_well_depth": "62.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "13.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5506089, "utm_easting": 364729, "utm_accuracy_code": "H", "bcgs_id": 3500, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113269, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "WELLS", "update_date": "2017-10-03T13:25:19Z", "well_guid": "2592a60d-d913-4749-bbd3-a11c5836dabf", "identification_plate_number": 41880, "owner_full_name": "WELLS BUTTERFILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1451 STAVE LAKE ROAD", "city": "MISSION", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": "18", "legal_range": " ", "land_district": "36", "legal_pid": "113394291", "well_location_description": "APPROX. 50 M WEST OF STAVE LAKE ROAD AND 50 M SOUTH OF NORTH PROPERTY BOUNDARY. S 1/2 OF THE S 1/2 OF THE NORTH E QUARTER SEC 23 TP 18.", "construction_start_date": "2014-11-13", "construction_end_date": "2014-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "116.00", "finished_well_depth": "116.00", "final_casing_stick_up": "66.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": "Well 1", "static_water_level": "5.00", "well_yield": "225.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5453168, "utm_easting": 554731, "utm_accuracy_code": "A", "bcgs_id": 4441, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113270, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "344fe4a8-7b65-4f6c-9d81-6acc12c04eaa", "identification_plate_number": 52428, "owner_full_name": "FANCHETTE MOSELEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "TST", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " 1", "city": " ", "legal_lot": "1B", "legal_plan": "VIP80467", "legal_district_lot": "115", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "51", "legal_pid": "126628589", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-12", "construction_end_date": "2017-06-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.280000", "longitude": "-122.500000", "ground_elevation": "176.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": "GRAVEL", "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "8.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "420.00", "finished_well_depth": "91.00", "final_casing_stick_up": "16.000", "bedrock_depth": "402.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "100.000", "artesian_flow": null, "artesian_pressure": "5.00", "well_cap_type": "BOLTED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5551650, "utm_easting": 333968, "utm_accuracy_code": "H", "bcgs_id": 13859, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113271, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "9e352f21-56da-49c5-8b5c-4d0420e84613", "identification_plate_number": 52464, "owner_full_name": "JERVIS WYRILL", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1948 BATES ROAD 1", "city": "COURTENAY", "legal_lot": "12", "legal_plan": "22883", "legal_district_lot": "1", "legal_block": "71", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "15", "legal_pid": "103191788", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-06-27", "construction_end_date": "2017-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.200000", "longitude": "-122.580000", "ground_elevation": "231.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "OTHER", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "BAIL", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "175.00", "finished_well_depth": "172.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "145.00", "well_yield": "9.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5513426, "utm_easting": 368607, "utm_accuracy_code": "H", "bcgs_id": 13882, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113275, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T19:54:04Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "458b1a61-a1c3-44e0-ab7b-2775c36f5a7d", "identification_plate_number": 40051, "owner_full_name": "LOREN NEATHWAY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " rosberry 1", "city": " ", "legal_lot": "18", "legal_plan": "lot c", "legal_district_lot": "1298 plus 44877", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot", "construction_start_date": "2017-05-09", "construction_end_date": "2017-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.500000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "55.00", "finished_well_depth": "53.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "35.00", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5541970, "utm_easting": 471010, "utm_accuracy_code": "H", "bcgs_id": 1391, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113276, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:03:39Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "4f45a9cd-2f33-455e-828b-2142db1171c8", "identification_plate_number": 40099, "owner_full_name": "MANNY MAASZE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " rosberry 1", "city": "roseberry", "legal_lot": "11", "legal_plan": "lot c", "legal_district_lot": "1298 plus 4877", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot", "construction_start_date": "2017-05-10", "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.250000", "longitude": "-122.530000", "ground_elevation": "1793.00", "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "58.00", "finished_well_depth": "55.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "39.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5541935, "utm_easting": 470975, "utm_accuracy_code": "H", "bcgs_id": 1391, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113277, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:11Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "9a7b3ee5-bfdb-4fca-b4f2-c09e577b0eb0", "identification_plate_number": 52463, "owner_full_name": "IONA SCHOLLER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8295 THOMSON PLACE 1", "city": "SAANICHTON", "legal_lot": "112", "legal_plan": "VIP33318", "legal_district_lot": "1", "legal_block": " ", "legal_section": "2", "legal_township": " ", "legal_range": "1E", "land_district": "65", "legal_pid": "100239194", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-06", "construction_end_date": "2017-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.270000", "longitude": "-122.530000", "ground_elevation": "386.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "260.00", "finished_well_depth": "260.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "15.00", "well_yield": "3.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5383842, "utm_easting": 467887, "utm_accuracy_code": "H", "bcgs_id": 2710, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113278, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:34Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "c360fbad-0406-4374-8803-6c7ad2aa7cc3", "identification_plate_number": 40074, "owner_full_name": "MOLLIE MCCRAE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "Roseberry Road 1", "city": "ROSEBERRY", "legal_lot": "15", "legal_plan": "NEP66984", "legal_district_lot": "1298 plus 4877", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot C", "construction_start_date": "2017-05-10", "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.240000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "56.00", "finished_well_depth": "56.00", "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "39.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5541997, "utm_easting": 471144, "utm_accuracy_code": "H", "bcgs_id": 1391, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113279, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "WELLS", "update_date": "2017-10-03T13:47:34Z", "well_guid": "51b9a8c5-56b4-4e47-b623-2af5c1035be4", "identification_plate_number": 41521, "owner_full_name": "CORALIE AITCHISON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "COM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "STAVE LAKE ROAD 1", "city": "MISSION", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": "18", "legal_range": " ", "land_district": "36", "legal_pid": "113394291", "well_location_description": "APPROXIMATELY 60 M SOUTH OF NORTH PROPERTY BOUNDARY AND 10 M WEST OF STAVE LAKE ROAD", "construction_start_date": "2015-09-22", "construction_end_date": "2015-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.230000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "156.00", "finished_well_depth": "156.00", "final_casing_stick_up": "48.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": "Well 2", "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "12", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5453160, "utm_easting": 554770, "utm_accuracy_code": "A", "bcgs_id": 4441, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113281, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "0d635645-525a-41f3-91bd-3cbdd2a61fa6", "identification_plate_number": 44820, "owner_full_name": "FOWLER SPIRIT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "4145 slocan river rd 1", "city": "valican", "legal_lot": "112300", "legal_plan": "950191", "legal_district_lot": "112300", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "left hand side of lot", "construction_start_date": "2017-07-04", "construction_end_date": "2017-07-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.230000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "20.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "108.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5490135, "utm_easting": 452481, "utm_accuracy_code": "H", "bcgs_id": 923, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113282, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:32:50Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "9d033ea8-e838-44b0-947d-ab1d193a674b", "identification_plate_number": 44822, "owner_full_name": "REGINAULD DOWNE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " gander road 1", "city": "krestova", "legal_lot": "134", "legal_plan": "5486", "legal_district_lot": "13762", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113347926", "well_location_description": "in gully to right", "construction_start_date": "2017-07-10", "construction_end_date": "2017-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.260000", "longitude": "-122.520000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "290.00", "well_yield": "15.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5476461, "utm_easting": 456563, "utm_accuracy_code": "H", "bcgs_id": 884, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113284, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:42:55Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "425d1c23-be44-4982-943f-fd4b4584baf2", "identification_plate_number": 42081, "owner_full_name": "TILLIE VARDEY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5372 broad water 1", "city": "castlegar bc", "legal_lot": "1", "legal_plan": "5370", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "123456789", "well_location_description": "right side", "construction_start_date": "2017-05-24", "construction_end_date": "2017-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.210000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "105.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "35.00", "well_yield": "50.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5465981, "utm_easting": 439708, "utm_accuracy_code": "H", "bcgs_id": 848, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113285, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "WELLS", "update_date": "2017-09-12T21:17:27Z", "well_guid": "12b6d27f-fd54-4a30-8174-17f0bca5af48", "identification_plate_number": 50626, "owner_full_name": "TUCK SALLEIR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a3141c0-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DWS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " HIGHWAY 99 1", "city": "PEMBERTON", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "11549 4095 8781", "legal_block": "G", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "27", "legal_pid": "123456789", "well_location_description": "RUTHERFORD POWER HOUSE", "construction_start_date": "2003-11-07", "construction_end_date": "2003-11-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": null, "latitude": "49.230000", "longitude": "-122.550000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": "0.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "94.00", "finished_well_depth": "91.60", "final_casing_stick_up": "6.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "5.00", "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "NOT PROVIDED", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5568979, "utm_easting": 509489, "utm_accuracy_code": "H", "bcgs_id": 11391, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113286, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:53:53Z", "update_user": "WELLS", "update_date": "2017-09-11T23:19:50Z", "well_guid": "ca1e49da-fcbb-442a-aaf1-258d5280cfd1", "identification_plate_number": 40199, "owner_full_name": "HARP PURRIER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "UNK", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " broadwater 1", "city": "castlegar", "legal_lot": "11", "legal_plan": "nep89229", "legal_district_lot": "14599", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "26", "legal_pid": "127948820", "well_location_description": "out front", "construction_start_date": "2017-05-17", "construction_end_date": "2017-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "74a33da5-12d6-4fd4-bf1d-1c11210def5b", "well_identification_plate_attached": "side of casing", "latitude": "49.280000", "longitude": "-122.580000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "1.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "105.00", "finished_well_depth": "105.00", "final_casing_stick_up": "18.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "37.00", "well_yield": "30.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vermin proof", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": "6", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5465978, "utm_easting": 439714, "utm_accuracy_code": "H", "bcgs_id": 848, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113288, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "WELLS", "update_date": "2018-01-13T12:41:48Z", "well_guid": "1407db08-320c-4864-ab70-27bb34d560c5", "identification_plate_number": 50312, "owner_full_name": "LIAM HAYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5662 Avoco Road East 1", "city": "Crazy Creek", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113984951", "well_location_description": "not available", "construction_start_date": "2016-11-17", "construction_end_date": "2016-11-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "to casing", "latitude": "49.250000", "longitude": "-122.570000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "silt", "backfill_depth": "0.90", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "160.00", "finished_well_depth": "154.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "89.00", "well_yield": "6.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5651554, "utm_easting": 381445, "utm_accuracy_code": "H", "bcgs_id": 2329, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113289, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "WELLS", "update_date": "2018-01-13T12:41:28Z", "well_guid": "176e0d30-2f8e-464e-822d-6144e3cdbbcf", "identification_plate_number": 50313, "owner_full_name": "WES MARGERRISON", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2102 Hwy 6 1", "city": "Lumby", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113585550", "well_location_description": "not available", "construction_start_date": "2016-11-24", "construction_end_date": "2016-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.230000", "longitude": "-122.510000", "ground_elevation": "2001.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "4.00", "surface_seal_method": null, "backfill_type": "native silt", "backfill_depth": "0.90", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "380.00", "finished_well_depth": "380.00", "final_casing_stick_up": "24.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "6.50", "well_yield": "2.900", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5568255, "utm_easting": 367935, "utm_accuracy_code": "H", "bcgs_id": 1660, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113290, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "WELLS", "update_date": "2018-01-13T12:41:06Z", "well_guid": "4faefda9-fc32-4994-a512-c2096e82b376", "identification_plate_number": 50314, "owner_full_name": "FLEMMING GRIMOLBIE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "OTHER", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "8888 Lakeshore Road 1", "city": "Kelowna", "legal_lot": "12724S", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "54", "legal_pid": "123456789", "well_location_description": "not available", "construction_start_date": "2016-12-15", "construction_end_date": "2016-12-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.250000", "longitude": "-122.560000", "ground_elevation": "1312.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "460.00", "finished_well_depth": "457.50", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "112.50", "well_yield": "8.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5517156, "utm_easting": 311357, "utm_accuracy_code": "H", "bcgs_id": 11072, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113291, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:05:31Z", "update_user": "WELLS", "update_date": "2018-01-13T12:40:50Z", "well_guid": "86440573-fffb-4645-9f06-db3b9663a143", "identification_plate_number": 50315, "owner_full_name": "MARENA MELATO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2393 Hwy 6 East 1", "city": "Lumby", "legal_lot": "12", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "107549547", "well_location_description": "not available", "construction_start_date": "2016-12-27", "construction_end_date": "2016-12-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.210000", "longitude": "-122.540000", "ground_elevation": "1718.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "4.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": null, "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "2.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "140.00", "finished_well_depth": "136.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "78.00", "well_yield": "40.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5568750, "utm_easting": 364203, "utm_accuracy_code": "H", "bcgs_id": 1650, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113293, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:57:03Z", "update_user": "WELLS", "update_date": "2018-01-13T12:40:14Z", "well_guid": "394e9850-bd5e-4fd5-a532-4fac8cb1cbe1", "identification_plate_number": 50317, "owner_full_name": "VIOLET HORDER", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1325 Round Lake Road 1", "city": "Armstrong", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", "construction_start_date": "2017-02-27", "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.270000", "longitude": "-122.510000", "ground_elevation": "1745.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "400.00", "finished_well_depth": "400.00", "final_casing_stick_up": "12.000", "bedrock_depth": "47.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "17.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5587669, "utm_easting": 335720, "utm_accuracy_code": "H", "bcgs_id": 1799, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113294, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "WELLS", "update_date": "2018-01-13T12:39:58Z", "well_guid": "f9f7704b-3058-49c0-8694-2892a70fefd3", "identification_plate_number": 50318, "owner_full_name": "LYN HASTY", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "96 Rawlings Lake Road 1", "city": "Lumby", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", "construction_start_date": "2017-03-15", "construction_end_date": "2017-03-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": "1889.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "40.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": "native silt", "backfill_depth": "2.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "294.00", "finished_well_depth": "292.00", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "231.50", "well_yield": "20.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5569191, "utm_easting": 365106, "utm_accuracy_code": "H", "bcgs_id": 1659, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113295, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:45Z", "update_user": "WELLS", "update_date": "2018-01-13T12:39:23Z", "well_guid": "4112dc41-00f6-4a8a-bf0d-56b08be7378f", "identification_plate_number": 50319, "owner_full_name": "JERMAINE WHITEMARSH", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "18 Rawlings Lake Road", "city": "Lumby", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", "construction_start_date": "2017-03-21", "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.240000", "longitude": "-122.510000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "30.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "TELESCOPE", "screen_material": "STNLSS_STL", "other_screen_material": "", "screen_opening": "CONTIN_SLT", "screen_bottom": "BAIL", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "4.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "458.50", "finished_well_depth": "458.50", "final_casing_stick_up": "36.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5569383, "utm_easting": 364853, "utm_accuracy_code": "H", "bcgs_id": 1659, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113299, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "WELLS", "update_date": "2018-01-13T12:42:23Z", "well_guid": "a14fc8ff-2dfc-41e6-bbb9-d55dbbd92af3", "identification_plate_number": 50310, "owner_full_name": "NORMAN THORNDYCRAFT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "CLS_LP_GEO", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7961 Silver Star Road 1", "city": "Vernon", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "well is in the NW corner of property near Wilson Jackson Road", "construction_start_date": "2016-10-21", "construction_end_date": "2016-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.250000", "longitude": "-122.510000", "ground_elevation": "3027.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "4.00", "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "700.00", "finished_well_depth": "700.00", "final_casing_stick_up": "24.000", "bedrock_depth": "218.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5577437, "utm_easting": 343910, "utm_accuracy_code": "H", "bcgs_id": 1739, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113300, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "WELLS", "update_date": "2018-01-13T12:42:10Z", "well_guid": "7f0bec3c-396f-4fc5-b5d2-52b16c1335bc", "identification_plate_number": 50311, "owner_full_name": "DORO HALLAGAN", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "7961 Silver Star Road 1", "city": "Vernon", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", "construction_start_date": "2016-11-14", "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.260000", "longitude": "-122.510000", "ground_elevation": "2751.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "20.00", "surface_seal_thickness": "4.00", "surface_seal_method": null, "backfill_type": "native silt", "backfill_depth": "0.80", "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "600.00", "finished_well_depth": "600.00", "final_casing_stick_up": "24.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "184.00", "well_yield": "2.900", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5576769, "utm_easting": 344563, "utm_accuracy_code": "H", "bcgs_id": 1736, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113301, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "WELLS", "update_date": "2018-01-13T12:39:00Z", "well_guid": "3729af62-5a58-4e1b-894c-0bb435b8edda", "identification_plate_number": 50320, "owner_full_name": "MAYNE GHERARDI", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "134 North Fork Road 1", "city": "Cherryville", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "130086191", "well_location_description": "not available", "construction_start_date": "2017-05-01", "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.260000", "longitude": "-122.530000", "ground_elevation": "1851.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "340.00", "finished_well_depth": "340.00", "final_casing_stick_up": "18.000", "bedrock_depth": "93.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "1.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5566834, "utm_easting": 385180, "utm_accuracy_code": "H", "bcgs_id": 1679, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113302, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": "WELLS", "update_date": "2018-01-13T12:38:42Z", "well_guid": "85a9bde9-2d20-4a00-ae09-f8baeda5c3c2", "identification_plate_number": 50321, "owner_full_name": "SARAH HADKINS", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "89 Specht Road 1", "city": "Cherryville", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", "construction_start_date": "2017-05-07", "construction_end_date": "2017-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6bb6b418-9a79-4823-853d-cf61dddf5cf2", "well_identification_plate_attached": "casing", "latitude": "49.260000", "longitude": "-122.550000", "ground_elevation": "1861.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "4.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "360.00", "finished_well_depth": "360.00", "final_casing_stick_up": "18.000", "bedrock_depth": "27.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "62.00", "well_yield": "4.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "vented", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "11", "utm_northing": 5566648, "utm_easting": 385196, "utm_accuracy_code": "H", "bcgs_id": 1679, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113303, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:41:21Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "e8e375ca-d91b-4dc0-8cec-b2fc3f6bb93f", "identification_plate_number": 52461, "owner_full_name": "KAJA DYMOTT", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "225 PILKEY POINT ROAD 1", "city": "THETIS ISLAND", "legal_lot": "1A", "legal_plan": "VIP15301", "legal_district_lot": "126", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "16", "legal_pid": "100796611", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-13", "construction_end_date": "2017-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.520000", "ground_elevation": "99.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "100.00", "finished_well_depth": "100.00", "final_casing_stick_up": "24.000", "bedrock_depth": "8.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "25.00", "well_yield": "2.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5429650, "utm_easting": 460014, "utm_accuracy_code": "H", "bcgs_id": 13883, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113304, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "a2dabe9d-1f05-48ad-b569-30c2e7448a16", "identification_plate_number": 52460, "owner_full_name": "ABEL TIMCKE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "9005 WEST COAST ROAD 1", "city": "SOOKE", "legal_lot": "13", "legal_plan": "VIP87612", "legal_district_lot": "1", "legal_block": " ", "legal_section": "23", "legal_township": " ", "legal_range": " ", "land_district": "42", "legal_pid": "128140133", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-17", "construction_end_date": "2017-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.250000", "longitude": "-122.540000", "ground_elevation": "67.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "84.00", "finished_well_depth": "81.00", "final_casing_stick_up": "16.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "44.00", "well_yield": "10.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5359701, "utm_easting": 436350, "utm_accuracy_code": "H", "bcgs_id": 2495, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113305, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:32Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "5b67f9d7-c210-43a9-af83-8b90cc26b5b2", "identification_plate_number": 52462, "owner_full_name": "GIFFARD GOREISR", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2520 SHAWNIGAN LAKE ROAD 1", "city": "SHAWNIGAN LAKE", "legal_lot": "11", "legal_plan": "VIP6068", "legal_district_lot": "188", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "105912971", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-11", "construction_end_date": "2017-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.590000", "ground_elevation": "435.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "200.00", "finished_well_depth": "200.00", "final_casing_stick_up": "16.000", "bedrock_depth": "82.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "40.00", "well_yield": "2.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5388047, "utm_easting": 453940, "utm_accuracy_code": "H", "bcgs_id": 2678, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113306, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:52:48Z", "update_user": "WELLS", "update_date": "2017-10-23T16:33:21Z", "well_guid": "dbf99e92-0c9f-40b3-8ce2-1f36236e4552", "identification_plate_number": 52457, "owner_full_name": "CONSUELA JUPPE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "158 OKOTOKS ROAD 1", "city": "MALAHAT", "legal_lot": "1A", "legal_plan": "VIP75519", "legal_district_lot": "1138&149", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": "29", "legal_pid": "125698630", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-18", "construction_end_date": "2017-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.290000", "longitude": "-122.530000", "ground_elevation": "849.00", "ground_elevation_method": "GPS", "drilling_method": "AIR_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "17.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "1.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "240.00", "finished_well_depth": "240.00", "final_casing_stick_up": "16.000", "bedrock_depth": "5.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "150.00", "well_yield": "4.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "STEEL, WELDED", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5376427, "utm_easting": 458357, "utm_accuracy_code": "H", "bcgs_id": 2606, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113307, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T20:43:30Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "8d63adcb-04f8-4d40-9105-266c3bfa86a8", "identification_plate_number": 52472, "owner_full_name": "HILDA PURSHOUSE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": " INDIAN ROAD 1", "city": "LAKE COWICHAN", "legal_lot": "18", "legal_plan": "1750", "legal_district_lot": "1", "legal_block": " ", "legal_section": "5", "legal_township": " ", "legal_range": " ", "land_district": "47", "legal_pid": "106915019", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-14", "construction_end_date": "2017-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.240000", "longitude": "-122.540000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "19.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "362.00", "finished_well_depth": "362.00", "final_casing_stick_up": "30.000", "bedrock_depth": "11.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.30", "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5409109, "utm_easting": 421534, "utm_accuracy_code": "H", "bcgs_id": 3123, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113308, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "5596f882-7455-4ef5-b2c7-84f8940fc34b", "identification_plate_number": 52471, "owner_full_name": "GIACOPO DEBLASIO", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "2171 DICK AVENUE 1", "city": "NANAIMO", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "108565317", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-07-13", "construction_end_date": "2017-07-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "CLAMPED TO CASING", "latitude": "49.230000", "longitude": "-122.590000", "ground_elevation": "177.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "16.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "301.00", "finished_well_depth": "301.00", "final_casing_stick_up": "18.000", "bedrock_depth": "18.50", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "0.500", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "WELDED LID", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5438409, "utm_easting": 434703, "utm_accuracy_code": "H", "bcgs_id": 3712, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113309, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "WELLS", "update_date": "2017-09-07T20:18:07Z", "well_guid": "000d6549-b00c-4ad6-9e3d-3152e6bd4efe", "identification_plate_number": 52401, "owner_full_name": "BARTEL YOUNGHUSBAND", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": null, "intended_water_use": null, "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "1975 RENFREW ROAD 1", "city": "SHAWNIGAN LAKE", "legal_lot": "1", "legal_plan": "EPP8614", "legal_district_lot": " ", "legal_block": " ", "legal_section": "5", "legal_township": " ", "legal_range": "2", "land_district": "53", "legal_pid": "109475869", "well_location_description": "NOTHING ENTERED", "construction_start_date": "2017-05-23", "construction_end_date": "2017-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", "well_identification_plate_attached": "ON WELL CASING", "latitude": "49.220000", "longitude": "-122.540000", "ground_elevation": "476.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "UNCASD_HLE", "screen_type": "PIPE_SIZE", "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "501.00", "finished_well_depth": "501.00", "final_casing_stick_up": "14.000", "bedrock_depth": "4.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": "19.00", "well_yield": "1.000", "artesian_flow": null, "artesian_pressure": null, "well_cap_type": "HINGE + HASP", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "GPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5390220, "utm_easting": 452213, "utm_accuracy_code": "H", "bcgs_id": 2688, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113503, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "WELLS", "update_date": "2017-10-25T23:59:57Z", "well_guid": "fa6e9f23-c1e2-40e2-811f-ec86e6c5054a", "identification_plate_number": 42912, "owner_full_name": "ROI RESDALE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "WATR_SPPLY", "well_subclass": "5a313ffe-47e7-11e7-a919-92ebcb67fe33", "intended_water_use": "DOM", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "33080 CAMERON AVENUE 1", "city": "MISSION", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": " ", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", "construction_start_date": "2017-06-28", "construction_end_date": "2017-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "ecf5b80a-a304-4047-8c60-0ffe53192e82", "well_identification_plate_attached": "CASING STICK UP", "latitude": "49.280000", "longitude": "-122.560000", "ground_elevation": null, "ground_elevation_method": null, "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "BNTITE_CLY", "surface_seal_length": "18.00", "surface_seal_thickness": "2.00", "surface_seal_method": "POURED", "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "AIR_LIFT", "development_hours": "3.00", "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "197.00", "finished_well_depth": "197.00", "final_casing_stick_up": "30.000", "bedrock_depth": "63.00", "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": "18.000", "artesian_flow": "3.00", "artesian_pressure": null, "well_cap_type": "STEEL", "well_disinfected": true, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": "USGPM", "diameter": " ", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": "10", "utm_northing": 5446983, "utm_easting": 550404, "utm_accuracy_code": "H", "bcgs_id": 4269, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113552, "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "WELLS", "update_date": "2017-12-22T22:58:27Z", "well_guid": "f7895cb3-f4a5-4d2a-8749-22bca8463fae", "identification_plate_number": 20861, "owner_full_name": "VALERIA MCELVOGUE", "owner_mailing_address": "", "owner_city": "UNKNOWN", "owner_province_state": "BC", "owner_postal_code": "", "well_class": "MONITOR", "well_subclass": "930540ee-4802-11e7-a919-92ebcb67fe33", "intended_water_use": "OBS", "well_status": "NEW", "licenced_status": "UNLICENSED", "street_address": "5205 168 Street 1", "city": "Surrey", "legal_lot": "1", "legal_plan": " ", "legal_district_lot": "1", "legal_block": " ", "legal_section": " ", "legal_township": " ", "legal_range": " ", "land_district": null, "legal_pid": "113008404", "well_location_description": "Well is located on west side of Mound Farm Park near gravel entrance off of 168 Street (south of the gravel road).", "construction_start_date": "2017-08-21", "construction_end_date": "2017-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "692e4a55-74a4-42ae-9e3c-8f518f383c14", "well_identification_plate_attached": "Steel stick-up casing", "latitude": "49.280000", "longitude": "-122.520000", "ground_elevation": "4.00", "ground_elevation_method": "GPS", "drilling_method": "DUO_ROTARY", "other_drilling_method": null, "well_orientation": true, "surface_seal_material": "GRT_STLCSG", "surface_seal_length": "15.00", "surface_seal_thickness": "2.00", "surface_seal_method": "PUMPED", "backfill_type": "Pea gravel", "backfill_depth": "280.00", "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": "SCREEN", "screen_type": "PIPE_SIZE", "screen_material": "PLASTIC", "other_screen_material": "", "screen_opening": "SLOTTED", "screen_bottom": "PLUG", "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": "OTHER", "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": "296.00", "finished_well_depth": "248.00", "final_casing_stick_up": "51.000", "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": "0.26", "artesian_pressure": "11.00", "well_cap_type": "Locked well cabinet", "well_disinfected": false, "comments": "12\" Surface casing removed.", "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": " ", "observation_well_number": "461", "observation_well_status": "Active", "ems": "E309946", "utm_zone_code": "10", "utm_northing": 5438210, "utm_easting": 517814, "utm_accuracy_code": "H", "bcgs_id": 3815, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113553, "fields": {"create_user": "", "create_date": "2018-09-26T21:50:25.499Z", "update_user": null, "update_date": "2018-09-26T21:50:25.672Z", "well_guid": "06d48127-e5f9-436d-a0ef-13c8573457c3", "identification_plate_number": null, "owner_full_name": "Holly Homeowner", "owner_mailing_address": "321 Main Street", "owner_city": "Anytown", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "", "city": "", "legal_lot": "", "legal_plan": "", "legal_district_lot": "", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": null, "well_location_description": "", "construction_start_date": "2018-07-01", "construction_end_date": "2018-07-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": null, "longitude": null, "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113554, "fields": {"create_user": "", "create_date": "2018-09-26T21:50:26.116Z", "update_user": null, "update_date": "2018-09-26T21:50:26.567Z", "well_guid": "8c1bf4c2-8cae-4f10-a91e-5dcc5e2af132", "identification_plate_number": null, "owner_full_name": "Bob", "owner_mailing_address": "123 Place", "owner_city": "Victoria", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "", "city": "", "legal_lot": "", "legal_plan": "", "legal_district_lot": "", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": null, "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": null, "longitude": null, "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113555, "fields": {"create_user": "", "create_date": "2018-09-26T21:50:26.988Z", "update_user": null, "update_date": "2018-09-26T21:50:27.265Z", "well_guid": "384f876b-3c39-43da-b071-134fd82a5358", "identification_plate_number": null, "owner_full_name": "Bob", "owner_mailing_address": "123 Place", "owner_city": "Victoria", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "", "city": "", "legal_lot": "", "legal_plan": "", "legal_district_lot": "", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": null, "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": null, "longitude": null, "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": "1.00", "liner_thickness": "2.000", "liner_from": "0.00", "liner_to": "3.00", "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113556, "fields": {"create_user": "", "create_date": "2018-09-26T21:50:27.657Z", "update_user": null, "update_date": "2018-09-26T21:50:28.170Z", "well_guid": "814473db-cc31-4818-a2f1-4e840c7912d1", "identification_plate_number": null, "owner_full_name": "Bob", "owner_mailing_address": "123 Place", "owner_city": "Victoria", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "", "city": "", "legal_lot": "", "legal_plan": "", "legal_district_lot": "", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": null, "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": null, "longitude": null, "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": "PVC", "liner_diameter": "1.00", "liner_thickness": "2.000", "liner_from": "0.00", "liner_to": "3.00", "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.well", "pk": 113557, "fields": {"create_user": "", "create_date": "2018-09-26T21:50:28.593Z", "update_user": null, "update_date": "2018-09-26T21:50:31.085Z", "well_guid": "6a782005-6baf-4d6a-8731-7ae6b25ecdb6", "identification_plate_number": null, "owner_full_name": "Bob", "owner_mailing_address": "123 Place", "owner_city": "Victoria", "owner_province_state": "BC", "owner_postal_code": "", "well_class": null, "well_subclass": null, "intended_water_use": null, "well_status": null, "licenced_status": null, "street_address": "", "city": "", "legal_lot": "", "legal_plan": "", "legal_district_lot": "", "legal_block": "", "legal_section": "", "legal_township": "", "legal_range": "", "land_district": null, "legal_pid": null, "well_location_description": "", "construction_start_date": null, "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, "well_identification_plate_attached": null, "latitude": null, "longitude": null, "ground_elevation": null, "ground_elevation_method": null, "drilling_method": null, "other_drilling_method": null, "well_orientation": true, "surface_seal_material": null, "surface_seal_length": null, "surface_seal_thickness": null, "surface_seal_method": null, "backfill_type": null, "backfill_depth": null, "liner_material": null, "liner_diameter": null, "liner_thickness": null, "liner_from": null, "liner_to": null, "screen_intake_method": null, "screen_type": null, "screen_material": null, "other_screen_material": "", "screen_opening": null, "screen_bottom": null, "other_screen_bottom": "", "filter_pack_from": null, "filter_pack_to": null, "filter_pack_thickness": null, "filter_pack_material": null, "filter_pack_material_size": null, "development_method": null, "development_hours": null, "development_notes": "", "water_quality_colour": "", "water_quality_odour": "", "total_depth_drilled": null, "finished_well_depth": null, "final_casing_stick_up": null, "bedrock_depth": null, "water_supply_system_name": null, "water_supply_system_well_name": null, "static_water_level": null, "well_yield": null, "artesian_flow": null, "artesian_pressure": null, "well_cap_type": null, "well_disinfected": false, "comments": null, "alternative_specs_submitted": false, "well_yield_unit": null, "diameter": "", "observation_well_number": null, "observation_well_status": null, "ems": null, "utm_zone_code": null, "utm_northing": null, "utm_easting": null, "utm_accuracy_code": null, "bcgs_id": null, "decommission_reason": null, "decommission_method": null, "sealant_material": null, "backfill_material": null, "decommission_details": null, "ems_id": "", "aquifer": null, "water_quality_characteristics": []}}, {"model": "wells.perforation", "pk": "0141671d-c2b9-485b-860e-8398d01cdc02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": null, "update_date": null, "well_tag_number": 113300, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "27.00", "liner_to": "600.00", "liner_perforation_from": "560.00", "liner_perforation_to": "600.00"}}, {"model": "wells.perforation", "pk": "02d71388-2256-4de0-ae13-4c3247f42ab6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": null, "update_date": null, "well_tag_number": 112921, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "8.00", "liner_to": "125.00", "liner_perforation_from": "125.00", "liner_perforation_to": "155.00"}}, {"model": "wells.perforation", "pk": "03b72098-b6a7-424f-9f3a-1d795c84d6a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:07Z", "update_user": null, "update_date": null, "well_tag_number": 112868, "liner_thickness": "0.248", "liner_diameter": "4.98", "liner_from": "15.00", "liner_to": "295.00", "liner_perforation_from": "275.00", "liner_perforation_to": "295.00"}}, {"model": "wells.perforation", "pk": "040e64cf-09f1-4dda-ad06-8f55d3f57e6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T22:11:12Z", "update_user": null, "update_date": null, "well_tag_number": 113040, "liner_thickness": null, "liner_diameter": null, "liner_from": null, "liner_to": null, "liner_perforation_from": "235.00", "liner_perforation_to": "255.00"}}, {"model": "wells.perforation", "pk": "07050a67-0712-45b0-ba8d-cdb81c212bfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": null, "update_date": null, "well_tag_number": 112550, "liner_thickness": "0.250", "liner_diameter": "8.00", "liner_from": "0.00", "liner_to": "220.00", "liner_perforation_from": "180.00", "liner_perforation_to": "220.00"}}, {"model": "wells.perforation", "pk": "07697639-f178-4e8a-9c6a-5e22a3dd938f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": null, "update_date": null, "well_tag_number": 112286, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "25.00", "liner_to": "182.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "0995e078-bab8-45d2-b00f-7afef6aca2ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": null, "update_date": null, "well_tag_number": 112573, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "240.00", "liner_perforation_from": "240.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "09b8b545-4720-483b-a4ee-5acc0acfb6a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": null, "update_date": null, "well_tag_number": 113085, "liner_thickness": null, "liner_diameter": "4.94", "liner_from": "90.00", "liner_to": "490.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "09dc90b7-937a-4c7d-b9e6-e658780af10f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:40Z", "update_user": null, "update_date": null, "well_tag_number": 112294, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "14.00", "liner_to": "103.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "0a2b2ef3-a1da-44ab-a6a5-c7ef101b2e38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-09-20T05:43:11Z", "well_tag_number": 111752, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "8.00", "liner_to": "280.00", "liner_perforation_from": "240.00", "liner_perforation_to": "280.00"}}, {"model": "wells.perforation", "pk": "0aa8f598-c9bb-4c00-9bce-111a8670bc32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:01:15Z", "update_user": null, "update_date": null, "well_tag_number": 112307, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "230.00", "liner_perforation_from": "170.00", "liner_perforation_to": "230.00"}}, {"model": "wells.perforation", "pk": "0ab02f33-4d78-4f0e-917f-9e7c0466949b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": null, "update_date": null, "well_tag_number": 113030, "liner_thickness": null, "liner_diameter": "4.94", "liner_from": "310.00", "liner_to": "470.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "0d4d8260-e046-4614-a616-2a58ec96e1e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": null, "update_date": null, "well_tag_number": 112374, "liner_thickness": "0.160", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "180.00", "liner_perforation_from": "160.00", "liner_perforation_to": "180.00"}}, {"model": "wells.perforation", "pk": "0f529d05-d470-45e8-8fe6-a13baff3593b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:45:45Z", "update_user": null, "update_date": null, "well_tag_number": 112353, "liner_thickness": null, "liner_diameter": null, "liner_from": "66.00", "liner_to": "235.00", "liner_perforation_from": "215.00", "liner_perforation_to": "235.00"}}, {"model": "wells.perforation", "pk": "1182833a-dc29-407c-bc67-485ac9b3f906", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:26:43Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-27T18:30:03Z", "well_tag_number": 112693, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "15.00", "liner_to": "202.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "132e6279-a6de-45c4-96bc-ca771fd48ba1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": null, "update_date": null, "well_tag_number": 112476, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "18.00", "liner_to": "420.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "136d47cb-c681-4e85-b2e6-b3c7112a4c38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": null, "update_date": null, "well_tag_number": 112581, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "440.00", "liner_perforation_from": "340.00", "liner_perforation_to": "440.00"}}, {"model": "wells.perforation", "pk": "1461ddc5-4666-49ba-8f8b-88b063c5a038", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:37Z", "update_user": null, "update_date": null, "well_tag_number": 112857, "liner_thickness": "0.248", "liner_diameter": "4.98", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "1538b4e1-8bbf-44bd-96b9-b197b2b0d984", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": null, "update_date": null, "well_tag_number": 112937, "liner_thickness": "0.160", "liner_diameter": "4.50", "liner_from": "38.00", "liner_to": "175.00", "liner_perforation_from": "120.00", "liner_perforation_to": "175.00"}}, {"model": "wells.perforation", "pk": "16dba5fe-5a3b-4298-8536-0d2a7bcbebfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": null, "update_date": null, "well_tag_number": 112681, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "143.00", "liner_to": "162.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "19a22d13-c2e4-40b9-939d-0802cd95cf9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": null, "update_date": null, "well_tag_number": 113302, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "360.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "1a32ef3c-e53f-4fc9-bc25-1246088a98da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T23:06:56Z", "update_user": null, "update_date": null, "well_tag_number": 112672, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "80.00", "liner_perforation_from": "50.00", "liner_perforation_to": "75.00"}}, {"model": "wells.perforation", "pk": "1b68566a-a03e-48d9-ab32-0bdbcce1bc0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:39Z", "update_user": null, "update_date": null, "well_tag_number": 112686, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "200.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "1d62b8f1-171f-470a-adb1-34fbc4e3151b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": null, "update_date": null, "well_tag_number": 112748, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "10.00", "liner_to": "500.00", "liner_perforation_from": "340.00", "liner_perforation_to": "500.00"}}, {"model": "wells.perforation", "pk": "1f8ac6bc-8236-4dce-aca1-e35e6b4a7832", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-04T04:14:07Z", "well_tag_number": 112238, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "3.00", "liner_to": "310.00", "liner_perforation_from": "264.00", "liner_perforation_to": "310.00"}}, {"model": "wells.perforation", "pk": "202ee625-7b2f-42cf-8a67-3b241f1b24f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T16:11:27Z", "update_user": null, "update_date": null, "well_tag_number": 112519, "liner_thickness": "80.000", "liner_diameter": "5.00", "liner_from": "0.00", "liner_to": "683.00", "liner_perforation_from": "613.00", "liner_perforation_to": "673.00"}}, {"model": "wells.perforation", "pk": "20f5e01d-d263-4176-b787-8589b0ccf0ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": null, "update_date": null, "well_tag_number": 112675, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "16.00", "liner_to": "535.00", "liner_perforation_from": "390.00", "liner_perforation_to": "530.00"}}, {"model": "wells.perforation", "pk": "24b75325-a126-4621-808d-0f993877399f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": null, "update_date": null, "well_tag_number": 113503, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "17.00", "liner_to": "157.00", "liner_perforation_from": "157.00", "liner_perforation_to": "197.00"}}, {"model": "wells.perforation", "pk": "2597639c-1ed2-47f5-84e5-e6512555f10c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": null, "update_date": null, "well_tag_number": 112823, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "0.00", "liner_to": "757.00", "liner_perforation_from": "757.00", "liner_perforation_to": "817.00"}}, {"model": "wells.perforation", "pk": "2aea3c0f-8691-4137-8a0f-e1b7d31071e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": null, "update_date": null, "well_tag_number": 112242, "liner_thickness": "0.238", "liner_diameter": "4.50", "liner_from": "16.00", "liner_to": "88.00", "liner_perforation_from": "76.00", "liner_perforation_to": "88.00"}}, {"model": "wells.perforation", "pk": "2bd739eb-7dbd-428b-902b-10c3f8e71286", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": null, "update_date": null, "well_tag_number": 112373, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "10.00", "liner_to": "375.00", "liner_perforation_from": "355.00", "liner_perforation_to": "375.00"}}, {"model": "wells.perforation", "pk": "2d69557d-b507-4f26-bc55-b0bf25977afb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:07:36Z", "update_user": null, "update_date": null, "well_tag_number": 112931, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "35.00", "liner_to": "175.00", "liner_perforation_from": "95.00", "liner_perforation_to": "175.00"}}, {"model": "wells.perforation", "pk": "2d9fe126-c98d-42b5-b081-6adb6194aca3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:37:50Z", "update_user": null, "update_date": null, "well_tag_number": 112247, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "35.00", "liner_to": "75.00", "liner_perforation_from": "55.00", "liner_perforation_to": "75.00"}}, {"model": "wells.perforation", "pk": "2de625e7-70f4-4760-bd29-4dc5090b3bed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": null, "update_date": null, "well_tag_number": 112688, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "12.00", "liner_to": "303.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "2fa0569e-f91c-4851-bef5-9d7ce5490fb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:55Z", "update_user": null, "update_date": null, "well_tag_number": 113105, "liner_thickness": "0.125", "liner_diameter": "4.00", "liner_from": "15.00", "liner_to": "215.00", "liner_perforation_from": "205.00", "liner_perforation_to": "215.00"}}, {"model": "wells.perforation", "pk": "316b1278-9ae5-4a54-bde4-dd27e45572ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": null, "update_date": null, "well_tag_number": 112325, "liner_thickness": "0.248", "liner_diameter": "4.98", "liner_from": "19.00", "liner_to": "359.00", "liner_perforation_from": "339.00", "liner_perforation_to": "359.00"}}, {"model": "wells.perforation", "pk": "338a7cd6-8e93-416d-9f5f-6eefed235f5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:57:03Z", "update_user": null, "update_date": null, "well_tag_number": 113293, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "400.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "33b35ea1-741c-4465-8d2d-3d72d0ddca40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": null, "update_date": null, "well_tag_number": 112701, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "12.00", "liner_to": "143.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "3ae785a9-4895-4e1f-9c4a-2d8d611fd45e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": null, "update_date": null, "well_tag_number": 112577, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "30.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "3ba709e3-2562-4b1d-ab4e-a91a975870c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": null, "update_date": null, "well_tag_number": 112565, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "80.00", "liner_to": "120.00", "liner_perforation_from": "80.00", "liner_perforation_to": "120.00"}}, {"model": "wells.perforation", "pk": "3be43561-2b2c-4516-8a1f-3f42687723df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": null, "update_date": null, "well_tag_number": 112335, "liner_thickness": "0.248", "liner_diameter": "4.94", "liner_from": "15.00", "liner_to": "175.00", "liner_perforation_from": "155.00", "liner_perforation_to": "175.00"}}, {"model": "wells.perforation", "pk": "3bfae403-c9f1-47a0-900b-3354f5705069", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": null, "update_date": null, "well_tag_number": 112477, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "140.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "3c085ab9-82f5-4b37-bc57-755a4b3c5f91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": null, "update_date": null, "well_tag_number": 112571, "liner_thickness": null, "liner_diameter": "4.94", "liner_from": "15.00", "liner_to": "95.00", "liner_perforation_from": "75.00", "liner_perforation_to": "95.00"}}, {"model": "wells.perforation", "pk": "3d185e14-b746-4a2e-a342-ee8b20f78360", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:40:02Z", "update_user": null, "update_date": null, "well_tag_number": 112298, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "63.00", "liner_to": "180.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "3dde1b26-d0ac-4e69-a1c4-24c3e4a3e3dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": null, "update_date": null, "well_tag_number": 112623, "liner_thickness": null, "liner_diameter": "6.00", "liner_from": "0.00", "liner_to": "278.00", "liner_perforation_from": "278.00", "liner_perforation_to": "318.00"}}, {"model": "wells.perforation", "pk": "3e469f23-4a13-40b3-b379-c5041d922d7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": null, "update_date": null, "well_tag_number": 102666, "liner_thickness": "0.248", "liner_diameter": "5.00", "liner_from": "16.00", "liner_to": "236.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "3e8d2b96-15fb-4a38-956c-082a29774a08", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": null, "update_date": null, "well_tag_number": 112549, "liner_thickness": "0.188", "liner_diameter": "6.00", "liner_from": "0.00", "liner_to": "640.00", "liner_perforation_from": "540.00", "liner_perforation_to": "640.00"}}, {"model": "wells.perforation", "pk": "3efc2467-d3dc-4631-84c2-5ec3a5ed93bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:27:24Z", "update_user": null, "update_date": null, "well_tag_number": 112649, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "8.00", "liner_to": "540.00", "liner_perforation_from": "500.00", "liner_perforation_to": "540.00"}}, {"model": "wells.perforation", "pk": "3f55650f-a282-45a4-b9ec-87ec6cd6db0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:19Z", "update_user": null, "update_date": null, "well_tag_number": 112774, "liner_thickness": "3.000", "liner_diameter": "48.00", "liner_from": "1.00", "liner_to": "15.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "40dbc9da-296c-4f17-93ce-67d58c05ee42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": null, "update_date": null, "well_tag_number": 112461, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "80.00", "liner_to": "400.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "4142c8eb-aa89-4e98-8e7b-570182b60f5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:30:45Z", "update_user": null, "update_date": null, "well_tag_number": 112934, "liner_thickness": null, "liner_diameter": "5.00", "liner_from": "10.00", "liner_to": "105.00", "liner_perforation_from": "35.00", "liner_perforation_to": "105.00"}}, {"model": "wells.perforation", "pk": "420ac7df-d463-4cf9-9159-205af20d4a5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:32Z", "update_user": null, "update_date": null, "well_tag_number": 112861, "liner_thickness": null, "liner_diameter": "2.00", "liner_from": "2.00", "liner_to": "61.00", "liner_perforation_from": "30.00", "liner_perforation_to": "61.00"}}, {"model": "wells.perforation", "pk": "4562b244-8525-478f-b983-bb125a472e88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": null, "update_date": null, "well_tag_number": 112858, "liner_thickness": null, "liner_diameter": "7.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "48024f39-4695-47f0-83fb-6466b1316bb6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:32Z", "update_user": null, "update_date": null, "well_tag_number": 112727, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "11.00", "liner_to": "260.00", "liner_perforation_from": "180.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "48b72e61-102b-45e6-95d3-cd88fd0f2597", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-17T22:04:57Z", "well_tag_number": 112625, "liner_thickness": "0.238", "liner_diameter": "4.50", "liner_from": "17.00", "liner_to": "170.00", "liner_perforation_from": "117.00", "liner_perforation_to": "170.00"}}, {"model": "wells.perforation", "pk": "48eb4402-a166-410e-94d9-8057a5565f3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:45:42Z", "update_user": null, "update_date": null, "well_tag_number": 112250, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "100.00", "liner_to": "140.00", "liner_perforation_from": "120.00", "liner_perforation_to": "140.00"}}, {"model": "wells.perforation", "pk": "49e6fdd1-7f60-4c6a-8c71-2e90d35387bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": null, "update_date": null, "well_tag_number": 112241, "liner_thickness": "0.238", "liner_diameter": "4.50", "liner_from": "85.00", "liner_to": "145.00", "liner_perforation_from": "125.00", "liner_perforation_to": "145.00"}}, {"model": "wells.perforation", "pk": "4a27c719-411b-4134-9b65-019f329e93e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": null, "update_date": null, "well_tag_number": 113028, "liner_thickness": null, "liner_diameter": "1.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "4aa60f3f-369c-4e12-ae85-f95dd514b680", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": null, "update_date": null, "well_tag_number": 113301, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "340.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "4d563db1-dfd5-4c11-95ec-31de05088961", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T08:14:29Z", "update_user": null, "update_date": null, "well_tag_number": 112252, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "13.00", "liner_to": "116.50", "liner_perforation_from": "93.00", "liner_perforation_to": "113.00"}}, {"model": "wells.perforation", "pk": "4d754b4b-d548-433b-a2f3-60a1e5059d8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:32:10Z", "update_user": null, "update_date": null, "well_tag_number": 112683, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "126.00", "liner_to": "303.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "4f90e832-a190-4557-9612-ac14e701b118", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": null, "update_date": null, "well_tag_number": 112993, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "52fc7c09-4107-423c-88f3-33edb1eeb27c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": null, "update_date": null, "well_tag_number": 112444, "liner_thickness": null, "liner_diameter": null, "liner_from": "10.00", "liner_to": "360.00", "liner_perforation_from": "10.00", "liner_perforation_to": "360.00"}}, {"model": "wells.perforation", "pk": "53e08829-e61d-419d-9656-bc360a6c0f48", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:14:53Z", "update_user": null, "update_date": null, "well_tag_number": 112690, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "10.00", "liner_to": "158.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "53f63b16-5286-440b-bdbd-53d9e66bbebd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": null, "update_date": null, "well_tag_number": 112391, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "18.00", "liner_to": "238.00", "liner_perforation_from": "238.00", "liner_perforation_to": "258.00"}}, {"model": "wells.perforation", "pk": "547fe7f0-2639-49a9-a554-ba072e74b067", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": null, "update_date": null, "well_tag_number": 112320, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "190.00", "liner_perforation_from": "160.00", "liner_perforation_to": "180.00"}}, {"model": "wells.perforation", "pk": "54e66164-60ee-4570-9496-1c815b3b75e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": null, "update_date": null, "well_tag_number": 113188, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "15.00", "liner_to": "155.00", "liner_perforation_from": "115.00", "liner_perforation_to": "155.00"}}, {"model": "wells.perforation", "pk": "56cf71ed-528c-4dce-814a-57c61fa86ca5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:19Z", "update_user": null, "update_date": null, "well_tag_number": 112285, "liner_thickness": "1.880", "liner_diameter": "4.00", "liner_from": "19.00", "liner_to": "79.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "56f18190-5f25-4496-a529-a775d69685ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": null, "update_date": null, "well_tag_number": 112707, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "9.00", "liner_to": "260.00", "liner_perforation_from": "160.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "572102ec-9075-41ce-9f0e-e703fc022ea8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:29:36Z", "update_user": null, "update_date": null, "well_tag_number": 112987, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "55.00", "liner_to": "135.00", "liner_perforation_from": "115.00", "liner_perforation_to": "135.00"}}, {"model": "wells.perforation", "pk": "57d36aec-fa3c-44d4-9984-137263fdef3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": null, "update_date": null, "well_tag_number": 112243, "liner_thickness": "0.238", "liner_diameter": "4.50", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "57ed2446-0c69-4327-868e-a00a3b98a335", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:33:32Z", "update_user": null, "update_date": null, "well_tag_number": 112703, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "12.00", "liner_to": "203.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "5b89af7c-ab1c-4954-a77b-2fa845560937", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": null, "update_date": null, "well_tag_number": 112583, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "0.00", "liner_to": "320.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "5ef31c91-6b65-4fd6-b2e3-8e807e9a2b1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": null, "update_date": null, "well_tag_number": 112860, "liner_thickness": "0.248", "liner_diameter": "4.94", "liner_from": "1.00", "liner_to": "341.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "613159d6-3782-4b14-8e84-f148366cb177", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": null, "update_date": null, "well_tag_number": 112904, "liner_thickness": null, "liner_diameter": "1.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "61e78c34-f48a-412c-bd9d-13d47213c223", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:30:53Z", "update_user": null, "update_date": null, "well_tag_number": 107072, "liner_thickness": "0.250", "liner_diameter": "4.94", "liner_from": "113.00", "liner_to": "393.00", "liner_perforation_from": "293.00", "liner_perforation_to": "393.00"}}, {"model": "wells.perforation", "pk": "63643598-6020-43c7-b89b-f321ad809c1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": null, "update_date": null, "well_tag_number": 112709, "liner_thickness": "6.000", "liner_diameter": null, "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "6381e26e-f68b-4681-8ddb-d5d164c618d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": null, "update_date": null, "well_tag_number": 112305, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "63.00", "liner_to": "142.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "6579f837-3cec-4da0-8e2b-52928532896b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": null, "update_date": null, "well_tag_number": 112303, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "24.00", "liner_to": "162.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "666531e8-13fe-4c7b-b179-b39ebc7c3c9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": null, "update_date": null, "well_tag_number": 113182, "liner_thickness": "0.125", "liner_diameter": "4.00", "liner_from": "150.00", "liner_to": "255.00", "liner_perforation_from": "245.00", "liner_perforation_to": "255.00"}}, {"model": "wells.perforation", "pk": "66fe89a9-259f-4858-8089-a65750fff824", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": null, "update_date": null, "well_tag_number": 112947, "liner_thickness": null, "liner_diameter": null, "liner_from": null, "liner_to": null, "liner_perforation_from": "13.00", "liner_perforation_to": "17.00"}}, {"model": "wells.perforation", "pk": "688ba7b2-2a94-4d78-b604-393395a82539", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:51:36Z", "update_user": null, "update_date": null, "well_tag_number": 112244, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "40.00", "liner_perforation_from": "10.00", "liner_perforation_to": "40.00"}}, {"model": "wells.perforation", "pk": "68db3dca-bdd4-439a-ad7f-eeb9a9992e9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": null, "update_date": null, "well_tag_number": 112240, "liner_thickness": "0.238", "liner_diameter": "4.50", "liner_from": "30.00", "liner_to": "150.00", "liner_perforation_from": "130.00", "liner_perforation_to": "150.00"}}, {"model": "wells.perforation", "pk": "6bbee55c-7d3a-49c1-946a-fb5b72151494", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": null, "update_date": null, "well_tag_number": 112684, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "22.00", "liner_to": "140.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "6c3f2004-87ce-4065-95e5-2bc83230ca06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": null, "update_date": null, "well_tag_number": 112412, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "215.00", "liner_perforation_from": "20.00", "liner_perforation_to": "215.00"}}, {"model": "wells.perforation", "pk": "6c61d994-5ea6-4910-90e3-b46f6a7fad33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": null, "update_date": null, "well_tag_number": 112337, "liner_thickness": "0.248", "liner_diameter": "4.94", "liner_from": "17.00", "liner_to": "351.00", "liner_perforation_from": "297.00", "liner_perforation_to": "351.00"}}, {"model": "wells.perforation", "pk": "6f1d6d02-981e-47ae-8071-1c43ac0ca25a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:02:02Z", "update_user": null, "update_date": null, "well_tag_number": 112700, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "27.00", "liner_to": "283.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "6f98eb0f-b1e2-47c3-8224-082f097a15b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": null, "update_date": null, "well_tag_number": 112399, "liner_thickness": null, "liner_diameter": "0.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "725f26f9-1ed8-4aa7-a6fe-6eba205e57b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": null, "update_date": null, "well_tag_number": 112705, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "25.00", "liner_to": "182.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "7481e6c5-1f5c-4e51-9dd6-fd5d82f953c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": null, "update_date": null, "well_tag_number": 112420, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "10.00", "liner_to": "96.00", "liner_perforation_from": "10.00", "liner_perforation_to": "96.00"}}, {"model": "wells.perforation", "pk": "757adbba-ec44-4359-9dd8-aff08c481537", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:29:01Z", "update_user": null, "update_date": null, "well_tag_number": 112291, "liner_thickness": "0.190", "liner_diameter": "4.00", "liner_from": "45.00", "liner_to": "103.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "769036f4-5611-499f-8ebe-bd5cf2a18e3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:01:51Z", "update_user": null, "update_date": null, "well_tag_number": 112350, "liner_thickness": null, "liner_diameter": null, "liner_from": "20.00", "liner_to": "196.00", "liner_perforation_from": "166.00", "liner_perforation_to": "196.00"}}, {"model": "wells.perforation", "pk": "77aa056e-6d9b-4785-97af-474b519df17c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:28:22Z", "well_tag_number": 112464, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "120.00", "liner_to": "520.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "7a273086-87aa-4497-af08-6dec89d55594", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": null, "update_date": null, "well_tag_number": 112226, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "0.00", "liner_to": "447.00", "liner_perforation_from": "310.00", "liner_perforation_to": "330.00"}}, {"model": "wells.perforation", "pk": "7bd759ca-9c2d-4107-b8fb-7c9ad41ac29d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": null, "update_date": null, "well_tag_number": 112295, "liner_thickness": "0.188", "liner_diameter": null, "liner_from": "10.00", "liner_to": "281.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "7bec999f-0961-4054-a00f-eb345cb87ee8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:04:38Z", "update_user": null, "update_date": null, "well_tag_number": 112920, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "4.00", "liner_to": "135.00", "liner_perforation_from": "135.00", "liner_perforation_to": "175.00"}}, {"model": "wells.perforation", "pk": "7bf2c3d0-92a2-4558-a794-bc9977d03788", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": null, "update_date": null, "well_tag_number": 112392, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "18.00", "liner_to": "358.00", "liner_perforation_from": "358.00", "liner_perforation_to": "398.00"}}, {"model": "wells.perforation", "pk": "7cca6b65-954a-4da7-a7dc-c8634389422b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:54Z", "update_user": null, "update_date": null, "well_tag_number": 113004, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "23.00", "liner_to": "283.00", "liner_perforation_from": "50.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "7d4a1939-e26c-41f8-a833-e92d51a94c93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": null, "update_date": null, "well_tag_number": 112852, "liner_thickness": "0.248", "liner_diameter": "4.94", "liner_from": "3.00", "liner_to": "623.00", "liner_perforation_from": "583.00", "liner_perforation_to": "623.00"}}, {"model": "wells.perforation", "pk": "7d8126b1-7574-4ebf-aaca-0c399efbd630", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": null, "update_date": null, "well_tag_number": 112833, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "656.00", "liner_perforation_from": "300.00", "liner_perforation_to": "656.00"}}, {"model": "wells.perforation", "pk": "7d91ff22-d65a-47c2-a7a7-531c9ad74266", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": null, "update_date": null, "well_tag_number": 112806, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "3.00", "liner_to": "205.00", "liner_perforation_from": "100.00", "liner_perforation_to": "200.00"}}, {"model": "wells.perforation", "pk": "7f53a136-4725-41af-938a-e7d89d2f28ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": null, "update_date": null, "well_tag_number": 112308, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "23.00", "liner_to": "123.00", "liner_perforation_from": "83.00", "liner_perforation_to": "123.00"}}, {"model": "wells.perforation", "pk": "7f579876-551a-4670-94ff-d8d5b80c5880", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:53:39Z", "well_tag_number": 112820, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "15.00", "liner_to": "415.00", "liner_perforation_from": "395.00", "liner_perforation_to": "415.00"}}, {"model": "wells.perforation", "pk": "7f687bd6-18f0-4486-836e-a3ccef9717f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:53:24Z", "update_user": null, "update_date": null, "well_tag_number": 112877, "liner_thickness": "4.000", "liner_diameter": null, "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "80fa40ba-e1f6-4122-8e6e-3d61e1a703a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:25:26Z", "update_user": null, "update_date": null, "well_tag_number": 113148, "liner_thickness": null, "liner_diameter": "3.00", "liner_from": "1.50", "liner_to": "287.00", "liner_perforation_from": "50.00", "liner_perforation_to": "287.00"}}, {"model": "wells.perforation", "pk": "82b8a513-aac4-494a-93e8-7eee11789b79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T18:00:21Z", "update_user": null, "update_date": null, "well_tag_number": 113244, "liner_thickness": null, "liner_diameter": "3.00", "liner_from": "2.00", "liner_to": "284.00", "liner_perforation_from": "40.00", "liner_perforation_to": "284.00"}}, {"model": "wells.perforation", "pk": "82d17a10-b986-47e9-8a4d-273bd3fa9b99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": null, "update_date": null, "well_tag_number": 112848, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "180.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "82dda0f7-e884-47b6-bed8-b0cb5e2bd96f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": null, "update_date": null, "well_tag_number": 112359, "liner_thickness": "0.160", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "160.00", "liner_perforation_from": "140.00", "liner_perforation_to": "160.00"}}, {"model": "wells.perforation", "pk": "83d669b8-ab84-4976-a751-956b7020540b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": null, "update_date": null, "well_tag_number": 113290, "liner_thickness": "0.160", "liner_diameter": "4.00", "liner_from": "8.50", "liner_to": "457.50", "liner_perforation_from": "440.00", "liner_perforation_to": "460.00"}}, {"model": "wells.perforation", "pk": "8615938b-2ba8-4b23-9425-576e71556582", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": null, "update_date": null, "well_tag_number": 112598, "liner_thickness": null, "liner_diameter": "2.00", "liner_from": "0.00", "liner_to": "109.00", "liner_perforation_from": "109.00", "liner_perforation_to": "114.00"}}, {"model": "wells.perforation", "pk": "86ffca15-681b-49ef-887a-415c491ee5ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:58:32Z", "update_user": null, "update_date": null, "well_tag_number": 112309, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "200.00", "liner_perforation_from": "140.00", "liner_perforation_to": "200.00"}}, {"model": "wells.perforation", "pk": "8c50a9ec-0c46-49c5-be19-89583280eaa4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": null, "update_date": null, "well_tag_number": 112706, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "66.00", "liner_to": "283.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "8fa4e073-181d-4db6-97bf-0a4192be9721", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:31:58Z", "update_user": null, "update_date": null, "well_tag_number": 112945, "liner_thickness": "0.250", "liner_diameter": "4.94", "liner_from": "70.00", "liner_to": "235.00", "liner_perforation_from": "155.00", "liner_perforation_to": "235.00"}}, {"model": "wells.perforation", "pk": "9009526b-ffbe-4cb9-a8bc-898debe1d54a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": null, "update_date": null, "well_tag_number": 112994, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "260.00", "liner_perforation_from": "200.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "919172d3-dc0e-4a43-bb94-cde6f29a8875", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": null, "update_date": null, "well_tag_number": 112456, "liner_thickness": null, "liner_diameter": null, "liner_from": "20.00", "liner_to": "260.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "921578e9-5b89-4026-97b5-42ed6581f0d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:34:02Z", "update_user": null, "update_date": null, "well_tag_number": 113080, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "10.00", "liner_to": "330.00", "liner_perforation_from": "210.00", "liner_perforation_to": "310.00"}}, {"model": "wells.perforation", "pk": "9243495e-ec12-4f3c-b69b-dc71a8f2b829", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": null, "update_date": null, "well_tag_number": 113289, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "380.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "94391020-95e4-4ad0-b78d-a2aa548cd221", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": null, "update_date": null, "well_tag_number": 112899, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "6.00", "liner_to": "260.00", "liner_perforation_from": "220.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "943c29f3-e871-41e0-a114-2897d04c1114", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": null, "update_date": null, "well_tag_number": 112689, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "25.00", "liner_to": "242.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "95b41177-d8e2-4769-9be1-4726185770dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": null, "update_date": null, "well_tag_number": 113133, "liner_thickness": "0.160", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "120.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "97418b80-532e-4cc8-8a0f-9c9d219237a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": null, "update_date": null, "well_tag_number": 112297, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "14.00", "liner_to": "123.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "9a414357-628d-422b-ac14-4e9da0691533", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": null, "update_date": null, "well_tag_number": 112828, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "0.00", "liner_to": "301.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "9d1e057c-09a2-4bc3-ba33-9d9e0c743f84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T18:49:01Z", "well_tag_number": 112480, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "240.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "9f5762e6-76ae-4c86-9eb1-a71461221211", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": null, "update_date": null, "well_tag_number": 112319, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "20.00", "liner_to": "420.00", "liner_perforation_from": "340.00", "liner_perforation_to": "400.00"}}, {"model": "wells.perforation", "pk": "a07eecd8-a192-4419-bde3-6abc4e73ae3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-16T14:21:05Z", "well_tag_number": 112457, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "80.00", "liner_to": "500.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "a12d915b-6252-48e1-9ace-1f93c3b2add7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": null, "update_date": null, "well_tag_number": 112729, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "10.50", "liner_to": "600.00", "liner_perforation_from": "260.00", "liner_perforation_to": "600.00"}}, {"model": "wells.perforation", "pk": "a21ad8d9-2f5d-4c3c-a6ac-10372bd1036c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": null, "update_date": null, "well_tag_number": 112377, "liner_thickness": "0.160", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "300.00", "liner_perforation_from": "280.00", "liner_perforation_to": "300.00"}}, {"model": "wells.perforation", "pk": "a667701c-b4fc-4e33-82e3-14ebb303364d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:27:52Z", "update_user": null, "update_date": null, "well_tag_number": 112905, "liner_thickness": null, "liner_diameter": "1.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "a68797fd-f362-4bfe-a335-624617ca6393", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:07Z", "update_user": null, "update_date": null, "well_tag_number": 112665, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "540.00", "liner_perforation_from": "510.00", "liner_perforation_to": "540.00"}}, {"model": "wells.perforation", "pk": "a6d65046-8ac0-4dd7-bdff-e8f341e7c8c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:40:19Z", "update_user": null, "update_date": null, "well_tag_number": 112375, "liner_thickness": null, "liner_diameter": "2.00", "liner_from": "0.00", "liner_to": "36.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "a720ad16-88d1-4e71-a03a-eee783f1a1ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-08T14:42:24Z", "well_tag_number": 112288, "liner_thickness": "0.190", "liner_diameter": "4.00", "liner_from": "26.00", "liner_to": "222.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "a76454d0-893e-4c72-bb70-d41b5f3da11c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": null, "update_date": null, "well_tag_number": 112888, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "7.00", "liner_to": "200.00", "liner_perforation_from": "160.00", "liner_perforation_to": "200.00"}}, {"model": "wells.perforation", "pk": "a928c185-ff9e-4e58-81b9-b4311c1cc397", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": null, "update_date": null, "well_tag_number": 112918, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "5.00", "liner_to": "155.00", "liner_perforation_from": "115.00", "liner_perforation_to": "155.00"}}, {"model": "wells.perforation", "pk": "a98e96a7-571a-44eb-a1ad-c17433709484", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": null, "update_date": null, "well_tag_number": 112919, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "5.00", "liner_to": "155.00", "liner_perforation_from": "95.00", "liner_perforation_to": "155.00"}}, {"model": "wells.perforation", "pk": "a9c23397-0e03-470b-a854-6734825de2df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": null, "update_date": null, "well_tag_number": 112314, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "25.00", "liner_to": "285.00", "liner_perforation_from": "225.00", "liner_perforation_to": "265.00"}}, {"model": "wells.perforation", "pk": "ac50779e-1de8-4934-b832-30988e4082e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": null, "update_date": null, "well_tag_number": 112311, "liner_thickness": null, "liner_diameter": null, "liner_from": "5.00", "liner_to": "245.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "ad7f9b2c-ad35-4444-bbea-3ddfcaa8f772", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:27:19Z", "update_user": null, "update_date": null, "well_tag_number": 112633, "liner_thickness": null, "liner_diameter": null, "liner_from": "11.00", "liner_to": "56.00", "liner_perforation_from": "49.00", "liner_perforation_to": "56.00"}}, {"model": "wells.perforation", "pk": "ae34fafe-fbf1-4f24-ab17-0f0e60fba82c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:32Z", "update_user": null, "update_date": null, "well_tag_number": 113305, "liner_thickness": null, "liner_diameter": null, "liner_from": "3.00", "liner_to": "200.00", "liner_perforation_from": "120.00", "liner_perforation_to": "200.00"}}, {"model": "wells.perforation", "pk": "ae5dd9ab-be00-4b93-ae7a-0cb49459b3fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": null, "update_date": null, "well_tag_number": 109912, "liner_thickness": null, "liner_diameter": null, "liner_from": "5.00", "liner_to": "178.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "af83b5d0-e3a3-4484-9367-f5ed56ebdbc3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": null, "update_date": null, "well_tag_number": 112895, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "b0758cdf-c91c-42fa-8da0-ab3efbaf0577", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:05:15Z", "update_user": null, "update_date": null, "well_tag_number": 112245, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "35.00", "liner_to": "175.00", "liner_perforation_from": "75.00", "liner_perforation_to": "95.00"}}, {"model": "wells.perforation", "pk": "b15ec726-155b-4191-b6b4-def697679261", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": null, "update_date": null, "well_tag_number": 112697, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "61.00", "liner_to": "200.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "b2dbfca7-b9d3-4082-b6b2-d85dd5fd3a4b", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-23T22:54:04Z", "update_user": null, "update_date": null, "well_tag_number": 113200, "liner_thickness": "0.450", "liner_diameter": "6.00", "liner_from": "0.00", "liner_to": "300.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "b3539754-6314-410f-adf5-93d35cc18643", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": null, "update_date": null, "well_tag_number": 112463, "liner_thickness": "0.125", "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "200.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "b37a05ce-1260-4bbc-8643-3c1d118d6c25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": null, "update_date": null, "well_tag_number": 112287, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "11.50", "liner_to": "162.20", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "b52dda90-a3ce-4c3f-8974-89aa9522c349", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:47:27Z", "update_user": null, "update_date": null, "well_tag_number": 112248, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "90.00", "liner_perforation_from": "70.00", "liner_perforation_to": "90.00"}}, {"model": "wells.perforation", "pk": "b6763f6b-21c6-4685-b73b-255706f8a7df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": null, "update_date": null, "well_tag_number": 112885, "liner_thickness": null, "liner_diameter": null, "liner_from": null, "liner_to": null, "liner_perforation_from": "122.00", "liner_perforation_to": "162.00"}}, {"model": "wells.perforation", "pk": "b6a8cee8-115f-479f-a9cc-bfa6d79198be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": null, "update_date": null, "well_tag_number": 112670, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "20.00", "liner_to": "200.00", "liner_perforation_from": "140.00", "liner_perforation_to": "200.00"}}, {"model": "wells.perforation", "pk": "b82f22eb-2098-45af-aedf-07da64db1ff7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": null, "update_date": null, "well_tag_number": 112251, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "50.00", "liner_to": "90.00", "liner_perforation_from": "70.00", "liner_perforation_to": "90.00"}}, {"model": "wells.perforation", "pk": "b8337738-1a74-4d62-84e2-94c6d6b8a962", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_WELLS", "update_date": "2010-12-01T18:12:03Z", "well_tag_number": 100501, "liner_thickness": null, "liner_diameter": null, "liner_from": "65.00", "liner_to": "183.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "b855b7f7-91ac-406b-a2f2-c33a43aa4759", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:25:54Z", "update_user": null, "update_date": null, "well_tag_number": 112869, "liner_thickness": null, "liner_diameter": null, "liner_from": null, "liner_to": null, "liner_perforation_from": "58.00", "liner_perforation_to": "108.00"}}, {"model": "wells.perforation", "pk": "bb09c1f8-8d5e-47a7-8f58-b49d765440fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": null, "update_date": null, "well_tag_number": 112695, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "14.00", "liner_to": "202.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "bddf8eb7-8352-43c8-8aac-25c402c874e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": null, "update_date": null, "well_tag_number": 112322, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "390.00", "liner_perforation_from": "350.00", "liner_perforation_to": "390.00"}}, {"model": "wells.perforation", "pk": "be1db1b1-254d-4b8c-91fe-55054d1abb26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": null, "update_date": null, "well_tag_number": 112770, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "310.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "be9274eb-179e-4748-9c48-2eeadc53832f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": null, "update_date": null, "well_tag_number": 112424, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "10.00", "liner_to": "150.00", "liner_perforation_from": "40.00", "liner_perforation_to": "200.00"}}, {"model": "wells.perforation", "pk": "c062d28a-d239-4cdb-a430-75a656b537ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:35:52Z", "update_user": null, "update_date": null, "well_tag_number": 112680, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "13.00", "liner_to": "301.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "c07ac475-bebb-4cb3-a7a0-b7f9d0f9c783", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": null, "update_date": null, "well_tag_number": 113147, "liner_thickness": null, "liner_diameter": "3.00", "liner_from": "3.00", "liner_to": "255.00", "liner_perforation_from": "50.00", "liner_perforation_to": "255.00"}}, {"model": "wells.perforation", "pk": "c1f556e0-4bb3-4717-9a6a-4f93ccbacc20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": null, "update_date": null, "well_tag_number": 112521, "liner_thickness": null, "liner_diameter": "8.00", "liner_from": "0.00", "liner_to": "61.00", "liner_perforation_from": "61.00", "liner_perforation_to": "212.00"}}, {"model": "wells.perforation", "pk": "c35ef59d-417a-46da-a6a0-54ccef57b2b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": null, "update_date": null, "well_tag_number": 112249, "liner_thickness": "0.248", "liner_diameter": null, "liner_from": "105.00", "liner_to": "165.00", "liner_perforation_from": "145.00", "liner_perforation_to": "165.00"}}, {"model": "wells.perforation", "pk": "c375d696-21af-4acc-bd28-1a7d6fafb08c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": null, "update_date": null, "well_tag_number": 112301, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "15.00", "liner_to": "182.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "c556953f-ab16-4f70-8e5c-e9b8e5ea307d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": null, "update_date": null, "well_tag_number": 105417, "liner_thickness": null, "liner_diameter": null, "liner_from": "7.00", "liner_to": "600.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "c89d901f-0f49-4e18-9960-2b7698eca556", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:09:59Z", "update_user": null, "update_date": null, "well_tag_number": 108027, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "156.00", "liner_perforation_from": "20.00", "liner_perforation_to": "156.00"}}, {"model": "wells.perforation", "pk": "c8d2b958-3a7c-4da9-bbef-a986e5655ddf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T17:33:18Z", "update_user": null, "update_date": null, "well_tag_number": 113017, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "0.00", "liner_to": "240.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "cad3261d-efbd-43f8-8db3-e5113ee24af6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": null, "update_date": null, "well_tag_number": 112430, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "300.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "cb46b79d-7792-4316-8567-040d0503cd2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": null, "update_date": null, "well_tag_number": 112526, "liner_thickness": "0.248", "liner_diameter": "5.00", "liner_from": "19.00", "liner_to": "236.00", "liner_perforation_from": "196.00", "liner_perforation_to": "236.00"}}, {"model": "wells.perforation", "pk": "cbfbd8ff-037d-4c21-9e01-eaac13cc71fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": null, "update_date": null, "well_tag_number": 112667, "liner_thickness": "0.243", "liner_diameter": "4.50", "liner_from": "120.00", "liner_to": "240.00", "liner_perforation_from": "200.00", "liner_perforation_to": "240.00"}}, {"model": "wells.perforation", "pk": "cc06c750-c28e-4fc6-b62b-367307b4c811", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": null, "update_date": null, "well_tag_number": 112486, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "80.00", "liner_to": "260.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "ce605bb7-4418-4674-a09e-a0ac7679a2f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T21:47:38Z", "update_user": null, "update_date": null, "well_tag_number": 112300, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "25.00", "liner_to": "143.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "d14dd4ce-0fdf-4dde-abee-a08daf199497", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": null, "update_date": null, "well_tag_number": 112321, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "20.00", "liner_to": "360.00", "liner_perforation_from": "320.00", "liner_perforation_to": "360.00"}}, {"model": "wells.perforation", "pk": "d3c07431-d3f6-4d84-955b-2514fadc4314", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:55:26Z", "update_user": null, "update_date": null, "well_tag_number": 112630, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "7.00", "liner_to": "340.00", "liner_perforation_from": "120.00", "liner_perforation_to": "240.00"}}, {"model": "wells.perforation", "pk": "d40978fb-788c-46f8-83f0-dd1d02bb08cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:41:19Z", "update_user": null, "update_date": null, "well_tag_number": 112233, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "0.00", "liner_to": "198.00", "liner_perforation_from": "0.00", "liner_perforation_to": "198.00"}}, {"model": "wells.perforation", "pk": "d585eda0-a933-4ecc-b60e-185fb707cfb8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": null, "update_date": null, "well_tag_number": 112324, "liner_thickness": "0.248", "liner_diameter": "4.98", "liner_from": "20.00", "liner_to": "240.00", "liner_perforation_from": "200.00", "liner_perforation_to": "240.00"}}, {"model": "wells.perforation", "pk": "d5b0164e-9bf5-45d6-85fd-9044cf4d3a2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:07Z", "update_user": null, "update_date": null, "well_tag_number": 112892, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "3.50", "liner_to": "180.00", "liner_perforation_from": "140.00", "liner_perforation_to": "180.00"}}, {"model": "wells.perforation", "pk": "d73d932f-d158-4071-8d26-786299d61e8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": null, "update_date": null, "well_tag_number": 112246, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "20.00", "liner_to": "80.00", "liner_perforation_from": "60.00", "liner_perforation_to": "80.00"}}, {"model": "wells.perforation", "pk": "d75a2b87-afea-4d0f-b48e-5ed9b0a4b4c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": null, "update_date": null, "well_tag_number": 113052, "liner_thickness": "0.125", "liner_diameter": "4.25", "liner_from": "235.00", "liner_to": "355.00", "liner_perforation_from": "345.00", "liner_perforation_to": "355.00"}}, {"model": "wells.perforation", "pk": "d82d96f5-21c6-405c-bd99-301447950c96", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-01T21:02:18Z", "update_user": null, "update_date": null, "well_tag_number": 111752, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "8.00", "liner_to": "280.00", "liner_perforation_from": "120.00", "liner_perforation_to": "140.00"}}, {"model": "wells.perforation", "pk": "db8529d2-914e-4f3b-b547-e4f967047eea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:32:50Z", "update_user": null, "update_date": null, "well_tag_number": 113282, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "278.00", "liner_to": "638.00", "liner_perforation_from": "628.00", "liner_perforation_to": "638.00"}}, {"model": "wells.perforation", "pk": "dcfaddd7-6110-4a17-8198-4ce7103abdf7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:22:00Z", "update_user": null, "update_date": null, "well_tag_number": 112679, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "23.00", "liner_to": "142.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "e00e02e1-aeec-4558-b156-53440fdd83e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:23:20Z", "update_user": null, "update_date": null, "well_tag_number": 112702, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "26.00", "liner_to": "143.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "e1754b5c-360b-48af-ae68-319fb7f22b87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": null, "update_date": null, "well_tag_number": 112894, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "7.00", "liner_to": "100.00", "liner_perforation_from": "60.00", "liner_perforation_to": "100.00"}}, {"model": "wells.perforation", "pk": "e36bdddb-7579-4254-8841-66d287b74f64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": null, "update_date": null, "well_tag_number": 112724, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "7.00", "liner_to": "300.00", "liner_perforation_from": "100.00", "liner_perforation_to": "300.00"}}, {"model": "wells.perforation", "pk": "e375c1cc-f9c2-494b-84e0-66e67016e0e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": null, "update_date": null, "well_tag_number": 112730, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "8.00", "liner_to": "300.00", "liner_perforation_from": "30.00", "liner_perforation_to": "37.00"}}, {"model": "wells.perforation", "pk": "e55a5445-1b1e-4b9c-a0c1-8523690afae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": null, "update_date": null, "well_tag_number": 112323, "liner_thickness": "0.248", "liner_diameter": "4.94", "liner_from": "16.00", "liner_to": "56.00", "liner_perforation_from": "36.00", "liner_perforation_to": "56.00"}}, {"model": "wells.perforation", "pk": "e87c31b2-4560-471f-a9fa-f1406c90bf03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:13:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-07T22:19:17Z", "well_tag_number": 112284, "liner_thickness": "0.188", "liner_diameter": "4.00", "liner_from": "16.00", "liner_to": "140.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "e9a5f336-3848-4001-ad6b-6ac7d94aa1bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:32:10Z", "update_user": null, "update_date": null, "well_tag_number": 112360, "liner_thickness": null, "liner_diameter": null, "liner_from": "80.00", "liner_to": "295.00", "liner_perforation_from": "255.00", "liner_perforation_to": "295.00"}}, {"model": "wells.perforation", "pk": "ebb73731-d326-4a39-b8d7-97b167eb3e98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": null, "update_date": null, "well_tag_number": 112306, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "10.00", "liner_to": "340.00", "liner_perforation_from": "300.00", "liner_perforation_to": "330.00"}}, {"model": "wells.perforation", "pk": "ec6f9cb8-961c-48bb-ac69-39ef999c07ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": null, "update_date": null, "well_tag_number": 113123, "liner_thickness": "0.183", "liner_diameter": "4.00", "liner_from": "2.00", "liner_to": "241.00", "liner_perforation_from": "60.00", "liner_perforation_to": "241.00"}}, {"model": "wells.perforation", "pk": "ed43d242-74d3-40cc-a778-996befd9e5c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-14T21:12:58Z", "well_tag_number": 112410, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "20.00", "liner_to": "457.00", "liner_perforation_from": "20.00", "liner_perforation_to": "457.00"}}, {"model": "wells.perforation", "pk": "ede1a71b-8892-43cf-aada-76a5d6047fe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": null, "update_date": null, "well_tag_number": 112893, "liner_thickness": "0.250", "liner_diameter": "4.00", "liner_from": "6.00", "liner_to": "497.00", "liner_perforation_from": "457.00", "liner_perforation_to": "497.00"}}, {"model": "wells.perforation", "pk": "efbe8ed7-6d6c-4795-b7bd-4993be93e3ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:43Z", "update_user": null, "update_date": null, "well_tag_number": 110750, "liner_thickness": "0.248", "liner_diameter": "4.50", "liner_from": "60.00", "liner_to": "260.00", "liner_perforation_from": "200.00", "liner_perforation_to": "260.00"}}, {"model": "wells.perforation", "pk": "f23a2a7c-ae4c-4610-8ea1-df7a00aa3dd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": null, "update_date": null, "well_tag_number": 112468, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "40.00", "liner_to": "400.00", "liner_perforation_from": "40.00", "liner_perforation_to": "400.00"}}, {"model": "wells.perforation", "pk": "f3c324a8-405a-4429-98a9-a63147f26209", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T19:59:26Z", "update_user": null, "update_date": null, "well_tag_number": 112796, "liner_thickness": null, "liner_diameter": null, "liner_from": "160.00", "liner_to": "195.00", "liner_perforation_from": "160.00", "liner_perforation_to": "180.00"}}, {"model": "wells.perforation", "pk": "f3c9f195-cd1e-407e-9faa-5fba2cd7e01f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": null, "update_date": null, "well_tag_number": 112721, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "7.50", "liner_to": "80.00", "liner_perforation_from": "10.00", "liner_perforation_to": "74.00"}}, {"model": "wells.perforation", "pk": "f5f26431-97b5-4a74-8ff1-e5f99c47241d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": null, "update_date": null, "well_tag_number": 112455, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "200.00", "liner_to": "320.00", "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "f6cfa4a6-7c71-4d18-a181-16d9969870c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:51Z", "update_user": null, "update_date": null, "well_tag_number": 112736, "liner_thickness": null, "liner_diameter": "4.00", "liner_from": "6.50", "liner_to": "380.00", "liner_perforation_from": "140.00", "liner_perforation_to": "240.00"}}, {"model": "wells.perforation", "pk": "f6e04622-de14-480c-85e3-edf1be37af50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": null, "update_date": null, "well_tag_number": 112525, "liner_thickness": "0.248", "liner_diameter": "5.00", "liner_from": "16.00", "liner_to": "336.00", "liner_perforation_from": "296.00", "liner_perforation_to": "336.00"}}, {"model": "wells.perforation", "pk": "f90c38f5-554e-49c0-8a0b-919018eb508d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:41:53Z", "update_user": null, "update_date": null, "well_tag_number": 112917, "liner_thickness": "0.240", "liner_diameter": "5.00", "liner_from": "5.00", "liner_to": "150.00", "liner_perforation_from": "130.00", "liner_perforation_to": "150.00"}}, {"model": "wells.perforation", "pk": "f91d1238-e7b9-4cdc-86a5-95f368872e8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": null, "update_date": null, "well_tag_number": 112551, "liner_thickness": "0.250", "liner_diameter": "6.00", "liner_from": "0.00", "liner_to": "550.00", "liner_perforation_from": "490.00", "liner_perforation_to": "550.00"}}, {"model": "wells.perforation", "pk": "fabc1526-959a-499b-9d3f-37727ca89e81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:56Z", "update_user": null, "update_date": null, "well_tag_number": 112527, "liner_thickness": "0.248", "liner_diameter": "5.00", "liner_from": null, "liner_to": null, "liner_perforation_from": null, "liner_perforation_to": null}}, {"model": "wells.perforation", "pk": "fdb4be36-9f97-4296-a774-153997e04f6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": null, "update_date": null, "well_tag_number": 113010, "liner_thickness": "0.250", "liner_diameter": "5.00", "liner_from": "15.00", "liner_to": "155.00", "liner_perforation_from": "125.00", "liner_perforation_to": "155.00"}}, {"model": "wells.perforation", "pk": "ff07ab3a-083a-4e92-af55-41fcd3f0fc04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": null, "update_date": null, "well_tag_number": 112326, "liner_thickness": "0.248", "liner_diameter": "4.94", "liner_from": "15.00", "liner_to": "75.00", "liner_perforation_from": "75.00", "liner_perforation_to": "95.00"}}, {"model": "wells.perforation", "pk": "ff0a2bcc-796c-490e-8411-32fc2d43a4b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:57Z", "update_user": null, "update_date": null, "well_tag_number": 113149, "liner_thickness": "0.125", "liner_diameter": "4.00", "liner_from": "15.00", "liner_to": "195.00", "liner_perforation_from": "185.00", "liner_perforation_to": "195.00"}}, {"model": "wells.perforation", "pk": "ffb2617c-babb-4e7c-8c36-76b08931de13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": null, "update_date": null, "well_tag_number": 112756, "liner_thickness": null, "liner_diameter": "4.50", "liner_from": "16.00", "liner_to": "216.00", "liner_perforation_from": "216.00", "liner_perforation_to": "256.00"}}, {"model": "wells.casingmaterialcode", "pk": "CEMENT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Cement", "display_order": 40, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.casingmaterialcode", "pk": "OPEN_HOLE", "fields": {"create_user": "WELLS", "create_date": "2006-12-14T17:58:28Z", "update_user": "WELLS", "update_date": "2006-12-14T17:58:28Z", "description": "Open hole", "display_order": 100, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.casingmaterialcode", "pk": "OTHER", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Other", "display_order": 50, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.casingmaterialcode", "pk": "PLASTIC", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Plastic", "display_order": 30, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.casingmaterialcode", "pk": "STEEL", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Steel", "display_order": 10, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.casingmaterialcode", "pk": "STL_PUL_OT", "fields": {"create_user": "ETL_USER", "create_date": "2017-07-01T08:00:00Z", "update_user": "ETL_USER", "update_date": "2017-07-01T08:00:00Z", "description": "Steel Pulled Out", "display_order": 20, "effective_date": "2018-05-25T07:00:00Z", "expiry_date": null}}, {"model": "wells.casingcode", "pk": "OPEN", "fields": {"create_user": "WELLS", "create_date": "2018-08-14T17:42:52.416Z", "update_user": "WELLS", "update_date": "2018-08-14T17:42:52.416Z", "description": "Open hole", "display_order": 2, "effective_date": "2018-08-14T17:42:52.416Z", "expiry_date": null}}, {"model": "wells.casingcode", "pk": "PRODUCTION", "fields": {"create_user": "WELLS", "create_date": "2018-08-14T17:42:52.423Z", "update_user": "WELLS", "update_date": "2018-08-14T17:42:52.423Z", "description": "Production casing", "display_order": 1, "effective_date": "2018-08-14T17:42:52.423Z", "expiry_date": null}}, {"model": "wells.casingcode", "pk": "SURFACE", "fields": {"create_user": "WELLS", "create_date": "2018-08-14T17:42:52.421Z", "update_user": "WELLS", "update_date": "2018-08-14T17:42:52.421Z", "description": "Surface casing", "display_order": 0, "effective_date": "2013-11-07T05:28:00.402Z", "expiry_date": null}}, {"model": "wells.aquiferwell", "pk": "3f7569f9-2306-4ccb-b889-ff78239fdaee", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-10T20:16:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-10T20:16:35Z", "aquifer_id": 25, "well_tag_number": 110749}}, {"model": "wells.aquiferwell", "pk": "4222f065-1eb1-4ecc-90fd-df16c15bdb05", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-12-15T21:57:22Z", "update_user": "PROXY_WELLS", "update_date": "2012-12-15T21:57:22Z", "aquifer_id": 990, "well_tag_number": 100127}}, {"model": "wells.aquiferwell", "pk": "79fd0203-0704-442b-a297-e3045496da7f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-12-19T02:01:19Z", "update_user": "PROXY_WELLS", "update_date": "2012-12-19T02:01:19Z", "aquifer_id": 936, "well_tag_number": 102364}}, {"model": "wells.aquiferwell", "pk": "7c424ad9-18de-443a-aa7d-98ead6c607bf", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-15T20:21:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-03-15T20:21:24Z", "aquifer_id": 154, "well_tag_number": 109912}}, {"model": "wells.aquiferwell", "pk": "86084f5e-dd7f-4964-8aae-997dcd8a7907", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-14T19:15:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-14T19:15:55Z", "aquifer_id": 35, "well_tag_number": 108025}}, {"model": "wells.aquiferwell", "pk": "9503fb93-26c2-484d-b851-f02b6c48f931", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-06-14T22:36:39Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-14T22:36:39Z", "aquifer_id": 15, "well_tag_number": 113183}}, {"model": "wells.aquiferwell", "pk": "9db04a0a-2a9d-4b35-a749-7a0ad973ef01", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-07-11T17:10:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-11T17:10:50Z", "aquifer_id": 560, "well_tag_number": 113189}}, {"model": "wells.aquiferwell", "pk": "9f67ea0d-92e3-4236-882c-1399bf5e449d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-16T17:48:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-16T17:48:12Z", "aquifer_id": 58, "well_tag_number": 113552}}, {"model": "wells.aquiferwell", "pk": "fdbfefb6-8301-4c9e-b946-c21b6965ee05", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-01-08T19:56:46Z", "update_user": "PROXY_WELLS", "update_date": "2013-01-08T19:56:46Z", "aquifer_id": 453, "well_tag_number": 100200}}, {"model": "wells.aquiferwell", "pk": "ffd39702-a7d7-48eb-a83f-6294f3875d21", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-24T21:33:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T21:33:53Z", "aquifer_id": 202, "well_tag_number": 113013}}, {"model": "wells.lithologydescription", "pk": "001c2b98-b0e7-4a2e-bc99-5e30d6407715", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, "well_tag_number": 112902, "lithology_from": "16.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201898}}, {"model": "wells.lithologydescription", "pk": "00208315-fa67-4006-8e57-a2dbbe305e6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:15:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, "well_tag_number": 112943, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202121}}, {"model": "wells.lithologydescription", "pk": "00303dbe-d591-4bdb-b3dd-46e52a6bd87a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well_tag_number": 112898, "lithology_from": "136.00", "lithology_to": "139.00", "lithology_raw_data": "SAND & PEBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201885}}, {"model": "wells.lithologydescription", "pk": "00311c28-0f73-4535-a88a-b34581ada082", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201210}}, {"model": "wells.lithologydescription", "pk": "0035bc18-1253-4b0a-a49e-fe6d95660cf7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well_tag_number": 112705, "lithology_from": "27.00", "lithology_to": "75.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200580}}, {"model": "wells.lithologydescription", "pk": "0053a2af-df4c-4c12-9094-c0db4cb9edbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "405.00", "lithology_to": "407.00", "lithology_raw_data": "DENSE/STIFF; CONGLOMERATE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WITH TRACES OF CLAY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199602}}, {"model": "wells.lithologydescription", "pk": "005bd68c-557e-4e66-940a-347031bbf498", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well_tag_number": 113290, "lithology_from": "430.00", "lithology_to": "440.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "white, grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203991}}, {"model": "wells.lithologydescription", "pk": "006804ab-2863-440e-a3ad-5758aacc2f44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, "well_tag_number": 112682, "lithology_from": "75.00", "lithology_to": "81.00", "lithology_raw_data": "BRITTLE CLAY/SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200492}}, {"model": "wells.lithologydescription", "pk": "0072e72e-6e75-485d-a9af-0b142bf0c25d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well_tag_number": 112698, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200552}}, {"model": "wells.lithologydescription", "pk": "00774935-7b10-417e-a22b-30e4043dd891", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "348.00", "lithology_to": "400.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "fractures at 365-368, 390-392, 395-399", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202839}}, {"model": "wells.lithologydescription", "pk": "007b5bac-66f6-4859-af40-9c7e15767dfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "151.00", "lithology_to": "155.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "VERY BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203825}}, {"model": "wells.lithologydescription", "pk": "0080c8ea-0104-450a-af6b-164f7c47f76c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:35:46Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198686}}, {"model": "wells.lithologydescription", "pk": "0081498a-be7d-49e9-b6ed-3eaaa349297f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203101}}, {"model": "wells.lithologydescription", "pk": "009ed6bf-b0e5-4cdd-9ab5-3d7e8e96311f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "249.00", "lithology_to": "259.00", "lithology_raw_data": "MEDIUM-HARD COARSE SAND, FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198062}}, {"model": "wells.lithologydescription", "pk": "00a0a744-0b75-46f5-9991-7f377ec418b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "66.00", "lithology_to": "88.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203012}}, {"model": "wells.lithologydescription", "pk": "00aa5e6b-77fc-430d-bb7d-a6fe8e8ef2cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "118.00", "lithology_to": "119.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198232}}, {"model": "wells.lithologydescription", "pk": "00af292d-02b3-4018-a173-e7f68b00e9a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "105.00", "lithology_to": "152.00", "lithology_raw_data": "BROWN SILTY CLAY SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197790}}, {"model": "wells.lithologydescription", "pk": "00b5af3a-16a6-4738-9f90-f6fad066213e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:43:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, "well_tag_number": 112781, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN & GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201101}}, {"model": "wells.lithologydescription", "pk": "00b9d31a-69dd-4b3c-beb5-7c84f91d3067", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "75.00", "lithology_to": "102.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown silty wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198256}}, {"model": "wells.lithologydescription", "pk": "00bb18d5-d732-468f-8af3-be4d14f46c94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:34:53Z", "activity_submission": null, "well_tag_number": 112516, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199395}}, {"model": "wells.lithologydescription", "pk": "00c4aa4d-ff93-4d79-b892-b390bf19fd96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:29:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, "well_tag_number": 112896, "lithology_from": "28.00", "lithology_to": "37.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201870}}, {"model": "wells.lithologydescription", "pk": "00c657d6-cd77-4ce9-9eef-d00f32b11a3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "63.00", "lithology_to": "250.00", "lithology_raw_data": "medium hard, getting lighter in color", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 198', soft zones at 144', 193'-198'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202920}}, {"model": "wells.lithologydescription", "pk": "00cb928d-67fa-43d9-b576-71009806aac8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "0.00", "lithology_to": "36.00", "lithology_raw_data": "BROWN SILTY DRY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200954}}, {"model": "wells.lithologydescription", "pk": "00cc914b-d5fd-4673-966f-96c7600ccd9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "210.00", "lithology_to": "225.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201033}}, {"model": "wells.lithologydescription", "pk": "00ccd4dc-e12a-49d9-9bbd-3a371f3fb4c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well_tag_number": 113180, "lithology_from": "202.00", "lithology_to": "210.00", "lithology_raw_data": "little gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Bottom of Well 209 6\"", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203452}}, {"model": "wells.lithologydescription", "pk": "00de08d0-37dc-4b69-a78d-d93bca058fdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "130.00", "lithology_to": "217.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201095}}, {"model": "wells.lithologydescription", "pk": "00e12834-2293-49b9-84ee-070af28ec762", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "366.00", "lithology_to": "393.00", "lithology_raw_data": "med. grey /green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201256}}, {"model": "wells.lithologydescription", "pk": "00fac2ab-f7a8-4d81-b617-44c0782bca3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well_tag_number": 112571, "lithology_from": "55.00", "lithology_to": "58.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199782}}, {"model": "wells.lithologydescription", "pk": "0104569a-242d-4d34-8fec-02a470ce7465", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201209}}, {"model": "wells.lithologydescription", "pk": "012d01ca-6d2f-4a9b-9ec9-1b93d639453f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201583}}, {"model": "wells.lithologydescription", "pk": "012d6023-ea2f-44a0-8aa6-da826b38cd55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "2.00", "lithology_to": "6.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203218}}, {"model": "wells.lithologydescription", "pk": "0139da65-cd45-47be-871f-7ab700878fca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well_tag_number": 112990, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202405}}, {"model": "wells.lithologydescription", "pk": "013a0c88-9d4f-420e-afb5-e933beb69142", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": "sand med course", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "cobbles", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202603}}, {"model": "wells.lithologydescription", "pk": "01553aff-59f8-41d1-a30f-0b58f5f1f014", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "2.00", "lithology_to": "42.00", "lithology_raw_data": "SILT, SAND AND GRAVEL, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202758}}, {"model": "wells.lithologydescription", "pk": "015b5911-9eb3-4fd4-b7a6-b53dbe2dc08b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199294}}, {"model": "wells.lithologydescription", "pk": "01661d15-3736-4395-a8eb-ef88812cbb2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well_tag_number": 112743, "lithology_from": "58.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200857}}, {"model": "wells.lithologydescription", "pk": "0178faa1-86ed-4cbd-8dec-eec209a4691c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201921}}, {"model": "wells.lithologydescription", "pk": "018cfb40-9cfa-4ef2-b5a5-5f1ea4207238", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "400.00", "lithology_to": "415.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "significant fractures at 411 & 415", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202840}}, {"model": "wells.lithologydescription", "pk": "01a5edd6-7caa-4bb0-a12d-ee0f003bf7b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "33.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203200}}, {"model": "wells.lithologydescription", "pk": "01a62138-2b56-4f25-a87f-7b8f35d3c24c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "112.00", "lithology_to": "115.00", "lithology_raw_data": "GRAVEL SAND - W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132265}}, {"model": "wells.lithologydescription", "pk": "01a6aa83-a8f4-4978-9eb7-31220c9aa10f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "176.00", "lithology_to": "179.00", "lithology_raw_data": "CLAY, VOLCANIC, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FLOW=MW; SAND, SILT/ORGANICS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198025}}, {"model": "wells.lithologydescription", "pk": "01b537f3-f164-482a-88e7-e7c16366d1a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "47.00", "lithology_to": "74.00", "lithology_raw_data": "INTERBEDDED, BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MW. LOST CIRC. @ 70'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201586}}, {"model": "wells.lithologydescription", "pk": "01bfb9c0-caf6-49d5-92fc-aeaedd9668d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well_tag_number": 112822, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201284}}, {"model": "wells.lithologydescription", "pk": "01cb17e5-a6a4-48c2-9f0c-a1856bfb8693", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T21:01:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, "well_tag_number": 112831, "lithology_from": "12.00", "lithology_to": "70.00", "lithology_raw_data": "small balders", "lithology_description": "18", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201365}}, {"model": "wells.lithologydescription", "pk": "01cbac4f-4b7f-4333-b11c-d066384f53df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "COARSE SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198717}}, {"model": "wells.lithologydescription", "pk": "01dfe234-2252-48c9-9d58-07e4ff66f840", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:39:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, "well_tag_number": 112949, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202141}}, {"model": "wells.lithologydescription", "pk": "01e034d5-f009-4169-8bf6-09bcaa6db765", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "100.00", "lithology_to": "230.00", "lithology_raw_data": "Hard grey bedrock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202461}}, {"model": "wells.lithologydescription", "pk": "01f6a925-18e9-4526-8797-5a6672b6ece6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "110.00", "lithology_to": "159.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN, BLACK AND WHITE; SOFT SPOT AND FRACTURE @ 144'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200465}}, {"model": "wells.lithologydescription", "pk": "01fc6327-6261-41e6-99cb-e9248e7cbe21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "994.00", "lithology_to": "995.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "broken material", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202870}}, {"model": "wells.lithologydescription", "pk": "0205d68c-caf5-44a4-9997-30a2fa0d2efa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T19:52:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, "well_tag_number": 113186, "lithology_from": "35.00", "lithology_to": "135.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203488}}, {"model": "wells.lithologydescription", "pk": "0212a3ca-81d0-4626-b82e-363ab12cb6bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "220.00", "lithology_to": "223.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198265}}, {"model": "wells.lithologydescription", "pk": "0223d451-5d17-4a6b-b559-c405f3760b46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203148}}, {"model": "wells.lithologydescription", "pk": "02285852-7ff2-477c-9985-e1586f2ca8d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, "well_tag_number": 112328, "lithology_from": "0.00", "lithology_to": "63.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197959}}, {"model": "wells.lithologydescription", "pk": "02361668-a8ec-435d-92c3-f585cfb121a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:57:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, "well_tag_number": 112961, "lithology_from": "37.50", "lithology_to": "40.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202231}}, {"model": "wells.lithologydescription", "pk": "02384bdd-49c3-4023-8b4f-bd2f56e42e76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, "well_tag_number": 113027, "lithology_from": "184.00", "lithology_to": "194.00", "lithology_raw_data": "Brwon Gravel and Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202572}}, {"model": "wells.lithologydescription", "pk": "023874c4-bbdc-4309-8a8d-340458df3884", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "28.00", "lithology_to": "37.00", "lithology_raw_data": "BOULDERS & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200483}}, {"model": "wells.lithologydescription", "pk": "024394ac-5760-4b1e-af1a-98dbde81c36d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "74.00", "lithology_to": "92.00", "lithology_raw_data": "and cobbles", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198344}}, {"model": "wells.lithologydescription", "pk": "0243e2fa-7f30-4ef7-8394-34d4f281778e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203640}}, {"model": "wells.lithologydescription", "pk": "0249b977-fa28-4f89-817f-074f53e02a68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "302.00", "lithology_to": "306.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202782}}, {"model": "wells.lithologydescription", "pk": "0250fdc4-39cb-4c42-a5bd-f00cd378450e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "34.00", "lithology_to": "48.00", "lithology_raw_data": "FINE BROWN SAND AND MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200908}}, {"model": "wells.lithologydescription", "pk": "02600d85-c02d-49a4-bac6-9f7775380271", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "231.00", "lithology_to": "233.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203126}}, {"model": "wells.lithologydescription", "pk": "02611ac3-4681-4be1-b30c-4fb6024ead55", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T21:43:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:43:55Z", "activity_submission": null, "well_tag_number": 110749, "lithology_from": "60.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE & BLACK FRACTURED ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188534}}, {"model": "wells.lithologydescription", "pk": "0261f7d0-996f-43e2-a632-607557754f35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "2.00", "lithology_to": "15.50", "lithology_raw_data": "GREY/GREEN GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198119}}, {"model": "wells.lithologydescription", "pk": "026b696f-3643-4dd0-ad0f-c07cab5cf4de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "105.00", "lithology_to": "110.00", "lithology_raw_data": "VERY DENSE; GREY SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200660}}, {"model": "wells.lithologydescription", "pk": "026c5b8c-a708-4774-9ac3-b08342387668", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "23.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199693}}, {"model": "wells.lithologydescription", "pk": "0270632d-ea24-4888-b94a-357a58114243", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:15:00Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:11:03Z", "activity_submission": null, "well_tag_number": 113009, "lithology_from": "135.00", "lithology_to": "163.00", "lithology_raw_data": "gravel and sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202485}}, {"model": "wells.lithologydescription", "pk": "027c35b1-288f-4e81-bf05-ebff49a7079f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "36.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198883}}, {"model": "wells.lithologydescription", "pk": "02909b2b-7b01-419c-abef-7037708a1f96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:56:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, "well_tag_number": 112317, "lithology_from": "51.00", "lithology_to": "120.00", "lithology_raw_data": "BOULDERS, GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197868}}, {"model": "wells.lithologydescription", "pk": "029159bc-a3e6-4889-b01d-800ee8f31e53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "106.00", "lithology_to": "110.00", "lithology_raw_data": "and silts", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198258}}, {"model": "wells.lithologydescription", "pk": "029bac0b-6057-47c6-a536-def7f14a3e03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "42.00", "lithology_to": "54.00", "lithology_raw_data": "GREY/BROWN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197383}}, {"model": "wells.lithologydescription", "pk": "02a55c8a-3719-41d7-8396-35f279633255", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:34Z", "activity_submission": null, "well_tag_number": 113278, "lithology_from": "0.00", "lithology_to": "56.00", "lithology_raw_data": "till sand with gravel 13 to 56'", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203943}}, {"model": "wells.lithologydescription", "pk": "02af01a9-9818-4c4a-99a5-7977e8b09d5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "450.00", "lithology_to": "590.00", "lithology_raw_data": "BROWN/GREY VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197358}}, {"model": "wells.lithologydescription", "pk": "02b154bb-247e-4098-93bb-4c12b2a3383d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, "well_tag_number": 112241, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "CLAY FILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197485}}, {"model": "wells.lithologydescription", "pk": "02b35d57-7545-4a5e-89ad-d3b1450b8f1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "204.00", "lithology_to": "210.00", "lithology_raw_data": "GREEY CLAYS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199429}}, {"model": "wells.lithologydescription", "pk": "02c7f1da-4a7b-4da5-a027-6981cb98b71a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:21Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201321}}, {"model": "wells.lithologydescription", "pk": "02c9199d-2114-471a-9b3e-d0f9957ba60f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "11.00", "lithology_to": "30.00", "lithology_raw_data": "and tight till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200346}}, {"model": "wells.lithologydescription", "pk": "02cd7ff7-a39c-48b7-8107-98e384588f85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, "well_tag_number": 112458, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198957}}, {"model": "wells.lithologydescription", "pk": "02e026d1-afa9-4786-840c-ae15e3743f2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "88.00", "lithology_to": "92.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203090}}, {"model": "wells.lithologydescription", "pk": "02f07ea1-d0eb-450b-9fe0-8a531c96eccb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "25.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203361}}, {"model": "wells.lithologydescription", "pk": "02f2f8c8-6ded-425d-8fed-20b98f4a05f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, "well_tag_number": 112593, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL, SAND, FINE TO MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199935}}, {"model": "wells.lithologydescription", "pk": "03085143-ba96-43bb-9e40-47851965cd55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198859}}, {"model": "wells.lithologydescription", "pk": "030fd133-9711-46f7-94c3-c60feb5add10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well_tag_number": 112547, "lithology_from": "85.00", "lithology_to": "115.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199643}}, {"model": "wells.lithologydescription", "pk": "031eb6b6-2ae6-4088-bc6a-792f35cf5513", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well_tag_number": 113271, "lithology_from": "70.00", "lithology_to": "130.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203927}}, {"model": "wells.lithologydescription", "pk": "03257100-0f30-4f73-8e2f-e9168d8efb33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, "well_tag_number": 112673, "lithology_from": "68.00", "lithology_to": "83.00", "lithology_raw_data": "FINE AND SILTY BROWN SAND WITH TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST TO WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200457}}, {"model": "wells.lithologydescription", "pk": "032e0952-67ea-4104-ab1b-f16e6703038c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, "well_tag_number": 112295, "lithology_from": "35.00", "lithology_to": "150.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197755}}, {"model": "wells.lithologydescription", "pk": "032f0faf-3109-4ad5-82de-f7e1702c8d8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well_tag_number": 112479, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL-COARSE, CLAY CONTENT", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199132}}, {"model": "wells.lithologydescription", "pk": "0354d358-aa47-4530-81f3-ae2871f3e6dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "101.00", "lithology_to": "112.00", "lithology_raw_data": "MEDIUM-SOFT; SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MEDIUM GRAIN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199499}}, {"model": "wells.lithologydescription", "pk": "0359389f-044b-4227-be7f-765023fd0b61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:16:24Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "430.00", "lithology_to": "477.00", "lithology_raw_data": "Black shale, hard layers", "lithology_description": "60", "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "430'-430'=fractured, waterbearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203385}}, {"model": "wells.lithologydescription", "pk": "036247c4-097a-4b3a-88b4-1850995e1a29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "35.00", "lithology_to": "130.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197481}}, {"model": "wells.lithologydescription", "pk": "03663ae7-dc29-42ae-85e5-271958e20b77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "24.00", "lithology_to": "32.00", "lithology_raw_data": "GREY/GREEN/BROWN VOLCANIC/BROKEN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2+ USGPM; COMPACT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197343}}, {"model": "wells.lithologydescription", "pk": "036cbbaa-e527-4776-bca8-b593172318cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 360'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202998}}, {"model": "wells.lithologydescription", "pk": "037932da-5644-464a-bfd5-87f8bdc62011", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "115.00", "lithology_to": "177.00", "lithology_raw_data": "FINE BROWN SAND, SOME STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201459}}, {"model": "wells.lithologydescription", "pk": "037e1b9a-3e94-43cf-9e60-38aee94cd5ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "490.00", "lithology_to": "500.00", "lithology_raw_data": "SS, S&P, med coarse", "lithology_description": "45", "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203418}}, {"model": "wells.lithologydescription", "pk": "037e38b4-5a18-418d-9de0-f61e97c0efeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "18.00", "lithology_to": "101.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED @ 24' AND 41'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202030}}, {"model": "wells.lithologydescription", "pk": "0389b6ea-8223-4fae-aa9e-b26e785e2bb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:27:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:27:19Z", "activity_submission": null, "well_tag_number": 112633, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "silt trace of gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200296}}, {"model": "wells.lithologydescription", "pk": "0396b7d6-523d-413a-a200-b5d8cb569d72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, "well_tag_number": 113205, "lithology_from": "85.00", "lithology_to": "96.00", "lithology_raw_data": "gravel, sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203588}}, {"model": "wells.lithologydescription", "pk": "03ab5ffc-07cb-4bed-862f-46a2e6e5d3cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "78.00", "lithology_to": "92.00", "lithology_raw_data": "SAND, SILT, GRAVEL, WOOD", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10-20", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202205}}, {"model": "wells.lithologydescription", "pk": "03b24128-a701-4cbf-841f-cbe2fd5768b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well_tag_number": 113082, "lithology_from": "170.00", "lithology_to": "200.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "36", "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202896}}, {"model": "wells.lithologydescription", "pk": "03be8862-ef3b-4f3f-bf4b-59009d30eceb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "24.00", "lithology_to": "39.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201806}}, {"model": "wells.lithologydescription", "pk": "03c12e4f-bbc3-40f3-a0a0-5b6a5b596336", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, "well_tag_number": 113251, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203811}}, {"model": "wells.lithologydescription", "pk": "03dd6828-4611-42fb-b946-e88054bc32db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, "well_tag_number": 112373, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "silt organiccs", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198316}}, {"model": "wells.lithologydescription", "pk": "03df09da-4064-4313-aeec-1709bb46423e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "Silty ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202376}}, {"model": "wells.lithologydescription", "pk": "03e80960-0794-49ca-8342-f910f7bd13c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "02", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202193}}, {"model": "wells.lithologydescription", "pk": "03ed6f60-f7fd-43e1-aa3d-0402e204bec0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "70.00", "lithology_to": "190.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203327}}, {"model": "wells.lithologydescription", "pk": "03f73569-6f92-4eff-93ec-ce37dfc3ea31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, "well_tag_number": 112299, "lithology_from": "105.00", "lithology_to": "117.00", "lithology_raw_data": "SAND, SOME ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197775}}, {"model": "wells.lithologydescription", "pk": "0404b259-618d-43ed-a791-604b29697389", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "49.00", "lithology_to": "54.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197674}}, {"model": "wells.lithologydescription", "pk": "0407f9c7-6483-4826-a73f-5d1dcfa39e39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "325.00", "lithology_to": "401.00", "lithology_raw_data": "bedrock, coarse grain", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 300'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203834}}, {"model": "wells.lithologydescription", "pk": "0408169d-1654-461d-8506-8b7f4db97dea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, "well_tag_number": 112911, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "MED COARSE SAND AND SOME COARSE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201943}}, {"model": "wells.lithologydescription", "pk": "040e4be6-6099-4c0c-8d1a-cb4d39c798e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201611}}, {"model": "wells.lithologydescription", "pk": "042b99d1-dfb1-4cac-b039-8286a306cc7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "GRAVEL, MINOR, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200036}}, {"model": "wells.lithologydescription", "pk": "04369021-ff06-40e2-b4d7-2efa5e74eb94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:10:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, "well_tag_number": 108027, "lithology_from": "42.00", "lithology_to": "110.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172313}}, {"model": "wells.lithologydescription", "pk": "04412f53-f2ee-47fc-89fb-8e8edb75595e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "86.00", "lithology_to": "113.00", "lithology_raw_data": "till", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203029}}, {"model": "wells.lithologydescription", "pk": "0442b814-87ec-47ac-9080-478ba7de4a64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "FRACTURED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198942}}, {"model": "wells.lithologydescription", "pk": "0444ad70-46f6-4e44-99fb-4bcc277698b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": "SILTSTONE, SHALE, BROWN/GREY", "lithology_description": "72", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201538}}, {"model": "wells.lithologydescription", "pk": "044b8d30-e11f-4131-bc47-8e1062cae3b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "123.00", "lithology_to": "135.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200170}}, {"model": "wells.lithologydescription", "pk": "045852a2-b7e8-4648-be2d-47d0fda8d3b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "183.00", "lithology_to": "282.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199022}}, {"model": "wells.lithologydescription", "pk": "046378ef-5748-4cc8-b8f2-a19871e73239", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, "well_tag_number": 112608, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL, CLAY, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200047}}, {"model": "wells.lithologydescription", "pk": "046b179a-fabd-4f18-8455-9dea8a63f156", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "304.00", "lithology_to": "306.00", "lithology_raw_data": "MEDIUM-HARD, GREY-BROWN-GREY, SHALE/SANDSTONE/SALT AND PEPPER TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197927}}, {"model": "wells.lithologydescription", "pk": "046e840c-6083-4a05-b571-d8d8541a5b72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:09:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, "well_tag_number": 112435, "lithology_from": "80.00", "lithology_to": "83.00", "lithology_raw_data": "and gravels", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198749}}, {"model": "wells.lithologydescription", "pk": "047cc0e5-d692-495c-bade-0947af7c136f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": "and silts", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198219}}, {"model": "wells.lithologydescription", "pk": "047d13b2-1427-46bd-86c7-6563d11bb611", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "135.00", "lithology_to": "280.00", "lithology_raw_data": "BLACK/GREEN/WHITE, VOLCANIC - OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198106}}, {"model": "wells.lithologydescription", "pk": "0483a997-032e-4efc-8cd2-a9dc2afda029", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205291}}, {"model": "wells.lithologydescription", "pk": "049230c6-708b-401c-bd14-e356f2921fa4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "318.00", "lithology_to": "322.00", "lithology_raw_data": "FINE TO MEDIUM COARSE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "STATIC 104' BGL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201550}}, {"model": "wells.lithologydescription", "pk": "049a4a55-a058-448e-9acb-46cdfa6d3209", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "6.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200606}}, {"model": "wells.lithologydescription", "pk": "04a7302f-ea20-4a56-814e-2fc5631eabb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "SANDSTONE & SILTSTONE, MEDIUM TO HARD LENSES, GREY & BROWN", "lithology_description": "60", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201484}}, {"model": "wells.lithologydescription", "pk": "04b16a10-08fb-40b4-b357-d205aee126c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "65.00", "lithology_to": "108.00", "lithology_raw_data": "SANDSTONE, MED, WEATHERED LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197761}}, {"model": "wells.lithologydescription", "pk": "04c0019f-5a23-4ac2-b0e7-69299d25a2c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:52:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, "well_tag_number": 112349, "lithology_from": "52.00", "lithology_to": "56.00", "lithology_raw_data": "gravel sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198175}}, {"model": "wells.lithologydescription", "pk": "04c0ee58-b21f-4db9-adc2-9220feb1029b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, "well_tag_number": 112946, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "GRAVEL WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202130}}, {"model": "wells.lithologydescription", "pk": "04d478fa-2cb7-4756-987b-cbefafb5f7a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:23:08Z", "activity_submission": null, "well_tag_number": 113085, "lithology_from": "350.00", "lithology_to": "490.00", "lithology_raw_data": "GREEN BEDROCK WITH QUARTZ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202909}}, {"model": "wells.lithologydescription", "pk": "04e41ee7-48bd-480f-99c4-255cce176c1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well_tag_number": 112870, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY & ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201709}}, {"model": "wells.lithologydescription", "pk": "04e8a104-c748-4909-8fe9-b3cfb6b8b35c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, "well_tag_number": 112891, "lithology_from": "8.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201839}}, {"model": "wells.lithologydescription", "pk": "04ebf0ab-89ee-4c4f-b130-f67c7342870a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "115.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197658}}, {"model": "wells.lithologydescription", "pk": "04efddcf-c8ea-48d7-85d7-6bdf34c04bd7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "68.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203098}}, {"model": "wells.lithologydescription", "pk": "04fb24f6-5af4-4930-8878-e7645b149905", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "49.00", "lithology_to": "86.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Fractured @ 85'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199019}}, {"model": "wells.lithologydescription", "pk": "04fd3af7-a099-4876-bdb3-59eb47f53cc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199057}}, {"model": "wells.lithologydescription", "pk": "04ff0dae-6ac7-4ebd-aa9a-3bd87c81cdcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL/COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198932}}, {"model": "wells.lithologydescription", "pk": "0531837d-98bf-41d5-b7df-9cd5e284c46c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "81.00", "lithology_to": "97.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197677}}, {"model": "wells.lithologydescription", "pk": "053411a1-5078-4f20-9f10-7e84a8d606e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "47.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198363}}, {"model": "wells.lithologydescription", "pk": "053ae83c-4e58-4e74-a94d-8cbc3ae7e7a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "76.00", "lithology_to": "103.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199083}}, {"model": "wells.lithologydescription", "pk": "05435eab-15da-4e1e-82cb-fb885ec8a8ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "81.00", "lithology_to": "230.00", "lithology_raw_data": "glacial till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202588}}, {"model": "wells.lithologydescription", "pk": "05439a45-0bb5-4752-9bc8-15b39c4e2ccb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203023}}, {"model": "wells.lithologydescription", "pk": "055ca00f-3dea-4372-839a-8003935398ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, "well_tag_number": 112228, "lithology_from": "160.00", "lithology_to": "175.00", "lithology_raw_data": "NO CHANGES", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197411}}, {"model": "wells.lithologydescription", "pk": "0563d1d1-896c-40aa-86e2-c9afe51116b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "52.00", "lithology_to": "58.00", "lithology_raw_data": "SILTY CLAY WITH SOME VOLCANIC ASH LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED WITH SILTY WASH", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200849}}, {"model": "wells.lithologydescription", "pk": "056a3591-a8f6-4612-8954-c03ad12f2dc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:39:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, "well_tag_number": 113263, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203893}}, {"model": "wells.lithologydescription", "pk": "056c969a-1626-4ed5-a87f-950991409925", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well_tag_number": 113271, "lithology_from": "173.00", "lithology_to": "175.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203929}}, {"model": "wells.lithologydescription", "pk": "05726103-f195-414a-a942-5676f8b192e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "16.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "47", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197830}}, {"model": "wells.lithologydescription", "pk": "05834ce1-a875-49d2-898b-d72955aa4e1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well_tag_number": 113021, "lithology_from": "105.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202544}}, {"model": "wells.lithologydescription", "pk": "05856409-307f-4211-aa4e-bcdff8df8049", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "180.00", "lithology_to": "202.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201343}}, {"model": "wells.lithologydescription", "pk": "05868409-7495-400e-8e8c-46b84ca9fb28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "BROWN/BLACK ORGANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198093}}, {"model": "wells.lithologydescription", "pk": "05949452-9f2d-471d-83e9-079f93b210ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, "well_tag_number": 112911, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": "BOULDER AND FEW COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201942}}, {"model": "wells.lithologydescription", "pk": "0596a9ad-b406-49ce-a761-60a1c616e428", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202942}}, {"model": "wells.lithologydescription", "pk": "05990814-9089-4406-8b18-954c60dbc9aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-18T21:47:10Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "100.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM/HARD; CEMENTED GRAVEL, CLAY LAYER, BEDROCK 145", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199299}}, {"model": "wells.lithologydescription", "pk": "059ab219-7d72-41f5-982e-a16e8d9ea4bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "127.00", "lithology_to": "136.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198503}}, {"model": "wells.lithologydescription", "pk": "05ae4b0d-4e00-4d86-bbb2-210634633e0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200014}}, {"model": "wells.lithologydescription", "pk": "05bc566a-5ac2-4018-b507-296c37ed27df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "26.00", "lithology_to": "35.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202375}}, {"model": "wells.lithologydescription", "pk": "05bf400a-6cf4-4bc3-b4d4-11d2c803695e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, "well_tag_number": 112301, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197782}}, {"model": "wells.lithologydescription", "pk": "05c9b09e-e9ee-490a-b1c9-4851f182d888", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199342}}, {"model": "wells.lithologydescription", "pk": "05ca3fe7-0e04-4ac7-ad27-f61160264aa4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, "well_tag_number": 112306, "lithology_from": "165.00", "lithology_to": "169.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197812}}, {"model": "wells.lithologydescription", "pk": "05cac2ac-eb23-4215-82b6-9f620b4939c7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:35:05Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:35:05Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "116.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200120}}, {"model": "wells.lithologydescription", "pk": "05cd01fb-4a8a-40ba-94e3-3263cc060721", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "66.00", "lithology_to": "108.00", "lithology_raw_data": "till with cobbles", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Very tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197594}}, {"model": "wells.lithologydescription", "pk": "05d5ce31-72db-4955-a3bf-e76e6701adb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well_tag_number": 112628, "lithology_from": "6.00", "lithology_to": "135.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200282}}, {"model": "wells.lithologydescription", "pk": "05e2214f-beee-4d85-951a-323e9cc1f3d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "144.00", "lithology_to": "176.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203390}}, {"model": "wells.lithologydescription", "pk": "05e7cea6-830c-44cd-b97b-7eabcc34d176", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "128.00", "lithology_to": "140.00", "lithology_raw_data": "SAND MED-COARSE, SMALL MED PEBBLES BROWN & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201679}}, {"model": "wells.lithologydescription", "pk": "05eb227c-9478-4ac9-b53e-2472709ccc58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "262.00", "lithology_to": "350.00", "lithology_raw_data": "DARKER VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199812}}, {"model": "wells.lithologydescription", "pk": "060526b8-b671-4036-9e01-e966c9961d7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:48:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, "well_tag_number": 112950, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202144}}, {"model": "wells.lithologydescription", "pk": "06191599-3236-4fb8-acae-01956b88b10f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "257.00", "lithology_to": "278.00", "lithology_raw_data": "SAND, GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "300.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "300-400", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202211}}, {"model": "wells.lithologydescription", "pk": "061f0704-1fc5-47d0-8fef-5eb22d1e86d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "387.00", "lithology_to": "390.00", "lithology_raw_data": "FRIABLE", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201496}}, {"model": "wells.lithologydescription", "pk": "06381874-b808-4801-8924-244926cbeca6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "128.00", "lithology_to": "135.00", "lithology_raw_data": "and silts", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198261}}, {"model": "wells.lithologydescription", "pk": "065387f6-02a7-418e-87bf-2358d56abac6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well_tag_number": 112536, "lithology_from": "20.00", "lithology_to": "53.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199565}}, {"model": "wells.lithologydescription", "pk": "06664293-a506-4153-bb13-a2144bc3c2bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "24.00", "lithology_to": "34.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199434}}, {"model": "wells.lithologydescription", "pk": "068048f5-6c2d-4106-9b6e-4b8ce1d408e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well_tag_number": 112592, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND AND FINE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199927}}, {"model": "wells.lithologydescription", "pk": "0681817e-1a20-43a9-a2b0-c47a250d3398", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, "well_tag_number": 112911, "lithology_from": "37.00", "lithology_to": "47.00", "lithology_raw_data": "MEDIUM COARSE SAND & SOME COARSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201945}}, {"model": "wells.lithologydescription", "pk": "069303f2-a68c-434a-9e57-ab058ea2030b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T19:51:19Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "224.00", "lithology_to": "275.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197351}}, {"model": "wells.lithologydescription", "pk": "069d91b4-6c91-4804-b230-e7ebd7b76351", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:42:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, "well_tag_number": 113284, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "sand fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203966}}, {"model": "wells.lithologydescription", "pk": "06a6e3d7-dc3d-4c50-b238-4af5d8ed7556", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "393.00", "lithology_to": "396.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203166}}, {"model": "wells.lithologydescription", "pk": "06a934e8-b531-4e52-bcf6-3845b1d7205e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "208.00", "lithology_to": "212.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200958}}, {"model": "wells.lithologydescription", "pk": "06ba6d7f-6aaa-48c9-b0d5-b48b28a2a939", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well_tag_number": 112592, "lithology_from": "110.00", "lithology_to": "115.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199932}}, {"model": "wells.lithologydescription", "pk": "06c79927-9c44-4965-83d7-3adfc1cf60b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, "well_tag_number": 112316, "lithology_from": "1.00", "lithology_to": "144.00", "lithology_raw_data": "GRAVEL, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197862}}, {"model": "wells.lithologydescription", "pk": "06e99bf5-94f0-4f88-8403-e92d1c9c7e0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:44:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:44:36Z", "activity_submission": null, "well_tag_number": 112664, "lithology_from": "26.50", "lithology_to": "38.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200411}}, {"model": "wells.lithologydescription", "pk": "06edd9b2-89cf-4a47-bfd3-a39bb0da4951", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, "well_tag_number": 112682, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200489}}, {"model": "wells.lithologydescription", "pk": "06ef18d6-1cd1-4e8f-832a-3e6d67d933d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202219}}, {"model": "wells.lithologydescription", "pk": "06f3ad6a-a8fa-4fa6-a13a-e894ebe85a0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, "well_tag_number": 112518, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": "BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199409}}, {"model": "wells.lithologydescription", "pk": "06f3bf07-410f-4080-b3ca-9fbfca2d43d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "39.00", "lithology_to": "62.00", "lithology_raw_data": "fine to medium", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203530}}, {"model": "wells.lithologydescription", "pk": "06f8ec88-9151-44ee-854c-1dccda3c0efa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:00:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, "well_tag_number": 112234, "lithology_from": "47.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM/HARD B/BL VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "148'-190'= MEDIUM/HARD, BLUE/WHITE, CHANGES IN VOLCANIC - WHITE GNEISS; 261' = FRACTURE, 2 GPM; 275'-285=BROKEN AREAS IN ROCK, FRACTURED, WATER INCREASED TO 25+ GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197445}}, {"model": "wells.lithologydescription", "pk": "06feff20-bb47-49f2-aa95-07847e481c5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "190.00", "lithology_to": "243.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198613}}, {"model": "wells.lithologydescription", "pk": "070ac3ea-cf56-49de-ba93-2e3e582d11e0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:18:59Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:18:59Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "MEDIUM-HARD; COARSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199541}}, {"model": "wells.lithologydescription", "pk": "070ce3e1-85f0-43d4-aff1-6f6b7aac4acb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well_tag_number": 112391, "lithology_from": "30.00", "lithology_to": "105.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198437}}, {"model": "wells.lithologydescription", "pk": "071c1ea3-b14d-4217-b846-cf5418408d9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "48.00", "lithology_to": "50.00", "lithology_raw_data": "MEDIUM/SOFT, SAND-COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198794}}, {"model": "wells.lithologydescription", "pk": "0720f92e-b7ab-4af1-a718-48e5a79fbed2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": "STICKY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197924}}, {"model": "wells.lithologydescription", "pk": "072baa6f-b573-41c6-b14c-ca9b50ae557e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "260'-300'=1-5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198640}}, {"model": "wells.lithologydescription", "pk": "072d385d-cb01-4a91-affd-dad7fe074f85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "23.00", "lithology_to": "37.00", "lithology_raw_data": "SANDY CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197851}}, {"model": "wells.lithologydescription", "pk": "0730bece-dc74-417f-869b-33bc127c4bd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE TO MEDIUM SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199249}}, {"model": "wells.lithologydescription", "pk": "073f75ac-e08e-4204-b132-447de439af8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "106.00", "lithology_to": "152.00", "lithology_raw_data": "GREY/BROWN GRAVELS/SANDY/CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197975}}, {"model": "wells.lithologydescription", "pk": "0740fdb6-32aa-490d-9683-bdc2dd11d73b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "182.00", "lithology_to": "246.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK, WHITE, GREEN. WB FRACTURE AT 217'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159176}}, {"model": "wells.lithologydescription", "pk": "075109ef-eebc-45da-99db-7eef42ad8eba", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T19:58:40Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:58:40Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198734}}, {"model": "wells.lithologydescription", "pk": "075aa362-fc9c-450d-995d-b39a22aef318", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well_tag_number": 112689, "lithology_from": "50.00", "lithology_to": "65.00", "lithology_raw_data": "VOLCANIC MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200523}}, {"model": "wells.lithologydescription", "pk": "076d54ef-ac07-496d-a264-0ba87209ecc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well_tag_number": 112862, "lithology_from": "105.00", "lithology_to": "110.00", "lithology_raw_data": "CLAY, GRAVEL WITH SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201650}}, {"model": "wells.lithologydescription", "pk": "07702412-c90a-4925-b201-ab8453f5df7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "120.00", "lithology_to": "300.00", "lithology_raw_data": "with black streaks", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199701}}, {"model": "wells.lithologydescription", "pk": "0771a826-7814-4d88-aafa-19a616ed7c86", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:39:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:39:14Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "226.00", "lithology_to": "229.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200129}}, {"model": "wells.lithologydescription", "pk": "0780ab4a-a7b6-491b-affa-9fa165f5a811", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:49:22Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "200.00", "lithology_to": "230.00", "lithology_raw_data": "SS & Shale clay lenses - soft layers of ash like shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Losses of circulation", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203570}}, {"model": "wells.lithologydescription", "pk": "07855967-4b98-4905-a98d-b3d4f4803cf3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, "well_tag_number": 112756, "lithology_from": "74.00", "lithology_to": "256.00", "lithology_raw_data": "OPEN HOLE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200941}}, {"model": "wells.lithologydescription", "pk": "0787bfb9-689d-43af-a91c-f094e5c9658d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202757}}, {"model": "wells.lithologydescription", "pk": "07927a2b-619f-48f7-be48-c8f388cf4f60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "700.00", "lithology_to": "780.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203628}}, {"model": "wells.lithologydescription", "pk": "07b634de-90c7-42d2-9140-7bdfd05eacd1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "437.00", "lithology_to": "442.00", "lithology_raw_data": "WITH BROWNISH INTERBEDED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201502}}, {"model": "wells.lithologydescription", "pk": "07c3075e-f20f-4f6d-b84f-b28c273bae6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "280.00", "lithology_to": "325.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198107}}, {"model": "wells.lithologydescription", "pk": "07d1351c-70aa-431d-a10c-a6fbd74fb526", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-08T16:46:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, "well_tag_number": 113174, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203427}}, {"model": "wells.lithologydescription", "pk": "07d21fc3-0d0e-4dd6-8b03-b04cab09d31c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "112.00", "lithology_to": "114.00", "lithology_raw_data": "MEDIUM-HARD, SANDSTONE/GREY SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "OXIDIZED/WEATHERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198067}}, {"model": "wells.lithologydescription", "pk": "07e304b6-0a84-4f7b-a90d-16f1cf8dd55e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well_tag_number": 112990, "lithology_from": "25.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY & COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202407}}, {"model": "wells.lithologydescription", "pk": "07e35822-9363-4ce2-b0fc-0917dc265aaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:48Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "256.00", "lithology_to": "273.00", "lithology_raw_data": "and sands", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197682}}, {"model": "wells.lithologydescription", "pk": "07e8206a-98be-45a0-a2f4-31897505e509", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, "well_tag_number": 113289, "lithology_from": "47.00", "lithology_to": "380.00", "lithology_raw_data": "siltstone/shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "black, fractures at 215 ft= 1 GPM, 320 ft=2.9GPM, some clay in fractures", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203986}}, {"model": "wells.lithologydescription", "pk": "07f6155d-1518-437d-9b59-7e9d70c3f7d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "17.00", "lithology_to": "109.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203193}}, {"model": "wells.lithologydescription", "pk": "081ccfe1-2b57-4316-b226-972acb21121e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "167.00", "lithology_to": "290.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199054}}, {"model": "wells.lithologydescription", "pk": "08237152-8651-45ec-bed2-aad2c170bd70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200720}}, {"model": "wells.lithologydescription", "pk": "08271f3a-e61b-45cd-8620-16b9e3576a82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "43.00", "lithology_to": "46.00", "lithology_raw_data": "and clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197617}}, {"model": "wells.lithologydescription", "pk": "082e5a03-cd9f-419c-b09a-8b4355f9a632", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "95.00", "lithology_to": "112.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201924}}, {"model": "wells.lithologydescription", "pk": "084dff1c-2cb0-4373-9cdb-def00b23e096", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, "well_tag_number": 112316, "lithology_from": "175.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197865}}, {"model": "wells.lithologydescription", "pk": "084e39ce-16e6-491d-9da4-e3cc257ed00e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "50.00", "lithology_to": "73.00", "lithology_raw_data": "VERY STIFF; CH - CLAY, HIGH TOUGHNESS, NO DILATENCY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201074}}, {"model": "wells.lithologydescription", "pk": "086751ab-44e8-407e-8487-33d44a962e84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "FINE SAND WITH MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197530}}, {"model": "wells.lithologydescription", "pk": "0894048c-6cb4-4e38-95d8-12bd93db8107", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "356.00", "lithology_to": "391.00", "lithology_raw_data": "GREY COBBLY TILL, WET", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199762}}, {"model": "wells.lithologydescription", "pk": "08a1f9ac-462d-4d0e-9296-9db8ab797480", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well_tag_number": 112925, "lithology_from": "135.00", "lithology_to": "149.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LITTLE WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202049}}, {"model": "wells.lithologydescription", "pk": "08bb1c04-2d30-4a11-9668-4bfa71495483", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "43.00", "lithology_to": "50.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199476}}, {"model": "wells.lithologydescription", "pk": "08bfb6fd-5860-417d-a8e5-2bee09498ac0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "HARD/LOOSE BOULDERS/GRAVELS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197972}}, {"model": "wells.lithologydescription", "pk": "08c52d8d-d8de-462c-95ce-53d8e90a6fbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "168.00", "lithology_to": "198.00", "lithology_raw_data": "CLAY WITH SMALL W.B. VEINS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203175}}, {"model": "wells.lithologydescription", "pk": "08dd0fa8-0215-435d-ab84-6615675a609c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "353.00", "lithology_to": "357.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Water-bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199041}}, {"model": "wells.lithologydescription", "pk": "08df93ea-ea88-41f0-a902-5c4e55504461", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "96.00", "lithology_to": "110.00", "lithology_raw_data": "and gravels", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198163}}, {"model": "wells.lithologydescription", "pk": "08ed723b-58f3-4102-973f-d296c923899d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "120.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198662}}, {"model": "wells.lithologydescription", "pk": "09004d83-1fe4-456a-a351-e1563778c898", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, "well_tag_number": 113116, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203050}}, {"model": "wells.lithologydescription", "pk": "090bb7c6-fc32-48f0-9ba9-e397c0cb1f01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "177.00", "lithology_to": "186.00", "lithology_raw_data": "silt till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203655}}, {"model": "wells.lithologydescription", "pk": "092b7567-8a0a-4cbe-9f10-32af9609b456", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200055}}, {"model": "wells.lithologydescription", "pk": "09340482-24c5-44b5-86a7-90377678b0c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "47.00", "lithology_to": "54.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198342}}, {"model": "wells.lithologydescription", "pk": "095389eb-0707-4a15-b1fe-7087548ab976", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "0.00", "lithology_to": "105.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199590}}, {"model": "wells.lithologydescription", "pk": "09668f4a-3cd2-4a45-a431-68fe783d09b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:50:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, "well_tag_number": 112746, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "TOPSOIL WITH SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200867}}, {"model": "wells.lithologydescription", "pk": "0968cd8d-626a-4ed2-83ac-629a5516a996", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202371}}, {"model": "wells.lithologydescription", "pk": "09739337-1140-45b9-b4b8-a3a0b078746c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198947}}, {"model": "wells.lithologydescription", "pk": "09743e26-be10-4ca6-b224-91e7f0590de6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, "well_tag_number": 113149, "lithology_from": "15.00", "lithology_to": "42.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203285}}, {"model": "wells.lithologydescription", "pk": "097a37b4-de76-4315-abbf-43de417be9e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "1.00", "lithology_to": "8.00", "lithology_raw_data": "LIGHT BROWN SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203945}}, {"model": "wells.lithologydescription", "pk": "097c9e12-5ba1-48b8-ab9c-61846b4569a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 400'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203877}}, {"model": "wells.lithologydescription", "pk": "09869772-250c-437b-aedd-d550c685ec5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200095}}, {"model": "wells.lithologydescription", "pk": "09871086-1493-41f5-980b-04ced82711d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "rockfill", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201259}}, {"model": "wells.lithologydescription", "pk": "098d55f2-bfda-4eb6-8b31-8aeaa7f32133", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "275.00", "lithology_to": "286.00", "lithology_raw_data": null, "lithology_description": "59", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202387}}, {"model": "wells.lithologydescription", "pk": "099f1baa-7a50-4b2d-b607-a3fc9c62a755", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200932}}, {"model": "wells.lithologydescription", "pk": "09a2ffaf-399b-4448-90d3-d19329e87651", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well_tag_number": 112520, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199416}}, {"model": "wells.lithologydescription", "pk": "09a428b6-b49f-4236-a3ea-4b9947e1d406", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, "well_tag_number": 112785, "lithology_from": "7.42", "lithology_to": "62.20", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201122}}, {"model": "wells.lithologydescription", "pk": "09badf7b-5785-4da7-a22b-5b092bce7a7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "541.00", "lithology_to": "603.00", "lithology_raw_data": "grey/green", "lithology_description": "61", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "80.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "584',617',631',642',655'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201381}}, {"model": "wells.lithologydescription", "pk": "09c1c2aa-f0e7-4a5b-a2cb-45f762bd7076", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "167.00", "lithology_to": "173.00", "lithology_raw_data": "BROWN-GREY, SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198073}}, {"model": "wells.lithologydescription", "pk": "09c7156d-2dde-4974-b7f5-5f88a49cd6fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199251}}, {"model": "wells.lithologydescription", "pk": "09c96d16-e527-4a9c-94c1-aea2d431c50e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "254.00", "lithology_to": "385.00", "lithology_raw_data": "fine and coarse grain", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203841}}, {"model": "wells.lithologydescription", "pk": "09d9d180-12f8-4e86-8706-8aad8e2cb498", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "115.00", "lithology_to": "121.00", "lithology_raw_data": "GRAVEL, SAND - W.B DIRTY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132266}}, {"model": "wells.lithologydescription", "pk": "09e1ddc0-3e31-415d-a740-99c4aeabe90b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, "well_tag_number": 112695, "lithology_from": "110.00", "lithology_to": "118.00", "lithology_raw_data": "VOLCANIC MIX", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200543}}, {"model": "wells.lithologydescription", "pk": "09e366be-9547-412a-ae7a-4b66c9820465", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-03T13:11:41Z", "activity_submission": null, "well_tag_number": 113269, "lithology_from": "65.00", "lithology_to": "116.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SET GRAVEL PACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203916}}, {"model": "wells.lithologydescription", "pk": "09e471b1-159c-42f3-82fb-22fc9295f6cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:07:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, "well_tag_number": 112970, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "GRAVEL, SAND, CLAY,BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202284}}, {"model": "wells.lithologydescription", "pk": "0a143c42-2700-4025-8795-8412b5ff141c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "79.00", "lithology_to": "81.00", "lithology_raw_data": "GRAVEL & SAND WITH FINES, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201659}}, {"model": "wells.lithologydescription", "pk": "0a1c096b-2400-476b-bd36-30b409a42d08", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T21:20:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, "well_tag_number": 100001, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL, BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 129522}}, {"model": "wells.lithologydescription", "pk": "0a25a9bb-c531-4f85-9c6c-73ba6887a345", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "11.00", "lithology_to": "32.00", "lithology_raw_data": "and fine grained sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198723}}, {"model": "wells.lithologydescription", "pk": "0a2bbcd9-3e41-4c80-882d-0b5b5dec03f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "139.00", "lithology_to": "198.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202965}}, {"model": "wells.lithologydescription", "pk": "0a4b41b7-2d77-4af8-bfda-056e52f0023c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200029}}, {"model": "wells.lithologydescription", "pk": "0a575d23-d4b4-4523-84df-ccfedd04b0e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "1.00", "lithology_to": "14.00", "lithology_raw_data": "GRAVELLY TILL WITH BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201346}}, {"model": "wells.lithologydescription", "pk": "0a646f32-087f-423e-b7ab-41adfd738a46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "135.00", "lithology_to": "138.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202004}}, {"model": "wells.lithologydescription", "pk": "0a6bdddb-45ed-4ab5-b2ce-daf30a473d99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "206.00", "lithology_to": "210.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201774}}, {"model": "wells.lithologydescription", "pk": "0a6be229-95ce-44e0-ad2d-49ee1fd832c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": "sand with clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203316}}, {"model": "wells.lithologydescription", "pk": "0a6d67a1-4f32-436a-9ecd-c307a90c6406", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202372}}, {"model": "wells.lithologydescription", "pk": "0a6ec829-fb09-4bea-af64-956c169d0f44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, "well_tag_number": 112229, "lithology_from": "116.00", "lithology_to": "220.00", "lithology_raw_data": "SHALE BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197416}}, {"model": "wells.lithologydescription", "pk": "0a94de65-0c5c-4050-b2c2-75bc8aad294b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201911}}, {"model": "wells.lithologydescription", "pk": "0ab25f1e-6c2d-4bb0-8eca-b189de411913", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:45:22Z", "activity_submission": null, "well_tag_number": 113016, "lithology_from": "168.00", "lithology_to": "175.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202511}}, {"model": "wells.lithologydescription", "pk": "0ac16003-2428-42e5-850a-1174fdfb1c27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "26.00", "lithology_to": "36.00", "lithology_raw_data": "VERY LOOSE, DARK YELLOWISH BROWN, FINE TO MEDIUM SAND AND SOME COARSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201172}}, {"model": "wells.lithologydescription", "pk": "0ac35b81-3936-4b3e-b576-eab17efdb666", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "47.00", "lithology_to": "88.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200485}}, {"model": "wells.lithologydescription", "pk": "0ace6083-9c49-4d99-aa8c-99d81590472f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "105.00", "lithology_to": "111.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199379}}, {"model": "wells.lithologydescription", "pk": "0ad2fdc5-f213-4c04-b053-500a5a5677d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198839}}, {"model": "wells.lithologydescription", "pk": "0ad590b5-d453-4ea6-8f00-7c08cb26daa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199026}}, {"model": "wells.lithologydescription", "pk": "0ad6ed1c-8317-4827-977c-f8fe63c23057", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well_tag_number": 112392, "lithology_from": "71.00", "lithology_to": "76.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198444}}, {"model": "wells.lithologydescription", "pk": "0ad7288b-ec46-4ea8-b74b-ac8470155c15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "245.00", "lithology_to": "250.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200111}}, {"model": "wells.lithologydescription", "pk": "0ad9ed59-4ed7-4ba7-b3d6-6101a89b622f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SAND WITH GRAVEL, W COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DENSE/STIFF. MOIST.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159173}}, {"model": "wells.lithologydescription", "pk": "0aed9a96-43aa-4941-8b67-d557947cea3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "125.00", "lithology_to": "145.00", "lithology_raw_data": "WHITE/BLACK GRANITE WITH SEAM OF PINK FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198424}}, {"model": "wells.lithologydescription", "pk": "0b239ed5-cd3c-4251-8d84-860ea8e874f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "9.00", "lithology_to": "24.00", "lithology_raw_data": "CEMENTED SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202241}}, {"model": "wells.lithologydescription", "pk": "0b2576b1-b528-413e-ad55-0e085394ced6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, "well_tag_number": 113147, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 244'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203281}}, {"model": "wells.lithologydescription", "pk": "0b3cf83d-312d-44f8-9f40-b0d36947120d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well_tag_number": 112866, "lithology_from": "12.00", "lithology_to": "29.00", "lithology_raw_data": "with cobbles", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201681}}, {"model": "wells.lithologydescription", "pk": "0b40a50c-14f6-4bb2-b073-ef669340901e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "255.00", "lithology_to": "260.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198768}}, {"model": "wells.lithologydescription", "pk": "0b410cf7-929d-47e9-907e-1d18e3c2dab6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "37.00", "lithology_to": "47.00", "lithology_raw_data": "TILL & CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202520}}, {"model": "wells.lithologydescription", "pk": "0b4bc721-ee66-4c38-8574-b0210738ad6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well_tag_number": 112613, "lithology_from": "16.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200090}}, {"model": "wells.lithologydescription", "pk": "0b4d185b-cf34-4627-8e58-a43beeed89ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "FINE TO MEDIUM GRAVEL CLAY SEAMS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199067}}, {"model": "wells.lithologydescription", "pk": "0b52297e-e2ac-4b8d-9a87-8cfad551802e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "361.00", "lithology_to": "541.00", "lithology_raw_data": "grey/green", "lithology_description": "52", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "70.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "361',478'- lots of chunks", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201380}}, {"model": "wells.lithologydescription", "pk": "0b52b904-84ed-412d-97ae-cc5250b3fa1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:32:29Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "122.00", "lithology_to": "186.00", "lithology_raw_data": "clay, little gravel mixed", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "118 to 138 very hard", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203379}}, {"model": "wells.lithologydescription", "pk": "0b5d01de-d448-4518-b1d5-a063cbc19b0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, "well_tag_number": 113291, "lithology_from": "78.00", "lithology_to": "140.00", "lithology_raw_data": "sand, med-coarse", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203995}}, {"model": "wells.lithologydescription", "pk": "0b5e4f2a-e644-4fc3-8aa9-c953610dda28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, "well_tag_number": 112686, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200505}}, {"model": "wells.lithologydescription", "pk": "0b63d11a-434a-46c7-abf0-7eea2db1ca90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201961}}, {"model": "wells.lithologydescription", "pk": "0b6dd7f2-0a30-4001-8445-900687d67fa0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well_tag_number": 113180, "lithology_from": "95.00", "lithology_to": "135.00", "lithology_raw_data": "sand layers", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203449}}, {"model": "wells.lithologydescription", "pk": "0b73db3a-e7ed-4d5a-aadc-9cf25c5a7caf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "31.00", "lithology_to": "70.00", "lithology_raw_data": "SILT, WOOD", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202305}}, {"model": "wells.lithologydescription", "pk": "0b7446a1-614f-4975-888e-85b94bda087f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "257.00", "lithology_to": "262.00", "lithology_raw_data": "BROWNISH GREY, FINE, FRIABLE, DIRTY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201606}}, {"model": "wells.lithologydescription", "pk": "0b8a3c6f-d8b4-42ae-a3a8-1408cdc4181c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well_tag_number": 112548, "lithology_from": "25.00", "lithology_to": "130.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199647}}, {"model": "wells.lithologydescription", "pk": "0b945b69-66f5-44d1-80f2-46ca872d0e5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM GRAVEL, FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199066}}, {"model": "wells.lithologydescription", "pk": "0b95a884-f775-472f-9ecb-2dca0c12d792", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "27.00", "lithology_to": "75.00", "lithology_raw_data": "fine to medium grained", "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198255}}, {"model": "wells.lithologydescription", "pk": "0b990aad-1cf8-4855-8cbe-ffa0195221f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "3.00", "lithology_to": "25.00", "lithology_raw_data": "BROWN FINE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200905}}, {"model": "wells.lithologydescription", "pk": "0baf012e-8591-4fe6-929c-aa9730a98830", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, "well_tag_number": 112338, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198088}}, {"model": "wells.lithologydescription", "pk": "0bb76a57-a32d-468b-ae60-7fcfa8e4d0eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "117.00", "lithology_to": "129.00", "lithology_raw_data": "sand / gravel", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198202}}, {"model": "wells.lithologydescription", "pk": "0bbacdde-ca93-4b63-9512-48a07ba898b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "120.00", "lithology_to": "132.00", "lithology_raw_data": "ORANGE LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198045}}, {"model": "wells.lithologydescription", "pk": "0bbb69c2-57b7-4dd5-a4f7-e2d52e34e181", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:22:30Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-15T21:35:14Z", "activity_submission": null, "well_tag_number": 112944, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SOME WOOD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202124}}, {"model": "wells.lithologydescription", "pk": "0bc7208d-8fdc-41bc-879f-67c13ddce715", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "95.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK, GRAPHITE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199177}}, {"model": "wells.lithologydescription", "pk": "0bce8526-a22c-4cf8-8ea3-16a66479d5cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, "well_tag_number": 113262, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203887}}, {"model": "wells.lithologydescription", "pk": "0bcfa1c5-c847-4a22-a60a-6dac809f5f4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "94.00", "lithology_to": "108.00", "lithology_raw_data": "with clay/silt", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203921}}, {"model": "wells.lithologydescription", "pk": "0be3f409-949d-457a-836e-90a0b044162f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well_tag_number": 112919, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "(TILL)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "01", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202014}}, {"model": "wells.lithologydescription", "pk": "0be9dda8-ede7-49e2-a0cf-6099d8910071", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "190.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198583}}, {"model": "wells.lithologydescription", "pk": "0becaf5d-ff79-4056-bfd9-433c900f56f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:19:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, "well_tag_number": 112659, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE; CLOSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200385}}, {"model": "wells.lithologydescription", "pk": "0bf541c8-0c8f-423d-9282-215a00d63609", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "73.00", "lithology_to": "115.00", "lithology_raw_data": "bouldery with gravel", "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203701}}, {"model": "wells.lithologydescription", "pk": "0bf77bbd-2a50-4dab-bf4b-10c61f88dffe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": "ROCK & CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201738}}, {"model": "wells.lithologydescription", "pk": "0c09d239-81a9-4df6-83b9-ab5938654794", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200096}}, {"model": "wells.lithologydescription", "pk": "0c14d3f8-b1a5-45ad-9451-8f66dfa5d95d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, "well_tag_number": 112297, "lithology_from": "80.00", "lithology_to": "123.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197769}}, {"model": "wells.lithologydescription", "pk": "0c2427e4-4f14-4cc8-84e7-4263abae0e00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "86.00", "lithology_to": "90.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198968}}, {"model": "wells.lithologydescription", "pk": "0c2b229d-93dc-49e3-8326-ed24ffa397e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:43:15Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:26:40Z", "activity_submission": null, "well_tag_number": 112999, "lithology_from": "0.00", "lithology_to": "116.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202450}}, {"model": "wells.lithologydescription", "pk": "0c4c695f-4ce2-4ffa-b5e9-98ba84d27f14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "108.00", "lithology_to": "117.00", "lithology_raw_data": "SS GRY SOME S & P ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143919}}, {"model": "wells.lithologydescription", "pk": "0c4d8c32-a3a4-4a69-905c-b5a990bcd41e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "6.00", "lithology_to": "98.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199892}}, {"model": "wells.lithologydescription", "pk": "0c4f10c7-45c2-434a-92b0-111ebbd9b08e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "55.00", "lithology_to": "58.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200071}}, {"model": "wells.lithologydescription", "pk": "0c570ad2-726a-45c8-958f-8f2b58ab39d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well_tag_number": 112528, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199509}}, {"model": "wells.lithologydescription", "pk": "0c758139-87da-44ce-9d0a-8c0032b2b057", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "204.00", "lithology_to": "220.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201048}}, {"model": "wells.lithologydescription", "pk": "0c776208-1fd5-4ad2-9cbf-e1978bf31816", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198943}}, {"model": "wells.lithologydescription", "pk": "0c7a69d1-2b04-4399-82f6-3aa712ce4e71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well_tag_number": 112577, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199836}}, {"model": "wells.lithologydescription", "pk": "0c7c318b-1477-4488-945c-c70b7fabb41a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": "62.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "28", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198221}}, {"model": "wells.lithologydescription", "pk": "0c7f4f88-76e7-4ac0-9524-588c810c9d3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:40:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, "well_tag_number": 112298, "lithology_from": "72.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197771}}, {"model": "wells.lithologydescription", "pk": "0c864e03-7499-484f-b0c6-3b99716c94c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "396.00", "lithology_to": "410.00", "lithology_raw_data": "SANDSTONE FINE WITH SHALE & SILTSTONE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201498}}, {"model": "wells.lithologydescription", "pk": "0c8df864-b62c-4480-a327-1ad49ec74a84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "335.00", "lithology_to": "340.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "STATIC 318.2'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201614}}, {"model": "wells.lithologydescription", "pk": "0c8e7039-b690-4030-9623-b2ec292f887b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201907}}, {"model": "wells.lithologydescription", "pk": "0c9ce089-ae12-487d-bc7b-629248e2d349", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well_tag_number": 112750, "lithology_from": "4.00", "lithology_to": "33.00", "lithology_raw_data": "GREY SILT SAND & GRAVEL TILL - BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200895}}, {"model": "wells.lithologydescription", "pk": "0c9e833f-8848-40c5-903d-abf81bd4b227", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:35:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, "well_tag_number": 112745, "lithology_from": "15.00", "lithology_to": "33.00", "lithology_raw_data": "SAND AND GRAVEL WIH SILTY CLAY LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; SILTY WASH; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200865}}, {"model": "wells.lithologydescription", "pk": "0ca4c2b1-2ae5-4666-aed8-164f00426ab8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "122.00", "lithology_to": "141.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198758}}, {"model": "wells.lithologydescription", "pk": "0cce3e79-84c7-4258-819c-86551cd36092", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "152.00", "lithology_to": "165.00", "lithology_raw_data": "SAND/GRAVELS IN CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5+ USGPM; SILTY WASH/OVERLAYING BEDROCK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197976}}, {"model": "wells.lithologydescription", "pk": "0cf1dd73-7788-45ed-a9c4-379a2b0eb01a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "53.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201665}}, {"model": "wells.lithologydescription", "pk": "0d052de4-dde8-405e-b535-27c725d84d42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T19:13:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, "well_tag_number": 113036, "lithology_from": "155.00", "lithology_to": "257.00", "lithology_raw_data": "SHALE, SOFT, BLACK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202624}}, {"model": "wells.lithologydescription", "pk": "0d0ba1f0-3eed-4c4f-acff-7b265bd5ca3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "166.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198358}}, {"model": "wells.lithologydescription", "pk": "0d0f0f13-fe1b-4ffb-bc70-22fcc08f835a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "3.00", "lithology_to": "78.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198101}}, {"model": "wells.lithologydescription", "pk": "0d126397-f601-4ea8-9272-d411d7593065", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "217.00", "lithology_to": "250.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, TAN AND PINK; WATER ZONES; SOLID; WATER BEARING @ 235'; SOFT SPOTS AND SOFT FRACTURED ZONES @ 226', 235'* AND 244'*", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200726}}, {"model": "wells.lithologydescription", "pk": "0d146d61-f71b-4cd0-92e7-43f63225c7c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, "well_tag_number": 112753, "lithology_from": "69.00", "lithology_to": "71.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200922}}, {"model": "wells.lithologydescription", "pk": "0d14dc38-41b5-49ca-b8f4-3748ca0e4ae7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:15:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, "well_tag_number": 112971, "lithology_from": "1.00", "lithology_to": "21.00", "lithology_raw_data": "GRAVEL, SAND, CLAY, COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202289}}, {"model": "wells.lithologydescription", "pk": "0d1e4e7f-209f-4959-9b49-61b659d4e9dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "16.00", "lithology_to": "23.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200056}}, {"model": "wells.lithologydescription", "pk": "0d357230-ac5e-4182-b716-e54ddd2dcf58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "112.00", "lithology_to": "115.00", "lithology_raw_data": "S+P, M.W.", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201526}}, {"model": "wells.lithologydescription", "pk": "0d465a90-651f-42d0-a1a7-8465d5b05a68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "13.00", "lithology_to": "47.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198362}}, {"model": "wells.lithologydescription", "pk": "0d5139ef-4117-49dd-9bb7-3bfa376a18a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "121.00", "lithology_to": "185.00", "lithology_raw_data": "SEVERAL FRACTURED AREAS", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197391}}, {"model": "wells.lithologydescription", "pk": "0d6042b2-c0eb-4dda-86b3-c82c9d41d852", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well_tag_number": 113166, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203353}}, {"model": "wells.lithologydescription", "pk": "0d668cc6-a039-4c50-a134-f0d2b3d68462", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200616}}, {"model": "wells.lithologydescription", "pk": "0d6ba71c-3e26-4815-9fa6-2b5d4666182b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "134.00", "lithology_to": "165.00", "lithology_raw_data": "COARSE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200831}}, {"model": "wells.lithologydescription", "pk": "0d6bc9e7-e1c9-440c-8ee3-77a788888f19", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "219.00", "lithology_to": "232.00", "lithology_raw_data": "SANDSTONE / SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY; LAYERED AND INTERBETED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199507}}, {"model": "wells.lithologydescription", "pk": "0d7b2ba3-ec5d-414b-919a-dee062b9601c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "DARK BROWN TO BLACK SILTY GRAVELS, WET TO W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203232}}, {"model": "wells.lithologydescription", "pk": "0d827844-4faa-48c5-afc2-226ada27c70d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "60.00", "lithology_to": "72.00", "lithology_raw_data": "CLEAN W.B. MEDIUM GRAVEL WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198452}}, {"model": "wells.lithologydescription", "pk": "0d84f85c-5a74-4509-8954-4fe3da80a40c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:15:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, "well_tag_number": 112926, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "MEDIUM GRAVEL/WOOD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202053}}, {"model": "wells.lithologydescription", "pk": "0dad5ba0-9c78-4db6-a155-08efee940487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "Cobbles", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199560}}, {"model": "wells.lithologydescription", "pk": "0dae41c3-6a37-4447-af4a-597e8b55a51c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well_tag_number": 112879, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND & BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ODEX CASING FROM 0 - 220", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201750}}, {"model": "wells.lithologydescription", "pk": "0db0f30a-e561-411e-aec2-e828eece39a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "GREY/RED VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197366}}, {"model": "wells.lithologydescription", "pk": "0dbe5b95-f73a-4d52-b6d7-b68a33db4fa0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "240.00", "lithology_to": "310.00", "lithology_raw_data": "BLACK/GREY VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198155}}, {"model": "wells.lithologydescription", "pk": "0dcb8b6b-9bdc-4ef7-8f7a-000eca7f2a60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well_tag_number": 113152, "lithology_from": "25.00", "lithology_to": "28.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": " o-iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203306}}, {"model": "wells.lithologydescription", "pk": "0dd30a9f-388f-4fd2-a32f-1ed3610d81c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202780}}, {"model": "wells.lithologydescription", "pk": "0de22362-c374-433b-a95a-566b8eef6bd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "115.00", "lithology_to": "144.00", "lithology_raw_data": "GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203173}}, {"model": "wells.lithologydescription", "pk": "0e072b35-c5d1-4bc7-9e96-3a4def339680", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:30:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:30:48Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "440.00", "lithology_to": "540.00", "lithology_raw_data": "SILT/CLAY LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198824}}, {"model": "wells.lithologydescription", "pk": "0e0e9325-3677-493c-b80e-1e654268d673", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "127.00", "lithology_to": "167.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201088}}, {"model": "wells.lithologydescription", "pk": "0e1c4a7a-8807-4c2d-ac6c-d2bb4f89c909", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "16.00", "lithology_to": "40.00", "lithology_raw_data": "ANGALAR ROCK WITH SLIDE ROCK ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197837}}, {"model": "wells.lithologydescription", "pk": "0e2b9ed6-69b7-4ddd-93f3-e109f6b004fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well_tag_number": 113304, "lithology_from": "83.00", "lithology_to": "84.00", "lithology_raw_data": "seals water", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204056}}, {"model": "wells.lithologydescription", "pk": "0e2c26f9-63c9-40a3-b5bc-5198c1d1fd96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "14.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199101}}, {"model": "wells.lithologydescription", "pk": "0e3e6d4e-23ac-412e-80a2-e126e8a05ce0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "4.00", "lithology_to": "63.00", "lithology_raw_data": "BROWN, GREY VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197353}}, {"model": "wells.lithologydescription", "pk": "0e4dc7c1-99dd-4d85-9808-10d92102a744", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "220.00", "lithology_to": "258.00", "lithology_raw_data": "with quartz layers", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199716}}, {"model": "wells.lithologydescription", "pk": "0e4e8dc6-d80d-44c9-b7ed-071e4b86644c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:09:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, "well_tag_number": 112995, "lithology_from": "9.00", "lithology_to": "72.00", "lithology_raw_data": "GRAVEL/COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202443}}, {"model": "wells.lithologydescription", "pk": "0e50b69b-cf2c-4810-b0c1-dbf6ca82bd5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "80.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198702}}, {"model": "wells.lithologydescription", "pk": "0e59f3d1-6646-439c-8259-67cbd543c167", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well_tag_number": 112483, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, SOME SILT TRACES, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199165}}, {"model": "wells.lithologydescription", "pk": "0e6affc2-68fe-4aa5-a2c6-c352ebdcd992", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203870}}, {"model": "wells.lithologydescription", "pk": "0e6bfb0f-1051-4fa2-8f51-198eec800bb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:23:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, "well_tag_number": 112972, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": "SAND, GRAVEL, CLAY, COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-3 DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202293}}, {"model": "wells.lithologydescription", "pk": "0e715abc-8fea-4575-846c-f0e7998ac401", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "345.00", "lithology_to": "345.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "16.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202529}}, {"model": "wells.lithologydescription", "pk": "0e79eeb5-1764-484f-bee2-b1f0482d0cf9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "338.00", "lithology_to": "343.00", "lithology_raw_data": "very sandy, some silt color", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200341}}, {"model": "wells.lithologydescription", "pk": "0e7b2076-855c-4c65-bd42-71ef56951585", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-02T21:43:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-02T21:43:35Z", "activity_submission": null, "well_tag_number": 110627, "lithology_from": "44.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 187791}}, {"model": "wells.lithologydescription", "pk": "0e7f5b4b-f0a1-446f-95c0-2137d7ba8555", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "60.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199139}}, {"model": "wells.lithologydescription", "pk": "0e81f2d0-7c61-47e8-901b-caaac81357f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:35:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, "well_tag_number": 113090, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202925}}, {"model": "wells.lithologydescription", "pk": "0e8ffd36-5667-4f31-8e10-630d8ff2e83a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202270}}, {"model": "wells.lithologydescription", "pk": "0e9689df-696c-49f9-a70b-bf4e6750fc1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T17:20:03Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "Hydro-fracked open hole", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203375}}, {"model": "wells.lithologydescription", "pk": "0eafd231-66bd-477b-a6f9-b34cac18b831", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, "well_tag_number": 112900, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201890}}, {"model": "wells.lithologydescription", "pk": "0eb020a8-eeed-418f-b733-5dc6edfacb2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "26.00", "lithology_to": "121.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197390}}, {"model": "wells.lithologydescription", "pk": "0eb52e73-6a2f-48ac-af1b-1aa44d4071cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:48:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, "well_tag_number": 112968, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202275}}, {"model": "wells.lithologydescription", "pk": "0ec76e82-144c-4666-889c-bc849f966281", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:02:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-27T23:03:41Z", "activity_submission": null, "well_tag_number": 112700, "lithology_from": "37.00", "lithology_to": "283.00", "lithology_raw_data": "SOLID BEDROCK, VOLCANIC, SOME BASALT LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200563}}, {"model": "wells.lithologydescription", "pk": "0ec8d593-af40-4bba-9c5a-9c7f3afdfbe3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "237.00", "lithology_to": "240.00", "lithology_raw_data": "VERY DIRTY, MEDIUM GREY SAND WITH VOLCANIC ASH AND CLAY LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED; VERY DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200663}}, {"model": "wells.lithologydescription", "pk": "0ecd301a-961c-4215-9f55-38b5c10bbf16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:17Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "80.00", "lithology_to": "93.00", "lithology_raw_data": "SHALE/HARD BROWN SHALE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197940}}, {"model": "wells.lithologydescription", "pk": "0ecd55d2-db91-4daa-954d-dda079babeaa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "110.00", "lithology_to": "114.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199799}}, {"model": "wells.lithologydescription", "pk": "0ed56754-f116-4bc9-9187-9a6feab29666", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "50.00", "lithology_to": "75.00", "lithology_raw_data": "BROWN FINE SANDS (WET)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199423}}, {"model": "wells.lithologydescription", "pk": "0ee6c5fe-64da-431c-a7f2-cdbb7bf2eeb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well_tag_number": 112577, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199837}}, {"model": "wells.lithologydescription", "pk": "0ee9765a-de25-4382-85bb-969ebe67ec30", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, "well_tag_number": 113105, "lithology_from": "55.00", "lithology_to": "215.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "200' of pvc liner bottom 10' perforated", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203006}}, {"model": "wells.lithologydescription", "pk": "0eee1e79-f329-4d6c-b901-fc36669744a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, "well_tag_number": 112885, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY & SILTY GRAVEL", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201794}}, {"model": "wells.lithologydescription", "pk": "0eff27fe-88f4-452f-bcae-9e45eafbf03a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "125.00", "lithology_to": "185.00", "lithology_raw_data": "SILTY, COARSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199758}}, {"model": "wells.lithologydescription", "pk": "0f07a0c0-f95e-4b2b-bfa7-0e088ad45104", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:15:00Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-03T23:48:14Z", "activity_submission": null, "well_tag_number": 112859, "lithology_from": "102.00", "lithology_to": "110.00", "lithology_raw_data": "wood", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Sealed off water. Pulled back to 102', sealed bottom of the hole with bentonite.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201630}}, {"model": "wells.lithologydescription", "pk": "0f10901f-798a-4e90-9339-8e6c05d16d9c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:25:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:25:03Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198808}}, {"model": "wells.lithologydescription", "pk": "0f2114c5-54cf-48a9-aafd-10ccdb9ff73f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "176.00", "lithology_to": "225.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LENS @ 212'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201597}}, {"model": "wells.lithologydescription", "pk": "0f401730-92fd-4c16-9326-c2152970e9c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well_tag_number": 112571, "lithology_from": "72.00", "lithology_to": "75.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "9.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199784}}, {"model": "wells.lithologydescription", "pk": "0f437482-9e3b-475f-a7e4-73089343099d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197971}}, {"model": "wells.lithologydescription", "pk": "0f4c218e-bba5-4ddf-bde1-00463dddc56a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "155.00", "lithology_to": "161.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203826}}, {"model": "wells.lithologydescription", "pk": "0f4ef8fc-7985-4047-89e2-b8fd58cf21b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:27Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "152.00", "lithology_to": "250.00", "lithology_raw_data": "FINE", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5-10", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202259}}, {"model": "wells.lithologydescription", "pk": "0f5e4acb-f4c6-4345-b278-5571824ac72e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T13:46:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, "well_tag_number": 112544, "lithology_from": "25.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199623}}, {"model": "wells.lithologydescription", "pk": "0f5ebce3-196e-4732-a903-bd4ccaaba6d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well_tag_number": 112220, "lithology_from": "12.00", "lithology_to": "175.00", "lithology_raw_data": "GREY/WHITE MEDIUM VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197335}}, {"model": "wells.lithologydescription", "pk": "0f619a75-a4d7-437f-b915-fbeb05c90f87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOP SOIL WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200846}}, {"model": "wells.lithologydescription", "pk": "0f832ff0-b214-4dc2-81f6-f989062fa277", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, "well_tag_number": 112753, "lithology_from": "23.00", "lithology_to": "64.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200920}}, {"model": "wells.lithologydescription", "pk": "0f83a88e-0b90-4261-9b45-1b753be69aab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, "well_tag_number": 112493, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": "MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199248}}, {"model": "wells.lithologydescription", "pk": "0f84ed24-b377-49d6-ad29-be5a96d82cd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:14:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, "well_tag_number": 112363, "lithology_from": "135.00", "lithology_to": "145.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198243}}, {"model": "wells.lithologydescription", "pk": "0f933f4b-c0af-4128-852b-bf03084bfcb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "24.00", "lithology_to": "42.00", "lithology_raw_data": "FINE SAND, MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197541}}, {"model": "wells.lithologydescription", "pk": "0f947f40-553c-4c3b-acf7-f08d1c0e9c9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "2.00", "lithology_to": "6.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200433}}, {"model": "wells.lithologydescription", "pk": "0f9ab146-8d09-48cd-9049-88e15cc9a715", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198928}}, {"model": "wells.lithologydescription", "pk": "0fa30d7c-c81c-4a83-b2ad-79e614468aa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "212.00", "lithology_to": "280.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197375}}, {"model": "wells.lithologydescription", "pk": "0faba5e8-b96e-4df1-8782-c7573d07438e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well_tag_number": 112592, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": "MEDIUM TO COARSE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199929}}, {"model": "wells.lithologydescription", "pk": "0fd2d280-0031-46a3-b423-c6a28dfdf2d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "SHALE/BENTONIC LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SOFT LAYERS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197937}}, {"model": "wells.lithologydescription", "pk": "0fd34f38-c21f-4a28-9889-82d8558146af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, "well_tag_number": 112892, "lithology_from": "3.00", "lithology_to": "158.00", "lithology_raw_data": "DARK GREY", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201844}}, {"model": "wells.lithologydescription", "pk": "0fd92bf9-130d-4e41-946d-e1366c29ee87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": "sand with gravel ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202374}}, {"model": "wells.lithologydescription", "pk": "0fd956f9-dc90-4eb1-a5e9-d1f2e80c2daf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, "well_tag_number": 112882, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201763}}, {"model": "wells.lithologydescription", "pk": "0fdc56a2-5b15-4fb7-a7f7-372ff86daa1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, "well_tag_number": 113262, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY HOLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203891}}, {"model": "wells.lithologydescription", "pk": "0fe298a9-784e-4873-83ca-e968af265ab2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "300.00", "lithology_to": "340.00", "lithology_raw_data": "MEDIUM SAND TO FINE WITH SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199242}}, {"model": "wells.lithologydescription", "pk": "0fe3aa22-6a82-4efb-98ab-2b83813df596", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "270.00", "lithology_to": "300.00", "lithology_raw_data": "SANDSTONE/SHALE STRINGERS", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST-WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198084}}, {"model": "wells.lithologydescription", "pk": "0fe8fb0f-2fe1-4264-b18c-4ea90dc3e9ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "263.00", "lithology_to": "275.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "broken", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202830}}, {"model": "wells.lithologydescription", "pk": "0ff28655-68b0-4e77-8ee6-be43841ce714", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well_tag_number": 112870, "lithology_from": "429.00", "lithology_to": "500.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201713}}, {"model": "wells.lithologydescription", "pk": "0ff98583-f452-4669-aee5-5ee575271283", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "53.00", "lithology_to": "71.00", "lithology_raw_data": "fine to medium grained", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200061}}, {"model": "wells.lithologydescription", "pk": "0ffb93e9-ed25-4f71-8245-5fec0fefb68b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "250.00", "lithology_to": "254.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202921}}, {"model": "wells.lithologydescription", "pk": "0fff250e-072a-4b05-a737-1044c8bcf3d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "316.00", "lithology_to": "329.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent with intermitent quart layers", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202835}}, {"model": "wells.lithologydescription", "pk": "10090935-1b90-48a7-8147-1e1165ded644", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-01T19:59:16Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "45.00", "lithology_to": "62.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE AND GREEN; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200795}}, {"model": "wells.lithologydescription", "pk": "10111144-abc5-4464-91e9-4cb6b4175d11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "63.00", "lithology_to": "169.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205295}}, {"model": "wells.lithologydescription", "pk": "101233ba-9119-4c8d-b936-17c9a9a3a4c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, "well_tag_number": 112287, "lithology_from": "17.00", "lithology_to": "90.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197719}}, {"model": "wells.lithologydescription", "pk": "101a834f-c803-499f-be9b-75280d934e1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "300.00", "lithology_to": "302.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202781}}, {"model": "wells.lithologydescription", "pk": "101e160e-2106-4510-bbd6-deaa7328aef9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well_tag_number": 112500, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199307}}, {"model": "wells.lithologydescription", "pk": "10492465-eb99-455a-a25c-2a80bc0ba83f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "40.00", "lithology_to": "44.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197917}}, {"model": "wells.lithologydescription", "pk": "104a5258-fc7e-45c5-a3a2-1330f1895195", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, "well_tag_number": 112303, "lithology_from": "65.00", "lithology_to": "79.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197796}}, {"model": "wells.lithologydescription", "pk": "106ec137-480a-452a-a952-acc9f101c8d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "40.00", "lithology_to": "69.00", "lithology_raw_data": "DENSE BR SAND + GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198481}}, {"model": "wells.lithologydescription", "pk": "10700352-0b6d-4bb2-8ea0-d71e14de3e37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "7.00", "lithology_to": "9.00", "lithology_raw_data": "MEDIUM/HARD; BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199099}}, {"model": "wells.lithologydescription", "pk": "107174b3-06cf-4c85-8ded-cb478079c850", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "73.00", "lithology_to": "79.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198850}}, {"model": "wells.lithologydescription", "pk": "107e7d7d-488f-497e-8136-e120c8d687e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "SILT GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199278}}, {"model": "wells.lithologydescription", "pk": "108b9784-b2e6-40b9-a774-10b600b57c29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "82.00", "lithology_to": "83.00", "lithology_raw_data": "very sandy", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203799}}, {"model": "wells.lithologydescription", "pk": "109946ba-e173-4b44-8841-6ad76eb606a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, "well_tag_number": 112343, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN VOLCANIC - TRACES OF FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198130}}, {"model": "wells.lithologydescription", "pk": "10a5a50a-d9c5-4904-9849-38f40182debc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "36.00", "lithology_to": "38.00", "lithology_raw_data": "LOOSE, DARK YELLOWISH BROWN, FINE TO MEDIUM SAND AND TRACE OF COARSE GRAVEL AND WOOD CHIPS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201173}}, {"model": "wells.lithologydescription", "pk": "10a691f8-51f4-4741-93f5-276b1c16e4cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:54:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, "well_tag_number": 112739, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200824}}, {"model": "wells.lithologydescription", "pk": "10bb97ce-cf78-4a3c-93ef-659f78838b7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "30.00", "lithology_to": "38.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203480}}, {"model": "wells.lithologydescription", "pk": "10bd6e74-5849-4716-aa3a-ba2759811a3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, "well_tag_number": 113003, "lithology_from": "25.00", "lithology_to": "115.00", "lithology_raw_data": "Grey Clay and Rocks", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202453}}, {"model": "wells.lithologydescription", "pk": "10d440b7-f9d2-414b-a9e6-6a1ddd2dde12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "175.00", "lithology_to": "208.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198514}}, {"model": "wells.lithologydescription", "pk": "10d795fa-3b0b-487e-806c-3a7485702203", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "96.00", "lithology_to": "106.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203883}}, {"model": "wells.lithologydescription", "pk": "10f66d4b-fd28-400f-a166-0f03f40463e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "24.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": "48", "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202242}}, {"model": "wells.lithologydescription", "pk": "10f67ea0-3e61-4832-8df7-5773542874b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well_tag_number": 112925, "lithology_from": "149.00", "lithology_to": "165.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202050}}, {"model": "wells.lithologydescription", "pk": "10f7fad7-300f-4ce8-96ba-c09c8b442af8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "117.00", "lithology_to": "119.00", "lithology_raw_data": "BLACK/GREY, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198104}}, {"model": "wells.lithologydescription", "pk": "10f9881e-6176-49a5-a853-4420193c62b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, "well_tag_number": 112976, "lithology_from": "52.00", "lithology_to": "63.00", "lithology_raw_data": "TIGHT SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "30+", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202313}}, {"model": "wells.lithologydescription", "pk": "10fc47dc-f654-457e-9c28-085744f5b788", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Hole caved in", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201473}}, {"model": "wells.lithologydescription", "pk": "110643c9-6a15-4827-b859-190f6c043a8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "92.00", "lithology_to": "115.00", "lithology_raw_data": "with medium sand", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203091}}, {"model": "wells.lithologydescription", "pk": "11257af4-4a2b-4777-9381-9b577890a06e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "377.00", "lithology_to": "383.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, 8-12 slot, brown water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201228}}, {"model": "wells.lithologydescription", "pk": "112925d6-4d60-4593-b8c0-c07a7aeb2379", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "28.00", "lithology_to": "45.00", "lithology_raw_data": "PACKED SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198151}}, {"model": "wells.lithologydescription", "pk": "112a6700-fcce-43a6-8004-c2e1153bad07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:17:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, "well_tag_number": 112655, "lithology_from": "44.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200365}}, {"model": "wells.lithologydescription", "pk": "112ca976-3c70-4da1-8eaa-22b60f3e776e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199187}}, {"model": "wells.lithologydescription", "pk": "1140717e-d630-426d-9ecb-44f71af853c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": "SAND, GRAVEL, SILT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202222}}, {"model": "wells.lithologydescription", "pk": "114328a3-75cc-433d-add5-3bea06b05e5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, "well_tag_number": 112766, "lithology_from": "1494.40", "lithology_to": "1500.90", "lithology_raw_data": "SILTSTONE/MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201016}}, {"model": "wells.lithologydescription", "pk": "114e270c-0398-4d7b-9bea-a7fe4b9ff9ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "65.00", "lithology_to": "82.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198288}}, {"model": "wells.lithologydescription", "pk": "1168a693-2574-49f2-8add-75080deca23d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND & CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201735}}, {"model": "wells.lithologydescription", "pk": "116b368c-7a22-4dd9-8c5e-9d089abc31c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "337.00", "lithology_to": "346.00", "lithology_raw_data": "MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201098}}, {"model": "wells.lithologydescription", "pk": "11836a79-17fd-4e85-92f3-04f6a2c29138", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "493.00", "lithology_to": "497.00", "lithology_raw_data": "FRACTURE, 4FT OF QUARTZ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201301}}, {"model": "wells.lithologydescription", "pk": "1195d50d-0a0d-44c5-9678-5dee3515c070", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well_tag_number": 113134, "lithology_from": "52.00", "lithology_to": "64.00", "lithology_raw_data": "clay, silt", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203186}}, {"model": "wells.lithologydescription", "pk": "11a6eb86-271d-4fee-97c7-28a6b3eef7a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T17:44:28Z", "activity_submission": null, "well_tag_number": 113025, "lithology_from": "232.00", "lithology_to": "243.00", "lithology_raw_data": "Brown Gravel and Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202556}}, {"model": "wells.lithologydescription", "pk": "11acf8d8-007a-4243-979d-97c07a8fea50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:35:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, "well_tag_number": 112745, "lithology_from": "33.00", "lithology_to": "39.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME SILTY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; A BIT CLEANER; WELL SORTED WITH SOME SILTY WASH", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200866}}, {"model": "wells.lithologydescription", "pk": "11ad06a0-3ec1-4ae3-8452-6e555956c244", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, "well_tag_number": 112328, "lithology_from": "92.00", "lithology_to": "132.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197961}}, {"model": "wells.lithologydescription", "pk": "11b369e4-f7d2-4453-b335-4368ffbd12b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:58:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, "well_tag_number": 112651, "lithology_from": "139.00", "lithology_to": "185.00", "lithology_raw_data": "SAND AND PEBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200356}}, {"model": "wells.lithologydescription", "pk": "11b7724c-d01b-4904-84bf-1a7e50f66a32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "320.00", "lithology_to": "323.00", "lithology_raw_data": "FINE SANDSTONE / SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199470}}, {"model": "wells.lithologydescription", "pk": "11c84599-8f17-40af-9e97-fb12cad34618", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILTY, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199572}}, {"model": "wells.lithologydescription", "pk": "11e9f99e-b389-45cc-970a-219aa4470485", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:43:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:43:53Z", "activity_submission": null, "well_tag_number": 112641, "lithology_from": "79.00", "lithology_to": "96.00", "lithology_raw_data": "sand with gravel ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200321}}, {"model": "wells.lithologydescription", "pk": "11ee693c-c86b-4e6c-aab3-25dbd466c08a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-17T07:26:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:26:15Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "145.00", "lithology_to": "160.00", "lithology_raw_data": "WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199209}}, {"model": "wells.lithologydescription", "pk": "11fa79de-fef0-4cc5-a7ab-55a3fd464922", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "149.00", "lithology_to": "156.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198760}}, {"model": "wells.lithologydescription", "pk": "1204a026-b61b-43f9-83ab-5c24e91a6e4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/HARD; CEMENTED LAYER AND CLAY GRAVEL ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199298}}, {"model": "wells.lithologydescription", "pk": "12055058-fa0d-4351-9a84-1266bef4d311", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, "well_tag_number": 113251, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203810}}, {"model": "wells.lithologydescription", "pk": "12197794-3462-451a-beac-73aec3a1382c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "70.00", "lithology_to": "73.00", "lithology_raw_data": "MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201636}}, {"model": "wells.lithologydescription", "pk": "121d6dc9-7c12-4bd9-b697-18b21584d422", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "29.00", "lithology_to": "41.00", "lithology_raw_data": "GRAVEL AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194606}}, {"model": "wells.lithologydescription", "pk": "122bc4f6-22a6-42e3-8146-c2a646cfe1ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:33:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, "well_tag_number": 112966, "lithology_from": "16.00", "lithology_to": "30.00", "lithology_raw_data": "SATURATED SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202266}}, {"model": "wells.lithologydescription", "pk": "124f7be0-b5f7-4c73-80a0-3e7e179197d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": "1.50", "lithology_to": "3.00", "lithology_raw_data": "broken", "lithology_description": "72", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202469}}, {"model": "wells.lithologydescription", "pk": "12678183-7387-4ea8-a2c2-34ac0900dbe7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "568.00", "lithology_to": "580.00", "lithology_raw_data": "DENSE/STIFF; CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199607}}, {"model": "wells.lithologydescription", "pk": "126c4efb-ffd8-410d-be3c-0549af48f3db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "5.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": "11", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203956}}, {"model": "wells.lithologydescription", "pk": "127a82c9-aeb2-4acf-b52d-840c9fa44c00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:07:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, "well_tag_number": 112669, "lithology_from": "92.00", "lithology_to": "178.00", "lithology_raw_data": "SILT/CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200442}}, {"model": "wells.lithologydescription", "pk": "127b46c2-dd06-4a92-8ccd-a51be8768619", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "150.00", "lithology_to": "162.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE WITH SOME REDDISH BROWN; SOME 1/4 GPM; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200805}}, {"model": "wells.lithologydescription", "pk": "127dbec8-a4dd-4110-a023-959a0ff4c61e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, "well_tag_number": 112257, "lithology_from": "10.00", "lithology_to": "16.00", "lithology_raw_data": "LARGE BOULDERS WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197559}}, {"model": "wells.lithologydescription", "pk": "127ec4ec-9a7a-435c-87a2-6e01158a4273", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, "well_tag_number": 112257, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "GREY CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197558}}, {"model": "wells.lithologydescription", "pk": "12818981-8b99-4e4c-8303-368fda59ed96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "81.00", "lithology_to": "89.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198819}}, {"model": "wells.lithologydescription", "pk": "12a79e4f-88ff-4c47-a29e-2f51adaf430a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198281}}, {"model": "wells.lithologydescription", "pk": "12ace869-d815-45eb-8927-188b868de259", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202028}}, {"model": "wells.lithologydescription", "pk": "12b3061b-32e2-408c-9b1a-c8c971684da1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "515.00", "lithology_to": "560.00", "lithology_raw_data": "GREY SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201303}}, {"model": "wells.lithologydescription", "pk": "12c23520-af27-48f9-be85-7fd908ddbd02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "gravel", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201215}}, {"model": "wells.lithologydescription", "pk": "12c8395a-df02-4dc0-b255-7b3d4ba4eb8f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "92.00", "lithology_to": "129.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Dark and light coloured", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203242}}, {"model": "wells.lithologydescription", "pk": "12d1d590-ac0e-4862-8732-f9809c5a0447", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL AND SAND, MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199360}}, {"model": "wells.lithologydescription", "pk": "12d5c06f-df21-493b-be1c-8cebb575e917", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "96.00", "lithology_to": "140.00", "lithology_raw_data": "SOFT, CRUMBLY BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200183}}, {"model": "wells.lithologydescription", "pk": "12dc7392-de12-4e60-9e67-37682cde1755", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, "well_tag_number": 112797, "lithology_from": "100.00", "lithology_to": null, "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201155}}, {"model": "wells.lithologydescription", "pk": "12e02070-7e81-4e06-8fa2-72c60c66a9ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROWN & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201517}}, {"model": "wells.lithologydescription", "pk": "12e80d0b-9eff-4bd7-bddd-dc700dabc8e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "234.00", "lithology_to": "237.00", "lithology_raw_data": "VERY DIRTY FINE AND MEDIUM SAND WITH VOLCANIC ASH AND GREY CLAY LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED; VERY DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200662}}, {"model": "wells.lithologydescription", "pk": "12ed514a-2c95-49f8-b0b1-cf5e88f45826", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well_tag_number": 112806, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 145'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201203}}, {"model": "wells.lithologydescription", "pk": "12f202cd-34b4-41e3-9557-678b8ee2cec5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-11T21:44:06Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "MEDIUM/HARD; LAYERED CEMENTED GRAVEL, COARSE GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199958}}, {"model": "wells.lithologydescription", "pk": "12fe3f42-b16d-4b82-86f5-9f0c1f6cf1a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "210.00", "lithology_to": "440.00", "lithology_raw_data": "fractures often", "lithology_description": "50", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 350'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203876}}, {"model": "wells.lithologydescription", "pk": "13114e47-55bb-4878-b0b5-36d26fc23494", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "118.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202000}}, {"model": "wells.lithologydescription", "pk": "13118fd1-d197-4909-a7aa-50f253ac1f73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, "well_tag_number": 113252, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "silty clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203813}}, {"model": "wells.lithologydescription", "pk": "131c05a5-c91c-4f13-be72-6d6de66b2fe8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well_tag_number": 112528, "lithology_from": "140.00", "lithology_to": "152.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199513}}, {"model": "wells.lithologydescription", "pk": "1336af40-b309-4e5f-a17a-a3d42da667aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "75.00", "lithology_to": "85.00", "lithology_raw_data": "SHALE & SLTST", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143914}}, {"model": "wells.lithologydescription", "pk": "1340b10a-8a2c-4536-adcf-4619400eef52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:08:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, "well_tag_number": 112293, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197744}}, {"model": "wells.lithologydescription", "pk": "1351666c-bcf9-4dd9-a373-7a4f505e2cdf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "575.00", "lithology_to": "695.00", "lithology_raw_data": "SEVERAL FRACTURES - SEAMS OF GNIESS ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER INCREASED TO 2 GPM TOTAL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198279}}, {"model": "wells.lithologydescription", "pk": "13558e6b-7d8f-45a4-8733-0caaa92afd36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:57:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, "well_tag_number": 112292, "lithology_from": "75.00", "lithology_to": null, "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197743}}, {"model": "wells.lithologydescription", "pk": "13599516-a5a9-4b96-a8b9-efdbf6793059", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:50:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, "well_tag_number": 112611, "lithology_from": "8.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200080}}, {"model": "wells.lithologydescription", "pk": "135cb37d-ac7d-4cb6-ad71-9d69bf00cba7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "55.00", "lithology_to": "66.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197593}}, {"model": "wells.lithologydescription", "pk": "13684187-12b0-49f9-975f-10a9d673b9a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "GRAVEL& COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202232}}, {"model": "wells.lithologydescription", "pk": "136dd7fe-721c-458b-95cb-d70d2cbeea4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "290.00", "lithology_to": "360.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK, WHITE. WB FRACTURE AT 324'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159179}}, {"model": "wells.lithologydescription", "pk": "13739260-5c44-4d5d-9b3c-22c7f4e0a98b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "104.00", "lithology_to": "108.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201327}}, {"model": "wells.lithologydescription", "pk": "137bfa28-2def-4a98-bde2-7941a4433634", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, "well_tag_number": 112713, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200635}}, {"model": "wells.lithologydescription", "pk": "13858bee-283d-4b86-9156-a4c3623df782", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T23:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, "well_tag_number": 112672, "lithology_from": "76.00", "lithology_to": "80.00", "lithology_raw_data": "FRACTURED CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "LARGE FRACTURES, WATER, CLOUDY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200453}}, {"model": "wells.lithologydescription", "pk": "13912028-c9f8-440f-9a64-0ddadcf4f617", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "84.00", "lithology_to": "210.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 160'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203874}}, {"model": "wells.lithologydescription", "pk": "13954b3a-a9a7-410b-a120-62497527ad17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "69.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198701}}, {"model": "wells.lithologydescription", "pk": "13a7cab8-d1a2-432f-84b8-d24cc1038725", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "0.00", "lithology_to": "0.16", "lithology_raw_data": "ASPHALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201065}}, {"model": "wells.lithologydescription", "pk": "13b36bb9-7d5e-4b0f-9a7f-840a454ed96d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, "well_tag_number": 113028, "lithology_from": "195.00", "lithology_to": "203.00", "lithology_raw_data": "BROWN SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202576}}, {"model": "wells.lithologydescription", "pk": "13d7f8b1-4123-480d-aa78-cc0ec792f9f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "93.00", "lithology_to": "102.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201668}}, {"model": "wells.lithologydescription", "pk": "13fa3625-4319-4f96-a7a0-de507255c4d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "GRAVEL & WOD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201919}}, {"model": "wells.lithologydescription", "pk": "13fb226f-3a07-4e88-af0f-04c6bc30ed65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199233}}, {"model": "wells.lithologydescription", "pk": "13fdb2e5-3ba2-4e6b-8b61-f1d03f9b0445", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "180.00", "lithology_to": "197.00", "lithology_raw_data": "and gravels", "lithology_description": "48", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197597}}, {"model": "wells.lithologydescription", "pk": "13ff4730-6463-4a29-879f-0b043d8e91d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; COARSE, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199179}}, {"model": "wells.lithologydescription", "pk": "14042e28-d989-46b5-98bd-b57a7ecced9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "152.00", "lithology_to": "153.00", "lithology_raw_data": "HARD PAN", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199370}}, {"model": "wells.lithologydescription", "pk": "1407220f-1a35-4ef8-8177-638498304bf6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "50.00", "lithology_to": "53.00", "lithology_raw_data": null, "lithology_description": "43", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203648}}, {"model": "wells.lithologydescription", "pk": "140d31f7-1bc7-4ce4-a65c-6c9987b4a58c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, "well_tag_number": 112798, "lithology_from": "36.08", "lithology_to": "83.60", "lithology_raw_data": "SILTY SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201158}}, {"model": "wells.lithologydescription", "pk": "1411454e-8bc5-43e0-884d-885d19091636", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199986}}, {"model": "wells.lithologydescription", "pk": "142663be-300b-4571-bc83-972593ade90a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "400.00", "lithology_to": "600.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK, WHITE, GREEN. WB FRACTURE AT 475',544',570'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159181}}, {"model": "wells.lithologydescription", "pk": "14420b1d-425b-4d38-aab9-f23161a439b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:13:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, "well_tag_number": 112515, "lithology_from": "7.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199392}}, {"model": "wells.lithologydescription", "pk": "144248b6-6bc8-4c0b-bf17-f4fa2fafc1f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "178.00", "lithology_to": "208.00", "lithology_raw_data": "silt, clay", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201221}}, {"model": "wells.lithologydescription", "pk": "1445e40f-3454-4dcd-ad17-2e2e06629fad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SILTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200368}}, {"model": "wells.lithologydescription", "pk": "144906b5-e1b2-429e-9ceb-7d571d77caec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:23:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, "well_tag_number": 112972, "lithology_from": "61.00", "lithology_to": "78.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "25+ WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202295}}, {"model": "wells.lithologydescription", "pk": "1450eb2f-7cf6-4ab2-9ffe-d8a1554fd16b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, "well_tag_number": 112797, "lithology_from": "3.30", "lithology_to": "36.08", "lithology_raw_data": "POORLY GRADED SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201152}}, {"model": "wells.lithologydescription", "pk": "145aa996-eb9a-47d3-98e6-edf372b8588b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well_tag_number": 113021, "lithology_from": "127.00", "lithology_to": "144.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202546}}, {"model": "wells.lithologydescription", "pk": "1462d6a4-119e-477b-a5ff-71cfa6d57c91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, "well_tag_number": 112242, "lithology_from": "73.00", "lithology_to": "88.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197493}}, {"model": "wells.lithologydescription", "pk": "1467300c-f4a6-4bf5-ab1a-0b2bd2bc62be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, "well_tag_number": 112257, "lithology_from": "16.00", "lithology_to": "24.00", "lithology_raw_data": "SMALL GRAVEL WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197560}}, {"model": "wells.lithologydescription", "pk": "14701bdf-6b6c-4245-80ac-43042c6a9daa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well_tag_number": 113095, "lithology_from": "9.00", "lithology_to": "192.00", "lithology_raw_data": "CLAY AND TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202956}}, {"model": "wells.lithologydescription", "pk": "14744e82-3528-471a-b9ec-7539a8eab7c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, COARSE, MINOR GRAVEL, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199728}}, {"model": "wells.lithologydescription", "pk": "14754a74-8d61-4939-8f3b-d2cf26b84787", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "118.00", "lithology_to": "120.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198389}}, {"model": "wells.lithologydescription", "pk": "14831ff7-ecb0-4fc5-b485-b451d5bb0917", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY MOIST, WITH SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198560}}, {"model": "wells.lithologydescription", "pk": "14af4b1c-4433-470b-81ef-f9d106905433", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, "well_tag_number": 112518, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "COBBLES AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199408}}, {"model": "wells.lithologydescription", "pk": "14b34779-e981-4a2f-afd9-e73a163a83ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well_tag_number": 112822, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": "broken", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201286}}, {"model": "wells.lithologydescription", "pk": "14b7b52e-07ca-4f08-b5f9-f129de41ce8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "400.00", "lithology_to": "500.00", "lithology_raw_data": "WHITE-BLACK-PINK-ORANGE BEDROCK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202525}}, {"model": "wells.lithologydescription", "pk": "14b7f8b4-308d-4c07-8aea-232cb879d50c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, "well_tag_number": 113206, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "broken rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203591}}, {"model": "wells.lithologydescription", "pk": "14c94e9f-f622-431f-82f4-2a76ae1fe700", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "256.00", "lithology_to": "354.00", "lithology_raw_data": "BROWN CLAYS, SILTS, SANDS, SOME GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200960}}, {"model": "wells.lithologydescription", "pk": "14cb1712-d31f-4c7a-b78f-d545796e1694", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:25:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, "well_tag_number": 112869, "lithology_from": "25.90", "lithology_to": "72.00", "lithology_raw_data": "GREY & WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201707}}, {"model": "wells.lithologydescription", "pk": "14d8d082-59c5-43f1-9e32-c8eba8bba19f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:44:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, "well_tag_number": 112452, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "and fine sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198905}}, {"model": "wells.lithologydescription", "pk": "14eaf8ec-fcc7-4e3f-93a8-92c23b9a710d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "400.00", "lithology_to": "500.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH SOME TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198149}}, {"model": "wells.lithologydescription", "pk": "14ebab3c-46a6-45b9-90a8-29f31e2af20e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM-COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199072}}, {"model": "wells.lithologydescription", "pk": "14fc70b1-9831-4342-aa13-c1eb2952e8f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "23.00", "lithology_to": "113.00", "lithology_raw_data": "DRY SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201432}}, {"model": "wells.lithologydescription", "pk": "14fe8c38-ec73-4c68-af92-812b614074a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, "well_tag_number": 112877, "lithology_from": "109.00", "lithology_to": "354.00", "lithology_raw_data": "GREY & WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201743}}, {"model": "wells.lithologydescription", "pk": "15010ea4-bcf0-42e6-a36f-bdfa90fb7e2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T16:42:11Z", "activity_submission": null, "well_tag_number": 113099, "lithology_from": "475.00", "lithology_to": "500.00", "lithology_raw_data": "glacial till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202979}}, {"model": "wells.lithologydescription", "pk": "1501a54c-eed5-4ab0-b1ef-7b850b47374e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "192.00", "lithology_to": "325.00", "lithology_raw_data": "PINK/WHITE GRANITE ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "305', FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198276}}, {"model": "wells.lithologydescription", "pk": "150c479f-770d-4211-a3d6-ec7ef19291d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "104.00", "lithology_to": "106.50", "lithology_raw_data": "CLAY/SHALE WITH SOME FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HOLE STAYING OPEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201663}}, {"model": "wells.lithologydescription", "pk": "150f0e60-021c-433b-a5c5-c04882747e75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well_tag_number": 113264, "lithology_from": "20.00", "lithology_to": "61.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203899}}, {"model": "wells.lithologydescription", "pk": "1523ea1e-c23f-4c06-90e3-553f3f03af5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "107.00", "lithology_to": "140.00", "lithology_raw_data": "Gravel (till?), some sand, trace silt and clay, grey-brown", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203506}}, {"model": "wells.lithologydescription", "pk": "15338e42-c5c9-4264-9624-8a8e8058e8c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well_tag_number": 112982, "lithology_from": "5.00", "lithology_to": "51.00", "lithology_raw_data": "GLACIAL TILL AND COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202360}}, {"model": "wells.lithologydescription", "pk": "153fce88-48fb-48af-92fc-52c60b87cdeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "120.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201789}}, {"model": "wells.lithologydescription", "pk": "1542de4a-fe79-419f-8fa1-4d30d289330c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "68.00", "lithology_to": "71.00", "lithology_raw_data": "SAND & CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "8-10", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202199}}, {"model": "wells.lithologydescription", "pk": "1556d8e6-97e8-4fab-a5dc-e6ae2ddde1f0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T16:59:23Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T16:59:23Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "SOIL SAND LOAM", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172298}}, {"model": "wells.lithologydescription", "pk": "155c1ce1-e0b9-46dd-8353-bcd37166d41a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "136.00", "lithology_to": "159.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203151}}, {"model": "wells.lithologydescription", "pk": "155e2835-222e-44a2-a658-6d5f8ee523c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "180.00", "lithology_to": "220.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "220'-260'=ILLEGIBLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200013}}, {"model": "wells.lithologydescription", "pk": "156cfbef-ffe0-4a18-85b7-f95ee53d1379", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, "well_tag_number": 112235, "lithology_from": "180.00", "lithology_to": "345.00", "lithology_raw_data": "MEDIUM/SOFT, SANDSTONE BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "300'-305'=MEDIUM, GREEN, FRACTURED AREA, 5 GPM; 305'-325'=MEDIUM, GREEN, SANDSTONE, 12 GPM, SEVERAL FRACTURES; 325'-335'=MEDIUM, GREEN, FRACTURES, WATER INCREASED TO 25 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197450}}, {"model": "wells.lithologydescription", "pk": "15824754-267b-485b-a902-4bfdab1d06c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, "well_tag_number": 112946, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202129}}, {"model": "wells.lithologydescription", "pk": "158a4012-6990-41a2-b68f-e014bba5e53a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:56:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, "well_tag_number": 112764, "lithology_from": "11.50", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM STIFF; SILTY CLAY - TRACE SAND AND GRAVEL. INCREASE IN TRACE GRAVEL (UP TO 4CM SUBROUNDED). ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; WET; MEDIUM PLASTICITY. WET POCKETS 4-4.5M", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201007}}, {"model": "wells.lithologydescription", "pk": "15925878-8c7d-451c-9220-02863d0b7d4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well_tag_number": 112925, "lithology_from": "15.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202047}}, {"model": "wells.lithologydescription", "pk": "15a682bd-15b2-488f-bf61-c8ef6ef0980e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199956}}, {"model": "wells.lithologydescription", "pk": "15b00888-d6ff-4184-8ff0-675b197282b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "162.00", "lithology_to": "260.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, BLACK AND BROWN; SOLID; WATER BEARING FRACTURE @ 162'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200806}}, {"model": "wells.lithologydescription", "pk": "15bd5ade-e35b-4a09-831a-f7cdd931dc5e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T19:57:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:57:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198733}}, {"model": "wells.lithologydescription", "pk": "15c0a4cc-d380-4be4-bc23-754e1514e95a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well_tag_number": 113180, "lithology_from": "175.00", "lithology_to": "202.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203451}}, {"model": "wells.lithologydescription", "pk": "15dbddb8-7267-4442-91cf-ad80780c5531", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": "compact gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202970}}, {"model": "wells.lithologydescription", "pk": "15ee0551-9af0-44e8-846c-d2996bca1c1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "153.00", "lithology_to": "160.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199065}}, {"model": "wells.lithologydescription", "pk": "1618cbd6-9537-4b3f-aa04-23b6b65c78ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "33.00", "lithology_to": "52.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202197}}, {"model": "wells.lithologydescription", "pk": "161ccb68-edad-4d6a-883e-7a13d09f1a93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-12T17:48:36Z", "activity_submission": null, "well_tag_number": 112946, "lithology_from": "9.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM COBBLES WITH MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202132}}, {"model": "wells.lithologydescription", "pk": "1644b01b-4ba8-43f5-b0c2-c32b6a218149", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, "well_tag_number": 113009, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202482}}, {"model": "wells.lithologydescription", "pk": "16556172-da61-438c-a212-c926200c3603", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199255}}, {"model": "wells.lithologydescription", "pk": "165e06a0-244b-42de-abed-0efc35f09163", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, "well_tag_number": 113210, "lithology_from": "200.00", "lithology_to": "260.00", "lithology_raw_data": "SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203634}}, {"model": "wells.lithologydescription", "pk": "1675465d-76f9-4d8c-9390-65c2e80aea75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "113.00", "lithology_to": "230.00", "lithology_raw_data": "SHALE, MED HARD, FINE, GREY SILTSTONE LENSES @ 131'", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201489}}, {"model": "wells.lithologydescription", "pk": "16794107-9750-410f-ab93-fa2cb6d84e4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "8 inch drilled borehole for surface seal", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202577}}, {"model": "wells.lithologydescription", "pk": "167d7f64-9518-479d-bf30-52ac7976deee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "342.00", "lithology_to": "405.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200417}}, {"model": "wells.lithologydescription", "pk": "16909417-828e-4c7d-9ec4-f55c58d2f560", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:24Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-03T23:51:47Z", "activity_submission": null, "well_tag_number": 112840, "lithology_from": "108.00", "lithology_to": "260.00", "lithology_raw_data": "bedrock. green/grey", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "17", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": ".33 GPM at 150'; 20 GPM at 235'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201416}}, {"model": "wells.lithologydescription", "pk": "16a04505-2a02-4f65-ad26-24932dcd722f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201205}}, {"model": "wells.lithologydescription", "pk": "16a1b2eb-58f2-46f4-bc35-13aba622605b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "164.00", "lithology_to": "178.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE / SILTSTONE / FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "170' = WET FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199461}}, {"model": "wells.lithologydescription", "pk": "16a78d78-901c-4abf-84fd-b8a1c614b4e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "235.00", "lithology_to": "251.00", "lithology_raw_data": "GREY SILTS, SANDS AND GRAVELS (CEMENTED)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200969}}, {"model": "wells.lithologydescription", "pk": "16a81ed4-2d03-4c38-bb32-62d911367b90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "ORGANIC/PACK SAND GRAVELS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198374}}, {"model": "wells.lithologydescription", "pk": "16a8318e-ead5-44f9-891b-f9f43bbbd3be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, "well_tag_number": 113168, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203366}}, {"model": "wells.lithologydescription", "pk": "16b80721-a4ef-4121-9fb8-eeeb90740859", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, "well_tag_number": 112589, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199910}}, {"model": "wells.lithologydescription", "pk": "16c75300-2abb-4433-a300-b296e7f4ee81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:43:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, "well_tag_number": 113169, "lithology_from": "190.00", "lithology_to": "195.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": "H20", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203374}}, {"model": "wells.lithologydescription", "pk": "16e2bc4e-8cfe-4d4b-b5e8-8f9a1088a02c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "15.00", "lithology_to": "70.00", "lithology_raw_data": "Brown Silt, sand with clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203863}}, {"model": "wells.lithologydescription", "pk": "16e65c8a-bac6-4130-83e0-1f55e4d6311e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "81.00", "lithology_to": "82.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202818}}, {"model": "wells.lithologydescription", "pk": "16fb0924-551c-42d2-8d2c-ea68f976e593", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:36:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, "well_tag_number": 112973, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202298}}, {"model": "wells.lithologydescription", "pk": "16fb30ce-85c6-4302-9a07-c6868a4817dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD; ROCKS, CLAY, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "55'-60'=WATER BEARING, 4 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199092}}, {"model": "wells.lithologydescription", "pk": "170c82ed-5786-490e-b9a7-5b1b2e25f472", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "5.00", "lithology_to": "24.00", "lithology_raw_data": "CLAY & SAND & GRAVEL", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202195}}, {"model": "wells.lithologydescription", "pk": "171ad5fe-e899-49c0-8887-9232505073b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-03T22:02:13Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "117.00", "lithology_to": "122.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY; MEDIUM GRAINED; LOW PRESSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199481}}, {"model": "wells.lithologydescription", "pk": "171f7cca-ead1-416c-971f-8ea1ea50dcb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:00Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "0.00", "lithology_to": "93.00", "lithology_raw_data": "silty sand gravel", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198198}}, {"model": "wells.lithologydescription", "pk": "173b9e4d-6a7b-49d2-ba34-426ec2c94c77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "160.00", "lithology_to": "170.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199284}}, {"model": "wells.lithologydescription", "pk": "17406a70-0e4e-4040-b37c-05820116fa9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "38.00", "lithology_to": "51.00", "lithology_raw_data": "SAND, GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202396}}, {"model": "wells.lithologydescription", "pk": "17482344-03ae-4607-9b9a-607a1fc3a315", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 245'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202473}}, {"model": "wells.lithologydescription", "pk": "1752a537-7a7b-4b66-8e52-9b2037324b0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T13:46:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, "well_tag_number": 112544, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199621}}, {"model": "wells.lithologydescription", "pk": "17537b28-0d96-4f29-ab41-91f3569ea1a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "24.00", "lithology_to": "48.00", "lithology_raw_data": "cobbles", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203795}}, {"model": "wells.lithologydescription", "pk": "1754c3f8-9afb-4652-af03-c15b60b8d7cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "164.00", "lithology_to": "217.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE AND TAN; SOLID; SOFT SPOTS AND SOFT FRACTURED ZONES @ 187' AND 194'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200725}}, {"model": "wells.lithologydescription", "pk": "17729e8e-9f2c-420b-88b6-13204200b390", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "140.00", "lithology_to": "155.00", "lithology_raw_data": "WET, SILTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202720}}, {"model": "wells.lithologydescription", "pk": "17736047-715d-4c5f-a61f-49c0bc913bff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "13.00", "lithology_to": "28.00", "lithology_raw_data": "clay and till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183976}}, {"model": "wells.lithologydescription", "pk": "177dd5e6-5cbe-4b3e-971d-26bfec4f782b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:33:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, "well_tag_number": 112966, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "SILTY SAND WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202264}}, {"model": "wells.lithologydescription", "pk": "1782ab5c-a641-497d-a3c7-a7dc0f4daa5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "26.00", "lithology_to": "124.00", "lithology_raw_data": "SOFT/MEDIUM; BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200427}}, {"model": "wells.lithologydescription", "pk": "1786201a-0b85-45a0-a6e5-c349761b8285", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:29:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:29:38Z", "activity_submission": null, "well_tag_number": 112788, "lithology_from": "4.00", "lithology_to": "218.65", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8\" BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201132}}, {"model": "wells.lithologydescription", "pk": "17868796-273c-4c14-bd0a-0d9b55cbb38c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "330.00", "lithology_to": "388.00", "lithology_raw_data": "SHALE & SILTSTONE WITH A FEW FINE SANDSTONE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201552}}, {"model": "wells.lithologydescription", "pk": "178bf4c7-8cdf-4862-9799-5ed06b66d7ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198696}}, {"model": "wells.lithologydescription", "pk": "179df230-c9a7-4e14-8cd2-97e96f3e33f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "208.00", "lithology_to": "245.00", "lithology_raw_data": "FINE SAND, SILT & CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198515}}, {"model": "wells.lithologydescription", "pk": "17a969ed-7dc1-4b59-8f66-e322dec25e8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T22:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, "well_tag_number": 112717, "lithology_from": "3.50", "lithology_to": "15.00", "lithology_raw_data": "DENSE SAND AND GRAVEL WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200651}}, {"model": "wells.lithologydescription", "pk": "17b3c77b-04fc-4329-a3e0-cb56dbf4cc51", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "3.00", "lithology_to": "18.00", "lithology_raw_data": "SAND/GRAVEL WITH SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200943}}, {"model": "wells.lithologydescription", "pk": "17b411f4-007b-4328-9c17-512a866a3165", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "97.00", "lithology_to": "99.00", "lithology_raw_data": "LIGHT/DARK GREY, MEDIUM HARD", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201524}}, {"model": "wells.lithologydescription", "pk": "17c1fc09-00f9-4364-b673-0693909af836", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well_tag_number": 112983, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202365}}, {"model": "wells.lithologydescription", "pk": "17c63e94-d899-49e6-b4bd-9ab7f6eeac5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "217.00", "lithology_to": "334.00", "lithology_raw_data": "MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO (ILLEGIBLE) ON FRACTURED FORMATIONS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201096}}, {"model": "wells.lithologydescription", "pk": "17d66a8a-d0fe-4cfa-8a18-7bafd11592bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T23:16:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, "well_tag_number": 100127, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "PAN CLAY & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130143}}, {"model": "wells.lithologydescription", "pk": "17e9363f-0680-4638-9af0-5dc53e7bb784", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-11T00:48:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T00:49:03Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "285.00", "lithology_to": "310.00", "lithology_raw_data": "SANDSTONE WITH SHALE LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "290'-300=BROKEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201039}}, {"model": "wells.lithologydescription", "pk": "17eb8013-d4ec-402c-b0ca-08e5eb1e035c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "21.00", "lithology_to": "35.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202775}}, {"model": "wells.lithologydescription", "pk": "17f0b086-8a67-4d41-938d-419152cde33a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FILL & BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205632}}, {"model": "wells.lithologydescription", "pk": "17f0bc89-8f75-4345-9c24-b8b4ce8fd27e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "115.00", "lithology_to": "580.00", "lithology_raw_data": null, "lithology_description": "59", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201361}}, {"model": "wells.lithologydescription", "pk": "1810381a-02af-4c0e-941f-4fb43f83695f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "COARSE SAND, CLAY, ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198980}}, {"model": "wells.lithologydescription", "pk": "181083df-b298-4f76-bddc-77d0ff000cf1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "1.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202379}}, {"model": "wells.lithologydescription", "pk": "1811a2d4-acee-4c9c-b24c-45f125908205", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:34:50Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "114.00", "lithology_to": "197.00", "lithology_raw_data": "Brown Silt, sand with clay/silt; sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203866}}, {"model": "wells.lithologydescription", "pk": "181d6488-5395-49ca-8e68-f779f70a96e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "144.00", "lithology_to": "146.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202035}}, {"model": "wells.lithologydescription", "pk": "1824fb64-a3c7-4b2b-a21b-53b063cb582d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "360.00", "lithology_to": "365.00", "lithology_raw_data": "Sand, some gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203514}}, {"model": "wells.lithologydescription", "pk": "182673a3-283d-4d96-8b9c-bcea8a4a58ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:29:52Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "234.00", "lithology_to": "273.00", "lithology_raw_data": "coarse sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203855}}, {"model": "wells.lithologydescription", "pk": "18299372-1d88-4db4-8082-ae826cbf4ed8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": "110.00", "lithology_to": "242.00", "lithology_raw_data": "rock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201468}}, {"model": "wells.lithologydescription", "pk": "182d2bad-f417-4098-8e2d-6aef0e9c28e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203197}}, {"model": "wells.lithologydescription", "pk": "182ea2a7-522e-4b7e-9129-709308dd75b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "118.00", "lithology_to": "137.00", "lithology_raw_data": "SAND, GRAVEL, BROKEN BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199789}}, {"model": "wells.lithologydescription", "pk": "182ff163-d3d7-43e8-beb6-0039458d8b80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:52:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, "well_tag_number": 112907, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "TOPSOIL, TRACE BROWN CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201926}}, {"model": "wells.lithologydescription", "pk": "183098e5-d632-40c2-89da-76b88e184512", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, "well_tag_number": 113168, "lithology_from": "88.00", "lithology_to": "89.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203368}}, {"model": "wells.lithologydescription", "pk": "1841d74e-514c-4e77-b0a6-519a3c16ab42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, "well_tag_number": 112918, "lithology_from": "8.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202011}}, {"model": "wells.lithologydescription", "pk": "18450f2e-c236-45a4-ae66-75d72fc7c114", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well_tag_number": 113188, "lithology_from": "94.00", "lithology_to": "97.00", "lithology_raw_data": "silty with gravel", "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203498}}, {"model": "wells.lithologydescription", "pk": "1847ffff-f0d7-44eb-8b8d-ce54ffed69ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, "well_tag_number": 112837, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 50'. brown, softer 90 -' 92'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201405}}, {"model": "wells.lithologydescription", "pk": "1855472f-a948-41cb-a248-effad56f39fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:36:28Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "SOFT/MEDIUM, CLAY, SILT, MINOR ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198690}}, {"model": "wells.lithologydescription", "pk": "18681584-fdab-47ec-bf8d-43e786932155", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:15:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, "well_tag_number": 112926, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & SMALL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202054}}, {"model": "wells.lithologydescription", "pk": "187995d7-fcb7-406d-bf33-4d9bbcf60fe3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "125.00", "lithology_to": "128.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199856}}, {"model": "wells.lithologydescription", "pk": "18880eff-5cdf-4a5c-839a-98d7b6392613", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, "well_tag_number": 112946, "lithology_from": "8.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202131}}, {"model": "wells.lithologydescription", "pk": "18a4f14d-9b1b-42b2-9dde-f39c3e9ec9e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 180'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203105}}, {"model": "wells.lithologydescription", "pk": "18a76f93-bc86-4a07-b2b9-3cd33baf58ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "25.00", "lithology_to": "91.00", "lithology_raw_data": "BROWN FINE SAND WITH SOME STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201314}}, {"model": "wells.lithologydescription", "pk": "18a89237-aff3-4159-9bc4-12702f49130e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "0.16", "lithology_to": "3.08", "lithology_raw_data": "FILL (SW) - GRAVELLY SAND, COMPACT, FINE TO COARSE SAND, FINE GRAVEL, PIECES OF BRICK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK BROWN; APPROX. 8 CM OF BLACK ASPHALT-LIKE MATERIAL, NO ODOUR@0.91M BGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201066}}, {"model": "wells.lithologydescription", "pk": "18b4cb6d-55dd-4a99-b5d0-c24ca3247043", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 220'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201192}}, {"model": "wells.lithologydescription", "pk": "18c6dd97-bc56-4aeb-9ca4-73858c98651f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "blast rock", "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198704}}, {"model": "wells.lithologydescription", "pk": "18cc5a18-dc05-451e-97e0-61be1ca77c86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "74.00", "lithology_to": "104.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201963}}, {"model": "wells.lithologydescription", "pk": "18d046cd-1041-4091-826a-dc81171990ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well_tag_number": 112231, "lithology_from": "300.00", "lithology_to": "475.00", "lithology_raw_data": "GREEN/BLUE VOLCANIC WITH ZONES OF BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "360'=VOLCANIC: 2 GPM; FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197432}}, {"model": "wells.lithologydescription", "pk": "18de230b-f433-4f0f-84f3-421b3cb035b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:10:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, "well_tag_number": 112356, "lithology_from": "42.00", "lithology_to": "75.00", "lithology_raw_data": "sand with clay/silt / sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198207}}, {"model": "wells.lithologydescription", "pk": "18ebf93d-6de7-4208-ab49-29a9adf6f1b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:39:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, "well_tag_number": 113263, "lithology_from": "22.00", "lithology_to": "55.00", "lithology_raw_data": "very sandy", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203894}}, {"model": "wells.lithologydescription", "pk": "18f8a8ea-1c97-43db-bba6-96adbd063a4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well_tag_number": 112925, "lithology_from": "165.00", "lithology_to": "175.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202051}}, {"model": "wells.lithologydescription", "pk": "191119df-9f2b-46e3-ac2a-3475f320f887", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "76.00", "lithology_to": "81.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200043}}, {"model": "wells.lithologydescription", "pk": "1926c4df-28c2-4eb8-b91a-59bade310b89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "68.00", "lithology_to": "136.00", "lithology_raw_data": "W.B. SILT, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203150}}, {"model": "wells.lithologydescription", "pk": "19270aa3-07bd-448c-8133-314187276957", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": "27.00", "lithology_to": "36.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201857}}, {"model": "wells.lithologydescription", "pk": "192c74ae-babb-4e38-9591-a58ef0a7c91f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": "8.00", "lithology_to": "19.00", "lithology_raw_data": "granite", "lithology_description": "72", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202995}}, {"model": "wells.lithologydescription", "pk": "19329a35-755f-4e1c-804f-d6ffe600ada6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "149.00", "lithology_to": "231.00", "lithology_raw_data": "HARD PACKED, SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200746}}, {"model": "wells.lithologydescription", "pk": "1945c69f-8e69-429a-b9a3-064a895fca8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well_tag_number": 112220, "lithology_from": "240.00", "lithology_to": "520.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH GREY AND WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197338}}, {"model": "wells.lithologydescription", "pk": "195b2ee0-97fb-49f0-958e-77cfd6cefd29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "10.00", "lithology_to": "28.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199374}}, {"model": "wells.lithologydescription", "pk": "195f310f-a00e-4324-a97b-cae1c14b1956", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "1320.00", "lithology_to": "1340.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203073}}, {"model": "wells.lithologydescription", "pk": "195fab6f-2c6f-43ea-812e-e72130ea91a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "63.00", "lithology_to": "70.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203642}}, {"model": "wells.lithologydescription", "pk": "1960bbf3-58b1-4cee-8afd-2971a1c4f4da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANIC, LOOSE ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199891}}, {"model": "wells.lithologydescription", "pk": "19656ae5-977a-44c0-9a8f-84c9a0461564", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:57:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:57:35Z", "activity_submission": null, "well_tag_number": 112642, "lithology_from": "0.00", "lithology_to": "66.00", "lithology_raw_data": "silt/till/clay", "lithology_description": "34", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200322}}, {"model": "wells.lithologydescription", "pk": "196b6dac-ba14-4d9a-898b-89e06c8cc79a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, "well_tag_number": 112458, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198959}}, {"model": "wells.lithologydescription", "pk": "198516d7-50e0-405d-9e8e-de12ec24276a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "171.00", "lithology_to": "1747.00", "lithology_raw_data": "SILT WITH FINE SAND/FINE TILL AND CLAY PARTICLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201699}}, {"model": "wells.lithologydescription", "pk": "1987f82d-4bcc-4f22-b496-2a6e8de0ef36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "BROWN SANDSTONE WITH SHALE LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199873}}, {"model": "wells.lithologydescription", "pk": "198a907f-4932-4621-8830-82d9f39eca8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "455.00", "lithology_to": "455.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "17.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202530}}, {"model": "wells.lithologydescription", "pk": "198de0f3-6359-4fc3-9f36-0b148c54e9d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "80.00", "lithology_to": "156.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199672}}, {"model": "wells.lithologydescription", "pk": "1990bd69-7b16-4de4-9cb0-4256ce2c0657", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "960.00", "lithology_to": "961.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202864}}, {"model": "wells.lithologydescription", "pk": "199db424-2941-4a93-837e-45ddd3575432", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202324}}, {"model": "wells.lithologydescription", "pk": "19a5fbcf-a1dc-4fef-ac2b-d33544a48996", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T21:38:12Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "450.00", "lithology_to": "568.00", "lithology_raw_data": "DENSE/STIFF; CLAY, SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199606}}, {"model": "wells.lithologydescription", "pk": "19b8827c-b8da-4766-a140-0df5c59e04b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:29:36Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "160.00", "lithology_to": "205.00", "lithology_raw_data": "sand with coarse gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203853}}, {"model": "wells.lithologydescription", "pk": "19b88dcf-c54a-48fc-b10f-a4ef726a10e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "138.00", "lithology_to": "147.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202005}}, {"model": "wells.lithologydescription", "pk": "19c100ad-1f83-4aa5-b535-0468d44d3956", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "114.00", "lithology_to": "125.00", "lithology_raw_data": "MEDIUM-HARD, SHALE/SILTSTONE/FINE SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WEATHERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198068}}, {"model": "wells.lithologydescription", "pk": "19c4e3c0-ac2c-48a5-8d7a-5d7917bee92f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "82.00", "lithology_to": "122.00", "lithology_raw_data": "Light grey clay and silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203851}}, {"model": "wells.lithologydescription", "pk": "19d8bb3e-42d2-4436-9926-4a4be4714def", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": "VERY FINE SAND WITH SILTY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200790}}, {"model": "wells.lithologydescription", "pk": "19e3bb91-88db-4160-acf9-33f9ee3ab780", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, "well_tag_number": 112694, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200539}}, {"model": "wells.lithologydescription", "pk": "19e4cb3f-6281-4ad6-955b-e40fe7e71ff4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well_tag_number": 113143, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 284' - Trace", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203259}}, {"model": "wells.lithologydescription", "pk": "19e5c20e-28a4-482e-8530-188a47a21d18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well_tag_number": 112439, "lithology_from": "9.00", "lithology_to": "39.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198786}}, {"model": "wells.lithologydescription", "pk": "1a0679c5-4f44-44a5-ba8a-c0c2065282c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well_tag_number": 113264, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203898}}, {"model": "wells.lithologydescription", "pk": "1a06a0c2-78a4-4e95-a6b2-6348dcb59092", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198578}}, {"model": "wells.lithologydescription", "pk": "1a0913eb-f1f2-46b4-8011-2b0b245bbc7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well_tag_number": 112866, "lithology_from": "29.00", "lithology_to": "47.00", "lithology_raw_data": "very silty", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": " WB brown-orange color", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201682}}, {"model": "wells.lithologydescription", "pk": "1a23937e-33b2-41a2-be22-95443741332f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "55.00", "lithology_to": "203.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200414}}, {"model": "wells.lithologydescription", "pk": "1a2afe7b-b1a6-4afc-a589-ad0fd00d05fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T22:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T22:11:12Z", "activity_submission": null, "well_tag_number": 113040, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "clay & gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202630}}, {"model": "wells.lithologydescription", "pk": "1a3b8894-215f-47c4-85c2-3f6db2a13608", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SILT, MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199729}}, {"model": "wells.lithologydescription", "pk": "1a3de28e-c40b-49e7-9b12-9bf0756a5f91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "216.00", "lithology_to": "218.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=H", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198721}}, {"model": "wells.lithologydescription", "pk": "1a3e29e1-c8a4-4b8b-9c17-1d22a8a47a24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:41:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, "well_tag_number": 112271, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197626}}, {"model": "wells.lithologydescription", "pk": "1a4de73a-b891-4357-957a-dd6dfbd96741", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:51:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:37Z", "activity_submission": null, "well_tag_number": 112244, "lithology_from": "15.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197500}}, {"model": "wells.lithologydescription", "pk": "1a501f2c-0984-447b-b5d6-8a51b930f9f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "74.00", "lithology_to": "151.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SOFT ZONES AT 94-99'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203099}}, {"model": "wells.lithologydescription", "pk": "1a50587e-b73f-48b7-a4b0-9f5e594c28c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:52:03Z", "activity_submission": null, "well_tag_number": 112911, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "COARSE GRAVEL, MED-COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RELATIVE HARDNESS: MEDIUM HARD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201941}}, {"model": "wells.lithologydescription", "pk": "1a531e85-97a6-48c9-9ca5-9e860c7128fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, "well_tag_number": 113115, "lithology_from": "143.00", "lithology_to": "146.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203049}}, {"model": "wells.lithologydescription", "pk": "1a5a13c5-db18-4287-9a1c-46833ff3a6e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "662.00", "lithology_to": "705.00", "lithology_raw_data": "SANSTONE (COARSE AND FINE)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198010}}, {"model": "wells.lithologydescription", "pk": "1a6eb353-54fd-4066-bafe-e29c3b91ea36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, "well_tag_number": 112290, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197732}}, {"model": "wells.lithologydescription", "pk": "1a75db88-0923-46b3-a91d-80c83805d9ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, "well_tag_number": 112229, "lithology_from": "20.00", "lithology_to": "38.00", "lithology_raw_data": "BROWN/B WATER BEARING SAND WITH LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197413}}, {"model": "wells.lithologydescription", "pk": "1a89680b-1f0f-4a46-9f31-d0947f8d59ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "93.00", "lithology_to": "97.00", "lithology_raw_data": "silty sand fins traces gravel", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198199}}, {"model": "wells.lithologydescription", "pk": "1aa58e49-fb92-4ccb-9b45-3f357c19015d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "24.00", "lithology_to": "36.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN, WHITE AND GREY; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200793}}, {"model": "wells.lithologydescription", "pk": "1ab12a3c-3636-4372-bf1f-62b4bc74d68e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199972}}, {"model": "wells.lithologydescription", "pk": "1ab34f40-88af-4c45-88d2-95e5b80be9a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200078}}, {"model": "wells.lithologydescription", "pk": "1abab933-3f24-4714-8a9c-7a17035fbad1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "MEDIUM/SOFT; GRAVEL TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199250}}, {"model": "wells.lithologydescription", "pk": "1ad17e42-e7a9-4316-a943-1aa243848472", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "354.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200343}}, {"model": "wells.lithologydescription", "pk": "1ad6abc0-2493-474e-a6dc-5924c59ae041", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202220}}, {"model": "wells.lithologydescription", "pk": "1ada2374-f8c3-41e3-8312-53f5a72e1cc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well_tag_number": 113095, "lithology_from": "192.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202957}}, {"model": "wells.lithologydescription", "pk": "1aef0b69-a493-462f-998f-02724f0724af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:49Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "Till brown", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203566}}, {"model": "wells.lithologydescription", "pk": "1afb5a64-c963-4a83-946d-92dcdda100ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "SILTY, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199573}}, {"model": "wells.lithologydescription", "pk": "1afb741d-e911-4aa2-abde-3cb2e8345817", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:07:32Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "463.00", "lithology_to": "600.00", "lithology_raw_data": "MEDIUM-HARD; BASALT BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "463-465=FRACTURED AREA, 2 LITER PER MINUTE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199889}}, {"model": "wells.lithologydescription", "pk": "1aff8825-855e-4be1-ae19-750aa9cfbd80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T19:13:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, "well_tag_number": 113036, "lithology_from": "257.00", "lithology_to": "584.00", "lithology_raw_data": "SHALE MED WITH SANDSTONE INTERBEDDING ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202625}}, {"model": "wells.lithologydescription", "pk": "1b02e14c-e8a1-442b-90e0-1b4bd6c8a4f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "80.00", "lithology_to": "83.00", "lithology_raw_data": "SOFT/MEDIUM; MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199073}}, {"model": "wells.lithologydescription", "pk": "1b1e5f47-36b8-42aa-8493-083797b68f86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "108.00", "lithology_to": "154.00", "lithology_raw_data": null, "lithology_description": "48", "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203551}}, {"model": "wells.lithologydescription", "pk": "1b1f2aea-0ff6-4c9e-9000-964322efabd9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201308}}, {"model": "wells.lithologydescription", "pk": "1b2979bc-4110-4736-b68a-36e8d9e5162a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well_tag_number": 113079, "lithology_from": "170.00", "lithology_to": "216.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202882}}, {"model": "wells.lithologydescription", "pk": "1b2bc573-360c-4c0c-88b8-89efbd10d361", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "105.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201997}}, {"model": "wells.lithologydescription", "pk": "1b2f5c9d-85d1-40d3-bf98-33a7824686b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MINOR, SAND, SILT, CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198910}}, {"model": "wells.lithologydescription", "pk": "1b31ad5e-ba85-4a2a-ac82-5726e7c935f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:22:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, "well_tag_number": 112427, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198675}}, {"model": "wells.lithologydescription", "pk": "1b33be34-1ca3-4fdf-a8a3-ab738af387eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "37.00", "lithology_to": "120.00", "lithology_raw_data": "CEMENTED SMALL GRAVEL - MED SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "M", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202535}}, {"model": "wells.lithologydescription", "pk": "1b444316-a14a-46a9-aec6-68e638b5f4cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:31Z", "activity_submission": null, "well_tag_number": 113307, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 220'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204069}}, {"model": "wells.lithologydescription", "pk": "1b54607c-8918-4b8d-9f6f-cf1de6feb4c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well_tag_number": 112849, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201474}}, {"model": "wells.lithologydescription", "pk": "1b5c8047-f470-45ec-9cf0-6c25888f10bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "70.00", "lithology_to": "125.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WITH MUSHY LAYERS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201109}}, {"model": "wells.lithologydescription", "pk": "1b5fc0eb-875a-42de-8903-126259211371", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD; COARSE GRAVEL, ANGULAR", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199949}}, {"model": "wells.lithologydescription", "pk": "1b606435-ad64-4770-85d0-859a3a72253f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "53.00", "lithology_to": "57.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199699}}, {"model": "wells.lithologydescription", "pk": "1b69a76f-65f4-4540-baaf-05803da01e58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "70.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202184}}, {"model": "wells.lithologydescription", "pk": "1b6a6e14-c9ac-4417-a933-9ce0ae244864", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:21:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, "well_tag_number": 112632, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "boulders", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200293}}, {"model": "wells.lithologydescription", "pk": "1b7a3095-db27-41ab-9e27-04c25ce985f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "315.00", "lithology_to": "342.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201051}}, {"model": "wells.lithologydescription", "pk": "1b84e697-89bd-43e8-9f82-0372f4b06e06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, "well_tag_number": 112425, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SILT AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198664}}, {"model": "wells.lithologydescription", "pk": "1b87fc45-ada0-4612-a5c0-9baa0538f83c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "462.00", "lithology_to": "463.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203207}}, {"model": "wells.lithologydescription", "pk": "1b8ef9c2-4202-4c63-bc4b-e06b09add589", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "108.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202032}}, {"model": "wells.lithologydescription", "pk": "1b925933-3423-4be0-a117-2451018362f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "56.00", "lithology_to": "76.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "2 PPM Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202617}}, {"model": "wells.lithologydescription", "pk": "1b94ec64-dd17-4b46-84e5-dfa2a9439011", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "232.00", "lithology_to": "235.00", "lithology_raw_data": "FINE TO MEDIUM FINE, FRIABLE", "lithology_description": "54", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201599}}, {"model": "wells.lithologydescription", "pk": "1ba68d47-5b41-4c28-8aeb-a51457a7224f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND WITH SANDY BROWN CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200871}}, {"model": "wells.lithologydescription", "pk": "1bab3fbd-bd99-4245-9668-64a79d31b20a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "60.00", "lithology_to": "190.00", "lithology_raw_data": "MEDIUM/HARD, CLAY, SILT, ROCKS LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198612}}, {"model": "wells.lithologydescription", "pk": "1bca2131-c0bf-498a-884f-669c92fa871d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "3.00", "lithology_to": "11.00", "lithology_raw_data": "CLAY AND GRAVEL TILL ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200762}}, {"model": "wells.lithologydescription", "pk": "1bda4505-70cd-4272-a9ea-c7f875e4ee14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "46.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200070}}, {"model": "wells.lithologydescription", "pk": "1be4255d-f02c-42b7-a23a-0c62b2dc16f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "58.00", "lithology_to": "65.00", "lithology_raw_data": "SHALE BL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143911}}, {"model": "wells.lithologydescription", "pk": "1bf8ad4a-c9a0-4b55-b350-d4e5ea0a7c2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202948}}, {"model": "wells.lithologydescription", "pk": "1bfa28de-7ffe-4e67-a6e9-318498c80542", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "108.00", "lithology_to": "115.00", "lithology_raw_data": "very soft", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201360}}, {"model": "wells.lithologydescription", "pk": "1bfa3b2f-a6dc-4a3f-8f7c-12e308be7655", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "179.00", "lithology_to": "255.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201295}}, {"model": "wells.lithologydescription", "pk": "1bff3afa-33a4-4467-b9cc-2ba027556a2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "225.00", "lithology_to": "235.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143932}}, {"model": "wells.lithologydescription", "pk": "1c105b32-7ac6-4982-abb8-9b74cd89a71f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "2.00", "lithology_to": "37.00", "lithology_raw_data": "SILT AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202694}}, {"model": "wells.lithologydescription", "pk": "1c213e66-b50f-4221-ac8f-8564b77ad541", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "sand", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203100}}, {"model": "wells.lithologydescription", "pk": "1c2f7220-61a9-4e23-97a4-5b98dbf1ae40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, "well_tag_number": 112343, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANIC TO BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=B", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198128}}, {"model": "wells.lithologydescription", "pk": "1c4b507a-8033-4a5c-b32b-9783b9b16083", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, "well_tag_number": 112578, "lithology_from": "205.00", "lithology_to": "315.00", "lithology_raw_data": "MEDIUM/HARD; BASALT VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199843}}, {"model": "wells.lithologydescription", "pk": "1c4fc95b-abb3-40d6-8cf5-70c13e9d28fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "1020.00", "lithology_to": "1120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203070}}, {"model": "wells.lithologydescription", "pk": "1c714b47-beaf-44e0-a798-b3f7fc8de1ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, "well_tag_number": 112333, "lithology_from": "0.00", "lithology_to": "34.00", "lithology_raw_data": "BROWN-GREY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198012}}, {"model": "wells.lithologydescription", "pk": "1c7241ad-ecf8-4f1c-a5e3-05e439798893", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, "well_tag_number": 112686, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "VOLCANIC CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200508}}, {"model": "wells.lithologydescription", "pk": "1c79c29e-00cf-4f04-b432-2c7297345dbb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "63.00", "lithology_to": "67.00", "lithology_raw_data": "BROWN/GREY/WHITE VOLCANIC WITH WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197354}}, {"model": "wells.lithologydescription", "pk": "1c7ba826-c16b-4825-a342-3515e865eebd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Saturated", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203217}}, {"model": "wells.lithologydescription", "pk": "1c891de0-1b9a-4d90-8266-ca246ce14a09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well_tag_number": 112441, "lithology_from": "47.00", "lithology_to": "62.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198803}}, {"model": "wells.lithologydescription", "pk": "1c994324-2358-416c-95ed-847c7d2c4e58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "189.00", "lithology_to": "232.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202878}}, {"model": "wells.lithologydescription", "pk": "1c9fbe26-7572-4955-98e6-2a8383506835", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "200.00", "lithology_to": "201.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198719}}, {"model": "wells.lithologydescription", "pk": "1cb23463-7c57-4bb1-9be4-77cc7088b8fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "436.00", "lithology_to": "455.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200759}}, {"model": "wells.lithologydescription", "pk": "1cb82570-1d3c-44da-b6a7-a0a707d06dde", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "211.00", "lithology_to": "213.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200430}}, {"model": "wells.lithologydescription", "pk": "1cc2391f-7c45-443e-9304-4e7f8cde8aa6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well_tag_number": 113095, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202955}}, {"model": "wells.lithologydescription", "pk": "1cdea9a6-c0ba-4352-9f06-9009668488e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "35.00", "lithology_to": "67.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203201}}, {"model": "wells.lithologydescription", "pk": "1ce68dd6-40e1-4aff-a4ec-1a0fc7f7e293", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198280}}, {"model": "wells.lithologydescription", "pk": "1cef09fa-b2f6-4741-aa8b-879a1333fcb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:56Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "CLAY-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199491}}, {"model": "wells.lithologydescription", "pk": "1cf3e105-8c17-4fe1-b4af-e9a9934a8e81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "995.00", "lithology_to": "1001.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202871}}, {"model": "wells.lithologydescription", "pk": "1d033cd7-ef6d-4f6b-ae50-ccdd72010677", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "27.00", "lithology_to": "30.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198697}}, {"model": "wells.lithologydescription", "pk": "1d0cada2-1d43-4180-80c5-1831c76f100a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, "well_tag_number": 113206, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203589}}, {"model": "wells.lithologydescription", "pk": "1d0d9bce-aae2-49ee-8f06-ad8a44c0eabc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "165.00", "lithology_to": "167.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199053}}, {"model": "wells.lithologydescription", "pk": "1d19ba9b-6017-460d-aa94-9eff401d2271", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, "well_tag_number": 113141, "lithology_from": "94.00", "lithology_to": "117.00", "lithology_raw_data": "GREY GREEN ROCK - DIORITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203251}}, {"model": "wells.lithologydescription", "pk": "1d2458c5-5321-4c7c-941e-6268237d2855", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well_tag_number": 113008, "lithology_from": "19.00", "lithology_to": "24.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "cobbles", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202478}}, {"model": "wells.lithologydescription", "pk": "1d25a0c5-d602-4148-9444-83ae97fa95e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "90.00", "lithology_to": "112.00", "lithology_raw_data": "BOULDERS", "lithology_description": "19", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132264}}, {"model": "wells.lithologydescription", "pk": "1d3310f7-7e56-4876-ab4e-0e2bae900293", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "5.00", "lithology_to": "10.00", "lithology_raw_data": "FINE GRAVEL & CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201977}}, {"model": "wells.lithologydescription", "pk": "1d34db7b-8c2b-4eb6-bc4a-bcd3e29842f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "374.00", "lithology_to": "394.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201782}}, {"model": "wells.lithologydescription", "pk": "1d4b58d6-eca8-48bd-b1fa-ad5992e86a8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "5.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT CLAY, MARINE CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202981}}, {"model": "wells.lithologydescription", "pk": "1d4f51ff-3997-4f46-b023-1644030ce3e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "129.00", "lithology_to": "136.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203243}}, {"model": "wells.lithologydescription", "pk": "1d56d379-9795-496c-8caf-6f62fce28767", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:43:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, "well_tag_number": 113169, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203371}}, {"model": "wells.lithologydescription", "pk": "1d709676-086c-4b44-a9a6-b555d101cd81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "119.00", "lithology_to": "129.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203224}}, {"model": "wells.lithologydescription", "pk": "1d7390be-cd22-4612-a4b5-090e762498db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, "well_tag_number": 112320, "lithology_from": "55.00", "lithology_to": "81.00", "lithology_raw_data": "BEDROCK (QUARTZ VEINS)", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "79'=FRACTURE, 0.25 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197890}}, {"model": "wells.lithologydescription", "pk": "1d7bb986-8acf-445d-88a0-43c482322c95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK LAYERED ZONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199006}}, {"model": "wells.lithologydescription", "pk": "1d818590-c79f-4fc3-8ba1-1127df604463", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, "well_tag_number": 113092, "lithology_from": "9.00", "lithology_to": "17.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202933}}, {"model": "wells.lithologydescription", "pk": "1d951959-afd0-46a7-a1b4-a0aff1b78f52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:40:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, "well_tag_number": 112928, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN SOIL, GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "10 TO 6 2\" SEAL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202059}}, {"model": "wells.lithologydescription", "pk": "1da5adae-acaa-4470-8a45-fe38e2629ac4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "90.00", "lithology_to": "92.00", "lithology_raw_data": "and cobble", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198834}}, {"model": "wells.lithologydescription", "pk": "1daeb0db-2f53-4c32-b9cc-c9a5b70ad756", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "20.00", "lithology_to": "38.00", "lithology_raw_data": "GRAVEL, SAND, COARSE TO FINE, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201654}}, {"model": "wells.lithologydescription", "pk": "1dce0422-63f8-44f4-8248-8fcf67035c8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and wood debris", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197653}}, {"model": "wells.lithologydescription", "pk": "1de101e1-4c95-4a0f-b990-a2982aad6303", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199198}}, {"model": "wells.lithologydescription", "pk": "1defa829-620c-45fe-bb1a-e3f610ea0c89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "84.00", "lithology_to": "86.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198967}}, {"model": "wells.lithologydescription", "pk": "1df7f5a7-3854-4738-a5f7-86ad253eee3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T06:16:59Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "356.00", "lithology_to": "395.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201091}}, {"model": "wells.lithologydescription", "pk": "1dfea326-4d0c-4b3e-ab8c-b05acb52f77e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "280.00", "lithology_to": "295.00", "lithology_raw_data": "FINE TO MEDIUM SAND WB", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202990}}, {"model": "wells.lithologydescription", "pk": "1e05f553-d26e-44ca-9998-1ac6b6fd1536", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T17:49:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, "well_tag_number": 112289, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "GRAVEL, SOME CLAY", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING: 58'=1 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197729}}, {"model": "wells.lithologydescription", "pk": "1e0625bc-8b2f-46bf-abea-2397b2928e80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, "well_tag_number": 113027, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "Brown Clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202567}}, {"model": "wells.lithologydescription", "pk": "1e0f0db8-cdfa-4c86-a1fe-afcb88783d4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "76.00", "lithology_to": "78.00", "lithology_raw_data": "DIRTY BROWN SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; FRACTURED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200688}}, {"model": "wells.lithologydescription", "pk": "1e1bc8f8-d52b-486a-b091-b9f1cfd9409d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204070}}, {"model": "wells.lithologydescription", "pk": "1e28b81e-536b-46fd-8139-87c8b320d16c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:21:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, "well_tag_number": 112411, "lithology_from": "54.00", "lithology_to": "58.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET AT 40'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198547}}, {"model": "wells.lithologydescription", "pk": "1e2d15c7-7bef-43ad-925f-78677b727ffd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "gravel fill", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202807}}, {"model": "wells.lithologydescription", "pk": "1e30e181-7f5f-4d1f-a6ef-e3900acf40c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well_tag_number": 112441, "lithology_from": "62.00", "lithology_to": "292.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198804}}, {"model": "wells.lithologydescription", "pk": "1e330a5e-b9dc-4f39-94cf-b54ef42278cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, "well_tag_number": 112551, "lithology_from": "35.00", "lithology_to": "230.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199665}}, {"model": "wells.lithologydescription", "pk": "1e352198-677f-4edd-ad5a-dd70e8290e1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200038}}, {"model": "wells.lithologydescription", "pk": "1e46dae1-4c0d-459d-bf6e-57321a675bfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, "well_tag_number": 112673, "lithology_from": "6.50", "lithology_to": "27.00", "lithology_raw_data": "BOULDERS AND COBBLES WITH BROWN SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200455}}, {"model": "wells.lithologydescription", "pk": "1e4a678f-2b49-4b9f-aa63-ea3e18c0417e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well_tag_number": 112401, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198486}}, {"model": "wells.lithologydescription", "pk": "1e5b667c-1c1f-4428-8ebc-c2997d3809fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:19:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, "well_tag_number": 113204, "lithology_from": "95.00", "lithology_to": "135.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203582}}, {"model": "wells.lithologydescription", "pk": "1e69f2bd-3938-47f6-a16a-b91258a531e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "190.00", "lithology_to": "192.00", "lithology_raw_data": "CLAY OR SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202089}}, {"model": "wells.lithologydescription", "pk": "1e71acf7-a0a6-45a4-8091-a723dc4646bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Gravelly", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197596}}, {"model": "wells.lithologydescription", "pk": "1e80aebd-3e12-431b-af24-326ce05dbd89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "75.00", "lithology_to": "165.00", "lithology_raw_data": "SOFT SMOOTH CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205636}}, {"model": "wells.lithologydescription", "pk": "1e81bdca-dede-4992-ad19-4495d518980b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200395}}, {"model": "wells.lithologydescription", "pk": "1e87d6ad-bceb-4eaa-8af9-4b5ff95e0fc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "260.00", "lithology_to": "346.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "346'= FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199218}}, {"model": "wells.lithologydescription", "pk": "1e8da7c4-cf5e-4c88-a0e7-ed13ce8e4f40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "63.00", "lithology_to": "227.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "123-131 very soft and fractured.5 gpm at 190' frack at 187', large chunks, very unstable", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201378}}, {"model": "wells.lithologydescription", "pk": "1ea8eebd-c8d8-4737-ba54-bd7c2e8919ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:39:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:04Z", "activity_submission": null, "well_tag_number": 112923, "lithology_from": "100.00", "lithology_to": "195.00", "lithology_raw_data": "SAND GRAVEL/BIG", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@175'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202044}}, {"model": "wells.lithologydescription", "pk": "1eb0cfad-a3c5-438d-a619-f21bb81cc259", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, "well_tag_number": 112306, "lithology_from": "296.00", "lithology_to": "332.00", "lithology_raw_data": "GREY/GREEN GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197814}}, {"model": "wells.lithologydescription", "pk": "1eb29af6-a081-4053-b0f4-19b74f8868d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well_tag_number": 112919, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": "GREY/BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202016}}, {"model": "wells.lithologydescription", "pk": "1eb37fc1-334e-44c8-be02-dd819ec15a52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well_tag_number": 112806, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "fill, rip rap", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201199}}, {"model": "wells.lithologydescription", "pk": "1eb57870-be24-4114-9dd3-ce58de7def0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:33Z", "activity_submission": null, "well_tag_number": 113305, "lithology_from": "92.00", "lithology_to": "200.00", "lithology_raw_data": "slightly crumbly", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204060}}, {"model": "wells.lithologydescription", "pk": "1eba5428-66e9-4db5-a724-434399e4577f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201822}}, {"model": "wells.lithologydescription", "pk": "1ec24351-6f5f-456b-b418-0d90aae136bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "72.00", "lithology_to": "84.00", "lithology_raw_data": "SILT, SAND & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201810}}, {"model": "wells.lithologydescription", "pk": "1ee94da1-1ff8-4e3f-84ff-37da477b75c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "120.00", "lithology_to": "135.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC WITH MIXED FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198146}}, {"model": "wells.lithologydescription", "pk": "1f02702b-34e5-4c04-ab8e-26067c12869c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, "well_tag_number": 113277, "lithology_from": "80.00", "lithology_to": "260.00", "lithology_raw_data": "crystalline", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE AT 235'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203942}}, {"model": "wells.lithologydescription", "pk": "1f04ebcb-ee2f-4d7c-965a-0759f1258775", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "230.00", "lithology_to": "235.00", "lithology_raw_data": "W.B. GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202763}}, {"model": "wells.lithologydescription", "pk": "1f070233-9af1-4afa-9877-83fae9a64345", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-28T22:09:59Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "84.00", "lithology_to": "261.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202433}}, {"model": "wells.lithologydescription", "pk": "1f0f88a5-cc38-4b9e-8fc2-40f0b7aa6548", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "447.00", "lithology_to": "456.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202845}}, {"model": "wells.lithologydescription", "pk": "1f178ae5-eb29-48ee-add4-12e45306963e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": "8.00", "lithology_to": "745.00", "lithology_raw_data": "consistant", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199385}}, {"model": "wells.lithologydescription", "pk": "1f1876ab-43f6-4c15-87d8-7f5e4764ddf5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "261.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199718}}, {"model": "wells.lithologydescription", "pk": "1f1b307b-ebd3-434f-811e-826129154501", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "1340.00", "lithology_to": "1360.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203074}}, {"model": "wells.lithologydescription", "pk": "1f228c77-fb21-413f-b2b2-2599ab438b58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, "well_tag_number": 112878, "lithology_from": "71.00", "lithology_to": "81.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201749}}, {"model": "wells.lithologydescription", "pk": "1f24fe13-b1fb-407b-8956-ad84bbd34a64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "129.00", "lithology_to": "132.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203225}}, {"model": "wells.lithologydescription", "pk": "1f3c0f94-ac03-43f2-9c17-d3aac67a3d04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "158.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL/CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201696}}, {"model": "wells.lithologydescription", "pk": "1f4063cb-ce59-402f-b356-5bba3f446e23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "33.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEALED OFF AT 36' WITH CASING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203906}}, {"model": "wells.lithologydescription", "pk": "1f46836f-874e-4e08-9826-60445ec84070", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:47:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, "well_tag_number": 112784, "lithology_from": "4.25", "lithology_to": "60.30", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201119}}, {"model": "wells.lithologydescription", "pk": "1f49f33e-70dd-46b9-bdcf-d3d2b5ad9218", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "350.00", "lithology_to": "374.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201781}}, {"model": "wells.lithologydescription", "pk": "1f4dd234-3e8b-45b6-a531-37c0952febb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T18:57:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, "well_tag_number": 112829, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Wet @ 40'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201354}}, {"model": "wells.lithologydescription", "pk": "1f590f74-7cbf-4784-85d2-9c36c21d9fae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "455.00", "lithology_to": "501.00", "lithology_raw_data": "some light grey", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202924}}, {"model": "wells.lithologydescription", "pk": "1f5d333b-d0ce-4e04-9cb4-039445a5b13b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "140.00", "lithology_to": "147.00", "lithology_raw_data": "LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "4.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198048}}, {"model": "wells.lithologydescription", "pk": "1f5e6e3c-4b95-4d5e-aff2-0083d8e6b867", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "GLACIAL TILL ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197942}}, {"model": "wells.lithologydescription", "pk": "1f690908-bede-410a-9b9f-ac59ce6e1dff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "12.00", "lithology_to": "26.00", "lithology_raw_data": "compact", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201385}}, {"model": "wells.lithologydescription", "pk": "1f7d37e5-37ae-4b34-9bb6-b87f9ed9e844", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "14.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-3", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202392}}, {"model": "wells.lithologydescription", "pk": "1f94cd66-0e77-4908-8a45-c6f873e5e7bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:39:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, "well_tag_number": 112262, "lithology_from": "22.00", "lithology_to": "41.00", "lithology_raw_data": "MEDIUM GRAVEL, WITH MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20+ USGPM, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197582}}, {"model": "wells.lithologydescription", "pk": "1fa190b0-79e3-47f2-a38a-580f359976f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "394.00", "lithology_to": "408.00", "lithology_raw_data": "HARD TO VERY HARD", "lithology_description": "47", "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201554}}, {"model": "wells.lithologydescription", "pk": "1fa7e272-e6f7-4e81-894c-acfb0ee9b332", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "281.00", "lithology_to": "285.00", "lithology_raw_data": "coarse ", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Thick wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197604}}, {"model": "wells.lithologydescription", "pk": "1fb51e48-2466-42d1-8bca-684a2809a519", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, "well_tag_number": 112264, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL, SMALL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197583}}, {"model": "wells.lithologydescription", "pk": "1fc362b6-0899-44f8-8212-8007ba87e418", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, "well_tag_number": 113025, "lithology_from": "65.00", "lithology_to": "110.00", "lithology_raw_data": "Grey Clay and Rocks", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202553}}, {"model": "wells.lithologydescription", "pk": "1fd32710-777c-455a-a1db-5bd34df334ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "34.00", "lithology_to": "40.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CLEANER; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200890}}, {"model": "wells.lithologydescription", "pk": "1fdb4bfe-3f51-427f-af14-906389af2814", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "100.00", "lithology_to": "110.00", "lithology_raw_data": "COARSE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198628}}, {"model": "wells.lithologydescription", "pk": "1fe255ed-db24-4753-b877-a337e7801a72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "120.00", "lithology_to": "127.00", "lithology_raw_data": "CLAY/SILT/COARSE SAND", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198862}}, {"model": "wells.lithologydescription", "pk": "1feceff4-7dc5-4bef-b08b-add053da2d24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well_tag_number": 113134, "lithology_from": "6.00", "lithology_to": "52.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203185}}, {"model": "wells.lithologydescription", "pk": "200956ee-c533-440a-9721-973591fe8710", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "109.00", "lithology_to": "113.00", "lithology_raw_data": "FINE TO MEDIUM", "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201590}}, {"model": "wells.lithologydescription", "pk": "200e3b1d-917d-43ed-8a4b-d17dd71d9801", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "170.00", "lithology_to": "235.00", "lithology_raw_data": "SAND - SOME GRAVELS - WATER BEARING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198416}}, {"model": "wells.lithologydescription", "pk": "200f9d74-2a2e-4329-8a94-3b0bbbd0154a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T17:55:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, "well_tag_number": 113177, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203436}}, {"model": "wells.lithologydescription", "pk": "20134fe8-656c-4925-8696-8cee618a5898", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well_tag_number": 112571, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199785}}, {"model": "wells.lithologydescription", "pk": "20159f8b-0687-44ab-8559-70c540658b1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T17:49:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, "well_tag_number": 112732, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "MEDIUM AND FINE SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200774}}, {"model": "wells.lithologydescription", "pk": "2018b9c5-5b82-4c0f-81f0-c3bb1a775dc3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "8.00", "lithology_to": "18.00", "lithology_raw_data": "HARD GREY CLAY WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203169}}, {"model": "wells.lithologydescription", "pk": "20309290-1437-4e9a-963c-c7dbb4031395", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "315.00", "lithology_to": "317.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201455}}, {"model": "wells.lithologydescription", "pk": "2053fc7f-5419-442a-aa5b-8a235f00c5f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200614}}, {"model": "wells.lithologydescription", "pk": "2059c7a7-1645-4ce2-929a-4052644a2827", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well_tag_number": 112786, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NATIVE SOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201123}}, {"model": "wells.lithologydescription", "pk": "205afe93-1b45-4a87-bcb7-0312f6403d02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "10.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201978}}, {"model": "wells.lithologydescription", "pk": "20608301-0823-4ac3-b7f2-391cf73cbce8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "68.00", "lithology_to": "119.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Gravelly", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203223}}, {"model": "wells.lithologydescription", "pk": "20634c89-1c0c-4c96-8a94-30dbada47d73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "205.00", "lithology_to": "211.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200672}}, {"model": "wells.lithologydescription", "pk": "206430df-e297-4754-88b4-bb79af00e0ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "240.00", "lithology_to": "284.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204008}}, {"model": "wells.lithologydescription", "pk": "20715a70-cb1c-467d-a111-2b7afe907017", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "43.00", "lithology_to": "69.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200926}}, {"model": "wells.lithologydescription", "pk": "207fd72d-6fe1-4963-b666-0884fcc823e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "GREY/GREEN GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198122}}, {"model": "wells.lithologydescription", "pk": "2090f9ad-62a6-4da8-9ba4-61610dd1d56e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198622}}, {"model": "wells.lithologydescription", "pk": "20927693-daa4-4609-839f-c34d58a50bfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:44:36Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T17:46:39Z", "activity_submission": null, "well_tag_number": 112664, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200408}}, {"model": "wells.lithologydescription", "pk": "20a379d7-481d-4891-9a4f-ae21db7bfab2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "19.50", "lithology_to": "49.00", "lithology_raw_data": "grey/green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fracture @19.5', air lifted for 1 hr, dropped from 12GPM to 2GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201248}}, {"model": "wells.lithologydescription", "pk": "20a89997-3852-4747-bed5-f4ef9b6fffc1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well_tag_number": 112549, "lithology_from": "535.00", "lithology_to": "555.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": "caving", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199654}}, {"model": "wells.lithologydescription", "pk": "20aebde3-9c49-4858-a0ec-a30441e16cc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": "SHALE & SILTSTONE, MEDIUM HARD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201533}}, {"model": "wells.lithologydescription", "pk": "20b32232-2dcc-425c-b474-39f0e8ef2347", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "173.00", "lithology_to": "175.00", "lithology_raw_data": "GRAVEL & BITS CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202037}}, {"model": "wells.lithologydescription", "pk": "20c5571a-d7be-4938-945b-5e3703bcf0dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-01T08:04:30Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "55.00", "lithology_to": "84.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND GREEN; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200766}}, {"model": "wells.lithologydescription", "pk": "20c7b905-a29f-4d72-9589-70a5b16ddf87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-14T20:14:02Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "62.00", "lithology_to": "97.00", "lithology_raw_data": "FINE SAND, CLAY AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198535}}, {"model": "wells.lithologydescription", "pk": "20dc2feb-75cf-4528-801e-83a51d399446", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "6.00", "lithology_to": "31.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199015}}, {"model": "wells.lithologydescription", "pk": "20dd4b7c-e02a-4661-8cd0-3de7e7b7c060", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "15.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201957}}, {"model": "wells.lithologydescription", "pk": "20f90fa1-f5c8-46db-82af-a64ab65c5562", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, "well_tag_number": 112264, "lithology_from": "23.00", "lithology_to": "48.00", "lithology_raw_data": "LARGE BOULDERS WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197585}}, {"model": "wells.lithologydescription", "pk": "21074b09-9cde-4621-9dc4-a52bd2c29747", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "64.00", "lithology_to": "101.00", "lithology_raw_data": "DRY SAND AND GRAVEL (BROWN/GREY)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203139}}, {"model": "wells.lithologydescription", "pk": "210c0253-dc91-417d-90f8-ce31f5ea9028", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T18:28:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, "well_tag_number": 112733, "lithology_from": "18.00", "lithology_to": "32.00", "lithology_raw_data": "FINE AND SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200780}}, {"model": "wells.lithologydescription", "pk": "2120b5da-dffe-4402-961c-fc063a20d188", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "63.00", "lithology_to": "70.00", "lithology_raw_data": "and sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198755}}, {"model": "wells.lithologydescription", "pk": "2124d43e-f93b-43ee-ac27-857de3509c18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, "well_tag_number": 112859, "lithology_from": "9.00", "lithology_to": "45.00", "lithology_raw_data": "clean", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201628}}, {"model": "wells.lithologydescription", "pk": "21277bb5-6cdd-4851-9f99-67231ba00b3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "7.00", "lithology_to": "59.00", "lithology_raw_data": "GREEN/WHITE VOLCANIC WITH WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197984}}, {"model": "wells.lithologydescription", "pk": "213780e1-e450-44a1-9a74-64b0349083e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "48.00", "lithology_to": "49.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199018}}, {"model": "wells.lithologydescription", "pk": "2149bfb4-71f2-41dc-a84f-979ff5ac6eff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:44:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, "well_tag_number": 112940, "lithology_from": "65.00", "lithology_to": "75.00", "lithology_raw_data": "MIXED SANDS, TRACE OF GRAVEL, TRACE SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202114}}, {"model": "wells.lithologydescription", "pk": "214d0399-53ed-48e6-a1e0-a2f3debd9ea9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198625}}, {"model": "wells.lithologydescription", "pk": "215cd6df-3b96-4a3f-800c-31b1bc72bdec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199138}}, {"model": "wells.lithologydescription", "pk": "2163030e-cc12-4110-9239-d4b8ca7a8c2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "330.00", "lithology_to": "336.00", "lithology_raw_data": "SILTSTONE / SHALE / FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199472}}, {"model": "wells.lithologydescription", "pk": "2169df59-7e20-4bc6-bdaf-2605880e3b68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "140.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198691}}, {"model": "wells.lithologydescription", "pk": "216b89fa-8668-4a01-952f-c310485533ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "compact", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199375}}, {"model": "wells.lithologydescription", "pk": "2170a5ba-0bf1-4ce4-a7a7-fdb39ff860d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:59:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, "well_tag_number": 112790, "lithology_from": "40.00", "lithology_to": "53.33", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CLEAN SAND", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201137}}, {"model": "wells.lithologydescription", "pk": "2184ff5d-4c0f-4a07-a523-11e84b53eb4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, "well_tag_number": 112671, "lithology_from": "45.00", "lithology_to": "60.00", "lithology_raw_data": "TIGHT GRAVEL/COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200450}}, {"model": "wells.lithologydescription", "pk": "21985e87-3c22-4965-b09a-4a1387973ae7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well_tag_number": 113271, "lithology_from": "65.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203926}}, {"model": "wells.lithologydescription", "pk": "21a01101-05e7-49bf-a39c-a19db91c6fff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "280.00", "lithology_to": "287.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201609}}, {"model": "wells.lithologydescription", "pk": "21cfc3ac-be89-47eb-ade7-9b6d3a3fcfc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "110.00", "lithology_to": "118.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NOT ARTESIAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201999}}, {"model": "wells.lithologydescription", "pk": "21cffbf2-f2a6-477c-9ca3-12e5c2b3756a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "26.00", "lithology_to": "46.00", "lithology_raw_data": "metamorphic", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198707}}, {"model": "wells.lithologydescription", "pk": "21dc4539-0229-4e4c-8d7e-0308d187231c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well_tag_number": 112871, "lithology_from": "11.00", "lithology_to": "19.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201717}}, {"model": "wells.lithologydescription", "pk": "21e2491a-52e1-454f-85ac-ebd7eebf4543", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "SAND, COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198657}}, {"model": "wells.lithologydescription", "pk": "21e84bcd-4e20-4a09-b41b-d47722c13303", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, CLAY LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199296}}, {"model": "wells.lithologydescription", "pk": "21f02920-0544-45a0-b3db-9eceda3ead01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "43.00", "lithology_to": "71.00", "lithology_raw_data": "broken, boulders", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203056}}, {"model": "wells.lithologydescription", "pk": "21f50295-a332-4a60-ae41-e0da6d5cae18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "145.00", "lithology_to": "155.00", "lithology_raw_data": "GRAVEL WITH WATER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "TD 150", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202110}}, {"model": "wells.lithologydescription", "pk": "21f80d2b-2551-496f-92a6-3a084530e62c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "74.00", "lithology_to": "75.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201984}}, {"model": "wells.lithologydescription", "pk": "21fa73a7-3fd7-47e0-90be-e66c31315738", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "16.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203639}}, {"model": "wells.lithologydescription", "pk": "2209d007-2257-41dd-8643-2e60ead234ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "421.00", "lithology_to": "440.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK, WHITE AND GREY; WATERBEARING FRACTURE AT 426', 0.75 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200604}}, {"model": "wells.lithologydescription", "pk": "22243901-9016-40c3-a6b3-8b8bd9edd86b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "17.00", "lithology_to": "36.00", "lithology_raw_data": "and fine sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198882}}, {"model": "wells.lithologydescription", "pk": "2228bbb6-c96a-4468-97a7-580903ccb9c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:17:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, "well_tag_number": 112546, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199636}}, {"model": "wells.lithologydescription", "pk": "2232a674-83a8-4252-826a-32becfe48136", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "207.00", "lithology_to": "233.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197896}}, {"model": "wells.lithologydescription", "pk": "22352cd6-7208-4be3-a2a1-e1c520bb089e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, "well_tag_number": 112282, "lithology_from": "100.00", "lithology_to": "102.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197703}}, {"model": "wells.lithologydescription", "pk": "2238567d-54ca-41cd-9136-8d70f88dec15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "18.00", "lithology_to": "32.00", "lithology_raw_data": "SILTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200944}}, {"model": "wells.lithologydescription", "pk": "2243c7d2-7696-432c-ab91-11664808c544", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SILT-CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198911}}, {"model": "wells.lithologydescription", "pk": "22450e1f-ad29-4c08-b286-bf662d0f6b1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "41.00", "lithology_to": "53.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198898}}, {"model": "wells.lithologydescription", "pk": "225fa65f-d809-40f6-bbe3-52fad06a9a80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "385.00", "lithology_to": "501.00", "lithology_raw_data": "conglomerate", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203842}}, {"model": "wells.lithologydescription", "pk": "22651c2a-bf25-4f46-ac3f-b7d81c971914", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well_tag_number": 112624, "lithology_from": "64.00", "lithology_to": "70.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200196}}, {"model": "wells.lithologydescription", "pk": "227b5423-33d4-42c7-9115-ceaec9c31f8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "96.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202760}}, {"model": "wells.lithologydescription", "pk": "22993e73-d1e6-435c-80ee-29c4db8b8a9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "stony", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203682}}, {"model": "wells.lithologydescription", "pk": "229e2421-38ff-435f-aef9-e5cf443465b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "gravel layers", "lithology_description": "12", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201245}}, {"model": "wells.lithologydescription", "pk": "22a7317c-6233-4684-bdf8-99f2b0828cd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "83.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199074}}, {"model": "wells.lithologydescription", "pk": "22b5d9ff-74a2-48c2-8bd2-3a6edc7d649e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "31.00", "lithology_to": "36.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199016}}, {"model": "wells.lithologydescription", "pk": "22b688b0-7ef7-4d1f-b4d3-4eec6c953494", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "520.00", "lithology_to": "558.00", "lithology_raw_data": "FINE CONGLOMERATE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198007}}, {"model": "wells.lithologydescription", "pk": "22bb7da5-f981-472b-9c9a-941b64c23b62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "2.00", "lithology_to": "22.00", "lithology_raw_data": "BOG", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203156}}, {"model": "wells.lithologydescription", "pk": "22be1071-1071-4335-8471-1b1d1f6bf76d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "278.00", "lithology_to": "366.00", "lithology_raw_data": "dark grey / green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201255}}, {"model": "wells.lithologydescription", "pk": "22cb4dbe-0b06-4b99-8bcd-d826dd066697", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "16.00", "lithology_to": "121.00", "lithology_raw_data": "MEDIUM-HARD, VOLCANIC BEDROCK - TRACES OF FELDSPAR", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198095}}, {"model": "wells.lithologydescription", "pk": "22ce9efb-be8d-453c-9383-36be9e0665c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, "well_tag_number": 112306, "lithology_from": "169.00", "lithology_to": "296.00", "lithology_raw_data": "BEDROCK/GRANITE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197813}}, {"model": "wells.lithologydescription", "pk": "22d1c8d1-9b8b-48ee-bcf8-ad8013e22024", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-03T22:36:06Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "50.00", "lithology_to": "62.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "COLOUR=LIGHT GREY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200880}}, {"model": "wells.lithologydescription", "pk": "22e06784-784e-4504-8764-8c3cefbc8a7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "49.00", "lithology_to": "101.00", "lithology_raw_data": "CLAYEY SILT, TRACE OF SAND OCCASIONAL FINE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200983}}, {"model": "wells.lithologydescription", "pk": "22ef4f79-2143-453e-848d-eb7b39df36f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199060}}, {"model": "wells.lithologydescription", "pk": "22fb8f22-86a8-4a93-86dc-0dd3b34afa1b", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:19:52Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:19:52Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM-HARD; DIRTY SAND, MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199542}}, {"model": "wells.lithologydescription", "pk": "230556d0-32d6-4f9f-a0f4-d3fd2d5b7446", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "260.00", "lithology_to": "325.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND BLACK; SOME 1/4 GPM WITH TOTAL WATER 3/4 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200807}}, {"model": "wells.lithologydescription", "pk": "230d33ce-e5cd-440a-82b3-9413657af2df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "34.00", "lithology_to": "55.00", "lithology_raw_data": "GREY SAND, W.B. (VERY LITTLE WATER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200946}}, {"model": "wells.lithologydescription", "pk": "231187ff-48f3-4046-ab9d-dc6eb224eca3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY, TRACES OF ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198914}}, {"model": "wells.lithologydescription", "pk": "231929ae-b9c3-4448-a49a-4350b8ffbda2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, "well_tag_number": 112570, "lithology_from": "9.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199777}}, {"model": "wells.lithologydescription", "pk": "231c4633-c83c-4f4a-ad4e-78b0311e04a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198581}}, {"model": "wells.lithologydescription", "pk": "2321653e-a45c-434e-8a89-13ca6e2dc306", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197982}}, {"model": "wells.lithologydescription", "pk": "2331bf6c-0e45-4563-9fdf-6f7a791fb718", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "92.00", "lithology_to": "98.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201741}}, {"model": "wells.lithologydescription", "pk": "2341920f-bdd5-4459-8096-2e60b2777c36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "99.00", "lithology_to": "105.00", "lithology_raw_data": "Fine to medium sand, some coarse gravel, some cobbles", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203469}}, {"model": "wells.lithologydescription", "pk": "234f9069-b2ac-4101-b87b-d36564d73d1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:40:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:40:20Z", "activity_submission": null, "well_tag_number": 112375, "lithology_from": "7.00", "lithology_to": "36.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198334}}, {"model": "wells.lithologydescription", "pk": "2357dc2b-0842-465c-81a8-a009d1681e13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well_tag_number": 112871, "lithology_from": "19.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201718}}, {"model": "wells.lithologydescription", "pk": "23597e3e-b43c-4714-add1-e7a5668658af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "66.00", "lithology_to": "94.00", "lithology_raw_data": "SOLID", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK, WHITE AND DARK GREEN; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200600}}, {"model": "wells.lithologydescription", "pk": "23722268-4b14-4463-87b1-335baa83477a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "313.00", "lithology_to": "315.00", "lithology_raw_data": "SANDSTONE / FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199468}}, {"model": "wells.lithologydescription", "pk": "2379ef03-d4d0-4add-8d1b-2bad14e7514e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "9.00", "lithology_to": "58.00", "lithology_raw_data": "VERY DENSE; CLAY AND GRAVEL TILL WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200731}}, {"model": "wells.lithologydescription", "pk": "2384bbd9-336e-4253-a5cc-770123c07d4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "silt color", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203796}}, {"model": "wells.lithologydescription", "pk": "239ffe98-cff7-4022-a9f5-c818ba49938c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T17:05:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, "well_tag_number": 113144, "lithology_from": "200.00", "lithology_to": "234.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203263}}, {"model": "wells.lithologydescription", "pk": "23a80725-f04c-4256-9b40-0fe52ccaf79a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "43.00", "lithology_to": "71.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198353}}, {"model": "wells.lithologydescription", "pk": "23a8d78f-6a04-4ee7-9716-37f6938515d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, "well_tag_number": 112756, "lithology_from": "71.00", "lithology_to": "74.00", "lithology_raw_data": "CASED BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200940}}, {"model": "wells.lithologydescription", "pk": "23add375-04f0-40be-9cb9-31082c8b1ec5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, "well_tag_number": 112756, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "BOULDER, COBBLES AND LARGE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200938}}, {"model": "wells.lithologydescription", "pk": "23cb3ebe-37f8-4656-9f5a-aa779988bb66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "70.00", "lithology_to": "112.00", "lithology_raw_data": "medium to coarse grained", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198756}}, {"model": "wells.lithologydescription", "pk": "23dd1186-4f6a-4b74-a97c-efaf16091bf4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "145.00", "lithology_to": "154.00", "lithology_raw_data": "SILTY CLAY, SOME GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198021}}, {"model": "wells.lithologydescription", "pk": "23e99a4a-c096-476b-b92a-f9620867eca5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "51.00", "lithology_to": "66.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200743}}, {"model": "wells.lithologydescription", "pk": "24174c90-edf8-44c6-b9eb-01e120fa3ad6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "47", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197829}}, {"model": "wells.lithologydescription", "pk": "24360612-7752-4a4b-9226-8df33756ce5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well_tag_number": 112357, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 85' 15 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198214}}, {"model": "wells.lithologydescription", "pk": "243f517c-7ec8-458f-b485-70303623750e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "11.00", "lithology_to": "48.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201420}}, {"model": "wells.lithologydescription", "pk": "2445469b-1b78-4982-a990-37bf35d5e20f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, "well_tag_number": 112686, "lithology_from": "190.00", "lithology_to": "202.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200509}}, {"model": "wells.lithologydescription", "pk": "244768bf-d22e-45b2-a651-022dba929fef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "116.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201592}}, {"model": "wells.lithologydescription", "pk": "2447be3e-7bcb-48e0-9143-e764e6557a02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "19.00", "lithology_to": "25.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201313}}, {"model": "wells.lithologydescription", "pk": "2448296a-f114-47e8-b727-720eb5e4df47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "SOME CLAY", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201913}}, {"model": "wells.lithologydescription", "pk": "24490e87-1a3c-457f-b63b-a3be202cf48b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:52:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, "well_tag_number": 112907, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "COBBLES & BOULDERS, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201927}}, {"model": "wells.lithologydescription", "pk": "246f0cbf-54de-4c03-8d88-aa9d1215c8c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "55.00", "lithology_to": "78.00", "lithology_raw_data": "BLACK & WHITE GRANITE IWTH ORANGE CHIPS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183342}}, {"model": "wells.lithologydescription", "pk": "24752d65-3fec-4348-9839-e61aba616a79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "6.00", "lithology_to": "47.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198737}}, {"model": "wells.lithologydescription", "pk": "24775f17-51a8-4ab4-9377-4a2838521e90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, "well_tag_number": 113147, "lithology_from": "156.00", "lithology_to": "163.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203279}}, {"model": "wells.lithologydescription", "pk": "24856d71-44bd-439c-a294-20a93e10e65c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "1.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANIC MIXED FILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199797}}, {"model": "wells.lithologydescription", "pk": "249f4aa7-2cd4-4c40-b2a3-de870ac64dcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, "well_tag_number": 112795, "lithology_from": "76.00", "lithology_to": "81.00", "lithology_raw_data": "BROWN GRAVEL & SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "300.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201147}}, {"model": "wells.lithologydescription", "pk": "24a62c45-b97c-4081-8583-83ac01d10133", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, "well_tag_number": 112282, "lithology_from": "4.00", "lithology_to": "55.00", "lithology_raw_data": "GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197700}}, {"model": "wells.lithologydescription", "pk": "24bbf6d7-9297-40c5-b6a3-e57f3db26c1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "95.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE-FRACTURED IN PLACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201028}}, {"model": "wells.lithologydescription", "pk": "24c90c1c-f194-45a1-ac0d-2a64480c52e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, "well_tag_number": 112425, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198667}}, {"model": "wells.lithologydescription", "pk": "24c96bd5-2649-4f90-9cdc-b08f2c012aee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, "well_tag_number": 112279, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197683}}, {"model": "wells.lithologydescription", "pk": "24d0a0d7-e73a-42c1-8f4b-5574395308e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "30.00", "lithology_to": "48.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200347}}, {"model": "wells.lithologydescription", "pk": "24d684aa-259c-414f-9515-afa6b137ac46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "76.00", "lithology_to": "94.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198742}}, {"model": "wells.lithologydescription", "pk": "24e652b3-b4c0-4e62-a5d8-343e415f1892", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "55.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198364}}, {"model": "wells.lithologydescription", "pk": "25012a9e-c08a-4ecd-9308-24bf5f85d6fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:54:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, "well_tag_number": 112739, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": "CLAY, COBBLES, SAND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DARK BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200825}}, {"model": "wells.lithologydescription", "pk": "2505914b-e44d-4f3a-9303-d0b700fc2e0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "62.00", "lithology_to": "82.00", "lithology_raw_data": "GREEN/GREY-WHITE VOLCANIC, OCCASIONALLY GREEN AND WHITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197986}}, {"model": "wells.lithologydescription", "pk": "250625eb-5d96-4107-b1e2-3a3c5112acb7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:59:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, "well_tag_number": 112790, "lithology_from": "3.25", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8\" BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201136}}, {"model": "wells.lithologydescription", "pk": "250bf171-c225-4035-a1bc-ef870bfe805e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-10-26T18:55:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, "well_tag_number": 102364, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 142599}}, {"model": "wells.lithologydescription", "pk": "25293fdd-d062-4bff-b111-5ca684ccaaa3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "32.00", "lithology_to": "38.00", "lithology_raw_data": null, "lithology_description": "48", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202395}}, {"model": "wells.lithologydescription", "pk": "25324b2c-0924-4485-9bb7-7836f36ade9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "405.00", "lithology_to": "515.00", "lithology_raw_data": "Sand, well graded, trace silt and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Fine to medium sand at 430ft; fine grained, some sand, organics at 435ft; no further organics at 495ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203518}}, {"model": "wells.lithologydescription", "pk": "2546a738-2187-4691-8152-6805f423f2d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "128.00", "lithology_to": "147.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199857}}, {"model": "wells.lithologydescription", "pk": "2548ddb8-ee63-4c77-99cf-4dc458485dfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; TILL, MINOR, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199286}}, {"model": "wells.lithologydescription", "pk": "25605333-a2d5-48ea-af07-11fa09032a5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199234}}, {"model": "wells.lithologydescription", "pk": "256296d6-9509-4626-aae9-9729eecec061", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "290.00", "lithology_to": "405.00", "lithology_raw_data": "CLAY, SILTSTONE/SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199601}}, {"model": "wells.lithologydescription", "pk": "25779098-330c-4ae7-a017-4d1ca612d678", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:10:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:10:31Z", "activity_submission": null, "well_tag_number": 112772, "lithology_from": "0.00", "lithology_to": "125.00", "lithology_raw_data": "TILL CLAY WITH SOME GRAVEL AND SMALL BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201052}}, {"model": "wells.lithologydescription", "pk": "257dcfcc-24fa-45f2-aa76-799be4d914b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:55:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, "well_tag_number": 112446, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL/CLAY/MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198855}}, {"model": "wells.lithologydescription", "pk": "2585b968-cf14-49ac-80a8-4d42e39071b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, "well_tag_number": 112885, "lithology_from": "160.00", "lithology_to": "182.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201798}}, {"model": "wells.lithologydescription", "pk": "258c7791-3f19-4800-9dcf-8055fc4545f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "4.00", "lithology_to": "15.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205633}}, {"model": "wells.lithologydescription", "pk": "25936018-95be-4e42-bcb3-9e1edd7ff8ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "131.00", "lithology_to": "138.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197483}}, {"model": "wells.lithologydescription", "pk": "259d32f3-13f2-4df1-b2b6-8c4b81cabd4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T23:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, "well_tag_number": 112672, "lithology_from": "0.00", "lithology_to": "76.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200452}}, {"model": "wells.lithologydescription", "pk": "25b03e48-0d15-4304-869d-c57697fb5317", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "11.00", "lithology_to": "12.00", "lithology_raw_data": "LIGHT BROWN", "lithology_description": null, "lithology_colour": "09", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202337}}, {"model": "wells.lithologydescription", "pk": "25c02657-45c8-4d93-b4cf-ef13c08b4fc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well_tag_number": 112383, "lithology_from": "24.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Unstable", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198393}}, {"model": "wells.lithologydescription", "pk": "25ccd398-b609-4b96-b20e-c552fe17fb54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, "well_tag_number": 112722, "lithology_from": "13.00", "lithology_to": "26.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200693}}, {"model": "wells.lithologydescription", "pk": "25d06f40-0fc5-4607-998c-26253d4d023a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:41:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, "well_tag_number": 112271, "lithology_from": "2.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197627}}, {"model": "wells.lithologydescription", "pk": "25ee8412-fe2c-4bd8-a3fe-bdc4b0480089", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "600.00", "lithology_to": "610.00", "lithology_raw_data": "SILT/SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198652}}, {"model": "wells.lithologydescription", "pk": "26018303-d20f-4e4d-8892-49892ad61866", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:37:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, "well_tag_number": 113031, "lithology_from": "90.00", "lithology_to": "150.00", "lithology_raw_data": "SOFT GREY CLAY MIX WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202594}}, {"model": "wells.lithologydescription", "pk": "2618c455-98c3-4af7-909d-9c606f02ab60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "12.00", "lithology_to": "34.00", "lithology_raw_data": "cobble", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198323}}, {"model": "wells.lithologydescription", "pk": "261fef4b-91ed-4d22-868f-09883030d3ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": "Gravel, some sand, trace silt, grey-brown, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203510}}, {"model": "wells.lithologydescription", "pk": "2620ff07-9b83-40ab-9f30-973a3c640e2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "70.00", "lithology_to": "227.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "COLOUR=DARK GREEN WITH SOME REDDISH BROWN; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200882}}, {"model": "wells.lithologydescription", "pk": "262eaa20-e081-40c6-a6ad-4c181299d4a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198741}}, {"model": "wells.lithologydescription", "pk": "263b71d6-0c27-445c-893f-a7ee935c0256", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "35.00", "lithology_to": "115.00", "lithology_raw_data": "GRAVELLY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199756}}, {"model": "wells.lithologydescription", "pk": "263d6c00-bd28-4fd0-8694-555e33fdd50f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "19.00", "lithology_to": "25.00", "lithology_raw_data": "SAND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198035}}, {"model": "wells.lithologydescription", "pk": "264d929d-1bb9-4a98-bc38-646643627113", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "43.00", "lithology_to": "168.00", "lithology_raw_data": "SOLID TIGHT, GREEN VOLCANIC", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199849}}, {"model": "wells.lithologydescription", "pk": "264edee2-432e-4b5a-9a1b-a6bc42c40aac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "15.00", "lithology_to": "22.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200711}}, {"model": "wells.lithologydescription", "pk": "265c60b3-4b10-488c-aad6-defea9a66be7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "36.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202491}}, {"model": "wells.lithologydescription", "pk": "2661b6c0-d237-4de9-bea9-3e071f16e254", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, "well_tag_number": 112402, "lithology_from": "33.00", "lithology_to": "65.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198493}}, {"model": "wells.lithologydescription", "pk": "266a7a27-79b1-4fd2-b63e-2b1c71ce7c10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well_tag_number": 113290, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": "50", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "black chert", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203988}}, {"model": "wells.lithologydescription", "pk": "266fe164-a90c-4294-81a1-46f2f8ea673c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198337}}, {"model": "wells.lithologydescription", "pk": "2672ab59-12d6-4740-8738-c9b65b1a1a86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "76.00", "lithology_to": "87.00", "lithology_raw_data": "Gravel till, firm", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203467}}, {"model": "wells.lithologydescription", "pk": "267b711c-40e8-4ec7-8f6b-36b8bf09e4db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "580.00", "lithology_to": "860.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "some white zones and soft zones", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201264}}, {"model": "wells.lithologydescription", "pk": "2680303c-245f-474c-b1d2-a0b528a180b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "HARD PACKED CLAY AND GRAVEL TILL WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200809}}, {"model": "wells.lithologydescription", "pk": "2687d8e6-260d-4bea-8a0b-67c1aaa625ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well_tag_number": 112738, "lithology_from": "10.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWNISH GREY; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200820}}, {"model": "wells.lithologydescription", "pk": "268e6dc3-c97f-4c49-a046-60e7adf149cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "227.00", "lithology_to": "281.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "COLOUR=REDDISH BROWN WITH SOME WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200883}}, {"model": "wells.lithologydescription", "pk": "26903407-9662-44e6-9f2b-f1130909b19c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197535}}, {"model": "wells.lithologydescription", "pk": "26937c39-f550-4c71-9f9c-a3d1239e1ad3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "354.00", "lithology_to": "356.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197929}}, {"model": "wells.lithologydescription", "pk": "269544d3-a098-43c0-82cf-f3f8348a3a87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "4.00", "lithology_to": "17.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199712}}, {"model": "wells.lithologydescription", "pk": "269b39ec-700c-41d4-be62-8182158b0e7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BOULDER AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199954}}, {"model": "wells.lithologydescription", "pk": "269c3edb-d89b-4fbd-83c9-92ea08696f7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "130.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM-SOFT; SHALE/FINE, SANDSTONE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199503}}, {"model": "wells.lithologydescription", "pk": "26a54cfd-1ec5-4774-a4ed-1ba6e050b997", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:45:06Z", "activity_submission": null, "well_tag_number": 113016, "lithology_from": "135.00", "lithology_to": "168.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202510}}, {"model": "wells.lithologydescription", "pk": "26a7dcce-960d-4fa4-a2c3-605341aa564f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, "well_tag_number": 112564, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT-MEDIUM; TILL WITH LARGE COBBLE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199745}}, {"model": "wells.lithologydescription", "pk": "26ca97f0-898d-4b2d-abdd-a124b0f3ad6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "28.00", "lithology_to": "33.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200066}}, {"model": "wells.lithologydescription", "pk": "26cb19be-5b51-4e68-a035-b6ca4ca3f5af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "46.00", "lithology_to": "58.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "OPEN HOLE ( AIR SHAFT OLD MINE)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204074}}, {"model": "wells.lithologydescription", "pk": "26cf17cf-555b-4379-89e2-a02cd258fb0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "112.00", "lithology_to": "129.00", "lithology_raw_data": "medium fine grain", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203782}}, {"model": "wells.lithologydescription", "pk": "26dde9e9-640c-4bb3-a7f0-0a012279f832", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "2.00", "lithology_to": "21.00", "lithology_raw_data": "SAND, SILT & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201862}}, {"model": "wells.lithologydescription", "pk": "26dea877-c8e8-4e4b-b9ae-2632448046f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200709}}, {"model": "wells.lithologydescription", "pk": "26e10d81-1105-4080-a771-d4713a5aeef9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well_tag_number": 112849, "lithology_from": "35.00", "lithology_to": "38.00", "lithology_raw_data": "Sand with clay silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201479}}, {"model": "wells.lithologydescription", "pk": "26f274cc-f1a6-43d4-b31c-e7e1f2101ca6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:49:04Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "2.00", "lithology_to": "110.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK & GREY WITH REDDISH BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200464}}, {"model": "wells.lithologydescription", "pk": "26fa8183-8914-40ec-9655-e34d6ab2dbbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198602}}, {"model": "wells.lithologydescription", "pk": "27018f25-e77f-44e6-9539-9cb358cf2ec4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, "well_tag_number": 112805, "lithology_from": "5.00", "lithology_to": "385.00", "lithology_raw_data": "sandstone, small shale lenses", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 245'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201197}}, {"model": "wells.lithologydescription", "pk": "270dfe1d-261f-4b2d-8172-2aaf8a055ac7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202350}}, {"model": "wells.lithologydescription", "pk": "270ee773-a0df-4173-9d32-0068e5ffc354", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199314}}, {"model": "wells.lithologydescription", "pk": "27155498-03c5-4619-b198-9bb17950ae87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "76.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": "49", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197669}}, {"model": "wells.lithologydescription", "pk": "27223910-98c9-468a-933d-453c11432aae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, "well_tag_number": 112543, "lithology_from": "83.00", "lithology_to": "87.00", "lithology_raw_data": "GREY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199620}}, {"model": "wells.lithologydescription", "pk": "2728d70e-16ea-464d-8ac9-8e975700229e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well_tag_number": 113065, "lithology_from": "140.00", "lithology_to": "149.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202749}}, {"model": "wells.lithologydescription", "pk": "273836e0-38ad-4359-8d75-1192f7962ae8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "28.00", "lithology_to": "50.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200879}}, {"model": "wells.lithologydescription", "pk": "27421077-67b1-48a2-89f9-0be6a50a2e84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:52:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, "well_tag_number": 112941, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": "BOULDERS AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202117}}, {"model": "wells.lithologydescription", "pk": "2745fbf5-467c-4452-9ef9-f6ac16444204", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:29:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:29:01Z", "activity_submission": null, "well_tag_number": 112291, "lithology_from": "35.00", "lithology_to": "63.00", "lithology_raw_data": "GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197738}}, {"model": "wells.lithologydescription", "pk": "27461d66-7d44-4d73-bba5-af08528e6fa1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well_tag_number": 113095, "lithology_from": "210.00", "lithology_to": "221.00", "lithology_raw_data": "SS GREY BLUE SOFT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "APPROX FLOW ESTIMATE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202958}}, {"model": "wells.lithologydescription", "pk": "275399c1-5449-4f80-b611-e4ae2a48ee91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T22:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, "well_tag_number": 112717, "lithology_from": "15.00", "lithology_to": "31.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME CLAY LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200652}}, {"model": "wells.lithologydescription", "pk": "27640d4f-04fd-4692-89c4-66b228850274", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, "well_tag_number": 113210, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203635}}, {"model": "wells.lithologydescription", "pk": "2767f9fe-5390-431f-8c3c-ba36c8480ebe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:14:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, "well_tag_number": 112313, "lithology_from": "18.00", "lithology_to": "33.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197848}}, {"model": "wells.lithologydescription", "pk": "276d2cfe-0e5f-43f4-9fee-936985c10be4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "200.00", "lithology_to": "260.00", "lithology_raw_data": "siltstone/shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "black", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204040}}, {"model": "wells.lithologydescription", "pk": "27719380-4c92-42a3-8b82-2214bb1c3b57", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "GREEN SAND, ODD STONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199421}}, {"model": "wells.lithologydescription", "pk": "27720870-d431-4b48-9ecb-014047450a65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM/HARD; COMPRESSED GRAVELS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "360'-376' BGL= CLAY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199200}}, {"model": "wells.lithologydescription", "pk": "277addde-6a2b-498c-baf7-6fa0aa6f421e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "2.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, boulders", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204005}}, {"model": "wells.lithologydescription", "pk": "277bb9b0-2fee-4e32-a63a-62bcd7ad6648", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "360.00", "lithology_to": "380.00", "lithology_raw_data": "Sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203614}}, {"model": "wells.lithologydescription", "pk": "277dfbf2-8a4f-47b7-8c15-8dc953d102e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, "well_tag_number": 112589, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; COLOUR=BROWN/GREY/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199912}}, {"model": "wells.lithologydescription", "pk": "27849994-217e-4a7a-9893-93d0cb0c488d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132528}}, {"model": "wells.lithologydescription", "pk": "2785c1dd-5094-4e58-83b1-008b4c42dc3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "49.00", "lithology_to": "54.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198299}}, {"model": "wells.lithologydescription", "pk": "279670af-e5dc-4734-87b3-3451b34c772c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 335'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201194}}, {"model": "wells.lithologydescription", "pk": "279dc787-3132-4f9c-a637-0ebd5ca328aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "168.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198307}}, {"model": "wells.lithologydescription", "pk": "27a75baf-5b11-413b-9e4a-87f3671d9fdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "95.00", "lithology_to": "101.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198369}}, {"model": "wells.lithologydescription", "pk": "27b77bba-c1aa-4dd3-8817-e0210c73a57b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:41:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, "well_tag_number": 112271, "lithology_from": "140.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197628}}, {"model": "wells.lithologydescription", "pk": "27cdeb25-c5b5-4d2d-a249-b9236314b430", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "495.00", "lithology_to": "530.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201508}}, {"model": "wells.lithologydescription", "pk": "27d948fe-a2a9-4478-bfd6-45ed59abe3f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "16.00", "lithology_to": "40.00", "lithology_raw_data": "GREY/GREEN GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198121}}, {"model": "wells.lithologydescription", "pk": "27da1904-18f4-4dee-a2ff-4eb3ded59eeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "158.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE, MEDIUM FINE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199459}}, {"model": "wells.lithologydescription", "pk": "27db6de1-8931-4b07-bb24-a56d4efbb06b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well_tag_number": 112509, "lithology_from": "76.00", "lithology_to": "86.00", "lithology_raw_data": "W.B. SILTY SANDS & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199354}}, {"model": "wells.lithologydescription", "pk": "27e5b139-05b8-490b-9283-2993e54649b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199357}}, {"model": "wells.lithologydescription", "pk": "27f5f696-47b1-43f4-b1dc-af0e8a23eae3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "15.00", "lithology_to": "34.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201908}}, {"model": "wells.lithologydescription", "pk": "27fd6ace-61f3-4905-9660-ace089a24fab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:45:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:45:45Z", "activity_submission": null, "well_tag_number": 112353, "lithology_from": "70.00", "lithology_to": "235.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": " 15 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198190}}, {"model": "wells.lithologydescription", "pk": "28013a0d-c2d8-41de-ba73-f54575ed600a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "40.00", "lithology_to": "68.00", "lithology_raw_data": "BROWN TO GREY SILTY SANDS, SOME GRAVELS, WASTE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203231}}, {"model": "wells.lithologydescription", "pk": "280eb907-2ccf-4660-98ac-129020353f7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "550.00", "lithology_to": "750.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER INCREASED TO 25 GPM; FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198421}}, {"model": "wells.lithologydescription", "pk": "2813871d-9e3e-4ea7-a37f-909e7890b4e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, "well_tag_number": 112279, "lithology_from": "24.00", "lithology_to": "47.00", "lithology_raw_data": "GLACIAL TILL, COMPACT MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197687}}, {"model": "wells.lithologydescription", "pk": "2815ba39-9f9f-46d1-a651-eb31af3a0584", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, "well_tag_number": 112412, "lithology_from": "32.00", "lithology_to": "41.00", "lithology_raw_data": "SAND AND GRAVEL WITH SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198551}}, {"model": "wells.lithologydescription", "pk": "28229cca-77fd-4921-92a9-870ca798a2cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "33.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199996}}, {"model": "wells.lithologydescription", "pk": "28343692-c746-490b-a9e2-139894534492", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 280'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201393}}, {"model": "wells.lithologydescription", "pk": "2840b772-04aa-4095-90df-91e12de1ea77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "21.00", "lithology_to": "29.00", "lithology_raw_data": "silty", "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202636}}, {"model": "wells.lithologydescription", "pk": "2844d2fb-15b1-4aeb-a23f-7ef75e8ff713", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well_tag_number": 112983, "lithology_from": "15.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202367}}, {"model": "wells.lithologydescription", "pk": "28475b23-6ad6-4df4-a814-b879d387204b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; SILTY CLAY, MINOR, MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199535}}, {"model": "wells.lithologydescription", "pk": "2849da48-ce52-43e6-8edb-73ed43d482c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "74.00", "lithology_to": "90.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198833}}, {"model": "wells.lithologydescription", "pk": "284ed77a-2374-428d-b29e-59f41c54422c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202605}}, {"model": "wells.lithologydescription", "pk": "28526856-9915-4925-9beb-f7e6b54e046f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": "MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201310}}, {"model": "wells.lithologydescription", "pk": "28662851-2bb4-4cf6-8fb7-1457f600dc43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "1280.00", "lithology_to": "1320.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203072}}, {"model": "wells.lithologydescription", "pk": "2884bc2e-6f90-47b1-8379-850a79470113", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199668}}, {"model": "wells.lithologydescription", "pk": "288d4c2e-dd15-4bc2-927b-e1bd3e3523f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "550.00", "lithology_to": "585.00", "lithology_raw_data": "GREY/GREEN, VOLCANIC WITH OCCASIONAL GREEN TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SMALL FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198110}}, {"model": "wells.lithologydescription", "pk": "28910cc9-0bd3-4f12-b2a9-850d1db51596", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, "well_tag_number": 112570, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "09", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199779}}, {"model": "wells.lithologydescription", "pk": "28985706-5f52-4fd4-8a40-9ba4f6d94499", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well_tag_number": 112990, "lithology_from": "10.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202406}}, {"model": "wells.lithologydescription", "pk": "28af0843-947c-4ad7-aea2-97825a9268a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; TILL BEDROCK 17 FEET", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199136}}, {"model": "wells.lithologydescription", "pk": "28b21715-ce57-4605-9716-a13aae01aa5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "205.00", "lithology_to": "265.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5-40 GPM @ 240-265'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201876}}, {"model": "wells.lithologydescription", "pk": "28bef887-0158-4d1b-81e6-eded6779e1f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "697.00", "lithology_to": "725.00", "lithology_raw_data": "BLACK/GREY, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198412}}, {"model": "wells.lithologydescription", "pk": "28c21e8b-c905-4de5-aa7c-d47cffea5f07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "180.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199193}}, {"model": "wells.lithologydescription", "pk": "28c39d4f-a3b0-4967-befc-3f4085787b50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "147.00", "lithology_to": "153.00", "lithology_raw_data": "BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201624}}, {"model": "wells.lithologydescription", "pk": "28c4a1e2-8657-4462-94e7-dddffa3691a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:44Z", "activity_submission": null, "well_tag_number": 112693, "lithology_from": "6.00", "lithology_to": "14.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200536}}, {"model": "wells.lithologydescription", "pk": "290021bd-b195-475a-aa5b-b422580566f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well_tag_number": 112959, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202214}}, {"model": "wells.lithologydescription", "pk": "2929b9cf-cf3e-4ef8-8893-30d3d1c237a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, "well_tag_number": 113182, "lithology_from": "155.00", "lithology_to": "255.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203460}}, {"model": "wells.lithologydescription", "pk": "292c66a0-5203-453d-9932-f6f22337e2f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well_tag_number": 112439, "lithology_from": "39.00", "lithology_to": "46.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "33", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198787}}, {"model": "wells.lithologydescription", "pk": "29311654-0299-4621-80f1-ee90f2eb6431", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "silty sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201578}}, {"model": "wells.lithologydescription", "pk": "29320893-6c37-4542-b1c5-f11183862c35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "260.00", "lithology_to": "293.00", "lithology_raw_data": "MAINLY WITH LENSES OF SHALEY SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132535}}, {"model": "wells.lithologydescription", "pk": "29362b2f-bac3-4f67-92fc-bc060af33621", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "158.00", "lithology_to": "178.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203032}}, {"model": "wells.lithologydescription", "pk": "293a8532-38c9-423b-82e0-74c3bc24a8da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "255.00", "lithology_to": "310.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201296}}, {"model": "wells.lithologydescription", "pk": "29487f45-5353-4a93-ba4e-7675f28d5eab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, "well_tag_number": 112798, "lithology_from": "3.30", "lithology_to": "36.08", "lithology_raw_data": "POORLY GRADED SNAD WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201157}}, {"model": "wells.lithologydescription", "pk": "295371e9-2824-4081-800f-2787f10de95f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "325.00", "lithology_to": "353.00", "lithology_raw_data": "SS med hard fine grey - no water", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203398}}, {"model": "wells.lithologydescription", "pk": "2969888b-e9d0-43b1-9b12-2f85fcd8a646", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:04:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:04:38Z", "activity_submission": null, "well_tag_number": 112920, "lithology_from": "5.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202021}}, {"model": "wells.lithologydescription", "pk": "29736391-8861-4800-9644-d51b64bb8bd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, "well_tag_number": 112625, "lithology_from": "55.00", "lithology_to": "78.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200201}}, {"model": "wells.lithologydescription", "pk": "2974dc7c-f57e-4ee8-955f-d63b2de669fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "88.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201788}}, {"model": "wells.lithologydescription", "pk": "2974e2df-0d37-43d4-b17b-435621b2450d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY, SILT, TRACES OF ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199575}}, {"model": "wells.lithologydescription", "pk": "29960de6-8d4e-4df3-b9f0-859828cb113e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well_tag_number": 113153, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "sand with clay/silt", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203311}}, {"model": "wells.lithologydescription", "pk": "299aa7f3-f660-45fb-88fb-991b5a104727", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "light green blue black quartz very soft fractured rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "65.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "unable to drill due to collapsing borehole - Do not set well pump below the depth of 220 ft from top of pipe due to unstable borehole from 220 - 240", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202584}}, {"model": "wells.lithologydescription", "pk": "299ce936-0ae8-4ef0-aed5-e1f7d92fe2d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": "DARK GREY", "lithology_description": "58", "lithology_colour": "10", "lithology_hardness": "HARD", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "M.W.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201703}}, {"model": "wells.lithologydescription", "pk": "299dbfc8-3b5a-43b8-8bff-f2b3c6d1dea9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "13.00", "lithology_to": "17.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198895}}, {"model": "wells.lithologydescription", "pk": "299f7c28-e0d5-4e3f-b5eb-1b7487e8f10f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well_tag_number": 112886, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SILTY CLAY & ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201799}}, {"model": "wells.lithologydescription", "pk": "29a506fe-6951-414b-9114-a5b611303361", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "53.00", "lithology_to": "58.00", "lithology_raw_data": "SILTY SAND, CLAY BALLS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202181}}, {"model": "wells.lithologydescription", "pk": "29a55362-ae1a-479d-a3a4-de85efbcd52a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202155}}, {"model": "wells.lithologydescription", "pk": "29c29328-ff50-4693-af64-b3ea0c76d10a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200003}}, {"model": "wells.lithologydescription", "pk": "29c67547-7798-4419-ab1b-889f453899c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:18:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, "well_tag_number": 112783, "lithology_from": "3.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE PLUG", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201115}}, {"model": "wells.lithologydescription", "pk": "29e5c2ae-e4d0-4ff1-9df4-175c9bfcdbd7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199559}}, {"model": "wells.lithologydescription", "pk": "29e73878-0ac3-4155-977a-15bd0d81fe0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "22.00", "lithology_to": "50.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203025}}, {"model": "wells.lithologydescription", "pk": "29f7e223-fc60-4b0f-b1aa-0b05fc5681fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SITL, TRACES OF FINE SAND ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198557}}, {"model": "wells.lithologydescription", "pk": "29fb452f-8953-4384-8173-fd339ad12d00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "285.00", "lithology_to": "295.00", "lithology_raw_data": "SHALE/IRONSTONE LENSES", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201705}}, {"model": "wells.lithologydescription", "pk": "2a0a4126-6232-4706-ad46-5be8897b904d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "187.00", "lithology_to": "189.00", "lithology_raw_data": "gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202647}}, {"model": "wells.lithologydescription", "pk": "2a215aab-d360-4beb-b1d7-ebf1680839de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202027}}, {"model": "wells.lithologydescription", "pk": "2a3280a5-6e21-45a3-95fa-85e6eb797b9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well_tag_number": 112392, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198442}}, {"model": "wells.lithologydescription", "pk": "2a372b2d-2ebb-4b3f-9a78-d4fb0fd99beb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY/ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198888}}, {"model": "wells.lithologydescription", "pk": "2a3f2ebb-d32f-436e-8ce7-d8b545bc02d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T21:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T21:51:57Z", "activity_submission": null, "well_tag_number": 113266, "lithology_from": "10.00", "lithology_to": "64.00", "lithology_raw_data": "till", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203911}}, {"model": "wells.lithologydescription", "pk": "2a4636f5-1695-4241-b7f2-a19b12178300", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "GREY, SAND MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199966}}, {"model": "wells.lithologydescription", "pk": "2a56d5a1-a360-4006-9e55-79488219ce82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, "well_tag_number": 112343, "lithology_from": "5.00", "lithology_to": "80.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198129}}, {"model": "wells.lithologydescription", "pk": "2a5ca26b-13c1-455a-ac3c-886ed07537b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "245.00", "lithology_to": "265.00", "lithology_raw_data": "SANDSTONE WITH SHALE LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201036}}, {"model": "wells.lithologydescription", "pk": "2a60e226-05e9-48dd-af8b-9b45eeb72a22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, "well_tag_number": 112236, "lithology_from": "150.00", "lithology_to": "175.00", "lithology_raw_data": "MEDIUM/HARD GREEN QUARTZ-FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197455}}, {"model": "wells.lithologydescription", "pk": "2a884e0f-2e75-431d-8055-76b96f31d11e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "broken rock", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201465}}, {"model": "wells.lithologydescription", "pk": "2a976197-50f0-4fb9-bbb9-f61bf1bb515b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:09:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, "well_tag_number": 112995, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY/GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202442}}, {"model": "wells.lithologydescription", "pk": "2a990218-5893-40db-b982-e75b022d4a57", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "50.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198673}}, {"model": "wells.lithologydescription", "pk": "2aa31994-6175-410a-90d1-231e16bca5d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "60.00", "lithology_to": "240.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204007}}, {"model": "wells.lithologydescription", "pk": "2aab5d32-f0a1-4f5d-80a4-fc2fd2bb084f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "670.00", "lithology_to": "680.00", "lithology_raw_data": "SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203626}}, {"model": "wells.lithologydescription", "pk": "2ad257e2-99df-4d6f-a3be-7847d254b53c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well_tag_number": 112925, "lithology_from": "110.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202048}}, {"model": "wells.lithologydescription", "pk": "2ae0a636-73d9-4ca7-ab42-2bfdcda14432", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "78.00", "lithology_to": "81.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183343}}, {"model": "wells.lithologydescription", "pk": "2ae7e711-bfd4-4a41-b1ac-3cf05346a411", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "83.00", "lithology_to": "96.00", "lithology_raw_data": "W.B. GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200937}}, {"model": "wells.lithologydescription", "pk": "2b032eb8-2ddc-452c-a570-ffe0526cc53e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "240.00", "lithology_to": "245.00", "lithology_raw_data": "FINE SILTY SAND WITH CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202986}}, {"model": "wells.lithologydescription", "pk": "2b05e750-dffc-41a7-a3c3-e68522b134d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "174.00", "lithology_to": "208.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201773}}, {"model": "wells.lithologydescription", "pk": "2b0daefc-1e14-4a25-b6ec-b1a3e5bde9cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198894}}, {"model": "wells.lithologydescription", "pk": "2b2f0175-ec14-4a00-9e86-93e1031f5965", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "111.00", "lithology_to": "141.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197620}}, {"model": "wells.lithologydescription", "pk": "2b3393fc-8f22-41dd-9db7-b2a43b03a3b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "35.00", "lithology_to": "43.00", "lithology_raw_data": "BEDROCK BLOCKING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER BEARING, YIELD=20+ GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199848}}, {"model": "wells.lithologydescription", "pk": "2b3b63bf-b1fa-4b42-adb7-12b4ea86086c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:31:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:32:35Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "540.00", "lithology_to": null, "lithology_raw_data": "MINOR SAND, CLEANED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198825}}, {"model": "wells.lithologydescription", "pk": "2b3eafa1-700b-4deb-8cba-697cb4d8404c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T22:12:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, "well_tag_number": 113247, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "REDDISH COLOR, WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203801}}, {"model": "wells.lithologydescription", "pk": "2b472507-0265-494e-b1de-d84b92f95eac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "4.00", "lithology_to": "20.00", "lithology_raw_data": "SAND/GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FAIRLY CLEAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201986}}, {"model": "wells.lithologydescription", "pk": "2b4c6de9-ca3a-4d2d-8210-18a43cbfdec3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "98.00", "lithology_to": "106.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198852}}, {"model": "wells.lithologydescription", "pk": "2b503e58-96d4-48ca-b7a9-7b424827389e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T21:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T21:51:57Z", "activity_submission": null, "well_tag_number": 113266, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203910}}, {"model": "wells.lithologydescription", "pk": "2b5126ec-97bb-4f27-b405-1d4160e7ec8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "210.00", "lithology_to": "218.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; COMPRESSED GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199597}}, {"model": "wells.lithologydescription", "pk": "2b65e56a-51bd-4723-9cd7-7ac71831472d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "OVERBURDEN", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197932}}, {"model": "wells.lithologydescription", "pk": "2b6d9250-507b-4c32-b5b5-e42aa55f6896", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "148.00", "lithology_to": "207.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197895}}, {"model": "wells.lithologydescription", "pk": "2b6df211-8c3d-4cbd-a5d8-cd23c0f46ed8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:08:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, "well_tag_number": 112826, "lithology_from": "26.00", "lithology_to": "39.00", "lithology_raw_data": "GRAVELLY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201334}}, {"model": "wells.lithologydescription", "pk": "2b7e0ead-8b40-44a7-8513-7080e1d98ab7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, FINE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199237}}, {"model": "wells.lithologydescription", "pk": "2b858a53-0697-4fe8-acac-d1b31f980cbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "140'=5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198639}}, {"model": "wells.lithologydescription", "pk": "2b924194-82a9-4709-935b-657fd4a115ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well_tag_number": 112587, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=WRITTEN AS \"BL\" BUT I SUSPECT BLACK DUE TO ORGANICS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199899}}, {"model": "wells.lithologydescription", "pk": "2b937947-1267-43f9-9cd1-bd34215f1cc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "105.00", "lithology_to": "127.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201218}}, {"model": "wells.lithologydescription", "pk": "2b95fa4e-32ee-4219-a6d8-b4d67745a2c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURED ZONES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199216}}, {"model": "wells.lithologydescription", "pk": "2b9b8c36-3f6e-48a1-ba0f-de028e911356", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "63.00", "lithology_to": "66.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK,WHITE AND GREEN;DRY; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200599}}, {"model": "wells.lithologydescription", "pk": "2ba16ee3-e7bd-4b25-9bc0-b0b96b91711c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:56:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:56:25Z", "activity_submission": null, "well_tag_number": 112989, "lithology_from": "117.00", "lithology_to": "122.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202404}}, {"model": "wells.lithologydescription", "pk": "2bab8ce9-5acd-41d9-8220-819bef30cad1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "326.00", "lithology_to": "339.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201225}}, {"model": "wells.lithologydescription", "pk": "2badcc32-c5cb-4e0b-9cd1-1f573b31d8c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "71.00", "lithology_to": "141.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198354}}, {"model": "wells.lithologydescription", "pk": "2bafe525-0af4-4c5a-8d75-5a2b72716ed1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "56.00", "lithology_to": "65.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "sand med ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202608}}, {"model": "wells.lithologydescription", "pk": "2bb9cd98-be6c-4b4d-9103-2f137235b54e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well_tag_number": 112571, "lithology_from": "58.00", "lithology_to": "72.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199783}}, {"model": "wells.lithologydescription", "pk": "2bbcb095-2c50-4938-8636-b7f7ecf71d09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "160.00", "lithology_to": "223.00", "lithology_raw_data": "hard", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201181}}, {"model": "wells.lithologydescription", "pk": "2bc90a92-e1bf-4413-b322-a21473c32b27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:35:15Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "0.00", "lithology_to": "2.50", "lithology_raw_data": "Red/brown topsoil", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203861}}, {"model": "wells.lithologydescription", "pk": "2be067da-ad2c-470e-8963-3927f2f8f1e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "315.00", "lithology_to": "325.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202992}}, {"model": "wells.lithologydescription", "pk": "2beee63e-f267-4add-b9b2-5d2f867beeab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "214.00", "lithology_to": "250.00", "lithology_raw_data": "find-medium", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203392}}, {"model": "wells.lithologydescription", "pk": "2c066a84-cd24-427e-b9cb-1b662d118985", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/SOFT; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199170}}, {"model": "wells.lithologydescription", "pk": "2c06aa90-63c3-4bb3-933f-09ef79594804", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, "well_tag_number": 112290, "lithology_from": "97.00", "lithology_to": "102.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197735}}, {"model": "wells.lithologydescription", "pk": "2c0b4929-d22c-4023-a87d-dfc6821ed17e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well_tag_number": 112806, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 185'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201204}}, {"model": "wells.lithologydescription", "pk": "2c16ae7d-a4e0-4897-9de5-d100f70ef6f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well_tag_number": 112351, "lithology_from": "47.00", "lithology_to": "50.00", "lithology_raw_data": "and gravels", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198184}}, {"model": "wells.lithologydescription", "pk": "2c1b468b-c289-4638-9e06-dc0337cd28b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:35:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, "well_tag_number": 113090, "lithology_from": "16.00", "lithology_to": "29.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202927}}, {"model": "wells.lithologydescription", "pk": "2c2256bf-bc3b-428c-9da5-ba3004ecc6e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:27:52Z", "activity_submission": null, "well_tag_number": 112905, "lithology_from": "15.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201917}}, {"model": "wells.lithologydescription", "pk": "2c2aae00-2a69-4710-a478-943739e85bea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "5.00", "lithology_to": "56.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREEN, BLACK, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159174}}, {"model": "wells.lithologydescription", "pk": "2c30b4da-cbb0-4e16-b6ae-af8b41038482", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200432}}, {"model": "wells.lithologydescription", "pk": "2c390020-c9d5-4cc4-ada6-0e213efd559c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "211.00", "lithology_to": "213.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203177}}, {"model": "wells.lithologydescription", "pk": "2c498698-3e0d-40a1-b0d3-62e03a8ecbfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, "well_tag_number": 112909, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201933}}, {"model": "wells.lithologydescription", "pk": "2c59173d-0aa9-4f0a-ad2f-b6eb1170090a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "12.00", "lithology_to": "21.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "casing to 36'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201261}}, {"model": "wells.lithologydescription", "pk": "2c5f8c47-2f47-41f3-867d-8c5468e62ebe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "54.00", "lithology_to": "59.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201959}}, {"model": "wells.lithologydescription", "pk": "2c6319ee-7908-434d-aa5d-80f8b90e6115", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well_tag_number": 112592, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "FINE SANDS AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199928}}, {"model": "wells.lithologydescription", "pk": "2c68eb84-ed7e-486d-88af-6c9b659a9da6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "192.00", "lithology_to": "275.00", "lithology_raw_data": "BROWN/GREY", "lithology_description": "45", "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "300.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202090}}, {"model": "wells.lithologydescription", "pk": "2c765e81-888c-45bd-b1b6-ccc9e05810c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:42:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:42:35Z", "activity_submission": null, "well_tag_number": 112635, "lithology_from": "32.00", "lithology_to": "56.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200302}}, {"model": "wells.lithologydescription", "pk": "2c7dbdb7-7948-4882-a3ab-65c3c540e9e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "391.00", "lithology_to": "394.00", "lithology_raw_data": null, "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201231}}, {"model": "wells.lithologydescription", "pk": "2c830243-3290-4a13-a47c-6f0dffd08163", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201108}}, {"model": "wells.lithologydescription", "pk": "2c8fa79b-ee1f-4c73-b4c4-7142c3c1d7af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "232.00", "lithology_to": "305.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203246}}, {"model": "wells.lithologydescription", "pk": "2c9ae041-a1bb-427f-b2bb-25e674452748", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, "well_tag_number": 112608, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200051}}, {"model": "wells.lithologydescription", "pk": "2c9cf854-896e-49fc-bd07-24faa68539a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "120.00", "lithology_to": "130.00", "lithology_raw_data": "GRAVEL / CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199973}}, {"model": "wells.lithologydescription", "pk": "2cb71b43-ba35-4960-8aa3-38e20f2da465", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well_tag_number": 112255, "lithology_from": "19.00", "lithology_to": "23.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197547}}, {"model": "wells.lithologydescription", "pk": "2cb89a91-4a19-4283-a143-5994bf98e3bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "19.00", "lithology_to": "41.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203212}}, {"model": "wells.lithologydescription", "pk": "2ced874a-94f9-4c5e-be16-384942036032", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "169.00", "lithology_to": "180.00", "lithology_raw_data": "LAYERED GRAY BLUE SAND FINE GRAVEL", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203302}}, {"model": "wells.lithologydescription", "pk": "2cfde56b-c9bb-44d3-a6e9-26a88d2324c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, "well_tag_number": 112899, "lithology_from": "22.00", "lithology_to": "33.00", "lithology_raw_data": "COBBLE & BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201887}}, {"model": "wells.lithologydescription", "pk": "2d08f527-069b-4451-8631-26ddf263d567", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "103.00", "lithology_to": "120.00", "lithology_raw_data": "ORGANIC MATERIAL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=RED/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199999}}, {"model": "wells.lithologydescription", "pk": "2d098063-b902-46fd-b164-6d46445b248f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199201}}, {"model": "wells.lithologydescription", "pk": "2d0b540b-626a-467f-bf7b-6d16c1543f37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "153.00", "lithology_to": "197.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200437}}, {"model": "wells.lithologydescription", "pk": "2d137f8c-c6f0-4b31-8289-a2c7bcb69802", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "353.00", "lithology_to": "356.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201090}}, {"model": "wells.lithologydescription", "pk": "2d368437-0fab-42be-b72d-a506b0cebbab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, ROCKS, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198605}}, {"model": "wells.lithologydescription", "pk": "2d3d110c-a8a2-4c84-af07-face84a9b9a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "125.00", "lithology_to": "130.00", "lithology_raw_data": "SANDSTONE/ SHALE STRINGERS ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198069}}, {"model": "wells.lithologydescription", "pk": "2d531f28-b28d-49a2-8454-5707e692d074", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "250.00", "lithology_to": "271.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOFT SPOTS AND SOFT FRACTURED ZONES @ 250'* ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200727}}, {"model": "wells.lithologydescription", "pk": "2d60030b-62b0-488d-bceb-308208bd12d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "6.00", "lithology_to": "9.00", "lithology_raw_data": "FIRM", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203295}}, {"model": "wells.lithologydescription", "pk": "2d604105-a01d-43f6-a17b-904c79147621", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, "well_tag_number": 113251, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "clay boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203808}}, {"model": "wells.lithologydescription", "pk": "2d79cbf7-1857-4fa4-b1f8-755d88789359", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:09:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, "well_tag_number": 112872, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY & ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201721}}, {"model": "wells.lithologydescription", "pk": "2d7e73d5-e89d-4d2a-a14c-8fb3eccb3cf8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "60.00", "lithology_to": "76.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199917}}, {"model": "wells.lithologydescription", "pk": "2d7ef3ce-47e2-4c16-9c6c-8f03917754f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY/GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200425}}, {"model": "wells.lithologydescription", "pk": "2d83767f-9fa2-4cdb-9568-85bd6d3f8b12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "56.00", "lithology_to": "71.00", "lithology_raw_data": "SILTY CLAY WITH SILTY SEAMS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200669}}, {"model": "wells.lithologydescription", "pk": "2d86317f-c392-4c80-ad9e-80d86f97fba0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "233.00", "lithology_to": "243.00", "lithology_raw_data": "SILTY SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205640}}, {"model": "wells.lithologydescription", "pk": "2d8a99c5-7fca-421a-8173-fe3bdfcb4e5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "16.00", "lithology_to": "68.00", "lithology_raw_data": "SILT, CLAY & ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201829}}, {"model": "wells.lithologydescription", "pk": "2d8c9367-f910-4de0-8956-ec876a62d7fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, "well_tag_number": 112518, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "WET SAND, SILTY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199410}}, {"model": "wells.lithologydescription", "pk": "2d92908d-5681-4620-86c2-0df47d73a636", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201430}}, {"model": "wells.lithologydescription", "pk": "2d9cdb32-82ad-49a7-90ba-635a6d511052", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "9.00", "lithology_to": "18.00", "lithology_raw_data": "W.B. BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202681}}, {"model": "wells.lithologydescription", "pk": "2da4caa0-6fcf-4276-9c64-19e49e61ae11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well_tag_number": 112982, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "CLAY, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202359}}, {"model": "wells.lithologydescription", "pk": "2da5903f-060a-45d6-9118-0248d85f5c47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198360}}, {"model": "wells.lithologydescription", "pk": "2da7c3ed-e1d4-4c6e-aad0-d9e50fdb10f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:37:47Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:26:20Z", "activity_submission": null, "well_tag_number": 112998, "lithology_from": "0.00", "lithology_to": "116.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202449}}, {"model": "wells.lithologydescription", "pk": "2dacb31e-dc0e-4106-ac72-f58eae3e01fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "SHALE BL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143909}}, {"model": "wells.lithologydescription", "pk": "2db58ddb-2528-4d04-b89b-31e5784a7892", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well_tag_number": 112600, "lithology_from": "40.00", "lithology_to": "195.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, MINOR ROCKS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199983}}, {"model": "wells.lithologydescription", "pk": "2db5d8bf-eeee-435f-ab50-11be20efca3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well_tag_number": 112738, "lithology_from": "23.00", "lithology_to": "49.00", "lithology_raw_data": "SILTY SAND WITH CLAY LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; VERY DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200822}}, {"model": "wells.lithologydescription", "pk": "2dc2cbb9-1849-48eb-baa1-58d02c650df0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, "well_tag_number": 112593, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199934}}, {"model": "wells.lithologydescription", "pk": "2dd83a4c-76ff-47f7-a18a-f1c896fdc9c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well_tag_number": 112594, "lithology_from": "100.00", "lithology_to": "105.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199943}}, {"model": "wells.lithologydescription", "pk": "2ddacee7-da1d-4605-a4ff-f195c7bacd31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CEMENT INTO HOLE FROM 15'-71' TO CONTAIN ARTESIAN PRESSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203109}}, {"model": "wells.lithologydescription", "pk": "2ddf537f-2e3f-4799-a416-db081c59ca55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, "well_tag_number": 113205, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203587}}, {"model": "wells.lithologydescription", "pk": "2deb2fc3-2dec-42a4-85a4-fea216ca7ca0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "134.00", "lithology_to": "191.00", "lithology_raw_data": "BROWN SAND/GRAVEL (DAMP)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200928}}, {"model": "wells.lithologydescription", "pk": "2df15227-88bb-492a-b2d4-001faece7e60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, "well_tag_number": 113027, "lithology_from": "42.00", "lithology_to": "75.00", "lithology_raw_data": "Brown Silty Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202569}}, {"model": "wells.lithologydescription", "pk": "2df1f4f6-509b-4524-8d73-84b3d07b9730", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "130.00", "lithology_to": "137.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND WHITE; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200735}}, {"model": "wells.lithologydescription", "pk": "2df397a3-4e2b-481b-96d7-ecd30e997d73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:06:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, "well_tag_number": 112259, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197568}}, {"model": "wells.lithologydescription", "pk": "2df803fa-c0c3-4a7c-a0be-3dcf483c2961", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "28.00", "lithology_to": "35.00", "lithology_raw_data": "and gravel", "lithology_description": "48", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183977}}, {"model": "wells.lithologydescription", "pk": "2dfd2d8b-4d3c-40b2-8d8d-04216da36695", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "76.00", "lithology_to": "80.00", "lithology_raw_data": "medium to coarse", "lithology_description": "46", "lithology_colour": "06", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203532}}, {"model": "wells.lithologydescription", "pk": "2e092e90-20cf-4362-ab41-ffc776513b62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "3.00", "lithology_to": "34.00", "lithology_raw_data": "TILL WITH COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201291}}, {"model": "wells.lithologydescription", "pk": "2e0c629b-b7de-430c-9b7e-38709a923793", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "78.00", "lithology_to": "90.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132263}}, {"model": "wells.lithologydescription", "pk": "2e0ce94c-f125-4118-8050-a73dfb477f35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "275.00", "lithology_to": "287.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202831}}, {"model": "wells.lithologydescription", "pk": "2e2f8892-9159-45c5-8e5c-8415088c5f27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "171.00", "lithology_to": "175.00", "lithology_raw_data": "SANDSTONE, FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198000}}, {"model": "wells.lithologydescription", "pk": "2e3f6385-8224-4a0e-80da-6af58987dac3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198591}}, {"model": "wells.lithologydescription", "pk": "2e4a8579-8cb7-449a-bb27-5d2c3e8eeb79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "130.00", "lithology_to": "139.00", "lithology_raw_data": "and gravels", "lithology_description": "50", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water-bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198167}}, {"model": "wells.lithologydescription", "pk": "2e4f803b-b19f-4522-817c-3ded691a868e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T19:52:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, "well_tag_number": 113186, "lithology_from": "141.00", "lithology_to": "160.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203490}}, {"model": "wells.lithologydescription", "pk": "2e5e830f-4985-4fe8-b386-9f6843ba5b7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201207}}, {"model": "wells.lithologydescription", "pk": "2e62ec2c-a2df-4e7e-881e-b906619a8552", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:35:24Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:16:16Z", "activity_submission": null, "well_tag_number": 113090, "lithology_from": "29.00", "lithology_to": "181.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 85'-86' FRACTURE. 124-137'-SOFT ZONE. 152'-161'-VERY SOFT.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202928}}, {"model": "wells.lithologydescription", "pk": "2e644ae7-bb32-4ef3-8c77-bc6564fe4459", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "475.00", "lithology_to": "490.00", "lithology_raw_data": "SS, light grey, sugary, S&P", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203417}}, {"model": "wells.lithologydescription", "pk": "2e6df454-b69e-4ff5-9343-c7f3e91b6866", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well_tag_number": 112577, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199835}}, {"model": "wells.lithologydescription", "pk": "2e7747db-7b38-4c16-b2e6-2e9d4b47bde9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well_tag_number": 112822, "lithology_from": "25.00", "lithology_to": "720.00", "lithology_raw_data": null, "lithology_description": "59", "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 30'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201287}}, {"model": "wells.lithologydescription", "pk": "2e77973f-598a-48d9-8485-25ee8cf505ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "26.00", "lithology_to": "99.00", "lithology_raw_data": "TIGHT; CLAY AND GRAVEL TILL WITH BOULDERS AND COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200828}}, {"model": "wells.lithologydescription", "pk": "2e7f881b-6a89-4eb2-a750-8c4335d2401f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well_tag_number": 112239, "lithology_from": "75.00", "lithology_to": "140.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197473}}, {"model": "wells.lithologydescription", "pk": "2e83e800-8bc6-4fed-98bc-9736ddc49e2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "425.00", "lithology_to": "431.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198005}}, {"model": "wells.lithologydescription", "pk": "2e8b0629-df0c-4229-8e7c-72a52f085be2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "114.00", "lithology_to": "117.00", "lithology_raw_data": "silt/sand", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198201}}, {"model": "wells.lithologydescription", "pk": "2eab5ad0-609d-4466-a69f-61e3d433839f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:53:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, "well_tag_number": 112793, "lithology_from": "3.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CLAY CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201139}}, {"model": "wells.lithologydescription", "pk": "2eaf832a-a758-413c-af61-b3908494ce48", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199258}}, {"model": "wells.lithologydescription", "pk": "2eb8b41e-a0a4-4ea9-821d-101a0d5abe56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198695}}, {"model": "wells.lithologydescription", "pk": "2ec947e8-9f3b-4afa-85b7-2ff1a65bd80a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:20Z", "activity_submission": null, "well_tag_number": 112774, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201062}}, {"model": "wells.lithologydescription", "pk": "2ec990f6-d345-4743-93e6-d13d1bc1d078", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well_tag_number": 113008, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202477}}, {"model": "wells.lithologydescription", "pk": "2edb2cfd-1393-47ae-9193-9df663eb9577", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well_tag_number": 113133, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 38' - Trace", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203182}}, {"model": "wells.lithologydescription", "pk": "2ede7235-d15f-4ccd-9a89-963c44d1d279", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-23T19:08:54Z", "activity_submission": null, "well_tag_number": 113199, "lithology_from": "90.00", "lithology_to": "115.00", "lithology_raw_data": "Till, silt, sand, cobbles, and clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "making water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203562}}, {"model": "wells.lithologydescription", "pk": "2eeaf4b6-d86d-46c7-a056-2b02fd2cba70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:04:38Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-06T16:59:47Z", "activity_submission": null, "well_tag_number": 112920, "lithology_from": "7.00", "lithology_to": "175.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "36", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "2 GPM - FRACTURED @ 21'\r\n2 GPM - FRACTURED @ 66'\r\n3 GPM - FRACTURED @ 102'\r\n3 GPM - FRACTURED @ 108'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202022}}, {"model": "wells.lithologydescription", "pk": "2ef43ca2-600b-408d-b5ed-b0ae40b271f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "286.00", "lithology_to": "300.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200877}}, {"model": "wells.lithologydescription", "pk": "2f0143a8-5cbd-42a7-93d9-49d451be5a6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "7.00", "lithology_to": "42.00", "lithology_raw_data": "gravelly with cobbles", "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203695}}, {"model": "wells.lithologydescription", "pk": "2f014710-cb5e-4d33-8f7b-37a1d570fc34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "290.00", "lithology_to": "500.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Some green and white coloured granite", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198197}}, {"model": "wells.lithologydescription", "pk": "2f032e50-2185-4f75-ad60-e7fe86754a87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "92 FEET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198983}}, {"model": "wells.lithologydescription", "pk": "2f054f25-b33a-4425-a2ed-8ef372010e58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well_tag_number": 112870, "lithology_from": "500.00", "lithology_to": "564.00", "lithology_raw_data": "GREEN & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201714}}, {"model": "wells.lithologydescription", "pk": "2f08439e-1f08-41ca-955d-69d56c7c2c79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": "9.00", "lithology_to": "15.00", "lithology_raw_data": "faulty", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203683}}, {"model": "wells.lithologydescription", "pk": "2f0f67dd-bdf7-468d-9aba-7c0a1adda1de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM, GRAVEL MINOR CLAY ZONES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199969}}, {"model": "wells.lithologydescription", "pk": "2f193007-b982-4510-844e-182914c245b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, "well_tag_number": 113003, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "Brown Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202451}}, {"model": "wells.lithologydescription", "pk": "2f284fc4-99a9-4101-99f4-eb44c749d4e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY/GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198577}}, {"model": "wells.lithologydescription", "pk": "2f34f968-12a5-493b-9c3e-090eac6add5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "125.00", "lithology_to": "208.00", "lithology_raw_data": "GREY SILTY GRAVELS AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200957}}, {"model": "wells.lithologydescription", "pk": "2f3abad1-7d91-4689-a21a-a97235155177", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, "well_tag_number": 112279, "lithology_from": "1.00", "lithology_to": "15.00", "lithology_raw_data": "GREY-BLUE CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197684}}, {"model": "wells.lithologydescription", "pk": "2f3f1dfe-adf6-4ee2-bbf5-792deafc043c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T18:39:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, "well_tag_number": 113178, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203439}}, {"model": "wells.lithologydescription", "pk": "2f5c8a77-98ef-4d17-9a16-7a4ae5969a2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "60.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE WITH BLACK STREAKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ALTERATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200378}}, {"model": "wells.lithologydescription", "pk": "2f63e627-f9e8-46ff-9d4d-992f4813a8a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "458.00", "lithology_to": "460.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201299}}, {"model": "wells.lithologydescription", "pk": "2f659673-bee5-4583-96c9-649affefabc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "46.00", "lithology_to": "56.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "manganese", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203320}}, {"model": "wells.lithologydescription", "pk": "2f6db1df-9c16-4bb9-9820-af94332dfdc9", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-03T23:39:05Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-03T23:39:05Z", "activity_submission": null, "well_tag_number": 112625, "lithology_from": "84.00", "lithology_to": "170.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "200.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200893}}, {"model": "wells.lithologydescription", "pk": "2f7933ff-c58c-42d2-944f-d9472cde331f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, MINOR ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198964}}, {"model": "wells.lithologydescription", "pk": "2f83368c-9d14-4ac7-9cd4-079c3a7e85e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199441}}, {"model": "wells.lithologydescription", "pk": "2fa808c8-0f5a-4853-8522-d188fc99a0e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "370.00", "lithology_to": "395.00", "lithology_raw_data": "Sand, fine grained, some silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "Gravel lens, some sand at 380ft; trace gravel at 385ft; some gravel at 390ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203516}}, {"model": "wells.lithologydescription", "pk": "2fadc8d1-fcb6-4c7e-9105-08710e092dcf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:59:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, "well_tag_number": 112930, "lithology_from": "75.00", "lithology_to": "400.00", "lithology_raw_data": "CLAY GRAY PINK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202070}}, {"model": "wells.lithologydescription", "pk": "2fafa5d3-f54f-4db9-8ece-4606f2a1e5d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199000}}, {"model": "wells.lithologydescription", "pk": "2fbab022-de2a-47a6-89b4-99432ea7c5bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well_tag_number": 112600, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199980}}, {"model": "wells.lithologydescription", "pk": "2fc80355-095e-49e8-917f-44adca7019b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198698}}, {"model": "wells.lithologydescription", "pk": "2fda128c-f017-4a70-93a9-4a8046ad9e80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 380'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202973}}, {"model": "wells.lithologydescription", "pk": "2fdd110e-2d4a-49de-98cd-04ac9d172bc5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "21.00", "lithology_to": "43.00", "lithology_raw_data": "sand and gravels", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197591}}, {"model": "wells.lithologydescription", "pk": "2fe3546a-45d7-4e59-b88f-3e78bc035289", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "220.00", "lithology_to": "245.00", "lithology_raw_data": "GREEN SHALE WITH SOME FRACTURES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197841}}, {"model": "wells.lithologydescription", "pk": "2feac372-11a6-41c1-b0f9-86ef01c28306", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "108.00", "lithology_to": "176.00", "lithology_raw_data": "gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202645}}, {"model": "wells.lithologydescription", "pk": "3001eb13-fd6a-4b50-beb4-6975f9098c1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "45.00", "lithology_to": "48.00", "lithology_raw_data": "GREY SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197912}}, {"model": "wells.lithologydescription", "pk": "301cc41c-3b2f-4b7b-8b2b-df13acbda997", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, "well_tag_number": 112835, "lithology_from": "41.00", "lithology_to": null, "lithology_raw_data": "clay", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201398}}, {"model": "wells.lithologydescription", "pk": "3027d158-46a0-4a62-887f-85550bb82b25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:37:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:37:00Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "240.00", "lithology_to": "250.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198574}}, {"model": "wells.lithologydescription", "pk": "3031da36-3165-4312-b3c2-ecb3a5973a73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "196.00", "lithology_to": "296.00", "lithology_raw_data": "CLAY WITH LENSES OF SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201452}}, {"model": "wells.lithologydescription", "pk": "3032ddac-1ebd-4e8f-b7d3-338b6df9777e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "310.00", "lithology_to": "319.00", "lithology_raw_data": "COARSE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200835}}, {"model": "wells.lithologydescription", "pk": "303930dd-cda4-4612-ac54-13c8d4074b10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "96.00", "lithology_to": "140.00", "lithology_raw_data": "DRY SAND AND SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203122}}, {"model": "wells.lithologydescription", "pk": "304e3135-5b02-4211-9390-1027caa8eb74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "COARSE GRAVEL AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197786}}, {"model": "wells.lithologydescription", "pk": "306895a0-4551-4503-9ff4-24a1eecf4afb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "69.00", "lithology_to": "85.00", "lithology_raw_data": "MEDIUM SOFT, BROWN-GREY, SEMI-CEMENTED SILT-SOME ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198057}}, {"model": "wells.lithologydescription", "pk": "308c6e44-6bff-4369-859e-bae472e7ca57", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "117.00", "lithology_to": "204.00", "lithology_raw_data": "fine to medium grained", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197679}}, {"model": "wells.lithologydescription", "pk": "3098fdb6-342d-4a13-940d-26ba84e4fe36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, "well_tag_number": 112236, "lithology_from": "115.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM/HARD, GREEN/WHITE, SEAMS OF VOLCANIC GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED; 145'=FRACTURED, 3 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197454}}, {"model": "wells.lithologydescription", "pk": "309ae4aa-9842-4743-b92d-7a5383b4eb80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T19:52:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, "well_tag_number": 113186, "lithology_from": "135.00", "lithology_to": "141.00", "lithology_raw_data": "cased bedrock", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203489}}, {"model": "wells.lithologydescription", "pk": "30a0e5ae-e06d-4fba-9f03-07d06cc983ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, "well_tag_number": 112892, "lithology_from": "168.00", "lithology_to": "180.00", "lithology_raw_data": "WHITE WITH GREEN FLECK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201847}}, {"model": "wells.lithologydescription", "pk": "30a9da33-015a-41ed-84f0-c3f39b5e1ad7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:50:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, "well_tag_number": 112746, "lithology_from": "10.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME SILTY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; SILTY DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200869}}, {"model": "wells.lithologydescription", "pk": "30ca1976-c85a-4470-beb3-0d123674502d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, "well_tag_number": 113216, "lithology_from": "10.00", "lithology_to": "100.00", "lithology_raw_data": "SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203690}}, {"model": "wells.lithologydescription", "pk": "30efc324-692b-4638-a613-5e45778abb49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "SOFT-HARD; COBBLES, GRAVELS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, BROWN; COMPACT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199814}}, {"model": "wells.lithologydescription", "pk": "30fd0489-cd1f-4c20-846f-40e2f46d6d58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "74.00", "lithology_to": "92.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197854}}, {"model": "wells.lithologydescription", "pk": "310323da-001c-4f60-a9c1-e8587e5f0199", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "405.00", "lithology_to": "495.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200418}}, {"model": "wells.lithologydescription", "pk": "311846f8-b5bd-4e5b-9897-b796e402df24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "33.00", "lithology_to": "42.00", "lithology_raw_data": "GRAVEL-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198038}}, {"model": "wells.lithologydescription", "pk": "311a5ed7-cad1-4d98-9c92-c8ed2abdecb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:29:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:29:35Z", "activity_submission": null, "well_tag_number": 112595, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND AND MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199944}}, {"model": "wells.lithologydescription", "pk": "3120321b-5b68-42a9-9f87-0b614dc7ec4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198924}}, {"model": "wells.lithologydescription", "pk": "31420362-d8f6-4c2c-b377-58e4a5f6936f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, "well_tag_number": 112891, "lithology_from": "38.00", "lithology_to": "43.00", "lithology_raw_data": "SAND & GRAVEL WITH CLAY LUMPS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@ 32' WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201842}}, {"model": "wells.lithologydescription", "pk": "3142864c-491d-4d4e-8b5e-df07be8b535b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "63.50", "lithology_to": "73.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200717}}, {"model": "wells.lithologydescription", "pk": "31546dc7-e71b-484c-a6d1-94a2a5395f54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM, CLAY, ANGULAR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199206}}, {"model": "wells.lithologydescription", "pk": "3158f32e-0eaa-4042-9af1-f69673887167", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "260.00", "lithology_to": "267.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203868}}, {"model": "wells.lithologydescription", "pk": "3163e366-4893-4770-a6cd-28a0c174eb20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199755}}, {"model": "wells.lithologydescription", "pk": "3172da58-5e3a-4cd3-a3ec-608d9838a967", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "55.00", "lithology_to": "100.00", "lithology_raw_data": "dark green/ gray trace", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "very soft, after 3hrs developing it dropped to 31.5 sec.per gallon", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201250}}, {"model": "wells.lithologydescription", "pk": "3186684b-ee2d-4379-950b-ebe49347bc0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "119.00", "lithology_to": "130.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198166}}, {"model": "wells.lithologydescription", "pk": "318ca46e-c249-4005-b586-00035bdf42cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:33:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, "well_tag_number": 112948, "lithology_from": "14.00", "lithology_to": "36.00", "lithology_raw_data": "LARGE GRAVEL WITH MEDIUM SAND, WELL SORTED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202140}}, {"model": "wells.lithologydescription", "pk": "318d191a-3b25-40bd-8d27-46e7445a212b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "47.00", "lithology_to": "54.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198814}}, {"model": "wells.lithologydescription", "pk": "31a79a49-cb29-4ff6-9fa5-a7ddc29427cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, "well_tag_number": 112882, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILTY SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201765}}, {"model": "wells.lithologydescription", "pk": "31b12aa2-286e-4820-89c9-3776d1e4505d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "166.00", "lithology_to": "171.00", "lithology_raw_data": "W.B. SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199348}}, {"model": "wells.lithologydescription", "pk": "31b78449-5987-43f9-bf7a-9376005d8a79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "12.00", "lithology_to": "18.00", "lithology_raw_data": "silt and cobble", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198845}}, {"model": "wells.lithologydescription", "pk": "31b7bd59-b058-4599-bec4-16028b2160c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "148.00", "lithology_to": "182.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201874}}, {"model": "wells.lithologydescription", "pk": "31dd0330-77df-435c-97f8-9d7880b00bf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200886}}, {"model": "wells.lithologydescription", "pk": "31e79173-107b-4520-b5ae-f3d7a589a81e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "180.00", "lithology_to": "194.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199141}}, {"model": "wells.lithologydescription", "pk": "31f80121-e46f-46bc-8824-61dc24c395ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "33.00", "lithology_to": "41.00", "lithology_raw_data": "trace of gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198897}}, {"model": "wells.lithologydescription", "pk": "320de0c9-a581-46eb-99b1-3750a8075d00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:14:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, "well_tag_number": 112363, "lithology_from": "5.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198242}}, {"model": "wells.lithologydescription", "pk": "3211d41b-62f7-44a7-ac34-ab34b95e2009", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T22:29:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, "well_tag_number": 113112, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "215 FINE SAND GRAVEL; 225 COARSE TILL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "S/M", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203036}}, {"model": "wells.lithologydescription", "pk": "322e1d21-7fce-4745-8552-bdcf62b151ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "155.00", "lithology_to": "160.00", "lithology_raw_data": "WEATHER, BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199275}}, {"model": "wells.lithologydescription", "pk": "3230d2c2-199a-43f3-8e0a-f034076c0e3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T20:27:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, "well_tag_number": 112723, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "MEDIUM AND COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=REDDISH BROWN;DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200695}}, {"model": "wells.lithologydescription", "pk": "326e729c-1a9c-4365-b509-b423a422e341", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": "36.00", "lithology_to": "42.00", "lithology_raw_data": "ERODED BEDROCK, ORANGE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201858}}, {"model": "wells.lithologydescription", "pk": "32733c83-79d2-4e71-a71f-2e13a1bb411d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well_tag_number": 113082, "lithology_from": "2.00", "lithology_to": "10.00", "lithology_raw_data": "clay, sand, gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "till", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202892}}, {"model": "wells.lithologydescription", "pk": "3274aee4-43bd-466d-be62-fde83b3c8afd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, "well_tag_number": 112671, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "LOAMY TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200448}}, {"model": "wells.lithologydescription", "pk": "3286c768-fa15-4e3b-accc-38f451779f4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:48Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "500.00", "lithology_to": "560.00", "lithology_raw_data": "GRAY & RED & GREEN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201785}}, {"model": "wells.lithologydescription", "pk": "32a25a91-e308-40ee-9af5-ba27baef3784", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:02:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:02:02Z", "activity_submission": null, "well_tag_number": 112700, "lithology_from": "30.00", "lithology_to": "37.00", "lithology_raw_data": "BROKEN BEDROCK, SOME CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200562}}, {"model": "wells.lithologydescription", "pk": "32b0ea16-86fc-454f-a281-8571831e371a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "67.00", "lithology_to": "130.00", "lithology_raw_data": "BROWN/GREY/WHITE VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197355}}, {"model": "wells.lithologydescription", "pk": "32b28c59-b445-4825-98ee-1bb22bf7cd8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, "well_tag_number": 112249, "lithology_from": "80.00", "lithology_to": "165.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "83.5'-96'=FRACTURED, HARD WATER CASED OFF (H. 75 GRAINS); 151'-155'=FRACTURED (H. 7 GRAINS), 30 USGPM; 99'=DRY FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197516}}, {"model": "wells.lithologydescription", "pk": "32b355bc-3503-423f-b567-309ddcb76bcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:29:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, "well_tag_number": 112505, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SILTY SANDS & GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199338}}, {"model": "wells.lithologydescription", "pk": "32c8aeef-b43d-4765-8981-e35fd9952dcd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "300.00", "lithology_to": "315.00", "lithology_raw_data": "SANDSTONE/FINE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST-WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198085}}, {"model": "wells.lithologydescription", "pk": "32d04603-8bbe-429a-9aaa-cf50e1ce883b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "41.00", "lithology_to": "48.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199047}}, {"model": "wells.lithologydescription", "pk": "32d2ee8e-1cec-4747-8714-5d23dd96c72a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:29:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, "well_tag_number": 112987, "lithology_from": "66.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": "51", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202398}}, {"model": "wells.lithologydescription", "pk": "32f2737e-461d-42ee-a90a-9ae6115e8da4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, "well_tag_number": 113206, "lithology_from": "85.00", "lithology_to": "96.00", "lithology_raw_data": "gravel, sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203593}}, {"model": "wells.lithologydescription", "pk": "32f2bf67-3a30-4cf6-8309-f0af14b7f82a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "315.00", "lithology_to": "330.00", "lithology_raw_data": "SHALE/SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198086}}, {"model": "wells.lithologydescription", "pk": "32fc8b9b-2f2a-4cdd-aebd-9a948e66dd71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, "well_tag_number": 112785, "lithology_from": "8.92", "lithology_to": "7.42", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "QUICKCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201121}}, {"model": "wells.lithologydescription", "pk": "3302b2ea-7b3f-44ab-9b8e-ee752652fde0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T19:43:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:44:06Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "186.00", "lithology_to": "195.00", "lithology_raw_data": "GREY-GREEN SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198029}}, {"model": "wells.lithologydescription", "pk": "3312e640-7b80-4701-be9e-80aa32399b10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "35.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132524}}, {"model": "wells.lithologydescription", "pk": "33183a2a-a6b9-4ee4-b9b4-f754c294c6a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "105.00", "lithology_to": "160.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199591}}, {"model": "wells.lithologydescription", "pk": "331a9286-a312-4099-a901-107382345dcf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197692}}, {"model": "wells.lithologydescription", "pk": "3327bf04-467e-4e12-92d6-c3edb3740e0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "102.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201996}}, {"model": "wells.lithologydescription", "pk": "33290513-4a63-49d4-8d5c-8fb50456fb52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, CLAY MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199311}}, {"model": "wells.lithologydescription", "pk": "332fba3a-da84-4766-acb4-7c78397fc70b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "98.00", "lithology_to": "192.00", "lithology_raw_data": "PACKED SANDS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198275}}, {"model": "wells.lithologydescription", "pk": "334409b4-cb1e-42c1-bf71-6a4afa03433a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "3.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198322}}, {"model": "wells.lithologydescription", "pk": "3349da2e-d1a0-45e6-91d2-91b5669dbabd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well_tag_number": 112383, "lithology_from": "335.00", "lithology_to": "340.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198397}}, {"model": "wells.lithologydescription", "pk": "334de061-2f73-4822-b534-417bc304e554", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, "well_tag_number": 112304, "lithology_from": "216.00", "lithology_to": null, "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197803}}, {"model": "wells.lithologydescription", "pk": "3351233e-fb19-4ee0-9768-5bf6cd0ede51", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "69.00", "lithology_to": "134.00", "lithology_raw_data": "BROWN SAND/GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200927}}, {"model": "wells.lithologydescription", "pk": "3359dfdb-81a9-4cc9-b32d-b93207b5f857", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "56.00", "lithology_to": "180.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201342}}, {"model": "wells.lithologydescription", "pk": "336c15fa-d85a-420e-a011-b222666d1569", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well_tag_number": 112845, "lithology_from": "76.00", "lithology_to": "109.00", "lithology_raw_data": "FINER GREY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201446}}, {"model": "wells.lithologydescription", "pk": "336d79d7-2987-4b46-aa33-251a26d388d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "190.00", "lithology_to": "214.00", "lithology_raw_data": "cobbles/gravel", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": "13", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "gravel/sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203083}}, {"model": "wells.lithologydescription", "pk": "337e0f1b-4f57-402c-8953-42b1a11c674d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "71.00", "lithology_to": "124.00", "lithology_raw_data": "sand", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203057}}, {"model": "wells.lithologydescription", "pk": "33839db4-0337-4abc-b98a-e8aa9dad15a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, "well_tag_number": 113141, "lithology_from": "74.00", "lithology_to": "94.00", "lithology_raw_data": "LIGHT BROWN SILTS, SANDS, SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203250}}, {"model": "wells.lithologydescription", "pk": "33904cd1-3117-4c6e-a8b0-1cc23582c88a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 230'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202472}}, {"model": "wells.lithologydescription", "pk": "33ae0135-7fba-4155-8c3b-2d5c67f8aab4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "35.00", "lithology_to": "43.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200925}}, {"model": "wells.lithologydescription", "pk": "33d4aba5-18b9-4101-8c07-27092b443d03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "COARSE GRAVEL / COBBLE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199946}}, {"model": "wells.lithologydescription", "pk": "33da2c75-a397-4adf-b44d-217dc3086ac0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "48.00", "lithology_to": "65.00", "lithology_raw_data": "LARGE 6\" MINUS COBBLES, MEDIUM GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "YIELD=20+ USGPM; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197543}}, {"model": "wells.lithologydescription", "pk": "33da87c7-23fd-4c81-93e0-3a0ecc585de8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "100.00", "lithology_to": "150.00", "lithology_raw_data": "GREY, BLACK, SHALE, SMALL SANDSTONE LAYER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199874}}, {"model": "wells.lithologydescription", "pk": "33e6280b-4788-4bcf-80e9-6394dbe3ab85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-20T16:40:23Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=M/S", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199309}}, {"model": "wells.lithologydescription", "pk": "33ec11ae-a5c6-4633-b149-7507328a328f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "and wood debris", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199014}}, {"model": "wells.lithologydescription", "pk": "34015c2a-1e86-4c6e-bb04-af348bb6eeeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "68.00", "lithology_to": "114.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203203}}, {"model": "wells.lithologydescription", "pk": "3405f6c1-efc4-4d0d-ab89-03cb8be66d76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well_tag_number": 112750, "lithology_from": "33.00", "lithology_to": "73.00", "lithology_raw_data": "GREY SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200896}}, {"model": "wells.lithologydescription", "pk": "34083721-3b75-4235-afe2-969ef82561b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "361.00", "lithology_to": "365.00", "lithology_raw_data": "LIGHT GREY OTHER SURFICIAL/BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197886}}, {"model": "wells.lithologydescription", "pk": "340e9fe3-be62-4d9f-a8ff-f7667ee9e41e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "205.00", "lithology_to": "216.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202690}}, {"model": "wells.lithologydescription", "pk": "3418da00-e386-4b4d-ab72-f095c58e90fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202373}}, {"model": "wells.lithologydescription", "pk": "3421a841-f65a-4ff7-87d3-f00018f0fa05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202427}}, {"model": "wells.lithologydescription", "pk": "34249901-2c3f-43a8-be53-fab1fca37ddd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T20:27:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, "well_tag_number": 112723, "lithology_from": "14.00", "lithology_to": "22.00", "lithology_raw_data": "SAND AND GRAVEL WITH ORGANICS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200697}}, {"model": "wells.lithologydescription", "pk": "344f4bfc-73f1-4b20-ab71-ee7de852e7a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well_tag_number": 113166, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "gravel & sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203357}}, {"model": "wells.lithologydescription", "pk": "34532447-ca14-4828-9787-c92c18fbe767", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY CLAY, MINOR ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199534}}, {"model": "wells.lithologydescription", "pk": "345a6d39-90bb-4e0d-8caa-cb5195e2d13a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-02T20:14:29Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "0.00", "lithology_to": "260.00", "lithology_raw_data": "Clay, till", "lithology_description": "12", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203395}}, {"model": "wells.lithologydescription", "pk": "3473111c-ba01-45b9-9c2e-aa82797d4cb7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "100.00", "lithology_to": "103.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199362}}, {"model": "wells.lithologydescription", "pk": "347a8630-687f-4e81-9fc8-228a08bad65f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "470.00", "lithology_to": "485.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201506}}, {"model": "wells.lithologydescription", "pk": "34802ddc-e107-4ff5-bc06-e4b3d35d3116", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202876}}, {"model": "wells.lithologydescription", "pk": "349a956e-249a-4314-9d81-13f7fb8c4005", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "30.00", "lithology_to": "51.00", "lithology_raw_data": "BIT LOOSER SAND AND GRAVEL WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200645}}, {"model": "wells.lithologydescription", "pk": "34a4fffa-e2e7-4a4a-985a-324d3b0a661f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL, SILT CLAY SEAMS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199160}}, {"model": "wells.lithologydescription", "pk": "34a675a4-e11e-4423-a366-5b9e33fda3f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198799}}, {"model": "wells.lithologydescription", "pk": "34a93773-a4ad-4b93-b3d1-a594a9ee6208", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:57:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, "well_tag_number": 112292, "lithology_from": "19.00", "lithology_to": "65.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197741}}, {"model": "wells.lithologydescription", "pk": "34b26ba7-ef6d-4fb2-b4f3-f7ca2ee10dc3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well_tag_number": 112587, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC - TRACES OF FELDSPAR", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLUE/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199902}}, {"model": "wells.lithologydescription", "pk": "34baf3dd-c4cb-431b-9152-4a9e2c43bdb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:06:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, "well_tag_number": 112744, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FINE SAND WITH TOPSOIL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200860}}, {"model": "wells.lithologydescription", "pk": "34cea8b4-1ac8-4430-94bf-130b9a06b384", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "172.00", "lithology_to": "176.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198024}}, {"model": "wells.lithologydescription", "pk": "34d109de-5d10-4a1c-b097-4f6465a0d8b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well_tag_number": 112272, "lithology_from": "72.00", "lithology_to": "78.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197633}}, {"model": "wells.lithologydescription", "pk": "34e95e49-c5b8-4998-ad01-fbac5603ebbd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "136.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198234}}, {"model": "wells.lithologydescription", "pk": "34efb770-e0fa-42a8-bec7-c98612cee39b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "197.00", "lithology_to": "200.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202163}}, {"model": "wells.lithologydescription", "pk": "3502819a-1705-4b47-b52b-87892597ed04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "78.00", "lithology_to": "79.00", "lithology_raw_data": "HARD PACKED CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200719}}, {"model": "wells.lithologydescription", "pk": "351f1055-b6ae-464b-983c-70b214143856", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "82.00", "lithology_to": "92.00", "lithology_raw_data": null, "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203523}}, {"model": "wells.lithologydescription", "pk": "353bbc73-99d1-4ae8-8dd4-7ef4f685b9b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "74.00", "lithology_to": "79.00", "lithology_raw_data": "COARSE GRAVEL WITH MED TO COARSE SAND (CLEAN) GFREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201658}}, {"model": "wells.lithologydescription", "pk": "356e4e7c-092b-4477-afd8-dd45f2af9482", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198953}}, {"model": "wells.lithologydescription", "pk": "357294e5-6ddb-4c98-91a8-1715502eb997", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "262.00", "lithology_to": "267.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201607}}, {"model": "wells.lithologydescription", "pk": "35746036-88bb-4117-b4d2-9d5ac08cf325", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:23:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, "well_tag_number": 112881, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201762}}, {"model": "wells.lithologydescription", "pk": "35797507-8c0b-416a-8f57-60315cf6b834", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "300'=WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199076}}, {"model": "wells.lithologydescription", "pk": "359c36e7-4571-4a12-87ae-63809caf948b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well_tag_number": 113082, "lithology_from": "46.00", "lithology_to": "130.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fracture at 115'-119'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202894}}, {"model": "wells.lithologydescription", "pk": "359de4a2-6fa8-43f1-b176-dc6576235b15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198925}}, {"model": "wells.lithologydescription", "pk": "35a8b0f3-279a-47c2-9de6-3ea96e4d1955", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "120.00", "lithology_to": "150.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199085}}, {"model": "wells.lithologydescription", "pk": "35ce52d8-ba96-4d7f-a57d-c8d34c0e1e8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "74.00", "lithology_to": "83.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203543}}, {"model": "wells.lithologydescription", "pk": "35da9ec7-03bf-49af-808e-96541a60618a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well_tag_number": 112605, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200027}}, {"model": "wells.lithologydescription", "pk": "35dabbdd-e6be-4ade-8365-63a387ade48c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "180.00", "lithology_to": "280.00", "lithology_raw_data": "SAND, MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199240}}, {"model": "wells.lithologydescription", "pk": "35df28c5-61f5-4cc1-8c01-8cf145a437be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well_tag_number": 112938, "lithology_from": "5.00", "lithology_to": "11.00", "lithology_raw_data": "SAND & GRAVEL COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202097}}, {"model": "wells.lithologydescription", "pk": "35e4a515-3c90-47dd-9303-307f9faf4c6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "97.00", "lithology_to": "114.00", "lithology_raw_data": "sand / gravel/ silt", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198200}}, {"model": "wells.lithologydescription", "pk": "36076148-1248-46b9-a234-2e8591a8e55c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "11.00", "lithology_to": "21.00", "lithology_raw_data": "SILT, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198460}}, {"model": "wells.lithologydescription", "pk": "360952e7-00ef-4d9d-b4df-99d0917a2880", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:09:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, "well_tag_number": 112435, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198747}}, {"model": "wells.lithologydescription", "pk": "360b4ef2-cb36-438e-8b10-254c346fc9b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "78.00", "lithology_to": "81.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202704}}, {"model": "wells.lithologydescription", "pk": "36103348-7bed-4752-b6da-ee6a87d96e5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "38.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202317}}, {"model": "wells.lithologydescription", "pk": "361399e7-f8d1-4c6e-8d53-740331c9ba43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "240.00", "lithology_to": "300.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198865}}, {"model": "wells.lithologydescription", "pk": "3619533f-8f69-40d8-8bbc-e6bf5054826b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "137.00", "lithology_to": "138.00", "lithology_raw_data": "DK GRY SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143926}}, {"model": "wells.lithologydescription", "pk": "362b8293-bb1a-4038-8857-17408fc053be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "164.50", "lithology_to": "171.00", "lithology_raw_data": "GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "M.W.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201698}}, {"model": "wells.lithologydescription", "pk": "362c6d91-e179-476e-ab65-7f2330b4d68d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "SANDS AND GRAVEL", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203950}}, {"model": "wells.lithologydescription", "pk": "3636932b-a57d-451e-b194-4d05d7b898ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "198.00", "lithology_to": "224.00", "lithology_raw_data": "SILTY BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203144}}, {"model": "wells.lithologydescription", "pk": "363894a8-77fa-46ff-9287-a39946420399", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "17.00", "lithology_to": "44.00", "lithology_raw_data": "SANDY GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203135}}, {"model": "wells.lithologydescription", "pk": "36397a16-33ee-4a7c-af10-2c145ed6a22c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198530}}, {"model": "wells.lithologydescription", "pk": "363f02e3-6ee2-4458-a4b7-fc5bcc55b0b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "188.00", "lithology_to": "194.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201701}}, {"model": "wells.lithologydescription", "pk": "364e68b2-a6db-4ac4-b816-8bfb952de7ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, "well_tag_number": 112282, "lithology_from": "67.00", "lithology_to": "100.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197702}}, {"model": "wells.lithologydescription", "pk": "3657776e-f2e7-45c2-9023-0b980280c9c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "218.00", "lithology_to": "221.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203658}}, {"model": "wells.lithologydescription", "pk": "365d51ac-dac4-44f2-8f09-82d3eee9bfeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T04:30:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "310.00", "lithology_to": "425.00", "lithology_raw_data": "WHITE/PINK GRANITE GNEISS BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER INCREASED TO 7 GPM; FRACTURE- WATER INCREASED TO 14 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198156}}, {"model": "wells.lithologydescription", "pk": "365da6dd-f199-41a0-9780-f9e980e47862", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well_tag_number": 113079, "lithology_from": "69.00", "lithology_to": "170.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202881}}, {"model": "wells.lithologydescription", "pk": "366c258c-43df-4b0e-aa03-9713174d7d97", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, "well_tag_number": 112493, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199245}}, {"model": "wells.lithologydescription", "pk": "366edb19-f3c1-4668-a831-5ba270595fa7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "95.00", "lithology_to": "115.00", "lithology_raw_data": "SOME TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202107}}, {"model": "wells.lithologydescription", "pk": "3674c78d-1b5a-4e40-b49e-1a193f945507", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, "well_tag_number": 112625, "lithology_from": "24.00", "lithology_to": "55.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200200}}, {"model": "wells.lithologydescription", "pk": "368a9796-3828-4984-a422-0be337c55218", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:01:51Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "695.00", "lithology_to": "705.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199794}}, {"model": "wells.lithologydescription", "pk": "36a8776c-abcf-4f00-85ac-008601af3caf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well_tag_number": 112938, "lithology_from": "95.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING @ 71'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202101}}, {"model": "wells.lithologydescription", "pk": "36b0961c-d152-437e-b981-c531a8b4c86a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:16Z", "activity_submission": null, "well_tag_number": 112584, "lithology_from": "42.00", "lithology_to": "58.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "EST. 40 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199882}}, {"model": "wells.lithologydescription", "pk": "36b8c37d-4c5c-4b30-84cc-657943f37aff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199626}}, {"model": "wells.lithologydescription", "pk": "36d15ef0-c1d6-440f-8e51-358e4e9bdeae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "60.50", "lithology_to": "74.00", "lithology_raw_data": "DENSE SAND & CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201737}}, {"model": "wells.lithologydescription", "pk": "36f90596-7f87-4665-8732-eb83d62cad43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well_tag_number": 112528, "lithology_from": "70.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199512}}, {"model": "wells.lithologydescription", "pk": "37039881-28ff-4d46-98b8-3e77dbc6b289", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "25.00", "lithology_to": "59.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201542}}, {"model": "wells.lithologydescription", "pk": "370aa266-4555-480b-a984-03994506c5d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "36.00", "lithology_to": "50.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "coarse sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202505}}, {"model": "wells.lithologydescription", "pk": "3712f3ac-d630-4429-b7fe-033ed3ccacd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "BEDROCK, FRACTURED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199631}}, {"model": "wells.lithologydescription", "pk": "37145941-38b1-4a97-aed0-248fc73acced", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "20.00", "lithology_to": "100.00", "lithology_raw_data": "SAND, CLAY LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198930}}, {"model": "wells.lithologydescription", "pk": "371d0664-f6b3-4a63-b444-1435e3bb664c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "154.00", "lithology_to": "174.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201772}}, {"model": "wells.lithologydescription", "pk": "37351d69-20bd-42b3-b9e5-5ed92d5de681", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "357.00", "lithology_to": "367.00", "lithology_raw_data": "SS brownish grey, very hard", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203400}}, {"model": "wells.lithologydescription", "pk": "373b44fb-6d04-400c-93b2-f1b14894f70f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, "well_tag_number": 112892, "lithology_from": "161.00", "lithology_to": "168.00", "lithology_raw_data": "DARK GREY", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201846}}, {"model": "wells.lithologydescription", "pk": "3753228e-cd18-4eb2-a7c2-06497bf55e5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "BROWN & GREY, M.W.", "lithology_description": "58", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201519}}, {"model": "wells.lithologydescription", "pk": "3753b7d5-9467-478b-9c48-6decb4f4c3b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "180.00", "lithology_to": "292.00", "lithology_raw_data": "VOLCANIC WITH FEW WHITE TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199896}}, {"model": "wells.lithologydescription", "pk": "376be1ea-947a-401d-996e-d4d1dea3e107", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T20:46:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, "well_tag_number": 113039, "lithology_from": "35.00", "lithology_to": "56.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202629}}, {"model": "wells.lithologydescription", "pk": "377ec5b3-7243-436c-8f4e-a895369a95a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "325.00", "lithology_to": "345.00", "lithology_raw_data": "GREY/WHITE, VOLCANIC WITH FEW WITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SMALL FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198108}}, {"model": "wells.lithologydescription", "pk": "378383ef-3384-40da-8767-2ab4519a7081", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:43:05Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:43:05Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "286.00", "lithology_to": "295.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199547}}, {"model": "wells.lithologydescription", "pk": "379848c3-8bbd-4bc4-8dba-a71dd59f6407", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well_tag_number": 112483, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY, MOIST SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199167}}, {"model": "wells.lithologydescription", "pk": "379defca-ff5b-4a95-8c99-d2b8c0ca48ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well_tag_number": 112520, "lithology_from": "21.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "No Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199419}}, {"model": "wells.lithologydescription", "pk": "37ae49e0-9325-483b-877a-6314416f7e84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "156.00", "lithology_to": "170.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199673}}, {"model": "wells.lithologydescription", "pk": "37afc439-2f84-4f12-9b87-82988ce47f65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well_tag_number": 113143, "lithology_from": "279.00", "lithology_to": "323.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203257}}, {"model": "wells.lithologydescription", "pk": "37b2de89-f73c-4535-9ba5-c6acc2ce6740", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198192}}, {"model": "wells.lithologydescription", "pk": "37b4359f-4c5d-48b1-8a7e-0acbeee06f37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:35:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, "well_tag_number": 112634, "lithology_from": "2.00", "lithology_to": "27.00", "lithology_raw_data": "boulders gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200299}}, {"model": "wells.lithologydescription", "pk": "37b80043-e95a-4e91-9195-85a3f21bf700", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, "well_tag_number": 112282, "lithology_from": "55.00", "lithology_to": "67.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197701}}, {"model": "wells.lithologydescription", "pk": "37e32f15-21a0-46e5-97dd-1335d79762bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T19:32:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T19:32:44Z", "activity_submission": null, "well_tag_number": 112617, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200138}}, {"model": "wells.lithologydescription", "pk": "37fad2af-a9d7-4b24-83a1-b1cf06b5a8b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well_tag_number": 112893, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201848}}, {"model": "wells.lithologydescription", "pk": "380c99e9-d034-48b9-b4bf-860b8c0c8566", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, "well_tag_number": 112540, "lithology_from": "34.00", "lithology_to": "67.00", "lithology_raw_data": "CLAY, SAND WITH CLAY/SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199610}}, {"model": "wells.lithologydescription", "pk": "38267c9e-cc26-4424-8f12-dd7f97f12272", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "113.00", "lithology_to": "139.00", "lithology_raw_data": "sand layers, very silty", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "PULLED SCREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202964}}, {"model": "wells.lithologydescription", "pk": "38382d73-b97d-4a34-87f0-39e3c88b6d3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, "well_tag_number": 112286, "lithology_from": "37.00", "lithology_to": "182.00", "lithology_raw_data": "GRANIT, BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING: 70'=1 GPM; 120'=2 GPM; 170'=6 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197716}}, {"model": "wells.lithologydescription", "pk": "385dcdef-0225-4b48-aa63-1c6c6eeb4ce8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "150.00", "lithology_to": "156.00", "lithology_raw_data": "GREY BROWN SANDS AND GRAVEL BLACK WATER ", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203952}}, {"model": "wells.lithologydescription", "pk": "3868342d-0ff9-44a4-804e-c8a623bf540f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "23.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "STATIC 15' BGL CASED OFF", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201541}}, {"model": "wells.lithologydescription", "pk": "38688c10-a792-4fe9-bc5c-e265dba672f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well_tag_number": 112238, "lithology_from": "66.00", "lithology_to": "213.00", "lithology_raw_data": "HARD TO MEDIUM SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "128' = FRACTURE, NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197469}}, {"model": "wells.lithologydescription", "pk": "38792ebb-b028-41b2-a583-d6b166f98514", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:28:44Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "3.00", "lithology_to": "82.00", "lithology_raw_data": "light grey, sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203850}}, {"model": "wells.lithologydescription", "pk": "387b8fd0-aa69-45df-9d85-12380539720d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well_tag_number": 112441, "lithology_from": "8.00", "lithology_to": "47.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198802}}, {"model": "wells.lithologydescription", "pk": "387d23a1-4faf-4bb9-af2a-67c30d642651", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well_tag_number": 112599, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, SAND CONTENT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199975}}, {"model": "wells.lithologydescription", "pk": "388274bf-d872-447d-99e7-2304ebd41454", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, "well_tag_number": 112299, "lithology_from": "129.00", "lithology_to": "133.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197777}}, {"model": "wells.lithologydescription", "pk": "388c2a35-4684-49d3-a63e-9d93ea290b35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197660}}, {"model": "wells.lithologydescription", "pk": "3890f83c-b6f2-4081-8ff0-d4847fe322aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": "23.00", "lithology_to": "27.00", "lithology_raw_data": "SILT, GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201856}}, {"model": "wells.lithologydescription", "pk": "389ee8d7-e56a-49f1-87bf-f74a2cd29e79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "VOLCANIC LAYERS WITH SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202951}}, {"model": "wells.lithologydescription", "pk": "38a81b57-a28c-4dd2-9219-d795cfbe8aee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, "well_tag_number": 112644, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200327}}, {"model": "wells.lithologydescription", "pk": "38b256e1-60db-4f86-81ee-abd7fab0a1d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "9.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203024}}, {"model": "wells.lithologydescription", "pk": "38bb6192-4333-46ff-a3ae-0782ff6d7460", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200076}}, {"model": "wells.lithologydescription", "pk": "38c442ee-3f5c-4f99-a310-c7775757a274", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "122.00", "lithology_to": "370.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197386}}, {"model": "wells.lithologydescription", "pk": "38d42224-2be5-4f57-8032-86f75530ef93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T22:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, "well_tag_number": 112717, "lithology_from": "0.00", "lithology_to": "3.50", "lithology_raw_data": "TOPSOIL WITH SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK BROWN; DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200650}}, {"model": "wells.lithologydescription", "pk": "38d9394d-4989-433d-82a2-a64758468598", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "180.00", "lithology_to": "183.00", "lithology_raw_data": "quartz seam", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199021}}, {"model": "wells.lithologydescription", "pk": "38e52aa9-cb32-4677-a9f2-ad64c5cf4d38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "224.00", "lithology_to": "375.00", "lithology_raw_data": "GREY/WG VOLCANIC WITH OCCASIONAL WHITE AND GREEN TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197406}}, {"model": "wells.lithologydescription", "pk": "38e7d7f5-2195-4c88-9dcf-40563e37f5a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "45.00", "lithology_to": "69.00", "lithology_raw_data": "W.B. SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200934}}, {"model": "wells.lithologydescription", "pk": "38f4cc0d-b13b-417b-892f-14f8bd82416a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "135.00", "lithology_to": "155.00", "lithology_raw_data": "BLACK & PK?", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201790}}, {"model": "wells.lithologydescription", "pk": "3903c0ac-3c6b-4c35-a04d-66711d30b509", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:48:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, "well_tag_number": 112950, "lithology_from": "17.00", "lithology_to": "70.00", "lithology_raw_data": "MEDIUM SAND/LARGE COBBLES, WELL SORTED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "400.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202146}}, {"model": "wells.lithologydescription", "pk": "39041811-dc78-414a-a2d4-b8ab5eaf5341", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well_tag_number": 113125, "lithology_from": "1.00", "lithology_to": "9.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203113}}, {"model": "wells.lithologydescription", "pk": "390e8eb0-6f39-40ab-8b2b-657320dbc988", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200054}}, {"model": "wells.lithologydescription", "pk": "39189113-9608-47ef-8bfc-e616c60562db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, "well_tag_number": 112859, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silt", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201627}}, {"model": "wells.lithologydescription", "pk": "39286a4a-0e87-49dd-aa55-8285464699e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, "well_tag_number": 113199, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "Till, sandy clay", "lithology_description": "33", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203559}}, {"model": "wells.lithologydescription", "pk": "39321631-3e6c-46ae-8fb2-ead87d2d8627", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, "well_tag_number": 112312, "lithology_from": "38.00", "lithology_to": "78.00", "lithology_raw_data": "COARSE SAND & SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197845}}, {"model": "wells.lithologydescription", "pk": "3935e88a-8a29-4504-9404-127a816cf229", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "663.00", "lithology_to": "700.00", "lithology_raw_data": "SOFTER GRANITE BEDROCK (HARDER LAST 8')", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE AND PINK; SOLID; SOFT SPOTS AND SOFT FRACTURED ZONES @ 663' AND 671'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200729}}, {"model": "wells.lithologydescription", "pk": "393b92a3-7710-4912-a293-1b9b7a8689ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199451}}, {"model": "wells.lithologydescription", "pk": "3942559e-7264-42ba-8502-f2ede4b92e3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "15.50", "lithology_to": "16.00", "lithology_raw_data": "BROWN/GREY/GREEN GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198120}}, {"model": "wells.lithologydescription", "pk": "39542094-f1ac-48ad-b3d6-8b6a3d482efa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "144.00", "lithology_to": "259.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203059}}, {"model": "wells.lithologydescription", "pk": "395938db-4497-4cf0-82e3-d1bd2276ec66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "FINE-MED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199230}}, {"model": "wells.lithologydescription", "pk": "39613906-9718-40b9-80de-54eb13cdcaf9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "43.00", "lithology_to": "45.00", "lithology_raw_data": "GREY AND BROWN SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW; VERY FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197911}}, {"model": "wells.lithologydescription", "pk": "396360e8-b41e-4f19-a0ac-bb268b52a895", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T08:29:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, "well_tag_number": 112731, "lithology_from": "30.00", "lithology_to": "47.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200772}}, {"model": "wells.lithologydescription", "pk": "396eae9e-7c59-4130-a4de-e8583f664119", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "COLOUR=CHOCOLATE BROWN; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200881}}, {"model": "wells.lithologydescription", "pk": "3971c530-3705-4988-8e11-bb7b6fdc77e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "170.00", "lithology_to": "270.00", "lithology_raw_data": "SHALE, SANDSTONE LAYERED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199876}}, {"model": "wells.lithologydescription", "pk": "397999de-2abf-4694-86d2-6dc4903286eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "95.00", "lithology_to": "97.00", "lithology_raw_data": "SH BENTONITIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143916}}, {"model": "wells.lithologydescription", "pk": "39809832-eb14-46cf-8b6f-82abf06e8d27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "64.00", "lithology_to": "109.00", "lithology_raw_data": "WITH SILT LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202332}}, {"model": "wells.lithologydescription", "pk": "39a1b0b5-b1a8-4dc1-bda1-dc1e7c7bb6f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "COMPRESSED GRAVEL/CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199720}}, {"model": "wells.lithologydescription", "pk": "39aa068e-dd0e-4315-aae6-5f1a7e9f733d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": "17.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203039}}, {"model": "wells.lithologydescription", "pk": "39b389e2-b24e-4ad2-869d-15b5cf848ff1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "39.99", "lithology_to": "50.00", "lithology_raw_data": "SM - SILTY SAND, COMPACT, FINE GRAINED, LAMINATED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; CLAY BED APPROXIMATELY 8 CM THICK@12.50M BGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201073}}, {"model": "wells.lithologydescription", "pk": "39c28b2b-6d0a-4c09-8914-95acfded4127", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "140.00", "lithology_to": "157.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, WHITE AND GREEN; UNSTABLE ZONE@140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200814}}, {"model": "wells.lithologydescription", "pk": "39d4587d-f8f1-4efb-ad5e-79360de16e6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "331.00", "lithology_to": "335.00", "lithology_raw_data": "SALT & PEPPER, GROWNISH GREY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201613}}, {"model": "wells.lithologydescription", "pk": "39dae324-8d23-4a44-be76-17d25b6ca67b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, "well_tag_number": 112584, "lithology_from": "24.00", "lithology_to": "35.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "EST. 3 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199880}}, {"model": "wells.lithologydescription", "pk": "39de9928-acda-4bb0-8439-58359592706e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:21Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "after hydrofracking", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199389}}, {"model": "wells.lithologydescription", "pk": "39df8740-07a8-47ed-bcea-649457c3ba55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:26:22Z", "activity_submission": null, "well_tag_number": 112787, "lithology_from": "2.00", "lithology_to": "34.90", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201130}}, {"model": "wells.lithologydescription", "pk": "39e18a28-c488-4ffb-8a26-5a2f50952035", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, "well_tag_number": 112965, "lithology_from": "3.00", "lithology_to": "16.00", "lithology_raw_data": "SAND, GRAVEL, BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202261}}, {"model": "wells.lithologydescription", "pk": "3a01fac6-96c8-4a69-bf74-bbf3d9bdb621", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "HARD PACKED SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200878}}, {"model": "wells.lithologydescription", "pk": "3a053142-4907-45aa-9927-827418414b2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, "well_tag_number": 112766, "lithology_from": "0.00", "lithology_to": "84.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=WHITE AND VARI-COLOURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201011}}, {"model": "wells.lithologydescription", "pk": "3a09d39c-8891-4518-b392-16ad09a3600f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well_tag_number": 112391, "lithology_from": "18.00", "lithology_to": "30.00", "lithology_raw_data": "CEMENTED SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198436}}, {"model": "wells.lithologydescription", "pk": "3a183485-889a-49b3-af24-5cf477bc9bdd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202029}}, {"model": "wells.lithologydescription", "pk": "3a3133ae-9a1b-43e8-9891-d702f9e74a2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "242.00", "lithology_to": "245.00", "lithology_raw_data": "BROWNISH, SALT & PEPPER", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201603}}, {"model": "wells.lithologydescription", "pk": "3a4e349a-5dc6-4b4e-8d72-5c93668a47de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:34:51Z", "activity_submission": null, "well_tag_number": 112306, "lithology_from": "332.00", "lithology_to": "340.00", "lithology_raw_data": "FRACTURED GRANITE", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197815}}, {"model": "wells.lithologydescription", "pk": "3a557ebc-9c0a-4059-bd77-789b17971b01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "12.00", "lithology_to": "35.00", "lithology_raw_data": "broken", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201357}}, {"model": "wells.lithologydescription", "pk": "3a7ec7a4-1131-4d9a-98b6-4267501816d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "190.00", "lithology_to": "195.00", "lithology_raw_data": "GREY BROWN, SHALE-SILTSTONE-SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198079}}, {"model": "wells.lithologydescription", "pk": "3a80ca24-5fab-482a-9b58-eaa7f6d4d419", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "30.00", "lithology_to": "41.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200059}}, {"model": "wells.lithologydescription", "pk": "3a857cec-a0ba-4098-88e0-fe97cdda26ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "17.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203010}}, {"model": "wells.lithologydescription", "pk": "3a9e01ad-a147-4d18-af87-82ea69766424", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "18.00", "lithology_to": "90.00", "lithology_raw_data": "GREY/BROWN GRAVELS/SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197973}}, {"model": "wells.lithologydescription", "pk": "3aabfc7a-f107-4376-b39f-06b4fd6a23e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:12Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198413}}, {"model": "wells.lithologydescription", "pk": "3abda3f1-cfa8-4345-8425-3b25f4b1d53a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "10.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203387}}, {"model": "wells.lithologydescription", "pk": "3ac3744e-b94e-45f4-80f1-6800694f5d94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, "well_tag_number": 113288, "lithology_from": "49.00", "lithology_to": "87.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203979}}, {"model": "wells.lithologydescription", "pk": "3ac3ebb4-efe1-46a4-a638-86e63586174a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "143.00", "lithology_to": "153.00", "lithology_raw_data": "sandstone, shale", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201672}}, {"model": "wells.lithologydescription", "pk": "3ac5349e-b322-4c7a-8cdb-2f36e9cb37b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:06:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, "well_tag_number": 112259, "lithology_from": "24.00", "lithology_to": "60.00", "lithology_raw_data": "LARGE COBBLES, MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "100+ USGPM, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197570}}, {"model": "wells.lithologydescription", "pk": "3acbfda7-f906-4eea-ac0a-474c3bad0705", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well_tag_number": 112819, "lithology_from": "34.00", "lithology_to": "37.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "60GPM-med/sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201272}}, {"model": "wells.lithologydescription", "pk": "3acdcc21-c42e-4d46-b3d3-26df3d91b4a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "9.00", "lithology_to": "10.50", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203829}}, {"model": "wells.lithologydescription", "pk": "3adb825c-ba1c-417c-a775-89ba03972f98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:20Z", "activity_submission": null, "well_tag_number": 112774, "lithology_from": "6.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201060}}, {"model": "wells.lithologydescription", "pk": "3adc0907-3bee-45e8-aaf5-d9eef45aaf12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "360.00", "lithology_to": "380.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199115}}, {"model": "wells.lithologydescription", "pk": "3ae96099-d82a-44a1-b148-a405acf877eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "190.00", "lithology_to": "216.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197877}}, {"model": "wells.lithologydescription", "pk": "3aeaa691-ead1-4523-94c3-941ca9ce6d14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "150.00", "lithology_to": "153.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199086}}, {"model": "wells.lithologydescription", "pk": "3aec1bbf-de8d-42e8-bee0-f81a6605b82a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:44:30Z", "activity_submission": null, "well_tag_number": 113016, "lithology_from": "13.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202507}}, {"model": "wells.lithologydescription", "pk": "3b045754-6eca-47da-ac39-a5087ef95145", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "33.00", "lithology_to": "70.00", "lithology_raw_data": "WITH SHALE LAYERS", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201619}}, {"model": "wells.lithologydescription", "pk": "3b18b5b0-2579-421f-b614-8633293a65c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199730}}, {"model": "wells.lithologydescription", "pk": "3b2087ad-fd48-4dc9-b580-2b21014d802e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "SANDSTONE / SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED - SULPHUR SMELL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199453}}, {"model": "wells.lithologydescription", "pk": "3b35790b-c84a-452a-be5a-f152d4151d7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, "well_tag_number": 112612, "lithology_from": "41.00", "lithology_to": "47.00", "lithology_raw_data": "conglomerate", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200083}}, {"model": "wells.lithologydescription", "pk": "3b4936a7-4b8c-446a-977f-caad21a46f5a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:30:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:32:56Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "430.00", "lithology_to": "440.00", "lithology_raw_data": "SILT, ORGANIC MATERIAL, WOOD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198823}}, {"model": "wells.lithologydescription", "pk": "3b4b78ec-a19e-446c-b1d2-756621389d30", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, "well_tag_number": 112297, "lithology_from": "17.00", "lithology_to": "30.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197766}}, {"model": "wells.lithologydescription", "pk": "3b6787bc-3411-4f81-bdf4-f9a6fcb3965e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "220.00", "lithology_to": "237.00", "lithology_raw_data": "SAND LAYERS WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200109}}, {"model": "wells.lithologydescription", "pk": "3b6b3f2c-0855-49ae-88e5-6e895dcf0c99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T18:57:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, "well_tag_number": 112829, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "clay & gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201352}}, {"model": "wells.lithologydescription", "pk": "3b6c65d5-4a98-4cfc-8685-2215ede56d58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:56:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, "well_tag_number": 113142, "lithology_from": "71.00", "lithology_to": "78.00", "lithology_raw_data": "BROWN TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203254}}, {"model": "wells.lithologydescription", "pk": "3b7afe94-de0d-4fd9-bd7e-fd85f225f544", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "30.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SURFACE WATER COMING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203905}}, {"model": "wells.lithologydescription", "pk": "3b8a18fb-3881-4f66-a19e-d17f12e8f2a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, "well_tag_number": 112687, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200510}}, {"model": "wells.lithologydescription", "pk": "3b9ae5d9-6a8c-4ad4-969d-5084ac85bbea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199769}}, {"model": "wells.lithologydescription", "pk": "3ba55df3-611a-4997-914b-9a06eea52cae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:07Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "STIFF CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200412}}, {"model": "wells.lithologydescription", "pk": "3bb71543-8a5a-47e0-9948-e3f89206096f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:32:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:32:21Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "540.00", "lithology_to": "560.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198826}}, {"model": "wells.lithologydescription", "pk": "3bca6f76-d991-4a3d-8ae8-845b30480065", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200942}}, {"model": "wells.lithologydescription", "pk": "3bd0ec88-abbc-43ce-9046-e23a13ff7232", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "60.00", "lithology_to": "76.00", "lithology_raw_data": "SOFT/MEDIUM; FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199082}}, {"model": "wells.lithologydescription", "pk": "3be29277-ff3c-46d6-a1c9-3537cc790232", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "32.00", "lithology_to": "58.00", "lithology_raw_data": "LOOSE GREY/BROWN GRAVEL, SAND & SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COMPACT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197344}}, {"model": "wells.lithologydescription", "pk": "3be96cb2-9041-4c4d-83d6-677e98e9290c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "168.00", "lithology_to": "285.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLUE/GREEN; 170'=FRACTURE - TRACE OF WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199850}}, {"model": "wells.lithologydescription", "pk": "3bea0d4f-a13b-4ae3-8c58-31ff5dc6af12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "34.00", "lithology_to": "36.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203539}}, {"model": "wells.lithologydescription", "pk": "3bec8725-cb08-42e3-9c81-69a452e4ae83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "65.00", "lithology_to": "77.00", "lithology_raw_data": "SAND (FINE), SILT + GRAVEL/BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197945}}, {"model": "wells.lithologydescription", "pk": "3bee869c-f556-472b-ac87-b0a1f198c316", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well_tag_number": 112624, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "GRAVEL, SAND AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200194}}, {"model": "wells.lithologydescription", "pk": "3bf14486-be20-432c-9291-fcb0abaab001", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, "well_tag_number": 112684, "lithology_from": "0.00", "lithology_to": "37.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200497}}, {"model": "wells.lithologydescription", "pk": "3c11ca1d-119e-4e4d-8f0f-db91151fe1c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "32.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198383}}, {"model": "wells.lithologydescription", "pk": "3c1b4128-0d70-44da-8494-48d0c4f9e41e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well_tag_number": 113173, "lithology_from": "81.00", "lithology_to": "95.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203424}}, {"model": "wells.lithologydescription", "pk": "3c1ec100-fa6b-4c24-9bb7-89ad60803526", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "25.00", "lithology_to": "31.00", "lithology_raw_data": "MEDIUM-SOFT, LIGHT GREY SHALE AND BENTONITIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197993}}, {"model": "wells.lithologydescription", "pk": "3c2219ae-eb80-4576-8f25-29b67e657f1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "159.00", "lithology_to": "200.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE WITH REDDISH BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200466}}, {"model": "wells.lithologydescription", "pk": "3c449bc9-fbf9-4a66-a38e-91f4ff258b72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:42:49Z", "activity_submission": null, "well_tag_number": 113146, "lithology_from": "0.00", "lithology_to": "70.00", "lithology_raw_data": "BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203272}}, {"model": "wells.lithologydescription", "pk": "3c56da58-fc5d-4f35-8ab4-e56138b05968", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198645}}, {"model": "wells.lithologydescription", "pk": "3c645ac5-2fa3-4462-9f71-6c513e579ab0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "2.00", "lithology_to": "17.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198347}}, {"model": "wells.lithologydescription", "pk": "3c64ffe6-be18-41eb-8f88-95b50af3769b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, "well_tag_number": 112835, "lithology_from": "3.00", "lithology_to": "19.00", "lithology_raw_data": "sandy", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201395}}, {"model": "wells.lithologydescription", "pk": "3c85bd12-2070-45f7-9f54-668f38ac5977", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "227.00", "lithology_to": "231.00", "lithology_raw_data": "SHALE / CARBONATIOUS SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199488}}, {"model": "wells.lithologydescription", "pk": "3c8de3c6-1b6f-4ed2-81fa-abc61e171519", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "360.00", "lithology_to": "420.00", "lithology_raw_data": "VOLCANIC WITH FEW OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BLUE/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199859}}, {"model": "wells.lithologydescription", "pk": "3c91d043-a7b4-4401-991a-90aca6a216eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "28.00", "lithology_to": "75.00", "lithology_raw_data": "compact gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203821}}, {"model": "wells.lithologydescription", "pk": "3c9c0700-712c-4724-b22a-329d2be3a74f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-03T17:51:42Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "90.00", "lithology_to": "93.00", "lithology_raw_data": "FINE SAND WITH GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; WATER BEARING; VERY DIRTY; WELL SORTED WITH SILTY WASH", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200851}}, {"model": "wells.lithologydescription", "pk": "3cae7d17-1310-4e75-b462-905d9ea98221", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "114.00", "lithology_to": "134.00", "lithology_raw_data": "TIGHT; HARD PACKED SILTY CLAY WITH SOME GRAVEL (VERY DENSE)", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200830}}, {"model": "wells.lithologydescription", "pk": "3cb7882a-dc3e-446a-ba46-514e7162beb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "14.00", "lithology_to": "28.00", "lithology_raw_data": "CEMENTED GRAY BLUE GRAVEL BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203297}}, {"model": "wells.lithologydescription", "pk": "3cb8d2e7-aa4e-467c-b8da-8ef327e48632", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199368}}, {"model": "wells.lithologydescription", "pk": "3cd274ae-a325-4784-aa28-fe2f5184d66f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "45.00", "lithology_to": "175.00", "lithology_raw_data": "SHALE/SILTSTONE/BENTONIC SHALE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197919}}, {"model": "wells.lithologydescription", "pk": "3cd65563-63f4-4b4f-a4bb-c277ea5aba31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "38.00", "lithology_to": "72.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202586}}, {"model": "wells.lithologydescription", "pk": "3cd799c2-c4ba-430a-892d-3031140e1aa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "101.00", "lithology_to": "102.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201995}}, {"model": "wells.lithologydescription", "pk": "3cd7d1eb-d6eb-4c0d-ad94-380d7aabd251", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, "well_tag_number": 113092, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "medium fine", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202932}}, {"model": "wells.lithologydescription", "pk": "3cebcee8-afb6-40ed-b499-d053a20d7d67", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "52.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203097}}, {"model": "wells.lithologydescription", "pk": "3cf990d9-5de4-49e6-81b5-6e254d279571", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:33:18Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:33:18Z", "activity_submission": null, "well_tag_number": 107072, "lithology_from": "25.00", "lithology_to": "160.00", "lithology_raw_data": "HARDPAN (TILL)", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 167276}}, {"model": "wells.lithologydescription", "pk": "3d0d72ed-b2f5-46d4-873d-be06f061ffc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, "well_tag_number": 112288, "lithology_from": "36.00", "lithology_to": "182.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "120'=1GPM; 180'=2 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197725}}, {"model": "wells.lithologydescription", "pk": "3d109942-95c9-42ea-8f7b-f80ab29d6233", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "54.00", "lithology_to": "74.00", "lithology_raw_data": "SAND, SILT, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202245}}, {"model": "wells.lithologydescription", "pk": "3d14e4a5-86aa-4a08-9c0b-bd42be15ebdd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "22.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203678}}, {"model": "wells.lithologydescription", "pk": "3d1fd87c-994a-414b-a3b9-0d1dce2141a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, "well_tag_number": 112687, "lithology_from": "56.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200512}}, {"model": "wells.lithologydescription", "pk": "3d26b7b2-d1df-4426-885c-96b2df480fca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "166.00", "lithology_to": "204.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198763}}, {"model": "wells.lithologydescription", "pk": "3d338e7b-62a6-4be3-95a2-a764878948cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "41.00", "lithology_to": "43.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197910}}, {"model": "wells.lithologydescription", "pk": "3d446dda-7ae2-4d49-b039-a4ab45eb2b93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well_tag_number": 112479, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199130}}, {"model": "wells.lithologydescription", "pk": "3d5d3b84-ed48-4041-93ae-3585b9cc6272", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well_tag_number": 112594, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199940}}, {"model": "wells.lithologydescription", "pk": "3d673857-bb48-4c2a-bca2-397beccbcb28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "3.00", "lithology_to": "8.00", "lithology_raw_data": "CLAY, SAND, LARGE COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202176}}, {"model": "wells.lithologydescription", "pk": "3d697af7-9ff3-4304-be1a-5cc6700a98af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "262.00", "lithology_to": "273.00", "lithology_raw_data": null, "lithology_description": "50", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight - Thick wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197601}}, {"model": "wells.lithologydescription", "pk": "3d7b5883-63dc-47e3-a7ed-b7ddc1599d40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:03:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:03:39Z", "activity_submission": null, "well_tag_number": 113276, "lithology_from": "0.00", "lithology_to": "58.00", "lithology_raw_data": "till silt sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "lots of boulders cobbles h2o starts at 39' organic water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203938}}, {"model": "wells.lithologydescription", "pk": "3d7e03c7-0a46-4476-89e0-b7a95ae8f34f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 90' 0.5 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203687}}, {"model": "wells.lithologydescription", "pk": "3d8589e8-a090-4fc0-ab08-7376c9bbb5be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAVEL/BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198887}}, {"model": "wells.lithologydescription", "pk": "3d8673ac-ded8-4a2b-bb42-288d730dbfc5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, "well_tag_number": 112338, "lithology_from": "20.00", "lithology_to": "62.00", "lithology_raw_data": "GREY-BROWN, COARSE GRAVEL, COBBLES, SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198090}}, {"model": "wells.lithologydescription", "pk": "3d8b27d2-d49c-4135-994a-9afc61748012", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "35.00", "lithology_to": "52.00", "lithology_raw_data": null, "lithology_description": "48", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202340}}, {"model": "wells.lithologydescription", "pk": "3d978c57-4657-4505-9912-982c95c194ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "186.00", "lithology_to": "195.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203656}}, {"model": "wells.lithologydescription", "pk": "3d9a4594-5e4f-48c2-96cd-0196d988548b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well_tag_number": 112409, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FINE SAND, SILT AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198536}}, {"model": "wells.lithologydescription", "pk": "3d9dd932-a320-4b17-ba32-3a779cf63824", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "95.00", "lithology_to": "108.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201086}}, {"model": "wells.lithologydescription", "pk": "3da419bd-5360-42fe-bb9e-b7a808d2a3fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T17:12:55Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:21:17Z", "activity_submission": null, "well_tag_number": 113074, "lithology_from": "20.00", "lithology_to": "210.00", "lithology_raw_data": "BROWN CLAY AND ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202795}}, {"model": "wells.lithologydescription", "pk": "3db519b0-2dd4-43d9-903d-20ef5b4c6b3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well_tag_number": 112599, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199979}}, {"model": "wells.lithologydescription", "pk": "3db70d48-d297-41ba-9c2e-ff2dcf9c3af4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well_tag_number": 112441, "lithology_from": "294.00", "lithology_to": "305.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198806}}, {"model": "wells.lithologydescription", "pk": "3db8b8d7-60de-4343-b42c-00040b7fb7ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "405.00", "lithology_to": "455.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202923}}, {"model": "wells.lithologydescription", "pk": "3ddb7e84-af82-4ea7-8a6e-45ef67db6287", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "379.80", "lithology_to": "1052.20", "lithology_raw_data": "SILTSTONE/MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY (LIGHT TO DARK)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201021}}, {"model": "wells.lithologydescription", "pk": "3df3d294-ea12-4749-a8a5-2d286df9eb96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "119.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198105}}, {"model": "wells.lithologydescription", "pk": "3dfb1d5a-9e46-405e-955d-f2034bf69431", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well_tag_number": 113264, "lithology_from": "61.00", "lithology_to": "79.00", "lithology_raw_data": "till", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203900}}, {"model": "wells.lithologydescription", "pk": "3e00f07c-abbe-49dc-b601-1403ecd3f68b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "34.00", "lithology_to": "77.00", "lithology_raw_data": "BROWN SILTY SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200965}}, {"model": "wells.lithologydescription", "pk": "3e162f55-cde2-47cf-b21e-4d495c2a26cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, "well_tag_number": 112631, "lithology_from": "105.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200292}}, {"model": "wells.lithologydescription", "pk": "3e197399-af30-4eed-be57-b641cac36f83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, SAND, COBBLES, BOULDERS, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET @ 10'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201653}}, {"model": "wells.lithologydescription", "pk": "3e3084b7-ae6d-417c-978c-994b271279e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "10.00", "lithology_to": "95.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198511}}, {"model": "wells.lithologydescription", "pk": "3e34bdd7-b735-4915-b1bf-ce9c69e243fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "118.00", "lithology_to": "122.00", "lithology_raw_data": "SILTY SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198463}}, {"model": "wells.lithologydescription", "pk": "3e3e71f3-52a8-4cfd-b724-e909bf246414", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "322.00", "lithology_to": "330.00", "lithology_raw_data": "COARSE TO FINE CONGLOMERATE W/FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201551}}, {"model": "wells.lithologydescription", "pk": "3e442bf6-fb16-4ade-a474-7fbc70593ae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY AND GRAVEL WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200750}}, {"model": "wells.lithologydescription", "pk": "3e521160-cbf6-4b60-a7fb-6f39c99eb6be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well_tag_number": 112548, "lithology_from": "130.00", "lithology_to": "173.00", "lithology_raw_data": "COARSE SAND AND GRAVEL WITH TRACES OF CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199648}}, {"model": "wells.lithologydescription", "pk": "3e5b67c8-eece-4419-9074-dffa263e8990", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "44.00", "lithology_to": "48.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbles", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201580}}, {"model": "wells.lithologydescription", "pk": "3e5ed1a6-f845-4209-ad44-dcd72014504f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "280.00", "lithology_to": "661.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SWITCH TO MUD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203061}}, {"model": "wells.lithologydescription", "pk": "3e6624a1-76b6-4377-b963-cce17500d277", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "55.00", "lithology_to": "102.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET @ 90'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201676}}, {"model": "wells.lithologydescription", "pk": "3e85d35f-c7a6-4d46-ab81-170fd914c3b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:58:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:58:32Z", "activity_submission": null, "well_tag_number": 112309, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197824}}, {"model": "wells.lithologydescription", "pk": "3e94a951-5770-4049-b7d8-2cc359d51ffc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "69.00", "lithology_to": "92.00", "lithology_raw_data": "FINE GREY SAND WITH CLAY BALLS, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201165}}, {"model": "wells.lithologydescription", "pk": "3ea25c03-c5ad-4b90-a338-df8b9d460455", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well_tag_number": 112536, "lithology_from": "60.00", "lithology_to": "75.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199567}}, {"model": "wells.lithologydescription", "pk": "3eb1acd0-175a-4f18-bdc4-57cecd23bfa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203236}}, {"model": "wells.lithologydescription", "pk": "3ebd4f7a-e5fb-4563-9aca-3c0fbb3bf4ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198575}}, {"model": "wells.lithologydescription", "pk": "3ec3043b-c685-482f-89df-ad08eb56d711", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199628}}, {"model": "wells.lithologydescription", "pk": "3ec71059-053d-45a0-99b3-bfc11a50dad0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well_tag_number": 112871, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201716}}, {"model": "wells.lithologydescription", "pk": "3ec88253-91b3-4640-bd93-130df52e613b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "25.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198036}}, {"model": "wells.lithologydescription", "pk": "3ed4868e-d2da-4503-a95a-524040a78bcf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:15:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, "well_tag_number": 112953, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202164}}, {"model": "wells.lithologydescription", "pk": "3ed572d7-e264-4732-b7dc-2c6112c29b3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-26T19:39:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-26T19:39:27Z", "activity_submission": null, "well_tag_number": 113202, "lithology_from": "30.00", "lithology_to": "45.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203577}}, {"model": "wells.lithologydescription", "pk": "3ef34dcb-4812-4ea0-9b90-c230b9d9b590", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "106.00", "lithology_to": "108.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198371}}, {"model": "wells.lithologydescription", "pk": "3f032d17-72a1-4fff-ae1a-3226efbb32ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "132.00", "lithology_to": "210.00", "lithology_raw_data": "PINK-WHITE-BLACK BEDROCK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202522}}, {"model": "wells.lithologydescription", "pk": "3f054a7a-1050-476c-8fe4-a879727adcdd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "32.00", "lithology_to": "34.00", "lithology_raw_data": "broken", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "18", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203872}}, {"model": "wells.lithologydescription", "pk": "3f11c285-d859-45f9-9ea9-f4ba1d8466db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "792.00", "lithology_to": "817.00", "lithology_raw_data": "GREY SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201307}}, {"model": "wells.lithologydescription", "pk": "3f171039-0ecd-4d83-a47e-7a7db48c7477", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, "well_tag_number": 113181, "lithology_from": "115.00", "lithology_to": "155.00", "lithology_raw_data": "sand stone", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203456}}, {"model": "wells.lithologydescription", "pk": "3f2409af-1f1b-469a-8e9e-09756c0df000", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "212.00", "lithology_to": "227.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199487}}, {"model": "wells.lithologydescription", "pk": "3f262461-b230-4743-8573-920c06968df8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:04Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "0.00", "lithology_to": "29.00", "lithology_raw_data": "SILT, SAND, CLAY, BROWN, FINE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197758}}, {"model": "wells.lithologydescription", "pk": "3f268ceb-7b69-4acf-b93a-ddafba0fb791", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T20:46:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, "well_tag_number": 113039, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202628}}, {"model": "wells.lithologydescription", "pk": "3f382e43-8623-4f41-a9b5-4ab99913477d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "140.00", "lithology_to": "168.00", "lithology_raw_data": "SS SOFT MED GREEN GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143928}}, {"model": "wells.lithologydescription", "pk": "3f51c663-f4d4-4a5c-bd8b-98488cbdb863", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, SAND, MINOR, CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199989}}, {"model": "wells.lithologydescription", "pk": "3f7267a5-e16a-4cf6-b2b8-6cc27b9dcdd9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "53.00", "lithology_to": "67.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197644}}, {"model": "wells.lithologydescription", "pk": "3f78f57a-f569-4a52-b04f-77c5340d41ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, "well_tag_number": 113115, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203045}}, {"model": "wells.lithologydescription", "pk": "3f7ba8cb-64cf-4e79-a8f8-6f432e2ef9e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, "well_tag_number": 112760, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "DUSTY, SILTY SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200973}}, {"model": "wells.lithologydescription", "pk": "3f9f4643-15ba-49c2-b2c4-0bb228e15d17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "178.00", "lithology_to": "200.00", "lithology_raw_data": "CONGLOMERATED GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198467}}, {"model": "wells.lithologydescription", "pk": "3fa054eb-3786-4025-bd5d-2d3a1e2a2d31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "FRACTURED", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198946}}, {"model": "wells.lithologydescription", "pk": "3fa46f50-4651-4438-9be0-b4e9d04a5d16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "240.00", "lithology_to": "300.00", "lithology_raw_data": "VERY SOFT AND FRACTURED SILTSTONE WITH SHALE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "UNSTABLE ZONE FROM 240'-300'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200817}}, {"model": "wells.lithologydescription", "pk": "3fa99727-580c-4b4a-aed8-a27deae26704", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, "well_tag_number": 113303, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 100'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204050}}, {"model": "wells.lithologydescription", "pk": "3fabfabe-80e8-4f96-8314-0e4690732271", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "100.00", "lithology_to": "103.00", "lithology_raw_data": "CEMENTED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199921}}, {"model": "wells.lithologydescription", "pk": "3fbec3db-e6a0-4537-9c87-b485762a952d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:07:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, "well_tag_number": 112970, "lithology_from": "12.00", "lithology_to": "30.00", "lithology_raw_data": "GRAVEL, SAND & COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202285}}, {"model": "wells.lithologydescription", "pk": "3fc7ab7e-dcc0-4bab-8023-f0bed3f38f61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:33:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, "well_tag_number": 112948, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "LARGE BOULDERS WITH MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202139}}, {"model": "wells.lithologydescription", "pk": "3fcfe21d-866f-449d-8b39-6356091eab1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well_tag_number": 112983, "lithology_from": "56.00", "lithology_to": "78.00", "lithology_raw_data": "very silty, compact gravel, clay layers", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202368}}, {"model": "wells.lithologydescription", "pk": "3fd86a70-ffaa-4379-bd61-a492f9610c21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "82.00", "lithology_to": "85.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197882}}, {"model": "wells.lithologydescription", "pk": "3fdd3f57-d68a-4f75-85cf-3ba4386c3ba2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "143.00", "lithology_to": "150.00", "lithology_raw_data": "WEATHER, BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199273}}, {"model": "wells.lithologydescription", "pk": "3fe9b0f0-361b-445c-8cb6-2a43a067bc7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well_tag_number": 112220, "lithology_from": "230.00", "lithology_to": "240.00", "lithology_raw_data": "GREEN/BROWN/WHITE VOLCANIC WITH WHITE/BROWN SEDIMENT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2+ USGPM; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197337}}, {"model": "wells.lithologydescription", "pk": "3ffb5a26-fa68-4d10-a9d8-5078dd331e4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "Medium Brown Gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202456}}, {"model": "wells.lithologydescription", "pk": "4005cbf7-a339-4534-b281-37050a336683", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, "well_tag_number": 113199, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "Gravel, some clay", "lithology_description": "19", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203561}}, {"model": "wells.lithologydescription", "pk": "40074df7-1d03-400e-809c-7c07eab08c29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "95.00", "lithology_to": "150.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200487}}, {"model": "wells.lithologydescription", "pk": "400c9a07-46b5-48b6-9aad-3f65799eeac3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "65.00", "lithology_to": "73.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199050}}, {"model": "wells.lithologydescription", "pk": "4013eea7-817f-4e6f-a73a-e2f6dfd6082e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:43:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, "well_tag_number": 113169, "lithology_from": "35.00", "lithology_to": "115.00", "lithology_raw_data": "sand, gravel boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203372}}, {"model": "wells.lithologydescription", "pk": "4015a631-5e0f-49e8-a80f-eac5120113d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well_tag_number": 113173, "lithology_from": "70.00", "lithology_to": "81.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203423}}, {"model": "wells.lithologydescription", "pk": "4017d87f-791f-4f77-bc08-fd1504dc44d4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:40:08Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:40:08Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "232.00", "lithology_to": "250.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SAND & GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200131}}, {"model": "wells.lithologydescription", "pk": "4017e686-f51e-4059-b586-db50db22ec2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "112.00", "lithology_to": "122.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Slightly silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198757}}, {"model": "wells.lithologydescription", "pk": "4020a295-b834-4d04-9fc7-2fca8153ded1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "SS SOFT MED FINE GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143921}}, {"model": "wells.lithologydescription", "pk": "4022341f-d37c-4216-9c94-4e9b9bf72de7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "117.00", "lithology_to": "220.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FINAL YIELD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203885}}, {"model": "wells.lithologydescription", "pk": "4022790b-2146-41ac-a7db-237aca234b37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "159.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199227}}, {"model": "wells.lithologydescription", "pk": "40257e07-ef1c-419e-882b-2db0277c4b04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:33:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, "well_tag_number": 112966, "lithology_from": "10.00", "lithology_to": "16.00", "lithology_raw_data": "GRAVEL & BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202265}}, {"model": "wells.lithologydescription", "pk": "40333dad-42f7-450e-89fe-ab6ca57c6e3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T21:03:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T21:03:43Z", "activity_submission": null, "well_tag_number": 112619, "lithology_from": "145.00", "lithology_to": "210.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200148}}, {"model": "wells.lithologydescription", "pk": "4052fab4-df00-4887-acea-0771d3a8b3b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199965}}, {"model": "wells.lithologydescription", "pk": "4060c9cc-85db-4878-931d-49379b332efd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "135.00", "lithology_to": "205.00", "lithology_raw_data": "FINE GREY SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200176}}, {"model": "wells.lithologydescription", "pk": "4064fd83-49be-4c0c-8aa7-be9e94ea4e7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "270.00", "lithology_to": "342.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOLID; POSSIBLE WATER@336'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200756}}, {"model": "wells.lithologydescription", "pk": "406ebbc5-9a15-4850-8b92-7a8aa3317c88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BLASTED ROCK FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201976}}, {"model": "wells.lithologydescription", "pk": "40742b95-2800-4a05-96a7-da185186a1bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "76.00", "lithology_to": "79.00", "lithology_raw_data": "CEMENT GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199918}}, {"model": "wells.lithologydescription", "pk": "4074ab9b-f951-48ee-a67c-75a007f30895", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, "well_tag_number": 113087, "lithology_from": "140.00", "lithology_to": "178.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202913}}, {"model": "wells.lithologydescription", "pk": "407919b1-dcbb-452f-b6f3-6cf2b8f556e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:17:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, "well_tag_number": 112655, "lithology_from": "67.00", "lithology_to": "71.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200367}}, {"model": "wells.lithologydescription", "pk": "40800fce-9a9e-4401-85a7-78fa33953a71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "254.00", "lithology_to": "299.00", "lithology_raw_data": "FINE AND DIRTY BROWN SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED; SAND @ 291' CLEANER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200749}}, {"model": "wells.lithologydescription", "pk": "40819509-89fb-4554-8139-1e03b35e3367", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "52.00", "lithology_to": "71.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND GREY WITH SOME REDDISH BROWN; DRY; WELL SORTED; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200802}}, {"model": "wells.lithologydescription", "pk": "408d7aa0-3a5f-452f-99d3-165502bac77e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well_tag_number": 112341, "lithology_from": "5.00", "lithology_to": "12.00", "lithology_raw_data": "GRAVELS & COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198113}}, {"model": "wells.lithologydescription", "pk": "40913022-4522-4f11-9e4f-c73154dc33fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well_tag_number": 112938, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202096}}, {"model": "wells.lithologydescription", "pk": "4095f5a9-2ed0-4d92-b8f7-580f5c907333", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well_tag_number": 112592, "lithology_from": "55.00", "lithology_to": "60.00", "lithology_raw_data": "FINE SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199930}}, {"model": "wells.lithologydescription", "pk": "4097a81d-7877-4fe2-89b9-b602515eae81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "60.00", "lithology_to": "75.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198569}}, {"model": "wells.lithologydescription", "pk": "409f4966-80e4-43c0-8861-f588c28d8889", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "27.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203326}}, {"model": "wells.lithologydescription", "pk": "40a9aadb-d31b-45ad-a4d6-1013fe54197e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "429.00", "lithology_to": "442.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "fractured at 438", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202843}}, {"model": "wells.lithologydescription", "pk": "40ab14ad-45af-4505-b200-4947e3cbcd69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-26T00:18:21Z", "activity_submission": null, "well_tag_number": 112673, "lithology_from": "83.00", "lithology_to": "117.00", "lithology_raw_data": "MEDIUM AND COARSE SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200458}}, {"model": "wells.lithologydescription", "pk": "40b21c90-9ccc-44b9-b653-26b0abf9ea2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY & BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198998}}, {"model": "wells.lithologydescription", "pk": "40c50c5b-afe9-47ef-bcb7-2dd36eec0f8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199558}}, {"model": "wells.lithologydescription", "pk": "40c72ad4-6adc-4720-8aee-ddd342223a20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "38.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198753}}, {"model": "wells.lithologydescription", "pk": "40cdfe52-fcf1-4e1f-98f8-b42c81cfde89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "62.00", "lithology_to": "135.00", "lithology_raw_data": "GREY SILTS AND SANDS, ODD GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200175}}, {"model": "wells.lithologydescription", "pk": "40d06800-3a79-487a-a5e4-befe25b0452e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "540.00", "lithology_to": "640.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE AT 622'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203271}}, {"model": "wells.lithologydescription", "pk": "40d2cdbb-868d-489a-9831-c05df94c53fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T16:48:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, "well_tag_number": 113185, "lithology_from": "63.00", "lithology_to": "119.00", "lithology_raw_data": "gravel", "lithology_description": "62", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203486}}, {"model": "wells.lithologydescription", "pk": "40fde23b-53c5-4835-ae5a-87c5bccabf5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, "well_tag_number": 112670, "lithology_from": "25.00", "lithology_to": "31.00", "lithology_raw_data": "FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200446}}, {"model": "wells.lithologydescription", "pk": "41004f92-1562-4812-9cbd-1953f5f02727", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:31:50Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=100+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199744}}, {"model": "wells.lithologydescription", "pk": "410f3993-6294-4469-8b07-b5e3952687da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, "well_tag_number": 113115, "lithology_from": "35.00", "lithology_to": "115.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203047}}, {"model": "wells.lithologydescription", "pk": "41180a42-67c8-4e13-b815-da8cf83fa4bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, "well_tag_number": 112695, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200541}}, {"model": "wells.lithologydescription", "pk": "411eb5f3-2d11-4b26-8349-d9879551cc56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, "well_tag_number": 112673, "lithology_from": "27.00", "lithology_to": "68.00", "lithology_raw_data": "FINE AND SILTY BROWN SAND WITH TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200456}}, {"model": "wells.lithologydescription", "pk": "4124099a-270c-413e-b39e-00fb8274e77b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "197.00", "lithology_to": "214.00", "lithology_raw_data": "SHALE / SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199464}}, {"model": "wells.lithologydescription", "pk": "4125888d-08fe-4048-bba1-615af7e030e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "VOLCANIC WITH SMALL GREEN TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199895}}, {"model": "wells.lithologydescription", "pk": "4127f211-5aba-4301-9028-ef18ba54af5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well_tag_number": 113066, "lithology_from": "121.00", "lithology_to": "123.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202756}}, {"model": "wells.lithologydescription", "pk": "413ebb70-0050-4e8b-9c15-f5ad9c6e0660", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well_tag_number": 112624, "lithology_from": "70.00", "lithology_to": "205.00", "lithology_raw_data": "PINK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200197}}, {"model": "wells.lithologydescription", "pk": "413f703c-68f1-4c69-aba7-67d574bc745a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "42.00", "lithology_to": "95.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200753}}, {"model": "wells.lithologydescription", "pk": "41495ef3-0c58-4b6d-9801-1e316194820d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well_tag_number": 113133, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 72' - 2.0 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203183}}, {"model": "wells.lithologydescription", "pk": "415188d5-addb-445e-a87b-e1b349a5569b", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-05-30T23:52:12Z", "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:08:51Z", "activity_submission": null, "well_tag_number": 104533, "lithology_from": "40.00", "lithology_to": "140.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 154110}}, {"model": "wells.lithologydescription", "pk": "415bb922-0dd5-4d3e-ab41-8ccb7965c4aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "237.00", "lithology_to": "239.00", "lithology_raw_data": "BROWNISH, SALT & PEPPER", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201601}}, {"model": "wells.lithologydescription", "pk": "415ec4ab-3390-4940-9054-c1c656862487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL AND SAND & BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202251}}, {"model": "wells.lithologydescription", "pk": "41600986-66c8-423d-92a6-1f2580977d69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY MOIST, WITH SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198561}}, {"model": "wells.lithologydescription", "pk": "4166b85b-0cc5-466b-ba4b-fae959168df4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "3.00", "lithology_to": "68.00", "lithology_raw_data": "DRY SILT, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203149}}, {"model": "wells.lithologydescription", "pk": "41710893-4420-483a-9dc5-0ec7a45e8f9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "26.00", "lithology_to": "54.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201958}}, {"model": "wells.lithologydescription", "pk": "417ed614-9225-4cf9-9b48-aee7f5246af9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "117.00", "lithology_to": "123.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200169}}, {"model": "wells.lithologydescription", "pk": "4185d1f2-7ca8-46ee-a3ee-3b619041f164", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "CLAY AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199583}}, {"model": "wells.lithologydescription", "pk": "41ad5f2a-1c9c-4a06-92c5-5d8c26fa0f1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "251.00", "lithology_to": "254.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203162}}, {"model": "wells.lithologydescription", "pk": "41aed1d1-4f99-48bd-92b6-991cdc0c079b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, "well_tag_number": 112246, "lithology_from": "66.00", "lithology_to": "80.50", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197507}}, {"model": "wells.lithologydescription", "pk": "41af59b9-f83d-49b0-89eb-62db8c79be21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, "well_tag_number": 112913, "lithology_from": "207.00", "lithology_to": "275.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201951}}, {"model": "wells.lithologydescription", "pk": "41c8b943-23e1-4182-b702-90eaad0740fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "TAN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197534}}, {"model": "wells.lithologydescription", "pk": "41e4dc98-cd01-417a-80a8-bccd0807b756", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T22:17:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, "well_tag_number": 112620, "lithology_from": "12.00", "lithology_to": "250.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Major fault at 247' to 250' 10+ USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200151}}, {"model": "wells.lithologydescription", "pk": "41eedb99-e4fe-4af6-ac1d-6f543866a7a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:16:47Z", "activity_submission": null, "well_tag_number": 113085, "lithology_from": "93.00", "lithology_to": "165.00", "lithology_raw_data": "BLACK BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202906}}, {"model": "wells.lithologydescription", "pk": "41f2e862-5ed4-4118-b951-54ddd43906a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "115.00", "lithology_to": "123.00", "lithology_raw_data": "SLOPPY FINE GREY SAND WITH CLAY BALLS, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201169}}, {"model": "wells.lithologydescription", "pk": "4210b72c-26fc-4be8-9748-7c193deaf8d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well_tag_number": 112938, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "TRACE SAND", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202100}}, {"model": "wells.lithologydescription", "pk": "421c8066-7771-457b-99a3-cbb2aa09ba88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "108.00", "lithology_to": "112.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198372}}, {"model": "wells.lithologydescription", "pk": "422bb175-75a2-44b5-926c-85b328f95873", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T18:54:50Z", "activity_submission": null, "well_tag_number": 112362, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "GREY/BROWN, GRAVELS AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "IRON, SILT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198238}}, {"model": "wells.lithologydescription", "pk": "422bca1a-2eb0-469f-b46b-01fca3853fad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:01:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:01:15Z", "activity_submission": null, "well_tag_number": 112307, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197816}}, {"model": "wells.lithologydescription", "pk": "423004f7-77af-43bc-9ce1-184499b2ab5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; COARSE SAND GRAVEL; SAND LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199181}}, {"model": "wells.lithologydescription", "pk": "424ba69b-34ec-4bb8-8a8b-b1c6d47e44f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE; GREY/RED/RUST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199096}}, {"model": "wells.lithologydescription", "pk": "4254e60d-9638-4b75-b7e4-85b25dc9f2be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199722}}, {"model": "wells.lithologydescription", "pk": "4256dacb-0fc7-468f-bb6c-a573945ee7bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well_tag_number": 113066, "lithology_from": "18.00", "lithology_to": "58.00", "lithology_raw_data": "SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202754}}, {"model": "wells.lithologydescription", "pk": "425d8afa-a7a0-4475-a36b-5b879dc1a297", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, "well_tag_number": 112684, "lithology_from": "75.00", "lithology_to": "83.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "12", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=ORANGE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200499}}, {"model": "wells.lithologydescription", "pk": "427446f4-b7c0-4eec-b82a-d2cb9f5f67a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, "well_tag_number": 112760, "lithology_from": "6.00", "lithology_to": "72.00", "lithology_raw_data": "CLEAN, DRY SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200974}}, {"model": "wells.lithologydescription", "pk": "42859b01-7169-4d3a-a613-088290f1a66c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "71.00", "lithology_to": "230.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198195}}, {"model": "wells.lithologydescription", "pk": "428616af-03cb-4f46-8c32-1b9d06df4956", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well_tag_number": 113188, "lithology_from": "27.00", "lithology_to": "34.00", "lithology_raw_data": "silt and sand", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203495}}, {"model": "wells.lithologydescription", "pk": "428b8b69-3852-4996-97c7-ba60002f84cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202268}}, {"model": "wells.lithologydescription", "pk": "429086d1-8d8c-4132-b628-771b60eb9aa3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "52.00", "lithology_to": "54.00", "lithology_raw_data": "SAND, ROCK AND CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198534}}, {"model": "wells.lithologydescription", "pk": "42a22b8d-5d83-4fa1-a692-df1e94e7cfda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "103.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, SILT LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199084}}, {"model": "wells.lithologydescription", "pk": "42b1b3ed-bb61-4d3d-a87d-a1ac9a9e4a35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well_tag_number": 113152, "lithology_from": "6.00", "lithology_to": "18.00", "lithology_raw_data": "Sand with clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203304}}, {"model": "wells.lithologydescription", "pk": "42b6455d-ffd1-41a1-b9e1-ee0830d7a5a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "141.00", "lithology_to": "167.00", "lithology_raw_data": "LAYERS OF SAND AND SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202778}}, {"model": "wells.lithologydescription", "pk": "42bd2094-9d20-4070-8536-ab9cd2e11303", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "93.00", "lithology_to": "100.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203215}}, {"model": "wells.lithologydescription", "pk": "42bda1a4-6027-4aef-8f85-90766e780960", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "224.00", "lithology_to": "284.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203145}}, {"model": "wells.lithologydescription", "pk": "42c3f65c-eb68-447e-84ae-24197f91b01c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, "well_tag_number": 112892, "lithology_from": "158.00", "lithology_to": "161.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "6.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@160' 4-8 GPM WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201845}}, {"model": "wells.lithologydescription", "pk": "42c61f70-06c3-4867-8f86-483b1969b19a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "143.00", "lithology_to": "185.00", "lithology_raw_data": "SHALE / SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199484}}, {"model": "wells.lithologydescription", "pk": "42ecd4a0-8e06-4453-986c-d99ff16d1b7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "52.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201389}}, {"model": "wells.lithologydescription", "pk": "4303925d-50ec-4c50-b146-680ec3f2e3e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, "well_tag_number": 112885, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201796}}, {"model": "wells.lithologydescription", "pk": "430ab6ea-6db9-4da6-8996-4d11b4f12bc3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "SS hard, S&P coarse - making water", "lithology_description": "45", "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203402}}, {"model": "wells.lithologydescription", "pk": "43108965-0c0a-408c-b33d-0510c529771c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well_tag_number": 112559, "lithology_from": "27.00", "lithology_to": "43.00", "lithology_raw_data": "and boulders", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199708}}, {"model": "wells.lithologydescription", "pk": "4314e287-2124-4e57-b1fd-6a3663f7428f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "100.00", "lithology_to": "180.00", "lithology_raw_data": "FINE SAND, TRACES SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199239}}, {"model": "wells.lithologydescription", "pk": "4327fe54-6b42-4d6c-a221-0975f69175af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "215.00", "lithology_to": "230.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; SOLID WITH WATER BEARING FRACTURES FROM 215' TO 220' ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200674}}, {"model": "wells.lithologydescription", "pk": "43314c32-3b8c-4d21-a190-7188aa6fa47f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:14:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:14:53Z", "activity_submission": null, "well_tag_number": 112690, "lithology_from": "16.00", "lithology_to": "158.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200528}}, {"model": "wells.lithologydescription", "pk": "433690be-3f5b-4998-b9be-7ee1e123a5fd", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T19:59:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:59:16Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "300.00", "lithology_to": "440.00", "lithology_raw_data": "CLAY, SILT CONTENT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198735}}, {"model": "wells.lithologydescription", "pk": "43444b13-4e29-4fc8-8222-0292bd6e94b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "264.00", "lithology_to": "290.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK, WHITE, GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159178}}, {"model": "wells.lithologydescription", "pk": "434a2fc9-68e8-43f2-898a-886d15c67504", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "LIGHT BROWN/GREY SILTS, ODD STONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200171}}, {"model": "wells.lithologydescription", "pk": "434d95c4-79ce-4bd8-970b-c53ef0360d43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "135.00", "lithology_to": "156.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Gravelly", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198262}}, {"model": "wells.lithologydescription", "pk": "434f1b10-90ed-4181-9ac0-a54a89f60601", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "779.00", "lithology_to": "800.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200628}}, {"model": "wells.lithologydescription", "pk": "43537f55-5963-4b16-a0db-ea1cc99140a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "65.00", "lithology_to": "76.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200042}}, {"model": "wells.lithologydescription", "pk": "4357dc85-5bcf-4ba8-8e04-154dac6d96de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "313.00", "lithology_to": "315.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202784}}, {"model": "wells.lithologydescription", "pk": "435879d9-cde0-48c8-9fa9-e9b4c23021fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, "well_tag_number": 113210, "lithology_from": "15.00", "lithology_to": "100.00", "lithology_raw_data": "SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203632}}, {"model": "wells.lithologydescription", "pk": "4359a9dd-5192-4302-8420-39791530f2d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:13:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, "well_tag_number": 112515, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPH", "lithology_observation": "at 35'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199393}}, {"model": "wells.lithologydescription", "pk": "435b7a67-8bc9-4025-893e-5ca2de7fd414", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "223.00", "lithology_to": "260.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201182}}, {"model": "wells.lithologydescription", "pk": "435da380-babf-4b1b-99df-289ace59f764", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "gravelly", "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203546}}, {"model": "wells.lithologydescription", "pk": "43604ccf-b6dc-45c5-bdb1-e12a395c8d19", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "402.00", "lithology_to": "420.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203923}}, {"model": "wells.lithologydescription", "pk": "4363b9bb-b6d9-454f-baa8-a9b857a34a56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:13:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, "well_tag_number": 112844, "lithology_from": "21.00", "lithology_to": "28.00", "lithology_raw_data": "GREY SAND AND GRAVEL, W.B. RUSTY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201441}}, {"model": "wells.lithologydescription", "pk": "43650769-8ac1-4557-92fb-fd93f0722f9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "108.00", "lithology_to": "114.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "NO IRON", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200406}}, {"model": "wells.lithologydescription", "pk": "439dcb2a-0ff5-4acc-bb94-8cf4871199a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, "well_tag_number": 112286, "lithology_from": "7.00", "lithology_to": "19.00", "lithology_raw_data": "TILL, CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197714}}, {"model": "wells.lithologydescription", "pk": "43aa7f8e-af21-487c-a306-a8720c291b5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "120.00", "lithology_to": "220.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200020}}, {"model": "wells.lithologydescription", "pk": "43b29369-4e7a-424d-b548-62806d7c02ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "98.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143918}}, {"model": "wells.lithologydescription", "pk": "43c3a453-d381-40c8-9322-0f23f2d5d671", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, "well_tag_number": 112282, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197699}}, {"model": "wells.lithologydescription", "pk": "43ceaa5f-be64-438d-ae30-a9c54f32d2c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL COARSE COBBLE WITH SAND LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199289}}, {"model": "wells.lithologydescription", "pk": "43d8e194-2e34-4af8-9594-62d462067eb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "460.00", "lithology_to": "480.00", "lithology_raw_data": "Shale and sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203619}}, {"model": "wells.lithologydescription", "pk": "43dc361c-b376-414c-9496-48eddc145001", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "171.00", "lithology_to": "174.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201426}}, {"model": "wells.lithologydescription", "pk": "43e05ce3-ab4e-41d0-8bc9-bd3dc6af1adc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198623}}, {"model": "wells.lithologydescription", "pk": "43f3ca21-8b6e-49e4-a028-8b76ecc61b31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "570.00", "lithology_to": "625.00", "lithology_raw_data": "GREY/BLUE/GREEN VOLCANIC WITH FEW GREEN TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197371}}, {"model": "wells.lithologydescription", "pk": "440ee605-8382-4974-a2ae-e7a79b150e24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "9.00", "lithology_to": "19.00", "lithology_raw_data": "TIGHT GRAVEL AND COBBLES WITH SOME SAND AND SOME SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200783}}, {"model": "wells.lithologydescription", "pk": "44139624-934e-4983-927d-41969f69c014", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "SANDY CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197850}}, {"model": "wells.lithologydescription", "pk": "441b5faf-cda8-47a6-8ee4-2a466852a982", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198624}}, {"model": "wells.lithologydescription", "pk": "442e3ac8-89e0-4d09-956d-fdaca8586c35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200008}}, {"model": "wells.lithologydescription", "pk": "4455abf0-e7a9-4edc-8919-cd2275142556", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201910}}, {"model": "wells.lithologydescription", "pk": "446534aa-6df4-4545-a333-fa4d95dc9e7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, "well_tag_number": 112593, "lithology_from": "80.00", "lithology_to": "131.00", "lithology_raw_data": "GRAVEL MEDIUM SAND, FINE TO MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199936}}, {"model": "wells.lithologydescription", "pk": "447939ef-5996-4f25-a522-00cdfb1edb3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "335.00", "lithology_to": "385.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198518}}, {"model": "wells.lithologydescription", "pk": "447a4e16-8476-407a-a94d-fe3c7082c10c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:24:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, "well_tag_number": 112261, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "HARD PAN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197577}}, {"model": "wells.lithologydescription", "pk": "44924af3-7e04-405b-8911-ece4cce6b9b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "203.00", "lithology_to": "277.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200415}}, {"model": "wells.lithologydescription", "pk": "4494f133-5372-40d3-ad23-55789384f4d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "281.40", "lithology_to": "314.20", "lithology_raw_data": "SILTSTONE/MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201019}}, {"model": "wells.lithologydescription", "pk": "44972661-6210-470f-83dd-de3dd417446f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well_tag_number": 112441, "lithology_from": "292.00", "lithology_to": "294.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198805}}, {"model": "wells.lithologydescription", "pk": "44a78c28-248f-4842-8729-1e0d4840cdf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, "well_tag_number": 113027, "lithology_from": "18.00", "lithology_to": "42.00", "lithology_raw_data": "Brown Clay and Rocks", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202568}}, {"model": "wells.lithologydescription", "pk": "44b9cebd-727b-482c-ba32-356d6d845ab2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well_tag_number": 112879, "lithology_from": "212.00", "lithology_to": "220.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201755}}, {"model": "wells.lithologydescription", "pk": "44bb3a95-3310-4ae3-890b-7cd3a6b1b758", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "2.00", "lithology_to": "16.00", "lithology_raw_data": "and some gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198869}}, {"model": "wells.lithologydescription", "pk": "44bcb9e1-85dc-4aed-92d2-75e830bbdbe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "0.00", "lithology_to": "142.00", "lithology_raw_data": "SAMPLE SUBMITTED TO MINE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202033}}, {"model": "wells.lithologydescription", "pk": "44d904e7-5e70-44ad-8a42-cd3c13d268c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202936}}, {"model": "wells.lithologydescription", "pk": "44f2dd5e-bf1e-4b91-bf98-d958d6661520", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "12.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203360}}, {"model": "wells.lithologydescription", "pk": "44f8b445-7727-481c-86a3-0ffa888e53a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "108.00", "lithology_to": "127.00", "lithology_raw_data": "SHALE AND SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201087}}, {"model": "wells.lithologydescription", "pk": "44f9d8c2-c0e0-4cb2-9395-093255cc6ecd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200761}}, {"model": "wells.lithologydescription", "pk": "451f27fd-9d15-4ebc-9d48-e04c4f631c7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "365.00", "lithology_to": "388.00", "lithology_raw_data": "W.B. BROWN SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200962}}, {"model": "wells.lithologydescription", "pk": "452350ca-f82e-473b-b700-78f8a6b9ecac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "120.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "1.5-2 USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198985}}, {"model": "wells.lithologydescription", "pk": "4523516c-7c1f-45e5-9ef4-c9d5af67a5cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-06T23:13:41Z", "activity_submission": null, "well_tag_number": 112720, "lithology_from": "185.00", "lithology_to": "221.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "2.5 USGPM at 190'; 15 USGPM at 220';\r\nfractured below 200'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200679}}, {"model": "wells.lithologydescription", "pk": "4529f459-360d-4497-9cac-b7192e53b558", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:08:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, "well_tag_number": 112293, "lithology_from": "200.00", "lithology_to": "402.00", "lithology_raw_data": "GREY/MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197747}}, {"model": "wells.lithologydescription", "pk": "45308009-0cda-4979-a402-a5536b6cfad2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, MIXED GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199310}}, {"model": "wells.lithologydescription", "pk": "45350937-50d0-4549-ae79-21ea2ffe6e97", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "66.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201983}}, {"model": "wells.lithologydescription", "pk": "453b852f-aae7-4924-9088-0d25a4ac03be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "84.00", "lithology_to": "128.00", "lithology_raw_data": "SILT AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200105}}, {"model": "wells.lithologydescription", "pk": "45485288-86a8-446d-81aa-ee6079ed82ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:14:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, "well_tag_number": 112714, "lithology_from": "31.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER BLACK COARSE SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; CLEANER; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200642}}, {"model": "wells.lithologydescription", "pk": "454a429b-c7c3-4a47-ba31-5769c5085139", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, "well_tag_number": 112795, "lithology_from": "83.00", "lithology_to": "84.00", "lithology_raw_data": "GREY SOLID BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201149}}, {"model": "wells.lithologydescription", "pk": "45517760-d938-45c6-b402-e0e7854dd820", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well_tag_number": 112689, "lithology_from": "0.00", "lithology_to": "21.00", "lithology_raw_data": "GRAVEL AND BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200521}}, {"model": "wells.lithologydescription", "pk": "4552045c-9549-479b-bb92-a78f696306ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "385.00", "lithology_to": "421.00", "lithology_raw_data": "shale interbedded", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201185}}, {"model": "wells.lithologydescription", "pk": "455d2bc0-50e7-4286-93d5-0954dea80abb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:21:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, "well_tag_number": 112880, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201756}}, {"model": "wells.lithologydescription", "pk": "4563bcd0-cb84-4dde-894f-3f1ab523682f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "544.00", "lithology_to": "561.00", "lithology_raw_data": "dark grey/green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201244}}, {"model": "wells.lithologydescription", "pk": "456bbc8c-4b87-49ea-9779-50c7391fd791", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "300.00", "lithology_to": "444.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE COBBLE WITH SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199291}}, {"model": "wells.lithologydescription", "pk": "458539ef-70e0-418d-9a9e-3abc9f72f7cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, "well_tag_number": 112301, "lithology_from": "12.00", "lithology_to": "44.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197783}}, {"model": "wells.lithologydescription", "pk": "458cb22d-b0b3-4b62-a629-ceb035e113e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:24:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, "well_tag_number": 112315, "lithology_from": "102.00", "lithology_to": "260.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "220'=20 GPM - WATER STARTING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197860}}, {"model": "wells.lithologydescription", "pk": "459d416e-112f-432e-9b2d-b3ed44f92009", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, "well_tag_number": 112608, "lithology_from": "100.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200052}}, {"model": "wells.lithologydescription", "pk": "459f4069-44ff-4be0-b692-c33341860052", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well_tag_number": 112548, "lithology_from": "173.00", "lithology_to": "194.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199649}}, {"model": "wells.lithologydescription", "pk": "45a1b4bc-e263-48fe-b296-b65e294e2631", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well_tag_number": 112994, "lithology_from": "143.00", "lithology_to": "144.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "21", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202439}}, {"model": "wells.lithologydescription", "pk": "45b2e3f5-0c9c-4af0-abc4-e54f6bbbfd87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "55.00", "lithology_to": "198.00", "lithology_raw_data": "shale, siltstone layers", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 116'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203832}}, {"model": "wells.lithologydescription", "pk": "45b4bf46-0666-4180-a1c1-93773520d676", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, "well_tag_number": 113009, "lithology_from": "45.00", "lithology_to": "135.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202484}}, {"model": "wells.lithologydescription", "pk": "45bd965b-9fec-48f4-9da3-820fb7b93c92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, "well_tag_number": 112406, "lithology_from": "50.00", "lithology_to": "63.00", "lithology_raw_data": "FINE TO MEDIUM SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TO 35' THEN MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198526}}, {"model": "wells.lithologydescription", "pk": "45c3c9fc-3699-4945-8261-ad4d7f88c268", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "122.00", "lithology_to": "270.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE SOME BLACK; SOLID; POSSIBLE WATER@259'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200755}}, {"model": "wells.lithologydescription", "pk": "45da98d4-042f-4437-b652-f9943cf3114f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "237.00", "lithology_to": "241.00", "lithology_raw_data": "GREY-PINK BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "CLAPSING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202539}}, {"model": "wells.lithologydescription", "pk": "45f1d6a8-1189-487e-94d9-51e4a0f27cfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": "10.00", "lithology_to": "21.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201188}}, {"model": "wells.lithologydescription", "pk": "45f4ebd7-12b0-4d7b-a368-24993b62f838", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "63.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198287}}, {"model": "wells.lithologydescription", "pk": "45fcdff0-87df-4e34-9a83-8f7a77c47ae2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "CLAY, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198562}}, {"model": "wells.lithologydescription", "pk": "4607d468-726c-4e22-ab37-2dbb6d123a87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "90.00", "lithology_to": "99.00", "lithology_raw_data": "WITH SALT/PEPPER LAYERS", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201588}}, {"model": "wells.lithologydescription", "pk": "4611dd3d-efd1-4506-82a0-f43aedf6dd89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199098}}, {"model": "wells.lithologydescription", "pk": "46160931-1849-42b8-a29b-ea7ab9145130", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well_tag_number": 112220, "lithology_from": "175.00", "lithology_to": "230.00", "lithology_raw_data": "GREY/GREEN/WHITE MEDIUM VOLCANIC WITH GREEN AND OCCASIONAL WHITE ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197336}}, {"model": "wells.lithologydescription", "pk": "461b5ab5-37a8-4d85-90cc-7b8d6da7e0e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well_tag_number": 112898, "lithology_from": "75.00", "lithology_to": "83.00", "lithology_raw_data": "SAND & SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201883}}, {"model": "wells.lithologydescription", "pk": "461f9601-f965-4da2-be78-38c15192757f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "FINE GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197531}}, {"model": "wells.lithologydescription", "pk": "4632576d-c8ac-4d02-82a9-0b1f6d0356db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:41Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "205.00", "lithology_to": "220.00", "lithology_raw_data": "MEDIUM/HARD, BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198934}}, {"model": "wells.lithologydescription", "pk": "46355dcf-b24e-4ebb-8f71-a770342ef5e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "8.00", "lithology_to": "63.00", "lithology_raw_data": "grey/green volcatics", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 60'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201377}}, {"model": "wells.lithologydescription", "pk": "464313b8-6b7e-4048-b749-b14e31bb1e5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T19:52:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, "well_tag_number": 113186, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203487}}, {"model": "wells.lithologydescription", "pk": "464768fb-7356-460d-adc4-93bac27cec5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "72.00", "lithology_to": "76.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198874}}, {"model": "wells.lithologydescription", "pk": "46482e2b-33a2-49c7-b2f7-7f7b1ee2de23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "GREY CLAY WITH SEA SHELLS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197532}}, {"model": "wells.lithologydescription", "pk": "464df83e-3170-4741-a619-325f4a964232", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well_tag_number": 112992, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202421}}, {"model": "wells.lithologydescription", "pk": "46523090-effd-4eed-8e3b-b2deaa7d1d75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:35:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, "well_tag_number": 113090, "lithology_from": "7.00", "lithology_to": "16.00", "lithology_raw_data": "some sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202926}}, {"model": "wells.lithologydescription", "pk": "46578851-48fd-4b60-88ad-1703655bb22c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "80.00", "lithology_to": "82.00", "lithology_raw_data": "CLAY ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199552}}, {"model": "wells.lithologydescription", "pk": "4659607d-e47e-4318-b35e-8a2d991422f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "33.00", "lithology_to": "148.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197894}}, {"model": "wells.lithologydescription", "pk": "467b6df6-b902-4d4b-a354-cdf2654e0682", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, "well_tag_number": 112918, "lithology_from": "35.00", "lithology_to": "155.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED @ 68', 112'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202013}}, {"model": "wells.lithologydescription", "pk": "467d855a-02c3-4b9f-b49f-b0e24f95890a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well_tag_number": 112616, "lithology_from": "76.00", "lithology_to": "92.00", "lithology_raw_data": "SILT WITH FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200135}}, {"model": "wells.lithologydescription", "pk": "467dd7fb-7d5d-4f1e-8887-83209627f933", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "SOFT/MEDIUM; FINE, SILTY SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199536}}, {"model": "wells.lithologydescription", "pk": "468588f6-31f7-4309-892a-29e9b1a410e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well_tag_number": 112370, "lithology_from": "24.00", "lithology_to": "31.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198309}}, {"model": "wells.lithologydescription", "pk": "468d4ffc-f52a-4a5e-ba09-440e7a5c7a51", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "140.00", "lithology_to": "179.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201294}}, {"model": "wells.lithologydescription", "pk": "4691b96e-624a-4808-8b4c-95245144eea6", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T19:42:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:42:24Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "184.00", "lithology_to": "186.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198028}}, {"model": "wells.lithologydescription", "pk": "469891b9-4fce-4ae7-b4bc-40e625d56210", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:37:19Z", "activity_submission": null, "well_tag_number": 112935, "lithology_from": "12.00", "lithology_to": "195.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202079}}, {"model": "wells.lithologydescription", "pk": "469a50d6-4729-4a6f-be2b-dbcd32c72e5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well_tag_number": 112786, "lithology_from": "6.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NATIVE SOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201125}}, {"model": "wells.lithologydescription", "pk": "46afe2bb-a628-488b-842f-ed91356f11c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:31:08Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "2.50", "lithology_to": "15.00", "lithology_raw_data": "light grey, silt, sand with clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203862}}, {"model": "wells.lithologydescription", "pk": "46b3ec98-ad50-483b-ba57-4f7e77c00f7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "28.00", "lithology_to": "51.00", "lithology_raw_data": "VERY FINE AND SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200742}}, {"model": "wells.lithologydescription", "pk": "46b86194-4b69-4d76-9aed-407c9a0cd70a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "13.00", "lithology_to": "16.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197836}}, {"model": "wells.lithologydescription", "pk": "46ba0c97-5f59-4582-a227-428a26111338", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "55.00", "lithology_to": "61.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203221}}, {"model": "wells.lithologydescription", "pk": "46ba0d89-b81c-4fce-8309-687c1b3cb83f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198680}}, {"model": "wells.lithologydescription", "pk": "46bb230f-2eff-4ac5-af63-d5df324dbe8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, "well_tag_number": 113277, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WEATHERED TOP 15'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203940}}, {"model": "wells.lithologydescription", "pk": "46c4071f-e4f1-44cc-b31e-d31af3c92dc9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "6.00", "lithology_to": "77.00", "lithology_raw_data": "with black streaks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197655}}, {"model": "wells.lithologydescription", "pk": "46c4f848-fbf3-43c7-9108-7492afc998c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199110}}, {"model": "wells.lithologydescription", "pk": "46c8c6b9-2e5b-4220-8f88-68e457a0b57a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, "well_tag_number": 112911, "lithology_from": "27.00", "lithology_to": "37.00", "lithology_raw_data": "SAND & GRAVEL, SOME SILT, TRACE COBBLE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201944}}, {"model": "wells.lithologydescription", "pk": "46c9b760-12ff-4d0e-ae22-8142d62a98a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "121.00", "lithology_to": "140.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201872}}, {"model": "wells.lithologydescription", "pk": "46e2bbe1-36cc-4179-b4d2-d9838250ed86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "270.00", "lithology_to": "320.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199877}}, {"model": "wells.lithologydescription", "pk": "46f167be-fbb0-42bd-af8e-815994032a06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "54.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198343}}, {"model": "wells.lithologydescription", "pk": "470365fa-8c7b-4a1c-8853-4777624375c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "15.00", "lithology_to": "17.00", "lithology_raw_data": "BROWN/GREY CLAY WITH GRAVELS, COBBLE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOME WATER; SURFACE WATER SEALED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198144}}, {"model": "wells.lithologydescription", "pk": "4703eaad-02a3-4017-8b8e-b657c145b8e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "93.00", "lithology_to": "200.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204039}}, {"model": "wells.lithologydescription", "pk": "47058c1b-7b3c-4004-8640-6db1eaea1d3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201768}}, {"model": "wells.lithologydescription", "pk": "470ac3af-67d6-4d50-abc8-3053fe8a1164", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "SHALE, SANDSTONE LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202947}}, {"model": "wells.lithologydescription", "pk": "470c2052-7ab7-45ec-a6a2-8030a29c03cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "128.00", "lithology_to": "211.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200429}}, {"model": "wells.lithologydescription", "pk": "47108dd1-9cbc-4cbd-a65f-e5eb4fbefdbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "399.00", "lithology_to": "409.00", "lithology_raw_data": "SANDY SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199764}}, {"model": "wells.lithologydescription", "pk": "4712faf9-1c00-4f72-ba09-970245c78e7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well_tag_number": 112938, "lithology_from": "11.00", "lithology_to": "63.00", "lithology_raw_data": "MIXED SANDS, MIXED GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202098}}, {"model": "wells.lithologydescription", "pk": "471ce69d-f820-4d92-b4aa-2a9dad28dcd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "73.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FLOWING (ARTESIAN)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201989}}, {"model": "wells.lithologydescription", "pk": "47246561-fc4e-407d-851f-3951ae324a72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "72.00", "lithology_to": "75.00", "lithology_raw_data": "SS MED FINE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143913}}, {"model": "wells.lithologydescription", "pk": "4727edf7-2a71-4a04-8b7a-b02cab7f12e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:23:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, "well_tag_number": 112881, "lithology_from": "25.00", "lithology_to": "38.00", "lithology_raw_data": "some sand, reddish", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201760}}, {"model": "wells.lithologydescription", "pk": "4731dfd8-3f4a-48a3-b0e5-457c3b25671f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:48:29Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "Sandstone hard coarse", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "fractured oxidized - 200CFM no pressure", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203568}}, {"model": "wells.lithologydescription", "pk": "47335373-bc37-4b28-8781-4e8262b9a382", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "273.00", "lithology_to": "420.00", "lithology_raw_data": "MEDIUM-SOFT; GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE AND TAN; DRY; SOLID; SOFT SPOT @ 273'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200625}}, {"model": "wells.lithologydescription", "pk": "47394ea9-6914-41b6-8a47-f7d5c52d12b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well_tag_number": 112938, "lithology_from": "63.00", "lithology_to": "80.00", "lithology_raw_data": "FINE/MEDIUM SANDS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202099}}, {"model": "wells.lithologydescription", "pk": "474fece2-0758-4614-949e-9016f694bd2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, "well_tag_number": 112902, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "BOULDERS, COBBLE, SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201897}}, {"model": "wells.lithologydescription", "pk": "47538f62-625b-4503-ad26-96130e05d69c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:11Z", "activity_submission": null, "well_tag_number": 112410, "lithology_from": "32.00", "lithology_to": "457.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198545}}, {"model": "wells.lithologydescription", "pk": "47550530-3cb5-4d34-b203-a4fac90acaa7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": "42.00", "lithology_to": "100.00", "lithology_raw_data": "WHITE & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED @ 88'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201859}}, {"model": "wells.lithologydescription", "pk": "475bb92f-f4fb-49b1-a308-ac6dd417c421", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, "well_tag_number": 112246, "lithology_from": "14.00", "lithology_to": "66.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "18', 50' = V. FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197506}}, {"model": "wells.lithologydescription", "pk": "475c79df-2bac-43b4-91e9-57e00479a607", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well_tag_number": 112550, "lithology_from": "11.00", "lithology_to": "78.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199658}}, {"model": "wells.lithologydescription", "pk": "4764d38c-ef6e-4a95-9b0c-a18ab258a73a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "PULL BACK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199265}}, {"model": "wells.lithologydescription", "pk": "47879aa2-3950-442e-9f64-00563fa3d961", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:59:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, "well_tag_number": 112790, "lithology_from": "0.00", "lithology_to": "3.25", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BEDDING SAND/NATIVE SOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201135}}, {"model": "wells.lithologydescription", "pk": "478e4f79-e4e4-4378-a692-63677e3a72cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, "well_tag_number": 112316, "lithology_from": "167.00", "lithology_to": "175.00", "lithology_raw_data": "GRAVEL, MEDIUM SAND", "lithology_description": null, "lithology_colour": "12", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WET, HIGH IRON", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197864}}, {"model": "wells.lithologydescription", "pk": "47934115-a1eb-4225-9f06-812895b70329", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:50Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "166.00", "lithology_to": "213.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "300.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201975}}, {"model": "wells.lithologydescription", "pk": "47967493-fee9-4e46-922a-6d60e318421e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-23T19:56:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, "well_tag_number": 112813, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201232}}, {"model": "wells.lithologydescription", "pk": "47a17cfd-583f-4a33-a70b-2dbbd3e8a9bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "140.00", "lithology_to": "170.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199887}}, {"model": "wells.lithologydescription", "pk": "47d97a69-29ff-479b-9b59-f5b3f68add76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "39.00", "lithology_to": "56.00", "lithology_raw_data": "BROWN/GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201163}}, {"model": "wells.lithologydescription", "pk": "47de30e7-d45a-41bb-88fc-4e3de383bc3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "136.00", "lithology_to": "160.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198504}}, {"model": "wells.lithologydescription", "pk": "47e0c4be-612f-4160-9e07-1b4bc6e100ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, "well_tag_number": 113028, "lithology_from": "182.00", "lithology_to": "195.00", "lithology_raw_data": "BROWN CLAY AND ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202575}}, {"model": "wells.lithologydescription", "pk": "47e808c6-05b1-4d28-bd63-94e3933804ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T08:14:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, "well_tag_number": 112252, "lithology_from": "80.00", "lithology_to": "104.00", "lithology_raw_data": "GRAVELY CLAY", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "92'-104' FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197525}}, {"model": "wells.lithologydescription", "pk": "47e97e76-a73e-4f78-a40a-e48d5f520579", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "323.00", "lithology_to": "330.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE / FINE-MEDIUM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199471}}, {"model": "wells.lithologydescription", "pk": "47f17d39-7178-4093-9620-0f3d315c308b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "65.00", "lithology_to": "160.00", "lithology_raw_data": "WHITE/PINK, BEDROCK - PINK/WHITE GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198153}}, {"model": "wells.lithologydescription", "pk": "48063bc2-0478-42e2-a6de-3c774332be3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well_tag_number": 112273, "lithology_from": "36.00", "lithology_to": "38.00", "lithology_raw_data": "seam of water", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Possibly 1.0 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197638}}, {"model": "wells.lithologydescription", "pk": "48130205-0da0-425e-844c-9ec79ff58dda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "54.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM, SAND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198796}}, {"model": "wells.lithologydescription", "pk": "481545fc-010b-4080-9995-912f890b6bba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "32.00", "lithology_to": "35.00", "lithology_raw_data": "SHALE AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET, WEATHERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197908}}, {"model": "wells.lithologydescription", "pk": "4824993f-6db7-4676-a000-80ec26dbe0fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, "well_tag_number": 113181, "lithology_from": "15.00", "lithology_to": "75.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203454}}, {"model": "wells.lithologydescription", "pk": "4829dcd7-a783-4fcf-a967-e5a1ed2c039a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "TILL, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199735}}, {"model": "wells.lithologydescription", "pk": "485270fc-86cb-4d25-a125-de813435c5a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, "well_tag_number": 112394, "lithology_from": "96.00", "lithology_to": "397.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198456}}, {"model": "wells.lithologydescription", "pk": "486f9ab7-45e5-46f0-bc58-b93e1f68669f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, "well_tag_number": 112722, "lithology_from": "7.00", "lithology_to": "13.00", "lithology_raw_data": "FINE SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200692}}, {"model": "wells.lithologydescription", "pk": "48766a98-5297-43d7-a234-7847c6a98bf9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "43.00", "lithology_to": "63.00", "lithology_raw_data": "SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST TO WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200786}}, {"model": "wells.lithologydescription", "pk": "48864ce4-ea0b-49ae-9b7d-8445aa3c0a17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "75.00", "lithology_to": "113.00", "lithology_raw_data": "sand", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB. SET 0.012 SCREEN. TOO SILTY AT 98'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202963}}, {"model": "wells.lithologydescription", "pk": "488c9890-5d8e-448d-87f3-2d3ddb274f50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well_tag_number": 112547, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199641}}, {"model": "wells.lithologydescription", "pk": "489bad74-3c22-4369-9085-9f4867af0a15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "110.00", "lithology_to": "234.00", "lithology_raw_data": "VERY HARD PACKED GREY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200661}}, {"model": "wells.lithologydescription", "pk": "48a8ef75-806e-4d17-b5e1-0e71e908197a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "242.00", "lithology_to": "263.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202829}}, {"model": "wells.lithologydescription", "pk": "48a928c8-86c6-40df-bec2-c62ff19b88e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "17.00", "lithology_to": "65.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202352}}, {"model": "wells.lithologydescription", "pk": "48b14a3d-6d08-4bbb-b611-f4796563d87c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well_tag_number": 112738, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200821}}, {"model": "wells.lithologydescription", "pk": "48bc6cdd-4c7f-400b-a8b3-6be2a8046729", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "75.00", "lithology_to": "110.00", "lithology_raw_data": "GREY FINE SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199425}}, {"model": "wells.lithologydescription", "pk": "48bf61b2-45fc-4963-9eb2-10fae7c8b751", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203315}}, {"model": "wells.lithologydescription", "pk": "48cec64e-7112-4353-8086-d40c37c5db6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well_tag_number": 112220, "lithology_from": "520.00", "lithology_to": "570.00", "lithology_raw_data": "BROWN/GREY VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WEATHERED, CAVING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197339}}, {"model": "wells.lithologydescription", "pk": "48de9fab-4a0c-41ef-aa52-8e7e6a534cfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": "242.00", "lithology_to": "301.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 200'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201469}}, {"model": "wells.lithologydescription", "pk": "48ebf2ca-e43a-44cf-934f-8a6decec326f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, "well_tag_number": 112927, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202057}}, {"model": "wells.lithologydescription", "pk": "48f1f0c4-afba-48e6-b948-757328ef95a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "24.00", "lithology_to": "172.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203679}}, {"model": "wells.lithologydescription", "pk": "48f42985-cfaa-473c-bfa2-5b46f6dea5ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "42.00", "lithology_to": "43.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198325}}, {"model": "wells.lithologydescription", "pk": "4917b03d-adff-46dc-bb74-fe1d653e0de6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202939}}, {"model": "wells.lithologydescription", "pk": "492059e0-401a-4546-80b9-3e145dd20a0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "91.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199378}}, {"model": "wells.lithologydescription", "pk": "4925e8ce-f426-4da2-ae62-dcef55f962e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "94.00", "lithology_to": "99.00", "lithology_raw_data": "GRAVEL/TILL WITH FINES", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201693}}, {"model": "wells.lithologydescription", "pk": "492d4464-1c0b-4177-982b-fe2749db7144", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:29:41Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "230.00", "lithology_to": "270.00", "lithology_raw_data": "clay with quartz bedrock", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202589}}, {"model": "wells.lithologydescription", "pk": "492ed89f-0e4e-4b93-8478-deecddbc4746", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, "well_tag_number": 113269, "lithology_from": "18.00", "lithology_to": "38.00", "lithology_raw_data": "CLAYS AND SOME GRAVEL SEAMS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203914}}, {"model": "wells.lithologydescription", "pk": "4934b852-aee1-4c96-ad79-3c936de3e5e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, "well_tag_number": 112722, "lithology_from": "4.00", "lithology_to": "7.00", "lithology_raw_data": "PEAT AND TOPSOIL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200691}}, {"model": "wells.lithologydescription", "pk": "493a7840-5bff-4a28-87e9-f9da95a5b4c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, "well_tag_number": 112243, "lithology_from": "19.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "26'-40' = FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197495}}, {"model": "wells.lithologydescription", "pk": "493ccf8e-3bd3-4b3c-8a41-45033dbd46b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "183.00", "lithology_to": "196.00", "lithology_raw_data": "SANDY BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203142}}, {"model": "wells.lithologydescription", "pk": "4955c20d-3c9d-46f5-9965-9454fa3e26d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, "well_tag_number": 112269, "lithology_from": "3.00", "lithology_to": "255.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197611}}, {"model": "wells.lithologydescription", "pk": "4955c91d-457f-4cd1-9b24-3dee72bea70c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:47:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, "well_tag_number": 112248, "lithology_from": "74.00", "lithology_to": "87.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197511}}, {"model": "wells.lithologydescription", "pk": "4963a0c5-eaad-4d29-a7b7-e40ac30f7936", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILT WITH MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198948}}, {"model": "wells.lithologydescription", "pk": "4964b9ef-bb2a-4a48-9d12-e2224a81e4aa", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:32:14Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:32:14Z", "activity_submission": null, "well_tag_number": 107072, "lithology_from": "12.00", "lithology_to": "18.00", "lithology_raw_data": "DAMP TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 167273}}, {"model": "wells.lithologydescription", "pk": "4966d53f-7ec2-45b9-bb89-e9247748d0ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "22.00", "lithology_to": "39.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "5ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202615}}, {"model": "wells.lithologydescription", "pk": "4967e4c7-4594-49eb-8104-cb99e18ab6af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE COBBLE WITH SAND LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199290}}, {"model": "wells.lithologydescription", "pk": "4988bb4e-c74a-45ac-b79a-222dce942655", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:45:46Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "285.00", "lithology_to": "290.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK: SOFT FRACTURED ZONE", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER INCREASED TO 7 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197425}}, {"model": "wells.lithologydescription", "pk": "498b8699-dcb3-47c2-b5eb-6d3c931d9f1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "60.00", "lithology_to": "63.00", "lithology_raw_data": "CLAY, GRAVEL MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200098}}, {"model": "wells.lithologydescription", "pk": "49928e71-1086-48fd-a596-f61413ecf955", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:22:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:22:00Z", "activity_submission": null, "well_tag_number": 112679, "lithology_from": "35.00", "lithology_to": "142.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200478}}, {"model": "wells.lithologydescription", "pk": "49ac5298-0408-4bf3-82fc-3e7e1052abd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well_tag_number": 112351, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198179}}, {"model": "wells.lithologydescription", "pk": "49ac5f3d-c930-43d9-b9bf-a7320aca633c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "158.00", "lithology_to": "168.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201424}}, {"model": "wells.lithologydescription", "pk": "49aeeac4-15ad-4a0c-bbff-667f63f1415a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, "well_tag_number": 112838, "lithology_from": "2.00", "lithology_to": "290.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 55'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201407}}, {"model": "wells.lithologydescription", "pk": "49b052c2-71d8-44c3-9761-d23877ada10e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "254.00", "lithology_to": "266.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201778}}, {"model": "wells.lithologydescription", "pk": "49b878bf-b44b-45c6-98ba-b83723b2d65a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well_tag_number": 112509, "lithology_from": "86.00", "lithology_to": "87.00", "lithology_raw_data": "GRAY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199355}}, {"model": "wells.lithologydescription", "pk": "49ecac4b-660d-4df1-8792-b3a668fd9a12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "232.00", "lithology_to": "282.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197856}}, {"model": "wells.lithologydescription", "pk": "49fd007e-d590-4e49-87f7-43c091aa028a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, "well_tag_number": 112303, "lithology_from": "28.00", "lithology_to": "65.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197795}}, {"model": "wells.lithologydescription", "pk": "49fd2ad0-9dcd-43e8-b6bd-d7551022e9a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "210.00", "lithology_to": "219.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199506}}, {"model": "wells.lithologydescription", "pk": "49fe2b2c-de2c-498d-a4e4-62cfd9dd2fd1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "WITH HARD SILTSTONE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "S&P LENSES AT 55'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201485}}, {"model": "wells.lithologydescription", "pk": "4a2c35e1-cbda-4490-a3ae-ed8bd46b657a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "100.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201912}}, {"model": "wells.lithologydescription", "pk": "4a2e49a5-5f7e-46ff-b661-0b79cff5a9c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well_tag_number": 113066, "lithology_from": "1.00", "lithology_to": "7.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202752}}, {"model": "wells.lithologydescription", "pk": "4a3d75be-ec9e-4e13-84b3-906e3dfca9d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "412.00", "lithology_to": "417.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197378}}, {"model": "wells.lithologydescription", "pk": "4a422986-5587-4bf9-ac18-c2fe2a169fc1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198915}}, {"model": "wells.lithologydescription", "pk": "4a4c045b-1a57-4a3f-b816-802f91bd6954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "395.00", "lithology_to": "400.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132539}}, {"model": "wells.lithologydescription", "pk": "4a571ca8-f072-4eef-8b62-5e6297252f98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well_tag_number": 112982, "lithology_from": "60.00", "lithology_to": "65.00", "lithology_raw_data": "FINE GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10-12 WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202362}}, {"model": "wells.lithologydescription", "pk": "4a792899-fabc-4797-8cb2-cedb9714a633", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, "well_tag_number": 112338, "lithology_from": "92.00", "lithology_to": "110.00", "lithology_raw_data": "COARSE GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "YIELD=20+ GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198092}}, {"model": "wells.lithologydescription", "pk": "4a837067-3907-4fe2-bac8-75aafc04c21e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "456.00", "lithology_to": "468.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202846}}, {"model": "wells.lithologydescription", "pk": "4a83ad29-257f-4d79-908c-901bd4a8efd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "60.00", "lithology_to": "90.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199533}}, {"model": "wells.lithologydescription", "pk": "4a84df9b-3af3-4242-b683-1b619f55553b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:10:02Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM; BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/RED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198944}}, {"model": "wells.lithologydescription", "pk": "4a9dd0f8-c665-48b3-8101-8a69832a3c3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": "LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198047}}, {"model": "wells.lithologydescription", "pk": "4aa4cc1d-f6c9-4598-8ef3-9f0b3ba6e47f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL, COARSE, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199280}}, {"model": "wells.lithologydescription", "pk": "4ab7a30a-2242-416f-890e-d167fe70f088", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200394}}, {"model": "wells.lithologydescription", "pk": "4abe58ff-79dc-4f7e-805f-6fa06efa9df9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, "well_tag_number": 112891, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": "SAND, GRAVEL & SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201840}}, {"model": "wells.lithologydescription", "pk": "4accd518-ea91-402f-adab-84daf68f30cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, "well_tag_number": 113289, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dark grey, dense/stiff, dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203982}}, {"model": "wells.lithologydescription", "pk": "4ae21f8e-34b4-4d54-9d31-0a5998c54a8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:04:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:04:38Z", "activity_submission": null, "well_tag_number": 112920, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROKEN ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202020}}, {"model": "wells.lithologydescription", "pk": "4b01cca9-ccbc-4e37-a3d0-0ff8a813243a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "355.00", "lithology_to": "374.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN, WHITE AND GREY; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200602}}, {"model": "wells.lithologydescription", "pk": "4b0c5879-9d2d-4949-a02a-13cf6cec5cdb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well_tag_number": 112401, "lithology_from": "40.00", "lithology_to": "44.00", "lithology_raw_data": "MEDIUM COARSE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198488}}, {"model": "wells.lithologydescription", "pk": "4b243c7c-8b2d-405c-8e1b-c5a0c0fe46c6", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T21:43:18Z", "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:43:18Z", "activity_submission": null, "well_tag_number": 110749, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188533}}, {"model": "wells.lithologydescription", "pk": "4b2dd56b-b916-4120-8b52-cd80ab7c60f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "101.00", "lithology_to": "116.00", "lithology_raw_data": "with sand seams", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198901}}, {"model": "wells.lithologydescription", "pk": "4b33ba67-3f25-4cb5-be1c-c140c9c0ebe6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:29:14Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY, MINOR GRAVEL, SILT", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199736}}, {"model": "wells.lithologydescription", "pk": "4b3526e7-8eb9-43ad-ab93-cd6445cef198", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:58:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, "well_tag_number": 112651, "lithology_from": "83.00", "lithology_to": "114.00", "lithology_raw_data": "SAND AND PEBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200354}}, {"model": "wells.lithologydescription", "pk": "4b3a0116-8902-4378-8b71-ed703d5343ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "8.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203903}}, {"model": "wells.lithologydescription", "pk": "4b3ab5c3-9728-40e8-9513-49655368eeed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "60.00", "lithology_to": "68.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198776}}, {"model": "wells.lithologydescription", "pk": "4b516ed3-7285-41a9-a74f-3f083bae302a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, "well_tag_number": 112236, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "?/RED (B/R) ORGANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197451}}, {"model": "wells.lithologydescription", "pk": "4b574133-0419-433f-9ce4-29a9cac0d7e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:40:19Z", "activity_submission": null, "well_tag_number": 112375, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198333}}, {"model": "wells.lithologydescription", "pk": "4b6f132e-7216-49b1-8f48-d90d810ca1d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, "well_tag_number": 112477, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199119}}, {"model": "wells.lithologydescription", "pk": "4b72e534-bafd-4d5e-9a5d-1fe9fb075c36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "100.00", "lithology_to": "115.00", "lithology_raw_data": "WATER BEARING SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202941}}, {"model": "wells.lithologydescription", "pk": "4b94f6af-ebd7-44eb-b22f-b497786467e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T22:12:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, "well_tag_number": 113247, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "very silty, some clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203800}}, {"model": "wells.lithologydescription", "pk": "4b952872-ec84-4537-8249-765b2a9d3dfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "140.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM/HARD; SHALE WITH BLACK STREAKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ALTERATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200379}}, {"model": "wells.lithologydescription", "pk": "4b98bf13-2ab4-42a7-8fa3-480cd1df6885", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:30:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:30:45Z", "activity_submission": null, "well_tag_number": 112934, "lithology_from": "15.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202077}}, {"model": "wells.lithologydescription", "pk": "4ba6184d-b961-4006-bdc6-a5e6d057359b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well_tag_number": 112357, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198209}}, {"model": "wells.lithologydescription", "pk": "4baaf3f8-9bea-4b45-8878-37823d7e344b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well_tag_number": 112866, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Open bottom well, no screen", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201685}}, {"model": "wells.lithologydescription", "pk": "4bb1483c-c3a6-4c28-885e-c1c61a90f0d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "245.00", "lithology_to": "276.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Fracture @ 275'-276' - 2 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203673}}, {"model": "wells.lithologydescription", "pk": "4bc83245-777e-4381-aaa4-1c5bd491b67d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "150.00", "lithology_to": "155.00", "lithology_raw_data": "WEATHER, BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199274}}, {"model": "wells.lithologydescription", "pk": "4bf1c4b0-532b-4c9d-b0a6-b1fd230ec764", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND-GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198033}}, {"model": "wells.lithologydescription", "pk": "4bff8857-9103-41e8-8076-e48b758e8bf1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "133.00", "lithology_to": "165.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198293}}, {"model": "wells.lithologydescription", "pk": "4c0a50f0-e68d-4c1e-83ca-458e53ea9391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "235.00", "lithology_to": "238.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203660}}, {"model": "wells.lithologydescription", "pk": "4c12b333-a39c-4d5a-8d5c-4afc80b99a54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "55.00", "lithology_to": "61.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199454}}, {"model": "wells.lithologydescription", "pk": "4c1e8c2f-739b-46f3-88db-960c459c96b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "0.00", "lithology_to": "84.60", "lithology_raw_data": "SAND WITH SILTSTONE AND MUDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND VARIED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201017}}, {"model": "wells.lithologydescription", "pk": "4c3916d3-afb9-4a2b-b38f-a7e498ff02f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199301}}, {"model": "wells.lithologydescription", "pk": "4c3e8647-978b-482b-9f71-a742f7b9f398", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well_tag_number": 112272, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197632}}, {"model": "wells.lithologydescription", "pk": "4c4565bc-499b-4526-b0a4-75aa7cbde59d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T22:55:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, "well_tag_number": 113219, "lithology_from": "0.00", "lithology_to": "82.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203706}}, {"model": "wells.lithologydescription", "pk": "4c60423b-4b3c-4393-bb87-3a01b07f7e1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well_tag_number": 112862, "lithology_from": "114.00", "lithology_to": "117.00", "lithology_raw_data": "MEDIUM GRAVEL, COARSE TO FINE SAND WELL SORTED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201652}}, {"model": "wells.lithologydescription", "pk": "4c741f45-e7b7-4cfa-be12-f1de96eb6953", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "31.00", "lithology_to": "33.00", "lithology_raw_data": "COBBLES AND LARGE GRAVEL WITH MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198448}}, {"model": "wells.lithologydescription", "pk": "4c76e1b8-14ac-4f6c-ade1-0b616a6045ca", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:35:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:35:29Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "123.00", "lithology_to": "142.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200121}}, {"model": "wells.lithologydescription", "pk": "4c7bb29e-7e4c-4c7f-8aab-104a2d036507", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:41:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:41:53Z", "activity_submission": null, "well_tag_number": 112917, "lithology_from": "10.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202008}}, {"model": "wells.lithologydescription", "pk": "4c804a3a-97c6-4460-8e33-26f131aa8a42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, "well_tag_number": 112320, "lithology_from": "81.00", "lithology_to": "164.00", "lithology_raw_data": "DARK GREY BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197891}}, {"model": "wells.lithologydescription", "pk": "4c8149f9-02ca-468b-9e6c-91b18ec52f59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "220.00", "lithology_to": "282.00", "lithology_raw_data": "dark grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201239}}, {"model": "wells.lithologydescription", "pk": "4c8cf9e4-730e-449b-ab9e-d358c4ab1cc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "55.00", "lithology_to": "138.00", "lithology_raw_data": "SILT WITH CLAY LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202159}}, {"model": "wells.lithologydescription", "pk": "4ca38c57-f6eb-43de-8284-c0e34ed09de2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201040}}, {"model": "wells.lithologydescription", "pk": "4cacca60-f232-4d44-a882-8975f826c305", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL AND ROCKS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198458}}, {"model": "wells.lithologydescription", "pk": "4cb544c3-1635-4cdd-869a-7a72631b07ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "70.00", "lithology_to": "89.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198940}}, {"model": "wells.lithologydescription", "pk": "4cb84d60-738c-4300-ad48-d93f4c71e89e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "144.00", "lithology_to": "155.00", "lithology_raw_data": "CLAY AND SILT", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198465}}, {"model": "wells.lithologydescription", "pk": "4cb95f49-5317-4930-aa21-ebf2317cabc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "55.00", "lithology_to": "59.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198739}}, {"model": "wells.lithologydescription", "pk": "4cbe0327-23b7-459f-8491-af2d4222e1a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, "well_tag_number": 112720, "lithology_from": "24.00", "lithology_to": "161.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200677}}, {"model": "wells.lithologydescription", "pk": "4cbfe74a-f81d-4c46-9ab7-d1737108c708", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:32:34Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:32:34Z", "activity_submission": null, "well_tag_number": 107072, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "STUMP", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 167274}}, {"model": "wells.lithologydescription", "pk": "4cc65ef8-25d1-4612-8cd6-8e87aabf356c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "22.00", "lithology_to": "33.00", "lithology_raw_data": "SHALE & SILTSTONE, YELLOW & BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201618}}, {"model": "wells.lithologydescription", "pk": "4cd86f5c-6dd7-4b55-b5f8-07da5fdf7093", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:11:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, "well_tag_number": 113203, "lithology_from": "95.00", "lithology_to": "155.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203579}}, {"model": "wells.lithologydescription", "pk": "4ce6970a-4696-4c38-981a-e9f64df8fbc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "37.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, ROCKS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199366}}, {"model": "wells.lithologydescription", "pk": "4ce8e8a0-68b6-42d3-9a1e-c932c48be06a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201574}}, {"model": "wells.lithologydescription", "pk": "4cf0ad65-3310-413b-a114-954b6846fccb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, "well_tag_number": 112417, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198595}}, {"model": "wells.lithologydescription", "pk": "4cf10e94-55f8-4600-a30e-d02460bec55d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "431.00", "lithology_to": "520.00", "lithology_raw_data": "SILTSTONE (FINE TO COARSE)", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198006}}, {"model": "wells.lithologydescription", "pk": "4cfeefc3-7148-4591-84b4-de8792c9f728", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T19:13:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, "well_tag_number": 112836, "lithology_from": "0.00", "lithology_to": "42.00", "lithology_raw_data": "silty sand, cobbles", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201399}}, {"model": "wells.lithologydescription", "pk": "4d0e9c82-a5d7-441c-8cdd-9535e886e6ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:38:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, "well_tag_number": 112366, "lithology_from": "60.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/PINK, GRANITE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198269}}, {"model": "wells.lithologydescription", "pk": "4d0f259d-b6ca-436c-b72d-0116cea44b29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well_tag_number": 112705, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200583}}, {"model": "wells.lithologydescription", "pk": "4d16f08a-d819-42fe-8e7f-f8c86711d412", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well_tag_number": 112819, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201268}}, {"model": "wells.lithologydescription", "pk": "4d1ed913-3b80-44cb-b0de-50162aac0217", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "110.00", "lithology_to": "130.00", "lithology_raw_data": "BIT CLEANER WITH LESS CLAY, MOST SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200843}}, {"model": "wells.lithologydescription", "pk": "4d2891aa-8803-4faf-87b6-008968c5d2da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "156.00", "lithology_to": "161.00", "lithology_raw_data": "and silts", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198263}}, {"model": "wells.lithologydescription", "pk": "4d31147d-7aaf-4068-88ca-7290a4b7ce71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, "well_tag_number": 112305, "lithology_from": "92.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197807}}, {"model": "wells.lithologydescription", "pk": "4d3a8ae3-7032-45d4-84a1-3cf737b4a14a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, "well_tag_number": 112385, "lithology_from": "400.00", "lithology_to": "450.00", "lithology_raw_data": "NO CHANGE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DEVELOPMENT OF WELL - WATER INCREASED FROM 5 GPM TO 8 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198403}}, {"model": "wells.lithologydescription", "pk": "4d3c5bc5-8cfd-4860-8e09-38509945e762", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "Medium Grey Sand & Clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202457}}, {"model": "wells.lithologydescription", "pk": "4d4a76c8-72f8-4a5c-8257-e8bc69baa824", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "482.00", "lithology_to": "503.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202849}}, {"model": "wells.lithologydescription", "pk": "4d6ac6e7-26b9-4699-b903-02e9c22b2190", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:29:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, "well_tag_number": 112896, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201868}}, {"model": "wells.lithologydescription", "pk": "4d80bc51-af82-4147-95dd-df8e89640564", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well_tag_number": 113066, "lithology_from": "58.00", "lithology_to": "121.00", "lithology_raw_data": "SAND AND GRAVEL, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202755}}, {"model": "wells.lithologydescription", "pk": "4d899116-5ef2-429e-91b3-aa4db01719a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "136.00", "lithology_to": "137.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143925}}, {"model": "wells.lithologydescription", "pk": "4d997c42-3234-4502-8c6f-849b8a1838cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "380.00", "lithology_to": "400.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203615}}, {"model": "wells.lithologydescription", "pk": "4da953f2-1917-44ce-b921-4e9fa4866007", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "485.00", "lithology_to": "495.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201507}}, {"model": "wells.lithologydescription", "pk": "4db07f5d-ceb2-4762-9bf0-9f4295402193", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "190.00", "lithology_to": "250.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREY, VOLCANIC SEAMS OR RED BURNT METAMORPHIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198097}}, {"model": "wells.lithologydescription", "pk": "4dbef04b-a0ca-4eb8-a260-24abeaddbabe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "55.00", "lithology_to": "129.00", "lithology_raw_data": "till", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203650}}, {"model": "wells.lithologydescription", "pk": "4dc8fb61-c572-48b9-aeb1-d7d6c336247d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "23.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1 iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199444}}, {"model": "wells.lithologydescription", "pk": "4dd8c7a7-16e5-4e8e-80c0-f4a2a080cbe9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198976}}, {"model": "wells.lithologydescription", "pk": "4ddc3110-cecd-4953-91b7-e47190ae82bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "7.00", "lithology_to": "14.00", "lithology_raw_data": "SOFT+, HARD; COBBLES, GRAVELS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, BROWN; COMPACT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199825}}, {"model": "wells.lithologydescription", "pk": "4dfac0d9-ac1d-4441-8517-079cdd3e10ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:59:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, "well_tag_number": 112930, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TILL GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202067}}, {"model": "wells.lithologydescription", "pk": "4dfbe80e-0be4-4be2-a8b9-d37e97def6ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL, GRAY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202106}}, {"model": "wells.lithologydescription", "pk": "4e14d92b-6055-4c06-aa80-46ad174dea0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "300.00", "lithology_to": "531.50", "lithology_raw_data": "NO LITHOLOGIC DETAILS AVAILABLE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202953}}, {"model": "wells.lithologydescription", "pk": "4e161f4e-e73f-4eb9-bb62-8bb6ced7a939", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "FINE, SILTY SAND, SOME STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201309}}, {"model": "wells.lithologydescription", "pk": "4e1b0504-0697-4c1f-bf30-4ebee73725dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "48.00", "lithology_to": "52.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED; SILTY WASH*", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200848}}, {"model": "wells.lithologydescription", "pk": "4e21284c-b5c7-4256-8203-e35ddba8b879", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "122.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE AND SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199482}}, {"model": "wells.lithologydescription", "pk": "4e2b5761-a90b-4ee6-8eeb-c7d6d0a75e36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "45.00", "lithology_to": "52.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201864}}, {"model": "wells.lithologydescription", "pk": "4e2bb3d2-039d-4161-be48-f0facb8addbb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "268.00", "lithology_to": "275.00", "lithology_raw_data": "SILTY CLAY WITH BROWN SAND STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202386}}, {"model": "wells.lithologydescription", "pk": "4e31f770-37d1-4454-a7e9-4f7630945f3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, "well_tag_number": 112285, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "VOLCANIC, SOME ASH", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197710}}, {"model": "wells.lithologydescription", "pk": "4e374809-82ca-4b62-9dba-375bb4b7e08c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, "well_tag_number": 112588, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "ORGANICS TO BROKEN BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/BLUE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199905}}, {"model": "wells.lithologydescription", "pk": "4e3cfa2e-1a1d-415d-98d4-2c19b83d80a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:51:38Z", "activity_submission": null, "well_tag_number": 112911, "lithology_from": "47.00", "lithology_to": "70.00", "lithology_raw_data": "MEDIUM COARSE SAND, TRACES OF COARSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RELATIVE HARDNESS: MEDIUM SOFT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201946}}, {"model": "wells.lithologydescription", "pk": "4e3d1a81-d5a8-4d1a-8ea3-4ef26e9b2e30", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "92.00", "lithology_to": "159.00", "lithology_raw_data": "WITH SAND LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202206}}, {"model": "wells.lithologydescription", "pk": "4e3e9d90-c4ae-4d73-8038-826c5d6752ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, "well_tag_number": 112682, "lithology_from": "81.00", "lithology_to": "88.00", "lithology_raw_data": "GRAVEL, SOME CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200493}}, {"model": "wells.lithologydescription", "pk": "4e3f5b38-e3dc-4977-bb91-1eed3d73346c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, "well_tag_number": 112338, "lithology_from": "62.00", "lithology_to": "92.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "YIELD=5+ GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198091}}, {"model": "wells.lithologydescription", "pk": "4e426b54-7888-4b0e-83eb-32623341567c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "PACKED SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198271}}, {"model": "wells.lithologydescription", "pk": "4e4304f9-7fa8-4a12-8338-ef671582e3ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "SAND, FINE-MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199594}}, {"model": "wells.lithologydescription", "pk": "4e435372-e89b-433f-9676-252893651959", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "22.00", "lithology_to": "32.00", "lithology_raw_data": "COARSE SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND BLACK; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200712}}, {"model": "wells.lithologydescription", "pk": "4e4d4a1f-a542-4ff5-b1a7-eba7d52e1b32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "128.00", "lithology_to": "130.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201968}}, {"model": "wells.lithologydescription", "pk": "4e4ddf1d-684d-4c06-bbf1-c06ed8d2cf4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "LOOSE, DARK GRAY, FINE TO COARSE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201174}}, {"model": "wells.lithologydescription", "pk": "4e5c5af2-2d2a-4b59-bd5d-ba278a302dba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "70.00", "lithology_to": "72.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203643}}, {"model": "wells.lithologydescription", "pk": "4e5e7fa2-380a-45cf-a3f9-99c82ca09492", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "442.00", "lithology_to": "448.00", "lithology_raw_data": "SS fine", "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203410}}, {"model": "wells.lithologydescription", "pk": "4e61d4d1-2347-4fd9-9bfe-00493ef3fcf1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:44:29Z", "activity_submission": null, "well_tag_number": 113146, "lithology_from": "518.00", "lithology_to": "530.00", "lithology_raw_data": "BLACK glaciated crushed gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203276}}, {"model": "wells.lithologydescription", "pk": "4e6250bf-a337-4a48-ad79-2ed4edf41d82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "182.00", "lithology_to": "205.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201875}}, {"model": "wells.lithologydescription", "pk": "4e6be8c2-076e-4876-8259-73a582f08980", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:02:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, "well_tag_number": 112839, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201409}}, {"model": "wells.lithologydescription", "pk": "4e7267f8-af02-4a5e-8844-e68ece203350", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well_tag_number": 113173, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "gravel, clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203420}}, {"model": "wells.lithologydescription", "pk": "4e7acf4b-1b92-461c-a6f1-f36d9a4b3ba0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "266.00", "lithology_to": "272.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201779}}, {"model": "wells.lithologydescription", "pk": "4e7c6d88-8b9a-4fc0-8161-8231f7685f27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "453.00", "lithology_to": "465.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201504}}, {"model": "wells.lithologydescription", "pk": "4e8e2935-6211-454b-a8e6-0b1346f5957e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "206.00", "lithology_to": "208.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201428}}, {"model": "wells.lithologydescription", "pk": "4e906991-44a1-41f5-9014-84aad314d971", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:24:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, "well_tag_number": 112901, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201893}}, {"model": "wells.lithologydescription", "pk": "4ea7bac3-4657-4c1d-a394-e019ac6ce95f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-20T16:41:01Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199313}}, {"model": "wells.lithologydescription", "pk": "4ed226e3-f07a-4986-8e47-70a460bd60cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197480}}, {"model": "wells.lithologydescription", "pk": "4edf83a4-29c2-4980-9577-115cbebc81fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SAWDUST WITH SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200643}}, {"model": "wells.lithologydescription", "pk": "4eeb301f-0db2-47ae-84ec-c6521270b150", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, "well_tag_number": 112902, "lithology_from": "77.00", "lithology_to": "92.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5 - 10 GPM @ 85'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201900}}, {"model": "wells.lithologydescription", "pk": "4ef483fe-d749-4a91-a4cc-619008e212a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "495.00", "lithology_to": "497.00", "lithology_raw_data": "FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "11.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "HIGH IRON", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200419}}, {"model": "wells.lithologydescription", "pk": "4ef7b1ea-1c84-42c4-a290-161c2f617da4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "70.00", "lithology_to": "74.00", "lithology_raw_data": "SHALE AND BENTONITIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199493}}, {"model": "wells.lithologydescription", "pk": "4f01d34b-26e7-4cc7-bbdb-83f380cf42af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199105}}, {"model": "wells.lithologydescription", "pk": "4f0db5e6-969d-446f-ad8a-a3f56ebac02e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "60.00", "lithology_to": "60.50", "lithology_raw_data": "DAMP CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201736}}, {"model": "wells.lithologydescription", "pk": "4f1c2097-a877-4061-9e82-3ffdc208ef4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:15:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, "well_tag_number": 112953, "lithology_from": "39.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202167}}, {"model": "wells.lithologydescription", "pk": "4f28b3ec-41fc-403b-b742-a239ff630c72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "42.00", "lithology_to": "136.00", "lithology_raw_data": "SILT AND CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198472}}, {"model": "wells.lithologydescription", "pk": "4f2db051-39d7-4cb2-a35f-3c9c276dfd77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-03T17:54:01Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "93.00", "lithology_to": "99.50", "lithology_raw_data": "MEDIUM LOOSE; SAND AND GRAVEL WITH FINE SAND LESS CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; CLEANER; WELL SORTED SOME CLAY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200852}}, {"model": "wells.lithologydescription", "pk": "4f39873c-df87-4b5b-a6e2-b04728cb9e16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well_tag_number": 112628, "lithology_from": "135.00", "lithology_to": "142.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200283}}, {"model": "wells.lithologydescription", "pk": "4f3cf645-52c4-4167-ae8b-75782820642e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "890.00", "lithology_to": "1020.00", "lithology_raw_data": "heavily fractured", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203069}}, {"model": "wells.lithologydescription", "pk": "4f49a754-94e1-4a15-9b7e-cb9f4b19a229", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "51", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202980}}, {"model": "wells.lithologydescription", "pk": "4f4ba1b0-b593-479d-af00-c2117e3fc067", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "330.00", "lithology_to": "351.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198087}}, {"model": "wells.lithologydescription", "pk": "4f5c45a5-2f91-4053-942c-e85e59efbd42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "31.00", "lithology_to": "52.00", "lithology_raw_data": "FINE AND SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200701}}, {"model": "wells.lithologydescription", "pk": "4f61787f-2a68-4e7e-b06d-35f2754a2b26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203192}}, {"model": "wells.lithologydescription", "pk": "4f764479-a472-4abd-9bb1-67ff01140a54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well_tag_number": 113082, "lithology_from": "10.00", "lithology_to": "46.00", "lithology_raw_data": "clay, sand, gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202893}}, {"model": "wells.lithologydescription", "pk": "4f825b9a-53ce-4b61-8daa-fd5e79435b04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, "well_tag_number": 112228, "lithology_from": "1.00", "lithology_to": "60.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197407}}, {"model": "wells.lithologydescription", "pk": "4fb2ca7c-914b-4f56-82e5-45d9f4fa059a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "202.00", "lithology_to": "212.00", "lithology_raw_data": "SHALE / SANSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199486}}, {"model": "wells.lithologydescription", "pk": "4fbeb808-31ca-47ee-96a0-fc43df46b482", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-11-30T07:25:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, "well_tag_number": 112152, "lithology_from": "49.00", "lithology_to": "58.00", "lithology_raw_data": "COBBLES, BOULDERS, SILT", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 196906}}, {"model": "wells.lithologydescription", "pk": "4fc09991-8fdf-44a8-830d-c4c7048c39eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "18.00", "lithology_to": "22.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203677}}, {"model": "wells.lithologydescription", "pk": "4fc36eea-aebb-43ed-9b35-dd1667ffbd28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well_tag_number": 113143, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Compacted", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203255}}, {"model": "wells.lithologydescription", "pk": "4fe19c40-0775-4882-bca0-5d6ed752ef26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RED/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199109}}, {"model": "wells.lithologydescription", "pk": "4fe77c12-feec-4612-a78a-0b00f8ff6a36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "417.00", "lithology_to": "489.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197379}}, {"model": "wells.lithologydescription", "pk": "4ff2c3ac-0e23-4ed2-841b-c6b4ccb9882f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T20:27:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, "well_tag_number": 112723, "lithology_from": "5.00", "lithology_to": "14.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200696}}, {"model": "wells.lithologydescription", "pk": "50009a90-5c01-478a-b2fd-f42fac6281fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "4.00", "lithology_to": "8.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197589}}, {"model": "wells.lithologydescription", "pk": "5010381e-3fe7-425d-a711-3566a972ada0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well_tag_number": 112701, "lithology_from": "45.00", "lithology_to": "143.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200569}}, {"model": "wells.lithologydescription", "pk": "50121de8-cde3-47b5-88e6-13585f012184", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "167.00", "lithology_to": "169.00", "lithology_raw_data": "SAND-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198054}}, {"model": "wells.lithologydescription", "pk": "50170d60-e957-4c36-b39d-c2163b5d2603", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well_tag_number": 112819, "lithology_from": "24.00", "lithology_to": "34.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "60GPM-med/fine", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201271}}, {"model": "wells.lithologydescription", "pk": "5021ea07-faca-4d3d-9683-402777b81a6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "409.00", "lithology_to": "411.00", "lithology_raw_data": "NO LITHOLOGY SPECIFIED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199765}}, {"model": "wells.lithologydescription", "pk": "50292fac-1504-4ef4-a170-d224899cdac9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well_tag_number": 112308, "lithology_from": "79.00", "lithology_to": "123.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "92'=1GPM; 115'=16 GPM; 123'=45 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197823}}, {"model": "wells.lithologydescription", "pk": "503bc023-35c5-496a-9f12-caab01089d05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "SANDY SOILS WITH GRAVEL & 8 INCH COBBLES TO BROKEN BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199846}}, {"model": "wells.lithologydescription", "pk": "504573cc-ebab-4824-8bb6-7d77b2046541", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-10T18:17:13Z", "activity_submission": null, "well_tag_number": 112766, "lithology_from": "248.00", "lithology_to": "1035.20", "lithology_raw_data": "SILTSTONE/MUDSTONE WITH SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201013}}, {"model": "wells.lithologydescription", "pk": "504f7176-5dbd-45f6-bcb9-19e8946147ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "69.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198832}}, {"model": "wells.lithologydescription", "pk": "50718d0d-acf6-46bf-b2fa-f4891be57c44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143905}}, {"model": "wells.lithologydescription", "pk": "507affca-2e79-4f4c-b292-07aa8fb9ffdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well_tag_number": 113070, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "LARGE GRAVEL AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202785}}, {"model": "wells.lithologydescription", "pk": "5082c15b-dcc3-4f87-a28e-0e5a21138178", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "190.00", "lithology_to": "192.00", "lithology_raw_data": "OTHER SURFICIAL / BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; LIGHT GREY; BOULDER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199595}}, {"model": "wells.lithologydescription", "pk": "50837f19-8f19-409b-b99c-63f864757899", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "7.00", "lithology_to": "15.00", "lithology_raw_data": "FINE MEDIUM, SAND AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198669}}, {"model": "wells.lithologydescription", "pk": "5085de9b-4258-469d-af54-f7e24d7bac00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "OVERLAYING BEDROCK; COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199806}}, {"model": "wells.lithologydescription", "pk": "5087dcdb-e187-4593-94bb-c6627b975eac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "83.00", "lithology_to": "196.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200948}}, {"model": "wells.lithologydescription", "pk": "5089f35d-b2aa-4fa5-9051-5208e972a5bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "16.00", "lithology_to": "18.00", "lithology_raw_data": "SMALL GRAVEL - MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "D", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202533}}, {"model": "wells.lithologydescription", "pk": "508db210-636f-4e37-bf80-877f80678ff6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "4.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202380}}, {"model": "wells.lithologydescription", "pk": "509271d9-bc8a-49ec-9f12-d7bc2f880643", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "SANDSTONE / SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199477}}, {"model": "wells.lithologydescription", "pk": "5099be71-f974-49d0-a9e3-c3bc8474cc72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM-HARD; BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199723}}, {"model": "wells.lithologydescription", "pk": "50aac3a5-01df-4727-b1ef-08abedf3a7ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "122.00", "lithology_to": "143.00", "lithology_raw_data": "SILTY SAND AN SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202249}}, {"model": "wells.lithologydescription", "pk": "50ac93af-f058-4a60-b9ac-e04c2bf7b771", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "40.00", "lithology_to": "70.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198939}}, {"model": "wells.lithologydescription", "pk": "50b4f6bb-bf56-48ff-8f89-c065e7e1956f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/SOFT; CLAY ANGULAR GRAVEL SEAMS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199269}}, {"model": "wells.lithologydescription", "pk": "50c7abee-e57a-4e3b-84cf-06b57f9fc679", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:32Z", "activity_submission": null, "well_tag_number": 113305, "lithology_from": "10.00", "lithology_to": "82.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204058}}, {"model": "wells.lithologydescription", "pk": "50c9ab09-1fe8-4cd0-9833-b67d75632010", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "168.00", "lithology_to": "180.00", "lithology_raw_data": "FINE, SANDY SILT & SILT, SOME CLAY, TRACE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200986}}, {"model": "wells.lithologydescription", "pk": "50dcadb0-d56f-4eeb-a60b-286faa4f2708", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "10.00", "lithology_to": "32.00", "lithology_raw_data": "SMALL ROCKS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HARDPAN; HARDNESS=S+; COLOUR=BROWN, GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199815}}, {"model": "wells.lithologydescription", "pk": "50ea5720-f2e5-4c43-8256-30bf663bcb81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, "well_tag_number": 112946, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202133}}, {"model": "wells.lithologydescription", "pk": "510575fb-faae-41a0-86e4-6e4bad3928a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "485.00", "lithology_to": "590.00", "lithology_raw_data": "HARD BLUE VOLCANIC", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197398}}, {"model": "wells.lithologydescription", "pk": "511550f3-7357-42ec-aac4-00a4db3a22aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well_tag_number": 113180, "lithology_from": "35.00", "lithology_to": "95.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203448}}, {"model": "wells.lithologydescription", "pk": "511b4b84-f6e2-4188-954c-81f066422e1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "broken rock", "lithology_description": "27", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203902}}, {"model": "wells.lithologydescription", "pk": "511c2d51-c1f3-41b2-a7aa-ce173ed62cfa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": "GREEN/BROWN GRAVEL ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197983}}, {"model": "wells.lithologydescription", "pk": "512c63ec-ce62-4195-8782-c05bb0812d78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "216.00", "lithology_to": "234.00", "lithology_raw_data": "W.B. COARSE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202691}}, {"model": "wells.lithologydescription", "pk": "512f9ab9-18ca-47cf-8fa0-2f4c66f185cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "127.00", "lithology_to": "205.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203196}}, {"model": "wells.lithologydescription", "pk": "51339d4b-e7cd-4e94-a41e-90fa647e414a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200391}}, {"model": "wells.lithologydescription", "pk": "51398f2a-79f9-4ed9-8189-81fdb6da2f3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "431.00", "lithology_to": "437.00", "lithology_raw_data": "FRIABLE", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201501}}, {"model": "wells.lithologydescription", "pk": "513a9603-29b4-4fd0-871d-9d2aa2801dea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "251.00", "lithology_to": "300.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200440}}, {"model": "wells.lithologydescription", "pk": "5155f97b-831b-4c2d-a280-4d58ef5b26cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-08T16:46:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, "well_tag_number": 113174, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203425}}, {"model": "wells.lithologydescription", "pk": "51665afb-b388-43dd-b69d-88e6c904826c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "442.00", "lithology_to": "453.00", "lithology_raw_data": "SANDSTONE FINE WITH SHALE & SILTSTONE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201503}}, {"model": "wells.lithologydescription", "pk": "51678b35-ee14-4fb4-9481-8d24104a4ecf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, "well_tag_number": 112608, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200049}}, {"model": "wells.lithologydescription", "pk": "516a83a4-cac6-4151-b146-78e14a30ab61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "114.00", "lithology_to": "119.00", "lithology_raw_data": "BEDROCK, FLAKES OF MICA", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201833}}, {"model": "wells.lithologydescription", "pk": "5174ff2d-c843-422f-a2e0-38df835ff61e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "453.00", "lithology_to": "477.00", "lithology_raw_data": "BROWN, MEDIUM SAND, WATER BEARING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199767}}, {"model": "wells.lithologydescription", "pk": "5177c480-62c3-426a-b8a4-b47a3232ae18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "151.00", "lithology_to": "168.00", "lithology_raw_data": "till", "lithology_description": "48", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Gravelly", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203227}}, {"model": "wells.lithologydescription", "pk": "51868534-9557-4d39-bf82-bb519c90b175", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "185.00", "lithology_to": "190.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203082}}, {"model": "wells.lithologydescription", "pk": "518c3b6d-933b-4e11-8495-ea8b4a3ab8a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "37.00", "lithology_to": "38.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199036}}, {"model": "wells.lithologydescription", "pk": "51a29b78-d2b5-4f49-9033-4770b786c8ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "47.00", "lithology_to": "52.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201388}}, {"model": "wells.lithologydescription", "pk": "51a6e576-83df-44dd-975b-8ba08a00740d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "22.00", "lithology_to": "45.00", "lithology_raw_data": "HARD CLAY WITH SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202157}}, {"model": "wells.lithologydescription", "pk": "51afd262-e1cf-4ebd-b3c6-a9483be75b62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "357.00", "lithology_to": "360.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199042}}, {"model": "wells.lithologydescription", "pk": "51b4b53f-a02f-47e3-aebc-c44c7f99ecb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198283}}, {"model": "wells.lithologydescription", "pk": "51bf9679-916c-44fa-8c1d-372ba3597a77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203478}}, {"model": "wells.lithologydescription", "pk": "51c8163c-5ec2-459c-9202-92af65f9bd38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "37.00", "lithology_to": "107.00", "lithology_raw_data": "VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199817}}, {"model": "wells.lithologydescription", "pk": "51cd2a80-32aa-495c-86fc-dfc940d126f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "195.00", "lithology_to": "218.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Stony", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203657}}, {"model": "wells.lithologydescription", "pk": "51d15ea6-34bf-42bc-af54-fba4aa208573", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BOULDER AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199953}}, {"model": "wells.lithologydescription", "pk": "51d98f9f-c411-42ad-94e2-5de52ebc2819", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "154.00", "lithology_to": "156.00", "lithology_raw_data": "CLAY WITH SMALL SAND SEAMS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201045}}, {"model": "wells.lithologydescription", "pk": "51de9de4-6ea3-4e5e-bca7-8b5db62ca059", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, "well_tag_number": 113285, "lithology_from": "75.00", "lithology_to": "92.00", "lithology_raw_data": "MEDIUM TO COARSE SAND WITH SMALL BOULDERS WATER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203972}}, {"model": "wells.lithologydescription", "pk": "51ecdbb2-fb89-4ff4-a4f6-a5f7d372ea2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well_tag_number": 113134, "lithology_from": "64.00", "lithology_to": "71.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203187}}, {"model": "wells.lithologydescription", "pk": "51fa385a-631a-4c30-9bb7-95c087bb406b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:46:55Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "48.00", "lithology_to": "63.00", "lithology_raw_data": "TIGHT; DRY CLAY AND GRAVEL TILL WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200598}}, {"model": "wells.lithologydescription", "pk": "51fba2e4-0d60-4769-80d5-639e8e0f47b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, "well_tag_number": 112551, "lithology_from": "230.00", "lithology_to": "235.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199666}}, {"model": "wells.lithologydescription", "pk": "52049933-2fc4-40d2-9ba0-045a6b56cec2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "87.00", "lithology_to": "90.00", "lithology_raw_data": "MEDIUM GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200913}}, {"model": "wells.lithologydescription", "pk": "52111542-bfaa-4a75-93d6-a6f7a0d38cf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well_tag_number": 113188, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "and boulders", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203494}}, {"model": "wells.lithologydescription", "pk": "5211d902-a10b-4204-b4f9-097dcbb427fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "37.00", "lithology_to": "112.00", "lithology_raw_data": "DRY SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202695}}, {"model": "wells.lithologydescription", "pk": "5218dac5-1e15-4400-a9c9-3cb02c9d30e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202223}}, {"model": "wells.lithologydescription", "pk": "521fdaf1-7f2d-4587-82eb-b48702f46a87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "40.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202274}}, {"model": "wells.lithologydescription", "pk": "5229506e-8a16-4bbc-a46a-d5fb2e717974", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198921}}, {"model": "wells.lithologydescription", "pk": "52447b44-1ea0-4529-87fa-89417fe0b2d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:45:50Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "29.00", "lithology_to": "48.00", "lithology_raw_data": "TIGHT; SANDY CLAY AND GRAVEL TILL WITH COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY; MOIST TO WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200597}}, {"model": "wells.lithologydescription", "pk": "5253f655-ac89-4416-9acf-6dcec3a69291", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198252}}, {"model": "wells.lithologydescription", "pk": "5258fa05-6e1f-4d35-b9cd-fe76f788531a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "143.00", "lithology_to": "220.00", "lithology_raw_data": "grey/green, trace white", "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201238}}, {"model": "wells.lithologydescription", "pk": "5260a9b5-34c8-467a-a81b-fe033acf6e04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202679}}, {"model": "wells.lithologydescription", "pk": "5269f030-b8fe-450d-a9ad-028545a8122f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "290.00", "lithology_to": "296.00", "lithology_raw_data": "GRAVELLY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205648}}, {"model": "wells.lithologydescription", "pk": "5273492c-5122-4544-bd1c-f63d8e9390d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "272.00", "lithology_to": "350.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201780}}, {"model": "wells.lithologydescription", "pk": "5278c731-1e8e-4341-ae32-e68333f6d8ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, "well_tag_number": 112458, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198960}}, {"model": "wells.lithologydescription", "pk": "52820251-d558-4f72-9944-f5f36b21a675", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201575}}, {"model": "wells.lithologydescription", "pk": "52837e1a-5030-41ce-b7a3-805664aae2b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:24:50Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "ANGULAR GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199207}}, {"model": "wells.lithologydescription", "pk": "52955a84-b905-48e0-adc3-2964ebf707ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:42:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:42:35Z", "activity_submission": null, "well_tag_number": 112635, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "organics /till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200301}}, {"model": "wells.lithologydescription", "pk": "529f215d-1118-4421-a6c9-b5dfc95f01cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "38.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "no iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203481}}, {"model": "wells.lithologydescription", "pk": "529fbf17-13e5-4a81-be7e-e565a46a3ba9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "GREY/BROWN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROKEN, WEATHERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197364}}, {"model": "wells.lithologydescription", "pk": "52b36a0e-b7ea-43cd-9275-1d596c92c39b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "42.00", "lithology_to": "90.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199808}}, {"model": "wells.lithologydescription", "pk": "52bac6f3-c63e-4c5b-bda7-ca83a4ec71e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "8.00", "lithology_to": "19.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200039}}, {"model": "wells.lithologydescription", "pk": "52bb38c8-c165-432b-8dc4-e8a39fb8b52d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204034}}, {"model": "wells.lithologydescription", "pk": "52cdae71-d94d-4bef-8465-a2badeadc883", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "5.00", "lithology_to": "15.00", "lithology_raw_data": "CLAY AND GRAVEL TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200683}}, {"model": "wells.lithologydescription", "pk": "52cff20e-bda5-4599-b492-0db86cc5c4b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197662}}, {"model": "wells.lithologydescription", "pk": "52d432e3-c07a-42db-8e9f-48893feb3521", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "187.00", "lithology_to": "205.00", "lithology_raw_data": "VERY DENSE CLAY WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200671}}, {"model": "wells.lithologydescription", "pk": "52d71b1c-d97d-49c8-850a-9dd47c1bd9ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "wood", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201355}}, {"model": "wells.lithologydescription", "pk": "52ddcf7f-dbd6-4fa1-9019-4f701d9c577b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "8.00", "lithology_to": "17.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202177}}, {"model": "wells.lithologydescription", "pk": "52e1f0ea-78da-40f3-92e6-f11538ab9a10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198661}}, {"model": "wells.lithologydescription", "pk": "52e74abc-863c-4da3-8b56-d8703ee137b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "209.00", "lithology_to": "211.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201437}}, {"model": "wells.lithologydescription", "pk": "52ea0c7e-6d58-4e44-99dc-e311552c7865", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "69.00", "lithology_to": "73.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200935}}, {"model": "wells.lithologydescription", "pk": "52f33a2e-72ad-4819-9bc6-6431b7fcac1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": "sand, med coarse", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203477}}, {"model": "wells.lithologydescription", "pk": "52f8fa81-51e9-47b7-9400-9431158492dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, "well_tag_number": 112329, "lithology_from": "360.00", "lithology_to": "400.00", "lithology_raw_data": "SAND AND ROCKS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197969}}, {"model": "wells.lithologydescription", "pk": "5310a43c-4c25-4e61-b790-d95fd0cbb176", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202693}}, {"model": "wells.lithologydescription", "pk": "531c9d65-3303-427b-8fac-97ac205ff25b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:07Z", "activity_submission": null, "well_tag_number": 112892, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201843}}, {"model": "wells.lithologydescription", "pk": "5324c978-236f-4cbe-bd41-8d4b7bbc90be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "18.00", "lithology_to": "44.00", "lithology_raw_data": "Hard clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203597}}, {"model": "wells.lithologydescription", "pk": "5337ff4e-0274-4524-b00b-e2ee0e7a1c00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, "well_tag_number": 105508, "lithology_from": "64.00", "lithology_to": "96.00", "lithology_raw_data": "SAND FNE-MED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY WET WET-87'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159717}}, {"model": "wells.lithologydescription", "pk": "53395ce1-eb56-4310-81a4-dbac83f387da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "1120.00", "lithology_to": "1280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203071}}, {"model": "wells.lithologydescription", "pk": "5339f2e8-eed6-4dbd-9bbd-df5c38cb2107", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "51.00", "lithology_to": "94.00", "lithology_raw_data": "with gravel", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203920}}, {"model": "wells.lithologydescription", "pk": "53480e4a-1e75-456d-87ab-336fdab55af8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199439}}, {"model": "wells.lithologydescription", "pk": "5350020a-b823-49fc-bf87-ae39cbe73f0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, "well_tag_number": 113285, "lithology_from": "92.00", "lithology_to": "94.00", "lithology_raw_data": "BOULDERS NO WATER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203973}}, {"model": "wells.lithologydescription", "pk": "536a12d3-6d5c-4cfa-a810-c6c0808467f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "28.00", "lithology_to": "36.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-3", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202253}}, {"model": "wells.lithologydescription", "pk": "53744617-8b14-4e16-9215-2b5e4b40bd63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "100.00", "lithology_to": "112.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132525}}, {"model": "wells.lithologydescription", "pk": "5376e7b8-53e1-4a25-bb23-ff9c3d53b936", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY/TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197933}}, {"model": "wells.lithologydescription", "pk": "537f0157-a335-40c0-89d9-f08dce16a6dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "596.00", "lithology_to": "698.00", "lithology_raw_data": "BLUE/WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ALL WATER COMING BETWEEN 600-700'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201826}}, {"model": "wells.lithologydescription", "pk": "53886f5b-a845-472b-8b24-81199e893d16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "18.00", "lithology_to": "26.00", "lithology_raw_data": "SANDY GRAVEL", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200426}}, {"model": "wells.lithologydescription", "pk": "5396cc29-a9d4-4e7a-92bb-9405bdeab16c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:51:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, "well_tag_number": 112437, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198769}}, {"model": "wells.lithologydescription", "pk": "539a5624-fda3-4204-8a23-25ee127a7a44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199920}}, {"model": "wells.lithologydescription", "pk": "53a48566-2464-4745-a780-c7efd63e42ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "235.00", "lithology_to": "240.00", "lithology_raw_data": "FINE SAND WB", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202985}}, {"model": "wells.lithologydescription", "pk": "53b0b3bf-a97c-49f9-bfc8-0cc7655c73ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "165.00", "lithology_to": "170.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199593}}, {"model": "wells.lithologydescription", "pk": "53cc6cbc-1f5c-4943-97ce-2aaec00694dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "92.00", "lithology_to": "240.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200768}}, {"model": "wells.lithologydescription", "pk": "53d7a673-b931-4ccf-80f8-ce8dca350ea0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "84.00", "lithology_to": "197.00", "lithology_raw_data": "GREEN/GREY VOLCANIC WITH A FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197988}}, {"model": "wells.lithologydescription", "pk": "53e4746c-7a4d-4750-8a75-e0aec7b28705", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:00:48Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:00:48Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "16.00", "lithology_to": "24.00", "lithology_raw_data": "SAND AND GRAVEL, BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172301}}, {"model": "wells.lithologydescription", "pk": "53e7b1c6-c276-4669-b63c-d3617379e7d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, "well_tag_number": 112285, "lithology_from": "55.00", "lithology_to": "75.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197711}}, {"model": "wells.lithologydescription", "pk": "53f7b7df-7f15-46cc-ada0-9bb534cbc368", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": "DRY SILT AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205292}}, {"model": "wells.lithologydescription", "pk": "53fdb93a-60fc-4952-8321-0134f6705b23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "285.00", "lithology_to": "290.00", "lithology_raw_data": "GREY/WHITE SILTSTONE, FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "0.5+ USGPM, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197980}}, {"model": "wells.lithologydescription", "pk": "5412f7d3-0274-4e47-8107-b9f7757d7aba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "875.00", "lithology_to": "877.00", "lithology_raw_data": "with yellow", "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202862}}, {"model": "wells.lithologydescription", "pk": "5418c879-dfc8-4b3f-b5d4-47010e3b49dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "GREEN SHALE WITH QUARTZ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197840}}, {"model": "wells.lithologydescription", "pk": "54301e15-f31b-4e33-b001-31cd186bb153", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "829.00", "lithology_to": "839.00", "lithology_raw_data": "harder formation", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203066}}, {"model": "wells.lithologydescription", "pk": "54318360-5dfa-44c2-b825-172996e5e020", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "560.00", "lithology_to": "600.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "600.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203622}}, {"model": "wells.lithologydescription", "pk": "54368ae2-cc1c-443f-a3de-22c62afbc638", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "450.00", "lithology_to": "465.00", "lithology_raw_data": "FINE TO MEDIUM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "13.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "CLEAN, STATIC 365 BGL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201557}}, {"model": "wells.lithologydescription", "pk": "5443647c-f153-4ea3-9193-35c0b8c2d1a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T18:22:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, "well_tag_number": 112532, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL, SANDY WITH PEBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199527}}, {"model": "wells.lithologydescription", "pk": "545d53c8-6470-4ad4-872f-3c59c6868092", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well_tag_number": 112571, "lithology_from": "7.00", "lithology_to": "55.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199781}}, {"model": "wells.lithologydescription", "pk": "546c5486-2794-4342-aa64-062b763a40c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "100.00", "lithology_to": "152.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199369}}, {"model": "wells.lithologydescription", "pk": "54710aea-10c6-4981-ab3a-08f40d699adb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well_tag_number": 112925, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAVEL & CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202046}}, {"model": "wells.lithologydescription", "pk": "547f3cce-d31f-42ee-9d6b-d1e368b71b1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "287.00", "lithology_to": "289.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "broken (partial LOC)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202832}}, {"model": "wells.lithologydescription", "pk": "54894f4e-357c-4f9a-b444-8410f5aff333", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204041}}, {"model": "wells.lithologydescription", "pk": "549bfedc-1e8a-42d2-b974-e15640ea8167", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "235.00", "lithology_to": "236.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199490}}, {"model": "wells.lithologydescription", "pk": "54a364e8-10a0-4d53-a6da-5d99f054e7a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "770.00", "lithology_to": "792.00", "lithology_raw_data": "GREEN SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201306}}, {"model": "wells.lithologydescription", "pk": "54ac8866-8cd6-4e69-b9e4-c3385f14d6bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T17:33:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, "well_tag_number": 113017, "lithology_from": "16.00", "lithology_to": "125.00", "lithology_raw_data": "shale, flakey", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202513}}, {"model": "wells.lithologydescription", "pk": "54ae70df-0fa7-491d-a3ff-06d53842aeb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "136.00", "lithology_to": "148.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198730}}, {"model": "wells.lithologydescription", "pk": "54d156ef-0486-465b-820b-717ca706ac7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, "well_tag_number": 113205, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203584}}, {"model": "wells.lithologydescription", "pk": "54d74810-493f-4775-9623-17970ac43692", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:13:18Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "GREY/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198986}}, {"model": "wells.lithologydescription", "pk": "54e678d2-b4b6-4c6f-85f1-50a29fd0362b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "110.00", "lithology_to": "119.00", "lithology_raw_data": "SAND & FINE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202309}}, {"model": "wells.lithologydescription", "pk": "54eed83f-a66d-4b8b-b876-e844382f5f5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "29.00", "lithology_to": "47.00", "lithology_raw_data": "and clay", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198813}}, {"model": "wells.lithologydescription", "pk": "54f5cd53-746f-4cb4-b3a5-fb79e688f2dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198016}}, {"model": "wells.lithologydescription", "pk": "54f95211-2ac9-4e84-80e0-6c94136ce6bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202938}}, {"model": "wells.lithologydescription", "pk": "5501cf8b-39a2-4841-a5f3-644e647a914b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well_tag_number": 112743, "lithology_from": "66.00", "lithology_to": "69.00", "lithology_raw_data": "SILT & ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200859}}, {"model": "wells.lithologydescription", "pk": "551ffd52-8e87-4aa8-b8f3-b3db790ebed3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "190.00", "lithology_to": "206.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203669}}, {"model": "wells.lithologydescription", "pk": "5537857f-32e0-41b8-baac-6dad162ced2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, "well_tag_number": 112644, "lithology_from": "15.00", "lithology_to": "85.00", "lithology_raw_data": "granite", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200330}}, {"model": "wells.lithologydescription", "pk": "554356fa-11a3-4a5f-b75b-2fef4345d116", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "RED VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132269}}, {"model": "wells.lithologydescription", "pk": "55436dcb-674b-4da6-8ad8-e7560cbeedee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "167.00", "lithology_to": "260.00", "lithology_raw_data": "Sand, fine grained, trace to some gravel, grey-brown, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Gravel lens, trace sand and silt, damp at 190ft ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203509}}, {"model": "wells.lithologydescription", "pk": "554593f9-5d3d-471f-83b3-ce6043e28474", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": "BEDROCK (DIORITE)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203235}}, {"model": "wells.lithologydescription", "pk": "5559dca2-ccfe-4950-9f53-158e64e8cbd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 145' 16 US gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198224}}, {"model": "wells.lithologydescription", "pk": "55663b62-f27d-48c5-8c49-b1868f215d3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, "well_tag_number": 112477, "lithology_from": "80.00", "lithology_to": "140.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199122}}, {"model": "wells.lithologydescription", "pk": "556d366a-84c0-451f-8bcd-654d7a6b0f5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, "well_tag_number": 112543, "lithology_from": "79.00", "lithology_to": "83.00", "lithology_raw_data": "COMPACT SILTY BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199619}}, {"model": "wells.lithologydescription", "pk": "557a41f7-d1da-4290-9246-a1c70f792ff0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "15.00", "lithology_to": "45.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203077}}, {"model": "wells.lithologydescription", "pk": "557dc938-a92d-4e6b-a27d-4e3cc523fba6", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:26:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:26:45Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "320.00", "lithology_to": "420.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY; DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198820}}, {"model": "wells.lithologydescription", "pk": "557f5d51-a09c-431e-90a5-af56eee7d828", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:00:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, "well_tag_number": 112234, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "ORGANICS WITH LARGE COBBLES", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197442}}, {"model": "wells.lithologydescription", "pk": "5585bb58-7f10-4768-a786-c7c8b4ddc19c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "53.00", "lithology_to": "81.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198899}}, {"model": "wells.lithologydescription", "pk": "558e417f-8667-42db-b72a-3139840f38b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well_tag_number": 112969, "lithology_from": "13.00", "lithology_to": "26.00", "lithology_raw_data": "SAND, GRAVEL, LARGE COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202280}}, {"model": "wells.lithologydescription", "pk": "559fab65-0f1b-48c0-be4e-229edbbcb203", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T19:41:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:41:53Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "182.00", "lithology_to": "184.00", "lithology_raw_data": "VOLCANIC PEBBLES/SILT/SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FLOW=MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198027}}, {"model": "wells.lithologydescription", "pk": "55a06bd8-7147-4c9a-9b72-c87fbc136592", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "SAND WITH SILT LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198780}}, {"model": "wells.lithologydescription", "pk": "55a8f4d1-fb0b-41e6-9ffc-20953348d5f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200019}}, {"model": "wells.lithologydescription", "pk": "55b74925-1ce6-48da-873d-ce5fccb903e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:17:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, "well_tag_number": 112546, "lithology_from": "18.00", "lithology_to": "82.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLE AND CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199637}}, {"model": "wells.lithologydescription", "pk": "55c8253b-d8c5-4e9b-ad4c-3679b1329601", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "7.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATERBEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200656}}, {"model": "wells.lithologydescription", "pk": "55d4051e-6b48-4da4-b910-66f49edecd73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202303}}, {"model": "wells.lithologydescription", "pk": "55d44224-f293-4ef7-8d5e-3c412ee87811", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/HARD; COARSE GRAVEL AND CLAY MINOR", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199957}}, {"model": "wells.lithologydescription", "pk": "55db2328-1d7d-4610-a708-8c2b854a4cee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "1.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203520}}, {"model": "wells.lithologydescription", "pk": "55db25a3-f693-4c86-818a-f9986ed9dc92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "10.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203646}}, {"model": "wells.lithologydescription", "pk": "55dd8e99-8429-469c-88e9-eb3dfdcbcbb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "W.B. SAND AND GRAVEL (GREEN WATER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201464}}, {"model": "wells.lithologydescription", "pk": "55e27590-4a35-424b-b1eb-ac24e062e0d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, "well_tag_number": 113026, "lithology_from": "272.00", "lithology_to": "380.00", "lithology_raw_data": "SANDSTONE MED GREY S&P", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "(SOFT-MED)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202564}}, {"model": "wells.lithologydescription", "pk": "55e87f4e-bb2a-4971-96bb-afc163fe36b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "185.00", "lithology_to": "208.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202040}}, {"model": "wells.lithologydescription", "pk": "55f29714-8641-4b65-9a65-d58b9fb3c44d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-10T17:18:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-10T17:18:11Z", "activity_submission": null, "well_tag_number": 112842, "lithology_from": "0.00", "lithology_to": "83.00", "lithology_raw_data": "blasted spoil", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201429}}, {"model": "wells.lithologydescription", "pk": "55f338b1-f755-4aac-8d05-fb0a71d43d92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOP SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201345}}, {"model": "wells.lithologydescription", "pk": "55ff8b55-6c5b-475c-af94-5fa73a0a886e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "480.00", "lithology_to": "500.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203620}}, {"model": "wells.lithologydescription", "pk": "560ef691-3109-4c2a-8bc2-d1b8b345a890", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:55:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, "well_tag_number": 112980, "lithology_from": "21.00", "lithology_to": null, "lithology_raw_data": "SAND WITH SOME SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "STICKY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202349}}, {"model": "wells.lithologydescription", "pk": "5614d443-1c7d-4339-8678-59294efb8ec9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:14:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, "well_tag_number": 112363, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198241}}, {"model": "wells.lithologydescription", "pk": "56384847-9308-42b2-ae2e-267bc74046df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "72.00", "lithology_to": "95.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198162}}, {"model": "wells.lithologydescription", "pk": "5639c741-8b52-4623-a0a5-e611ba729679", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "68.00", "lithology_to": "112.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203781}}, {"model": "wells.lithologydescription", "pk": "56434fbd-dcac-4fa1-8a3e-3844af60cc4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, "well_tag_number": 112840, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201412}}, {"model": "wells.lithologydescription", "pk": "5647ef9b-3b16-45ad-9656-6f85931e8b88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "410.00", "lithology_to": "460.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SEVERAL FRACTURED AREAS, WATER INCREASED - 5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197438}}, {"model": "wells.lithologydescription", "pk": "5648f767-08d7-4aeb-8b77-3dcda8fc2575", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "162.00", "lithology_to": "167.00", "lithology_raw_data": "LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198053}}, {"model": "wells.lithologydescription", "pk": "56520c4c-6456-432e-a446-f9720fc188d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "FINE SAND & GRAVEL, BROWN/GREY, TRACE OF CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202083}}, {"model": "wells.lithologydescription", "pk": "5654ecf7-f7ad-4b1c-a350-7cf3ca48f003", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "414.00", "lithology_to": "482.00", "lithology_raw_data": "grey", "lithology_description": "46", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201241}}, {"model": "wells.lithologydescription", "pk": "56618432-633d-435f-a25e-857e3b7f66aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "37.00", "lithology_to": "41.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199046}}, {"model": "wells.lithologydescription", "pk": "566a0d4e-dd1c-4adb-91aa-d50d7e6bdd11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "fine to medium", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203533}}, {"model": "wells.lithologydescription", "pk": "56729e0a-95e3-4643-9729-38a35e2cd26a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "2.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183973}}, {"model": "wells.lithologydescription", "pk": "5677cddc-fad0-430f-8a50-f58b750281c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201105}}, {"model": "wells.lithologydescription", "pk": "5682dbc1-e9b9-4b81-adc2-ebabc02dd838", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "Sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203610}}, {"model": "wells.lithologydescription", "pk": "568602f5-e969-407c-873b-a2cfc0a7ccc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, "well_tag_number": 112676, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BRN SAND & GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200472}}, {"model": "wells.lithologydescription", "pk": "5698b5f1-219b-4ce8-82b3-80760ab73921", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "10.00", "lithology_to": "55.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201675}}, {"model": "wells.lithologydescription", "pk": "56a17daf-63de-429d-a288-4daa38c413ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "40.00", "lithology_to": "43.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198600}}, {"model": "wells.lithologydescription", "pk": "56a39de0-79f4-4b59-a76b-b806717dc95b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197555}}, {"model": "wells.lithologydescription", "pk": "56b1b8fb-cde8-4eae-81d4-5a6820767c05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "47.00", "lithology_to": "69.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HARD/MEDIUM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198700}}, {"model": "wells.lithologydescription", "pk": "56b6fb56-8964-4aed-b8e7-ea3110440d97", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:33:57Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:33:57Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "91.00", "lithology_to": "96.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200118}}, {"model": "wells.lithologydescription", "pk": "56c6bd55-e97c-4145-8d87-8d40284b103f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "437.00", "lithology_to": "525.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198782}}, {"model": "wells.lithologydescription", "pk": "56e509ba-b3d9-48de-947b-9c7423c2772d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, "well_tag_number": 112312, "lithology_from": "2.00", "lithology_to": "13.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197843}}, {"model": "wells.lithologydescription", "pk": "56ee2b79-e5fe-45d2-ad13-c315ed776ec7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "38.00", "lithology_to": "75.00", "lithology_raw_data": "sand, till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202962}}, {"model": "wells.lithologydescription", "pk": "5700dac9-a6d7-4b0c-b6f9-65e77c645026", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "231.00", "lithology_to": "245.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200747}}, {"model": "wells.lithologydescription", "pk": "57017c23-40e2-48bc-bbce-18466db56fff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=REDDISH BROWN; MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200668}}, {"model": "wells.lithologydescription", "pk": "5708d885-0320-41fe-95e0-66123787c878", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well_tag_number": 113133, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203178}}, {"model": "wells.lithologydescription", "pk": "570ec124-6b9a-4fa3-bf6c-052b1e5e47ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "230.00", "lithology_to": "260.00", "lithology_raw_data": "ASH", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK/RED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200519}}, {"model": "wells.lithologydescription", "pk": "5715917e-9a0b-4e47-b6d7-f3c15c346981", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN SILTY CLAYS, WASTE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203230}}, {"model": "wells.lithologydescription", "pk": "57179ccd-1264-4310-a3c5-8b103087bbc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "310.00", "lithology_to": "315.00", "lithology_raw_data": "FINE SAND, TRACE OF CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202991}}, {"model": "wells.lithologydescription", "pk": "5718d5a0-ae36-45d6-be8e-d45d1b23da7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "71.00", "lithology_to": "76.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198366}}, {"model": "wells.lithologydescription", "pk": "5719a424-e6f6-4d9c-ad07-e4b072984660", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-26T21:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-26T21:23:57Z", "activity_submission": null, "well_tag_number": 113073, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "GREY GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202793}}, {"model": "wells.lithologydescription", "pk": "571ebe85-d83f-483c-8f10-d76439a640ae", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T19:45:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:45:52Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "232.00", "lithology_to": "235.00", "lithology_raw_data": "CLAY CHUNKS/SILTY/MILKY WHITE CLAY SLURRY", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198032}}, {"model": "wells.lithologydescription", "pk": "57346f59-9b6b-4bfd-9eb8-5446de0df590", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well_tag_number": 113300, "lithology_from": "128.00", "lithology_to": "132.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "black with white boulders", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204030}}, {"model": "wells.lithologydescription", "pk": "573b52b4-3b30-4ca9-acff-745ca6a451fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well_tag_number": 112500, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199306}}, {"model": "wells.lithologydescription", "pk": "573bd52f-bfa9-46cb-a52c-0cbf56ef6a36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "122.00", "lithology_to": "230.00", "lithology_raw_data": "CLAY WITH LAYERS OF TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202762}}, {"model": "wells.lithologydescription", "pk": "57456f76-09e5-40d4-8d54-c00a1492d754", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "194.00", "lithology_to": "208.00", "lithology_raw_data": "SILTY CLAY WITH SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202384}}, {"model": "wells.lithologydescription", "pk": "5747b0d6-ce30-41e0-9015-b881df277722", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "0.00", "lithology_to": "58.00", "lithology_raw_data": "SILT/SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE GRAVEL, BOULDERS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197880}}, {"model": "wells.lithologydescription", "pk": "574b2a86-03fb-486a-8965-299ad5b950be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": "65.00", "lithology_to": "165.00", "lithology_raw_data": null, "lithology_description": "42", "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water Source", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198222}}, {"model": "wells.lithologydescription", "pk": "57582e02-79fe-4904-9595-b80517ffac57", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "15.00", "lithology_to": "28.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197663}}, {"model": "wells.lithologydescription", "pk": "575e63fd-ee66-4bcf-a084-f12055d2299b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "15.49", "lithology_to": "29.99", "lithology_raw_data": "ML - SILT, THINLY BEDDED WITH CLAY, FIRM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWNISH GREY; MOTTLED; MOIST; THINLY BEDDED WITH FINE GRAINED SAND, BROWNISH-GREY@4.88M BGS; INCREASE IN SAND CONTENT@6.86M BGS; INCREASE IN CLAY CONTENT@7.62 BGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201071}}, {"model": "wells.lithologydescription", "pk": "576052e0-d36f-4112-812b-f7127ab6c7ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, "well_tag_number": 112899, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201886}}, {"model": "wells.lithologydescription", "pk": "576606b7-8005-4611-a227-14f67c44c703", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197615}}, {"model": "wells.lithologydescription", "pk": "576616fb-5ab8-4197-a3ee-af530b0c5998", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "11.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198282}}, {"model": "wells.lithologydescription", "pk": "576c467f-d076-45b5-bcc8-e48c22404039", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198972}}, {"model": "wells.lithologydescription", "pk": "57776b32-cebf-45ba-9e16-d6194e9e0c0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:59:38Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:53:58Z", "activity_submission": null, "well_tag_number": 112912, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "COARSE GRAVEL & COARSE SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RELATIVE HARDNESS: MEDIUM HARD. COLOUR: BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201947}}, {"model": "wells.lithologydescription", "pk": "5779f569-184e-42de-8ce4-2891e351fa3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "0.00", "lithology_to": "69.00", "lithology_raw_data": "BROWN-GREY, FINE SAND/GRAVEL LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198056}}, {"model": "wells.lithologydescription", "pk": "577a3cd9-f296-4c16-a9eb-c6f2443875a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "415.00", "lithology_to": "450.00", "lithology_raw_data": "DENSE/STIFF; CLAY, CONGLOMERATE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199605}}, {"model": "wells.lithologydescription", "pk": "5781345f-7d5d-4345-b560-755320974e52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, "well_tag_number": 112706, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200585}}, {"model": "wells.lithologydescription", "pk": "5781a21d-b765-4fb2-803e-0876128ab0b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "76.00", "lithology_to": "596.00", "lithology_raw_data": "ORANGE/BLUE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201825}}, {"model": "wells.lithologydescription", "pk": "5795b129-96da-4a10-95c4-fc7375100049", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:10:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, "well_tag_number": 112356, "lithology_from": "0.00", "lithology_to": "42.00", "lithology_raw_data": "silt/till/clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198206}}, {"model": "wells.lithologydescription", "pk": "579b0ce4-3765-4454-8690-a5107bd7c5df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well_tag_number": 112238, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "33'=FRACTURE, NO WATER; 45'-50'= FRACTURE, NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197467}}, {"model": "wells.lithologydescription", "pk": "57a4a249-cc27-4b42-b71d-a09a7c50e83c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "391.00", "lithology_to": "425.00", "lithology_raw_data": "MEDIUM SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198004}}, {"model": "wells.lithologydescription", "pk": "57a7290e-a48a-402b-b485-d41fd9302252", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well_tag_number": 112898, "lithology_from": "83.00", "lithology_to": "136.00", "lithology_raw_data": "COARSE GRAVEL, SAND & SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "6 - 10 GPM @ 125'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201884}}, {"model": "wells.lithologydescription", "pk": "57b60801-7d09-4d49-9b6b-5a6f29e496f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well_tag_number": 113066, "lithology_from": "7.00", "lithology_to": "18.00", "lithology_raw_data": "DRY GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202753}}, {"model": "wells.lithologydescription", "pk": "57c6917f-848a-4830-bdec-2d5f48fc3678", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "16.00", "lithology_to": "75.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, dark grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204014}}, {"model": "wells.lithologydescription", "pk": "57e7c205-87ba-44bb-8b8b-0107e8ad494d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:36:09Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "275.00", "lithology_to": "410.00", "lithology_raw_data": "Black grey sticky shale soft", "lithology_description": "68", "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203383}}, {"model": "wells.lithologydescription", "pk": "57ea8b6a-93ad-44bc-bf9d-22ca62623818", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:37:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, "well_tag_number": 113243, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "very silty, compact", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203788}}, {"model": "wells.lithologydescription", "pk": "57ebe333-0195-4cbf-a953-81951098708c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, "well_tag_number": 112753, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "DIRT AND BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200918}}, {"model": "wells.lithologydescription", "pk": "57f31b40-4802-4e60-b2fe-ea5fdfaa94a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "17.00", "lithology_to": "32.00", "lithology_raw_data": "cobbley", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199713}}, {"model": "wells.lithologydescription", "pk": "57fa1eb3-ba53-4aa7-82ca-e5b5db177355", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, "well_tag_number": 113092, "lithology_from": "17.00", "lithology_to": "48.00", "lithology_raw_data": "sandy", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202934}}, {"model": "wells.lithologydescription", "pk": "58011a61-0822-4454-9e3a-7b8907ea52b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198346}}, {"model": "wells.lithologydescription", "pk": "58030af0-3eb3-45aa-95de-35c0da9dd717", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, "well_tag_number": 112565, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "LAYERS BASALT & CEMENTED GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=RED/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199754}}, {"model": "wells.lithologydescription", "pk": "58044a86-88d9-46d9-825e-8830f30b7db6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "40.00", "lithology_to": "52.00", "lithology_raw_data": "GLACIAL TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199079}}, {"model": "wells.lithologydescription", "pk": "580531bb-2032-4fb8-ae73-714c9572ae9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:09:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, "well_tag_number": 112462, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "gravel with wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198987}}, {"model": "wells.lithologydescription", "pk": "581db503-1eff-4303-905c-6f6da391ebc9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "148.00", "lithology_to": "152.00", "lithology_raw_data": "SAND COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199002}}, {"model": "wells.lithologydescription", "pk": "58250c58-f3bc-4ca4-b208-5351c6381938", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "123.00", "lithology_to": "175.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198513}}, {"model": "wells.lithologydescription", "pk": "58364202-c0cb-4a23-b512-540a5ab0a165", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/SOFT, CLAY/GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198576}}, {"model": "wells.lithologydescription", "pk": "58416f5b-a9ed-4a98-a78e-cdde3e6ac103", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "45.00", "lithology_to": "90.00", "lithology_raw_data": "sand/till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203078}}, {"model": "wells.lithologydescription", "pk": "5845df6a-0f71-4d1e-9ee1-b7298b22fcc7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "30.00", "lithology_to": "34.00", "lithology_raw_data": "GREY FINE SAND AND STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200907}}, {"model": "wells.lithologydescription", "pk": "58465b29-b70f-4559-96b2-cb9255e0e6e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203386}}, {"model": "wells.lithologydescription", "pk": "584c7035-8dd3-45fa-b07a-2d305ca9c03a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "100.00", "lithology_to": "102.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203216}}, {"model": "wells.lithologydescription", "pk": "58501f17-1c44-47f9-84b4-97a9063afbc5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "298.00", "lithology_to": "324.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201223}}, {"model": "wells.lithologydescription", "pk": "5853a607-72e5-4642-a478-24f28346a2b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "5 PPM Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199446}}, {"model": "wells.lithologydescription", "pk": "58647850-8371-46dd-8927-d7dd6ee78033", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "130.00", "lithology_to": "134.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203364}}, {"model": "wells.lithologydescription", "pk": "587708a3-81e4-4b01-9dae-239dda9e287a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "12.00", "lithology_to": "40.00", "lithology_raw_data": "SHALE LAYERED BR GRY GEL W/ FINE SS LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143907}}, {"model": "wells.lithologydescription", "pk": "58ac148f-024d-4019-aaed-e813e82f8bbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "213.00", "lithology_to": "213.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202526}}, {"model": "wells.lithologydescription", "pk": "58b769b3-5236-479f-8cb3-611a5c3e4ca2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "22.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, FINE TO MEDIUM", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199358}}, {"model": "wells.lithologydescription", "pk": "58bcaca9-f813-40db-a090-7a7ea8d562db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "115.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203702}}, {"model": "wells.lithologydescription", "pk": "58c9a14f-3fde-4ecf-835b-85c478e1e867", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": "FINE AND MEDIUM SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; DRY; SOLID; CLEANER AGAIN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200689}}, {"model": "wells.lithologydescription", "pk": "58d180a9-4be0-47f5-95ef-d4ceac298a8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "151.00", "lithology_to": "185.00", "lithology_raw_data": "SILTY CLAY WITH SILT LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST AND WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200875}}, {"model": "wells.lithologydescription", "pk": "58f60967-da93-4444-a955-0c063ecb9914", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "56.00", "lithology_to": "60.00", "lithology_raw_data": "gravel", "lithology_description": "62", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203541}}, {"model": "wells.lithologydescription", "pk": "58f61169-9da5-4363-8c5b-457f60760df3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "144.00", "lithology_to": "156.00", "lithology_raw_data": "very fine sand, very silty zones", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "very little water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200336}}, {"model": "wells.lithologydescription", "pk": "5900224b-6b4b-4184-8428-86d2f92b062a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "122.00", "lithology_to": "160.00", "lithology_raw_data": "Brown Sand with clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203852}}, {"model": "wells.lithologydescription", "pk": "5909f9c1-40ad-48e8-81d0-062f64f99165", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well_tag_number": 113304, "lithology_from": "45.00", "lithology_to": "69.00", "lithology_raw_data": "cobbles, clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204054}}, {"model": "wells.lithologydescription", "pk": "591cb7d1-2790-40d6-98b2-a84f1fd3debb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "GREY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202682}}, {"model": "wells.lithologydescription", "pk": "5920217c-27af-44bd-b506-065ec603dd58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "158.00", "lithology_to": "162.00", "lithology_raw_data": "LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "4.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198052}}, {"model": "wells.lithologydescription", "pk": "592eb0ba-363c-4078-b3dc-717c2899bb13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "set 25'' screen, pulled screen out at 154'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200337}}, {"model": "wells.lithologydescription", "pk": "5930bb7b-63fb-4b90-8864-7bf1de8523b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:43:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, "well_tag_number": 112988, "lithology_from": "25.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202402}}, {"model": "wells.lithologydescription", "pk": "5932787a-0659-46f6-99e2-a332ca8b97a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "32.00", "lithology_to": "37.00", "lithology_raw_data": "CLAY, SMALL SURFACE WATER", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199816}}, {"model": "wells.lithologydescription", "pk": "593a44fb-bc24-4dc4-8046-2efde2e58daa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well_tag_number": 112698, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": "few stones", "lithology_description": "12", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200553}}, {"model": "wells.lithologydescription", "pk": "594272d3-c12c-4373-94c4-6d1366bb682a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, "well_tag_number": 112773, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201054}}, {"model": "wells.lithologydescription", "pk": "594dc7c1-2fd0-4349-9397-c0866f3a8a1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-02T19:22:25Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "Shale and SS layered soft, fractured,dirty, making water - cased off", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203396}}, {"model": "wells.lithologydescription", "pk": "594f7c4d-9d4c-4a41-9b87-3fd58fe272f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, "well_tag_number": 112344, "lithology_from": "0.00", "lithology_to": "59.00", "lithology_raw_data": "MEDIUM/HARD ORGANICS TO DENSE CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198133}}, {"model": "wells.lithologydescription", "pk": "595477a8-50fc-405e-b1e2-c2774e19fc51", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM-COARSE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199228}}, {"model": "wells.lithologydescription", "pk": "595d9846-e875-4401-88c0-a8a1b48c2179", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "125.00", "lithology_to": "127.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198391}}, {"model": "wells.lithologydescription", "pk": "59744d81-12f1-4734-8198-c575af56a0d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "86.00", "lithology_to": "133.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198303}}, {"model": "wells.lithologydescription", "pk": "59758e47-56c0-45f3-af27-7aa0e8acc283", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T22:55:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, "well_tag_number": 113219, "lithology_from": "82.00", "lithology_to": "103.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203707}}, {"model": "wells.lithologydescription", "pk": "5978f786-03ee-4143-b858-ad8d252fde58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "152.00", "lithology_to": "245.00", "lithology_raw_data": "COARSE SILTY GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197791}}, {"model": "wells.lithologydescription", "pk": "59860bba-d861-4710-901e-e1103ca391fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, "well_tag_number": 112899, "lithology_from": "33.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED @ 240'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201888}}, {"model": "wells.lithologydescription", "pk": "59924d6e-9abc-4f00-af46-f76788c9d251", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198648}}, {"model": "wells.lithologydescription", "pk": "599cda39-20f0-4edd-a9af-7c3b5726dfa2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "33.00", "lithology_to": "50.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199581}}, {"model": "wells.lithologydescription", "pk": "59a945df-7e68-4fa0-8d53-b1171aead17d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:54:10Z", "activity_submission": null, "well_tag_number": 112228, "lithology_from": "60.00", "lithology_to": "63.00", "lithology_raw_data": "GREEN/WHITE FRACTURED BROKEN AREA WITH WHITE FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197408}}, {"model": "wells.lithologydescription", "pk": "59ab3056-7042-4bed-8996-d4120db14d66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "130.00", "lithology_to": "156.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET (STATIC LEVEL)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200844}}, {"model": "wells.lithologydescription", "pk": "59b893b8-c769-418f-bdb1-108bc8a004c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "116.00", "lithology_to": "124.00", "lithology_raw_data": "silt seams - trace of gravel", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198902}}, {"model": "wells.lithologydescription", "pk": "59c1b5ce-1264-4318-b04e-1ea05f5cf2e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201418}}, {"model": "wells.lithologydescription", "pk": "59c49eab-db11-47ed-9039-b5daf1ad3c8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "373.00", "lithology_to": "390.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200953}}, {"model": "wells.lithologydescription", "pk": "59c583cc-b854-4499-a143-74967da41b53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "159.00", "lithology_to": "170.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203152}}, {"model": "wells.lithologydescription", "pk": "59cfa6ec-a8c0-432b-8506-a427f7066b25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, CLAY, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199951}}, {"model": "wells.lithologydescription", "pk": "59eac2fd-32cc-4b55-9f9a-5df2a14d4b87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well_tag_number": 113021, "lithology_from": "144.00", "lithology_to": "174.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202547}}, {"model": "wells.lithologydescription", "pk": "5a0b5021-7f55-45f4-8c80-7987031fea01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "8.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "10 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200607}}, {"model": "wells.lithologydescription", "pk": "5a148d3d-dc40-4b16-8ec3-fc8e41613264", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "25.00", "lithology_to": "33.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "PUT IN 12 SLOT SCREEN THEN REMOVED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201816}}, {"model": "wells.lithologydescription", "pk": "5a1a2b92-dce4-489f-b452-022d39bfe91c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "18.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132261}}, {"model": "wells.lithologydescription", "pk": "5a1c96b7-55b0-4b15-9491-28a638d6c88c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST TO WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200710}}, {"model": "wells.lithologydescription", "pk": "5a1f3575-814e-4d3e-b68c-0d5e3fdcd961", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "310.00", "lithology_to": "315.00", "lithology_raw_data": "W.B. SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201454}}, {"model": "wells.lithologydescription", "pk": "5a21622a-fc29-4bd4-925b-7b8067f8cf42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "410.00", "lithology_to": "422.00", "lithology_raw_data": "SANDSTONE FINE WITH MEDIUM FINE LAYERS FRIABLE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201499}}, {"model": "wells.lithologydescription", "pk": "5a265bd3-fb85-482b-8679-4d3d0903ba39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "291.00", "lithology_to": "292.00", "lithology_raw_data": "and sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Thick wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197606}}, {"model": "wells.lithologydescription", "pk": "5a2e4dbb-132e-4b47-bcc9-4cb05558da77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, "well_tag_number": 112766, "lithology_from": "84.00", "lithology_to": "248.00", "lithology_raw_data": "SANDSTONE WITH SILTSTONE/MUDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201012}}, {"model": "wells.lithologydescription", "pk": "5a2e508d-3b97-496c-82e6-bbfc6542b470", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well_tag_number": 112705, "lithology_from": "105.00", "lithology_to": "125.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200582}}, {"model": "wells.lithologydescription", "pk": "5a3be312-a427-4774-9987-938e4b6211f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198712}}, {"model": "wells.lithologydescription", "pk": "5a4cc10f-3e1d-4494-b989-de31ff3bf60b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, "well_tag_number": 112373, "lithology_from": "309.00", "lithology_to": "347.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "STIFF", "lithology_material": "36", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198319}}, {"model": "wells.lithologydescription", "pk": "5a5cab61-25f8-4701-8fe5-5627af62455e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, "well_tag_number": 113027, "lithology_from": "170.00", "lithology_to": "184.00", "lithology_raw_data": "Brown Clay and Rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202571}}, {"model": "wells.lithologydescription", "pk": "5a6795c7-3740-475c-9b17-368a3743668d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "270.00", "lithology_to": "565.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "36", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198710}}, {"model": "wells.lithologydescription", "pk": "5a6bcd35-8484-4c24-b85e-14b073bc048c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203155}}, {"model": "wells.lithologydescription", "pk": "5a7b403a-10f7-409b-a440-6e9254d9438c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "19.96", "lithology_to": "73.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "APPROX. 200 GALLONS OF BENTONITE GROUT ADDED BUT NOT SUCCESSFUL AT CLOSING BOREHOLE DUE TO DEVELOPMENT OF ARTESIAN CONDITIONS. APPROX. 200 GALLONS OF BENTONITE GROUT WITH BARITE ADDITIVE ALTERNATIVELY USED. ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201077}}, {"model": "wells.lithologydescription", "pk": "5a7e9363-a113-43e0-9ec8-76208dfa633c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198589}}, {"model": "wells.lithologydescription", "pk": "5ab0ef9a-2b15-48bb-80bf-239626aa4e50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:24:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, "well_tag_number": 112315, "lithology_from": "93.00", "lithology_to": "102.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197859}}, {"model": "wells.lithologydescription", "pk": "5abb043c-93d0-483a-bae8-e11fdf689024", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:25:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:25:26Z", "activity_submission": null, "well_tag_number": 113148, "lithology_from": "0.00", "lithology_to": "204.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE AT 143', DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203282}}, {"model": "wells.lithologydescription", "pk": "5ac04bf6-de0c-40de-ba66-760dfe44431b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "411.00", "lithology_to": "453.00", "lithology_raw_data": "BROWN, PACKED FINE SAND, WATER BEARING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199766}}, {"model": "wells.lithologydescription", "pk": "5accd254-bca4-4830-8de8-e4d79473e8c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "150.00", "lithology_to": "162.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY MIX", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200488}}, {"model": "wells.lithologydescription", "pk": "5aea8ca4-5d64-4abf-87ff-f6158d7cab5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T17:46:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, "well_tag_number": 112867, "lithology_from": "0.00", "lithology_to": "10.50", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201686}}, {"model": "wells.lithologydescription", "pk": "5aeabe0b-72e8-420e-8bec-42af9eb5104e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "200.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199316}}, {"model": "wells.lithologydescription", "pk": "5afcc69d-e257-4953-89af-581d90779bfa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "140.00", "lithology_to": "196.00", "lithology_raw_data": "COMPETENT BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200184}}, {"model": "wells.lithologydescription", "pk": "5b1cdb90-740d-42b0-b4e0-d8696e7d7b9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "58.00", "lithology_to": "59.00", "lithology_raw_data": "SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SOME WATER; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200732}}, {"model": "wells.lithologydescription", "pk": "5b207b4e-d1c7-4924-8da7-7e0016bbe96a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198892}}, {"model": "wells.lithologydescription", "pk": "5b2fb697-ea35-41cc-8045-51e89f46719b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, "well_tag_number": 112287, "lithology_from": "7.00", "lithology_to": "17.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197718}}, {"model": "wells.lithologydescription", "pk": "5b374310-326a-4b94-a289-ae990914b6de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "400.00", "lithology_to": "500.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198955}}, {"model": "wells.lithologydescription", "pk": "5b3d4128-b6ef-4768-aef9-246bca5c4211", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "206.00", "lithology_to": "243.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197904}}, {"model": "wells.lithologydescription", "pk": "5b3efbfd-b58d-4a7d-b17d-c707238cb13c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "253.00", "lithology_to": "255.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203394}}, {"model": "wells.lithologydescription", "pk": "5b3fc91c-52b9-4eb5-9950-e8d2bdf17cbd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "7.00", "lithology_to": "25.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry,", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204035}}, {"model": "wells.lithologydescription", "pk": "5b42593d-273b-4ec6-9d6a-87595a15866e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "29.00", "lithology_to": "37.00", "lithology_raw_data": "coarse gravel and boulders", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199695}}, {"model": "wells.lithologydescription", "pk": "5b4b12e5-faa5-4689-b22f-34433c027c0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY/GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198570}}, {"model": "wells.lithologydescription", "pk": "5b5bef55-4d83-4a5a-b5de-3426dd8f21f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "233.00", "lithology_to": "260.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CLEAN/COARSE SAND", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197879}}, {"model": "wells.lithologydescription", "pk": "5b5e4b79-8376-44bb-9e5d-e8f5534fe671", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "FINE-MED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199231}}, {"model": "wells.lithologydescription", "pk": "5b6c0ed3-efa7-4fef-ad70-39bbbe0d5bb4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "140.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/SOFT; SILT/CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199162}}, {"model": "wells.lithologydescription", "pk": "5b780801-eea6-4ee7-9284-65b86128cf32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:13:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, "well_tag_number": 112844, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "BROWN, RUSTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201439}}, {"model": "wells.lithologydescription", "pk": "5b78b815-81b9-4bb7-8fa1-07235634bad8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, "well_tag_number": 112640, "lithology_from": "157.00", "lithology_to": "175.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "50 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200319}}, {"model": "wells.lithologydescription", "pk": "5b7b621d-2200-438e-a664-eff71e59a050", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "39.00", "lithology_to": "43.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198352}}, {"model": "wells.lithologydescription", "pk": "5b7e0d46-efd6-4b2e-b79f-d16b9f164252", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "58.00", "lithology_to": "69.00", "lithology_raw_data": "CEMENTED SAND AND MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200910}}, {"model": "wells.lithologydescription", "pk": "5b810e53-7d3a-4989-93f9-8884fca2ecea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, "well_tag_number": 113205, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "broken, bedrock", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203586}}, {"model": "wells.lithologydescription", "pk": "5b929816-89c1-4820-868d-7d072cfbee8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well_tag_number": 112822, "lithology_from": "3.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201285}}, {"model": "wells.lithologydescription", "pk": "5b9696a4-72d7-432b-97a8-b7a6ae0186d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": "22.00", "lithology_to": "54.00", "lithology_raw_data": "conglomerate, broken ", "lithology_description": "58", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203102}}, {"model": "wells.lithologydescription", "pk": "5ba26f08-8662-4d1f-bd7d-d24310acd55c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "18.00", "lithology_to": "63.00", "lithology_raw_data": "HARD GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203170}}, {"model": "wells.lithologydescription", "pk": "5bae2269-13f4-4edd-aa01-d284c8e0a8a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, "well_tag_number": 113116, "lithology_from": "60.00", "lithology_to": "90.00", "lithology_raw_data": "shale", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203052}}, {"model": "wells.lithologydescription", "pk": "5bb280f2-636d-4e0c-b38f-d7407b3f2d6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "76.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200074}}, {"model": "wells.lithologydescription", "pk": "5bb4a839-14c8-41da-b9c1-a8bda3d360d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:16:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, "well_tag_number": 112542, "lithology_from": "35.00", "lithology_to": "195.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199615}}, {"model": "wells.lithologydescription", "pk": "5bb85069-e7cd-4a56-acc3-70fdfde9920f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, "well_tag_number": 113289, "lithology_from": "19.00", "lithology_to": "47.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dark grey, moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203985}}, {"model": "wells.lithologydescription", "pk": "5bbce31f-88f3-4111-994a-faaee68587ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203220}}, {"model": "wells.lithologydescription", "pk": "5bc16161-3ff2-42af-a281-95508795c0a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "129.00", "lithology_to": "131.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203651}}, {"model": "wells.lithologydescription", "pk": "5bce3210-5a95-40d8-b134-8cfccbe94433", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well_tag_number": 112689, "lithology_from": "21.00", "lithology_to": "50.00", "lithology_raw_data": "BEDROCK-BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200522}}, {"model": "wells.lithologydescription", "pk": "5bd3095b-ca84-4b4a-959d-9ea698a8323f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "78.00", "lithology_to": "79.00", "lithology_raw_data": "BLACK/GREEN, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198102}}, {"model": "wells.lithologydescription", "pk": "5bd4895a-7150-4a44-858d-307fda00f07f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200615}}, {"model": "wells.lithologydescription", "pk": "5be24d5c-4abf-432d-bb68-ed6faef3f039", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-26T21:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-26T21:23:57Z", "activity_submission": null, "well_tag_number": 113073, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "BROWN GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202792}}, {"model": "wells.lithologydescription", "pk": "5be45505-7e76-4b8c-8632-f4892032def3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well_tag_number": 112822, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 680'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201289}}, {"model": "wells.lithologydescription", "pk": "5bf09f66-8aa2-458f-94c0-e64eded2c8ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "136.00", "lithology_to": "175.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203244}}, {"model": "wells.lithologydescription", "pk": "5c098eda-8289-4a7b-a42b-b8dbac39da4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "34.00", "lithology_to": "58.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199435}}, {"model": "wells.lithologydescription", "pk": "5c109598-dc56-4278-886d-2358c9bd1203", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "156.00", "lithology_to": "231.00", "lithology_raw_data": "very silty, till zones", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200338}}, {"model": "wells.lithologydescription", "pk": "5c167d9f-c1ee-4203-9ab7-14c3b02d8ab7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, "well_tag_number": 112612, "lithology_from": "63.00", "lithology_to": "110.00", "lithology_raw_data": "conglomerate", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200085}}, {"model": "wells.lithologydescription", "pk": "5c1698b5-fa73-457d-9247-795ec95c8f71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "14.00", "lithology_to": "28.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200065}}, {"model": "wells.lithologydescription", "pk": "5c2067c2-6ee2-4fc3-b468-5101be727e71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "15.00", "lithology_to": "23.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200372}}, {"model": "wells.lithologydescription", "pk": "5c27e145-a2f8-4e99-831c-fdb35cc251ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:23:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:23:55Z", "activity_submission": null, "well_tag_number": 112933, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TOP SOIL, BROKEN ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "15", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202074}}, {"model": "wells.lithologydescription", "pk": "5c2a85ba-ebe7-4f2c-a20f-bb002c737ccb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, "well_tag_number": 112584, "lithology_from": "35.00", "lithology_to": "42.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199881}}, {"model": "wells.lithologydescription", "pk": "5c2e6bfc-4804-43e1-bfad-b209a30d62fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "415.00", "lithology_to": "425.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202841}}, {"model": "wells.lithologydescription", "pk": "5c3147f9-6f20-4277-8644-cfb8c6b3568f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "123.00", "lithology_to": "127.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201531}}, {"model": "wells.lithologydescription", "pk": "5c346df2-a6c6-4f3a-924e-2b796e6d8306", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198750}}, {"model": "wells.lithologydescription", "pk": "5c3bbf6b-b72a-421c-8ae5-2eecf373dd1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "5.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TRICKLE AT 15' AND 30'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197479}}, {"model": "wells.lithologydescription", "pk": "5c53a424-1ae9-405e-9bbe-81f98ec7fac6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "325.00", "lithology_to": null, "lithology_raw_data": "fine sand with silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202993}}, {"model": "wells.lithologydescription", "pk": "5c5431b9-3d64-46db-a257-675b11c50539", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "106.00", "lithology_to": "118.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202620}}, {"model": "wells.lithologydescription", "pk": "5c55a0c2-fd3a-4eb0-b55e-0957bdae15be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, MEDIUM, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199276}}, {"model": "wells.lithologydescription", "pk": "5c629590-50dd-47ea-8259-a8052f8a6b7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "71.00", "lithology_to": "80.00", "lithology_raw_data": "till like", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202321}}, {"model": "wells.lithologydescription", "pk": "5c7950aa-9e71-468a-9bda-c60cdf7a4307", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well_tag_number": 112919, "lithology_from": "93.00", "lithology_to": "155.00", "lithology_raw_data": "LIGHT GREY", "lithology_description": null, "lithology_colour": "09", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202019}}, {"model": "wells.lithologydescription", "pk": "5c954c21-76f5-4a7d-9975-5b13fe3942de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199473}}, {"model": "wells.lithologydescription", "pk": "5c9642df-30de-4c17-9231-2bef40ac7491", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200791}}, {"model": "wells.lithologydescription", "pk": "5ca39aa2-2a4f-47bd-aaf0-d9692591f447", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "10.00", "lithology_to": "69.00", "lithology_raw_data": "TIGHT; BOULDERS AND COBBLES WITH SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200721}}, {"model": "wells.lithologydescription", "pk": "5ca84285-21a7-4c80-9e01-e2ef0b0122c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T07:53:50Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "GRAVELS, FILL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199824}}, {"model": "wells.lithologydescription", "pk": "5cae7135-a33b-49a6-9fd0-de69a2ea3220", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, "well_tag_number": 112627, "lithology_from": "2.00", "lithology_to": "135.00", "lithology_raw_data": "Gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200263}}, {"model": "wells.lithologydescription", "pk": "5cb33076-057c-47ee-ae7a-f3a8ef889bd7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "76.00", "lithology_to": "78.00", "lithology_raw_data": "GRAY & WHITE CLAY & ROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201739}}, {"model": "wells.lithologydescription", "pk": "5cc46bb1-9955-4be8-9a2b-c29ebce2d21b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:42:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:29Z", "activity_submission": null, "well_tag_number": 112674, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROWN SAND AND GRAVEL WITH COBBLES ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200460}}, {"model": "wells.lithologydescription", "pk": "5ccebcaf-4f31-4503-a0e1-c2192fab8857", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "120'=SMALL SEAM BASALT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199724}}, {"model": "wells.lithologydescription", "pk": "5cd018d3-1742-4a07-a0f9-ccc1517f213b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "621.00", "lithology_to": "692.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "intermitent quartz", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202857}}, {"model": "wells.lithologydescription", "pk": "5cde40d7-d15f-4ef4-8fb0-2e5abf55859b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "195.00", "lithology_to": "200.00", "lithology_raw_data": "FINER W.B. SANDS AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197463}}, {"model": "wells.lithologydescription", "pk": "5ce2eec7-4c32-408c-9e4b-16e5816bb0a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well_tag_number": 112239, "lithology_from": "160.00", "lithology_to": "244.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURES FREQUENT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197475}}, {"model": "wells.lithologydescription", "pk": "5ce542a4-2baa-4b41-adc2-6792c89545fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "134.00", "lithology_to": "167.00", "lithology_raw_data": "with quartz seams", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198305}}, {"model": "wells.lithologydescription", "pk": "5cea9b6d-9a92-410c-9c45-49e5292e6898", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:21:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, "well_tag_number": 112880, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND & GRAVEL, BROWN & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201758}}, {"model": "wells.lithologydescription", "pk": "5cf652b1-9af9-43bb-9398-d46e1fbc91a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-11-30T07:25:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, "well_tag_number": 112152, "lithology_from": "58.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": "00", "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 196907}}, {"model": "wells.lithologydescription", "pk": "5cf756bd-11eb-4f39-a989-38851896b190", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-5", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202226}}, {"model": "wells.lithologydescription", "pk": "5cff1ac8-dd29-4a76-a88a-8c33a560d3f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "96.00", "lithology_to": "110.00", "lithology_raw_data": "SLOPPY FINE GREY SAND WITH CLAY BALLS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201167}}, {"model": "wells.lithologydescription", "pk": "5d040497-beca-4334-909f-8f371db0d014", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, "well_tag_number": 112965, "lithology_from": "16.00", "lithology_to": "30.00", "lithology_raw_data": "SATURATED SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202262}}, {"model": "wells.lithologydescription", "pk": "5d179a24-0d8d-4f7f-9ae5-1c556663dde6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T22:27:17Z", "activity_submission": null, "well_tag_number": 112517, "lithology_from": "250.00", "lithology_to": "277.00", "lithology_raw_data": "bedrock, softer, few fractures", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPH", "lithology_observation": "at 260'; OVER 6 GPH AT 277'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199405}}, {"model": "wells.lithologydescription", "pk": "5d1ea857-0105-4823-9ac1-0c74a626fdb7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "28.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200058}}, {"model": "wells.lithologydescription", "pk": "5d214aee-5730-4186-99b1-2f7b843f29c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:53:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, "well_tag_number": 113286, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203974}}, {"model": "wells.lithologydescription", "pk": "5d25bf92-5327-4e63-8c06-204af1724a04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:31Z", "activity_submission": null, "well_tag_number": 113307, "lithology_from": "11.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 80'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204067}}, {"model": "wells.lithologydescription", "pk": "5d28c204-8d7d-4ab4-afa9-880bf43a4efc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "125.00", "lithology_to": "170.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199864}}, {"model": "wells.lithologydescription", "pk": "5d2ad584-a1e6-4eeb-9f18-ae29d48f1205", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, "well_tag_number": 112264, "lithology_from": "75.00", "lithology_to": "102.00", "lithology_raw_data": "MEDIUM GRAVEL WITH MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10+ USGPM, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197587}}, {"model": "wells.lithologydescription", "pk": "5d4ba4cd-0899-4fed-bc85-95c05a6f0055", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well_tag_number": 112866, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "airlift", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201684}}, {"model": "wells.lithologydescription", "pk": "5d5225b2-2233-4003-b97a-7e6312393399", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "334.00", "lithology_to": "337.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201097}}, {"model": "wells.lithologydescription", "pk": "5d5568bd-2687-45eb-aff1-77930c2084a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "gravel", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201216}}, {"model": "wells.lithologydescription", "pk": "5d68d764-ffc5-4238-b796-48d59b6ecef1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:18:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, "well_tag_number": 112873, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201726}}, {"model": "wells.lithologydescription", "pk": "5d70179d-ef03-42f4-8b4d-9ce8cd398313", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well_tag_number": 112866, "lithology_from": "47.00", "lithology_to": "52.00", "lithology_raw_data": "coarse sandy", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, cleaner", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201683}}, {"model": "wells.lithologydescription", "pk": "5d769cf0-63b9-4046-b9e2-e388eb66978b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 225'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203107}}, {"model": "wells.lithologydescription", "pk": "5d7b6a35-97a3-4cc1-8cd7-913be817e81f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, "well_tag_number": 112565, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199750}}, {"model": "wells.lithologydescription", "pk": "5d90bd49-0f88-4419-a010-1db0adbd08b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:32:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:32:50Z", "activity_submission": null, "well_tag_number": 113282, "lithology_from": "321.00", "lithology_to": "638.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203963}}, {"model": "wells.lithologydescription", "pk": "5da484e2-25ab-472a-9243-165f1a8ac5d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "4.00", "lithology_to": "125.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, SALT PEPPER GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198423}}, {"model": "wells.lithologydescription", "pk": "5da64d25-e24a-457e-9dbe-3a2ce7dc27cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "583.00", "lithology_to": "595.00", "lithology_raw_data": "FRIABLE", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201513}}, {"model": "wells.lithologydescription", "pk": "5da95a07-a437-4625-a978-7832068ce2a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well_tag_number": 112559, "lithology_from": "43.00", "lithology_to": "102.00", "lithology_raw_data": "with quartz layers", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199709}}, {"model": "wells.lithologydescription", "pk": "5db05bbe-7c44-4f82-9028-270215fe1316", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "137.00", "lithology_to": "175.00", "lithology_raw_data": "COOARSE GRAVEL, SOME SAND, WB", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201331}}, {"model": "wells.lithologydescription", "pk": "5db3e6d5-affd-443c-9016-a082f4b02844", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "50.00", "lithology_to": "52.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203907}}, {"model": "wells.lithologydescription", "pk": "5dbd4e35-6f52-4048-850c-379e46d4fc5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:44:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, "well_tag_number": 112940, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "COARSE GRAVEL, COBBLE, MIXED SANDS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202111}}, {"model": "wells.lithologydescription", "pk": "5dc0bca2-8410-4778-8306-703875667c92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "137.00", "lithology_to": "161.00", "lithology_raw_data": "SILTSTONE & SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201535}}, {"model": "wells.lithologydescription", "pk": "5dc2d886-e2b3-42c3-b822-0a027eb64beb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:37Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 385'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203044}}, {"model": "wells.lithologydescription", "pk": "5dc6ae6c-3f3e-4fb0-b817-f8e3edc8445a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "BROWN & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201632}}, {"model": "wells.lithologydescription", "pk": "5ddb4bcc-413c-4a99-8b15-7106c0765d10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well_tag_number": 113070, "lithology_from": "11.00", "lithology_to": "14.00", "lithology_raw_data": "LARGE GRAVEL, MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202786}}, {"model": "wells.lithologydescription", "pk": "5df6826c-6ce8-46b4-90b5-d27f3ef9bb34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, "well_tag_number": 112288, "lithology_from": "30.00", "lithology_to": "36.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197724}}, {"model": "wells.lithologydescription", "pk": "5dfebaab-a8ac-4507-83bb-79627de06247", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "197.00", "lithology_to": "260.00", "lithology_raw_data": "Light grey sand, fine med, sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203867}}, {"model": "wells.lithologydescription", "pk": "5e024e23-660c-467d-ae26-c82453960112", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "175.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM-HARD SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198001}}, {"model": "wells.lithologydescription", "pk": "5e248b07-dfe2-45c2-80f8-239299b445a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, "well_tag_number": 113181, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203453}}, {"model": "wells.lithologydescription", "pk": "5e2e73e8-6084-4289-8d7f-0c9aa1b029b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199137}}, {"model": "wells.lithologydescription", "pk": "5e31463a-7e05-416b-8dfc-e91bbe5bb575", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "237.00", "lithology_to": "318.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201549}}, {"model": "wells.lithologydescription", "pk": "5e378fb6-b625-42db-89f6-81faa91802c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "471.00", "lithology_to": "475.00", "lithology_raw_data": "shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203416}}, {"model": "wells.lithologydescription", "pk": "5e454804-26a9-4781-aeb5-94a5e3f1d192", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well_tag_number": 112600, "lithology_from": "195.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY AND GRAVEL ROUND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199984}}, {"model": "wells.lithologydescription", "pk": "5e4f6d9f-a817-43b3-a5f7-32576ae70fd7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "80.00", "lithology_to": "84.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199129}}, {"model": "wells.lithologydescription", "pk": "5e5c35ee-7626-4c83-a1bb-959116f22578", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TOPSOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200388}}, {"model": "wells.lithologydescription", "pk": "5e5de06e-f099-49bd-9ef9-50131d3260d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "230.00", "lithology_to": "247.00", "lithology_raw_data": "SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197465}}, {"model": "wells.lithologydescription", "pk": "5e6110bf-44ca-40b3-a137-dbb1f90a7b2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, "well_tag_number": 112631, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "sand clay silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200290}}, {"model": "wells.lithologydescription", "pk": "5e6a0d13-df59-42ff-80e4-0aefa25cbf09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "42.00", "lithology_to": "88.00", "lithology_raw_data": "BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201691}}, {"model": "wells.lithologydescription", "pk": "5e6df203-d7b4-455a-8e08-38b5fc2b02fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "415.00", "lithology_to": "680.00", "lithology_raw_data": "BLACK/GREY/WHITE VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198410}}, {"model": "wells.lithologydescription", "pk": "5e76b9cd-4c7b-4341-b9e0-5944448f5d2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, "well_tag_number": 112299, "lithology_from": "0.00", "lithology_to": "92.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197773}}, {"model": "wells.lithologydescription", "pk": "5e858502-b5ca-4085-8225-a1fc3873d976", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "SAND, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199733}}, {"model": "wells.lithologydescription", "pk": "5e88b5d3-f783-4aeb-ba29-ea9b9836d01f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well_tag_number": 112238, "lithology_from": "64.00", "lithology_to": "66.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197468}}, {"model": "wells.lithologydescription", "pk": "5e8c3b6f-1366-44c5-b5d0-74d34a734cd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well_tag_number": 112547, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "SAND AND GRAVEL WITH TRACES OF CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199644}}, {"model": "wells.lithologydescription", "pk": "5e9d83a5-cf99-4f98-aaa9-b416743269bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well_tag_number": 112255, "lithology_from": "23.00", "lithology_to": "33.00", "lithology_raw_data": "MEDIUM SAND WITH ROUNDED PEBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197548}}, {"model": "wells.lithologydescription", "pk": "5ea29738-d0ba-4312-a03b-71567d14f9e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "10.00", "lithology_to": "49.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203547}}, {"model": "wells.lithologydescription", "pk": "5ea67bb3-625a-4140-ad7b-9c3fa2cf7bed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "66.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "no perctration ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200612}}, {"model": "wells.lithologydescription", "pk": "5ea8651d-3648-4e86-aef8-ede12a36cee6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well_tag_number": 112357, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 65' 5 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198213}}, {"model": "wells.lithologydescription", "pk": "5eb9dc56-ca7e-4d0d-875b-49ba46f8dd67", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "420.00", "lithology_to": "423.00", "lithology_raw_data": "shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203403}}, {"model": "wells.lithologydescription", "pk": "5ebba8ef-a38f-4105-becb-32241cd13bc9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199144}}, {"model": "wells.lithologydescription", "pk": "5ebdb5f1-124b-488f-bd76-be483448d8d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "100.00", "lithology_to": "103.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199998}}, {"model": "wells.lithologydescription", "pk": "5ecbf970-ede6-4fe8-a46b-805cf1ed6146", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, "well_tag_number": 112591, "lithology_from": "180.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199926}}, {"model": "wells.lithologydescription", "pk": "5ed63f81-12e0-41a4-9e90-2899cd6a99b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "94.00", "lithology_to": "133.00", "lithology_raw_data": "BROWN/GREY SAND AND GRAVEL, CEMENTED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201316}}, {"model": "wells.lithologydescription", "pk": "5eddae5b-256c-4b2b-96fe-dddd6405387f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well_tag_number": 112886, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201801}}, {"model": "wells.lithologydescription", "pk": "5ede9a1f-f5bf-4e6f-a827-3a4fc76722d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "340.00", "lithology_to": "415.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204016}}, {"model": "wells.lithologydescription", "pk": "5ee0f213-242d-43b1-b93c-0fbb0fedaa6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "FINE SAND, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200009}}, {"model": "wells.lithologydescription", "pk": "5eec79f5-c57a-444c-84bd-8fab7c62e5e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "36.00", "lithology_to": "77.00", "lithology_raw_data": "FINE 4 TO 5 SLOT SILT SAND BARK MULCH SLOWING GETTING FINER TURNING CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203299}}, {"model": "wells.lithologydescription", "pk": "5ef78594-003b-4cc9-b852-328d8905a549", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, "well_tag_number": 112295, "lithology_from": "170.00", "lithology_to": "281.00", "lithology_raw_data": "BASALT, SOME VOLCANIC LAYERS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197757}}, {"model": "wells.lithologydescription", "pk": "5ef9173f-6630-498b-aa00-90593bc062da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "192.00", "lithology_to": "193.00", "lithology_raw_data": "clean", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203787}}, {"model": "wells.lithologydescription", "pk": "5f0974ba-6630-422c-a8a1-034882f73e23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, "well_tag_number": 112543, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SANDY SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199616}}, {"model": "wells.lithologydescription", "pk": "5f0c01e7-9f14-42ee-b0af-2117c8b70fd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "35.00", "lithology_to": "46.00", "lithology_raw_data": "and coarse grained sand", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water-bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183978}}, {"model": "wells.lithologydescription", "pk": "5f1b33e7-9f0a-442d-8244-2a8ee1513cff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "179.00", "lithology_to": "182.00", "lithology_raw_data": "DARK GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198026}}, {"model": "wells.lithologydescription", "pk": "5f1f35ea-f364-4c6c-92bc-b1c2b6b960cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "28.00", "lithology_to": "49.00", "lithology_raw_data": "CLAY WITH SILT LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202150}}, {"model": "wells.lithologydescription", "pk": "5f1f4130-84b6-4595-992b-423bb330db79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "31.00", "lithology_to": "78.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202703}}, {"model": "wells.lithologydescription", "pk": "5f20729b-ec73-4d2e-a61c-5ab19d115558", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "130.00", "lithology_to": "136.00", "lithology_raw_data": "BROWN/GREY VOLCANIC CAVING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197356}}, {"model": "wells.lithologydescription", "pk": "5f24789e-84cb-4077-b7fc-4b657faccc12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "535.00", "lithology_to": "574.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "small fractures at 545 & 574", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202853}}, {"model": "wells.lithologydescription", "pk": "5f287cec-c9a5-452f-ad5b-fde2a5de9690", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:33:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:33:43Z", "activity_submission": null, "well_tag_number": 112775, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201063}}, {"model": "wells.lithologydescription", "pk": "5f38e1f1-699b-4cbb-9231-f8d27fe2ac6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200931}}, {"model": "wells.lithologydescription", "pk": "5f3f5593-c14d-4c1b-bb39-632dfc6c0023", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well_tag_number": 112391, "lithology_from": "116.00", "lithology_to": "258.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198439}}, {"model": "wells.lithologydescription", "pk": "5f4397b4-e287-4819-97b7-5e73fffae1ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, "well_tag_number": 112297, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "VOLCANIC MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197768}}, {"model": "wells.lithologydescription", "pk": "5f4b9cff-aeb2-4c84-b6d5-9d2ddebaf9d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well_tag_number": 112866, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "bolder", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201680}}, {"model": "wells.lithologydescription", "pk": "5f82647c-c51e-4001-9ba8-1e721e06dd9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198230}}, {"model": "wells.lithologydescription", "pk": "5f86a4dd-71df-4360-b6d1-957a996af13c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "44.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202810}}, {"model": "wells.lithologydescription", "pk": "5f966036-2c93-4742-812d-ef481e410dd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "198.00", "lithology_to": "211.00", "lithology_raw_data": "W.B. GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203176}}, {"model": "wells.lithologydescription", "pk": "5f966330-66a1-4537-b2c2-776d7079713b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198654}}, {"model": "wells.lithologydescription", "pk": "5f9cf4b6-a7e6-473c-b05f-48e4278d688a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:40:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, "well_tag_number": 112298, "lithology_from": "110.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197772}}, {"model": "wells.lithologydescription", "pk": "5f9d4d1e-078c-4c3f-8eda-8cf3f716a67a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "74.00", "lithology_to": "86.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203028}}, {"model": "wells.lithologydescription", "pk": "5fa56bd8-a3a7-4f01-a17f-d8b85c60d64f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, "well_tag_number": 112795, "lithology_from": "73.00", "lithology_to": "76.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201146}}, {"model": "wells.lithologydescription", "pk": "5fa6d848-c0b2-4434-a16f-9254b162d92f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "100.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199952}}, {"model": "wells.lithologydescription", "pk": "5fc19045-61f5-4a72-b9dd-12a9ce003928", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "380.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199116}}, {"model": "wells.lithologydescription", "pk": "5fcde316-0edc-4612-ad45-a7de5a4fc29c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "4.00", "lithology_to": "7.00", "lithology_raw_data": "SANDY SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197834}}, {"model": "wells.lithologydescription", "pk": "5fd3a5d0-98a9-4188-8b4c-19b1b7d01a63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; BOULDERS, MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199266}}, {"model": "wells.lithologydescription", "pk": "5fdd7dbb-6502-43dc-b705-7cc938848e99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "18.50", "lithology_to": "46.00", "lithology_raw_data": "shale", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204073}}, {"model": "wells.lithologydescription", "pk": "5fe0fea2-260d-4fab-b95d-c1d9a0d0e306", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "680.00", "lithology_to": "697.00", "lithology_raw_data": "BROWN/GREY/GREEN, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "1+ USGPM, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198411}}, {"model": "wells.lithologydescription", "pk": "5ff53776-d38f-4ea7-9b7b-2e46f1549e1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:59:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, "well_tag_number": 112930, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "TILL GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202069}}, {"model": "wells.lithologydescription", "pk": "5ff60b1a-3dd9-497c-b2a6-026584d61576", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "90.00", "lithology_to": "115.00", "lithology_raw_data": "DARK GREY CLAY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198043}}, {"model": "wells.lithologydescription", "pk": "5ff9115a-3b38-48e3-9fa8-1c9ffe3f9c36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, "well_tag_number": 112229, "lithology_from": "80.00", "lithology_to": "116.00", "lithology_raw_data": "SOFT/MEDIUM SEDIMENTARY SHALE BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CASING DRIVEN INTO SHALE AT 80 FEET TO REFUSAL AT 116 FEET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197415}}, {"model": "wells.lithologydescription", "pk": "5ff92dec-5a6c-4605-9cf9-39faa5827d2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "42.00", "lithology_to": "43.00", "lithology_raw_data": "LOOSER SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200785}}, {"model": "wells.lithologydescription", "pk": "5ffb1191-e6ee-490a-8313-63e74222bf1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "38.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199037}}, {"model": "wells.lithologydescription", "pk": "600d6b39-e22d-4a9c-a109-d5680e791b00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "168.00", "lithology_to": "175.00", "lithology_raw_data": "chunks", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198331}}, {"model": "wells.lithologydescription", "pk": "600d8238-f16d-4939-9155-e11982a9a986", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-10T18:19:20Z", "activity_submission": null, "well_tag_number": 112766, "lithology_from": "1107.30", "lithology_to": "1494.40", "lithology_raw_data": "HARD TO VERY HARD; CONGLOMERATE SANDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CHERT, SILTSTONE/MUDSTONE; (ILLEGIBLE WRITING) SIGNAL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201015}}, {"model": "wells.lithologydescription", "pk": "6014d94c-0b6c-4126-8ad1-2bc0bfcfb35f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:24:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, "well_tag_number": 112901, "lithology_from": "23.00", "lithology_to": "183.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201894}}, {"model": "wells.lithologydescription", "pk": "6017063a-7619-4271-8c95-a2eea7589760", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "140.00", "lithology_to": "150.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201029}}, {"model": "wells.lithologydescription", "pk": "602883e3-fba3-421e-af3d-e8a31fed236c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "61.00", "lithology_to": "68.00", "lithology_raw_data": "and gravels", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203222}}, {"model": "wells.lithologydescription", "pk": "602f803b-f254-4bb8-b0ce-ac1ba9eeb6ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "150.00", "lithology_to": "159.00", "lithology_raw_data": "WEATHER ROCK, CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199226}}, {"model": "wells.lithologydescription", "pk": "604925cc-57fc-4a8b-a78e-a61eafe4d5b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:29:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:29:38Z", "activity_submission": null, "well_tag_number": 112788, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8\" CRUSH GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201131}}, {"model": "wells.lithologydescription", "pk": "604bbeb5-136d-4da6-a0f0-8b539d559eea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, "well_tag_number": 112903, "lithology_from": "0.00", "lithology_to": "38.00", "lithology_raw_data": "BOULDERS, COBBLE, SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201902}}, {"model": "wells.lithologydescription", "pk": "6060de63-adfc-41e6-9758-c480b8ece475", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/SOFT; SAND MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199172}}, {"model": "wells.lithologydescription", "pk": "60683517-6e4a-41b2-8455-032dc7eb5224", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:15:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, "well_tag_number": 112926, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202055}}, {"model": "wells.lithologydescription", "pk": "608d2871-3d8b-44a2-b33b-bcc105ea6aff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:04:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, "well_tag_number": 112942, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202118}}, {"model": "wells.lithologydescription", "pk": "60921533-62ee-4878-95f0-ba499b3d7695", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "39.00", "lithology_to": "45.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201807}}, {"model": "wells.lithologydescription", "pk": "6093dc00-3fdb-46d7-ba0f-7eee2e850f36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "150.00", "lithology_to": "400.00", "lithology_raw_data": "green", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": "0.3300", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 200'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201392}}, {"model": "wells.lithologydescription", "pk": "60952432-5ad6-4242-b94a-6af341daec4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "180.00", "lithology_to": "220.00", "lithology_raw_data": "BASALT-BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RED/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199108}}, {"model": "wells.lithologydescription", "pk": "609857f3-6ce6-46dd-87e3-aa4e44a25e41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "40.00", "lithology_to": "93.00", "lithology_raw_data": "MEDIUM/HARD; CLAY ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199188}}, {"model": "wells.lithologydescription", "pk": "60a1c158-5352-4abe-bc54-9abab5bc016c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "69.00", "lithology_to": "70.00", "lithology_raw_data": "FINE BR. SAND + GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198482}}, {"model": "wells.lithologydescription", "pk": "60b0b0dc-8bbf-469c-b8d3-e5a4dc64f11f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "97.00", "lithology_to": "117.00", "lithology_raw_data": "medium to coarse grained", "lithology_description": "49", "lithology_colour": "16", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197678}}, {"model": "wells.lithologydescription", "pk": "60b47b7c-0b19-48e6-a398-b05a97c460e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, TILL, SOFT, ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199625}}, {"model": "wells.lithologydescription", "pk": "60bf9fd6-983e-4350-b27e-5b6e128fb3c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "127.00", "lithology_to": "171.00", "lithology_raw_data": "silt", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201219}}, {"model": "wells.lithologydescription", "pk": "60cc7e65-d6fd-4e40-8906-392d5f4ae8ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T17:12:55Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:22:03Z", "activity_submission": null, "well_tag_number": 113074, "lithology_from": "330.00", "lithology_to": "350.00", "lithology_raw_data": "BROWN GRAVEL WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202797}}, {"model": "wells.lithologydescription", "pk": "60cee3cb-7f20-4029-add7-6bfcdc0d115b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 200'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203041}}, {"model": "wells.lithologydescription", "pk": "60d2c787-ceed-45b1-a410-cf9f48d7f316", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201861}}, {"model": "wells.lithologydescription", "pk": "60e5971b-1966-40a0-b9b5-fe012915a391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "600.00", "lithology_to": "650.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC - VERY FINE GRAINED", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "610'=FRACTURE, 1 LITRE PER MINUTE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199890}}, {"model": "wells.lithologydescription", "pk": "60e725be-e945-4775-89c0-e5e423f654f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:32:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:32:50Z", "activity_submission": null, "well_tag_number": 113282, "lithology_from": "0.00", "lithology_to": "321.00", "lithology_raw_data": "sand", "lithology_description": "11", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203962}}, {"model": "wells.lithologydescription", "pk": "610224a3-356b-4ef1-b415-ada4cf5868d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T18:52:11Z", "activity_submission": null, "well_tag_number": 112820, "lithology_from": "14.00", "lithology_to": "415.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201277}}, {"model": "wells.lithologydescription", "pk": "61168ff9-0c74-4017-bb8c-096956b6e098", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "2.00", "lithology_to": "10.00", "lithology_raw_data": "TILL, SILSTONE, SHALE, BRWON/GREY, MEDIUM HARD", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201537}}, {"model": "wells.lithologydescription", "pk": "61257a83-46aa-4069-a57c-050023457d96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "32.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200103}}, {"model": "wells.lithologydescription", "pk": "612ae8df-e6e1-44bb-889c-db179b52616d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, "well_tag_number": 112328, "lithology_from": "144.00", "lithology_to": "149.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197963}}, {"model": "wells.lithologydescription", "pk": "612ffc5b-0b3a-46a9-b834-d4551e6b5407", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "240.00", "lithology_to": "250.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING FRACTURES @ 244' TO 248'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200664}}, {"model": "wells.lithologydescription", "pk": "613decb5-bd5b-4ebf-a3f0-26073fbe2a1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198916}}, {"model": "wells.lithologydescription", "pk": "61450d1b-0229-4339-a593-c6e356ad41b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:11:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:11:13Z", "activity_submission": null, "well_tag_number": 113018, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sand, rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202515}}, {"model": "wells.lithologydescription", "pk": "61451d17-431d-4dba-b5df-5f11b1cedccb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, "well_tag_number": 112627, "lithology_from": "336.00", "lithology_to": null, "lithology_raw_data": "Clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200266}}, {"model": "wells.lithologydescription", "pk": "6148048d-8338-41d7-8bdb-714268236c15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, "well_tag_number": 113003, "lithology_from": "120.00", "lithology_to": "195.00", "lithology_raw_data": "Brown Clay and Silty Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202454}}, {"model": "wells.lithologydescription", "pk": "61602e52-3181-4714-be8f-86065ae7dccf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "73.00", "lithology_to": "83.00", "lithology_raw_data": "SILTY SANDS/GRAVELS (DAMP)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200936}}, {"model": "wells.lithologydescription", "pk": "616de034-4e23-46fb-b73f-ce8b8ddb4faf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:51Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-01T20:29:45Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL WITH GRAVEL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200798}}, {"model": "wells.lithologydescription", "pk": "61750739-3744-4f30-907f-c736f0caca85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "273.00", "lithology_to": "341.00", "lithology_raw_data": "FINE TO MEDIUM FINE, FRIABLE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "LOST CIRCULATION @ 300' AIRLIFTING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201642}}, {"model": "wells.lithologydescription", "pk": "618b033e-b67d-4831-aea9-f464beec4722", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "320.00", "lithology_to": "340.00", "lithology_raw_data": "Sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203612}}, {"model": "wells.lithologydescription", "pk": "618b7cb2-6a88-4c59-98e7-1060e1d28d13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "155.00", "lithology_to": "190.00", "lithology_raw_data": "BROWN SANDS AND SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197461}}, {"model": "wells.lithologydescription", "pk": "618feb8e-230d-4716-8e70-c536272b2335", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, "well_tag_number": 112625, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "SANDY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200199}}, {"model": "wells.lithologydescription", "pk": "61922503-b874-4ce2-9019-ec4379f0a9bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well_tag_number": 112479, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DEVELOP CLEAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199134}}, {"model": "wells.lithologydescription", "pk": "61b47285-9d12-48af-a8bb-b2aa279ee75c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "180.00", "lithology_to": "186.00", "lithology_raw_data": "FINE, SANDY SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200987}}, {"model": "wells.lithologydescription", "pk": "61b48e62-d95d-4b4f-a549-3c77c3eacaaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:57:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, "well_tag_number": 113293, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "sand with gravel, clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, dense stiff, dark grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204001}}, {"model": "wells.lithologydescription", "pk": "61c62380-448b-463d-a2bd-5242c50eb56e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "325.00", "lithology_to": "515.00", "lithology_raw_data": "SEAMS OF VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "508'=FRACTURE, 0.25 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198277}}, {"model": "wells.lithologydescription", "pk": "61d17169-96ba-487e-83b2-257419f1f63b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "175.00", "lithology_to": "177.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202038}}, {"model": "wells.lithologydescription", "pk": "61de8f85-8f46-4c15-acd6-f709907dc5b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "346.00", "lithology_to": "349.00", "lithology_raw_data": "SANDY MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201099}}, {"model": "wells.lithologydescription", "pk": "61e845c7-abe1-42ac-8e84-129b5b18dc5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "3.00", "lithology_to": "21.00", "lithology_raw_data": "W.B. GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202774}}, {"model": "wells.lithologydescription", "pk": "61f1db29-c04a-4ad3-96d1-f606715788f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198604}}, {"model": "wells.lithologydescription", "pk": "61f70791-6855-4386-b592-b5dd49188757", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "75.00", "lithology_to": "98.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY; LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199479}}, {"model": "wells.lithologydescription", "pk": "6205f16e-9189-4811-b019-efed314eb18b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, "well_tag_number": 112362, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198236}}, {"model": "wells.lithologydescription", "pk": "62109b41-e474-4fc9-96bd-abc136f0b758", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "168.00", "lithology_to": "183.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Gravelly", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203228}}, {"model": "wells.lithologydescription", "pk": "6217d54f-c308-4a75-80bd-0d19d9983493", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "108.00", "lithology_to": "402.00", "lithology_raw_data": "sand with clay/silt", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CLAY WITH WB SAND LAYERS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203922}}, {"model": "wells.lithologydescription", "pk": "621e6630-724d-46eb-a1cf-ab963d980858", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, "well_tag_number": 112493, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "FINE, MEDIUM, SAND, ROCKS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199246}}, {"model": "wells.lithologydescription", "pk": "62536087-917d-4210-9dfd-3c841deb0d5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "17.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "10", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "sulpher", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199773}}, {"model": "wells.lithologydescription", "pk": "625871b4-db64-463a-b063-28d2361c85c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "145.00", "lithology_to": "167.00", "lithology_raw_data": "SHALE/FINE SANDSTONE/SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198072}}, {"model": "wells.lithologydescription", "pk": "625faea2-c781-474b-ac25-137e0ff10598", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:56:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, "well_tag_number": 112317, "lithology_from": "120.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "145'=20 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197869}}, {"model": "wells.lithologydescription", "pk": "6272c8e6-1347-4e47-8ac7-3246c5a10f30", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202517}}, {"model": "wells.lithologydescription", "pk": "628b0ba9-f300-4174-8612-0494006b5c72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203358}}, {"model": "wells.lithologydescription", "pk": "6291a0c5-7b57-4e0b-ae23-4447c0aac451", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "193.00", "lithology_to": "251.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203161}}, {"model": "wells.lithologydescription", "pk": "62a3d342-1a1f-4c12-99c7-f29689a6990e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "400.00", "lithology_to": "525.00", "lithology_raw_data": "AMBER, FINE GRAINED FORMATION", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198099}}, {"model": "wells.lithologydescription", "pk": "62ae1733-1c48-4afd-9588-a0e0bb572262", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "202.00", "lithology_to": "540.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 500'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203270}}, {"model": "wells.lithologydescription", "pk": "62c97ede-9c19-485f-aa3b-1f1475a6b8e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT, SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200179}}, {"model": "wells.lithologydescription", "pk": "62cea1cb-dcc5-45d8-b5a4-fb759dbf8abd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, "well_tag_number": 113299, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, black & white", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204024}}, {"model": "wells.lithologydescription", "pk": "62d6f4e9-7c42-4c30-9b2d-8c99c0a9ce84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199282}}, {"model": "wells.lithologydescription", "pk": "62daf4ae-a824-4206-87e2-c59683ade1ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:52:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, "well_tag_number": 112907, "lithology_from": "15.00", "lithology_to": "36.00", "lithology_raw_data": "SAND, GRAVEL, ROCK FRAGMENTS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201928}}, {"model": "wells.lithologydescription", "pk": "62de36ae-3c6e-4231-8c19-971c2281bf50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "60.00", "lithology_to": "69.00", "lithology_raw_data": "and sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198831}}, {"model": "wells.lithologydescription", "pk": "62e9a5c0-3c8e-46b1-ad6c-233e86682350", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:01:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:51Z", "activity_submission": null, "well_tag_number": 112350, "lithology_from": "38.00", "lithology_to": "296.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198178}}, {"model": "wells.lithologydescription", "pk": "62f342f0-0e86-4073-a746-9e53a5e0818b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, "well_tag_number": 112389, "lithology_from": "12.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, GRANITE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURES - NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198430}}, {"model": "wells.lithologydescription", "pk": "630b7fa9-df15-48f2-9aba-80dec88a7999", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "53.00", "lithology_to": "71.00", "lithology_raw_data": "SAND, FINE-MED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197873}}, {"model": "wells.lithologydescription", "pk": "632c2672-3f3f-4e6d-b358-badea6572ada", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "65.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BAROID 41, DRILLING MUD AND BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200396}}, {"model": "wells.lithologydescription", "pk": "6336b546-c801-47b4-9ca3-692c9bcd5c25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, "well_tag_number": 112242, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "GRAVELY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197489}}, {"model": "wells.lithologydescription", "pk": "6341a796-0ec1-4369-9568-46bbc83f3656", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "86.00", "lithology_to": "113.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@100' 8-40 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201866}}, {"model": "wells.lithologydescription", "pk": "63423693-8944-471c-a85e-cdebbfaff6cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, "well_tag_number": 112348, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "gravel sand", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "20 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198171}}, {"model": "wells.lithologydescription", "pk": "6343c719-8df6-44e1-ab26-e55715daf1e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:23:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, "well_tag_number": 112702, "lithology_from": "31.00", "lithology_to": "35.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200571}}, {"model": "wells.lithologydescription", "pk": "6347bfb2-c923-4144-90e3-a25885ae926e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "112.00", "lithology_to": "114.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199500}}, {"model": "wells.lithologydescription", "pk": "6352051b-6156-4fe1-ac58-b8088f7d44b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "116.00", "lithology_to": "127.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203195}}, {"model": "wells.lithologydescription", "pk": "63525c5c-d1c0-4206-865d-e5cd2db8ee7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, "well_tag_number": 113028, "lithology_from": "122.00", "lithology_to": "182.00", "lithology_raw_data": "GREY CLAY AND ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202574}}, {"model": "wells.lithologydescription", "pk": "6365f644-77ba-460d-9bbc-c0ec2685a4b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "75.00", "lithology_to": "170.00", "lithology_raw_data": "FINE GRAINED SAND - SOME GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198415}}, {"model": "wells.lithologydescription", "pk": "636a2264-eaca-457d-8d11-eecfca6def38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "31.00", "lithology_to": "40.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198556}}, {"model": "wells.lithologydescription", "pk": "63865bf2-f728-43d4-918d-8d2aa92ef024", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "324.00", "lithology_to": "385.00", "lithology_raw_data": "medium", "lithology_description": "50", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201184}}, {"model": "wells.lithologydescription", "pk": "638b4ccf-17b5-4f96-b969-2be061bc0a16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "FINE SAND, SOME SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200992}}, {"model": "wells.lithologydescription", "pk": "63951719-c408-47af-a790-84297ddce45d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "36.00", "lithology_to": "48.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199017}}, {"model": "wells.lithologydescription", "pk": "63a4f26d-370d-485b-b16c-83a3dfe78c6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "COBBLES AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200700}}, {"model": "wells.lithologydescription", "pk": "63a58698-6111-4c4f-884a-de81d091d003", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198836}}, {"model": "wells.lithologydescription", "pk": "63a706ed-0b84-4f8a-b074-3f2b92095c8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "26.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, black", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204006}}, {"model": "wells.lithologydescription", "pk": "63a9c390-4fb6-4f55-9dca-3f32e76d0714", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200053}}, {"model": "wells.lithologydescription", "pk": "63aab284-bfcd-415c-b12b-0aa8870f30fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "172.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199680}}, {"model": "wells.lithologydescription", "pk": "63afbf19-5258-4aaa-bb59-73c3ff473b40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "230.00", "lithology_to": "283.00", "lithology_raw_data": "Hard Grey Bedrock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202463}}, {"model": "wells.lithologydescription", "pk": "63b4e09c-07fc-49b7-abb4-e5759eb43912", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198713}}, {"model": "wells.lithologydescription", "pk": "63b7f342-d9bb-4eb2-8070-dd03926af539", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "53.00", "lithology_to": "91.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199377}}, {"model": "wells.lithologydescription", "pk": "63c72c91-31e2-4cc6-a947-b7f662ba2049", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "122.00", "lithology_to": "124.00", "lithology_raw_data": "SS DK GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143922}}, {"model": "wells.lithologydescription", "pk": "63d4ff25-17e2-4a8f-850e-357fb9f468bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well_tag_number": 113150, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203288}}, {"model": "wells.lithologydescription", "pk": "63d510b3-0c03-435b-b612-6763f032c69d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "133.00", "lithology_to": "134.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201970}}, {"model": "wells.lithologydescription", "pk": "63d95e50-00da-4cac-b6ec-850b275f55d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "30.00", "lithology_to": "42.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198471}}, {"model": "wells.lithologydescription", "pk": "63e683cf-7e40-465c-9b6a-e801278f0b3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": "24.00", "lithology_to": "405.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203040}}, {"model": "wells.lithologydescription", "pk": "63f93aa8-a39d-4b13-b5dd-8f7cbe9026e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FINAL YIELD ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203878}}, {"model": "wells.lithologydescription", "pk": "6411352a-42c1-4b9a-be69-42acc58ccbfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "15.00", "lithology_to": "21.00", "lithology_raw_data": "sand,fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "manganese 0iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203317}}, {"model": "wells.lithologydescription", "pk": "64120fa8-15ee-4d9f-ae0e-c69049d208d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well_tag_number": 112898, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201880}}, {"model": "wells.lithologydescription", "pk": "641ad253-9a95-4e17-9b61-823cdcc25631", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "44.00", "lithology_to": "60.00", "lithology_raw_data": "Soft clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203598}}, {"model": "wells.lithologydescription", "pk": "641bdd81-de1e-4d4a-95d9-b6f36ebd1c01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "76.00", "lithology_to": "93.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198367}}, {"model": "wells.lithologydescription", "pk": "641ccd41-f392-4615-a22f-1d05bdfdb065", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "63.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201819}}, {"model": "wells.lithologydescription", "pk": "64204a12-1e5e-4f64-aa13-e8321e5981b7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:00:04Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:00:31Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "SAND AND GRAVEL, GREY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172300}}, {"model": "wells.lithologydescription", "pk": "6434ff85-1fe9-4283-85da-9c73446eeb2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T23:16:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, "well_tag_number": 100127, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130142}}, {"model": "wells.lithologydescription", "pk": "643c0f41-e57b-4e51-bc36-b5f1763818a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "38.00", "lithology_to": "49.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198298}}, {"model": "wells.lithologydescription", "pk": "643ecb39-0e00-4115-b7ab-e5b7227e1c61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "205.00", "lithology_to": "280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203536}}, {"model": "wells.lithologydescription", "pk": "6459b4a7-aed8-4889-b02a-f31602947dc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, "well_tag_number": 112299, "lithology_from": "117.00", "lithology_to": "129.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197776}}, {"model": "wells.lithologydescription", "pk": "645d0d86-157d-4128-bef3-1f8defd67391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "144.00", "lithology_to": "168.00", "lithology_raw_data": "DAMP GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203174}}, {"model": "wells.lithologydescription", "pk": "64734da0-1daf-403f-b305-0bf45a451313", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well_tag_number": 113143, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 310' - 1.5 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203260}}, {"model": "wells.lithologydescription", "pk": "6473e3ca-a732-41b8-8228-67c5835b7289", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "82.00", "lithology_to": "84.00", "lithology_raw_data": "GREEN/GREY VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197987}}, {"model": "wells.lithologydescription", "pk": "647903f3-6686-4657-a658-5d947d5c0878", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "207.00", "lithology_to": "220.00", "lithology_raw_data": "SHALE, SOFT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197764}}, {"model": "wells.lithologydescription", "pk": "647f495d-fb89-4f4f-9600-325fe356310a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "295.00", "lithology_to": "305.00", "lithology_raw_data": "large fracture", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "39", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202357}}, {"model": "wells.lithologydescription", "pk": "64942182-5609-441a-9d0c-9bd25b711b3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "80.00", "lithology_to": "204.00", "lithology_raw_data": "volcanic", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 120'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204081}}, {"model": "wells.lithologydescription", "pk": "64a21168-887e-4493-97a2-98df96095488", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, "well_tag_number": 112564, "lithology_from": "80.00", "lithology_to": "86.00", "lithology_raw_data": "CEMENT, GRAVEL, BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199748}}, {"model": "wells.lithologydescription", "pk": "64b57ac3-3010-4975-800b-f923c6b59042", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "137.00", "lithology_to": "158.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201423}}, {"model": "wells.lithologydescription", "pk": "64c4d1c3-418e-4af5-b54b-4b257a2e5040", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "50.00", "lithology_to": "69.00", "lithology_raw_data": "till", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198160}}, {"model": "wells.lithologydescription", "pk": "64c973bf-41cd-48ea-a9dd-ab1b061fd8bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "174.00", "lithology_to": "206.00", "lithology_raw_data": "medium fine", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201427}}, {"model": "wells.lithologydescription", "pk": "64d19438-ab71-4fe6-9049-ea6849e508b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well_tag_number": 112549, "lithology_from": "560.00", "lithology_to": "640.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199656}}, {"model": "wells.lithologydescription", "pk": "64d745a0-db33-4e4e-ade6-f924788abdd1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:16:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, "well_tag_number": 112542, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199614}}, {"model": "wells.lithologydescription", "pk": "64e67189-6037-4459-bf34-90302c959a78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200393}}, {"model": "wells.lithologydescription", "pk": "64ec7972-bb11-405d-8a42-6b4e7fca9d01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:07:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:07:36Z", "activity_submission": null, "well_tag_number": 112931, "lithology_from": "37.00", "lithology_to": "175.00", "lithology_raw_data": "BEDROCK/SANDSTONE", "lithology_description": "40", "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "87.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202072}}, {"model": "wells.lithologydescription", "pk": "64f619cb-6da9-4676-a48d-f08ca76f2b79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "23.00", "lithology_to": "130.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201450}}, {"model": "wells.lithologydescription", "pk": "64ff6134-ff20-4392-87af-d66414bb3802", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:05:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-04T06:07:01Z", "activity_submission": null, "well_tag_number": 112245, "lithology_from": "47.00", "lithology_to": "175.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "60', 85' = FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197503}}, {"model": "wells.lithologydescription", "pk": "650457e2-5fea-41a9-9221-e959d7974719", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "116.00", "lithology_to": "120.00", "lithology_raw_data": "BLACK & RED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132272}}, {"model": "wells.lithologydescription", "pk": "65078888-2b0f-4e0a-b599-054ebb5cf4b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, "well_tag_number": 112242, "lithology_from": "5.00", "lithology_to": "26.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197490}}, {"model": "wells.lithologydescription", "pk": "650cdb84-f3b3-4cca-a15d-ecfbf49d92b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "ANGULAR, GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199270}}, {"model": "wells.lithologydescription", "pk": "6515e808-1e5a-42a0-a948-e1853c58abe8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well_tag_number": 113070, "lithology_from": "46.00", "lithology_to": "47.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202790}}, {"model": "wells.lithologydescription", "pk": "652e7433-f94e-4693-9e5e-7afceffff7e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T18:22:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, "well_tag_number": 112532, "lithology_from": "35.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE AND SILTSTONE LAYERED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED BETWEEN LAYERS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199529}}, {"model": "wells.lithologydescription", "pk": "65381873-a7e0-4ef8-9991-5d993e033af5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, "well_tag_number": 112766, "lithology_from": "1035.20", "lithology_to": "1107.30", "lithology_raw_data": "SANDSTONE WITH SILTSTONE AND MUDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, VARIED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201014}}, {"model": "wells.lithologydescription", "pk": "6544514c-61d7-468d-9c6e-1482d737f93c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, "well_tag_number": 112697, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200551}}, {"model": "wells.lithologydescription", "pk": "654b6d68-1d2a-4c2d-8724-e93eb8a59011", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:36:56Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "410.00", "lithology_to": "430.00", "lithology_raw_data": "Hard fine salt & pepper sandstone", "lithology_description": "47", "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "water bearing, fractured", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203384}}, {"model": "wells.lithologydescription", "pk": "65548a46-2dd9-4419-8fc0-05c988121e16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "26.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202327}}, {"model": "wells.lithologydescription", "pk": "65687da9-140e-4598-afe2-cb6bd3332dde", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BLASTED ROCK FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "5", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201953}}, {"model": "wells.lithologydescription", "pk": "6569e3bf-7b71-46b7-bddd-5fec2f3323bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "95.00", "lithology_to": "149.00", "lithology_raw_data": "SILTY SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST TO WET; WATERBEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200745}}, {"model": "wells.lithologydescription", "pk": "656a246e-d18a-4283-9aad-385ec29d5078", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "167.00", "lithology_to": "353.00", "lithology_raw_data": "SHALE AND SILSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201089}}, {"model": "wells.lithologydescription", "pk": "65749879-44cb-40fb-bf73-1bf3ab45af55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198913}}, {"model": "wells.lithologydescription", "pk": "65a7b6f2-1d87-478d-a518-5e2298bcb30c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "50.00", "lithology_to": "52.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203096}}, {"model": "wells.lithologydescription", "pk": "65d16c5b-a6e9-4aff-af17-948a7da44e76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "130.00", "lithology_to": "155.00", "lithology_raw_data": "SANDS, GRAVELS AND SILTS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197460}}, {"model": "wells.lithologydescription", "pk": "65d455ba-348d-439b-bb23-5e50deca362d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "196.00", "lithology_to": "198.00", "lithology_raw_data": "WET VERY SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203143}}, {"model": "wells.lithologydescription", "pk": "65d55e72-de96-4715-b0c3-92f52c12491a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "131.00", "lithology_to": "152.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203652}}, {"model": "wells.lithologydescription", "pk": "65dbfb3b-6aad-404a-9537-23a4928c7bd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "505.00", "lithology_to": "530.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "intermitten quart", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202851}}, {"model": "wells.lithologydescription", "pk": "65e35b17-88c8-4042-829e-887ea5bf2746", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "68.00", "lithology_to": "92.00", "lithology_raw_data": "SILT, GRAVEL & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201830}}, {"model": "wells.lithologydescription", "pk": "65e8ec1c-afe6-4774-af82-70247700db5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-01T19:59:36Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=TAN, BROWN AND WHITE; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200792}}, {"model": "wells.lithologydescription", "pk": "65e8f362-59ad-4b6d-805b-a8dcd7b52fe9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "190.00", "lithology_to": "222.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOLID; WATER BEARING FRACTURE @ 209'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200737}}, {"model": "wells.lithologydescription", "pk": "65ec085e-cd8f-4cb4-ba45-593e58493176", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203088}}, {"model": "wells.lithologydescription", "pk": "660472d2-ef11-4b45-ab03-a4daa68a5d00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198603}}, {"model": "wells.lithologydescription", "pk": "6607d85d-1d77-4de7-8e8e-98dd4d7466fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, "well_tag_number": 113302, "lithology_from": "5.00", "lithology_to": "11.00", "lithology_raw_data": "fine-medium", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204044}}, {"model": "wells.lithologydescription", "pk": "6609b059-f9c7-4168-936b-046921ce77d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "172.00", "lithology_to": "188.00", "lithology_raw_data": "SHALE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197949}}, {"model": "wells.lithologydescription", "pk": "661556b0-c4e1-43e9-a49d-25c1e434e6f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "410.00", "lithology_to": "415.00", "lithology_raw_data": "BROWN/GREY/WHITE VOLCANIC WITH WHITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "1+ USGPM, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198409}}, {"model": "wells.lithologydescription", "pk": "661ae6e1-1f57-4185-8696-29ca90e05880", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "125.00", "lithology_to": "127.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202002}}, {"model": "wells.lithologydescription", "pk": "661efec0-b2b3-4972-adfb-3471f21bfcdf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "36.00", "lithology_to": "58.00", "lithology_raw_data": "Brown fine to medium silty sand, some gravel, some silt balls", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203465}}, {"model": "wells.lithologydescription", "pk": "66219757-9b91-445b-b640-5e90556f463f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, "well_tag_number": 113277, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "crystalline", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203941}}, {"model": "wells.lithologydescription", "pk": "6631bcd3-a7e1-4fed-90bb-f51b7ba43e3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "10.00", "lithology_to": "27.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198496}}, {"model": "wells.lithologydescription", "pk": "663cfb70-55e5-453c-adc8-535cfcd1c06c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, "well_tag_number": 113291, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "sand with clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dense/stiff hardness, light grey colour, dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203993}}, {"model": "wells.lithologydescription", "pk": "66409697-fab5-42ab-bf9b-2d578328ab4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198961}}, {"model": "wells.lithologydescription", "pk": "6648066d-b787-456b-a7f1-fd25c390212f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "12.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199772}}, {"model": "wells.lithologydescription", "pk": "665021b9-9269-4ef2-8c53-6aecbd169747", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": "27.00", "lithology_to": "355.00", "lithology_raw_data": "bed rock, maybe lime stone", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201190}}, {"model": "wells.lithologydescription", "pk": "6652172d-45d5-494c-99ea-b8c4603b2a52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, "well_tag_number": 112929, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "GRAVEL TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202062}}, {"model": "wells.lithologydescription", "pk": "6656699a-c7c1-46cd-8d9a-4948f70e66ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 400'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202999}}, {"model": "wells.lithologydescription", "pk": "66782e8e-a926-4597-a942-dab9ece06f99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "117.00", "lithology_to": "120.00", "lithology_raw_data": "DARK GREY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201529}}, {"model": "wells.lithologydescription", "pk": "66809163-4765-4361-ab47-07601a442b7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:04Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "29.00", "lithology_to": "62.00", "lithology_raw_data": "CLAY, GREY BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197759}}, {"model": "wells.lithologydescription", "pk": "6683a02c-ba5c-4357-af35-4b4ddf0e3e63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "16.00", "lithology_to": "25.00", "lithology_raw_data": "MEDIUM-SOFT SHALE AND BENTONITIC LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197992}}, {"model": "wells.lithologydescription", "pk": "669ce832-3299-427f-ace8-e7d99fdf48d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "102.00", "lithology_to": "104.00", "lithology_raw_data": "FINE SAND HARD PACKED WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201662}}, {"model": "wells.lithologydescription", "pk": "66a288e5-f0e2-4c3a-b70e-807be5d23629", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "50.00", "lithology_to": "75.00", "lithology_raw_data": "BROWN FINE SANDS (WET)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199424}}, {"model": "wells.lithologydescription", "pk": "66a74a69-65f0-492d-86a3-e6db4fbed0d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199971}}, {"model": "wells.lithologydescription", "pk": "66b059ae-322f-4e67-b7c9-607c260c4e8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "18.00", "lithology_to": "28.00", "lithology_raw_data": "gravel", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203820}}, {"model": "wells.lithologydescription", "pk": "66b1c854-4913-462d-8990-38d095f6ab4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "264.00", "lithology_to": "273.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201641}}, {"model": "wells.lithologydescription", "pk": "66c4907c-9f06-4d5d-b974-19b9ea65e31e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "52.00", "lithology_to": "68.00", "lithology_raw_data": "SILTY SAND WITH GRAVEL LENSES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "4-5", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202341}}, {"model": "wells.lithologydescription", "pk": "66cf3244-006f-438b-8db7-4749b9563385", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:58:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, "well_tag_number": 112651, "lithology_from": "185.00", "lithology_to": null, "lithology_raw_data": "SAND (NO WATER)", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200357}}, {"model": "wells.lithologydescription", "pk": "66df1a33-c5ad-4c2e-ab50-e016ec00ca74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "Harder Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203600}}, {"model": "wells.lithologydescription", "pk": "66e52115-44a3-4f51-982f-19b0ba2606cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well_tag_number": 112982, "lithology_from": "65.00", "lithology_to": "77.00", "lithology_raw_data": "MEDIUM SAND, SCATTERED GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20-30 WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202363}}, {"model": "wells.lithologydescription", "pk": "66e55992-1544-4205-adb7-5d367a9210db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, "well_tag_number": 112900, "lithology_from": "10.00", "lithology_to": "400.00", "lithology_raw_data": "GRANITE BEDROCK, WHITE/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BEDROCK FRACTURED @ 378'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201891}}, {"model": "wells.lithologydescription", "pk": "66f534a2-5dd0-4da6-911c-3cf5a0af0ee4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, "well_tag_number": 113168, "lithology_from": "90.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203370}}, {"model": "wells.lithologydescription", "pk": "66ffb64d-c52e-4253-b6b6-25bcc142712c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "80.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203388}}, {"model": "wells.lithologydescription", "pk": "67029a1d-893b-46fc-aca3-89a97c3884d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T22:43:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, "well_tag_number": 112636, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Iron 1-2pm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200305}}, {"model": "wells.lithologydescription", "pk": "670a04a2-d625-4fe5-920a-be052102691c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "8.00", "lithology_to": "53.00", "lithology_raw_data": "gravel with black streaks", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197643}}, {"model": "wells.lithologydescription", "pk": "67174ca0-96d0-431a-b590-11b195dfcadb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well_tag_number": 112401, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198485}}, {"model": "wells.lithologydescription", "pk": "671da84e-780f-4454-acfd-c0860c5bc93f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "58.00", "lithology_to": "270.00", "lithology_raw_data": "shale", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "VERY SOFT FROM 215' to 270'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204075}}, {"model": "wells.lithologydescription", "pk": "6723372d-99d2-493b-9fe2-bc171b298b50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well_tag_number": 112439, "lithology_from": "8.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198785}}, {"model": "wells.lithologydescription", "pk": "672aa034-677c-4542-9ac2-c2b1797c29ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "78.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM TO COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198500}}, {"model": "wells.lithologydescription", "pk": "672c10c3-9f22-4fe0-9f2a-ecc0aa57b60e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "76.00", "lithology_to": "80.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198875}}, {"model": "wells.lithologydescription", "pk": "672e9cc5-7f99-4942-9329-ef1e55d2d094", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "SAND AND GRAVEL, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203153}}, {"model": "wells.lithologydescription", "pk": "67387b67-8a22-46aa-b892-c870f5c9d920", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "140.00", "lithology_to": "168.00", "lithology_raw_data": "SILT, TRACE CLAY, OCCASIONAL SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200985}}, {"model": "wells.lithologydescription", "pk": "6746edb8-89c3-4d15-90cc-7652a3a368a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "150.00", "lithology_to": "295.00", "lithology_raw_data": "bedrock,soft zones at 220'", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 220'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202356}}, {"model": "wells.lithologydescription", "pk": "674cff5f-b018-4b8b-be30-b7be4c261167", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "gravel and organics", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198810}}, {"model": "wells.lithologydescription", "pk": "67511b28-8dd2-424b-bcb7-83e1b93fe874", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "391.00", "lithology_to": "399.00", "lithology_raw_data": "BROWN SAND AND GRAVEL, PACKED, WET", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199763}}, {"model": "wells.lithologydescription", "pk": "675f2d85-41f4-40f3-9418-c3df280bf042", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:22:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, "well_tag_number": 112427, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198676}}, {"model": "wells.lithologydescription", "pk": "676a3c67-4b36-4f41-8cb3-4cc6a1c14137", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": "6.00", "lithology_to": "23.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201855}}, {"model": "wells.lithologydescription", "pk": "677318d1-288b-455d-b9aa-fda8e598c3db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:34:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T22:35:14Z", "activity_submission": null, "well_tag_number": 112516, "lithology_from": "17.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": ".125 US/IMP GPM @ 30'; .5 US/IMP GPM @ 90'; .75 US/IMP GPM @ 140'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199397}}, {"model": "wells.lithologydescription", "pk": "677522c1-c0a8-4d93-9e94-10ceda757e3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well_tag_number": 112919, "lithology_from": "89.00", "lithology_to": "93.00", "lithology_raw_data": "IRON STAINED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202018}}, {"model": "wells.lithologydescription", "pk": "67771910-219a-4f50-81e1-2b2705c460b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:37:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, "well_tag_number": 113031, "lithology_from": "0.00", "lithology_to": "90.00", "lithology_raw_data": "SOFT BROWN FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202593}}, {"model": "wells.lithologydescription", "pk": "677904e5-72e0-4b3b-836d-04511e0bc7ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "102.00", "lithology_to": "118.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198388}}, {"model": "wells.lithologydescription", "pk": "6780333c-9418-42ef-98e6-0f123050a386", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "SILT AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205293}}, {"model": "wells.lithologydescription", "pk": "678f037b-4cdd-45a6-98ea-09b0985f76de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, "well_tag_number": 112712, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOP SOIL WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200629}}, {"model": "wells.lithologydescription", "pk": "679ac2d1-2ecf-46ac-8022-b1c55f23ece6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "799.00", "lithology_to": "819.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FAST DRILLING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203064}}, {"model": "wells.lithologydescription", "pk": "679dbb9f-0af5-4d47-93d3-ba80be56e65f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "183.00", "lithology_to": "186.00", "lithology_raw_data": "very silty, sandy", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203785}}, {"model": "wells.lithologydescription", "pk": "67a191a0-ef8d-49cf-8fa9-5d43f8f7dcdd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:35:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:42:58Z", "activity_submission": null, "well_tag_number": 112778, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "EXISTING BENTONITE SEAL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201080}}, {"model": "wells.lithologydescription", "pk": "67c20323-dbc0-4de7-a665-ffb7717d0a48", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:39:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, "well_tag_number": 112949, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202142}}, {"model": "wells.lithologydescription", "pk": "67c50688-5d88-4484-981f-49f8cc128675", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well_tag_number": 112238, "lithology_from": "213.00", "lithology_to": "280.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197470}}, {"model": "wells.lithologydescription", "pk": "67cf5a71-502b-4452-8b44-58f5cc9d092d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, "well_tag_number": 112909, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "25% COARSE GRAVEL", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201934}}, {"model": "wells.lithologydescription", "pk": "67d989c2-e8b8-42c0-a620-c6c5a34c0e41", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:20:51Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:44:15Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": "MEDIUM-HARD; DIRTY, COARSE SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199543}}, {"model": "wells.lithologydescription", "pk": "67dd95d7-9a63-4be7-95c5-293f08de2ed4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL, SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200035}}, {"model": "wells.lithologydescription", "pk": "67e708ff-e276-4b92-996c-dc9423410248", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "38.00", "lithology_to": "52.00", "lithology_raw_data": "SAND AND GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198533}}, {"model": "wells.lithologydescription", "pk": "67e95091-96ae-4400-842a-c038186854a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "250.00", "lithology_to": "260.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132534}}, {"model": "wells.lithologydescription", "pk": "67f2130a-b04a-4db3-91c1-67b33a441216", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "155.00", "lithology_to": "178.00", "lithology_raw_data": "GRAVEL AND SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198466}}, {"model": "wells.lithologydescription", "pk": "6803e3c1-eadb-4f67-a5ce-4029f7a87975", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, "well_tag_number": 112251, "lithology_from": "68.00", "lithology_to": "82.00", "lithology_raw_data": "SILTSTONE SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "70.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197522}}, {"model": "wells.lithologydescription", "pk": "68079113-59e5-4209-adc6-7f974e6e2dad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "140.00", "lithology_to": "240.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "39", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198235}}, {"model": "wells.lithologydescription", "pk": "680d54ba-5f95-4c22-994d-ac2214cddf53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "197.00", "lithology_to": "199.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198081}}, {"model": "wells.lithologydescription", "pk": "680dd619-e7e9-4bf6-b0ca-f8f2fb637602", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well_tag_number": 112341, "lithology_from": "525.00", "lithology_to": "650.00", "lithology_raw_data": "BLACK/BROWN, BASALT TYPE VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198117}}, {"model": "wells.lithologydescription", "pk": "6812db70-24f1-41cb-aba6-18fe8a060a0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "98.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198290}}, {"model": "wells.lithologydescription", "pk": "6813bff8-fc8d-4fba-82b3-9de5be1200fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well_tag_number": 113271, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "rocks, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203924}}, {"model": "wells.lithologydescription", "pk": "6818022c-1e8c-496f-bf1a-eb0dc8985478", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "230.00", "lithology_to": "235.00", "lithology_raw_data": "FINE SILTY SAND, TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202984}}, {"model": "wells.lithologydescription", "pk": "681b6864-283e-4ce6-b6a1-99636ac44c48", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well_tag_number": 112351, "lithology_from": "11.00", "lithology_to": "32.00", "lithology_raw_data": "and sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet - thick brown silty wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198181}}, {"model": "wells.lithologydescription", "pk": "682eb5f6-6fb5-4f14-9761-58fdc73ac4c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "168.00", "lithology_to": "173.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132530}}, {"model": "wells.lithologydescription", "pk": "6831101b-2a41-431d-b363-0e98e6819744", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, "well_tag_number": 112329, "lithology_from": "60.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY AND ROCKS, SAND LENSES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197966}}, {"model": "wells.lithologydescription", "pk": "68482b8c-5a9d-4bd5-8691-309cdcadd225", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "235.00", "lithology_to": "280.00", "lithology_raw_data": "MEDIUM/HARD, HARDPAN WITH LARGE GRANITE BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198417}}, {"model": "wells.lithologydescription", "pk": "6851ff7d-4ae8-4955-94da-ec7a9977c83c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "135.00", "lithology_to": "145.00", "lithology_raw_data": "COBBLE STONE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202109}}, {"model": "wells.lithologydescription", "pk": "6854c5b5-95d2-437a-8db4-26791293cc15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, "well_tag_number": 113205, "lithology_from": "15.00", "lithology_to": "45.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203585}}, {"model": "wells.lithologydescription", "pk": "685be831-a608-4e5d-8c06-f520449c0487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well_tag_number": 112738, "lithology_from": "5.00", "lithology_to": "10.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200819}}, {"model": "wells.lithologydescription", "pk": "685e9b44-609c-4a65-9c68-0bdd40a32ace", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "140.00", "lithology_to": "143.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LOW PRESSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199483}}, {"model": "wells.lithologydescription", "pk": "6862776c-c736-4454-a32f-84bc4a387831", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "385.00", "lithology_to": "451.00", "lithology_raw_data": "BLUE/WHITE VOLCANIC WITH SEAMS OF WHITE FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197395}}, {"model": "wells.lithologydescription", "pk": "6862f8bf-8dd2-4ce9-94ba-a39fb7c78ce5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "210.00", "lithology_to": "270.00", "lithology_raw_data": "SILTSTONE/SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST-WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198083}}, {"model": "wells.lithologydescription", "pk": "686587fc-1e3c-4360-b54f-40c2c2d01c6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, "well_tag_number": 113179, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "Till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203443}}, {"model": "wells.lithologydescription", "pk": "6880e395-afad-465e-adcb-174370dff0a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "14.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 200'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203875}}, {"model": "wells.lithologydescription", "pk": "68861433-67c8-42b6-8f34-9a126d86fca3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "56.00", "lithology_to": "63.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198301}}, {"model": "wells.lithologydescription", "pk": "688902b9-dc65-454f-a089-fd3b51d2ba3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, "well_tag_number": 112578, "lithology_from": "315.00", "lithology_to": "385.00", "lithology_raw_data": "BROKEN ZONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER SYSTEMATICALLY INCREASED TO 30 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199844}}, {"model": "wells.lithologydescription", "pk": "688a8779-1fef-4ef5-94ca-29726219e55d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, "well_tag_number": 112304, "lithology_from": "130.00", "lithology_to": "140.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197801}}, {"model": "wells.lithologydescription", "pk": "688b900c-fc44-4c81-bab9-9158bbec54d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY ROCKS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199551}}, {"model": "wells.lithologydescription", "pk": "688c4012-997a-49fc-88f9-e372b0798627", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well_tag_number": 112806, "lithology_from": "35.00", "lithology_to": "205.00", "lithology_raw_data": "some broken zones", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 50'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201201}}, {"model": "wells.lithologydescription", "pk": "68ab0292-b8b4-491c-8726-36215726f9aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:09:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, "well_tag_number": 112462, "lithology_from": "83.00", "lithology_to": "87.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198989}}, {"model": "wells.lithologydescription", "pk": "68ae4b9c-1093-4626-bd4c-ffa50294824a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "54.00", "lithology_to": "73.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198327}}, {"model": "wells.lithologydescription", "pk": "68b00b0b-afd1-41e9-a14f-e64a9e2bf49a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and rock", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198191}}, {"model": "wells.lithologydescription", "pk": "68b1e0b4-f940-4435-878c-ff5f7c5dfc10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "40.00", "lithology_to": "121.00", "lithology_raw_data": "SILTY CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198018}}, {"model": "wells.lithologydescription", "pk": "68b2fa0e-09a1-4b4b-9d0b-94e16b902d0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199259}}, {"model": "wells.lithologydescription", "pk": "68bacd24-d0c3-4ace-925c-29f66bf3e7e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "176.00", "lithology_to": "190.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200736}}, {"model": "wells.lithologydescription", "pk": "68c6a738-4bab-48c1-b890-c3675cd01f29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "0.00", "lithology_to": "15.50", "lithology_raw_data": "NO SAMPLES WERE COLLECTED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201170}}, {"model": "wells.lithologydescription", "pk": "68c99e25-af1d-483e-a165-33768f9fc260", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well_tag_number": 112239, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197472}}, {"model": "wells.lithologydescription", "pk": "68d0826f-93bc-4ce6-9d87-d787fbde5b96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194604}}, {"model": "wells.lithologydescription", "pk": "68d25127-b733-46dc-b4c4-895fd28490a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "22.00", "lithology_to": "38.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198297}}, {"model": "wells.lithologydescription", "pk": "68d55850-15f9-4571-824f-0a782b711a9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199579}}, {"model": "wells.lithologydescription", "pk": "68d7236b-8738-47b5-bdf7-2a3f94e79e2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T18:00:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T18:00:21Z", "activity_submission": null, "well_tag_number": 113244, "lithology_from": "1.50", "lithology_to": "284.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "50", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 266'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203792}}, {"model": "wells.lithologydescription", "pk": "68d74a66-9b35-4350-b3c2-57eaca599179", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199102}}, {"model": "wells.lithologydescription", "pk": "68de6d57-35eb-4a3c-8891-0f9befc84b06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:48:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, "well_tag_number": 112968, "lithology_from": "3.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY, SAND, GRAVEL, SMALL COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202276}}, {"model": "wells.lithologydescription", "pk": "68e31c9c-3b5d-4c22-9bec-5c0493da2444", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T18:57:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, "well_tag_number": 112829, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201353}}, {"model": "wells.lithologydescription", "pk": "68e3b2e8-a648-4680-b902-85b2413a1914", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, "well_tag_number": 112753, "lithology_from": "11.00", "lithology_to": "23.00", "lithology_raw_data": "GREY CLAY WITH SAND SEAMS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200919}}, {"model": "wells.lithologydescription", "pk": "68eb25fd-5dc4-4ad6-9222-8d3a0913e328", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "110.00", "lithology_to": "118.00", "lithology_raw_data": "and silts", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198259}}, {"model": "wells.lithologydescription", "pk": "6901c17b-f277-43c8-a2b3-85921c67cbe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "24.00", "lithology_to": "49.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Unstable", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197673}}, {"model": "wells.lithologydescription", "pk": "6903591b-2d2b-455e-b7b6-c43bcc510306", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "235.00", "lithology_to": "236.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202764}}, {"model": "wells.lithologydescription", "pk": "6906a90d-98b8-4c58-b531-52ad5244cb58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "11.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200015}}, {"model": "wells.lithologydescription", "pk": "6927e2a3-2621-42a8-a28d-f6301e89252e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "16.00", "lithology_to": "88.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201787}}, {"model": "wells.lithologydescription", "pk": "6928e9b3-ca52-407a-a39d-bfe36d8cd81e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "175.00", "lithology_to": "183.00", "lithology_raw_data": "FRACTURED", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132276}}, {"model": "wells.lithologydescription", "pk": "6939669c-e4e3-4479-9d15-7b81164ca546", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "12.00", "lithology_to": "14.00", "lithology_raw_data": "BROWN/BLACK WEATHERED BROKEN SLATE ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198375}}, {"model": "wells.lithologydescription", "pk": "693dc0bc-d889-4b0c-95ac-70856fe56f5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "173.00", "lithology_to": "176.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198074}}, {"model": "wells.lithologydescription", "pk": "6955a012-61d3-4835-8144-159a07319248", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "35.00", "lithology_to": "44.00", "lithology_raw_data": "Sand with Gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Med Sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201579}}, {"model": "wells.lithologydescription", "pk": "6958fe20-36eb-46c5-82bf-c07b24e1e69f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well_tag_number": 112689, "lithology_from": "65.00", "lithology_to": "184.00", "lithology_raw_data": "BASALT, SOME VOLCANIC LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200524}}, {"model": "wells.lithologydescription", "pk": "695d2af2-25b8-406d-b4bc-51dc1cb720fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "232.00", "lithology_to": "295.00", "lithology_raw_data": "SHALE / SILTSTONE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199508}}, {"model": "wells.lithologydescription", "pk": "69618096-7adc-4ec2-a301-db9bbc7b9de7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, "well_tag_number": 112406, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST AT 17', THEN DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198525}}, {"model": "wells.lithologydescription", "pk": "697b94ea-1b32-4562-a287-93d6ea1a8a3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "35.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "iron, sulpher", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197832}}, {"model": "wells.lithologydescription", "pk": "699b2f72-19e4-4503-82ce-2189ff2882bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "27.00", "lithology_to": "29.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199694}}, {"model": "wells.lithologydescription", "pk": "69a0518d-0f3f-4b2e-8836-5b19fa939dd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "460.00", "lithology_to": "500.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "COLOUR=REDDISH BROWN; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200885}}, {"model": "wells.lithologydescription", "pk": "69a66125-b0b8-4861-b5b0-3a6c7160e28d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "390.00", "lithology_to": "393.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132537}}, {"model": "wells.lithologydescription", "pk": "69a68893-4734-4d9b-b7a0-bd8a0152a492", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198977}}, {"model": "wells.lithologydescription", "pk": "69a824f5-822c-47c2-86d7-edce252b4992", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well_tag_number": 113188, "lithology_from": "55.00", "lithology_to": "94.00", "lithology_raw_data": "silty with gravel and boulders", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203497}}, {"model": "wells.lithologydescription", "pk": "69bea13f-63c4-49ee-992e-cefe8d7f7e45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, "well_tag_number": 112835, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "soil", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201394}}, {"model": "wells.lithologydescription", "pk": "69c75381-089c-4bdf-a50d-ac5c690b3d14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T18:28:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, "well_tag_number": 112733, "lithology_from": "32.00", "lithology_to": "41.00", "lithology_raw_data": "FINE SAND WITH TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200781}}, {"model": "wells.lithologydescription", "pk": "69d3347e-aed8-4a42-9abb-adf75f2ad8e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "347.00", "lithology_to": "375.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199833}}, {"model": "wells.lithologydescription", "pk": "69d43ae6-1ce6-47de-882e-dec3194a2328", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T22:29:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, "well_tag_number": 113112, "lithology_from": "0.00", "lithology_to": "100.00", "lithology_raw_data": "4 GRAVEL BROWN CLAY 75 95 SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "M/S", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203034}}, {"model": "wells.lithologydescription", "pk": "69d55a09-ce70-4d94-90d4-fb3ae6ac1e4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201383}}, {"model": "wells.lithologydescription", "pk": "69d78c83-76b3-4fbc-a109-bc9755760ca9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "25.00", "lithology_to": "55.00", "lithology_raw_data": "BLACK & WHITE GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183341}}, {"model": "wells.lithologydescription", "pk": "69e31a34-90f1-448c-a07f-8f5259107589", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "500.00", "lithology_to": "570.00", "lithology_raw_data": "GREY/BLUE/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197370}}, {"model": "wells.lithologydescription", "pk": "69f1e60f-b670-4b05-b6f3-a71b620e7a5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "250.00", "lithology_to": "286.00", "lithology_raw_data": "SANDSTONE S+P, FINE TO MEDIUM", "lithology_description": "54", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201491}}, {"model": "wells.lithologydescription", "pk": "69fc6d8c-2ce6-4557-90f9-57e607c61671", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "230.00", "lithology_to": "250.00", "lithology_raw_data": "S+P SANDSTONE FINE TO MEDIUM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201490}}, {"model": "wells.lithologydescription", "pk": "69fee8c4-2d75-4419-ab4d-58fdf0ab2486", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197661}}, {"model": "wells.lithologydescription", "pk": "6a00cc54-88b1-4cea-8e73-74a7192433b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202499}}, {"model": "wells.lithologydescription", "pk": "6a059408-7b00-4908-9d8f-47ea3b4256e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, "well_tag_number": 112654, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200360}}, {"model": "wells.lithologydescription", "pk": "6a0a5cb6-5d0f-4db7-b920-78dc09bba39b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": "14.00", "lithology_to": "33.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "casing to 36'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201466}}, {"model": "wells.lithologydescription", "pk": "6a0e6f85-fed9-40bb-9e04-7ab43beac5d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200021}}, {"model": "wells.lithologydescription", "pk": "6a0fc008-40fb-472a-acb8-632cbdd51241", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "ROCKS, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199367}}, {"model": "wells.lithologydescription", "pk": "6a1a76be-75a8-4c43-a635-9a5021bc9b3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "33.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202328}}, {"model": "wells.lithologydescription", "pk": "6a1e3500-a0fd-49ff-a65c-a5f62f7a6a95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "138.00", "lithology_to": "150.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "70.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197484}}, {"model": "wells.lithologydescription", "pk": "6a244bd3-ea7e-4cfc-ad9c-f1397b1bacd2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well_tag_number": 112819, "lithology_from": "37.00", "lithology_to": "39.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "40GPM- med/fine sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201273}}, {"model": "wells.lithologydescription", "pk": "6a2f8f02-a691-42f7-83aa-a9d3a0134664", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "20.00", "lithology_to": "47.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY-BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198671}}, {"model": "wells.lithologydescription", "pk": "6a44012b-17b5-4971-923e-533e36fa17e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "GREY, BROWN CLAY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197914}}, {"model": "wells.lithologydescription", "pk": "6a51e06f-2274-4cc0-85a9-f8de9f6e699e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "47.00", "lithology_to": "290.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202414}}, {"model": "wells.lithologydescription", "pk": "6a520558-3bd3-4050-81a8-a1ce2ec6d8d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 340'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202972}}, {"model": "wells.lithologydescription", "pk": "6a52fe12-f2dd-4574-ab93-ca642e40851a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "4.99", "lithology_to": "6.00", "lithology_raw_data": "FILL (SP)-SAND, FINE TO MEDIUM GRAINED SAND, POORLY GRADED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=REDDISH BROWN, MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201068}}, {"model": "wells.lithologydescription", "pk": "6a707524-124d-40a2-bc7c-e5ef0dec677d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:57:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, "well_tag_number": 112961, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5-10", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202229}}, {"model": "wells.lithologydescription", "pk": "6a77105d-0077-42ea-a2c7-a09b8886b00a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "169.00", "lithology_to": "173.00", "lithology_raw_data": "BROKEN W.B. GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205296}}, {"model": "wells.lithologydescription", "pk": "6a7906a9-b2c6-4cbc-a858-db7a6e98bad3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201419}}, {"model": "wells.lithologydescription", "pk": "6a7de9d0-fafa-4fb8-9b83-d6f5507a34e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "61.00", "lithology_to": "63.00", "lithology_raw_data": "softer zones", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202919}}, {"model": "wells.lithologydescription", "pk": "6a8f2864-dac0-46e0-addc-7a352713ceff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, "well_tag_number": 112551, "lithology_from": "235.00", "lithology_to": "550.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199667}}, {"model": "wells.lithologydescription", "pk": "6a9ee106-7401-44ec-b3fe-67b32fb7979c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "6.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201955}}, {"model": "wells.lithologydescription", "pk": "6aa4853f-a731-4037-8636-44b84a238c70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "2.00", "lithology_to": "58.00", "lithology_raw_data": "SILT AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203119}}, {"model": "wells.lithologydescription", "pk": "6aa9aa33-9ee6-46e3-b1a9-d79bbb40a422", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, "well_tag_number": 112287, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197717}}, {"model": "wells.lithologydescription", "pk": "6aab7b7d-a602-4b85-8a47-1cdc66c842bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "151.00", "lithology_to": "155.00", "lithology_raw_data": "MEDIUM-HARD ORANGE LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198050}}, {"model": "wells.lithologydescription", "pk": "6ab1f6cb-36cb-4b7b-a0a1-7a2363129b2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "41.00", "lithology_to": "52.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194607}}, {"model": "wells.lithologydescription", "pk": "6abd54a7-cbc0-4041-a634-240d68778cfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "160.00", "lithology_to": "190.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198582}}, {"model": "wells.lithologydescription", "pk": "6ac6c97d-8e62-428a-8c97-64bb9040bc85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BOLTED ON PRESSURE SEAL WITH VALVE AND GUAGE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203110}}, {"model": "wells.lithologydescription", "pk": "6acd9fa7-010c-43ce-b0a5-64fa84f3263d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "0.00", "lithology_to": "121.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201871}}, {"model": "wells.lithologydescription", "pk": "6ae8502a-e97c-4767-a3c7-45efb606fc31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "7.00", "lithology_to": "17.00", "lithology_raw_data": "broken rock", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "casing to 18'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202351}}, {"model": "wells.lithologydescription", "pk": "6aed1591-b3cf-4614-9491-c0bfcffbc1d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "58.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200072}}, {"model": "wells.lithologydescription", "pk": "6afac101-c8c5-46e9-9e9f-4bafdb14e0f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, "well_tag_number": 112676, "lithology_from": "20.00", "lithology_to": "85.00", "lithology_raw_data": "BRN FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200473}}, {"model": "wells.lithologydescription", "pk": "6b1078e3-83c8-4b66-a7e1-79e3b3fa39bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-07T22:02:45Z", "activity_submission": null, "well_tag_number": 112644, "lithology_from": "85.00", "lithology_to": "221.00", "lithology_raw_data": "granite", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "2 GPH at 132'; 5 at 200'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200331}}, {"model": "wells.lithologydescription", "pk": "6b1184b0-d7e1-44f5-86c8-17a0c427223e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:47:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:47:44Z", "activity_submission": null, "well_tag_number": 112376, "lithology_from": "7.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198336}}, {"model": "wells.lithologydescription", "pk": "6b22ee0d-1be8-49f9-80b4-8d3ac366a226", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well_tag_number": 112879, "lithology_from": "95.00", "lithology_to": "138.00", "lithology_raw_data": "VOLCANIC ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201753}}, {"model": "wells.lithologydescription", "pk": "6b372299-e8a6-4bfe-a9f9-858e9370d409", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "251.00", "lithology_to": "264.00", "lithology_raw_data": "BROWN SILTS, SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200970}}, {"model": "wells.lithologydescription", "pk": "6b3af41d-9423-4df1-abd9-ad0cbbe4133b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, "well_tag_number": 113303, "lithology_from": "8.00", "lithology_to": "100.00", "lithology_raw_data": "sandstone, shale lenses", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 75'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204049}}, {"model": "wells.lithologydescription", "pk": "6b3cf4d1-ab27-4d5c-b1e1-d4cf9f663283", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:28:39Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "153.00", "lithology_to": "155.00", "lithology_raw_data": "MEDIUM-HARD, CEMENTED", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199742}}, {"model": "wells.lithologydescription", "pk": "6b3f3fb4-99ab-4ae4-b052-15f56b89a89b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "156.00", "lithology_to": "158.00", "lithology_raw_data": "BEDROCK OR ANOTHER LARGE BOULDER", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200845}}, {"model": "wells.lithologydescription", "pk": "6b3fa544-beb6-447f-ad31-5b819169b418", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "38.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202179}}, {"model": "wells.lithologydescription", "pk": "6b5002e9-4bfb-4bc0-bf72-56f3ad4e960c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "260.00", "lithology_to": "262.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=5+USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199811}}, {"model": "wells.lithologydescription", "pk": "6b540b2e-65b1-4560-a0a6-2081d022737e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "TILL & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202105}}, {"model": "wells.lithologydescription", "pk": "6b54c7c6-e361-4048-9d95-40e0611ca720", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well_tag_number": 112605, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200025}}, {"model": "wells.lithologydescription", "pk": "6b5dcfa7-df5d-4658-a2f3-c57f12d0d381", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "5.00", "lithology_to": "12.00", "lithology_raw_data": "FINE SANDSTONE WITH SHALE & SILTSTONE, BROWN & GREY", "lithology_description": "72", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201518}}, {"model": "wells.lithologydescription", "pk": "6b671b7d-9d90-44df-9b29-4824362ef57a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "210.00", "lithology_to": "240.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203671}}, {"model": "wells.lithologydescription", "pk": "6b6d4b3a-deae-4270-9471-6346a64250ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:09Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "8.00", "lithology_to": "17.00", "lithology_raw_data": "FINE SAND, SMALL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197552}}, {"model": "wells.lithologydescription", "pk": "6b76c0a6-fe0a-407c-8ad9-409e25e4a6b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "55.00", "lithology_to": "59.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194609}}, {"model": "wells.lithologydescription", "pk": "6b7fea2d-4f89-4259-a506-8206eeefd9c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "365.00", "lithology_to": "370.00", "lithology_raw_data": "Gravel, some sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203515}}, {"model": "wells.lithologydescription", "pk": "6b828591-9137-42a8-9de1-3e0162be7df3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "80.00", "lithology_to": "123.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201770}}, {"model": "wells.lithologydescription", "pk": "6b83ff95-29fe-417e-8851-f86d54c4dd25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "124.00", "lithology_to": "128.00", "lithology_raw_data": "LARGE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200428}}, {"model": "wells.lithologydescription", "pk": "6b8a2b7b-8493-467c-92c5-155c487753c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, "well_tag_number": 113025, "lithology_from": "110.00", "lithology_to": "170.00", "lithology_raw_data": "Brown Glacial Till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202554}}, {"model": "wells.lithologydescription", "pk": "6b9aa3cd-5a7b-4a26-a2f6-1e173657610f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:24:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:24:08Z", "activity_submission": null, "well_tag_number": 112691, "lithology_from": "115.00", "lithology_to": "117.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200530}}, {"model": "wells.lithologydescription", "pk": "6bb18582-0480-419b-9069-b5276ddc0f7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:18:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, "well_tag_number": 112873, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & GRAVEL, GREY & BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201725}}, {"model": "wells.lithologydescription", "pk": "6bbd9534-edbb-42a7-9b87-ecef98ef1b16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, "well_tag_number": 112348, "lithology_from": "39.00", "lithology_to": "50.00", "lithology_raw_data": "sand silt", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198170}}, {"model": "wells.lithologydescription", "pk": "6bc18434-1131-4576-b5b7-bd468c307c68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "240.00", "lithology_to": "270.00", "lithology_raw_data": "SILT, SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COMPRESSED GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199599}}, {"model": "wells.lithologydescription", "pk": "6bc3c4a9-95fa-41c6-bc9a-d1448201038a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "205.00", "lithology_to": "210.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197952}}, {"model": "wells.lithologydescription", "pk": "6be948ca-2be4-47ff-ac78-15529aa55e17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well_tag_number": 112401, "lithology_from": "44.00", "lithology_to": "60.00", "lithology_raw_data": "WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198489}}, {"model": "wells.lithologydescription", "pk": "6bf021c6-a239-4c09-976b-a6a1366644f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "176.00", "lithology_to": "177.00", "lithology_raw_data": "CEMENTED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199962}}, {"model": "wells.lithologydescription", "pk": "6bfadd20-8c4f-4ac7-9398-66cf5b05e0fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T16:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T16:33:40Z", "activity_submission": null, "well_tag_number": 113103, "lithology_from": "0.00", "lithology_to": "140.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203001}}, {"model": "wells.lithologydescription", "pk": "6bfceeca-7c65-4c9c-bb89-29110846c7b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203210}}, {"model": "wells.lithologydescription", "pk": "6c0ba048-4bd4-4426-bfe9-5fdb3eb47a61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "59.00", "lithology_to": "63.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201960}}, {"model": "wells.lithologydescription", "pk": "6c275372-0dc1-4a61-aefb-9f060b4aa3ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "112.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203014}}, {"model": "wells.lithologydescription", "pk": "6c422c34-275d-44e2-a8c3-e8f1ce6cf7b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "79.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199919}}, {"model": "wells.lithologydescription", "pk": "6c4a6737-0a1f-48f1-a344-a44c7c24169d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, "well_tag_number": 113087, "lithology_from": "32.00", "lithology_to": "85.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202911}}, {"model": "wells.lithologydescription", "pk": "6c53b110-4d30-4afe-b8de-3e3f1a658d31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "76.00", "lithology_to": "84.00", "lithology_raw_data": "MEDIUM SAND, FINE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202154}}, {"model": "wells.lithologydescription", "pk": "6c5e5ee9-054b-4b8d-8b01-8c5fb77da8e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199222}}, {"model": "wells.lithologydescription", "pk": "6c5e7f57-f691-4e36-b60f-a4168d329ecf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well_tag_number": 112893, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@480' WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201853}}, {"model": "wells.lithologydescription", "pk": "6c5ec16a-caca-4697-8e94-30f6b8fb810b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "14.00", "lithology_to": "28.00", "lithology_raw_data": "SILTY CLAY, SCATTERED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202149}}, {"model": "wells.lithologydescription", "pk": "6c6785e7-096f-4bca-8678-7b9b3aa7c372", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "55.00", "lithology_to": "57.00", "lithology_raw_data": "W.B. THICK MUD WITH SHARP PINK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198450}}, {"model": "wells.lithologydescription", "pk": "6c6954f1-5c32-4cb3-9a43-1eb0cafc1972", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "compact", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203038}}, {"model": "wells.lithologydescription", "pk": "6c75ed77-661c-4c2c-9c89-a28ea6cb234b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "306.00", "lithology_to": "313.00", "lithology_raw_data": "SAND W.B. WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202783}}, {"model": "wells.lithologydescription", "pk": "6c7710f1-e242-4105-91e1-eeffbc6c5dad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, "well_tag_number": 105508, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COBBLES BOULDERS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159714}}, {"model": "wells.lithologydescription", "pk": "6c8a8a3a-145d-4e76-9f95-d70298aef4e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, "well_tag_number": 112518, "lithology_from": "52.00", "lithology_to": "55.00", "lithology_raw_data": "IRONY BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199412}}, {"model": "wells.lithologydescription", "pk": "6c8df604-650e-4e33-9ba0-9d536db6eb04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well_tag_number": 112886, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "GRAY & BLACK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201802}}, {"model": "wells.lithologydescription", "pk": "6c932231-cc9a-4065-831d-b56df782733f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well_tag_number": 112258, "lithology_from": "36.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "15+ USGPM ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197566}}, {"model": "wells.lithologydescription", "pk": "6c94f877-b44d-4a23-9ed3-dd561b4216b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "61.00", "lithology_to": "114.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201544}}, {"model": "wells.lithologydescription", "pk": "6cd02536-d5b0-43c1-945a-847b87b41f50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "20'", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "before hydrofracking", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199386}}, {"model": "wells.lithologydescription", "pk": "6cd6c6d6-fc2b-4337-a315-4b1d0bfe844c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, "well_tag_number": 112299, "lithology_from": "92.00", "lithology_to": "105.00", "lithology_raw_data": "GRAVEL, SOME CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197774}}, {"model": "wells.lithologydescription", "pk": "6cf38c1d-dd87-417d-80a3-de1406f917c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "25.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry,", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204036}}, {"model": "wells.lithologydescription", "pk": "6cf7fb7b-6992-42c7-935f-db2ed3cba42b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "197.00", "lithology_to": "206.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197598}}, {"model": "wells.lithologydescription", "pk": "6d060cfb-5f92-4a57-973c-5cabe8be519c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well_tag_number": 113125, "lithology_from": "9.00", "lithology_to": "21.00", "lithology_raw_data": "BROWN SOFT CLAY WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203114}}, {"model": "wells.lithologydescription", "pk": "6d0b2008-9535-43bf-bf25-2005ce81a19c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well_tag_number": 112822, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 250'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201288}}, {"model": "wells.lithologydescription", "pk": "6d0f485b-266b-4c1d-bf92-95c0c49a828a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "572.00", "lithology_to": "580.00", "lithology_raw_data": "SHALE, BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198523}}, {"model": "wells.lithologydescription", "pk": "6d194884-f236-499c-8142-656e0c5b7d12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well_tag_number": 112559, "lithology_from": "23.00", "lithology_to": "27.00", "lithology_raw_data": "and organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199707}}, {"model": "wells.lithologydescription", "pk": "6d1fd796-cc9d-4997-bf48-1ae279920c91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILT WITH CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198949}}, {"model": "wells.lithologydescription", "pk": "6d2d6d96-6249-4999-bd5d-d3b475e8fd7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, "well_tag_number": 112329, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "COARSE, SANDY GRAVEL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197970}}, {"model": "wells.lithologydescription", "pk": "6d2f5dea-8ff4-4448-9aba-cde10c445839", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "202.00", "lithology_to": "210.00", "lithology_raw_data": "GREEN/WHITE VOLCANIC WITH SMALL TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197990}}, {"model": "wells.lithologydescription", "pk": "6d344dbe-778f-4da4-99b7-4a561edf8845", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T17:05:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, "well_tag_number": 113144, "lithology_from": "75.00", "lithology_to": "200.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203262}}, {"model": "wells.lithologydescription", "pk": "6d38d6d3-5b5e-4aae-bfd8-159271d86581", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "48.00", "lithology_to": "270.00", "lithology_raw_data": "metamorphic", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198709}}, {"model": "wells.lithologydescription", "pk": "6d40627b-4167-4041-ba81-b3842c228773", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, "well_tag_number": 112910, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "COBBLE, BOULDERS, COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201938}}, {"model": "wells.lithologydescription", "pk": "6d446031-0647-4a9c-8865-5eb00b591969", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T18:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, "well_tag_number": 112283, "lithology_from": "87.00", "lithology_to": "88.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "H20", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197706}}, {"model": "wells.lithologydescription", "pk": "6d47351a-8914-41d2-9bd5-967442378ab4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILT, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199127}}, {"model": "wells.lithologydescription", "pk": "6d4a24d7-872a-45ce-8643-a250110e1133", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "17.00", "lithology_to": "26.00", "lithology_raw_data": "SAND, GRAVEL, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202381}}, {"model": "wells.lithologydescription", "pk": "6d4e1f1c-2ec7-4a28-be56-8040a0858b52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "136.00", "lithology_to": "450.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197357}}, {"model": "wells.lithologydescription", "pk": "6d503ef2-f3b7-46d3-b93d-4d2b6d4352bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198390}}, {"model": "wells.lithologydescription", "pk": "6d52942f-a02a-40ba-9317-17088be590f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "138.00", "lithology_to": "188.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202160}}, {"model": "wells.lithologydescription", "pk": "6d53efa1-6088-4a2f-b202-443c8f096667", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "168.00", "lithology_to": "344.00", "lithology_raw_data": "VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, GREEN, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199831}}, {"model": "wells.lithologydescription", "pk": "6d577b47-7ad6-401e-b3ae-3261c4fe63ad", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:28:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:28:42Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "427.00", "lithology_to": "430.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198822}}, {"model": "wells.lithologydescription", "pk": "6d5f3925-426f-408c-9ef0-fa13ed0184ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well_tag_number": 113065, "lithology_from": "149.00", "lithology_to": "216.00", "lithology_raw_data": "GRAVEL AND SAND, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202750}}, {"model": "wells.lithologydescription", "pk": "6d6b71c0-38fb-46ee-8b2f-046d60669f87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "50.00", "lithology_to": "53.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5-10", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202180}}, {"model": "wells.lithologydescription", "pk": "6d78a125-4e90-436b-8d61-1d806cfd969f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "16.00", "lithology_to": "29.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198812}}, {"model": "wells.lithologydescription", "pk": "6d836920-d6a2-4f8b-98c9-6469a8513f44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "465.00", "lithology_to": "475.00", "lithology_raw_data": "WITH SILTSTONE LENSES", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201558}}, {"model": "wells.lithologydescription", "pk": "6dc998c4-10b4-4bf3-ae82-e70f81a798f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "37.00", "lithology_to": "47.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200484}}, {"model": "wells.lithologydescription", "pk": "6de17d12-0a19-4dae-a2d1-567ab97c1686", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL, LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199204}}, {"model": "wells.lithologydescription", "pk": "6de3fadc-ab86-4860-b6cb-79d12ce14729", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well_tag_number": 112520, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "No iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199420}}, {"model": "wells.lithologydescription", "pk": "6df1580f-6485-4851-bba3-e8288f889e3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "40.00", "lithology_to": "40.00", "lithology_raw_data": "Hard Gey Bedrock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202458}}, {"model": "wells.lithologydescription", "pk": "6df1840f-9333-4e4a-813a-2f5497e64092", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "240.00", "lithology_to": "278.00", "lithology_raw_data": "med. grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201254}}, {"model": "wells.lithologydescription", "pk": "6e09c27f-d426-49a6-85ff-61b26aff7fd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well_tag_number": 112550, "lithology_from": "80.00", "lithology_to": "280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199660}}, {"model": "wells.lithologydescription", "pk": "6e0f3f20-1348-406e-8351-c96a0a7ecc7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T01:23:40Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "240.00", "lithology_to": "315.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "295'-315'=BROKEN UP, 1.5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201050}}, {"model": "wells.lithologydescription", "pk": "6e1b7e13-036a-4ea1-a6a8-0b2d4ce67e48", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:23:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:23:55Z", "activity_submission": null, "well_tag_number": 112933, "lithology_from": "215.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202075}}, {"model": "wells.lithologydescription", "pk": "6e3a391b-ab9f-4571-8912-569b282b4de5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, "well_tag_number": 112644, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "broken granite", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200329}}, {"model": "wells.lithologydescription", "pk": "6e41755a-9920-4be7-a46b-dd509b72fcbb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, "well_tag_number": 105508, "lithology_from": "37.00", "lithology_to": "64.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": "55", "lithology_colour": "16", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159716}}, {"model": "wells.lithologydescription", "pk": "6e4fb3fa-5e8e-4263-b61d-1f0d0a81bb12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, CLAY, FRACTURED MOIST GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199224}}, {"model": "wells.lithologydescription", "pk": "6e507826-47c9-47df-a0cc-9cf3e4af6f81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:37:17Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT/MEDIUM TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198681}}, {"model": "wells.lithologydescription", "pk": "6e50d155-d62c-441c-9b23-9d0261ba3970", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-13T21:03:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, "well_tag_number": 113032, "lithology_from": "15.00", "lithology_to": "40.00", "lithology_raw_data": "WET SILTY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202597}}, {"model": "wells.lithologydescription", "pk": "6e6c4252-4893-4013-afe1-69299efd1618", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "5.00", "lithology_to": "31.00", "lithology_raw_data": "CLAY AND STONES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202203}}, {"model": "wells.lithologydescription", "pk": "6e700d41-4823-4509-af9f-97dd1e661303", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, FINE, SILTY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199126}}, {"model": "wells.lithologydescription", "pk": "6e71a6b4-99e0-4a66-b9c6-08d79bc186bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, "well_tag_number": 112670, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "CLAY AND GRAVEL MIX", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200444}}, {"model": "wells.lithologydescription", "pk": "6e85e95a-6b92-4388-8b11-9eded21f9a36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well_tag_number": 113166, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203354}}, {"model": "wells.lithologydescription", "pk": "6e95e422-de5a-420e-8bab-37155050750a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well_tag_number": 112886, "lithology_from": "4.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201800}}, {"model": "wells.lithologydescription", "pk": "6e9fd6a2-8ef9-4e07-8d1e-eff4b7e71d40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well_tag_number": 112750, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BROWN SILT, SAND & GRAVEL TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200894}}, {"model": "wells.lithologydescription", "pk": "6ea69bd1-e4c5-4ab2-b51d-776be3a8e5d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "176.00", "lithology_to": "180.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198075}}, {"model": "wells.lithologydescription", "pk": "6ea761ff-1a4c-4e8f-b2af-4fb01a901e25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, "well_tag_number": 112947, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202134}}, {"model": "wells.lithologydescription", "pk": "6eaefed6-b014-4898-a2f8-dab162a5feba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well_tag_number": 112743, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200854}}, {"model": "wells.lithologydescription", "pk": "6eaf3568-39cb-4e98-a31a-56652d47bfd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "259.00", "lithology_to": "280.00", "lithology_raw_data": "waterbearing", "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SEEMS WARM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203060}}, {"model": "wells.lithologydescription", "pk": "6ec95e7c-3055-4500-b216-d85b180d1368", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T19:44:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:44:53Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "207.00", "lithology_to": "232.00", "lithology_raw_data": "COARSE/FINE SAND/FINE GRAVEL", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198031}}, {"model": "wells.lithologydescription", "pk": "6ecb0423-3ae3-4d5d-a1c0-deeee74af132", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "230.00", "lithology_to": "240.00", "lithology_raw_data": "MEDIUM COARSE SAND, ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199184}}, {"model": "wells.lithologydescription", "pk": "6ee3659c-07fb-4f2a-9126-fe46d5f36249", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "138.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143927}}, {"model": "wells.lithologydescription", "pk": "6ee55f06-5e69-41c1-b9cb-3c2a2c0f009b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "144.00", "lithology_to": "280.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND GREEN; WATER BEARING; SOLID; 250' + 260'=WATER BEARING; SOFT SPOTS AND FRACTURES @ 144', 195', 250', 260' ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200649}}, {"model": "wells.lithologydescription", "pk": "6f00efb2-2fe0-49b3-afcb-a264059ed832", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "35.00", "lithology_to": "50.00", "lithology_raw_data": "GREY SILTS AND SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200173}}, {"model": "wells.lithologydescription", "pk": "6f06c901-53e0-4733-8c3f-5f43678e024d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, "well_tag_number": 112303, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197794}}, {"model": "wells.lithologydescription", "pk": "6f121913-a0d5-4c66-adfe-c9e4f0641061", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY & STONES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-3", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202390}}, {"model": "wells.lithologydescription", "pk": "6f159b26-ecb6-4a92-b2e2-1f9f0329eaec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "282.00", "lithology_to": "283.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199023}}, {"model": "wells.lithologydescription", "pk": "6f26bb6d-add5-43a4-b2eb-5adcbda56237", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "62.00", "lithology_to": "66.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "0 iron-slight sulpher", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200619}}, {"model": "wells.lithologydescription", "pk": "6f3aeb4f-67b4-4577-a8b3-6e8749449d65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "25.00", "lithology_to": "30.00", "lithology_raw_data": "clay sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203957}}, {"model": "wells.lithologydescription", "pk": "6f3bfc0b-8334-4b30-9dbe-3c04fc3cf885", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, "well_tag_number": 112612, "lithology_from": "47.00", "lithology_to": "63.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200084}}, {"model": "wells.lithologydescription", "pk": "6f3c8aca-ea3c-4335-8b8c-8b2fbd375112", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "238.00", "lithology_to": "248.00", "lithology_raw_data": null, "lithology_description": "11", "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203332}}, {"model": "wells.lithologydescription", "pk": "6f3ca1ea-47d7-48af-ba72-71ceb89696b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "some rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203879}}, {"model": "wells.lithologydescription", "pk": "6f3d94a5-62c1-44db-a42a-a0e616857525", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well_tag_number": 112392, "lithology_from": "11.00", "lithology_to": "13.00", "lithology_raw_data": "CEMENTED SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198441}}, {"model": "wells.lithologydescription", "pk": "6f424530-c12f-4f16-a6c3-204e9d1340f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T17:49:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, "well_tag_number": 112732, "lithology_from": "27.00", "lithology_to": "39.00", "lithology_raw_data": "MEDIUM AND FINE SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; CLEANER; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200777}}, {"model": "wells.lithologydescription", "pk": "6f428583-ac97-4adc-890e-14b10370a25f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:37:24Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "155.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN WITH SOME WHITE; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200623}}, {"model": "wells.lithologydescription", "pk": "6f501a73-8726-461c-abf1-1ab3aa2eaf19", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "142.00", "lithology_to": "222.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK ", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK, WHITE AND GREEN; WATER BEARING @ 181'; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200705}}, {"model": "wells.lithologydescription", "pk": "6f61fbeb-9e1b-4ab1-8d50-f4dc96eeedc9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": "WB SILTY SAND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203131}}, {"model": "wells.lithologydescription", "pk": "6f6a1aca-c7ef-4e57-9294-9a833587dbfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "34.00", "lithology_to": "84.00", "lithology_raw_data": "shale interbedded", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203873}}, {"model": "wells.lithologydescription", "pk": "6f818910-1395-42ec-ba7e-044b7bf7b98e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well_tag_number": 112919, "lithology_from": "12.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202015}}, {"model": "wells.lithologydescription", "pk": "6f87ac9b-1251-47b2-a739-0b22ebb1eb2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:48:07Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "218.00", "lithology_to": "221.00", "lithology_raw_data": "VOID", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "200-230 LOST CIRCULATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200186}}, {"model": "wells.lithologydescription", "pk": "6fa48a95-a3d8-45a4-bf5b-8d6f4753e89e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:22:25Z", "activity_submission": null, "well_tag_number": 113085, "lithology_from": "165.00", "lithology_to": "270.00", "lithology_raw_data": "GREEN BEDROCK WITH QUARTZ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202907}}, {"model": "wells.lithologydescription", "pk": "6facccde-49d1-47a3-b34d-44a0bf0dad79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY AND TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197907}}, {"model": "wells.lithologydescription", "pk": "6fbc1575-fd7b-4560-addf-65440ea9d35d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "PACKED SAND/GRAVEL, SOME COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198150}}, {"model": "wells.lithologydescription", "pk": "6fbf9cc4-c646-4ce1-ac3d-2bffd816c053", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, "well_tag_number": 112695, "lithology_from": "4.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK, BASALTS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200542}}, {"model": "wells.lithologydescription", "pk": "6fc37b13-d295-4e96-92d3-2c67e85baae7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197528}}, {"model": "wells.lithologydescription", "pk": "6fced6e5-7497-45e3-ad41-b31816d4c139", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199432}}, {"model": "wells.lithologydescription", "pk": "6fe35bb6-80bf-4333-b459-102e6e813f5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "140.00", "lithology_to": "154.00", "lithology_raw_data": "Clay, firm", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203473}}, {"model": "wells.lithologydescription", "pk": "6fe7160b-05ae-44f2-b959-f087639add58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "239.00", "lithology_to": "242.00", "lithology_raw_data": "SHALE WITH CARBON, MEDIUM SOFT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "POOR CIRCULATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201602}}, {"model": "wells.lithologydescription", "pk": "6ff74eee-f79e-4fd8-a6bb-b9f9531802b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "580.00", "lithology_to": "740.00", "lithology_raw_data": null, "lithology_description": "59", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201362}}, {"model": "wells.lithologydescription", "pk": "6fff684b-4670-4b3d-b495-5482a644b98e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "245.00", "lithology_to": "310.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198516}}, {"model": "wells.lithologydescription", "pk": "7008a5c8-b87b-4f02-813f-b83a954239b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well_tag_number": 112624, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BOULDERS AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200193}}, {"model": "wells.lithologydescription", "pk": "70096420-9b77-4c44-bf51-183383f660c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "102.00", "lithology_to": "106.00", "lithology_raw_data": "with wood", "lithology_description": "40", "lithology_colour": "12", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198257}}, {"model": "wells.lithologydescription", "pk": "700c4e30-6bfd-4561-bcaa-bc18932457ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "420.00", "lithology_to": "475.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198521}}, {"model": "wells.lithologydescription", "pk": "70143814-1349-44a4-87bc-143da854617c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:49Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "Clay brown", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203565}}, {"model": "wells.lithologydescription", "pk": "701f3cf4-cad1-480b-99b7-9e7c66052797", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "50.00", "lithology_to": "62.00", "lithology_raw_data": "GREY SILTY SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200174}}, {"model": "wells.lithologydescription", "pk": "7021eb89-a36f-45a4-9bea-460663ba0b15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well_tag_number": 112420, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198618}}, {"model": "wells.lithologydescription", "pk": "70226f03-28a6-44d4-b094-b52160de97f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "259.00", "lithology_to": "271.00", "lithology_raw_data": "MEDIUM-HARD, GRAVEL AND SAND, COARSE TO FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST-WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198063}}, {"model": "wells.lithologydescription", "pk": "7025a959-a072-4462-a6da-ddad1cca5cd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "rocks, organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201236}}, {"model": "wells.lithologydescription", "pk": "703d5887-730b-423a-873f-1bbcc938c4bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:06:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, "well_tag_number": 112259, "lithology_from": "2.00", "lithology_to": "24.00", "lithology_raw_data": "LARGE BOULDERS, FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "75+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197569}}, {"model": "wells.lithologydescription", "pk": "705ad584-8fdb-4716-8211-6a0bcd6e8569", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198359}}, {"model": "wells.lithologydescription", "pk": "706d9e4b-b98a-4cc0-8cf0-ea75954796fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "329.00", "lithology_to": "335.00", "lithology_raw_data": null, "lithology_description": "00", "lithology_colour": "00", "lithology_hardness": null, "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "with soft brown rock", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202836}}, {"model": "wells.lithologydescription", "pk": "7079a8f2-ea34-4b12-8999-dc6023a9d072", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "71.00", "lithology_to": "89.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Sulpher/iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199438}}, {"model": "wells.lithologydescription", "pk": "7090afc5-eba0-46c7-b21c-b9181f6328d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "79.00", "lithology_to": "115.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197657}}, {"model": "wells.lithologydescription", "pk": "70990c98-ef54-4b9d-8d21-16de763741d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "25.00", "lithology_to": "30.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200906}}, {"model": "wells.lithologydescription", "pk": "70a11b78-eb0a-40e0-b95c-e3a589c17857", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "32.00", "lithology_to": "36.00", "lithology_raw_data": "CEMENTED GRAVEL & COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202243}}, {"model": "wells.lithologydescription", "pk": "70a32a10-3b6a-4797-a95d-d1353cdc9289", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "47.00", "lithology_to": "50.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198672}}, {"model": "wells.lithologydescription", "pk": "70af5e39-f386-4607-b381-e054a126765b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "62.00", "lithology_to": "65.00", "lithology_raw_data": "SHALE/SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197760}}, {"model": "wells.lithologydescription", "pk": "70b16fd4-8055-492b-8ab9-ba3aebc84e13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, "well_tag_number": 112280, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197688}}, {"model": "wells.lithologydescription", "pk": "70b1d2e6-07e3-4b4e-b677-4f8d23c69ca9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "8.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198705}}, {"model": "wells.lithologydescription", "pk": "70c04e75-9b68-40b6-802d-da70756ab1fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "88.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203549}}, {"model": "wells.lithologydescription", "pk": "70d63078-6e7b-446a-b360-a4e13ecdfeb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "SAND WITH GRAVEL, BROWN AND DARK GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201674}}, {"model": "wells.lithologydescription", "pk": "70e24b3f-9547-40ce-9d0d-899afe536806", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "DARK GREY FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST/WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198041}}, {"model": "wells.lithologydescription", "pk": "70f9487a-0400-412b-bf1f-f491e32757df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, "well_tag_number": 112838, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201406}}, {"model": "wells.lithologydescription", "pk": "70ff2563-f277-496c-b3fe-9c55cc86dcfa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "3.00", "lithology_to": "28.00", "lithology_raw_data": "cobbles, boulders 19' - 21'", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199044}}, {"model": "wells.lithologydescription", "pk": "710b1ad8-10f8-4708-b7fe-da8d76a964ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "50.00", "lithology_to": "53.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198884}}, {"model": "wells.lithologydescription", "pk": "710c23cd-1ecd-4b02-b3b9-18c1d82c0e31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "225.00", "lithology_to": "230.00", "lithology_raw_data": "SHALE/SANDSTONE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199868}}, {"model": "wells.lithologydescription", "pk": "710f51c9-5d32-4c0c-96a7-e3d0df75906d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "365.00", "lithology_to": "600.00", "lithology_raw_data": "GREEN/GREY GRANITE WITHOUT NOTICEABLE CHANGE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198127}}, {"model": "wells.lithologydescription", "pk": "7110dc6f-61d1-46ed-b297-28e745fb2b4d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T16:59:40Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T16:59:40Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "1.00", "lithology_to": "12.00", "lithology_raw_data": "SAND AND GRAVEL, SILTY, BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172299}}, {"model": "wells.lithologydescription", "pk": "71201793-49f9-4ebc-9fb2-953648f6244c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:42:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, "well_tag_number": 113081, "lithology_from": "10.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202889}}, {"model": "wells.lithologydescription", "pk": "7120b68d-c2d1-4241-a26f-1ca8ea85a431", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, "well_tag_number": 112320, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "ROCK, GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197888}}, {"model": "wells.lithologydescription", "pk": "71238636-2123-4170-89d1-30a0211f8877", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "600.00", "lithology_to": "630.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "700.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203623}}, {"model": "wells.lithologydescription", "pk": "713644f6-897c-4b25-8558-84d10d0796d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "35.00", "lithology_to": "53.00", "lithology_raw_data": "DRY SAND AND BROWN GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197788}}, {"model": "wells.lithologydescription", "pk": "7149a74e-eb72-4cf9-8a8d-f5793767e8f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well_tag_number": 112383, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "nd gravel", "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198392}}, {"model": "wells.lithologydescription", "pk": "71513e54-8316-468a-9ede-a45ea017a690", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "OPENING BETWEEN 225FT AND 226FT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202949}}, {"model": "wells.lithologydescription", "pk": "7152ccf3-4144-4b54-90a3-9281487a17ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "535.00", "lithology_to": "537.00", "lithology_raw_data": "MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201510}}, {"model": "wells.lithologydescription", "pk": "716f6346-357b-4dd6-951b-3f917ff7f1b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:51:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:36Z", "activity_submission": null, "well_tag_number": 112244, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "SANDSTONE CHUNKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "13'-15' = FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197499}}, {"model": "wells.lithologydescription", "pk": "71710a40-1993-439b-9d69-10e4742f20ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "295.00", "lithology_to": "296.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203147}}, {"model": "wells.lithologydescription", "pk": "71841901-7e72-49e2-a474-c060f2843cf4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "180.00", "lithology_to": "215.00", "lithology_raw_data": "SHALE WITH SANDSTONE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199866}}, {"model": "wells.lithologydescription", "pk": "718d756d-3993-4cf7-a070-5873e4a4725c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well_tag_number": 112613, "lithology_from": "25.00", "lithology_to": "90.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "17", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200091}}, {"model": "wells.lithologydescription", "pk": "719278e6-e3a5-4699-92ba-15db3d43eda8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "104.00", "lithology_to": "167.00", "lithology_raw_data": "VOLCANIC - FEW WHITE TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199894}}, {"model": "wells.lithologydescription", "pk": "719ad15b-f4cf-4dde-93fa-22334ebd217e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well_tag_number": 112479, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199131}}, {"model": "wells.lithologydescription", "pk": "71b3d017-fbee-4b2c-ae2b-a967082894b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "48.00", "lithology_to": "110.00", "lithology_raw_data": "very sandy", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201421}}, {"model": "wells.lithologydescription", "pk": "71b7c10f-c730-48c1-adc8-4bb996a95e01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "39.00", "lithology_to": "220.00", "lithology_raw_data": "with quartz layers", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199715}}, {"model": "wells.lithologydescription", "pk": "71b8d05c-d50a-4fc0-84d1-a6a2d60de942", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "105.00", "lithology_to": "112.00", "lithology_raw_data": "Grey clay, some gravel, firm", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203470}}, {"model": "wells.lithologydescription", "pk": "71d14aaf-e86b-4285-9aec-77ed1c3ade9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "SILTY CLAY & FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202158}}, {"model": "wells.lithologydescription", "pk": "71e009e7-f6ec-4477-88aa-906bbda52f7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:49:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T00:49:28Z", "activity_submission": null, "well_tag_number": 112658, "lithology_from": "10.00", "lithology_to": "145.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200384}}, {"model": "wells.lithologydescription", "pk": "71e35ff7-cd79-41da-b18d-eda8abff6706", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water source", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203019}}, {"model": "wells.lithologydescription", "pk": "720db1f5-5918-4b84-9cd2-bb4c3352b49c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203694}}, {"model": "wells.lithologydescription", "pk": "720e4c84-f681-468a-b447-74da786b8c4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, "well_tag_number": 113026, "lithology_from": "45.00", "lithology_to": "272.00", "lithology_raw_data": "TILL GREY BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202563}}, {"model": "wells.lithologydescription", "pk": "722e6557-568b-49a0-a3d6-cce445e58e4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "159.00", "lithology_to": "163.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10-20", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202207}}, {"model": "wells.lithologydescription", "pk": "7241b8f4-b3fe-4520-ba17-b56662c79f4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "338.00", "lithology_to": "361.00", "lithology_raw_data": "DARK GREY CRYSTALLINE ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197885}}, {"model": "wells.lithologydescription", "pk": "724f2c44-b80c-46e4-97df-c2ef70ee6f33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, "well_tag_number": 113216, "lithology_from": "220.00", "lithology_to": "260.00", "lithology_raw_data": "SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203692}}, {"model": "wells.lithologydescription", "pk": "72534437-e026-441b-9abd-a973db77f4a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "13.00", "lithology_to": "20.00", "lithology_raw_data": "bedrock, broken", "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203838}}, {"model": "wells.lithologydescription", "pk": "725da995-a96a-45ea-b0cb-e322db3bbf99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "gravel, topsoil and wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203675}}, {"model": "wells.lithologydescription", "pk": "72638356-6400-48e0-bf0c-347d31485c83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well_tag_number": 112548, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "FINE SAND AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199645}}, {"model": "wells.lithologydescription", "pk": "7266dc43-311d-4c41-92cd-41405dc9bfcd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-11-30T07:25:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, "well_tag_number": 112152, "lithology_from": "0.00", "lithology_to": "43.00", "lithology_raw_data": "SAND, BOULDERS, SILT", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": "45", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": "WET @ 20'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 196904}}, {"model": "wells.lithologydescription", "pk": "72778bc2-64ac-432f-92cc-e0459c6f2686", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "75.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM-HARD, DARK AND LIGHT GREY SHALE LAYERED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197997}}, {"model": "wells.lithologydescription", "pk": "7282b829-83b0-4d55-bdda-1ac1549d0159", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-11-30T07:25:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, "well_tag_number": 112152, "lithology_from": "43.00", "lithology_to": "49.00", "lithology_raw_data": "SAND, SILT, COBBLES", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 196905}}, {"model": "wells.lithologydescription", "pk": "7286e08e-a2d6-44ff-8c65-7556261d56a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "set pump above 290'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202358}}, {"model": "wells.lithologydescription", "pk": "72b2444c-9e54-4cf3-9557-0f559316b1ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well_tag_number": 113125, "lithology_from": "45.00", "lithology_to": "53.00", "lithology_raw_data": "W.B. FINE GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203116}}, {"model": "wells.lithologydescription", "pk": "72b67dbe-91a7-4fd8-895f-8f7fe666cf3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "282.00", "lithology_to": "414.00", "lithology_raw_data": "medium grey with green", "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 380'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201240}}, {"model": "wells.lithologydescription", "pk": "72ba0ad7-8085-4753-8e47-0a591ed46ab8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:24:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, "well_tag_number": 112315, "lithology_from": "0.00", "lithology_to": "93.00", "lithology_raw_data": "ROCK, GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197858}}, {"model": "wells.lithologydescription", "pk": "72bd0484-e60e-40c9-9265-c4b85a7644fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "41.00", "lithology_to": "53.00", "lithology_raw_data": "trace of gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200060}}, {"model": "wells.lithologydescription", "pk": "72c318ef-b829-40a9-aafc-812e36a84780", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199027}}, {"model": "wells.lithologydescription", "pk": "72cf20a5-fb60-456c-837c-c9f4200c424d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "32.00", "lithology_to": "120.00", "lithology_raw_data": "SHALE/SANDSTONE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199862}}, {"model": "wells.lithologydescription", "pk": "72cfd31d-3dc1-4be8-8853-6855a33c5077", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "24.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198470}}, {"model": "wells.lithologydescription", "pk": "72dbfcfe-f680-49b8-b93c-148e5a2cf514", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "222.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197922}}, {"model": "wells.lithologydescription", "pk": "72f7002c-b107-48bc-8f89-599b3323261c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "197.00", "lithology_to": "232.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200438}}, {"model": "wells.lithologydescription", "pk": "72f754b1-b289-49cd-a9d1-12cae2fc7954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "12.00", "lithology_to": "13.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200370}}, {"model": "wells.lithologydescription", "pk": "72fdb2b7-c55d-4b14-8b0a-69668dce5b3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, "well_tag_number": 113179, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203444}}, {"model": "wells.lithologydescription", "pk": "730590d3-ba0c-4cc3-9734-6d5959e61af2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "67.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203202}}, {"model": "wells.lithologydescription", "pk": "7322bd46-9b19-4bd3-ad8b-93e3be4bb912", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:23:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, "well_tag_number": 112881, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "compact, boulders", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201759}}, {"model": "wells.lithologydescription", "pk": "73263a1a-3303-4ea7-a10e-19a0fe026716", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "127.00", "lithology_to": "128.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "33", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197651}}, {"model": "wells.lithologydescription", "pk": "732f78e8-885c-4472-9e3d-fb179d40f525", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well_tag_number": 112628, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "TOP SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200281}}, {"model": "wells.lithologydescription", "pk": "732f7c77-33d3-4635-9f47-80b3768dcab7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "FINE TO MEDIUM SAND (GRAVEL 284'-287')", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199241}}, {"model": "wells.lithologydescription", "pk": "733652ab-33ec-4406-9b57-979543bb7498", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T21:47:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T21:47:38Z", "activity_submission": null, "well_tag_number": 112300, "lithology_from": "28.00", "lithology_to": "143.00", "lithology_raw_data": "BEDROCK - VOLCANIC MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197780}}, {"model": "wells.lithologydescription", "pk": "734a722c-bf3f-44a7-baf9-e1ad758f3cb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "354.00", "lithology_to": "365.00", "lithology_raw_data": "BROWN DIRTY, SILTY SANDS, SOME GRAVEL (WEL)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200961}}, {"model": "wells.lithologydescription", "pk": "7352d821-e176-4fed-88f8-292384aca0ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "48.00", "lithology_to": "62.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199670}}, {"model": "wells.lithologydescription", "pk": "736280b6-cf69-4951-a8a9-bbfdb0521512", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198554}}, {"model": "wells.lithologydescription", "pk": "736677f6-63ab-41c5-a09d-393fe0a7dd26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:30:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:45Z", "activity_submission": null, "well_tag_number": 112465, "lithology_from": "161.00", "lithology_to": "170.00", "lithology_raw_data": "with white lenses", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199009}}, {"model": "wells.lithologydescription", "pk": "736de2e9-5592-427b-b2e0-ec2005011640", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "397.00", "lithology_to": "500.00", "lithology_raw_data": "GREY/BLUE VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197369}}, {"model": "wells.lithologydescription", "pk": "736dfc38-1a73-4a76-ac66-4e93333bb7de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "146.00", "lithology_to": "203.00", "lithology_raw_data": "TILL WITH FINE WATER LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202688}}, {"model": "wells.lithologydescription", "pk": "7374f035-2771-4044-9169-e1c23bccc3fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, "well_tag_number": 112684, "lithology_from": "83.00", "lithology_to": "143.00", "lithology_raw_data": "ASH MIX", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200500}}, {"model": "wells.lithologydescription", "pk": "738458ce-6c40-42ac-8125-54567031f9b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199215}}, {"model": "wells.lithologydescription", "pk": "7388465c-d6b8-40cf-a415-e293b348f47a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "91.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201085}}, {"model": "wells.lithologydescription", "pk": "739575c9-f187-4823-8568-64e73ce33282", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202175}}, {"model": "wells.lithologydescription", "pk": "73aad329-329c-4b69-b306-f914b13a3943", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:27Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "119.00", "lithology_to": "152.00", "lithology_raw_data": "HARD CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202258}}, {"model": "wells.lithologydescription", "pk": "73ab9e4c-f71d-44eb-875d-d1d797a2938f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "3.00", "lithology_to": "11.00", "lithology_raw_data": "CLEAN GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198459}}, {"model": "wells.lithologydescription", "pk": "73b6f1ed-d670-43c4-a35c-4fc70a2810ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:50:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, "well_tag_number": 112611, "lithology_from": "45.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200081}}, {"model": "wells.lithologydescription", "pk": "73c2d880-ea1f-4a6d-91a6-22a04ab7ac6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "135.00", "lithology_to": "136.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198746}}, {"model": "wells.lithologydescription", "pk": "73c66670-29c7-47ef-82de-9db4475228f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202613}}, {"model": "wells.lithologydescription", "pk": "73cb41a5-c323-4edf-b1ef-6f50c249822b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "20.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY, MINOR, SAND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198979}}, {"model": "wells.lithologydescription", "pk": "73d0ea48-2a78-40c4-b786-1861dcc05d7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197527}}, {"model": "wells.lithologydescription", "pk": "73d9b7a8-6dd9-4a6c-85c2-a4715d81d9d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, "well_tag_number": 113052, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202666}}, {"model": "wells.lithologydescription", "pk": "73db47a7-d8a7-4895-8d03-65fd24b5ebfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, "well_tag_number": 112910, "lithology_from": "20.00", "lithology_to": "50.00", "lithology_raw_data": "COARSE SAND, COARSE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201939}}, {"model": "wells.lithologydescription", "pk": "73deca4b-86db-4cbf-918c-24f7eec88b93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE COBBLE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199288}}, {"model": "wells.lithologydescription", "pk": "73e1767a-b2b1-4b9d-a3cf-1b9f78430c31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:00:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, "well_tag_number": 112696, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200545}}, {"model": "wells.lithologydescription", "pk": "73e2a312-f6a7-43cd-9606-4e6cc5a6f3f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:36:03Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198687}}, {"model": "wells.lithologydescription", "pk": "73ef23ab-95b0-44b7-8df0-1ac1a5ed8f1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "248.00", "lithology_to": "395.00", "lithology_raw_data": null, "lithology_description": "11", "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203333}}, {"model": "wells.lithologydescription", "pk": "73fd97f5-a4db-4951-979f-bb214c774ee6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "4.00", "lithology_to": "17.00", "lithology_raw_data": "Brown fine to coarse sand and gravel trace cobbles", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203462}}, {"model": "wells.lithologydescription", "pk": "73ffc3f6-bf5f-40d1-ba09-c7a723e80721", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200796}}, {"model": "wells.lithologydescription", "pk": "7411f6f8-d11b-49c6-b699-cd35a571e140", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, "well_tag_number": 112947, "lithology_from": "24.00", "lithology_to": "178.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO KNOWN AQUIFER FOUND", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202137}}, {"model": "wells.lithologydescription", "pk": "742048c1-c6f2-47ce-ae42-b9d74c2c9432", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "250.00", "lithology_to": "257.00", "lithology_raw_data": "MEDIUM HARD, SALT & PEPPER WITH BROWNISH TINGE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201605}}, {"model": "wells.lithologydescription", "pk": "7423c0dd-4444-4029-bc31-a9a73bb9ebc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "72.00", "lithology_to": "85.00", "lithology_raw_data": "SAND AND GRAVEL WITH SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199584}}, {"model": "wells.lithologydescription", "pk": "74282afd-99f1-4a9d-9b22-91c2c17c79bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:40:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:40:17Z", "activity_submission": null, "well_tag_number": 112666, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SAND/ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200422}}, {"model": "wells.lithologydescription", "pk": "744ea9c7-cc4b-4c9d-9290-116e510d3bd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, "well_tag_number": 112965, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202260}}, {"model": "wells.lithologydescription", "pk": "745d0af9-ae1f-450f-9c57-16c121f30787", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "4.00", "lithology_to": "6.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197654}}, {"model": "wells.lithologydescription", "pk": "745fd0d9-1657-4ae7-9587-5d329949c447", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "2.00", "lithology_to": "7.50", "lithology_raw_data": "SOFT & FRACTURED GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200621}}, {"model": "wells.lithologydescription", "pk": "7460f2c0-25bf-438a-b3a5-d6a1b5294194", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "160.00", "lithology_to": "167.00", "lithology_raw_data": "COARSE, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198927}}, {"model": "wells.lithologydescription", "pk": "7463e6ca-4b1e-475a-9e17-40fe62bb979a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "166.00", "lithology_to": "177.00", "lithology_raw_data": "FINE TO VERY FINE WITH SHALE LENSE AND SILTSTONE INTERBEDED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201547}}, {"model": "wells.lithologydescription", "pk": "74872fca-9b3c-4b04-8063-274a2b8eb158", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, TILL, MIXED WITH ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199155}}, {"model": "wells.lithologydescription", "pk": "748ac27e-2177-4b81-835f-802738ab5edd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "FINE AND SILTY COMPACT SILTY CLAY WITH TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200782}}, {"model": "wells.lithologydescription", "pk": "748c088c-2232-4919-9b4b-a3b1fe75ee16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:37:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:37:50Z", "activity_submission": null, "well_tag_number": 112247, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197508}}, {"model": "wells.lithologydescription", "pk": "74982cc2-c918-4508-bc2a-1a958fea8de6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "74.00", "lithology_to": "77.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DARK GREY; FINE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199494}}, {"model": "wells.lithologydescription", "pk": "74aace90-aef8-475b-8246-873680eb3b21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202250}}, {"model": "wells.lithologydescription", "pk": "74b7b29a-a9e7-46d4-91f2-5183714a9ef5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well_tag_number": 112599, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, GRAVEL, BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199974}}, {"model": "wells.lithologydescription", "pk": "74cc9a45-7345-424d-b1c1-9155d8197d40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "37.00", "lithology_to": "46.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199696}}, {"model": "wells.lithologydescription", "pk": "74dd8602-c4d9-472f-9fca-ef3ddcb0ab37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "140.00", "lithology_to": "207.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY; SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200998}}, {"model": "wells.lithologydescription", "pk": "74e54ce0-061e-4814-b4e4-04cc5e357a73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198385}}, {"model": "wells.lithologydescription", "pk": "74f3d14d-fbf3-4d28-962a-ed2e028393b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "111.00", "lithology_to": "127.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197650}}, {"model": "wells.lithologydescription", "pk": "74f656fd-dce1-4d76-ad96-a6b3d16382f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "47.00", "lithology_to": "67.00", "lithology_raw_data": "MEDIUM SAND, MEDIUM WELL SORTED GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197697}}, {"model": "wells.lithologydescription", "pk": "74fc8fd8-020c-41b0-a618-bf6bf87ff1ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "17.00", "lithology_to": "120.00", "lithology_raw_data": "GREY/WHITE, VOLCANIC WITH WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198145}}, {"model": "wells.lithologydescription", "pk": "7518fa57-acfd-4d5a-9426-f9eaafad0a25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197537}}, {"model": "wells.lithologydescription", "pk": "75222dcf-967e-4496-b49d-f4508fc8621c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "70.00", "lithology_to": "200.00", "lithology_raw_data": "COMPETENT BEDROCK GREEN SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197839}}, {"model": "wells.lithologydescription", "pk": "752233df-5260-4db5-ad9b-ea74ea6cc748", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "90.00", "lithology_to": "94.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200914}}, {"model": "wells.lithologydescription", "pk": "75273241-a613-4385-8427-427626bac4d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "32.00", "lithology_to": "50.00", "lithology_raw_data": "compact gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203880}}, {"model": "wells.lithologydescription", "pk": "752b67c0-b845-4098-8cf4-2f20619b7721", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "224.00", "lithology_to": "255.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198767}}, {"model": "wells.lithologydescription", "pk": "753c01eb-3192-457b-8f61-cf8b6062b965", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:17Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "68.00", "lithology_to": "80.00", "lithology_raw_data": "SHALE/FRACTURED SANDSTONE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197939}}, {"model": "wells.lithologydescription", "pk": "756ab056-910f-49e8-bec7-cb0774c53760", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:39:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, "well_tag_number": 112262, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": "LARGE BOULDERS, FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197580}}, {"model": "wells.lithologydescription", "pk": "75776883-44f0-46a8-92e6-dc7b0d66c85a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:16:22Z", "activity_submission": null, "well_tag_number": 113085, "lithology_from": "20.00", "lithology_to": "93.00", "lithology_raw_data": "GREY CLAY AND ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202905}}, {"model": "wells.lithologydescription", "pk": "757ab725-e11f-4b81-92ad-dc7f20dae167", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "139.00", "lithology_to": "166.00", "lithology_raw_data": "SILTSTONE & SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201546}}, {"model": "wells.lithologydescription", "pk": "757bf532-0ac8-41f7-b6c9-efb2d27d67c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "500.00", "lithology_to": "560.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "580.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203621}}, {"model": "wells.lithologydescription", "pk": "75837211-15b2-40cc-a5a9-d864410aa3c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "108.00", "lithology_to": "137.00", "lithology_raw_data": "SANDSTONE, COARSE, HARD, WEATHERED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197762}}, {"model": "wells.lithologydescription", "pk": "7590ffd5-2332-4a62-9ec6-4b5aa19acd54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "50.00", "lithology_to": "68.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND ROCK WITH SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199582}}, {"model": "wells.lithologydescription", "pk": "75989c16-1608-42cc-a7cc-831465470e7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "264.00", "lithology_to": "265.00", "lithology_raw_data": "WET SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200971}}, {"model": "wells.lithologydescription", "pk": "759a689b-5d88-45ed-b6f3-636a73f44f21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "13.00", "lithology_to": "18.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199691}}, {"model": "wells.lithologydescription", "pk": "759f8b8c-9a1c-4212-8816-67dbca6e0491", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, "well_tag_number": 113025, "lithology_from": "50.00", "lithology_to": "65.00", "lithology_raw_data": "Grey Clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202552}}, {"model": "wells.lithologydescription", "pk": "75c72cb5-e4e9-4fcc-82aa-535f93a726a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well_tag_number": 113264, "lithology_from": "79.00", "lithology_to": "88.00", "lithology_raw_data": "very sandy", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203901}}, {"model": "wells.lithologydescription", "pk": "75ccfffa-3323-454a-8e9c-64ca612b8157", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, "well_tag_number": 112417, "lithology_from": "42.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198596}}, {"model": "wells.lithologydescription", "pk": "75e99725-779c-4733-815c-bbbb71068d0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "13.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201208}}, {"model": "wells.lithologydescription", "pk": "75f12417-4f5a-4c4f-9639-e3b256b4aa90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "TAN CLAY WITH SEA SHELLS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197533}}, {"model": "wells.lithologydescription", "pk": "75fe7fd9-60c3-4397-b41e-9d6eceaebe2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "78.00", "lithology_to": "84.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "20", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202432}}, {"model": "wells.lithologydescription", "pk": "7614db4e-fd31-4864-a72d-e7b1d1c29b39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "168.00", "lithology_to": "169.00", "lithology_raw_data": null, "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203527}}, {"model": "wells.lithologydescription", "pk": "76210bd6-45c7-4fb7-8aa1-b74a84b4f8a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "171.00", "lithology_to": "173.00", "lithology_raw_data": "GRAY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199349}}, {"model": "wells.lithologydescription", "pk": "76221fdc-196d-4d3d-b18e-8c6d13625c4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well_tag_number": 112559, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "06", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199705}}, {"model": "wells.lithologydescription", "pk": "7630f27a-c878-410b-a0b8-5126bccc42cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202325}}, {"model": "wells.lithologydescription", "pk": "763df7ef-dd7c-4216-9d72-6b741e9723ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well_tag_number": 112959, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "EXISTING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202213}}, {"model": "wells.lithologydescription", "pk": "76546a11-8b45-43df-8974-3e248c76efdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, "well_tag_number": 112676, "lithology_from": "134.00", "lithology_to": "135.00", "lithology_raw_data": "BLK DENSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200476}}, {"model": "wells.lithologydescription", "pk": "7655fe40-9709-427c-a59b-bdb06a7c368a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T18:55:07Z", "activity_submission": null, "well_tag_number": 112362, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "GREY/BROWN, GRAVELS AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "IRON, SILT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198239}}, {"model": "wells.lithologydescription", "pk": "765a9bcb-e419-46bd-933c-fad087315a3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198711}}, {"model": "wells.lithologydescription", "pk": "76622bcd-2b8a-4f9e-9c9e-e6b1387e1aa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "54.00", "lithology_to": "81.50", "lithology_raw_data": "LOOSE, DARK GRAY, FINE TO COARSE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201175}}, {"model": "wells.lithologydescription", "pk": "767019a6-c74f-46b0-9118-b97c47df1fb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 300'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201471}}, {"model": "wells.lithologydescription", "pk": "76740da5-4773-48cb-a458-977dbcb93de8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "75.00", "lithology_to": "340.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry. lost cirulation", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204015}}, {"model": "wells.lithologydescription", "pk": "767814b8-3c21-4a1c-afd5-ebd054d4b180", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:16:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, "well_tag_number": 113218, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203705}}, {"model": "wells.lithologydescription", "pk": "76782d75-5f48-40b2-8bf6-b70c577eb72e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, "well_tag_number": 112540, "lithology_from": "28.00", "lithology_to": "34.00", "lithology_raw_data": "CLAY, SAND, MEDIUM-COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199609}}, {"model": "wells.lithologydescription", "pk": "767c5e15-6bbc-4525-80eb-9923a20ff87a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "16.00", "lithology_to": "31.00", "lithology_raw_data": "bedrock", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203094}}, {"model": "wells.lithologydescription", "pk": "767eb68e-a4bc-4009-8bfd-8cdd7c4fc4ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199557}}, {"model": "wells.lithologydescription", "pk": "7682af08-edb4-4ff9-8bb1-3aed7aabc426", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:47:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, "well_tag_number": 112784, "lithology_from": "3.75", "lithology_to": "4.25", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "QUICKCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201118}}, {"model": "wells.lithologydescription", "pk": "76951f04-198e-4fbe-b98d-516aa753ed86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200344}}, {"model": "wells.lithologydescription", "pk": "76985a9a-c9fa-4475-89da-98687d5bdcbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "MEDIUM/HARD, COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198793}}, {"model": "wells.lithologydescription", "pk": "769b59e9-ead2-46d6-824b-70d8a235bcb9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:44:27Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "HARD PAN, CLAY, MIXED ROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199805}}, {"model": "wells.lithologydescription", "pk": "76a27b99-fc21-47d5-b396-ed45dcecddc5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, "well_tag_number": 112305, "lithology_from": "101.00", "lithology_to": "142.00", "lithology_raw_data": "BEDROCK, BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197809}}, {"model": "wells.lithologydescription", "pk": "76afd64d-876d-44a2-8791-3dd46d062c7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "95.00", "lithology_to": "122.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200754}}, {"model": "wells.lithologydescription", "pk": "76b68974-5647-40ec-9c5c-417b3fda926a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "138.00", "lithology_to": "145.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201972}}, {"model": "wells.lithologydescription", "pk": "76b83419-09f5-4361-b003-52da09f84487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "HARD SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202944}}, {"model": "wells.lithologydescription", "pk": "76b848d6-88d6-4b5e-9503-55f84e9b61ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "10.00", "lithology_to": "52.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201823}}, {"model": "wells.lithologydescription", "pk": "76bd4bf7-f588-4d0b-b4ae-b3f7fbde21ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "FINE SAND WITH SOME SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200839}}, {"model": "wells.lithologydescription", "pk": "76bf68b3-c84a-4df5-b01c-7b0cb04e5a69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200482}}, {"model": "wells.lithologydescription", "pk": "76cc4b88-bab6-4090-9667-c50b89d54b6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:40:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, "well_tag_number": 112928, "lithology_from": "20.00", "lithology_to": "85.00", "lithology_raw_data": "SAND, MEDIUM COARSE GRAVEL, FINE SAND 50-55; CLAY 75 TO 85", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202060}}, {"model": "wells.lithologydescription", "pk": "76da2e49-88de-4ae7-a935-2d466626ab2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "54.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198815}}, {"model": "wells.lithologydescription", "pk": "76dadc1c-12cc-4436-ae4a-53f385910974", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "0.00", "lithology_to": "66.00", "lithology_raw_data": "ROCK & CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132267}}, {"model": "wells.lithologydescription", "pk": "76e3c952-db97-41ae-bc9e-0713b6a3d5f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198590}}, {"model": "wells.lithologydescription", "pk": "76fa9dc6-d67e-440d-b361-4e86b92edc91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "20.00", "lithology_to": "28.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199561}}, {"model": "wells.lithologydescription", "pk": "770b3eb9-31be-4117-b221-3ae99c03f1a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "95.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1/2 PPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200405}}, {"model": "wells.lithologydescription", "pk": "770c68c2-4357-4d1a-adb3-80d3333ff71c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANICS, FILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198404}}, {"model": "wells.lithologydescription", "pk": "77142479-ed95-4880-81bf-048a9834815a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "18.00", "lithology_to": "42.00", "lithology_raw_data": "GREYISH BROWN DRY CLAY WITH FINE BROWN SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; DRY; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200666}}, {"model": "wells.lithologydescription", "pk": "772e6288-30a7-4a92-8105-55fc65e5d509", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "31.00", "lithology_to": "78.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202204}}, {"model": "wells.lithologydescription", "pk": "7733c8b1-11dc-4a55-ba4d-9605efbe5cb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "330.00", "lithology_to": "335.00", "lithology_raw_data": "COARSE AND SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200837}}, {"model": "wells.lithologydescription", "pk": "773680d1-a4bb-4156-a3ba-54281173de6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:56:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, "well_tag_number": 112317, "lithology_from": "2.00", "lithology_to": "51.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197867}}, {"model": "wells.lithologydescription", "pk": "7736eaac-ef53-4300-be42-71d1d28e13e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200684}}, {"model": "wells.lithologydescription", "pk": "7737f0cf-f3f4-4287-a269-e93cf7f3ae2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "9.00", "lithology_to": "12.00", "lithology_raw_data": "CLAY-TILL/SAND LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197934}}, {"model": "wells.lithologydescription", "pk": "773b7b52-25e4-437f-aab0-6899c8705cd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:24:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, "well_tag_number": 112261, "lithology_from": "12.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM BOULDERS, MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197576}}, {"model": "wells.lithologydescription", "pk": "774e4696-5b2f-48e9-a28c-478442ef4f98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201980}}, {"model": "wells.lithologydescription", "pk": "775fa6aa-8104-45c5-8f2a-4ada288d7530", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "133.00", "lithology_to": "134.00", "lithology_raw_data": "some chunks", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198304}}, {"model": "wells.lithologydescription", "pk": "776c71e2-be6e-41d2-9e8b-76af1be4478a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200165}}, {"model": "wells.lithologydescription", "pk": "77700f5c-6ad4-4e90-9dda-92857bb6a967", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "108.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201998}}, {"model": "wells.lithologydescription", "pk": "77741f2e-cf14-463e-9fbc-e0c585fed8b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "SILT/CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198778}}, {"model": "wells.lithologydescription", "pk": "77776c81-b398-49ac-a34f-a1008cb2c975", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-05-30T23:50:17Z", "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:08:13Z", "activity_submission": null, "well_tag_number": 104533, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "VERY_SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 154109}}, {"model": "wells.lithologydescription", "pk": "7781370f-a052-4920-9cf2-1ad989479fae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "104.00", "lithology_to": null, "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199556}}, {"model": "wells.lithologydescription", "pk": "77963388-dec8-4802-9ea6-849049cf6368", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T21:44:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:44:36Z", "activity_submission": null, "well_tag_number": 110749, "lithology_from": "260.00", "lithology_to": "267.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "07", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188535}}, {"model": "wells.lithologydescription", "pk": "77d052f2-dd8c-4cc6-9864-d7e1cf58cd28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, "well_tag_number": 112517, "lithology_from": "131.00", "lithology_to": "250.00", "lithology_raw_data": "volcanic", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199404}}, {"model": "wells.lithologydescription", "pk": "77e23258-5d11-45af-abd6-67b8170b6408", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "543.00", "lithology_to": "583.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201512}}, {"model": "wells.lithologydescription", "pk": "77f66d5b-2b54-4027-8299-ee659bd23ce5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, "well_tag_number": 112913, "lithology_from": "13.00", "lithology_to": "75.00", "lithology_raw_data": "CLAY, SILT & SOME TRACES SMALL GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201949}}, {"model": "wells.lithologydescription", "pk": "77fe9039-97a1-485a-b264-2596ec66d450", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well_tag_number": 112689, "lithology_from": "220.00", "lithology_to": "243.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200526}}, {"model": "wells.lithologydescription", "pk": "78072934-d7ae-41f6-ad7e-f982265ee74f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T17:55:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, "well_tag_number": 113177, "lithology_from": "75.00", "lithology_to": "250.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203438}}, {"model": "wells.lithologydescription", "pk": "780f6c7e-8a47-4542-96b3-6a7f02717eac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, "well_tag_number": 112947, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "COBBLES WITH MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202135}}, {"model": "wells.lithologydescription", "pk": "781fc0fb-33fe-4f03-bb5d-160a68b0a67d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200031}}, {"model": "wells.lithologydescription", "pk": "7821f5c2-51b8-49a6-a959-2ad13921768c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "48.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202330}}, {"model": "wells.lithologydescription", "pk": "782b327c-1307-4a0a-8e0e-a2dfa07ce265", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:25:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, "well_tag_number": 112874, "lithology_from": "60.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY & ROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201730}}, {"model": "wells.lithologydescription", "pk": "782c23b3-c9fc-4839-a066-0f4e6c586e32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "215.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198585}}, {"model": "wells.lithologydescription", "pk": "7830cf07-87ab-4f81-8222-7e89c3fe45e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TOPSOIL, GRAVEL, WOOD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201918}}, {"model": "wells.lithologydescription", "pk": "785848ad-8be6-42bf-82aa-5a17b285007f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:42:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, "well_tag_number": 113081, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202888}}, {"model": "wells.lithologydescription", "pk": "785af595-30b4-41bc-aa66-54dcfc94f5fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "145.00", "lithology_to": "150.00", "lithology_raw_data": "softer zones", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "39", "water_bearing_estimated_flow": "1.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 150'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202355}}, {"model": "wells.lithologydescription", "pk": "785dded6-130b-4af8-bcd6-4d67aae6ba52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "37.00", "lithology_to": "65.00", "lithology_raw_data": "PACKED GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198273}}, {"model": "wells.lithologydescription", "pk": "7867896a-4b38-4a63-8972-47e731d8c8cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "286.00", "lithology_to": "292.00", "lithology_raw_data": "SANDSTONE FINE TO COARSE WITH FINE CONGLOMERATE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201492}}, {"model": "wells.lithologydescription", "pk": "7867a0f7-6259-4b67-9667-97e690c91842", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:34Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "very sandy", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203779}}, {"model": "wells.lithologydescription", "pk": "786c18eb-79c1-4652-842a-fe0b1cc83880", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:25:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, "well_tag_number": 112869, "lithology_from": "0.00", "lithology_to": "25.90", "lithology_raw_data": "GREY & BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201706}}, {"model": "wells.lithologydescription", "pk": "7884e41e-72cc-4411-a4ae-497eb694bac0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198644}}, {"model": "wells.lithologydescription", "pk": "7897494b-3001-4bb0-880e-6a5ef2013b84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "73.00", "lithology_to": "93.00", "lithology_raw_data": "and fine sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203214}}, {"model": "wells.lithologydescription", "pk": "78aaa859-de3b-4cb9-be2d-4e54fd5ee011", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "99.00", "lithology_to": "112.00", "lithology_raw_data": "MEDIUM SOFT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201525}}, {"model": "wells.lithologydescription", "pk": "78b41321-d5b6-4fff-bf43-80de00039b66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "76.00", "lithology_to": "96.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "2 PPM Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202618}}, {"model": "wells.lithologydescription", "pk": "78b5eb7f-b513-4412-b95c-b6ce9ea4992b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well_tag_number": 113125, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "FILL ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203112}}, {"model": "wells.lithologydescription", "pk": "78baf0c8-b06c-4f42-9d70-245fb8269aba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "141.00", "lithology_to": "195.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201915}}, {"model": "wells.lithologydescription", "pk": "78bbbecb-92e3-4cec-96da-c7a249e7ecfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "26.00", "lithology_to": "33.00", "lithology_raw_data": "rock", "lithology_description": "06", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201386}}, {"model": "wells.lithologydescription", "pk": "78d74f3b-dfe2-4677-901e-e0a10b07abd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "23.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198920}}, {"model": "wells.lithologydescription", "pk": "78ec4d13-91b1-4ebe-b4de-857a09233242", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:30:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:38Z", "activity_submission": null, "well_tag_number": 113023, "lithology_from": "0.00", "lithology_to": "80.00", "lithology_raw_data": "RED SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202548}}, {"model": "wells.lithologydescription", "pk": "78ef1cf7-0422-4b55-88aa-ef7c8139e5bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "12.00", "lithology_to": "14.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199211}}, {"model": "wells.lithologydescription", "pk": "78f57bf6-6cae-4407-8bbc-87d3047e847d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198790}}, {"model": "wells.lithologydescription", "pk": "78fa8523-f812-4a34-8a02-1bd834f11408", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-13T21:03:09Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-26T21:06:32Z", "activity_submission": null, "well_tag_number": 113032, "lithology_from": "45.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "50'=WATER BEARING FRACTURE, 2 USGPM; 260'=WATER BEARING FRACTURE, 173 GPM.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202599}}, {"model": "wells.lithologydescription", "pk": "7904496d-4dde-4447-9777-f2a5a22adbd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well_tag_number": 113066, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202751}}, {"model": "wells.lithologydescription", "pk": "791785c8-5dbc-4bfb-87e9-0f440d2e89de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "239.00", "lithology_to": "248.00", "lithology_raw_data": "W.B. GREY SAND (CLEAN WATER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200930}}, {"model": "wells.lithologydescription", "pk": "7919e72d-7955-462f-bd8a-75e5ab5fb50e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T19:53:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, "well_tag_number": 113013, "lithology_from": "1.00", "lithology_to": "300.00", "lithology_raw_data": "some quartz, competant", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 60'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202497}}, {"model": "wells.lithologydescription", "pk": "791b1901-56fe-470d-8541-cb35db9cfb44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "400.00", "lithology_to": "440.00", "lithology_raw_data": "BEDROCK, BASALT", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOME FRACTURES; COLOUR=GREY/RED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199634}}, {"model": "wells.lithologydescription", "pk": "791f0f27-bb17-40b4-a4ea-8fe69f03ec35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198447}}, {"model": "wells.lithologydescription", "pk": "792a048f-b75f-436b-830f-5635c598210c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:31Z", "activity_submission": null, "well_tag_number": 113307, "lithology_from": "108.00", "lithology_to": "362.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOFT ZONES AT 114-117', 124-181', 233-236'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204068}}, {"model": "wells.lithologydescription", "pk": "79363714-5909-4be2-b1ce-85084bb482bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "252.00", "lithology_to": "255.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203663}}, {"model": "wells.lithologydescription", "pk": "79365e9c-bbfb-49a0-90a3-b843656ef0a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:07Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "DARK GREY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201690}}, {"model": "wells.lithologydescription", "pk": "7942668b-aee8-48d2-9992-e478780fecc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:40:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T18:46:06Z", "activity_submission": null, "well_tag_number": 112666, "lithology_from": "95.00", "lithology_to": "300.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE @ 295'; 40 GPM; CLEAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200424}}, {"model": "wells.lithologydescription", "pk": "79537418-6274-4af4-aad6-4f28e55651b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, "well_tag_number": 112588, "lithology_from": "200.00", "lithology_to": "275.00", "lithology_raw_data": "MEDIUM/HARD; VOLCANIC - FELDSPAR", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURES; 255'=WATER FRACTURE, 1520 LITRES PER DAY; COLOUR=BLUE/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199908}}, {"model": "wells.lithologydescription", "pk": "79666131-b79d-430d-8ce2-45f601e06c82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:39:35Z", "activity_submission": null, "well_tag_number": 112789, "lithology_from": "3.00", "lithology_to": "44.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8\" BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201134}}, {"model": "wells.lithologydescription", "pk": "797ae792-0f2b-42ce-ab8e-2a1d3b301b02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well_tag_number": 112391, "lithology_from": "105.00", "lithology_to": "116.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198438}}, {"model": "wells.lithologydescription", "pk": "79850bb8-4d52-4324-a7dd-9236d62f78c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:23:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, "well_tag_number": 112702, "lithology_from": "35.00", "lithology_to": "143.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200572}}, {"model": "wells.lithologydescription", "pk": "798a0fae-2984-49c9-94f1-1e5187397a78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:13:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, "well_tag_number": 112515, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199390}}, {"model": "wells.lithologydescription", "pk": "799510de-7d1f-43f9-a1bb-3f99d78f3ad3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "62.00", "lithology_to": "66.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "0 IRON", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200611}}, {"model": "wells.lithologydescription", "pk": "79b47882-f90a-42c2-9c41-6b35b4ac9a14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "69.00", "lithology_to": "142.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK ", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN AND WHITE; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200704}}, {"model": "wells.lithologydescription", "pk": "79c02bfa-b6e0-45fa-b690-b3c7b7292f33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, "well_tag_number": 113210, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203633}}, {"model": "wells.lithologydescription", "pk": "79cbd2bb-7ce6-44cc-832c-58e8f9a232f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "70.00", "lithology_to": "72.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199071}}, {"model": "wells.lithologydescription", "pk": "79d2c3c3-fa85-4d6b-967b-2d0cca32200f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "74.00", "lithology_to": "87.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202246}}, {"model": "wells.lithologydescription", "pk": "79dedd3a-c78d-4125-82b9-a7f8929561e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, "well_tag_number": 112703, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200573}}, {"model": "wells.lithologydescription", "pk": "79e3bd9c-0761-4be9-94a2-9e7a56d57c1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198351}}, {"model": "wells.lithologydescription", "pk": "79e9a821-ff5e-4055-85b4-94357ea8ba10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": "with black streaks", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199714}}, {"model": "wells.lithologydescription", "pk": "79ee6bb6-8f1e-4196-8106-f305737405db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "85.00", "lithology_to": "88.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203089}}, {"model": "wells.lithologydescription", "pk": "79f3609a-9897-47c1-883a-5b11c52bab08", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130481}}, {"model": "wells.lithologydescription", "pk": "7a02e455-6bf4-45f6-8e9a-7375446b27d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, "well_tag_number": 112591, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199922}}, {"model": "wells.lithologydescription", "pk": "7a056895-4905-4326-a9a7-45cf040bc3dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "118.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201670}}, {"model": "wells.lithologydescription", "pk": "7a15c37e-dba0-4ef2-897e-7376c4dbd399", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:51:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:36Z", "activity_submission": null, "well_tag_number": 112244, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197498}}, {"model": "wells.lithologydescription", "pk": "7a1b2ee8-1320-415c-bc33-db8de62f614f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "110.00", "lithology_to": "111.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197649}}, {"model": "wells.lithologydescription", "pk": "7a205fee-5fda-4f51-a64d-8f2db335f126", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "250.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM/HARD", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "280'=SOFT, WHITE, SEAMS OF FRACTURED FELDSPAR, 5 GPM, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198098}}, {"model": "wells.lithologydescription", "pk": "7a238909-6560-420d-9693-394bd13759f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, "well_tag_number": 112722, "lithology_from": "26.00", "lithology_to": "38.00", "lithology_raw_data": "WATER BEARING SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200694}}, {"model": "wells.lithologydescription", "pk": "7a2c53fe-58e3-4dc8-be7e-4bf03fb6dd66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "65.00", "lithology_to": "72.00", "lithology_raw_data": "SHALE BENTONINTIC GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143912}}, {"model": "wells.lithologydescription", "pk": "7a35012b-45e6-4acf-86e5-9dc21482c90b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:43:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, "well_tag_number": 112988, "lithology_from": "20.00", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202401}}, {"model": "wells.lithologydescription", "pk": "7a3a4f8d-6792-4590-919e-8b4a72943c15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "58.00", "lithology_to": "76.00", "lithology_raw_data": "Grey silty clay, some gravel, firm", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203466}}, {"model": "wells.lithologydescription", "pk": "7a41d20b-8e9d-47a8-ba1a-7aac120ab504", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "231.00", "lithology_to": "330.00", "lithology_raw_data": "with cobbles, very thin sand layers", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200339}}, {"model": "wells.lithologydescription", "pk": "7a549c04-b2fe-4165-bcce-52867f70db95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:56:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, "well_tag_number": 113142, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": "WET SILTY SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203253}}, {"model": "wells.lithologydescription", "pk": "7a56a3e5-af65-48a7-9573-4a71d1372279", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, "well_tag_number": 112243, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "60'-61'=3/8\" WASHED ROCK; 61'-77'=ENVIROPLUG MEDIUM; 77'-100'=3/8\" WASHED ROCK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197496}}, {"model": "wells.lithologydescription", "pk": "7a5820ca-8706-43c4-bce5-164d29f8d6ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T22:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, "well_tag_number": 112717, "lithology_from": "31.00", "lithology_to": "59.00", "lithology_raw_data": "CLEANER SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CLEANER; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200653}}, {"model": "wells.lithologydescription", "pk": "7a606db3-7fa5-4136-9313-b43938d56c39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198893}}, {"model": "wells.lithologydescription", "pk": "7a6975ee-6c83-4de5-83a4-4df652ea487e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198997}}, {"model": "wells.lithologydescription", "pk": "7a6e7d2b-4f58-488a-a0c2-bf70d96c9521", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": null, "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202335}}, {"model": "wells.lithologydescription", "pk": "7a6f11f4-1992-4fd5-ab8e-8ca1b3ca732d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197602}}, {"model": "wells.lithologydescription", "pk": "7a740eca-de72-4d66-a48d-eb5da8d59677", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "55.00", "lithology_to": "75.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200403}}, {"model": "wells.lithologydescription", "pk": "7a77261e-21db-4f51-bd58-54ae50687ebc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "240.00", "lithology_to": "250.00", "lithology_raw_data": "CLAY, SILT, TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199576}}, {"model": "wells.lithologydescription", "pk": "7a85f008-6413-429a-af0d-12df8b573d3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "66.00", "lithology_to": "75.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "manganese", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203322}}, {"model": "wells.lithologydescription", "pk": "7a8f1a36-73eb-4621-92d4-7e861ee763f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "167.00", "lithology_to": "175.00", "lithology_raw_data": "fine sand and gravels", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197622}}, {"model": "wells.lithologydescription", "pk": "7a97a0eb-47bc-466d-ba27-9238ee1fbf9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "320.00", "lithology_to": "368.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201835}}, {"model": "wells.lithologydescription", "pk": "7a9d0205-8cf5-4806-a73f-3e245043005e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "15.50", "lithology_to": "26.00", "lithology_raw_data": "LOOSE-DENSE, DARK GRAY, MEDIUM SAND AND COARS GRAVEL WITH TRACE OF FINES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201171}}, {"model": "wells.lithologydescription", "pk": "7aa5c999-848d-4db5-8d37-6590e3b0046c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199992}}, {"model": "wells.lithologydescription", "pk": "7aabbebb-9064-401f-b13a-d655a9ce05cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199295}}, {"model": "wells.lithologydescription", "pk": "7aafefc0-69e8-4f60-984e-9f91d47d089c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "8.00", "lithology_to": "17.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198881}}, {"model": "wells.lithologydescription", "pk": "7ac3a3d8-cbcf-44fc-b97c-9abb568fbc9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "0.00", "lithology_to": "38.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202585}}, {"model": "wells.lithologydescription", "pk": "7ac6d6e0-597e-4621-8d75-c939e4ca46d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "63.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199049}}, {"model": "wells.lithologydescription", "pk": "7ad2dba1-9c76-4709-9975-7991aaa96492", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, "well_tag_number": 112878, "lithology_from": "18.00", "lithology_to": "35.00", "lithology_raw_data": "compact", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201746}}, {"model": "wells.lithologydescription", "pk": "7af8a73e-dec7-4ac8-841c-dc79a7166c83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "51.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY SILT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199150}}, {"model": "wells.lithologydescription", "pk": "7afa0c80-9131-47d1-9e61-d59af000ec34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "109.00", "lithology_to": "111.00", "lithology_raw_data": "WITH CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202333}}, {"model": "wells.lithologydescription", "pk": "7afd4547-975b-4a60-a4d0-fd982a32bd85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "157.00", "lithology_to": "181.00", "lithology_raw_data": "with fine sand", "lithology_description": "50", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cemented - Water-bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198904}}, {"model": "wells.lithologydescription", "pk": "7b08d220-9061-4163-a445-780a89da5a9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "82.00", "lithology_to": "83.00", "lithology_raw_data": "fractured", "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "10.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202819}}, {"model": "wells.lithologydescription", "pk": "7b129c6d-98ab-4e12-8eac-770016074bb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "COARSE GRAVEL WITH LARGE COBBLES, SMALL BOULDERS, SAND WITH FINES, FINE DIRTY SAND (MUD) GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING @ 20 ' ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201655}}, {"model": "wells.lithologydescription", "pk": "7b1b973d-d283-4a45-acc7-995ce10a2fa3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well_tag_number": 112613, "lithology_from": "90.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Water source @ 100'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200092}}, {"model": "wells.lithologydescription", "pk": "7b27aaa2-2efb-4d21-8048-cdc644d748f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "51.00", "lithology_to": "64.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=REDISH BROWN; DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200646}}, {"model": "wells.lithologydescription", "pk": "7b39f320-867f-458c-9318-58185508099e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "110.00", "lithology_to": "136.00", "lithology_raw_data": "GREY SILTS, SOME SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199426}}, {"model": "wells.lithologydescription", "pk": "7b3aa7b1-12c9-45cf-9aad-2b37e2ffbb2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "122.00", "lithology_to": "144.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198464}}, {"model": "wells.lithologydescription", "pk": "7b3cd6ec-f107-4bbc-b9f8-1d3446d096bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "1.31", "lithology_to": "19.96", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COATED BENTONITE CHIPS (APPROX. 30 GALLONS) AND CEMENT GROUT MIXTURE (APPROX. 50 GALLONS)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201076}}, {"model": "wells.lithologydescription", "pk": "7b4f6d05-5251-4244-8bb6-a2ff0dbac884", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "497.00", "lithology_to": "510.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200420}}, {"model": "wells.lithologydescription", "pk": "7b525273-3492-453e-ae85-0eba78221115", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "222.00", "lithology_to": "290.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN AND WHITE; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200706}}, {"model": "wells.lithologydescription", "pk": "7b750b9d-c711-424c-9dbb-002980d7ac5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "145.00", "lithology_to": "168.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132529}}, {"model": "wells.lithologydescription", "pk": "7b76805e-332f-48e9-86fe-a589db6dc816", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "455.00", "lithology_to": "600.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE AND BLACK; SOLID; POSSIBLE WATER @ 525'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200760}}, {"model": "wells.lithologydescription", "pk": "7b7864fa-5365-4ac7-83d1-a615cb43dff8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "42.00", "lithology_to": "50.00", "lithology_raw_data": "SILTY BROWN SAND WITH SILTY CLAY LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200667}}, {"model": "wells.lithologydescription", "pk": "7b86d981-91ad-4dbb-86bd-36810349605b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "275.00", "lithology_to": "290.00", "lithology_raw_data": "WB SAND/GRAVEL (CLEANER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203132}}, {"model": "wells.lithologydescription", "pk": "7b89540e-f48b-4d11-922f-46fd90348817", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, "well_tag_number": 112229, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "LOOSE, BLACK ORGANICS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197412}}, {"model": "wells.lithologydescription", "pk": "7b942018-a10e-4c54-b817-c3d6024f4853", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well_tag_number": 113008, "lithology_from": "29.00", "lithology_to": "36.00", "lithology_raw_data": "sand-med course", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202480}}, {"model": "wells.lithologydescription", "pk": "7b994ff6-733c-475a-ab3c-8e7e8a775775", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:58:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, "well_tag_number": 112651, "lithology_from": "114.00", "lithology_to": "139.00", "lithology_raw_data": "SAND AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "130'=PUMP TEST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200355}}, {"model": "wells.lithologydescription", "pk": "7b9b9b30-eb1e-42dc-95cc-851204912178", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well_tag_number": 112994, "lithology_from": "17.00", "lithology_to": "19.00", "lithology_raw_data": "FRACTURED CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202437}}, {"model": "wells.lithologydescription", "pk": "7b9eeed2-7999-41f7-9033-afcec0d9b59a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "73.00", "lithology_to": "74.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199152}}, {"model": "wells.lithologydescription", "pk": "7ba5f6e5-378a-485e-af72-723e1eb1815c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "62.00", "lithology_to": "80.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200018}}, {"model": "wells.lithologydescription", "pk": "7ba8a248-bc1a-4cf3-9060-68c21bae695f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well_tag_number": 113070, "lithology_from": "14.00", "lithology_to": "19.00", "lithology_raw_data": "W.B. MEDIUM GRAVEL AND SAND (VERY RED)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202787}}, {"model": "wells.lithologydescription", "pk": "7ba9c0ab-71d6-4267-820a-e4748ce44f7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199220}}, {"model": "wells.lithologydescription", "pk": "7baa738b-d67b-4278-bde7-a219bb082dd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, "well_tag_number": 113252, "lithology_from": "145.00", "lithology_to": "155.00", "lithology_raw_data": "sand boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203816}}, {"model": "wells.lithologydescription", "pk": "7bbacf59-b38b-4d07-9c09-6a5ab3ddff9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "7.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203199}}, {"model": "wells.lithologydescription", "pk": "7bc02976-cbb8-4d59-9673-8fdc50682065", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well_tag_number": 113152, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "sand fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "o-iron slight manganese", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203307}}, {"model": "wells.lithologydescription", "pk": "7bdba916-25ad-4c9b-b688-0517543e7955", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T22:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T22:11:12Z", "activity_submission": null, "well_tag_number": 113040, "lithology_from": "20.00", "lithology_to": "255.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202631}}, {"model": "wells.lithologydescription", "pk": "7be7de23-25b6-4db3-b04a-bd08087e764c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "42.00", "lithology_to": "96.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202759}}, {"model": "wells.lithologydescription", "pk": "7bec0c32-2361-4927-bd9d-bd35cadf60cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203198}}, {"model": "wells.lithologydescription", "pk": "7bf86e37-5e1f-48ab-a37c-d28652640fe2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "274.00", "lithology_to": "310.00", "lithology_raw_data": "GREY-PINK HEAVING BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "80.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "CLAPSING ROCK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202541}}, {"model": "wells.lithologydescription", "pk": "7c011c15-7d62-46b0-a797-71368beb4b45", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:24:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:24:20Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "220.00", "lithology_to": "280.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198807}}, {"model": "wells.lithologydescription", "pk": "7c038e72-8053-434b-b45d-5dc57b04708a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well_tag_number": 112862, "lithology_from": "85.00", "lithology_to": "105.00", "lithology_raw_data": "CLAY, TILL, SOME GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201649}}, {"model": "wells.lithologydescription", "pk": "7c0ba82c-facb-4ea1-a388-e0f6fbe45970", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "10.00", "lithology_to": "160.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197365}}, {"model": "wells.lithologydescription", "pk": "7c0d3f1e-6c49-4d0d-91d0-c81d92117883", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "29.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202503}}, {"model": "wells.lithologydescription", "pk": "7c155b74-ee72-4204-b1b0-34c98113f52b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198586}}, {"model": "wells.lithologydescription", "pk": "7c23c75d-b1a9-4397-b9c2-ec849f58bbe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE SAND, LENSES OF SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199180}}, {"model": "wells.lithologydescription", "pk": "7c270bf9-29a1-4a99-8870-fd2c916962fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200810}}, {"model": "wells.lithologydescription", "pk": "7c2b4113-88c8-4993-a5ea-840cc0eb1666", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:13:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, "well_tag_number": 112844, "lithology_from": "10.00", "lithology_to": "21.00", "lithology_raw_data": "SAND AND GRAVEL, RUSTY W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201440}}, {"model": "wells.lithologydescription", "pk": "7c4716d9-bb85-4d4b-bbc0-1fbb73244ac4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "8.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202326}}, {"model": "wells.lithologydescription", "pk": "7c523150-178e-4b92-b9dc-33b100b59056", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, "well_tag_number": 112654, "lithology_from": "110.00", "lithology_to": "115.00", "lithology_raw_data": "cased bedrock", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200362}}, {"model": "wells.lithologydescription", "pk": "7c579c17-a59d-4c36-aa18-a7fd99bffdc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "90.00", "lithology_to": "150.00", "lithology_raw_data": "SANDS AND GRAVEL", "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203951}}, {"model": "wells.lithologydescription", "pk": "7c5a295e-e348-41d3-975f-c27dd7fe61de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "79.00", "lithology_to": "96.00", "lithology_raw_data": "DRY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203121}}, {"model": "wells.lithologydescription", "pk": "7c5deae0-1a28-4cd9-a6b9-bc92fab66057", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "168.00", "lithology_to": "191.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202822}}, {"model": "wells.lithologydescription", "pk": "7c70f357-8eca-4ca4-b5d2-c0fda3fa0678", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199574}}, {"model": "wells.lithologydescription", "pk": "7c711fcc-0e9e-403c-80d9-155f29682aa1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well_tag_number": 112992, "lithology_from": "56.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202424}}, {"model": "wells.lithologydescription", "pk": "7c75c56c-0fc4-4965-a014-7a2697f9d48d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "136.00", "lithology_to": "158.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203031}}, {"model": "wells.lithologydescription", "pk": "7c7c5f9b-6562-45c5-864d-a88b59bb947b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "558.00", "lithology_to": "645.00", "lithology_raw_data": "SANDSTONE (FINE-COARSE)", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198008}}, {"model": "wells.lithologydescription", "pk": "7c7cece9-57d1-4c2a-9e0d-15acbafa14fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "85.00", "lithology_to": "95.00", "lithology_raw_data": "SH W/ SS & SLTST LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143915}}, {"model": "wells.lithologydescription", "pk": "7c7eff39-cfb1-44e1-a187-e3c26830ea42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, "well_tag_number": 113168, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203365}}, {"model": "wells.lithologydescription", "pk": "7c8516e7-b7b6-4603-9b2e-349af06db3e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "860.00", "lithology_to": "1020.00", "lithology_raw_data": "bedrock with very hard zones", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "very little water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201265}}, {"model": "wells.lithologydescription", "pk": "7c8c8cc0-22d4-41c7-a617-30fe08c570cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "96.00", "lithology_to": "106.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "2 PPM Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202619}}, {"model": "wells.lithologydescription", "pk": "7c8f360b-41bf-45b2-a0cc-10efd3394307", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "40.00", "lithology_to": "46.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "0 iron .3manganese", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203319}}, {"model": "wells.lithologydescription", "pk": "7c977210-1de4-4b00-8cfa-134532672dd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "630.00", "lithology_to": "641.00", "lithology_raw_data": "SILTSTONE WITH FINE SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201561}}, {"model": "wells.lithologydescription", "pk": "7ca3e6b9-63d4-41cf-9851-5753a61c4af4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "30.00", "lithology_to": "49.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201981}}, {"model": "wells.lithologydescription", "pk": "7ca9116f-ed17-4b86-b7e7-7898cbde1ad3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "gavel with wood debris", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198321}}, {"model": "wells.lithologydescription", "pk": "7cb80232-fb88-4af0-a883-4c2e87a8767c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "128.00", "lithology_to": "145.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197652}}, {"model": "wells.lithologydescription", "pk": "7cb80696-756c-4a2f-802b-4fcd8b03d92d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SILT, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199128}}, {"model": "wells.lithologydescription", "pk": "7cb95998-b27e-48f1-8d41-e4ed9b63b116", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198217}}, {"model": "wells.lithologydescription", "pk": "7ccb5f53-1eec-4f31-b96f-82557edf8fcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "4.00", "lithology_to": "67.00", "lithology_raw_data": "MEDIUM/HARD DENSE HARDPAN WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197419}}, {"model": "wells.lithologydescription", "pk": "7cdae378-f74c-4140-ba58-af7fbe6b0706", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:32:57Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T00:37:20Z", "activity_submission": null, "well_tag_number": 112657, "lithology_from": "9.00", "lithology_to": "195.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE; CLOSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200382}}, {"model": "wells.lithologydescription", "pk": "7ce32703-a8bf-4758-bd03-9153b1cf27f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "30.00", "lithology_to": "32.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198658}}, {"model": "wells.lithologydescription", "pk": "7cf52901-16b2-4f5d-9533-55c1a614057f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well_tag_number": 113095, "lithology_from": "221.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202959}}, {"model": "wells.lithologydescription", "pk": "7cfbb4d9-1ff1-47c9-814e-81efff780962", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well_tag_number": 112599, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199976}}, {"model": "wells.lithologydescription", "pk": "7d0460ca-3ea2-428f-b8a5-f928aa16fa1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "160.00", "lithology_to": "175.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202707}}, {"model": "wells.lithologydescription", "pk": "7d06ae1c-4cca-41d7-89d0-f0e97826ea4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "67.00", "lithology_to": "69.00", "lithology_raw_data": "MEDIUM-HARD; BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN AND WHITE; DRY; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200703}}, {"model": "wells.lithologydescription", "pk": "7d09ce8b-8e66-4bf4-9c9e-e8ba55202eee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197792}}, {"model": "wells.lithologydescription", "pk": "7d0b27ba-e430-4a92-a0a7-d72a75ab027c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "36.00", "lithology_to": "45.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=TAN AND BROWN; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200794}}, {"model": "wells.lithologydescription", "pk": "7d0d21e1-2fb7-479e-a2a1-ec4f0ace6439", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:33:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, "well_tag_number": 112966, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202263}}, {"model": "wells.lithologydescription", "pk": "7d1347d6-ab94-4b3b-b816-ed91361a28f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, "well_tag_number": 112412, "lithology_from": "41.00", "lithology_to": "215.00", "lithology_raw_data": "BEDROCK AND BASALT LAYERED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RED/GRAY; 133'-134'=FIRST SIGN OF WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198552}}, {"model": "wells.lithologydescription", "pk": "7d1a946b-c2d0-426a-b506-ff7be697b900", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "Hard Grey bedrock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202460}}, {"model": "wells.lithologydescription", "pk": "7d1d6a84-0d9c-459d-862f-d08a2bb81977", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199190}}, {"model": "wells.lithologydescription", "pk": "7d26227e-f8ca-4ab2-8ac5-7d3906e6c6b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201186}}, {"model": "wells.lithologydescription", "pk": "7d2a120e-a8d4-4cdc-a159-7e49f785d8d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:39:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, "well_tag_number": 112262, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197579}}, {"model": "wells.lithologydescription", "pk": "7d34397d-3a1d-4d83-8bca-7373291a8a98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": "GLACIAL TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200434}}, {"model": "wells.lithologydescription", "pk": "7d3f2926-eae1-478f-864a-026393b8b243", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "30.00", "lithology_to": "66.00", "lithology_raw_data": "boulders", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203011}}, {"model": "wells.lithologydescription", "pk": "7d41b9fe-0343-420a-9f55-4edec36adff8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "234.00", "lithology_to": "236.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202692}}, {"model": "wells.lithologydescription", "pk": "7d47abeb-56a2-4a24-9802-d72aba86306c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:20:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, "well_tag_number": 112763, "lithology_from": "15.00", "lithology_to": "24.00", "lithology_raw_data": "DENSE, MEDIUM, STIFF; SILTY CLAY - TRACE SAND & GRAVEL. INCREASE IN GRAVEL CONTENT & SIZE-UP TO 4CM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK, GREYISH BROWN. LOW TO MEDIUM PLASTICITY, DENSE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201003}}, {"model": "wells.lithologydescription", "pk": "7d4aab4a-f22b-4e58-9a0c-9e050bfefd9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "ORGANICS WITH MIXED ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198142}}, {"model": "wells.lithologydescription", "pk": "7d5cbe4b-4cb9-457b-9e83-46fed71e0c6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY/ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198889}}, {"model": "wells.lithologydescription", "pk": "7d641e49-2323-4cac-be3d-a2aed492a220", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "1101.40", "lithology_to": "1478.60", "lithology_raw_data": "HARD TO VERY HARD; CONGLOMERATE SANDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "330.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "APPROXIMATELY 330 USGPM; CHERT, OCCASIONAL SILTSTONE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201023}}, {"model": "wells.lithologydescription", "pk": "7d6d3ab8-0448-4c9e-90de-8f80ccaa80e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "161.00", "lithology_to": "164.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH SOME GRAVEL LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200724}}, {"model": "wells.lithologydescription", "pk": "7d795947-2a16-4b6e-b594-6c78674ed95e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "damp", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202633}}, {"model": "wells.lithologydescription", "pk": "7d82532c-19c2-48d3-875a-b84c592f3663", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well_tag_number": 112698, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "some silt, fine gravel", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200556}}, {"model": "wells.lithologydescription", "pk": "7d86f752-d8e3-4664-94a4-4ce0e5ab0463", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "54.00", "lithology_to": "60.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200377}}, {"model": "wells.lithologydescription", "pk": "7d9cdc8f-7880-4952-b3bb-ed6ff81595cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:07:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, "well_tag_number": 112970, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "DRY GRAVEL & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202286}}, {"model": "wells.lithologydescription", "pk": "7da5f7d9-1550-40ab-861d-23cfdac1fd02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "113.00", "lithology_to": "115.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198630}}, {"model": "wells.lithologydescription", "pk": "7da92800-34a3-4f8e-89ef-4f6df89e05ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well_tag_number": 112605, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200026}}, {"model": "wells.lithologydescription", "pk": "7db65790-d4fb-4c96-a88e-ef2a09422971", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:19:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, "well_tag_number": 113204, "lithology_from": "0.00", "lithology_to": "95.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203581}}, {"model": "wells.lithologydescription", "pk": "7dc6492d-89a7-423a-8518-2cfee7470cdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "51.00", "lithology_to": "306.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201351}}, {"model": "wells.lithologydescription", "pk": "7dd6f61d-9f23-4d61-ad29-ae1c2a668f88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "94.00", "lithology_to": "98.00", "lithology_raw_data": "W.B. BROWN FINE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200915}}, {"model": "wells.lithologydescription", "pk": "7ddf28cc-2525-4259-8c9e-8b5658eb25e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "64.00", "lithology_to": "76.00", "lithology_raw_data": null, "lithology_description": "49", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197668}}, {"model": "wells.lithologydescription", "pk": "7dea16e4-ae38-4c42-9b5e-872ca177f131", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "92.00", "lithology_to": "109.00", "lithology_raw_data": "gravelly", "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203524}}, {"model": "wells.lithologydescription", "pk": "7df28a2d-5ee9-4fd6-bce4-7a7095cce9bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "460.00", "lithology_to": "493.00", "lithology_raw_data": "BLACK SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201300}}, {"model": "wells.lithologydescription", "pk": "7dfa86fb-8614-41a0-bfad-30366b4e2f5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "36.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200007}}, {"model": "wells.lithologydescription", "pk": "7dfd7a11-88f0-4bb3-bbe0-2aa5a1b91fa7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "175.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203681}}, {"model": "wells.lithologydescription", "pk": "7e02bfec-ce24-4f34-8304-65dbb319e1a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:34:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-10T21:52:28Z", "activity_submission": null, "well_tag_number": 113080, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "Till, Dark grey, Sense Stiff, Moist", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202885}}, {"model": "wells.lithologydescription", "pk": "7e101fc8-1c92-4afc-b929-7d7003f33a3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well_tag_number": 113153, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": "sand, med coarse", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1-2 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203312}}, {"model": "wells.lithologydescription", "pk": "7e204178-21ef-4a71-a3be-52d20e32ef3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, "well_tag_number": 113099, "lithology_from": "32.00", "lithology_to": "75.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202976}}, {"model": "wells.lithologydescription", "pk": "7e227da5-e4ed-4d6f-ae4a-eeeb372c4a72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "142.00", "lithology_to": "150.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203961}}, {"model": "wells.lithologydescription", "pk": "7e25e43e-01be-40b3-9c89-72ecee678f11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, "well_tag_number": 113092, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202931}}, {"model": "wells.lithologydescription", "pk": "7e373b44-cf47-434d-a4e1-310c40d1602d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "87.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198923}}, {"model": "wells.lithologydescription", "pk": "7e4237d5-29d5-431a-a044-fe5946e47881", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "22.00", "lithology_to": "29.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194605}}, {"model": "wells.lithologydescription", "pk": "7e44992c-d592-4f19-bc3d-69c1e4f8a7b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "120.00", "lithology_to": "143.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201671}}, {"model": "wells.lithologydescription", "pk": "7e470d35-6856-4f70-a9a3-52cfed59a614", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, "well_tag_number": 113299, "lithology_from": "12.00", "lithology_to": "54.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry,", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204025}}, {"model": "wells.lithologydescription", "pk": "7e4d8b2d-e248-4be1-a0cf-d86d6cdf3e83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "258.00", "lithology_to": "261.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199717}}, {"model": "wells.lithologydescription", "pk": "7e522de8-cf76-41fe-8715-92d65a56b4b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "SILTY BROWN SANDS, SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197456}}, {"model": "wells.lithologydescription", "pk": "7e5aa493-c1b2-45d9-9ff4-27a36bcdf5bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:22:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, "well_tag_number": 112427, "lithology_from": "47.00", "lithology_to": "48.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198678}}, {"model": "wells.lithologydescription", "pk": "7e5ce314-4f8b-4984-a7f7-015d498fb105", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well_tag_number": 112370, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "BLACK/WHITE/PINK, GRANITE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198311}}, {"model": "wells.lithologydescription", "pk": "7e664f49-298e-4160-8644-98c806f65ea6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "23.00", "lithology_to": "118.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199788}}, {"model": "wells.lithologydescription", "pk": "7e6c3961-c2cb-4120-979e-e313fda6a9ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:01:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:51Z", "activity_submission": null, "well_tag_number": 112350, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198176}}, {"model": "wells.lithologydescription", "pk": "7e875f96-c258-498b-9830-4893d3bebbb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "3.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197538}}, {"model": "wells.lithologydescription", "pk": "7e8de72e-a3d5-4c4d-bc6e-0a8e16fb15ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "293.00", "lithology_to": "462.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203206}}, {"model": "wells.lithologydescription", "pk": "7e8e2282-9d16-4e00-b1c7-9e2671f7bc29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:16:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, "well_tag_number": 113218, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203703}}, {"model": "wells.lithologydescription", "pk": "7e93bcb1-7a83-4ae1-9693-314b3a935b60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, "well_tag_number": 112588, "lithology_from": "15.00", "lithology_to": "106.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOFT BROKEN AREAS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199906}}, {"model": "wells.lithologydescription", "pk": "7e95b97c-0f9c-4cdd-a2d0-a61a4931efbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200016}}, {"model": "wells.lithologydescription", "pk": "7e97c968-1b23-4cee-8bdd-ef8c3a6db18d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well_tag_number": 112845, "lithology_from": "33.00", "lithology_to": "57.00", "lithology_raw_data": "GREY CLAYS, SILTS AND WOOD. SOME SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201444}}, {"model": "wells.lithologydescription", "pk": "7eafef50-86d8-4d43-9383-b34b59066018", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, "well_tag_number": 112927, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SAND, SOME BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202056}}, {"model": "wells.lithologydescription", "pk": "7eb16638-2f37-4e7f-8477-5b1237ee02ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "3.00", "lithology_to": "16.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "D", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202532}}, {"model": "wells.lithologydescription", "pk": "7eb45d79-01af-403a-9edb-4abf2056d6c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "INSTALL 4\" PVC LINER AND PUMP. ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203108}}, {"model": "wells.lithologydescription", "pk": "7ec4cc9e-adf3-4856-a425-7e018fb5152c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "68.00", "lithology_to": "74.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water-bearing ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203027}}, {"model": "wells.lithologydescription", "pk": "7ecbb35e-8213-45de-8cb5-9937e4adccd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "482.00", "lithology_to": "533.00", "lithology_raw_data": "grey with trace of yellow (gold)", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.1250", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201242}}, {"model": "wells.lithologydescription", "pk": "7ed3be7b-0ff3-4e39-9461-9ecca506c361", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:55:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, "well_tag_number": 112980, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202346}}, {"model": "wells.lithologydescription", "pk": "7ee037d5-ee97-47db-a086-e1ce1154888a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:09:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, "well_tag_number": 112462, "lithology_from": "4.00", "lithology_to": "83.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198988}}, {"model": "wells.lithologydescription", "pk": "7ee4291c-2e79-4ea5-a85d-dbb37b856204", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198840}}, {"model": "wells.lithologydescription", "pk": "7ee53fd0-b41c-4bde-b256-e44a22dafdb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "207.00", "lithology_to": "215.00", "lithology_raw_data": "VERY SILTY SAND AND GRAVEL (BROWN/MUDDY)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202724}}, {"model": "wells.lithologydescription", "pk": "7ee5fef9-0df1-40da-8062-6568e47b1e5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "530.00", "lithology_to": "535.00", "lithology_raw_data": "SILTSTONE & FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201509}}, {"model": "wells.lithologydescription", "pk": "7ee8c785-d367-412b-a6d9-cc1dcdf84861", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, "well_tag_number": 112654, "lithology_from": "115.00", "lithology_to": "195.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200363}}, {"model": "wells.lithologydescription", "pk": "7efe10ac-526b-42ff-85cc-420c4bbb00dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T16:48:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, "well_tag_number": 113185, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": "62", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203483}}, {"model": "wells.lithologydescription", "pk": "7f07bf08-c8cf-4b25-9c31-282ca35bc3ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:11:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:11:13Z", "activity_submission": null, "well_tag_number": 113018, "lithology_from": "7.00", "lithology_to": "300.00", "lithology_raw_data": "sandstone, shale lenses", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 120'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202516}}, {"model": "wells.lithologydescription", "pk": "7f148cd9-9656-4d2c-ba78-0fff34500aa4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T21:01:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, "well_tag_number": 112831, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "cobbles, balders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201364}}, {"model": "wells.lithologydescription", "pk": "7f1de6a0-abe5-4ddb-b408-a1e6673af570", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "5.00", "lithology_to": "75.00", "lithology_raw_data": "MEDIUM GRAINED SAND WITH COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198414}}, {"model": "wells.lithologydescription", "pk": "7f21682a-bfc9-4e11-aa20-01f70877922b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197693}}, {"model": "wells.lithologydescription", "pk": "7f266112-dc0e-40b4-9e0f-9ec77680ef7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DARK BROWN", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": "SOFT", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202239}}, {"model": "wells.lithologydescription", "pk": "7f2b15fc-4647-4d65-82d2-dbb4755070ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "32.00", "lithology_to": "34.00", "lithology_raw_data": "BROWN SAND, DAMP", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200945}}, {"model": "wells.lithologydescription", "pk": "7f37ee58-8aa0-47b1-b4ae-bf406f9189b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, "well_tag_number": 113216, "lithology_from": "100.00", "lithology_to": "220.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203691}}, {"model": "wells.lithologydescription", "pk": "7f3c1b1a-fa21-4e08-95f0-0cfaaf8705a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, "well_tag_number": 112343, "lithology_from": "230.00", "lithology_to": "275.00", "lithology_raw_data": "BLUE/GREEN SEAMS OF GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "260'-269'=MEDIUM, BLUE/GREEN, LARGE FRACTURED ZONE - WATER SYSTEMATICALLY INCREASED TO 25+ GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198132}}, {"model": "wells.lithologydescription", "pk": "7f534e1c-bb41-41a5-a36f-46c20b8e19be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "282.00", "lithology_to": "290.00", "lithology_raw_data": "CLAY WITH SILT SEAMS - SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205647}}, {"model": "wells.lithologydescription", "pk": "7f662d97-a825-4e19-981d-201741ea0a38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "89.00", "lithology_to": "168.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197402}}, {"model": "wells.lithologydescription", "pk": "7f689bf3-af28-42ba-b2c4-5f1dfd7f83fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "91.00", "lithology_to": "97.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NOT ARTESIAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201993}}, {"model": "wells.lithologydescription", "pk": "7f70ea69-16f6-4f45-ab75-c3e92df16523", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "176.00", "lithology_to": "187.00", "lithology_raw_data": "gravel", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202646}}, {"model": "wells.lithologydescription", "pk": "7f73681a-6477-41c4-b08a-3cf06d8e954e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "340.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198642}}, {"model": "wells.lithologydescription", "pk": "7f90e693-2259-44fe-84f4-8daa443565fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "110.00", "lithology_to": "137.00", "lithology_raw_data": "some sand", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201422}}, {"model": "wells.lithologydescription", "pk": "7f97fda8-ced5-418f-a9bf-8191dcf551c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "27.00", "lithology_to": "40.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198497}}, {"model": "wells.lithologydescription", "pk": "7f9b6bfd-e6b8-4a5a-88d4-dd3fc675cdf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "46.00", "lithology_to": "49.00", "lithology_raw_data": "SILT, SOME SAND, TRACE CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200982}}, {"model": "wells.lithologydescription", "pk": "7f9fb0fd-8ff8-4585-82f5-4068774743d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "300.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "340'=2-5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198641}}, {"model": "wells.lithologydescription", "pk": "7fc94983-d627-4510-85c1-62e18dc3ae58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "285.00", "lithology_to": "291.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight - Thick wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197605}}, {"model": "wells.lithologydescription", "pk": "7fd37f71-7aff-420c-aaa4-d09b1c4b8834", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "100.00", "lithology_to": "112.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198501}}, {"model": "wells.lithologydescription", "pk": "7fd89d41-9068-4046-8f3b-d0b4fc178ccd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "345.00", "lithology_to": "550.00", "lithology_raw_data": "GREY/GREEN/WHITE, VOLCANIC WITH GREEN AND WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198109}}, {"model": "wells.lithologydescription", "pk": "7fda6e8c-b640-4c4e-8390-e5990e578c8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "18.00", "lithology_to": "37.00", "lithology_raw_data": "SMALL GRAVEL - MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "D", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202534}}, {"model": "wells.lithologydescription", "pk": "7fe74759-b0cb-46a9-a98d-902aa2b43cfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:30Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200094}}, {"model": "wells.lithologydescription", "pk": "7fec344c-ca66-430f-b198-4198295cb22c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199312}}, {"model": "wells.lithologydescription", "pk": "7fefb277-7c7a-4d6a-8a7f-9de292582dd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199238}}, {"model": "wells.lithologydescription", "pk": "7ffb1f9d-1ae4-4f0c-8217-e6918b816607", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "113.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200917}}, {"model": "wells.lithologydescription", "pk": "80047e2d-0625-4b60-972e-7b3e4b2ca711", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "97.00", "lithology_to": "120.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198685}}, {"model": "wells.lithologydescription", "pk": "800b3d7f-82c2-4c8d-83ff-c354d3f11f95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well_tag_number": 112707, "lithology_from": "4.00", "lithology_to": "19.00", "lithology_raw_data": "MEDIUM/SOFT; SOFT BROWN, WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200590}}, {"model": "wells.lithologydescription", "pk": "800c22f6-019d-4d2a-9d7e-470d41accfd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, "well_tag_number": 112686, "lithology_from": "110.00", "lithology_to": "170.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200507}}, {"model": "wells.lithologydescription", "pk": "80112c8a-e8b3-4063-8265-56bdaf5416b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "190.00", "lithology_to": "207.00", "lithology_raw_data": "W.B. SAND AND GRAVEL, BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202723}}, {"model": "wells.lithologydescription", "pk": "80214c73-ecd2-4908-8075-d7555bf41fcd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200371}}, {"model": "wells.lithologydescription", "pk": "80235c76-2bd7-44e2-950b-0f99e38c9595", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 500'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203000}}, {"model": "wells.lithologydescription", "pk": "802df354-02fb-4497-b44e-6bc56218920e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well_tag_number": 112420, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198616}}, {"model": "wells.lithologydescription", "pk": "8032d81e-190e-4c05-a856-f25ede5a6abc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197381}}, {"model": "wells.lithologydescription", "pk": "80375bf4-3be7-427c-8cc7-b0b39deb1fe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "84.60", "lithology_to": "281.40", "lithology_raw_data": "SANDSTONE WITH SILTSTONE AND MUDSTONE WITH SHALE, SANDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND VARIED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201018}}, {"model": "wells.lithologydescription", "pk": "803fe760-ba7b-4d7a-af78-6d8b89bfb765", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well_tag_number": 113304, "lithology_from": "10.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204052}}, {"model": "wells.lithologydescription", "pk": "804c7e5f-0cd8-484f-8ca9-d15c45f47aa3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:41Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "200.00", "lithology_to": "205.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198933}}, {"model": "wells.lithologydescription", "pk": "806001b6-3f29-4bcd-9c69-efd02b65d648", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well_tag_number": 113150, "lithology_from": "32.00", "lithology_to": "45.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "sand fine med", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203293}}, {"model": "wells.lithologydescription", "pk": "80699983-492d-4ade-87ad-740e438f27ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "14.00", "lithology_to": "35.00", "lithology_raw_data": "BROWN SILTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197787}}, {"model": "wells.lithologydescription", "pk": "8071cbef-954b-4457-ad12-c4ac74715a9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "200.00", "lithology_to": "235.00", "lithology_raw_data": "GREY/BROWN SILTS, SOME SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200968}}, {"model": "wells.lithologydescription", "pk": "807eb320-383a-41da-9764-ba301261a75e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "28.00", "lithology_to": "29.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130485}}, {"model": "wells.lithologydescription", "pk": "8081d9d6-b252-437b-b7e1-0944e2f88f15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, "well_tag_number": 113141, "lithology_from": "71.00", "lithology_to": "74.00", "lithology_raw_data": "BLACK ORGANICS AND TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203249}}, {"model": "wells.lithologydescription", "pk": "808259ef-be8c-416c-b57e-d918facc0df3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "MINOR GRAVEL, SAND, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198931}}, {"model": "wells.lithologydescription", "pk": "80827cfb-4396-45d3-b53a-0f7f41dac6ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "5.00", "lithology_to": "24.00", "lithology_raw_data": "HARD PAN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130482}}, {"model": "wells.lithologydescription", "pk": "808b0fcf-3859-498d-8d25-079d2fbc977b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, "well_tag_number": 112269, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Well has been deepened", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197613}}, {"model": "wells.lithologydescription", "pk": "808e0391-869e-47a6-909b-3edb881006e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "170.00", "lithology_to": "300.00", "lithology_raw_data": "COMPRESSED CAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199674}}, {"model": "wells.lithologydescription", "pk": "8090b973-9d99-4f38-a3c5-21181d49e22a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, "well_tag_number": 112840, "lithology_from": "19.00", "lithology_to": "108.00", "lithology_raw_data": "bedrock, cuttings look like granite", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "17", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201414}}, {"model": "wells.lithologydescription", "pk": "80927620-9b1e-48ce-9e88-9613c67fb0e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "156.00", "lithology_to": "160.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203603}}, {"model": "wells.lithologydescription", "pk": "8095d288-c069-4a39-bba0-5d1843568a14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:19:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, "well_tag_number": 113006, "lithology_from": "12.00", "lithology_to": "18.00", "lithology_raw_data": "compact", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, fresh", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202465}}, {"model": "wells.lithologydescription", "pk": "8095fb73-a1fc-45f2-aa13-378c790e37fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T22:43:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, "well_tag_number": 112636, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "no iron or magenese", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200304}}, {"model": "wells.lithologydescription", "pk": "80987588-511c-4de1-ac91-c66ac3800954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:31:58Z", "activity_submission": null, "well_tag_number": 112945, "lithology_from": "65.00", "lithology_to": "235.00", "lithology_raw_data": "WHITE/BLACK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED @ 165' AND 210'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202128}}, {"model": "wells.lithologydescription", "pk": "809eaf89-91d6-4572-97ea-255748e60fdf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": "compact", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "VERY BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203823}}, {"model": "wells.lithologydescription", "pk": "80b550a7-bae4-4bff-b17d-e9c5291c16b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:04Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198858}}, {"model": "wells.lithologydescription", "pk": "80d61a7c-f649-4e1f-879f-ffce8432a510", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "85.00", "lithology_to": "89.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198329}}, {"model": "wells.lithologydescription", "pk": "80e5741a-8ebd-44c7-9a22-7e25969d3714", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, "well_tag_number": 112903, "lithology_from": "111.00", "lithology_to": "112.00", "lithology_raw_data": "FINER SAND & GRAVEL; RED/BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201906}}, {"model": "wells.lithologydescription", "pk": "80ef7306-a8eb-451b-96d3-8bcf00d3882a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201322}}, {"model": "wells.lithologydescription", "pk": "80f350e3-d6e5-4251-92a0-f96bc721c5cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "116.00", "lithology_to": "121.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199381}}, {"model": "wells.lithologydescription", "pk": "81053c83-d0d6-4190-a76e-b7e8a0167626", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well_tag_number": 112871, "lithology_from": "22.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201719}}, {"model": "wells.lithologydescription", "pk": "810e4581-a387-4644-8136-0df99cc2c4d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "35.00", "lithology_to": "50.00", "lithology_raw_data": "Gravel, some clay, trace silt, grey", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203501}}, {"model": "wells.lithologydescription", "pk": "811095d7-b425-4e6d-afa5-332dff4ae471", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:45:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:45:45Z", "activity_submission": null, "well_tag_number": 112353, "lithology_from": "0.00", "lithology_to": "70.00", "lithology_raw_data": "boulders clay gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198189}}, {"model": "wells.lithologydescription", "pk": "81153ef0-caea-41c9-ab4d-b27424930570", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:04:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, "well_tag_number": 112942, "lithology_from": "20.00", "lithology_to": "113.00", "lithology_raw_data": "CLAY AND SOME GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202119}}, {"model": "wells.lithologydescription", "pk": "81225310-8704-498b-8c6b-3809fc01759d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "15.00", "lithology_to": "18.50", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204072}}, {"model": "wells.lithologydescription", "pk": "812abc56-de23-4f0e-9a7a-e4791f7ad6e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, "well_tag_number": 112805, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 350'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201198}}, {"model": "wells.lithologydescription", "pk": "81364a2a-b049-4317-8b9c-d7052759f161", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197646}}, {"model": "wells.lithologydescription", "pk": "8137b7bd-a794-488f-a581-95742b2a1231", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "116.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": "48", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203015}}, {"model": "wells.lithologydescription", "pk": "8146698d-0711-4bab-934c-137a52c194c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": "sand fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "med sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202500}}, {"model": "wells.lithologydescription", "pk": "8155b42e-aa20-47bf-8aa6-859847188f63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "280.00", "lithology_to": "315.00", "lithology_raw_data": "MEDIUM/HARD, PINK/WHITE, VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198418}}, {"model": "wells.lithologydescription", "pk": "815af6a7-ae98-4fd5-bfc4-b5e1e9fc60e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:35:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:43:56Z", "activity_submission": null, "well_tag_number": 112778, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "EXISTING BENTONITE SEAL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201082}}, {"model": "wells.lithologydescription", "pk": "815ee77e-ac22-477c-aee8-79dee286787f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well_tag_number": 113180, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203447}}, {"model": "wells.lithologydescription", "pk": "8161746d-c533-4be0-9c0b-a0c19ad9cbc5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SAND, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199123}}, {"model": "wells.lithologydescription", "pk": "8168f81e-b64d-4f30-adba-34078600b4ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "80.00", "lithology_to": "81.00", "lithology_raw_data": "fractured", "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "6.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "wshing in material", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202817}}, {"model": "wells.lithologydescription", "pk": "816a4369-ae80-40ea-bcad-a7582a210a5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "50.00", "lithology_to": "80.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198386}}, {"model": "wells.lithologydescription", "pk": "816b5613-b781-45b1-ab84-2f7b7237fa82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "265.00", "lithology_to": "272.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201877}}, {"model": "wells.lithologydescription", "pk": "816ba024-a321-4510-b748-17beeec97fe6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, "well_tag_number": 112241, "lithology_from": "90.00", "lithology_to": "137.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": "106'-120'=FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197487}}, {"model": "wells.lithologydescription", "pk": "816d7bd8-bfc3-4ef4-a40a-25132401ec53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, "well_tag_number": 112929, "lithology_from": "155.00", "lithology_to": "255.00", "lithology_raw_data": "SHALE, CONGLOMERATE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202066}}, {"model": "wells.lithologydescription", "pk": "816e9883-d10f-44cf-a954-2e3be604e8fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "39.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL (COARSE), BROKEN ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202273}}, {"model": "wells.lithologydescription", "pk": "8177d1e9-f7c8-4770-92c0-9a60fb9269ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "250.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200739}}, {"model": "wells.lithologydescription", "pk": "818770ed-49de-4eb0-a075-0d3d3c6d485b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well_tag_number": 112624, "lithology_from": "205.00", "lithology_to": "277.00", "lithology_raw_data": "BLACK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200198}}, {"model": "wells.lithologydescription", "pk": "818ecc46-c3bb-41b9-8d57-686d40e5b242", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "110.00", "lithology_to": "115.00", "lithology_raw_data": "GREY SAND (LITTLE MORE COARSE), W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201168}}, {"model": "wells.lithologydescription", "pk": "818f6e5a-6f8f-40bc-94a1-b474b5712dcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, "well_tag_number": 112243, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197494}}, {"model": "wells.lithologydescription", "pk": "81a52d5b-75b3-436d-9e87-f5fcfc27032e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "128.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200106}}, {"model": "wells.lithologydescription", "pk": "81a9f10d-422d-41e6-bcb0-1e96d24bca6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:43:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, "well_tag_number": 112781, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "MUD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MASHY, WATERY ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201104}}, {"model": "wells.lithologydescription", "pk": "81c86d4e-f7ce-4638-acd2-73a0ec8b72c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T19:54:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T19:54:04Z", "activity_submission": null, "well_tag_number": 113275, "lithology_from": "0.00", "lithology_to": "54.25", "lithology_raw_data": "gravel", "lithology_description": "44", "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203937}}, {"model": "wells.lithologydescription", "pk": "81d93fc6-b6fa-4fd6-94a4-2724a1d946c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "4.00", "lithology_to": "48.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200847}}, {"model": "wells.lithologydescription", "pk": "81e10833-79f7-443c-8ba7-229c11379cdf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "3.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201431}}, {"model": "wells.lithologydescription", "pk": "81ea470e-6ba9-4427-84c4-88abaeabb4b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "19.00", "lithology_to": "38.00", "lithology_raw_data": "clay and gravel layers", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198340}}, {"model": "wells.lithologydescription", "pk": "81eda9d3-bd74-4963-aad5-c09a59da1f07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "150.00", "lithology_to": "230.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200518}}, {"model": "wells.lithologydescription", "pk": "81eded44-43a3-4ed1-b11f-5faefea01a5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "61.00", "lithology_to": "140.00", "lithology_raw_data": "SILTSTONE AND FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT AND DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200813}}, {"model": "wells.lithologydescription", "pk": "820c5f93-0001-4ab4-aa9d-2d5ea40b161d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "55.00", "lithology_to": "62.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "1/2 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200618}}, {"model": "wells.lithologydescription", "pk": "820db1e6-ec76-4aa4-a1af-ba4d5ab34b34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well_tag_number": 113304, "lithology_from": "32.00", "lithology_to": "45.00", "lithology_raw_data": "some gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204053}}, {"model": "wells.lithologydescription", "pk": "82132bc6-5ab0-4482-ada6-b1456f8b5f61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, "well_tag_number": 112320, "lithology_from": "6.00", "lithology_to": "55.00", "lithology_raw_data": "BEDROCK, CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197889}}, {"model": "wells.lithologydescription", "pk": "82144263-bac7-46b3-8af8-45f0b7866447", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, "well_tag_number": 112299, "lithology_from": "133.00", "lithology_to": "137.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197778}}, {"model": "wells.lithologydescription", "pk": "821ec56d-8f9b-4a02-b721-fe23653dd14c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "355.00", "lithology_to": "360.00", "lithology_raw_data": "Gravel, some sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203513}}, {"model": "wells.lithologydescription", "pk": "82235b3e-e867-4f8f-b1b0-94a4d9ea3114", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "24.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "10", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199775}}, {"model": "wells.lithologydescription", "pk": "82490209-37f5-4f51-aecb-1a29177fea33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "100.00", "lithology_to": "106.00", "lithology_raw_data": "SAND & MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20+", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202344}}, {"model": "wells.lithologydescription", "pk": "82492345-e798-4233-8eb9-319c1e97efe0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, "well_tag_number": 113105, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203003}}, {"model": "wells.lithologydescription", "pk": "827219a2-ff48-4afa-878e-42333fe8e04b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "71.00", "lithology_to": "93.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201667}}, {"model": "wells.lithologydescription", "pk": "8287f0b7-775e-4ea0-b657-06aa55204c9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, "well_tag_number": 113252, "lithology_from": "155.00", "lithology_to": "175.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203817}}, {"model": "wells.lithologydescription", "pk": "82951dff-a7de-40fe-9518-33cde3078a30", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "180.00", "lithology_to": "240.00", "lithology_raw_data": "LAYER CLAY ROCK GRAVEL SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198573}}, {"model": "wells.lithologydescription", "pk": "82a79725-c41f-449b-8dc9-bc24f4e2fbab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "119.00", "lithology_to": "320.00", "lithology_raw_data": "WHITE/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201834}}, {"model": "wells.lithologydescription", "pk": "82bf169b-3063-4410-ac1e-7d18ad9ce905", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well_tag_number": 112528, "lithology_from": "45.00", "lithology_to": "60.00", "lithology_raw_data": "fine brown sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199510}}, {"model": "wells.lithologydescription", "pk": "82e92d93-c9ea-4868-b605-d9db180b9962", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:56:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, "well_tag_number": 113142, "lithology_from": "0.00", "lithology_to": "63.00", "lithology_raw_data": "WASTE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203252}}, {"model": "wells.lithologydescription", "pk": "82ed6ffa-142a-45de-8c74-e27753ad57fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T17:55:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, "well_tag_number": 113177, "lithology_from": "15.00", "lithology_to": "75.00", "lithology_raw_data": "a little gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203437}}, {"model": "wells.lithologydescription", "pk": "82f69cbb-2389-4b47-a123-c079742999b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "COARSE SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198627}}, {"model": "wells.lithologydescription", "pk": "82f6d67c-7545-4d2a-967c-f8230949eeb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well_tag_number": 112707, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FRACTURED ROCK WITH BROWN SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200589}}, {"model": "wells.lithologydescription", "pk": "82fbb728-652f-40a8-bccf-e6b0e1d9917c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, "well_tag_number": 113003, "lithology_from": "195.00", "lithology_to": "200.00", "lithology_raw_data": "Brown Glacial Till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202455}}, {"model": "wells.lithologydescription", "pk": "83270987-5b6c-4e7d-a238-82a4a3391ca3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "clay/silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200613}}, {"model": "wells.lithologydescription", "pk": "832bb90f-638e-4333-9a54-41ae6c31f259", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "53.00", "lithology_to": "105.00", "lithology_raw_data": "BROWN SILTY CLAY SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197789}}, {"model": "wells.lithologydescription", "pk": "83312d82-ec74-4db2-b1db-60654f65cf38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "1.00", "lithology_to": "19.00", "lithology_raw_data": "stony", "lithology_description": "63", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203211}}, {"model": "wells.lithologydescription", "pk": "8347571a-6519-4286-8519-f6456abfd882", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "82.00", "lithology_to": "98.00", "lithology_raw_data": "trace of gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198289}}, {"model": "wells.lithologydescription", "pk": "834794a3-e275-43ff-ac50-6a01303dd0bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well_tag_number": 112701, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200566}}, {"model": "wells.lithologydescription", "pk": "8356baea-e0d5-4f65-85e6-8bc51dd7a591", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "120.00", "lithology_to": "170.00", "lithology_raw_data": "silty", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203534}}, {"model": "wells.lithologydescription", "pk": "835ea4d4-3b48-4990-80d1-e632ba4494d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "475.00", "lithology_to": "482.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202848}}, {"model": "wells.lithologydescription", "pk": "83631181-c73b-43ce-a55e-19fef3dcae56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, "well_tag_number": 112328, "lithology_from": "149.00", "lithology_to": "225.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197964}}, {"model": "wells.lithologydescription", "pk": "837344de-ddd8-4a3b-9531-89d6d0f37fcd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T22:51:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, "well_tag_number": 112699, "lithology_from": "70.00", "lithology_to": "106.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200560}}, {"model": "wells.lithologydescription", "pk": "8373458f-d215-450e-bd81-dc62d6212cf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T19:13:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, "well_tag_number": 113036, "lithology_from": "0.00", "lithology_to": "155.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202623}}, {"model": "wells.lithologydescription", "pk": "838750b1-7cf8-4b32-96e5-9c5f89e68347", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199359}}, {"model": "wells.lithologydescription", "pk": "838e9b57-48c3-467f-9ca6-93f48521a0f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "47.00", "lithology_to": "132.00", "lithology_raw_data": "PINK BEDROCK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202521}}, {"model": "wells.lithologydescription", "pk": "839a21fc-273a-46ef-b321-dd3187e52d60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "198.00", "lithology_to": "235.00", "lithology_raw_data": "very fine grey/brown ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "PULLED BACK TO 220'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202966}}, {"model": "wells.lithologydescription", "pk": "83aea8ab-b85a-4092-8c7e-3ffabb0a296f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "130.00", "lithology_to": "150.00", "lithology_raw_data": "black", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201391}}, {"model": "wells.lithologydescription", "pk": "83b65c94-c39c-4244-93f1-6712758def32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T18:00:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T18:00:21Z", "activity_submission": null, "well_tag_number": 113244, "lithology_from": "0.00", "lithology_to": "1.50", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203791}}, {"model": "wells.lithologydescription", "pk": "83bb8d44-1172-41df-bfb4-c3495b68a728", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "167.00", "lithology_to": "168.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198306}}, {"model": "wells.lithologydescription", "pk": "83be70c6-8d08-4863-9a5f-af84df7ee483", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well_tag_number": 112273, "lithology_from": "56.00", "lithology_to": "57.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197641}}, {"model": "wells.lithologydescription", "pk": "83c32cbb-9a61-4914-8e20-714ecef1fa38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "210.00", "lithology_to": "225.00", "lithology_raw_data": "RED-GREY VOLCANIC ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197953}}, {"model": "wells.lithologydescription", "pk": "83d89e94-935a-4f30-851c-c4ad04e54bf3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "3.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "06", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201384}}, {"model": "wells.lithologydescription", "pk": "83df0de6-97a3-4fff-bdbb-dcf81a891576", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "70.00", "lithology_to": "95.00", "lithology_raw_data": "Light grey silt, sand with clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203864}}, {"model": "wells.lithologydescription", "pk": "83e3eaf2-200a-4984-8125-f67310219e9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202700}}, {"model": "wells.lithologydescription", "pk": "83ff7133-0331-4ffd-b547-7c80ddaa94f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, MEDIUM TO COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199223}}, {"model": "wells.lithologydescription", "pk": "8401baab-535d-4e50-920b-1d12e5005e11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "28.00", "lithology_to": "36.00", "lithology_raw_data": "FIRM GRAY BLUE LAYERED BROKEN GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203298}}, {"model": "wells.lithologydescription", "pk": "840568a7-7218-4213-8f7f-2fac31fd0bd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well_tag_number": 112898, "lithology_from": "22.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201881}}, {"model": "wells.lithologydescription", "pk": "840d14c3-0d58-428c-ac09-fbdf905a695a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199997}}, {"model": "wells.lithologydescription", "pk": "8419e8ed-cac1-4198-b056-92fce4ba2e4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "65.00", "lithology_to": "171.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203667}}, {"model": "wells.lithologydescription", "pk": "841ac469-6f65-4b06-ad14-1a5542084c08", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:21:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, "well_tag_number": 112411, "lithology_from": "0.00", "lithology_to": "54.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST TO 23' THEN DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198546}}, {"model": "wells.lithologydescription", "pk": "842ae031-0560-4d3a-a960-6d152a613c03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "54.00", "lithology_to": "56.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198300}}, {"model": "wells.lithologydescription", "pk": "842dfde2-57d5-4654-b4ae-f778a281fd6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:59:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, "well_tag_number": 112930, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "TILL GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202068}}, {"model": "wells.lithologydescription", "pk": "8443aacd-db9c-49b2-9fbf-e044ec394a1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "236.00", "lithology_to": "238.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203331}}, {"model": "wells.lithologydescription", "pk": "844736df-862c-4d03-ad30-6378ee1b3dfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "160.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "261'=DUST STOPPED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199217}}, {"model": "wells.lithologydescription", "pk": "844cc22e-de86-438d-a284-73d4adf684ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:08:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, "well_tag_number": 112293, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "BLACK/GREY/YELLOW ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197746}}, {"model": "wells.lithologydescription", "pk": "84593c24-099e-43e7-9903-f1d3802521d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "142.00", "lithology_to": "144.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202034}}, {"model": "wells.lithologydescription", "pk": "845f4fca-14e4-442b-a632-b3001a3d33e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, "well_tag_number": 112251, "lithology_from": "82.00", "lithology_to": "90.00", "lithology_raw_data": "LIGHT GREY SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197523}}, {"model": "wells.lithologydescription", "pk": "8462262e-d726-454e-96cc-44dc091d35cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well_tag_number": 112547, "lithology_from": "40.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199642}}, {"model": "wells.lithologydescription", "pk": "846aa720-3c92-4a37-bd12-34aab22fb0e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, "well_tag_number": 112683, "lithology_from": "15.00", "lithology_to": "303.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200496}}, {"model": "wells.lithologydescription", "pk": "84814cfb-4b65-4dfc-8294-89e362356a68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "48.00", "lithology_to": "58.00", "lithology_raw_data": "COARSE BROWN SAND WITH STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200909}}, {"model": "wells.lithologydescription", "pk": "848b5529-5c0e-44ec-b10d-9de837d4d2e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "156.00", "lithology_to": "161.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198761}}, {"model": "wells.lithologydescription", "pk": "8494862f-963a-43e8-a963-c22baed76dc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "463.00", "lithology_to": "470.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203208}}, {"model": "wells.lithologydescription", "pk": "84986750-c879-4e78-a54a-eab5d13f3b92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "86.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199020}}, {"model": "wells.lithologydescription", "pk": "849ec5e1-5e6e-4b96-9500-99d4ec094bd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "225.00", "lithology_to": "237.00", "lithology_raw_data": "BROWN-YELLOW VOLCANIC ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197954}}, {"model": "wells.lithologydescription", "pk": "84a684e0-4e7a-4d85-9595-3e772314a029", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "17.00", "lithology_to": "110.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200435}}, {"model": "wells.lithologydescription", "pk": "84ac7365-05ce-4fba-a5b1-bc8e761d5c8f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "188.00", "lithology_to": "194.00", "lithology_raw_data": "COARSE SAND, FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "75-100 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202161}}, {"model": "wells.lithologydescription", "pk": "84afcbe0-416a-4370-b844-02c009569547", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "24.00", "lithology_to": "42.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWNISH GREY AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200752}}, {"model": "wells.lithologydescription", "pk": "84c0ac39-42f1-45b5-b4af-53ce0322bcb8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "38.00", "lithology_to": "39.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202638}}, {"model": "wells.lithologydescription", "pk": "84c85657-f324-4e39-bbab-354ef64d29e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "26.00", "lithology_to": "36.00", "lithology_raw_data": "Brown fine to coarse sand and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203464}}, {"model": "wells.lithologydescription", "pk": "84d48ec2-69c7-4961-9a69-9da05b3b837b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well_tag_number": 112231, "lithology_from": "190.00", "lithology_to": "300.00", "lithology_raw_data": "BLUE GREEN METAMORPHIC RED ZONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "227'=VOLCANIC LAYERED WITH SEAMS: 1.5 GPM; FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197431}}, {"model": "wells.lithologydescription", "pk": "84e65ab3-9c0c-4ff7-a22d-eb0287a27ade", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "3.00", "lithology_to": "14.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200064}}, {"model": "wells.lithologydescription", "pk": "84fd7938-044e-45d6-9cc9-698b70a16f6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "87.00", "lithology_to": "89.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201991}}, {"model": "wells.lithologydescription", "pk": "84fe5859-fa5d-4ad8-b290-df9036e40918", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well_tag_number": 112616, "lithology_from": "105.00", "lithology_to": "112.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY-BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200137}}, {"model": "wells.lithologydescription", "pk": "8511fe9a-c1c9-46a3-adad-51c52f9ec09e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY/GRAVEL MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199202}}, {"model": "wells.lithologydescription", "pk": "8513d524-7dc7-4109-9c4c-e354dedaf3eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, "well_tag_number": 112570, "lithology_from": "17.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "12", "lithology_colour": "09", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199778}}, {"model": "wells.lithologydescription", "pk": "8516adb3-417a-4cf7-8b73-d9919f94f6bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "475.00", "lithology_to": "572.00", "lithology_raw_data": "SILT, FINE SAND, AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198522}}, {"model": "wells.lithologydescription", "pk": "8520007d-0a12-4730-9b07-e6e2a113f085", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, "well_tag_number": 113299, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, dense/stiff", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204023}}, {"model": "wells.lithologydescription", "pk": "8521d425-f8c3-47e5-8ed3-6549104fdcb1", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:37:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:37:14Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "170.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200124}}, {"model": "wells.lithologydescription", "pk": "854ecada-941b-46c7-aafd-ceaf792906f0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:38:57Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:38:57Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "223.00", "lithology_to": "226.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200128}}, {"model": "wells.lithologydescription", "pk": "85526a48-4e28-4419-a1c7-9829d1eb35f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "90.00", "lithology_to": "93.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204038}}, {"model": "wells.lithologydescription", "pk": "8558e10d-c62d-4dd5-81ed-3cd57646b180", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "173.00", "lithology_to": "197.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205297}}, {"model": "wells.lithologydescription", "pk": "85796fc8-a12d-4543-b7b9-a57b31276471", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "17.00", "lithology_to": "21.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198348}}, {"model": "wells.lithologydescription", "pk": "8580e9a1-7f5f-4b27-bb17-e0a7f4201b1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "207.00", "lithology_to": "220.00", "lithology_raw_data": "FINE AND MEDIUM SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200833}}, {"model": "wells.lithologydescription", "pk": "858778f7-7f20-4351-9267-e44cbd2c5e86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "20.00", "lithology_to": "34.00", "lithology_raw_data": "CLAY, SAND AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198531}}, {"model": "wells.lithologydescription", "pk": "858bc959-160e-4834-b13b-6f6707cf9200", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "80.00", "lithology_to": "87.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201990}}, {"model": "wells.lithologydescription", "pk": "858c0705-5775-4f98-8518-454829555d36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "58.00", "lithology_to": "62.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202182}}, {"model": "wells.lithologydescription", "pk": "85a762ff-819f-4306-8832-4069c20901db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "503.00", "lithology_to": "505.00", "lithology_raw_data": "fractured", "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202850}}, {"model": "wells.lithologydescription", "pk": "85bea8d6-7e70-4886-83ee-971bd1bfccd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199112}}, {"model": "wells.lithologydescription", "pk": "85d151d1-bb86-4763-ae49-ecd354edb0c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "10", "lithology_hardness": null, "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183972}}, {"model": "wells.lithologydescription", "pk": "85d3b409-019c-4124-833f-02322c5b3236", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:35:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:35:31Z", "activity_submission": null, "well_tag_number": 112875, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET @ 18'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201732}}, {"model": "wells.lithologydescription", "pk": "85dcddfb-49e8-48a8-9f11-f1886e2300aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201448}}, {"model": "wells.lithologydescription", "pk": "85e7a3c0-9014-4871-8373-c149d5295222", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198592}}, {"model": "wells.lithologydescription", "pk": "85e85201-1285-4cb2-820b-a68cfe44e6d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "23.00", "lithology_to": "26.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200373}}, {"model": "wells.lithologydescription", "pk": "85e98c04-f516-4277-91d2-caf1c84e2bfd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203127}}, {"model": "wells.lithologydescription", "pk": "8601ae67-58ba-487f-82bf-2608807764e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:42:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, "well_tag_number": 113284, "lithology_from": "60.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203968}}, {"model": "wells.lithologydescription", "pk": "860d1562-b0f0-47c7-a037-fd6f0fba19d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well_tag_number": 112273, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197639}}, {"model": "wells.lithologydescription", "pk": "860e8fb1-7a3e-428c-a171-389758aee318", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, "well_tag_number": 112320, "lithology_from": "164.00", "lithology_to": "190.00", "lithology_raw_data": "BEDROCK, CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "11.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "166'=FRACTURE, 11 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197892}}, {"model": "wells.lithologydescription", "pk": "860ed232-d28f-4bd1-9178-1944f4ce291d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well_tag_number": 112819, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201270}}, {"model": "wells.lithologydescription", "pk": "862b8216-3440-40e2-8e28-cb8556a92941", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, "well_tag_number": 112458, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198956}}, {"model": "wells.lithologydescription", "pk": "862e767c-271c-4cf1-bc8e-79c4fd6fdc19", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "18.00", "lithology_to": "38.00", "lithology_raw_data": "SAND AND GRAVEL, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200166}}, {"model": "wells.lithologydescription", "pk": "8630cb9b-3335-4c12-a15f-fcd90ae017c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "136.00", "lithology_to": "155.00", "lithology_raw_data": "sand / gravel traces of silt", "lithology_description": null, "lithology_colour": "13", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "25-30 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198205}}, {"model": "wells.lithologydescription", "pk": "8641547d-9164-4143-80d6-0789786ba54c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "680.00", "lithology_to": "700.00", "lithology_raw_data": "SS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203627}}, {"model": "wells.lithologydescription", "pk": "86554b2c-f365-4bc9-b546-036f92180e32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "10.00", "lithology_to": "36.00", "lithology_raw_data": "SHALE AND SILTSTONE/COUPLE COAL LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197915}}, {"model": "wells.lithologydescription", "pk": "865ddd1e-0b1a-46f1-97ce-d76da958ce71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200401}}, {"model": "wells.lithologydescription", "pk": "866d2d09-aa8e-40af-9b71-66aca9867fa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": "15.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203684}}, {"model": "wells.lithologydescription", "pk": "866da8e6-41b9-42c9-9223-d6aa0be06b8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "57.00", "lithology_to": "75.00", "lithology_raw_data": "gravel", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201214}}, {"model": "wells.lithologydescription", "pk": "86713452-82f7-4fe4-a3a1-4b10f3e0668e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, "well_tag_number": 112417, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SMALL/MEDIUM, TILL AND GRAVEL/CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198593}}, {"model": "wells.lithologydescription", "pk": "86744460-8307-4d70-92c0-74ecdfaf80f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "7.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199987}}, {"model": "wells.lithologydescription", "pk": "8693605a-e79a-403a-94ce-57025954fd3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "752.00", "lithology_to": "825.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199796}}, {"model": "wells.lithologydescription", "pk": "869955c2-c286-4bed-94bf-ac312f25ef0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "450.00", "lithology_to": "458.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "24+ GMP, high production", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204019}}, {"model": "wells.lithologydescription", "pk": "869ae545-f4ed-4a96-9f75-4f8afde904ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "231.00", "lithology_to": "356.00", "lithology_raw_data": "SILTY FINE SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199761}}, {"model": "wells.lithologydescription", "pk": "86aeae34-f7de-455f-ae81-db6271c0e2c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:39:35Z", "activity_submission": null, "well_tag_number": 112789, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NATIVE SOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201133}}, {"model": "wells.lithologydescription", "pk": "86af6a75-1e18-4735-9b3e-2c5494df0aea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, "well_tag_number": 112312, "lithology_from": "13.00", "lithology_to": "38.00", "lithology_raw_data": "COARSE GRAVEL & SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197844}}, {"model": "wells.lithologydescription", "pk": "86c925cb-1048-49b7-8aec-0b1c89c30aa5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:43:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, "well_tag_number": 112988, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202400}}, {"model": "wells.lithologydescription", "pk": "86de7bd5-23c2-4fb1-8237-9729430f1efe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "1478.60", "lithology_to": "1502.00", "lithology_raw_data": "SILTSTONE/MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201024}}, {"model": "wells.lithologydescription", "pk": "86dfe761-4992-4628-8d05-e0618d70f0a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "cobbles", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202604}}, {"model": "wells.lithologydescription", "pk": "86efe918-db48-4ab4-b672-28cfebeffb7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": "and fine sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198872}}, {"model": "wells.lithologydescription", "pk": "86f3087f-e7e1-4827-93ed-d7732a36e1e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@ 85' WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201860}}, {"model": "wells.lithologydescription", "pk": "871919a4-3f01-4449-a790-5914582c3746", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "63.00", "lithology_to": "86.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198302}}, {"model": "wells.lithologydescription", "pk": "871c1ef1-6486-41ab-a511-3a93cee678d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "55.00", "lithology_to": "83.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200947}}, {"model": "wells.lithologydescription", "pk": "871d8b88-ce89-461a-a724-107f81bc4481", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, "well_tag_number": 112902, "lithology_from": "60.00", "lithology_to": "77.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201899}}, {"model": "wells.lithologydescription", "pk": "871e8d6f-c0db-4677-b8e7-3747a8e75ce5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T21:10:42Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "370.00", "lithology_to": "395.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC WITH WHITE AND OCCASIONAL GREEN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197387}}, {"model": "wells.lithologydescription", "pk": "872438ab-9ad0-4cd7-a342-b7793c07141c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:12Z", "activity_submission": null, "well_tag_number": 112463, "lithology_from": "178.00", "lithology_to": "205.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "36", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198996}}, {"model": "wells.lithologydescription", "pk": "872b0b93-f4e3-4f31-bb59-95f1bb6cb7f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:29:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, "well_tag_number": 112987, "lithology_from": "0.00", "lithology_to": "66.00", "lithology_raw_data": "CLAY, TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202397}}, {"model": "wells.lithologydescription", "pk": "873b4f56-23e8-4291-bbc8-529aa363e953", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, "well_tag_number": 113262, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": "06", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203889}}, {"model": "wells.lithologydescription", "pk": "8740ea28-d722-44c2-9d10-fd52d664fc94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well_tag_number": 112439, "lithology_from": "60.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198789}}, {"model": "wells.lithologydescription", "pk": "8741a38b-9658-44e3-889c-1480a4630af4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "97.00", "lithology_to": "101.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201994}}, {"model": "wells.lithologydescription", "pk": "8746db62-f22a-440c-a1dc-c3be4ff6d0af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:27:25Z", "activity_submission": null, "well_tag_number": 112712, "lithology_from": "33.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND BLACK; CLEANER; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200633}}, {"model": "wells.lithologydescription", "pk": "87563552-da4d-4374-97d8-11f2856d5047", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "190.00", "lithology_to": "203.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132532}}, {"model": "wells.lithologydescription", "pk": "8756af96-5246-4f91-ac7e-6c02c5b401ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, "well_tag_number": 112316, "lithology_from": "144.00", "lithology_to": "167.00", "lithology_raw_data": "GRAVEL, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197863}}, {"model": "wells.lithologydescription", "pk": "8758fd8a-5e1d-4b32-9cff-3e87b8521555", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:11:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, "well_tag_number": 113203, "lithology_from": "155.00", "lithology_to": "195.00", "lithology_raw_data": "little gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203580}}, {"model": "wells.lithologydescription", "pk": "8775779c-97fc-466d-8898-e3d44ff38481", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": "12.00", "lithology_to": "43.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203017}}, {"model": "wells.lithologydescription", "pk": "878b49cf-32d6-4af1-926f-acd21f8d8a7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:51:40Z", "activity_submission": null, "well_tag_number": 112820, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sandy clay, gravel and cobbles", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201274}}, {"model": "wells.lithologydescription", "pk": "87974851-9627-4b30-bbe2-b5bffe49e697", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "241.00", "lithology_to": "274.00", "lithology_raw_data": "GREY-PINK SOLID BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202540}}, {"model": "wells.lithologydescription", "pk": "879aaedf-ab9e-4edc-bd95-06611e9809e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:25:21Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": "WEATHERED ROCK, BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199208}}, {"model": "wells.lithologydescription", "pk": "87a28b4a-bdce-4e39-96bc-c7495019f1ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well_tag_number": 112439, "lithology_from": "46.00", "lithology_to": "60.00", "lithology_raw_data": "chalky", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "SOFT", "lithology_material": "28", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198788}}, {"model": "wells.lithologydescription", "pk": "87ac4e38-111d-4af2-9b22-8edc3f05d19b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "67.00", "lithology_to": "123.00", "lithology_raw_data": "BR/B SAND/CLAY MIX ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING LENS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197420}}, {"model": "wells.lithologydescription", "pk": "87ad81d1-f547-49b1-9717-f81f53fbf6d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "120.00", "lithology_to": "136.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132273}}, {"model": "wells.lithologydescription", "pk": "87b101f8-92ac-4883-816b-3fc5e5bb1836", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "108.00", "lithology_to": "124.00", "lithology_raw_data": "SILTY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201328}}, {"model": "wells.lithologydescription", "pk": "87c196c9-1a2d-402c-8f91-3ae7b9b57b47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well_tag_number": 112689, "lithology_from": "184.00", "lithology_to": "220.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200525}}, {"model": "wells.lithologydescription", "pk": "87c3574f-ace1-498d-85b5-b9ff5d43fe56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "23.00", "lithology_to": "35.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198350}}, {"model": "wells.lithologydescription", "pk": "87c8c7de-6165-4de8-8cec-491500daec91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well_tag_number": 113290, "lithology_from": "320.00", "lithology_to": "400.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "black, green, white", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203989}}, {"model": "wells.lithologydescription", "pk": "87ca685a-e216-4eca-b512-75a285929b99", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:33:18Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:33:18Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "66.00", "lithology_to": "71.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200116}}, {"model": "wells.lithologydescription", "pk": "87ce94d5-9591-4134-9993-a71a0b146350", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "321.00", "lithology_to": "327.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=30+; FRACTURED; COLOUR=GREY/WHITE/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199823}}, {"model": "wells.lithologydescription", "pk": "87cf1164-29d5-4511-b994-8125688c9c5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "210.00", "lithology_to": "300.00", "lithology_raw_data": "WHITE-BLACK BEDROCK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202523}}, {"model": "wells.lithologydescription", "pk": "87e0575e-354e-4919-8e3c-904b2ff6dc4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well_tag_number": 112420, "lithology_from": "27.00", "lithology_to": "32.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198619}}, {"model": "wells.lithologydescription", "pk": "87e39c89-cee9-44a7-9e4e-51527a800cab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "and organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198879}}, {"model": "wells.lithologydescription", "pk": "87edcad9-bc71-4633-b400-f6c1b7eb3f42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-23T19:56:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, "well_tag_number": 112813, "lithology_from": "4.00", "lithology_to": "56.00", "lithology_raw_data": "gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "cleaner from 45-52", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201234}}, {"model": "wells.lithologydescription", "pk": "881293d7-99f2-4b19-b2f5-250c2ef27d8f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well_tag_number": 112231, "lithology_from": "9.00", "lithology_to": "28.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197429}}, {"model": "wells.lithologydescription", "pk": "882db645-6dde-4475-84ba-5c622b2810b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "85.00", "lithology_to": "95.00", "lithology_raw_data": "sand with clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203362}}, {"model": "wells.lithologydescription", "pk": "882db6f1-f9da-4a36-8102-a5c7858a5524", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, "well_tag_number": 112328, "lithology_from": "63.00", "lithology_to": "92.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197960}}, {"model": "wells.lithologydescription", "pk": "882de28c-ca02-432a-87f0-632990fae9ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "166.00", "lithology_to": "170.00", "lithology_raw_data": "SAND", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199678}}, {"model": "wells.lithologydescription", "pk": "883fb850-5ce8-44a7-8014-a4385e1e71ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, CLAY, MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199548}}, {"model": "wells.lithologydescription", "pk": "88455e21-46ff-4387-9337-37ad20f67b21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "Sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203611}}, {"model": "wells.lithologydescription", "pk": "884a194c-4933-4c3c-ad63-5ef69bf319b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well_tag_number": 112548, "lithology_from": "6.00", "lithology_to": "25.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199646}}, {"model": "wells.lithologydescription", "pk": "884e3e32-e45a-4ab6-9704-dd4a876742ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202816}}, {"model": "wells.lithologydescription", "pk": "88627030-e8bc-4edd-b7aa-fb609edf533e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "26.00", "lithology_to": "35.00", "lithology_raw_data": "FINE SAND, SMALL ANGULAR GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197695}}, {"model": "wells.lithologydescription", "pk": "8867fc17-5110-4872-9be9-c65e60f6b738", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-17T08:12:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "120.00", "lithology_to": "150.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL, CLAY MIXTURE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199225}}, {"model": "wells.lithologydescription", "pk": "886f0744-af77-4a9d-9f49-9ec713ef1596", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well_tag_number": 112401, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "MEDIUM/HARD, SAND/GRAVEL/BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198484}}, {"model": "wells.lithologydescription", "pk": "887b1ddc-c980-41ae-a05b-a50e4eb4c4e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SILT AND FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198558}}, {"model": "wells.lithologydescription", "pk": "88835fd4-f527-474f-b2bf-3bf52bab2110", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well_tag_number": 112520, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199415}}, {"model": "wells.lithologydescription", "pk": "888c71e3-6b47-48fe-9597-0cb049209073", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "255.00", "lithology_to": "318.00", "lithology_raw_data": "CRUMBLY LAVA ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200190}}, {"model": "wells.lithologydescription", "pk": "88904265-10db-4b20-b263-53dea41157ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "260.00", "lithology_to": "303.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200520}}, {"model": "wells.lithologydescription", "pk": "88919ac4-3cc7-4704-bcb8-b64e879858c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "34.00", "lithology_to": "100.00", "lithology_raw_data": "BROKEN SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201292}}, {"model": "wells.lithologydescription", "pk": "8899b2ca-570a-4ff2-a8e6-f4da274f3268", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:20:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:20:43Z", "activity_submission": null, "well_tag_number": 112358, "lithology_from": "94.00", "lithology_to": "96.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198216}}, {"model": "wells.lithologydescription", "pk": "88a9d987-ad73-482a-879b-514c7e2cefdd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203128}}, {"model": "wells.lithologydescription", "pk": "88aa69d5-ed22-4b7f-9c67-6657079ab62f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "60.00", "lithology_to": "78.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198891}}, {"model": "wells.lithologydescription", "pk": "88b54491-e812-485c-a14e-a12bf9e3a954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:21:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, "well_tag_number": 112632, "lithology_from": "7.00", "lithology_to": "22.00", "lithology_raw_data": "glacial till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200294}}, {"model": "wells.lithologydescription", "pk": "88d061d8-88e1-41cf-bf13-614c91f8d673", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, "well_tag_number": 112389, "lithology_from": "115.00", "lithology_to": "205.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, SEAMS OF WHITE AND PINK FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198431}}, {"model": "wells.lithologydescription", "pk": "88dcb882-ca4e-4d73-a057-436afaac5d87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:30:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:38Z", "activity_submission": null, "well_tag_number": 113023, "lithology_from": "80.00", "lithology_to": "129.00", "lithology_raw_data": "DARK GREY SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202549}}, {"model": "wells.lithologydescription", "pk": "88eba673-6f5a-4ced-85d7-c2ce9cd4fc98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, "well_tag_number": 112338, "lithology_from": "16.00", "lithology_to": "20.00", "lithology_raw_data": "BOULDER, COARSE GRAVEL, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198089}}, {"model": "wells.lithologydescription", "pk": "88f32d7a-38e0-4ad5-b580-b82406eafc6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well_tag_number": 112681, "lithology_from": "88.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200486}}, {"model": "wells.lithologydescription", "pk": "88f98129-967c-4fb9-a650-9d1cbae64460", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well_tag_number": 113152, "lithology_from": "32.00", "lithology_to": "35.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203308}}, {"model": "wells.lithologydescription", "pk": "8900dc07-c62c-44a4-ae02-a3ae2c6a1bef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well_tag_number": 112357, "lithology_from": "27.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water source", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198212}}, {"model": "wells.lithologydescription", "pk": "890103a4-76f8-4541-9d1e-141e63b99720", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well_tag_number": 112743, "lithology_from": "30.00", "lithology_to": "58.00", "lithology_raw_data": "SAND, SOME WATER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200856}}, {"model": "wells.lithologydescription", "pk": "891caa4f-b0e2-4e1c-a549-7f66c2eb4efc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, "well_tag_number": 112385, "lithology_from": "116.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/HARD, VOLCANIC WITH TRACES OF W/WT FELDSPAR", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198400}}, {"model": "wells.lithologydescription", "pk": "891ebce3-e65a-4c21-91cf-f6d499cb6c6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:47:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, "well_tag_number": 112248, "lithology_from": "0.00", "lithology_to": "74.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197510}}, {"model": "wells.lithologydescription", "pk": "8923dba8-b86a-46fe-8c67-a2add7d4bfbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "90.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203545}}, {"model": "wells.lithologydescription", "pk": "89295853-a8c2-4f7d-91be-4433ee347688", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, "well_tag_number": 113028, "lithology_from": "0.00", "lithology_to": "122.00", "lithology_raw_data": "BROWN CLAY AND ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202573}}, {"model": "wells.lithologydescription", "pk": "892bd0f0-25a1-46a6-bb74-82c310198a75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "3.00", "lithology_to": "55.00", "lithology_raw_data": "BROWN TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200180}}, {"model": "wells.lithologydescription", "pk": "892e2865-1585-4527-ac5f-5326d3d81992", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:10Z", "activity_submission": null, "well_tag_number": 112410, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FINE SAND, SILT AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198542}}, {"model": "wells.lithologydescription", "pk": "89341584-7e32-478f-aed2-393b3bdd7b34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "120.00", "lithology_to": "124.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=RED/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200000}}, {"model": "wells.lithologydescription", "pk": "89350671-ccab-426b-89ee-7f052861816f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 400'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203835}}, {"model": "wells.lithologydescription", "pk": "893d00cb-7526-44ab-90e1-ed6f19e70ddf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well_tag_number": 112441, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198801}}, {"model": "wells.lithologydescription", "pk": "894112cd-5f5f-46f9-a25d-b48800406521", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "0.50", "lithology_to": "75.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197372}}, {"model": "wells.lithologydescription", "pk": "894473c2-d3a7-4a62-abd0-d7aa733e159f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well_tag_number": 112341, "lithology_from": "12.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM-HARD VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198114}}, {"model": "wells.lithologydescription", "pk": "8950309f-7bff-42dd-b1e6-44a7c7daf210", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "180.00", "lithology_to": "183.00", "lithology_raw_data": "CLAY OR SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202087}}, {"model": "wells.lithologydescription", "pk": "895107e9-6e69-4f77-8bfe-5f6773637ccf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "31.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199061}}, {"model": "wells.lithologydescription", "pk": "895ebbe7-7bfa-4bc9-a38d-834799a82335", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, "well_tag_number": 112797, "lithology_from": "36.08", "lithology_to": "83.60", "lithology_raw_data": "SILTY SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201153}}, {"model": "wells.lithologydescription", "pk": "895ef3f0-cbd3-4f13-b398-ec87448dd8ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "81.00", "lithology_to": "93.00", "lithology_raw_data": "SAND COARSE TO FINE WITH SOME GRAVEL, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201660}}, {"model": "wells.lithologydescription", "pk": "89600005-dea1-421b-b272-dc7b6ea5e2c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "442.00", "lithology_to": "447.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202844}}, {"model": "wells.lithologydescription", "pk": "8966c938-bcc9-4b17-9dd1-c47e2aa4b8c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "113.00", "lithology_to": "136.00", "lithology_raw_data": "and silts", "lithology_description": "56", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203030}}, {"model": "wells.lithologydescription", "pk": "896ba6bf-8ef4-492a-a382-55e77179d70e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:10:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, "well_tag_number": 108027, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "sandstone", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172312}}, {"model": "wells.lithologydescription", "pk": "896ef35b-2ce5-4006-890e-6ba36ceb5f00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "52.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE AT 110'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203908}}, {"model": "wells.lithologydescription", "pk": "897bd441-6432-45e1-be2b-837b29ac0850", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201576}}, {"model": "wells.lithologydescription", "pk": "898b3926-b7c3-4db8-8564-12c281645465", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, "well_tag_number": 112329, "lithology_from": "0.00", "lithology_to": "60.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197965}}, {"model": "wells.lithologydescription", "pk": "898fbdc6-7866-4243-a313-a4fd56b4ccaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "133.00", "lithology_to": "151.00", "lithology_raw_data": "rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203824}}, {"model": "wells.lithologydescription", "pk": "899e2a4d-ec0c-49f8-a01f-e7b34885abac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, "well_tag_number": 112947, "lithology_from": "9.00", "lithology_to": "24.00", "lithology_raw_data": "COBBLES WITH WELL SORTED SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "PERFORATED 13-17", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202136}}, {"model": "wells.lithologydescription", "pk": "89a6562f-dd12-4d9b-a466-98ca4f3e1dd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, "well_tag_number": 112269, "lithology_from": "255.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197612}}, {"model": "wells.lithologydescription", "pk": "89c0aafd-274e-4ae7-8da8-63f0b4020bcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "92.00", "lithology_to": "232.00", "lithology_raw_data": "CHIRT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197855}}, {"model": "wells.lithologydescription", "pk": "89c38b3f-0b1c-4c2e-9a79-db929972acb6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T22:23:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, "well_tag_number": 112692, "lithology_from": "47.00", "lithology_to": null, "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200534}}, {"model": "wells.lithologydescription", "pk": "89cf83ed-b0a3-48da-96dd-acf5c351b70d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "260.00", "lithology_to": "440.00", "lithology_raw_data": "SEAMS OF MULTI-COLOURED GNEISS & FELDSPAR", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198377}}, {"model": "wells.lithologydescription", "pk": "89d0abbc-5e67-4793-bbd8-835a2459f10a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:07:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, "well_tag_number": 112669, "lithology_from": "0.00", "lithology_to": "92.00", "lithology_raw_data": "SILTY SAND", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200441}}, {"model": "wells.lithologydescription", "pk": "89de2528-8ec3-4d78-babe-ab3501277196", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "361.00", "lithology_to": "390.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "16.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197906}}, {"model": "wells.lithologydescription", "pk": "89e01a5b-6b76-4d4d-8c1d-4b2bcc6b2eac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, "well_tag_number": 112608, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200050}}, {"model": "wells.lithologydescription", "pk": "89e8ee03-dfe4-40dc-9be7-4ff34bbbba5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "20.00", "lithology_to": "25.00", "lithology_raw_data": "GRANITE IWTH GREEN CHIPS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183340}}, {"model": "wells.lithologydescription", "pk": "89f74f86-48cf-48b8-a057-d80075154955", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "16.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132523}}, {"model": "wells.lithologydescription", "pk": "8a035f83-ec9d-4e6e-ab1c-7e98f395f363", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:48:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, "well_tag_number": 112950, "lithology_from": "3.00", "lithology_to": "17.00", "lithology_raw_data": "GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202145}}, {"model": "wells.lithologydescription", "pk": "8a0760e8-735b-4c9f-9743-80d7799e7faa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "99.00", "lithology_to": "109.00", "lithology_raw_data": "MEDIUM SOFT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201589}}, {"model": "wells.lithologydescription", "pk": "8a110334-1b55-4022-8322-a9b097dc68f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198773}}, {"model": "wells.lithologydescription", "pk": "8a13b67a-610c-4b97-b447-ebaa10138bf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "245.00", "lithology_to": "254.00", "lithology_raw_data": "VERY FINE AND SILTY TOP AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200748}}, {"model": "wells.lithologydescription", "pk": "8a1e0dc5-c1a3-45fc-94c2-80942c7ff1f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "969.00", "lithology_to": "971.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "16", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202866}}, {"model": "wells.lithologydescription", "pk": "8a24520d-bc07-4373-ae2a-51ce1446540e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, "well_tag_number": 112301, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197781}}, {"model": "wells.lithologydescription", "pk": "8a2e4b5c-46d0-469b-8592-eba54ce9cfc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-12T19:28:37Z", "activity_submission": null, "well_tag_number": 112608, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT-MEDIUM; FINE-MEDIUM SAND, TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200048}}, {"model": "wells.lithologydescription", "pk": "8a32a3e3-167d-4e89-9452-5bca52beb951", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "21.00", "lithology_to": "52.00", "lithology_raw_data": "volcanic, maybe limestone", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER COMING UNDER SHOE, STOPPED WATER AT 34'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204079}}, {"model": "wells.lithologydescription", "pk": "8a330342-ec09-4172-89bc-27dd56179535", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-01T21:03:01Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "208.00", "lithology_to": "280.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "1 GPM at 210'and 7 GPM at 270'. 5-8 GPM WITH PUMP PROTECTION 260'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194611}}, {"model": "wells.lithologydescription", "pk": "8a38cb5d-ba66-416c-811c-d4fd188141ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "430.00", "lithology_to": "450.00", "lithology_raw_data": "WITH SILTSTONE LENSES", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201556}}, {"model": "wells.lithologydescription", "pk": "8a3eb139-9da1-4686-a554-1dfcdf20ec5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, "well_tag_number": 112697, "lithology_from": "91.00", "lithology_to": "130.00", "lithology_raw_data": "BEDROCK BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200549}}, {"model": "wells.lithologydescription", "pk": "8a433e10-ac2a-46dc-a0f5-6686a344b3f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "63.00", "lithology_to": "81.00", "lithology_raw_data": "and gravels", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown silty wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197676}}, {"model": "wells.lithologydescription", "pk": "8a439fc8-9e9b-4a6d-97f4-b5f338d547aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:43:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:43:53Z", "activity_submission": null, "well_tag_number": 112641, "lithology_from": "0.00", "lithology_to": "79.00", "lithology_raw_data": "silt till clay sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200320}}, {"model": "wells.lithologydescription", "pk": "8a5c924e-20e6-40fc-a039-70ac6b642ccf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well_tag_number": 113125, "lithology_from": "21.00", "lithology_to": "45.00", "lithology_raw_data": "VERY SILTY WET SAND, BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203115}}, {"model": "wells.lithologydescription", "pk": "8a60518f-6dd5-483b-92c9-41ec2ab0cbee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "15.00", "lithology_to": "37.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202519}}, {"model": "wells.lithologydescription", "pk": "8a6119bd-e8be-4f2e-880d-442caf172833", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198775}}, {"model": "wells.lithologydescription", "pk": "8a62992e-725f-4957-badb-f875e76ac532", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "8.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY, SILT, FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202148}}, {"model": "wells.lithologydescription", "pk": "8a6aaedd-1612-497a-9bdc-856109855cbb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "590.00", "lithology_to": "591.00", "lithology_raw_data": "BROWN/GREY/GREEN VOLCANCIC WITH FEW GREEN TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197359}}, {"model": "wells.lithologydescription", "pk": "8a704d17-3aba-4a4c-a857-d4579a32db7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well_tag_number": 112698, "lithology_from": "40.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200557}}, {"model": "wells.lithologydescription", "pk": "8a81b1aa-0bb5-4906-987f-449ed00d4c38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "270.00", "lithology_to": "290.00", "lithology_raw_data": "SILT, SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199600}}, {"model": "wells.lithologydescription", "pk": "8a890784-fc3c-4871-aa06-916331bbc36d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "85.00", "lithology_to": "90.00", "lithology_raw_data": "SOFT/HARD; GRAVEL BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199175}}, {"model": "wells.lithologydescription", "pk": "8a8df8fa-9aad-40a4-b9e7-8a1e56d7dae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "69.00", "lithology_to": "69.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202813}}, {"model": "wells.lithologydescription", "pk": "8a919002-166a-4d55-a6f3-55329360702e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "5.00", "lithology_to": "25.00", "lithology_raw_data": "BR SAND + GRAVEL + COBBLES + BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198478}}, {"model": "wells.lithologydescription", "pk": "8a9281ec-418c-4cdc-bb10-6ab7337cd0a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "215.00", "lithology_to": "226.00", "lithology_raw_data": "FINE BROWN SAND, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201462}}, {"model": "wells.lithologydescription", "pk": "8a94059a-b62c-43b6-853d-399c558e9e6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "225.00", "lithology_to": "231.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199760}}, {"model": "wells.lithologydescription", "pk": "8a942d82-0022-4e5a-ae5d-ced57ca2b3df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:42:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, "well_tag_number": 113284, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "sand med course", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203967}}, {"model": "wells.lithologydescription", "pk": "8aa53059-c3cd-497a-b390-2d69c81c767b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "140.00", "lithology_to": "155.00", "lithology_raw_data": "Hard Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203601}}, {"model": "wells.lithologydescription", "pk": "8ab4367b-51c0-4872-93b7-77a12cc486d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY/GRAVEL SEAMS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198571}}, {"model": "wells.lithologydescription", "pk": "8ab914e0-72ba-40f6-8a34-b22bfc9ee330", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T22:36:21Z", "activity_submission": null, "well_tag_number": 112565, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT/MEDIUM; COARSE SAND, GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199752}}, {"model": "wells.lithologydescription", "pk": "8ac7a47b-832d-4e1f-ae8e-a65a007be1e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "32.00", "lithology_to": "55.00", "lithology_raw_data": "STICKY GREY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200658}}, {"model": "wells.lithologydescription", "pk": "8ac817aa-2a4c-429c-b09f-3739734d4ac5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "280.00", "lithology_to": "304.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FIRM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197926}}, {"model": "wells.lithologydescription", "pk": "8ac982e0-2abb-4182-8c2b-add9d1fe9364", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY WITH GRAVEL AND COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200730}}, {"model": "wells.lithologydescription", "pk": "8adcdf80-f20d-43bb-8f48-f4e7fee96252", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203616}}, {"model": "wells.lithologydescription", "pk": "8b00b6da-d19e-4bbd-a447-118dd9813a59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "114.00", "lithology_to": "285.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203204}}, {"model": "wells.lithologydescription", "pk": "8b025086-41c0-44fc-ade5-0e58ed517cbf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "672.00", "lithology_to": "775.00", "lithology_raw_data": "BROWN/GREY VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197362}}, {"model": "wells.lithologydescription", "pk": "8b136154-3d89-4e8e-aa5a-08a16e43c056", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-11T05:44:18Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:44:18Z", "activity_submission": null, "well_tag_number": 112778, "lithology_from": null, "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SAND", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201083}}, {"model": "wells.lithologydescription", "pk": "8b4f5f63-9a2e-4a36-9084-6c50d28b2e1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "300.00", "lithology_to": "325.00", "lithology_raw_data": "Shale and SS layered, fractured - making water - cased off", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203397}}, {"model": "wells.lithologydescription", "pk": "8b5a79d0-da72-4256-b6a6-057e772c671c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "97.00", "lithology_to": "260.00", "lithology_raw_data": "VOLCANIC/FEW TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199810}}, {"model": "wells.lithologydescription", "pk": "8b5fc3fb-ff48-4b95-87d5-9d86a4d41bf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "17.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Clean", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198896}}, {"model": "wells.lithologydescription", "pk": "8b6386f1-742e-4ed6-8dcd-dc6fe11b7c8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "21.00", "lithology_to": "53.00", "lithology_raw_data": "SAND, WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197872}}, {"model": "wells.lithologydescription", "pk": "8b7199d2-20d0-423f-abcb-23a82694eccc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "295.00", "lithology_to": "295.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "13.6000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202528}}, {"model": "wells.lithologydescription", "pk": "8b7e27ff-9b05-4843-8a9b-ba8bbf331fb4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, "well_tag_number": 112720, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silt", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200675}}, {"model": "wells.lithologydescription", "pk": "8b859f43-9e29-4c4f-b92b-66b3116c59a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "MED BROWN SAND + GRAVEL (LOOSER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198480}}, {"model": "wells.lithologydescription", "pk": "8b947c64-024a-4688-bd12-3a929c8bc119", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "38.00", "lithology_to": "63.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198286}}, {"model": "wells.lithologydescription", "pk": "8b9b9214-4e9f-47fb-83b7-f2ac4b3d8a18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "29.00", "lithology_to": "78.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202431}}, {"model": "wells.lithologydescription", "pk": "8bb0e4a2-7e5e-42eb-876f-462434563654", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, "well_tag_number": 113052, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "cased bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202669}}, {"model": "wells.lithologydescription", "pk": "8bb2d4b6-3edf-4694-b633-d77c9bcf08bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T07:55:05Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "160.00", "lithology_to": "168.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=1+USGPM; FRACTURED; COLOUR=GREY, BROWN, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199830}}, {"model": "wells.lithologydescription", "pk": "8bbfbf92-b962-4008-b2ed-044cd4b24c76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "272.00", "lithology_to": "273.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREY, GREEN, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199821}}, {"model": "wells.lithologydescription", "pk": "8bc4da8b-873d-477f-aca7-4f8e8c038506", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:48:24Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "200.00", "lithology_to": "276.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR GREY, WHITE AND BLACK; SOFT SPOT AND FRACTURE @ 226'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200467}}, {"model": "wells.lithologydescription", "pk": "8bc77c9f-8973-4ac0-95e5-8bcc8c55a2d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "178.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203033}}, {"model": "wells.lithologydescription", "pk": "8be00940-9a7e-40be-ae50-fe4bb4d33ddf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "215.00", "lithology_to": "410.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC BEDROCK - SEAMS OF WHITE FELDSPAR", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197437}}, {"model": "wells.lithologydescription", "pk": "8be50627-df08-4903-901c-17fb2611507f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY SILT MIXED WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199719}}, {"model": "wells.lithologydescription", "pk": "8bfcc847-cc24-403a-a6fe-9dbb4d0194cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well_tag_number": 113065, "lithology_from": "23.00", "lithology_to": "78.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202747}}, {"model": "wells.lithologydescription", "pk": "8bfec1d4-9b48-42f9-b6bd-063d5344d50e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T08:16:49Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "145.00", "lithology_to": "185.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURES - NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198425}}, {"model": "wells.lithologydescription", "pk": "8c026376-6f43-4005-a8f9-fe25da89c63e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "365.00", "lithology_to": "420.00", "lithology_raw_data": "DARK GREY CRYSTALLINE ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197887}}, {"model": "wells.lithologydescription", "pk": "8c028d09-20ed-4538-a381-3ddcf27760d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:28:22Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "155.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=100+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199743}}, {"model": "wells.lithologydescription", "pk": "8c08eff4-5d9a-48aa-92d4-66eb5453e842", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, "well_tag_number": 112644, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200328}}, {"model": "wells.lithologydescription", "pk": "8c11f042-4344-4ab0-a914-ad3cd6b9745f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, "well_tag_number": 112402, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198490}}, {"model": "wells.lithologydescription", "pk": "8c188454-045c-4a91-b34f-d773ce21c618", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "453.00", "lithology_to": "456.00", "lithology_raw_data": "SS, med fine, grey", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203413}}, {"model": "wells.lithologydescription", "pk": "8c1b1d39-cb2d-4ea3-b7a0-62d5a861dc2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "8.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202233}}, {"model": "wells.lithologydescription", "pk": "8c1e8fa3-6b82-4cde-9d41-e54cea1ef8d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, "well_tag_number": 113149, "lithology_from": "50.00", "lithology_to": "195.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "9.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203287}}, {"model": "wells.lithologydescription", "pk": "8c2425e0-b442-47ae-9d24-cb56e12bfec0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "16.00", "lithology_to": "21.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198566}}, {"model": "wells.lithologydescription", "pk": "8c288f5f-37fb-4ca2-99ac-72b54dee1a38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "68.00", "lithology_to": "82.00", "lithology_raw_data": "minor gravel", "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203522}}, {"model": "wells.lithologydescription", "pk": "8c3be885-1443-47b5-8e50-cb37994c3afc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "65.00", "lithology_to": "98.00", "lithology_raw_data": "FINE GRAINED SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198274}}, {"model": "wells.lithologydescription", "pk": "8c482c28-3a9f-4df9-b6f8-ab9de6d6bf2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:08:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, "well_tag_number": 112826, "lithology_from": "7.00", "lithology_to": "26.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201333}}, {"model": "wells.lithologydescription", "pk": "8c513a34-153e-401d-b036-88595e5f28a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "195.00", "lithology_to": "197.00", "lithology_raw_data": "FINE SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198080}}, {"model": "wells.lithologydescription", "pk": "8c5c65a2-a994-4d63-b2cd-b9d9d53c47c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:25:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, "well_tag_number": 112874, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201729}}, {"model": "wells.lithologydescription", "pk": "8c84fc85-2c93-4f43-94e3-3f38af564450", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:16:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, "well_tag_number": 112542, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199613}}, {"model": "wells.lithologydescription", "pk": "8c957f06-170b-4103-8c40-67395b2fe3b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "430.00", "lithology_to": "435.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199703}}, {"model": "wells.lithologydescription", "pk": "8c95e45b-e40d-4a60-bd4c-b701e5cee21a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, "well_tag_number": 112720, "lithology_from": "161.00", "lithology_to": "185.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200678}}, {"model": "wells.lithologydescription", "pk": "8c9b41dd-993f-4703-944e-72aa03d204f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, "well_tag_number": 112713, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL AND FINE BROWN SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200634}}, {"model": "wells.lithologydescription", "pk": "8ca008a4-4698-4f0c-9e2f-f727c6650c31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well_tag_number": 112605, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200023}}, {"model": "wells.lithologydescription", "pk": "8cae9938-0eda-41c8-a03f-f4f9dc7e9a7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202773}}, {"model": "wells.lithologydescription", "pk": "8caf44f3-4cd7-431e-bf1d-ad6546c93f72", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:22:28Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:22:28Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "270.00", "lithology_to": "275.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199544}}, {"model": "wells.lithologydescription", "pk": "8cb84bf8-b364-433e-b6dd-94c3b14bf684", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "8.00", "lithology_to": "24.00", "lithology_raw_data": "sandy", "lithology_description": "61", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203794}}, {"model": "wells.lithologydescription", "pk": "8cbeef8e-6068-4784-9319-b5647f2a9f81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, "well_tag_number": 112348, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198168}}, {"model": "wells.lithologydescription", "pk": "8ccf05ee-3c90-45ab-b03f-0e0a68c3ce26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "54.00", "lithology_to": "120.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197384}}, {"model": "wells.lithologydescription", "pk": "8cd01aa4-4ae8-4ccb-aa82-b547ba0a5241", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "ORGANIC MIXED FILL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199854}}, {"model": "wells.lithologydescription", "pk": "8cd26679-1c29-4ea5-8146-c1b826a0b4f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD; MEDIUM TO COARSE GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199960}}, {"model": "wells.lithologydescription", "pk": "8cee47d4-1656-47a1-bc80-5bb3f7163052", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "195.00", "lithology_to": "215.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201113}}, {"model": "wells.lithologydescription", "pk": "8cee7fe0-ad51-41de-a702-6399f463d615", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "GREY & BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201481}}, {"model": "wells.lithologydescription", "pk": "8cf657c8-dcc6-4428-babe-9c1cfe9a2c7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T19:13:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, "well_tag_number": 112836, "lithology_from": "71.00", "lithology_to": "93.00", "lithology_raw_data": "sand", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, taking air", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201401}}, {"model": "wells.lithologydescription", "pk": "8cfbe91d-03aa-44de-a73a-54fc1f044056", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "215.00", "lithology_to": "230.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202983}}, {"model": "wells.lithologydescription", "pk": "8cfec240-26d7-4123-9178-2827c51cad20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well_tag_number": 112616, "lithology_from": "92.00", "lithology_to": "105.00", "lithology_raw_data": "CLAY, ROCKS AND BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200136}}, {"model": "wells.lithologydescription", "pk": "8d0501bf-9366-4a97-8b85-8b42679cf09b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well_tag_number": 113188, "lithology_from": "34.00", "lithology_to": "55.00", "lithology_raw_data": "silty and gravel", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203496}}, {"model": "wells.lithologydescription", "pk": "8d0cbf55-b406-48f0-b63c-67f2be45dcfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "187.00", "lithology_to": "190.00", "lithology_raw_data": "SANDSTONE-GREY SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198078}}, {"model": "wells.lithologydescription", "pk": "8d12eec4-6bbc-4f54-8f37-1a6fed87c0d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "500.00", "lithology_to": "600.00", "lithology_raw_data": "LAYERS, CLAY/SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198651}}, {"model": "wells.lithologydescription", "pk": "8d17aee4-7556-4273-83a6-be6c9c40e492", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:12:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, "well_tag_number": 112260, "lithology_from": "29.00", "lithology_to": "77.00", "lithology_raw_data": "DRY SILT AND GRAVEL WITH SEAMS OF W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197574}}, {"model": "wells.lithologydescription", "pk": "8d2750c9-df6b-4dfa-a421-2aa370724ae6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 195'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203106}}, {"model": "wells.lithologydescription", "pk": "8d41a322-3771-4e22-ac7b-3b886dd6ec81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T22:29:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, "well_tag_number": 113112, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "SAND AND GRAVEL COARSE; 195 GRAY TILL GRAVEL AND CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "M/M", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203035}}, {"model": "wells.lithologydescription", "pk": "8d4eed40-05b4-401b-a5b8-3856895503c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": "19.00", "lithology_to": "550.00", "lithology_raw_data": "granite", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LOTS OF COLOR CHANGE, RED, GREEN, BLACK, WHITE. ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202996}}, {"model": "wells.lithologydescription", "pk": "8d5145b8-32d7-4f45-be8a-934e1b897212", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "780.00", "lithology_to": "800.00", "lithology_raw_data": "SS/Shale lenses", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203629}}, {"model": "wells.lithologydescription", "pk": "8d56b11d-ea24-4120-af90-c3f16309b507", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "250.00", "lithology_to": "270.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202988}}, {"model": "wells.lithologydescription", "pk": "8d6332eb-a897-45fb-9bbb-aa2a8bb99aee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, "well_tag_number": 113027, "lithology_from": "75.00", "lithology_to": "170.00", "lithology_raw_data": "Brown Gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202570}}, {"model": "wells.lithologydescription", "pk": "8d6338ac-6967-4157-b25c-4ee5d5ee282e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "24.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; BOULDERS AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199948}}, {"model": "wells.lithologydescription", "pk": "8d79c1b0-a7e0-48f7-9845-f32a4c6f1c5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "10.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLUE/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199886}}, {"model": "wells.lithologydescription", "pk": "8d79c279-e58e-4fe1-8c95-3871681c46a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well_tag_number": 112509, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "GRAY SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199350}}, {"model": "wells.lithologydescription", "pk": "8d7c0e46-3e23-49ee-9195-100d6f156dbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:35:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, "well_tag_number": 112634, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "02", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200298}}, {"model": "wells.lithologydescription", "pk": "8d7cef50-b9a6-4f81-9d8d-21189f03da9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "176' UGPM - WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199097}}, {"model": "wells.lithologydescription", "pk": "8daacec2-50c1-4b17-be6a-e973280289a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "28.00", "lithology_to": "30.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198609}}, {"model": "wells.lithologydescription", "pk": "8dc121a0-4ccf-4b4a-b84e-082fb3abd936", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "80.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198682}}, {"model": "wells.lithologydescription", "pk": "8dc414ba-aa8f-43e2-bad1-84d1e97f9054", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well_tag_number": 113133, "lithology_from": "7.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "17", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Large chunky", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203179}}, {"model": "wells.lithologydescription", "pk": "8dc5b587-2295-4d20-a0d0-a4b80a322487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T22:36:42Z", "activity_submission": null, "well_tag_number": 112565, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM-HARD; LAYERS, CEMENTED GRAVEL, SAND LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199753}}, {"model": "wells.lithologydescription", "pk": "8dfccd72-af56-4313-95a8-a9c4a3ad16d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "4.00", "lithology_to": "23.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199787}}, {"model": "wells.lithologydescription", "pk": "8dff0d95-a4f8-49e4-92af-a0f8dc5affaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well_tag_number": 112258, "lithology_from": "32.00", "lithology_to": "36.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197565}}, {"model": "wells.lithologydescription", "pk": "8e08da39-eced-4266-a97e-c54fd42bbc9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well_tag_number": 113008, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202476}}, {"model": "wells.lithologydescription", "pk": "8e0d1868-cd5f-414d-8b1d-39af559dc01a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:43:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, "well_tag_number": 112781, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201103}}, {"model": "wells.lithologydescription", "pk": "8e0db345-fee6-4a61-8592-be34135225c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "56.00", "lithology_to": "96.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203882}}, {"model": "wells.lithologydescription", "pk": "8e10da48-0337-4aaa-a8dd-0c3e2a235b4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200682}}, {"model": "wells.lithologydescription", "pk": "8e1b6490-5d9f-4c3c-b112-4fc15672ebca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:41:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, "well_tag_number": 112466, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199013}}, {"model": "wells.lithologydescription", "pk": "8e289e3f-4469-4a49-891d-a10d0ade9ca2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, "well_tag_number": 112543, "lithology_from": "68.00", "lithology_to": "79.00", "lithology_raw_data": "WATER BEARING SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199618}}, {"model": "wells.lithologydescription", "pk": "8e2d11e7-20fe-4415-a54d-68bde170e216", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, "well_tag_number": 112900, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "4 - 8 GPM @ 375' WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201892}}, {"model": "wells.lithologydescription", "pk": "8e3af5c8-6a49-45ff-9175-b2e39e58bd5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:39:45Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "180.00", "lithology_to": "273.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK, WHITE AND GREY; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200624}}, {"model": "wells.lithologydescription", "pk": "8e3c9e14-2352-43b0-9388-77cb56b4ffc3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "82.00", "lithology_to": "165.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199052}}, {"model": "wells.lithologydescription", "pk": "8e3d023c-3332-475f-a926-e99d08da6430", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "2 PPM Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199443}}, {"model": "wells.lithologydescription", "pk": "8e4b42d5-066a-408a-be38-96374d86e9b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:25:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, "well_tag_number": 112869, "lithology_from": "72.00", "lithology_to": "114.00", "lithology_raw_data": "BLACK & WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201708}}, {"model": "wells.lithologydescription", "pk": "8e4e65b5-1cd7-451a-b46e-6c8205acae74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202632}}, {"model": "wells.lithologydescription", "pk": "8e69b116-fbb0-47da-bb92-076e4d93d747", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, "well_tag_number": 112540, "lithology_from": "128.00", "lithology_to": "316.00", "lithology_raw_data": "BASALT, OTHER SURFICIAL / BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN-LIGHT GREY; MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199612}}, {"model": "wells.lithologydescription", "pk": "8e6fe1a4-1b1a-4b4b-a2d5-d8fb1a80e05b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:14:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, "well_tag_number": 112714, "lithology_from": "9.00", "lithology_to": "31.00", "lithology_raw_data": "BLACK AND GREY SAND AND GRAVEL WITH DIRTY AND SILTY FINE BLACK SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATERBEARING; DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200641}}, {"model": "wells.lithologydescription", "pk": "8e83e830-691b-4a34-8eb8-9c0f1c1b9b84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "66.00", "lithology_to": "110.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH IRON PYRITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197346}}, {"model": "wells.lithologydescription", "pk": "8e8fbe03-97fd-4f47-a496-4e051d936dae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "236.00", "lithology_to": "336.00", "lithology_raw_data": "CLAY WITH LAYERS OF TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202765}}, {"model": "wells.lithologydescription", "pk": "8e9333fe-4027-452f-8c09-89c2ec207f3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "110.00", "lithology_to": "121.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201965}}, {"model": "wells.lithologydescription", "pk": "8e966b43-6a03-4e9e-9af3-ef573633efef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "96.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198952}}, {"model": "wells.lithologydescription", "pk": "8e9e921c-e384-4ada-bdbc-d5d1eb83cf28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "124.00", "lithology_to": "144.00", "lithology_raw_data": "silty", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203058}}, {"model": "wells.lithologydescription", "pk": "8eae9751-39f2-4fa3-88b2-87e2b07723b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199627}}, {"model": "wells.lithologydescription", "pk": "8ebb3bb3-348f-4b9d-a1cf-c4680fa9fa84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, "well_tag_number": 112589, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, SAND, SILT, MOIST", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199911}}, {"model": "wells.lithologydescription", "pk": "8ebb4743-44bd-4dcd-82aa-57e8541bb009", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "180.00", "lithology_to": "204.00", "lithology_raw_data": "TILL GRAVEL & CLAY MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201047}}, {"model": "wells.lithologydescription", "pk": "8ebc8ae0-7ad2-400e-b04e-acc190b8b0f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well_tag_number": 113125, "lithology_from": "53.00", "lithology_to": "55.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203117}}, {"model": "wells.lithologydescription", "pk": "8ebf261f-9a57-4246-aa8c-81a8ef5139a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T18:39:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, "well_tag_number": 113178, "lithology_from": "15.00", "lithology_to": "87.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203440}}, {"model": "wells.lithologydescription", "pk": "8ecdc8dc-078b-47a6-b640-d98c1be87751", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, MOIST MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199159}}, {"model": "wells.lithologydescription", "pk": "8eed6bd3-0fbb-444d-bf92-fd2f4319b55d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "57.00", "lithology_to": "66.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "manganese", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203321}}, {"model": "wells.lithologydescription", "pk": "8ef3d95a-f2f1-4c0c-8ca3-0ab6304e1613", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND, ROCKS, AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198670}}, {"model": "wells.lithologydescription", "pk": "8ef48f05-03fd-450f-a126-5354e53ec595", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "98.00", "lithology_to": "113.00", "lithology_raw_data": "W.B. MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200916}}, {"model": "wells.lithologydescription", "pk": "8f22582a-7059-4a86-8175-d02e505e9248", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T18:28:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, "well_tag_number": 112733, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200778}}, {"model": "wells.lithologydescription", "pk": "8f27c899-1520-43ff-a4c2-70a2c5f1384b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "173.00", "lithology_to": "205.00", "lithology_raw_data": "MEDIUM-SOFT, SAND-GRAVEL-SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198060}}, {"model": "wells.lithologydescription", "pk": "8f2efe88-b6e5-447c-99ad-b00b437282f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198638}}, {"model": "wells.lithologydescription", "pk": "8f58a51f-023c-4b91-b18c-972be7e00164", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "84.00", "lithology_to": "94.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201811}}, {"model": "wells.lithologydescription", "pk": "8f5b292d-bd68-4a6a-bdd2-f93acbf81118", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, "well_tag_number": 112304, "lithology_from": "0.00", "lithology_to": "60.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197799}}, {"model": "wells.lithologydescription", "pk": "8f6471a1-aad0-40c6-83da-f2e48521d38d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "113.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201591}}, {"model": "wells.lithologydescription", "pk": "8f7f4c12-6b9c-4064-8c1e-df1362d0bcfb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well_tag_number": 113079, "lithology_from": "8.00", "lithology_to": "69.00", "lithology_raw_data": "silt, sand, gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "till", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202880}}, {"model": "wells.lithologydescription", "pk": "8f8dc9f3-34d1-4406-927f-224a2ff23eda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOP SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201336}}, {"model": "wells.lithologydescription", "pk": "8f9471ab-09ff-4b79-92e0-87c323d01472", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, "well_tag_number": 113251, "lithology_from": "15.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203809}}, {"model": "wells.lithologydescription", "pk": "8fab4091-a9d7-496a-83a3-8c4e2dec6ddf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "68.00", "lithology_to": "93.00", "lithology_raw_data": "CLAY WITH SCATTERED STONES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202342}}, {"model": "wells.lithologydescription", "pk": "8fad640d-ee0d-4203-a1ca-7d1f958148c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "140.00", "lithology_to": "189.00", "lithology_raw_data": "clay and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202877}}, {"model": "wells.lithologydescription", "pk": "8fb209ed-dffb-48c6-a8c8-665df5fec0f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:41:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-06T16:54:41Z", "activity_submission": null, "well_tag_number": 112917, "lithology_from": "15.00", "lithology_to": "150.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "0.0500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED @ 68 FT, @ 111 FT AND 141 FT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202009}}, {"model": "wells.lithologydescription", "pk": "8fc18177-a150-49a2-b915-2618278cee01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well_tag_number": 113133, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203180}}, {"model": "wells.lithologydescription", "pk": "8fc92ee0-2423-433f-a9c1-46fd037c39c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "311.00", "lithology_to": "340.00", "lithology_raw_data": "hard clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202416}}, {"model": "wells.lithologydescription", "pk": "8fd434ab-9836-4b3e-a85d-91b92d35ba4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well_tag_number": 113153, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "sand, med coarse", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "110 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203310}}, {"model": "wells.lithologydescription", "pk": "8fd8c6fc-554f-4438-8c70-df99fb34704d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "289.00", "lithology_to": "314.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202833}}, {"model": "wells.lithologydescription", "pk": "8fdaa5c4-722f-4d83-bf85-4e0458cbc539", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "74.00", "lithology_to": "90.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201587}}, {"model": "wells.lithologydescription", "pk": "8fe6e9cb-c2a2-4666-af9d-2b3bd6a42544", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:19:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, "well_tag_number": 112659, "lithology_from": "3.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CLAY CHIPS; CLOSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200386}}, {"model": "wells.lithologydescription", "pk": "8fe871e8-dccb-4219-a3cf-2f0d9668fdac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "237.00", "lithology_to": "276.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199588}}, {"model": "wells.lithologydescription", "pk": "8feb34f8-8fdf-4853-bb0f-7a99536393cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well_tag_number": 112560, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199711}}, {"model": "wells.lithologydescription", "pk": "8ff32c67-dbee-43c3-958b-566ffc987fae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "36.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203540}}, {"model": "wells.lithologydescription", "pk": "8ff6685d-41e8-48dd-a20b-b63a77822d87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY, SAND, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199571}}, {"model": "wells.lithologydescription", "pk": "90108cf2-ea4b-4577-a589-28bad4a7d598", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "SMALL BOULDERS, COBBLES AND LARGE GRAVEL WITH MEDIUM COARSE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198446}}, {"model": "wells.lithologydescription", "pk": "90158eaf-4896-4664-b691-0ddd22fcaa86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:21Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "745'", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "before hydrofracking", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199388}}, {"model": "wells.lithologydescription", "pk": "90178fc7-d9ed-4571-82e1-badc9da6c33c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "265.00", "lithology_to": "275.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200972}}, {"model": "wells.lithologydescription", "pk": "90277ec6-a3c2-4194-a970-67c4c8d9339b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "14.00", "lithology_to": "51.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203919}}, {"model": "wells.lithologydescription", "pk": "902873cf-9245-4a88-bc80-7634b4771a6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "460.00", "lithology_to": "500.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "NO CHANGE IN WATER YIELD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197439}}, {"model": "wells.lithologydescription", "pk": "9028acaa-fdad-41a1-adfc-346e94c307c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "54.00", "lithology_to": "152.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199063}}, {"model": "wells.lithologydescription", "pk": "9032f9ea-cde4-4795-a99a-03bfe921ea3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/SOFT; FINE-COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199173}}, {"model": "wells.lithologydescription", "pk": "903d016f-11a0-45b9-8729-052136ad493d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "210.00", "lithology_to": "214.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201775}}, {"model": "wells.lithologydescription", "pk": "9040fb68-6700-432b-8c94-7523b13cd1c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well_tag_number": 112969, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "FILL (SAND, GRAVEL, COBBLES)", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202278}}, {"model": "wells.lithologydescription", "pk": "9043f702-3ffd-4d8c-a3ca-743fd58e4214", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "325.00", "lithology_to": "380.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK, DARK GREEN AND REDDISH BROWN; WATER BEARING FRACTURE @ 325'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200808}}, {"model": "wells.lithologydescription", "pk": "905c74b1-4e81-4713-8d04-9231c958bdce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:42:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, "well_tag_number": 113081, "lithology_from": "17.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202890}}, {"model": "wells.lithologydescription", "pk": "906e4072-2f18-4f52-a4fd-919280a69fed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD; BOULDER, COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199178}}, {"model": "wells.lithologydescription", "pk": "9078359d-e277-4721-b627-449bd7f413f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "129.00", "lithology_to": "131.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198203}}, {"model": "wells.lithologydescription", "pk": "907972ba-256f-4c0e-b683-d1059e260fb9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well_tag_number": 112409, "lithology_from": "450.00", "lithology_to": "452.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198541}}, {"model": "wells.lithologydescription", "pk": "907f1aa0-9df4-494c-b8e8-e567a8376d58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:17:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, "well_tag_number": 112655, "lithology_from": "48.00", "lithology_to": "67.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200366}}, {"model": "wells.lithologydescription", "pk": "9084b1fa-28ac-4b29-8abc-fa7e297d01e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "28.00", "lithology_to": "80.00", "lithology_raw_data": "STICKY CLAY CRACKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BOULDER @ 28-29'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201769}}, {"model": "wells.lithologydescription", "pk": "90954a47-8b4e-4061-8b7c-5bbfdfc30554", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well_tag_number": 112577, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199834}}, {"model": "wells.lithologydescription", "pk": "90995e1a-e359-46e9-af1f-0334fe8a792e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "40.00", "lithology_to": "51.00", "lithology_raw_data": "MEDIUM/HARD; DENSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199149}}, {"model": "wells.lithologydescription", "pk": "90a64032-8c82-4490-8f97-eb29b95be1ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, "well_tag_number": 113026, "lithology_from": "460.00", "lithology_to": "500.00", "lithology_raw_data": "SHALE HARD WITH SANDSTONE (COARSE LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202566}}, {"model": "wells.lithologydescription", "pk": "90cf450b-4354-4f3f-89ca-2557f22742e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "533.00", "lithology_to": "544.00", "lithology_raw_data": "grey/green", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "frac at 537'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201243}}, {"model": "wells.lithologydescription", "pk": "90d8647f-cfe0-4fbc-aed1-253f765c543e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:40:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, "well_tag_number": 112298, "lithology_from": "0.00", "lithology_to": "72.00", "lithology_raw_data": "TILL AND BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197770}}, {"model": "wells.lithologydescription", "pk": "90f12587-b70f-4f33-9be4-752622f438b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "169.00", "lithology_to": "180.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203124}}, {"model": "wells.lithologydescription", "pk": "90f52071-fa4e-4fc9-9f20-914ea1e92c37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "20.00", "lithology_to": "55.00", "lithology_raw_data": "TILL/GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SURFACE SEAL TO 25'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201987}}, {"model": "wells.lithologydescription", "pk": "9123b6e5-37af-4ceb-a205-bc3712bc5226", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, "well_tag_number": 113115, "lithology_from": "115.00", "lithology_to": "143.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203048}}, {"model": "wells.lithologydescription", "pk": "912e2610-4f65-44b6-958f-7bd8aa4eee22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199232}}, {"model": "wells.lithologydescription", "pk": "913e0c9b-7c63-4ced-a7e8-9b1ef98fe75c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:45:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, "well_tag_number": 112250, "lithology_from": "0.00", "lithology_to": "127.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197517}}, {"model": "wells.lithologydescription", "pk": "91441a6f-9d7a-484c-9c92-3fec57288b28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:01:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:51Z", "activity_submission": null, "well_tag_number": 112350, "lithology_from": "5.00", "lithology_to": "38.00", "lithology_raw_data": "gravel sand cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198177}}, {"model": "wells.lithologydescription", "pk": "91539178-14e1-4e93-a295-2a39dc920b3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "115.00", "lithology_to": "144.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=REDISH BROWN; DRY; SOLID; SOFT SPOT & FRACTURES=140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200648}}, {"model": "wells.lithologydescription", "pk": "918082d5-1ed7-4f75-8b7f-98c733c3c165", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SILTY BR SAND + GRAVEL + BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198477}}, {"model": "wells.lithologydescription", "pk": "91811d35-90f2-4802-862d-9661de2f5129", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "324.00", "lithology_to": "326.00", "lithology_raw_data": "silts", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201224}}, {"model": "wells.lithologydescription", "pk": "91838011-aba8-494e-a8ad-0753a282d139", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, "well_tag_number": 112477, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199118}}, {"model": "wells.lithologydescription", "pk": "91849e95-d6ba-443d-be49-bb72954f424f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "110.00", "lithology_to": "137.00", "lithology_raw_data": "WET SILTY SANDS & SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199345}}, {"model": "wells.lithologydescription", "pk": "918fcc79-e6f5-4f0b-b20d-b6b9c28eb019", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, "well_tag_number": 112627, "lithology_from": "135.00", "lithology_to": "160.00", "lithology_raw_data": "sand & gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200264}}, {"model": "wells.lithologydescription", "pk": "91abd62c-e15c-4f85-9430-4f0d8480da01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:53:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, "well_tag_number": 112793, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201138}}, {"model": "wells.lithologydescription", "pk": "91ae7cbe-0b57-4c8d-b705-d64c6df3cef7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, "well_tag_number": 112551, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199664}}, {"model": "wells.lithologydescription", "pk": "91b5b7cc-3021-44f3-968b-f54968cbc476", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199281}}, {"model": "wells.lithologydescription", "pk": "91b98608-6679-4fbd-b11a-bffad3271bf4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "17.00", "lithology_to": "24.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197553}}, {"model": "wells.lithologydescription", "pk": "91bfb2e0-0534-49af-b9b0-bc76ded17d64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, "well_tag_number": 112683, "lithology_from": "2.50", "lithology_to": "15.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200495}}, {"model": "wells.lithologydescription", "pk": "91c080b0-2385-471a-9e21-177b5c255a05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "3.00", "lithology_to": "19.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198751}}, {"model": "wells.lithologydescription", "pk": "91cce4ff-5eb4-4b7d-8d33-509d0d7c87ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "117.00", "lithology_to": "120.00", "lithology_raw_data": "LAYERED SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143920}}, {"model": "wells.lithologydescription", "pk": "91d1c796-1d34-40f4-b5a0-faee9ba9321b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "43.00", "lithology_to": "44.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202809}}, {"model": "wells.lithologydescription", "pk": "91d9cba5-d359-45de-87ba-0a06edfff4f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:53:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, "well_tag_number": 112793, "lithology_from": "60.00", "lithology_to": "98.40", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "PEA GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201140}}, {"model": "wells.lithologydescription", "pk": "91da4ef8-9abc-4ff0-b44f-a0719726740c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "81.00", "lithology_to": "88.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200044}}, {"model": "wells.lithologydescription", "pk": "91dfe592-058e-42c5-a3bc-5d99d3ba25e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "110.00", "lithology_to": "112.00", "lithology_raw_data": "CEMENTED SAND, PEBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202248}}, {"model": "wells.lithologydescription", "pk": "91dff0ff-65c3-47e2-ad85-f809e480b50f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well_tag_number": 112707, "lithology_from": "57.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOFT SPOTS AND FRACTURES AT 75', 107', 109', 144', 177', 198', 225', 230', WATER BEARING FRACTURES AT 230', 234'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200594}}, {"model": "wells.lithologydescription", "pk": "91e387f5-f8e1-42ce-9011-8bde05408065", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, "well_tag_number": 112694, "lithology_from": "35.00", "lithology_to": null, "lithology_raw_data": "LARGE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200540}}, {"model": "wells.lithologydescription", "pk": "91e462b5-e9d2-4948-99f5-6486ef52af71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "154.00", "lithology_to": "158.00", "lithology_raw_data": "SANDSTONE, FINE TO MEDIUM FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199458}}, {"model": "wells.lithologydescription", "pk": "91eb69a5-5970-4f64-ae65-abeb06b9a190", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "71.00", "lithology_to": "130.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND GREY; DRY, SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200803}}, {"model": "wells.lithologydescription", "pk": "91f83f27-5984-47e8-bee0-325ec443a7d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:09:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, "well_tag_number": 112872, "lithology_from": "4.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201722}}, {"model": "wells.lithologydescription", "pk": "91fe092b-4cd2-4d3c-b47a-b703af4f1bec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "WHITE-ORANGE BEDROCK GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202524}}, {"model": "wells.lithologydescription", "pk": "9204a2c5-a97b-4791-82a6-883adedee32b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "80.00", "lithology_to": "140.00", "lithology_raw_data": "BROWN/GREY", "lithology_description": "45", "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202084}}, {"model": "wells.lithologydescription", "pk": "92062516-dd59-4a0f-b687-606a222f8bee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "TILL, SANDY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199870}}, {"model": "wells.lithologydescription", "pk": "92106e57-638b-4470-911d-25591abbc478", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well_tag_number": 112357, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198211}}, {"model": "wells.lithologydescription", "pk": "921664d2-af0a-4da0-9c2e-87606db059c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "Sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203607}}, {"model": "wells.lithologydescription", "pk": "921805e0-0028-40ec-b201-2f6a84a884a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198970}}, {"model": "wells.lithologydescription", "pk": "921c378a-045e-473d-83a7-55d4cac9048f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:55:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, "well_tag_number": 112980, "lithology_from": "14.00", "lithology_to": "21.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10-15", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202348}}, {"model": "wells.lithologydescription", "pk": "921f0a78-09dc-4001-88f4-45aead0409d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "4.00", "lithology_to": "24.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198469}}, {"model": "wells.lithologydescription", "pk": "9225c6d0-b058-42e7-b2c3-54904ed7a1af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "38.00", "lithology_to": "58.00", "lithology_raw_data": "COARSE AND FINE SANDSTONE WITH WATER ZONES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN;WATERBEARING; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200686}}, {"model": "wells.lithologydescription", "pk": "922709e2-1fc3-406e-b26d-c8100fa93c7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:35:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, "well_tag_number": 112745, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200864}}, {"model": "wells.lithologydescription", "pk": "9230b76b-97cd-4654-a136-cc20634fc88f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-28T22:09:36Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "377.00", "lithology_to": "420.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": "11.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER AT 379'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202435}}, {"model": "wells.lithologydescription", "pk": "92317a63-d078-4268-8b54-285690587d82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "60.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198816}}, {"model": "wells.lithologydescription", "pk": "924c46ee-d47a-4dd3-83bd-59f4d9589587", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "240.00", "lithology_to": "245.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203672}}, {"model": "wells.lithologydescription", "pk": "924cf84f-9fac-4d0a-acd2-aeeeb7e61d03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "58.00", "lithology_to": "64.00", "lithology_raw_data": "GREY/BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197345}}, {"model": "wells.lithologydescription", "pk": "9257c9bd-a1a0-40ab-8ed5-b91260503bd2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, "well_tag_number": 112687, "lithology_from": "60.00", "lithology_to": null, "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200513}}, {"model": "wells.lithologydescription", "pk": "925e5c94-a509-49a8-b540-0d1111007a3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "26.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200516}}, {"model": "wells.lithologydescription", "pk": "925f0fb3-0e39-48b0-bb10-826c4274f77b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "83.00", "lithology_to": "163.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "slight fracture 121'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202820}}, {"model": "wells.lithologydescription", "pk": "9263d1a1-58c3-4dec-ad94-087c81bfbae8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": "wet", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201187}}, {"model": "wells.lithologydescription", "pk": "926821cd-7d4b-4cc8-83f3-f801a6bc5741", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "silt, sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, dark grey dense/stiff", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204011}}, {"model": "wells.lithologydescription", "pk": "927481cb-5862-40ce-af08-cc22231ffd09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199043}}, {"model": "wells.lithologydescription", "pk": "927ad2f5-7691-4f45-92ff-f0642450e67b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, "well_tag_number": 112257, "lithology_from": "24.00", "lithology_to": "38.00", "lithology_raw_data": "MEDIUM GRAVEL WITH MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197561}}, {"model": "wells.lithologydescription", "pk": "927ccaa4-23f5-4e9e-b38b-64c36537c617", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:13:15Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:16:22Z", "activity_submission": null, "well_tag_number": 112777, "lithology_from": "0.00", "lithology_to": "78.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FILLED UP WITH BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201078}}, {"model": "wells.lithologydescription", "pk": "92ab1972-b55b-4257-9faa-6816b3eaaa47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-08T16:46:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, "well_tag_number": 113174, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "GRAVEL AND BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203426}}, {"model": "wells.lithologydescription", "pk": "92adc42d-4752-4771-899b-8bdb4da7ca86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:53:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, "well_tag_number": 113286, "lithology_from": "30.00", "lithology_to": "52.00", "lithology_raw_data": "sand fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203975}}, {"model": "wells.lithologydescription", "pk": "92ae63b0-22ae-4244-a9b3-9f15f0205671", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "18.00", "lithology_to": "81.00", "lithology_raw_data": "BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202718}}, {"model": "wells.lithologydescription", "pk": "92b08e61-5713-4cf0-b73b-833929d87368", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "4.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200924}}, {"model": "wells.lithologydescription", "pk": "92b7a538-da64-4b9b-8f32-18f874d342c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202994}}, {"model": "wells.lithologydescription", "pk": "92d0db61-466c-4f5f-afc9-72fb18d7fe9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198633}}, {"model": "wells.lithologydescription", "pk": "92d2f051-357a-4d77-be63-be5e05efc484", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "63.00", "lithology_to": "96.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198727}}, {"model": "wells.lithologydescription", "pk": "92d6a4fe-f3dc-4a50-a9eb-7aa2d71d938c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, "well_tag_number": 112242, "lithology_from": "60.00", "lithology_to": "73.00", "lithology_raw_data": "CRUMBLY SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "62'-88'=FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197492}}, {"model": "wells.lithologydescription", "pk": "92da2f8a-b347-4bf5-809e-d36ffb4419e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "150.00", "lithology_to": "154.00", "lithology_raw_data": "SHALE / FINE COAL LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199457}}, {"model": "wells.lithologydescription", "pk": "92dadafe-aa91-4094-b6e2-e3b79078fe9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, "well_tag_number": 112673, "lithology_from": "0.00", "lithology_to": "6.50", "lithology_raw_data": "SAND AND GRAVEL FILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200454}}, {"model": "wells.lithologydescription", "pk": "92e48b65-dc0f-449e-be30-ee94f130e5fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE/VOLCANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202943}}, {"model": "wells.lithologydescription", "pk": "92ebfbf7-517d-49c2-b8f2-49d3f4603dd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T21:37:32Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "218.00", "lithology_to": "240.00", "lithology_raw_data": "DENSE-STIFF; CLAY, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199598}}, {"model": "wells.lithologydescription", "pk": "92f5adc4-ad1b-4347-83ea-4c4893af0a4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "16.00", "lithology_to": "195.00", "lithology_raw_data": "GREY/BLUE CLAY WITH TILL LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203129}}, {"model": "wells.lithologydescription", "pk": "93067ee9-6c9e-40eb-b2a9-7502f052cbec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199197}}, {"model": "wells.lithologydescription", "pk": "9308d607-81b1-4100-b646-487d8bfeaa1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "D", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202531}}, {"model": "wells.lithologydescription", "pk": "9311ec49-42ba-40c0-9481-4e8e935af4df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "17.00", "lithology_to": "38.00", "lithology_raw_data": "SAND & CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202178}}, {"model": "wells.lithologydescription", "pk": "93143668-9ff1-48b8-8408-eb6bde2b057b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "53.00", "lithology_to": "55.00", "lithology_raw_data": "GRAVEL/SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "HIGH IRON CONTENT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200413}}, {"model": "wells.lithologydescription", "pk": "9317764e-de84-437a-9959-4ea2488fc4e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "100.00", "lithology_to": "113.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198714}}, {"model": "wells.lithologydescription", "pk": "931da372-30c3-4a20-8e26-531bb50f46ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "43.00", "lithology_to": "55.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197592}}, {"model": "wells.lithologydescription", "pk": "93219b33-7aec-40c4-9210-e42c4f5fa58b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:55:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, "well_tag_number": 112446, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "ANGULAR GRAVEL/COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198857}}, {"model": "wells.lithologydescription", "pk": "9322b2a7-dafc-4db4-9bb2-b62c612949fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "196.00", "lithology_to": "255.00", "lithology_raw_data": "HARD CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200949}}, {"model": "wells.lithologydescription", "pk": "933ad9e1-b28f-4319-94a3-ab02176f5575", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "59.00", "lithology_to": "65.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197944}}, {"model": "wells.lithologydescription", "pk": "933aec80-d92b-407d-bf44-d39d114296ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "121.00", "lithology_to": "140.00", "lithology_raw_data": "SILT WITH SOME CLAY, TRACE FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY; SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200997}}, {"model": "wells.lithologydescription", "pk": "9340164f-11a4-4964-9d82-01f3adce89a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well_tag_number": 112806, "lithology_from": "8.00", "lithology_to": "35.00", "lithology_raw_data": "broken", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201200}}, {"model": "wells.lithologydescription", "pk": "934098f0-f3dd-42ae-9253-520c2704b72e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "106.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201813}}, {"model": "wells.lithologydescription", "pk": "93421198-9b00-4163-b760-a175e72e0a4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T08:29:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, "well_tag_number": 112731, "lithology_from": "47.00", "lithology_to": "59.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING (MORE WATER THAN 30'-47'); CLEANER; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200773}}, {"model": "wells.lithologydescription", "pk": "9354920a-ac36-4e4a-87bb-d90438ab2fef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "580.00", "lithology_to": "656.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198524}}, {"model": "wells.lithologydescription", "pk": "936be94b-f7a8-43e8-ab4a-cd19825e8575", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, "well_tag_number": 113087, "lithology_from": "314.00", "lithology_to": "320.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202915}}, {"model": "wells.lithologydescription", "pk": "9372b713-e4d9-46d8-ae7e-f698d3c44d36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well_tag_number": 112705, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200579}}, {"model": "wells.lithologydescription", "pk": "9374f1e3-c221-4dff-8213-3ca0cc3f1aa2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "46.00", "lithology_to": "49.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199697}}, {"model": "wells.lithologydescription", "pk": "939264f7-a48b-41b0-9918-eb78812ef2a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198563}}, {"model": "wells.lithologydescription", "pk": "9394edd5-ac78-48c2-93b8-28b2b984d88d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "65.00", "lithology_to": "90.00", "lithology_raw_data": "Gravel, some sand, trace silt, well graded, grey, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203504}}, {"model": "wells.lithologydescription", "pk": "9397724a-ae00-4815-b213-e2e10b9714f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "356.00", "lithology_to": "358.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197930}}, {"model": "wells.lithologydescription", "pk": "939bd59c-8055-4a8a-9e18-b672285c15f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "SILT, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199277}}, {"model": "wells.lithologydescription", "pk": "939eaf35-3cbb-429c-90dd-d5954aa1efe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "28.00", "lithology_to": "110.00", "lithology_raw_data": "LARGE BOULDERS, 2'-8' DIAMETER WITH COBBLES AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200841}}, {"model": "wells.lithologydescription", "pk": "93a857bb-c427-43f1-847f-a9a6a15518ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "19.00", "lithology_to": "33.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200040}}, {"model": "wells.lithologydescription", "pk": "93ae1f2e-cb26-4faa-8296-cab3517f4923", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, "well_tag_number": 112279, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197686}}, {"model": "wells.lithologydescription", "pk": "93b8b8bd-045e-4bc4-8038-ba1750e2d48a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "134.00", "lithology_to": "202.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WEATHERED 27-30'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203269}}, {"model": "wells.lithologydescription", "pk": "93babf17-da1f-423e-bc58-c5f83b8cc13e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "71.00", "lithology_to": "78.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200062}}, {"model": "wells.lithologydescription", "pk": "93be95b5-c8c0-4546-82c6-909c1b0b25ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "22.00", "lithology_to": "24.00", "lithology_raw_data": "BRWON GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201584}}, {"model": "wells.lithologydescription", "pk": "93d2ebee-1ab0-40c1-b283-af2f5c9cec7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "49.00", "lithology_to": "88.00", "lithology_raw_data": "and gravel", "lithology_description": "62", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203548}}, {"model": "wells.lithologydescription", "pk": "93d7c1de-8df1-44b5-90c3-fa5359d619f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "232.00", "lithology_to": "251.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200439}}, {"model": "wells.lithologydescription", "pk": "93d8114e-ed5a-4211-a930-78bd095b5faf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SAND - COARSE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198797}}, {"model": "wells.lithologydescription", "pk": "93db6f07-2a74-427c-8dfe-e2bf1330f8e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, "well_tag_number": 112627, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "Top Soil", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200262}}, {"model": "wells.lithologydescription", "pk": "93e49ca9-b5bf-4f19-833d-e303d504116b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "24.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203904}}, {"model": "wells.lithologydescription", "pk": "93fe0ba2-f353-49c5-b2cc-bcaf5d458589", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-16T13:21:40Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY CLAY, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198912}}, {"model": "wells.lithologydescription", "pk": "93fe7aaa-4ed2-47cd-81d4-f4994ab363df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:07:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, "well_tag_number": 112970, "lithology_from": "35.00", "lithology_to": "43.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "30+", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202287}}, {"model": "wells.lithologydescription", "pk": "941eced1-7fe4-4262-9371-6dbfa0a208a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "16.00", "lithology_to": "23.00", "lithology_raw_data": "SILTSTONE & SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201540}}, {"model": "wells.lithologydescription", "pk": "9422df28-e08e-4da4-a359-c022df7f89a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "93.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199189}}, {"model": "wells.lithologydescription", "pk": "9423feaa-b70d-44ab-a886-8010417c9e49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "45.00", "lithology_to": "63.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201818}}, {"model": "wells.lithologydescription", "pk": "9429c618-6731-41e8-8a82-c308e5ef834d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, "well_tag_number": 112798, "lithology_from": "83.60", "lithology_to": "98.40", "lithology_raw_data": "SILTY GRAVEL WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201159}}, {"model": "wells.lithologydescription", "pk": "9434c32e-d0dc-4f5d-aeda-39b4559a27f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "10.00", "lithology_to": "17.00", "lithology_raw_data": "FINE TO MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198655}}, {"model": "wells.lithologydescription", "pk": "943ce1ee-1c4e-4040-9fa4-c6396c2a16f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, "well_tag_number": 112837, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "topsoil", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201403}}, {"model": "wells.lithologydescription", "pk": "943e5284-2850-40b1-b0f7-4401a06b6e9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "70.00", "lithology_to": "76.00", "lithology_raw_data": "MED + COARSE BR SAND + GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198483}}, {"model": "wells.lithologydescription", "pk": "944d765e-d927-40df-825e-dc4a894b8a4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, "well_tag_number": 112589, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199909}}, {"model": "wells.lithologydescription", "pk": "944dc7a0-8203-4f13-9516-92df31517e50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well_tag_number": 112698, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "very silty", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200554}}, {"model": "wells.lithologydescription", "pk": "945f397c-7848-4956-8e53-54438522da49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well_tag_number": 113300, "lithology_from": "155.00", "lithology_to": "600.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "white & grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204033}}, {"model": "wells.lithologydescription", "pk": "9470c010-76ef-4eff-a02c-5a7180282d0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:34:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-10T21:49:49Z", "activity_submission": null, "well_tag_number": 113080, "lithology_from": "260.00", "lithology_to": "340.00", "lithology_raw_data": "Dark Grey, dense, wet, shale with Siltstone lenses", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202887}}, {"model": "wells.lithologydescription", "pk": "947b08da-c966-409f-80f0-7bf6041644e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "35.00", "lithology_to": "47.00", "lithology_raw_data": "FINE SAND, MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197696}}, {"model": "wells.lithologydescription", "pk": "948f6be7-4834-47b8-8647-a7f06dd5ffec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, "well_tag_number": 112295, "lithology_from": "23.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197754}}, {"model": "wells.lithologydescription", "pk": "94934b25-c940-4711-bb49-bdeec4428cf7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "20.00", "lithology_to": "33.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199995}}, {"model": "wells.lithologydescription", "pk": "94ac94e2-4a25-4415-af78-a2fad462bf63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "95.00", "lithology_to": "107.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "H2O", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132270}}, {"model": "wells.lithologydescription", "pk": "94b1ac11-3d7b-48f2-8ab7-eb5593731902", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well_tag_number": 113264, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203897}}, {"model": "wells.lithologydescription", "pk": "94b577d0-6c7b-4b06-9b25-fb6248168874", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well_tag_number": 112238, "lithology_from": "280.00", "lithology_to": "310.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "275'-286'=3 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197471}}, {"model": "wells.lithologydescription", "pk": "94cb2853-0270-430a-ad9e-ee9a6a3e2e55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, "well_tag_number": 112305, "lithology_from": "50.00", "lithology_to": "77.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197805}}, {"model": "wells.lithologydescription", "pk": "94d9f68e-7325-4c8f-987a-085a63c77b8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "gravel and organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198736}}, {"model": "wells.lithologydescription", "pk": "94e29871-388b-4461-9e30-ed860fde5eb4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "33.00", "lithology_to": "36.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "med sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202504}}, {"model": "wells.lithologydescription", "pk": "94e34b64-c180-4ea1-aea8-da3adcbde94c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "33.00", "lithology_to": "48.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197936}}, {"model": "wells.lithologydescription", "pk": "94e833af-c5ce-4d86-8f8d-207903f3ec40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199356}}, {"model": "wells.lithologydescription", "pk": "94fcc4f0-332c-48e8-ae2f-72e4be115502", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "6.00", "lithology_to": "18.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203819}}, {"model": "wells.lithologydescription", "pk": "94fd9ce0-0788-46a7-8ffd-80c91c8117d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well_tag_number": 113503, "lithology_from": "23.00", "lithology_to": "63.00", "lithology_raw_data": "TILL AND BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205294}}, {"model": "wells.lithologydescription", "pk": "9504d4bd-c79e-42db-a047-f97098cd686d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, "well_tag_number": 112703, "lithology_from": "16.00", "lithology_to": "203.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY MIX", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200575}}, {"model": "wells.lithologydescription", "pk": "9509d8ad-51e5-416f-86df-93b6c5fa2cf1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "till like", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202916}}, {"model": "wells.lithologydescription", "pk": "950d01bc-4169-4b5c-a5a7-86c057305c7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "66.00", "lithology_to": "95.00", "lithology_raw_data": "VERY FINE AND SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED; STATIC=APPROX 80'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200744}}, {"model": "wells.lithologydescription", "pk": "95154b32-103d-4b29-a0fa-280dec1b98cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ALTERATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200380}}, {"model": "wells.lithologydescription", "pk": "9516d83f-f350-4377-b55a-47de03b8b2d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "71.00", "lithology_to": "94.00", "lithology_raw_data": "VERY FINE AND SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200788}}, {"model": "wells.lithologydescription", "pk": "9529aa47-80b9-4760-a494-c5bd1cdfe968", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "5.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203093}}, {"model": "wells.lithologydescription", "pk": "953e96fb-94ef-4881-a1d1-79da5c4ba00b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "192.00", "lithology_to": "215.00", "lithology_raw_data": "SS MED FINE GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143930}}, {"model": "wells.lithologydescription", "pk": "95438255-f039-4f84-a76d-070b677fa99b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "191.00", "lithology_to": "239.00", "lithology_raw_data": "W.B. GREY SAND (RED WATER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200929}}, {"model": "wells.lithologydescription", "pk": "95486995-72ae-4170-a8f2-c52bbe1a722f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "710.00", "lithology_to": "770.00", "lithology_raw_data": "GREY SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201305}}, {"model": "wells.lithologydescription", "pk": "95536fb8-3b63-466e-a8ad-52b927e3c627", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, "well_tag_number": 113003, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": "Gray Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202452}}, {"model": "wells.lithologydescription", "pk": "955e3db3-6c8b-48f4-8a70-23c58af4f937", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well_tag_number": 113150, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "40GPM coarse sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203292}}, {"model": "wells.lithologydescription", "pk": "9581c078-e3be-4c5c-ba22-26b8ada7dcda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, "well_tag_number": 112295, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197752}}, {"model": "wells.lithologydescription", "pk": "9587c91d-5b32-40e5-911d-c5e5a76ff2d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "44.00", "lithology_to": "55.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; WATER BEARING; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200765}}, {"model": "wells.lithologydescription", "pk": "95a12ece-3a65-49e5-a924-3572015730e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "31.00", "lithology_to": "64.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197994}}, {"model": "wells.lithologydescription", "pk": "95adf69a-bbfd-443e-a652-831866678296", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well_tag_number": 112992, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "GRAVEL/SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202422}}, {"model": "wells.lithologydescription", "pk": "95aef4e2-eefe-4eaf-891c-20e4df1d13c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well_tag_number": 113137, "lithology_from": "41.00", "lithology_to": "73.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203213}}, {"model": "wells.lithologydescription", "pk": "95b7c604-6f1a-4b2f-b4de-1eb61d355f57", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "56.00", "lithology_to": "182.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK, WHITE.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159175}}, {"model": "wells.lithologydescription", "pk": "95bbb46c-e634-45fb-bced-5fd2f579860b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "WITH SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201635}}, {"model": "wells.lithologydescription", "pk": "95c8f39c-4a8b-491c-9050-0e69d7eaeffa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "90.00", "lithology_to": "95.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; GREY/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199176}}, {"model": "wells.lithologydescription", "pk": "95cad249-8b5c-4572-8dbd-b95c21e1e71e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "65.00", "lithology_to": "72.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198873}}, {"model": "wells.lithologydescription", "pk": "95d1f1ab-392f-4379-a7e0-a54e75411748", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "340.00", "lithology_to": "360.00", "lithology_raw_data": "SOFT/MEDIUM; MEDIUM TO COARSE SAND, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199243}}, {"model": "wells.lithologydescription", "pk": "95dcde9b-ca2e-4c63-92b8-241bf696d9b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "210.00", "lithology_to": "222.00", "lithology_raw_data": "SANDSTONE/FINE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197921}}, {"model": "wells.lithologydescription", "pk": "95ebcd76-4e1d-4b30-ab4a-73e582ad4af0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-17T19:27:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-03T23:39:42Z", "activity_submission": null, "well_tag_number": 112625, "lithology_from": "84.00", "lithology_to": "140.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LOST CIRCULATION 90'. SHALE TRAP AT 107'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200204}}, {"model": "wells.lithologydescription", "pk": "95fdfe6f-d4ee-402e-9dc3-c9891acb9d5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202602}}, {"model": "wells.lithologydescription", "pk": "9604114a-b43a-4c6c-a79b-200359348e47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "140.00", "lithology_to": "148.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199235}}, {"model": "wells.lithologydescription", "pk": "96096509-0473-4057-81c0-a4ae2879b786", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, "well_tag_number": 112654, "lithology_from": "195.00", "lithology_to": "395.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200364}}, {"model": "wells.lithologydescription", "pk": "960b3e03-ead7-46c8-a1e5-ae9c55486b42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, "well_tag_number": 113179, "lithology_from": "135.00", "lithology_to": "156.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203446}}, {"model": "wells.lithologydescription", "pk": "960ee29a-bb1e-4781-b12e-b849b7f7257f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "175.00", "lithology_to": "232.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Trace of water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203245}}, {"model": "wells.lithologydescription", "pk": "961919ff-7f73-4698-87fa-69bdee191e5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "185.00", "lithology_to": "215.00", "lithology_raw_data": "PINK, SEAM OF FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198426}}, {"model": "wells.lithologydescription", "pk": "961ac66b-4ca1-4419-846d-5e85c487b9bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": "SALT & PEPPER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "LP AIRLIFTING KC @ 126' REGAINED @ 140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201638}}, {"model": "wells.lithologydescription", "pk": "9622629b-ed8b-491f-9273-f277d842e51f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well_tag_number": 112491, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM-COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199229}}, {"model": "wells.lithologydescription", "pk": "962957c5-98b8-438d-a8a1-5d71d02ec31d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-19T20:40:20Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-19T20:40:20Z", "activity_submission": null, "well_tag_number": 112629, "lithology_from": null, "lithology_to": "28.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200288}}, {"model": "wells.lithologydescription", "pk": "9630531a-90cd-4a5e-a4f8-9d43a9248f20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T21:02:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, "well_tag_number": 112794, "lithology_from": "30.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CLEAN PEA GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201144}}, {"model": "wells.lithologydescription", "pk": "9631041f-39b7-4870-8b21-c85efe3bf9f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "3.08", "lithology_to": "4.99", "lithology_raw_data": "FILL (SM) - SILTY SAND, TRACE CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK BROWN; MOIST; OXIDATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201067}}, {"model": "wells.lithologydescription", "pk": "96344fcf-e8dd-407e-b742-f0d9d54e1393", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "205.00", "lithology_to": "234.00", "lithology_raw_data": "Light grey with sand and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203854}}, {"model": "wells.lithologydescription", "pk": "96415639-4a92-4f6a-99bc-ad41f9dfe66e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198999}}, {"model": "wells.lithologydescription", "pk": "964ba0e0-7031-4522-90d8-a01d56e91210", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, "well_tag_number": 112241, "lithology_from": "137.00", "lithology_to": "145.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": "120'-137'=FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197488}}, {"model": "wells.lithologydescription", "pk": "9653121e-4bf4-47e4-a00e-a2ac2b0a949a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "208.00", "lithology_to": "298.00", "lithology_raw_data": "silt", "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201222}}, {"model": "wells.lithologydescription", "pk": "9654b7d7-2cb0-43a1-8b1e-3a54cbde7f1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well_tag_number": 112370, "lithology_from": "300.00", "lithology_to": "440.00", "lithology_raw_data": "WHITE/PINK, GRANITE BEDROCK ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER INCREASED TO 4 GPM; FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198312}}, {"model": "wells.lithologydescription", "pk": "965b3928-2071-4d2c-9286-b614980f2342", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "326.00", "lithology_to": "695.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199793}}, {"model": "wells.lithologydescription", "pk": "96652bab-2044-4a1f-ad7c-575dffac41c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well_tag_number": 112738, "lithology_from": "49.00", "lithology_to": "58.50", "lithology_raw_data": "FINE SAND WITH SOME GRAVEL AND TRACK OF CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; CLEANER; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200823}}, {"model": "wells.lithologydescription", "pk": "9665fb94-b149-4af7-9e51-61cbbba2b1f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "430.00", "lithology_to": "450.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet slop", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204018}}, {"model": "wells.lithologydescription", "pk": "96722947-602b-4e77-a582-7439675fbbbd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "34.00", "lithology_to": "38.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198532}}, {"model": "wells.lithologydescription", "pk": "96729291-d58e-4e32-a20c-a11064a04387", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:49:40Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "40.00", "lithology_to": "118.00", "lithology_raw_data": "Greyish clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Not too compact", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203377}}, {"model": "wells.lithologydescription", "pk": "9680386b-c0f0-4df0-8e99-a662efa12635", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "120.00", "lithology_to": "150.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200517}}, {"model": "wells.lithologydescription", "pk": "9682bff2-cdf9-4386-b54d-94bbcde24cbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, "well_tag_number": 113302, "lithology_from": "11.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dark grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204045}}, {"model": "wells.lithologydescription", "pk": "968d72c4-87f0-4970-893e-1e9b391a4812", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:09:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, "well_tag_number": 112872, "lithology_from": "94.00", "lithology_to": "294.00", "lithology_raw_data": "GREEN & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201724}}, {"model": "wells.lithologydescription", "pk": "969a5407-d4e6-458a-8b06-03a0a6387d13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, "well_tag_number": 112543, "lithology_from": "2.00", "lithology_to": "68.00", "lithology_raw_data": "DRY BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199617}}, {"model": "wells.lithologydescription", "pk": "96b63bc8-a668-47af-99d5-0b009f2e86da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T21:02:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, "well_tag_number": 112794, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201141}}, {"model": "wells.lithologydescription", "pk": "96bca099-8d23-4949-b7e1-0129795a3989", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "69.00", "lithology_to": "77.00", "lithology_raw_data": "and sand", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200349}}, {"model": "wells.lithologydescription", "pk": "96c6b277-47e9-44f1-a9f6-24f6284b82c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well_tag_number": 113065, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202745}}, {"model": "wells.lithologydescription", "pk": "96cdaa43-5de9-4133-92f6-68781db731f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "66.00", "lithology_to": "71.00", "lithology_raw_data": "and gravel", "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203699}}, {"model": "wells.lithologydescription", "pk": "96d2ee24-f186-46af-878b-2af3bcee61e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "161.00", "lithology_to": "166.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199677}}, {"model": "wells.lithologydescription", "pk": "96db4a2c-a32c-4ff1-8ff1-9edc0bcd0db7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "125.00", "lithology_to": "168.00", "lithology_raw_data": "SILT CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MUSHY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201110}}, {"model": "wells.lithologydescription", "pk": "96e17a7e-6e03-4028-91e3-71e08d204cbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "11.00", "lithology_to": "16.00", "lithology_raw_data": "FINE SAND & FINE TO MEDIUM SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200980}}, {"model": "wells.lithologydescription", "pk": "96e45417-62a3-4948-8bd2-f850c839c8d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "24.00", "lithology_to": "40.00", "lithology_raw_data": "FINE SAND, MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197554}}, {"model": "wells.lithologydescription", "pk": "96e70c6b-9bdd-48f4-9b7c-868e3dc1792b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well_tag_number": 112886, "lithology_from": "80.00", "lithology_to": "132.00", "lithology_raw_data": "GRAY & BLACK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201803}}, {"model": "wells.lithologydescription", "pk": "96eb965a-38af-44eb-84a2-4f20b303964c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "Sandstone tight", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203608}}, {"model": "wells.lithologydescription", "pk": "96ed640c-1f1d-4b69-b2b3-99c941fa2e6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "3.00", "lithology_to": "30.00", "lithology_raw_data": "clay and fine grained sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198828}}, {"model": "wells.lithologydescription", "pk": "96f0f755-1b81-4293-8661-ab39cd9a12b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": "DARK GREY SILTS, ODD STONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200172}}, {"model": "wells.lithologydescription", "pk": "9702c224-61b5-4fbc-a4fc-2a5a2ff090d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "145.00", "lithology_to": "205.00", "lithology_raw_data": "GREEN VOLCANIC BEDROCK WITH SEAMS OF MULTICOLOURED GNEISS", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197435}}, {"model": "wells.lithologydescription", "pk": "970497f8-7957-46ef-b797-f2a84bf04b06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, "well_tag_number": 113277, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203939}}, {"model": "wells.lithologydescription", "pk": "97066e92-e0db-45fc-816e-96a633a7d6c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well_tag_number": 112308, "lithology_from": "28.00", "lithology_to": "72.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197821}}, {"model": "wells.lithologydescription", "pk": "9713ed8d-9124-432e-9685-56427819c657", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well_tag_number": 112786, "lithology_from": "4.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201124}}, {"model": "wells.lithologydescription", "pk": "9714b18f-374f-4193-a5ea-9171d75dad6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 70'-74' 3.0 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203686}}, {"model": "wells.lithologydescription", "pk": "9722a856-f2f5-4827-a2d4-d82c06a45ada", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well_tag_number": 112862, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201647}}, {"model": "wells.lithologydescription", "pk": "972b428b-fad2-4762-9de9-2fc5bbb165e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "Clay, trace to some gravel, grey-brown, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet at 30ft and damp at 29.5ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203500}}, {"model": "wells.lithologydescription", "pk": "9736ecec-07a1-4735-8661-896857909dc7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "160.00", "lithology_to": "164.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199460}}, {"model": "wells.lithologydescription", "pk": "9737d97b-fe2f-44a3-ab55-e8316919757b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "212.00", "lithology_to": "220.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197349}}, {"model": "wells.lithologydescription", "pk": "9737fcf6-1cf9-4c0b-bd37-6bd7da1675eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well_tag_number": 112871, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201715}}, {"model": "wells.lithologydescription", "pk": "97384964-9130-446b-a538-77785dd3b0b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, "well_tag_number": 112463, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "and cobble fill", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198991}}, {"model": "wells.lithologydescription", "pk": "973dbed6-6733-4fdf-9f58-ac8dfbd87892", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well_tag_number": 112594, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199938}}, {"model": "wells.lithologydescription", "pk": "9743e6d3-c6db-4f7b-82aa-5d708b01d734", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "456.00", "lithology_to": "458.00", "lithology_raw_data": "shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203414}}, {"model": "wells.lithologydescription", "pk": "97517ce0-09c3-46f0-9538-49b830fe0911", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY, SILT, ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198606}}, {"model": "wells.lithologydescription", "pk": "97562273-0e5d-4906-84f1-1ee8c74bef75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "595.00", "lithology_to": "605.00", "lithology_raw_data": "WITH SALT & PEPPER MW", "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201514}}, {"model": "wells.lithologydescription", "pk": "975bbcb5-61d9-468b-a68d-3c89e4799d5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "135.00", "lithology_to": "141.00", "lithology_raw_data": "SOME CLAY", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201914}}, {"model": "wells.lithologydescription", "pk": "975ca3ae-8764-49a8-abec-c8035b05bd2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "69.00", "lithology_to": "76.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202153}}, {"model": "wells.lithologydescription", "pk": "976a8dec-2a12-468d-8b79-51d5f3618f70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "LIGHT GREY/ BROWN SILTY SANDS AND GRAVELS, WASTE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203229}}, {"model": "wells.lithologydescription", "pk": "97841007-4748-4552-bec6-53b348d79d0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "and organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198868}}, {"model": "wells.lithologydescription", "pk": "9796044a-279d-42fb-9bba-abc1a7d64267", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "3.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203359}}, {"model": "wells.lithologydescription", "pk": "979cfc2b-6b11-453f-8c5a-1e8b2f3e13e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well_tag_number": 113290, "lithology_from": "400.00", "lithology_to": "430.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "black, white", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203990}}, {"model": "wells.lithologydescription", "pk": "979e204a-ca5d-49c6-ae5d-cfd16732d840", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, "well_tag_number": 112394, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FILL AND SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198454}}, {"model": "wells.lithologydescription", "pk": "979fd8a1-8b2f-4c41-af65-7be9c90a3fce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "46.00", "lithology_to": "48.00", "lithology_raw_data": "rotten", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198708}}, {"model": "wells.lithologydescription", "pk": "97a3dd9c-eb2d-48f1-aafd-b92319df3184", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": "FINE TO MEDIUM SAND, SOME FINE GRAVEL, TRACE SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200993}}, {"model": "wells.lithologydescription", "pk": "97c594fc-5aa2-4c72-9790-86facea22a19", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "59.00", "lithology_to": "62.00", "lithology_raw_data": "GREEN/BROWN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197985}}, {"model": "wells.lithologydescription", "pk": "97c796a5-7df1-475e-96b9-b8d97b81844b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "125.00", "lithology_to": "258.00", "lithology_raw_data": "WITH SILTSTONE & FINE SANDSTONE LAYERS", "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201639}}, {"model": "wells.lithologydescription", "pk": "97d4e12b-3eef-4b56-a7ff-67b33e287e4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "21.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "casing to 36.5", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201179}}, {"model": "wells.lithologydescription", "pk": "97dabbe1-6459-4847-8da2-d6928249ddb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, "well_tag_number": 112878, "lithology_from": "56.00", "lithology_to": "71.00", "lithology_raw_data": "with clay", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201748}}, {"model": "wells.lithologydescription", "pk": "97eac601-4f2e-4dc1-b11a-a9bf2c4a44af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:10:54Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "220.00", "lithology_to": "320.00", "lithology_raw_data": "MEDIUM/HARD, BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198935}}, {"model": "wells.lithologydescription", "pk": "97f11020-f3e6-4067-845e-40689593316d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, "well_tag_number": 113285, "lithology_from": "0.00", "lithology_to": "41.00", "lithology_raw_data": "VERY DENSE BOULDERS GRAVEL SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203969}}, {"model": "wells.lithologydescription", "pk": "97fa5a86-c210-467a-a84b-7c837c0ef1ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well_tag_number": 112870, "lithology_from": "6.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201710}}, {"model": "wells.lithologydescription", "pk": "980a3252-5144-493e-94ea-ddc84f2ec82e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "240'=5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198945}}, {"model": "wells.lithologydescription", "pk": "980b4d4a-392b-47ae-91f9-def8d2c1e174", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well_tag_number": 112272, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "and cobbley gravels", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197630}}, {"model": "wells.lithologydescription", "pk": "980c9b2c-7d20-4181-9526-066e19ec83b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "60.00", "lithology_to": "73.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY SILT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199151}}, {"model": "wells.lithologydescription", "pk": "9813a645-b0e6-4653-ba73-8314c42ada64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "204.00", "lithology_to": "240.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204082}}, {"model": "wells.lithologydescription", "pk": "9819ed38-81d3-4771-89d5-f17d6df88037", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well_tag_number": 112255, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "SAND WITH COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197545}}, {"model": "wells.lithologydescription", "pk": "982043aa-438f-4ebe-a146-eb19e3eab254", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, "well_tag_number": 112760, "lithology_from": "76.00", "lithology_to": "78.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200977}}, {"model": "wells.lithologydescription", "pk": "98242810-7df6-45a3-bffa-fe8b82eec277", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, "well_tag_number": 112877, "lithology_from": "354.00", "lithology_to": "394.00", "lithology_raw_data": "VOLCANIC & ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201744}}, {"model": "wells.lithologydescription", "pk": "982dfac2-eae9-4c3d-a8ae-1c85339024c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:23:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, "well_tag_number": 112702, "lithology_from": "0.00", "lithology_to": "31.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200570}}, {"model": "wells.lithologydescription", "pk": "9837fa70-f81d-4a52-90c7-0243a42ff509", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILT CLAY, MINOR ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198963}}, {"model": "wells.lithologydescription", "pk": "984b34b3-8998-42b3-b411-0d47e18d4d15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "39.00", "lithology_to": "42.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201339}}, {"model": "wells.lithologydescription", "pk": "986107be-893b-4b00-895e-6bab9d993d29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:43:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, "well_tag_number": 112781, "lithology_from": "25.00", "lithology_to": "32.00", "lithology_raw_data": "MUD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MASHY, WATERY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201102}}, {"model": "wells.lithologydescription", "pk": "986e407f-0079-4d01-87df-d074d9e69429", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "177.00", "lithology_to": "211.00", "lithology_raw_data": "W.B. SILTY BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201460}}, {"model": "wells.lithologydescription", "pk": "986ea480-2e8c-42d3-bcf2-126178dc4360", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "36.00", "lithology_to": "110.00", "lithology_raw_data": "BROWN SILTY DRY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200955}}, {"model": "wells.lithologydescription", "pk": "9878c399-7d57-444e-8efa-008b31fb2a99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "720.00", "lithology_to": "840.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201837}}, {"model": "wells.lithologydescription", "pk": "98847e56-57f3-4bad-83c6-8b576c203e81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199260}}, {"model": "wells.lithologydescription", "pk": "988523b7-ff45-4554-8364-d8bb1f294345", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T22:16:47Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "515.00", "lithology_to": "600.00", "lithology_raw_data": "UNSTABLE AREA", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "AIR DEVELOPMENT SHOWED 0.25 TO 2.5 GPM OR BETTER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198379}}, {"model": "wells.lithologydescription", "pk": "988bc354-b345-49e4-a316-2f1d4d98a82e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "CLAY WITH GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197478}}, {"model": "wells.lithologydescription", "pk": "98996f78-78f7-4d1c-af39-f5197543f3c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T18:44:38Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "285.00", "lithology_to": "330.00", "lithology_raw_data": "VOLCANIC - SEAMS OF FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLUE/PURPLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199851}}, {"model": "wells.lithologydescription", "pk": "989c4694-4d0e-4058-bb05-033ef08449e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199124}}, {"model": "wells.lithologydescription", "pk": "98a57bf2-3cfd-4a4b-a4e6-0eb0f733263b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, "well_tag_number": 113052, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202667}}, {"model": "wells.lithologydescription", "pk": "98ad845b-5336-4618-9ec9-983a06e77fb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "243.00", "lithology_to": "257.00", "lithology_raw_data": "TILL - GRAVELY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205641}}, {"model": "wells.lithologydescription", "pk": "98aedbcc-e720-4d6d-9eef-963a21cf3278", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198692}}, {"model": "wells.lithologydescription", "pk": "98b3cf2b-1833-46a6-9bc3-b485a8b066dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "80.00", "lithology_to": "85.00", "lithology_raw_data": "MEDIUM/SOFT; FINE, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199174}}, {"model": "wells.lithologydescription", "pk": "98b4d0b1-d24d-4b64-9771-354790240611", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:52:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, "well_tag_number": 112349, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "sand gravel cobbles", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198173}}, {"model": "wells.lithologydescription", "pk": "98b87794-b949-4cdf-90ab-5a0f319a5baf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "106.00", "lithology_to": "107.00", "lithology_raw_data": "SILTY SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202345}}, {"model": "wells.lithologydescription", "pk": "98cd8084-8d91-4ae6-b1b9-4016f6a8fbd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:35:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, "well_tag_number": 112680, "lithology_from": "295.00", "lithology_to": "302.00", "lithology_raw_data": "WOOD MIX WITH ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200481}}, {"model": "wells.lithologydescription", "pk": "98df6f79-eb67-490f-8e51-dd766cc6d4a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-10-26T18:55:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, "well_tag_number": 102364, "lithology_from": "19.00", "lithology_to": "120.00", "lithology_raw_data": "OPEN BEDROCK HOLE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING FRACTURE 108' - 30 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 142601}}, {"model": "wells.lithologydescription", "pk": "98f64978-2edf-4739-a8a7-320ce020d5fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "19.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203267}}, {"model": "wells.lithologydescription", "pk": "98fa47c6-d851-4a97-a1e2-0549b03d75f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "89.00", "lithology_to": "168.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198330}}, {"model": "wells.lithologydescription", "pk": "991b1e4e-51b9-44e8-91de-7c3e74be7100", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "95.00", "lithology_to": "104.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201326}}, {"model": "wells.lithologydescription", "pk": "9923519d-a011-4768-9ab0-1e1dfcf9eb3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, "well_tag_number": 112697, "lithology_from": "0.00", "lithology_to": "91.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200548}}, {"model": "wells.lithologydescription", "pk": "9923e0ad-04e8-4a0f-9f9a-21206b0829be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "575.00", "lithology_to": "576.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202854}}, {"model": "wells.lithologydescription", "pk": "992f09a5-4284-45b3-a35e-24521a8fa8a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, "well_tag_number": 112297, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197765}}, {"model": "wells.lithologydescription", "pk": "99391940-ba22-4f3e-a298-ec1194663314", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE, ANGULAR, GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199268}}, {"model": "wells.lithologydescription", "pk": "99409c87-88d4-44db-a0fc-3b3de5e3d967", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, "well_tag_number": 112305, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "TILL, BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197804}}, {"model": "wells.lithologydescription", "pk": "994a5615-9a0d-4519-ab68-855945a57530", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, "well_tag_number": 112264, "lithology_from": "4.00", "lithology_to": "23.00", "lithology_raw_data": "LARGE BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197584}}, {"model": "wells.lithologydescription", "pk": "99582ee3-6a9b-4432-a1d2-6037a0006fea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:29:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, "well_tag_number": 112505, "lithology_from": "3.00", "lithology_to": "47.00", "lithology_raw_data": "GRAY SILTS SOME GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199339}}, {"model": "wells.lithologydescription", "pk": "995f89dd-f642-4e60-9eaf-59778618e01b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, "well_tag_number": 112640, "lithology_from": "27.00", "lithology_to": "69.00", "lithology_raw_data": "clay till sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200317}}, {"model": "wells.lithologydescription", "pk": "996d3ca1-5b9b-4828-b928-5dd11767210d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well_tag_number": 112587, "lithology_from": "525.00", "lithology_to": "650.00", "lithology_raw_data": "MEDIUM-HARD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FACTURES, NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199904}}, {"model": "wells.lithologydescription", "pk": "997cfc8b-4ec8-4a57-a339-b97c6fb4bfb4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "97.00", "lithology_to": "98.00", "lithology_raw_data": "SS FINE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143917}}, {"model": "wells.lithologydescription", "pk": "99860ad3-029c-40c7-acc8-8515bf83d876", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199440}}, {"model": "wells.lithologydescription", "pk": "99893959-2b6f-4f33-a629-91d7b30b7dc1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "60.00", "lithology_to": "68.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197938}}, {"model": "wells.lithologydescription", "pk": "99913f86-7e7e-4e92-94b9-4aa44e6b0976", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "73.00", "lithology_to": "78.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200718}}, {"model": "wells.lithologydescription", "pk": "99998f2a-bd43-429b-a4ce-dfb3487505f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "202.00", "lithology_to": "215.00", "lithology_raw_data": "SILTY FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201344}}, {"model": "wells.lithologydescription", "pk": "999ac653-58dc-4abc-824c-14445d756c44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:15:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, "well_tag_number": 112971, "lithology_from": "44.00", "lithology_to": "46.00", "lithology_raw_data": "CEMENTED GRAVEL, SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202291}}, {"model": "wells.lithologydescription", "pk": "99a14b73-1b81-451a-836a-da8adf18e2d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "477.00", "lithology_to": "480.00", "lithology_raw_data": "GRAY CLAY/SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199768}}, {"model": "wells.lithologydescription", "pk": "99c599c7-0674-4456-8205-08efa15957b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "660.00", "lithology_to": "670.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203625}}, {"model": "wells.lithologydescription", "pk": "99cb54ce-c190-43db-8609-cfb3ec1e60c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203479}}, {"model": "wells.lithologydescription", "pk": "99ccade1-a6bc-48e1-841b-4eb9560d21f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "645.00", "lithology_to": "662.00", "lithology_raw_data": "CONGLOMERATE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198009}}, {"model": "wells.lithologydescription", "pk": "99e76acb-fa8b-4a09-a2f3-b5ea28ffecc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:29:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, "well_tag_number": 112987, "lithology_from": "68.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": "51", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@129'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202399}}, {"model": "wells.lithologydescription", "pk": "99e82a49-78e8-4eaa-88f7-dc92f79a3a34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "4.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203918}}, {"model": "wells.lithologydescription", "pk": "99e976b0-d45a-4260-b556-841021df71e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "47.00", "lithology_to": "63.00", "lithology_raw_data": "with brown silt", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198726}}, {"model": "wells.lithologydescription", "pk": "99f88e5b-c7f3-43ce-bf35-6b3235304f12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, "well_tag_number": 112501, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD; CLAY ", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199315}}, {"model": "wells.lithologydescription", "pk": "9a083c4e-3dfb-40ed-a70f-ae3f167ff6fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well_tag_number": 112893, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201849}}, {"model": "wells.lithologydescription", "pk": "9a08c522-6836-4b2a-995d-625ba75c4beb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "425.00", "lithology_to": "429.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202842}}, {"model": "wells.lithologydescription", "pk": "9a0c3dde-b722-494e-9c72-99fd1f31b680", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "10.00", "lithology_to": "22.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200887}}, {"model": "wells.lithologydescription", "pk": "9a224a8a-9ab2-4fec-acf0-cf1d731e188e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "SANDSTONE / FINE / SHALE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199504}}, {"model": "wells.lithologydescription", "pk": "9a2c8013-4dfc-470b-9841-d1a69683d378", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "8.00", "lithology_to": "28.00", "lithology_raw_data": "SILTY, BROWN CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200741}}, {"model": "wells.lithologydescription", "pk": "9a368e79-f1ab-41aa-936f-1ab71e35bf73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197341}}, {"model": "wells.lithologydescription", "pk": "9a435d8e-cca3-4d53-af5a-4f2638ddfc4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well_tag_number": 112577, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199839}}, {"model": "wells.lithologydescription", "pk": "9a4ad12a-5aea-41c7-980b-c6f1de43d5c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "13.00", "lithology_to": "35.00", "lithology_raw_data": "with speckled quartz", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198229}}, {"model": "wells.lithologydescription", "pk": "9a4d3dea-6e44-4076-9573-37d6a28f7a23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "160.00", "lithology_to": "210.00", "lithology_raw_data": "SOFT/MEDIUM; FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199537}}, {"model": "wells.lithologydescription", "pk": "9a7944e0-9363-438b-ae39-c153a37a37e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "393.00", "lithology_to": "395.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132538}}, {"model": "wells.lithologydescription", "pk": "9ad109da-b8a9-4975-8c04-5a8805b78868", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "55.00", "lithology_to": "59.00", "lithology_raw_data": "SAND, GRAVEL, BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197943}}, {"model": "wells.lithologydescription", "pk": "9adaf48c-ceca-4908-8817-389cc56b346f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "6.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200400}}, {"model": "wells.lithologydescription", "pk": "9af3c2d5-2afe-45b6-bce7-74da010cf2a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "33.00", "lithology_to": "55.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198449}}, {"model": "wells.lithologydescription", "pk": "9af7be08-c73e-4a8a-bd8d-f4f25bc9e369", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, "well_tag_number": 112235, "lithology_from": "125.00", "lithology_to": "180.00", "lithology_raw_data": "GREEN/BROWN PACKED CLAY WITH COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197449}}, {"model": "wells.lithologydescription", "pk": "9af9bef9-0c0d-4772-8219-3a9634cd6bb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:15:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, "well_tag_number": 112943, "lithology_from": "15.00", "lithology_to": "93.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING GRAY WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202122}}, {"model": "wells.lithologydescription", "pk": "9b33584e-ebf0-4642-b52b-2fad1d9117bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well_tag_number": 112701, "lithology_from": "2.00", "lithology_to": "3.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200565}}, {"model": "wells.lithologydescription", "pk": "9b339e3c-93a0-4ea5-932c-d6d40ef23045", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "15.00", "lithology_to": "57.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201213}}, {"model": "wells.lithologydescription", "pk": "9b36e72e-61e7-4743-8fbe-7bb38d482a81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200392}}, {"model": "wells.lithologydescription", "pk": "9b3a85f1-989c-4aad-a91e-f76f5744da0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "705.00", "lithology_to": "740.00", "lithology_raw_data": "MEDIUM-HARD GREY, SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198011}}, {"model": "wells.lithologydescription", "pk": "9b3ba4be-b9de-454a-8bd6-5a7ca7051022", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well_tag_number": 112707, "lithology_from": "26.00", "lithology_to": "42.00", "lithology_raw_data": "HARDER, MEDIUM GREY GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200592}}, {"model": "wells.lithologydescription", "pk": "9b44e903-6d54-4253-861d-8f9fb76fa28c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": "MEDIUM SAND & COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202518}}, {"model": "wells.lithologydescription", "pk": "9b5200e3-713b-44b6-a944-e2b9f459095c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "75.00", "lithology_to": "83.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "10 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203323}}, {"model": "wells.lithologydescription", "pk": "9b646ac8-1399-41ce-894b-ddff1737a0bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-23T19:56:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, "well_tag_number": 112813, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "cobbles, boulders", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WB from 30'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201235}}, {"model": "wells.lithologydescription", "pk": "9b660ad6-223d-4d35-8646-39146a37c319", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-28T22:09:52Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "261.00", "lithology_to": "377.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER AT 263'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202434}}, {"model": "wells.lithologydescription", "pk": "9b69d866-7e12-421d-875e-776e6437d1f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "120.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199039}}, {"model": "wells.lithologydescription", "pk": "9b7c28b3-a50e-45d2-a94d-da5301810ae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "6.00", "lithology_to": "8.00", "lithology_raw_data": "WOOD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203168}}, {"model": "wells.lithologydescription", "pk": "9b85013c-fdba-44fd-b4bc-e45f2696fc54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "185.00", "lithology_to": "202.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199485}}, {"model": "wells.lithologydescription", "pk": "9b966f0a-ee47-4b1e-9bcb-87ed4d0de4f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "77.00", "lithology_to": "130.00", "lithology_raw_data": "MOIST SILTS, SOME SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200966}}, {"model": "wells.lithologydescription", "pk": "9b9faa10-a121-4863-ad6d-b24a852f301b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "174.00", "lithology_to": "188.00", "lithology_raw_data": "SILTY CLAY WITH TILL, BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201700}}, {"model": "wells.lithologydescription", "pk": "9ba9a518-044f-4088-a218-9a67d84b848b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "33.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202234}}, {"model": "wells.lithologydescription", "pk": "9baaa00b-abab-42c4-b61b-87b964ae243d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "171.00", "lithology_to": "178.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "01", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201220}}, {"model": "wells.lithologydescription", "pk": "9bac3f0e-833a-4d59-a402-ca09ae257cd7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "72.00", "lithology_to": "78.00", "lithology_raw_data": "LIGHT BROWN TO YELLOW WET SANDS, GRAVELS AND SILTS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203233}}, {"model": "wells.lithologydescription", "pk": "9bbd5921-9a87-435e-86dc-8d6ecadec834", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "126.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132527}}, {"model": "wells.lithologydescription", "pk": "9bcbfd01-4f01-48f9-88d7-e57f093e8f96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "276.00", "lithology_to": "280.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199589}}, {"model": "wells.lithologydescription", "pk": "9bdf8b0f-562d-4373-92f2-b5b0fe55edc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "58.00", "lithology_to": "75.00", "lithology_raw_data": "SAND, GRAVEL, TRACES OF SILT", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10-20", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202255}}, {"model": "wells.lithologydescription", "pk": "9bec7aef-95ab-420c-a834-af849edf3bc1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "20.00", "lithology_to": "32.00", "lithology_raw_data": "FRACTURED WEATHERED ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199213}}, {"model": "wells.lithologydescription", "pk": "9bedc408-6e6e-4329-9c84-79b5a6612712", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, "well_tag_number": 112909, "lithology_from": "20.00", "lithology_to": "48.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201935}}, {"model": "wells.lithologydescription", "pk": "9c1fb72b-b0f5-411c-beaa-7393b72cd7b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "56.00", "lithology_to": "58.00", "lithology_raw_data": "SS MED FINE LAYERED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143910}}, {"model": "wells.lithologydescription", "pk": "9c2bc87e-51a1-4a25-a1be-19817670e93b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": "damp", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202634}}, {"model": "wells.lithologydescription", "pk": "9c4138a9-68ca-4c6c-87a0-9c6d72763d8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "1.00", "lithology_to": "43.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197901}}, {"model": "wells.lithologydescription", "pk": "9c4408f8-3f9f-459a-b67f-386d2c01de8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, "well_tag_number": 113182, "lithology_from": "140.00", "lithology_to": "155.00", "lithology_raw_data": "cased bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203459}}, {"model": "wells.lithologydescription", "pk": "9c54c202-ca1c-4b4d-a77d-32b40d055d77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T06:12:24Z", "activity_submission": null, "well_tag_number": 112385, "lithology_from": "260.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREY, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED ZONES; 320'=WATER INCREASED TO 5 GPM, FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198402}}, {"model": "wells.lithologydescription", "pk": "9c5ef6c8-519e-437b-8b51-b97bd79ac40e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SANDY TOPSOIL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200654}}, {"model": "wells.lithologydescription", "pk": "9c636d37-4bdd-4d93-9d55-ceb7ea0dced1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:43:16Z", "activity_submission": null, "well_tag_number": 113146, "lithology_from": "70.00", "lithology_to": "280.00", "lithology_raw_data": "GREY SILTY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203273}}, {"model": "wells.lithologydescription", "pk": "9c728e36-51f9-4849-8848-1b081e9513b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "389.00", "lithology_to": "391.00", "lithology_raw_data": "silt chanks", "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201230}}, {"model": "wells.lithologydescription", "pk": "9c747127-5f46-49f9-bfdd-9fdd87a6b388", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BOULDERS, MINOR GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199194}}, {"model": "wells.lithologydescription", "pk": "9c790839-6b78-4782-831f-6523469f404e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "180.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD; COARSE SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199183}}, {"model": "wells.lithologydescription", "pk": "9c7c2a85-99c4-4849-b6de-93974736c4f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "18.00", "lithology_to": "24.00", "lithology_raw_data": "GREY/BROWN GRAVEL AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197342}}, {"model": "wells.lithologydescription", "pk": "9c915595-48c6-4a49-b6dc-a74b3a97014f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "26.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199059}}, {"model": "wells.lithologydescription", "pk": "9c91d7a7-2f7c-4370-ba7e-d774ec1b9a54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "173.00", "lithology_to": "190.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER SOURCE AT 180 FEET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132531}}, {"model": "wells.lithologydescription", "pk": "9ca48889-01ee-45c2-873d-735629633d14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, MINOR, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199195}}, {"model": "wells.lithologydescription", "pk": "9cabcb9f-a4a6-49ac-9938-f5a87f738174", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "147.00", "lithology_to": "151.00", "lithology_raw_data": "MEDIUM-HARD LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198049}}, {"model": "wells.lithologydescription", "pk": "9cae66e7-65ad-474e-8df1-9d0af51c28e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T21:20:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, "well_tag_number": 100001, "lithology_from": "13.00", "lithology_to": "170.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 129524}}, {"model": "wells.lithologydescription", "pk": "9cb1d61f-82c0-47f8-8fb4-2a4a9291dedd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:30:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:30:45Z", "activity_submission": null, "well_tag_number": 112934, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TOP SOIL AND BROKEN ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202076}}, {"model": "wells.lithologydescription", "pk": "9cb5910f-3dc1-42c8-b6fb-14b99fea65b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:31:58Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-15T21:37:31Z", "activity_submission": null, "well_tag_number": 112945, "lithology_from": "45.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "42", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202127}}, {"model": "wells.lithologydescription", "pk": "9cc681b9-16f3-45d0-8554-2586b68f84d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "148.00", "lithology_to": "210.00", "lithology_raw_data": "W.B. BROWN SAND AND SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202698}}, {"model": "wells.lithologydescription", "pk": "9cce1dce-6eac-489f-8bd6-079b36d7fb60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well_tag_number": 112594, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, BOULDER, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199939}}, {"model": "wells.lithologydescription", "pk": "9cd4bff5-2875-43c9-8ea2-c2f118672769", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "150.00", "lithology_to": "195.00", "lithology_raw_data": "SHALE WITH GREY SEAMS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201030}}, {"model": "wells.lithologydescription", "pk": "9cf3c010-47c1-4109-95d2-4ee49a6090c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199032}}, {"model": "wells.lithologydescription", "pk": "9cffc0ea-58b4-4b10-ad3b-811cc1397892", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "33.00", "lithology_to": "35.00", "lithology_raw_data": "PEA GRAVEL & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "STINKY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202339}}, {"model": "wells.lithologydescription", "pk": "9d196698-6c54-47a3-9fe1-f2004fa8104f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "0.00", "lithology_to": "34.00", "lithology_raw_data": "BROWN SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200964}}, {"model": "wells.lithologydescription", "pk": "9d27282d-6b40-4d91-9f92-9bc74260962a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "24.00", "lithology_to": "33.00", "lithology_raw_data": "STONES & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "7-8", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202196}}, {"model": "wells.lithologydescription", "pk": "9d4a926a-2deb-4754-ba01-e3844f39be11", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:31:40Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:31:40Z", "activity_submission": null, "well_tag_number": 107072, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 167272}}, {"model": "wells.lithologydescription", "pk": "9d4cce9c-b2d3-42f7-9b22-db9911d3cc31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "10.00", "lithology_to": "61.00", "lithology_raw_data": "rock", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "0.3300", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 44'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202918}}, {"model": "wells.lithologydescription", "pk": "9d542a2c-cfad-495b-8488-af57487666b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well_tag_number": 112754, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200923}}, {"model": "wells.lithologydescription", "pk": "9d591f7e-3dcb-4c5d-99ee-865f7fbcab4a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "25.00", "lithology_to": "61.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOLID WITH LARGE FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200812}}, {"model": "wells.lithologydescription", "pk": "9d61d6d9-47a9-4cfc-8ec8-cd30e65e54a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T22:51:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, "well_tag_number": 112699, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "SILT/CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200559}}, {"model": "wells.lithologydescription", "pk": "9d6859b6-0e34-43b4-a0f6-232a3eac7b09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199970}}, {"model": "wells.lithologydescription", "pk": "9d73338f-2016-4090-823e-0fa97e108093", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:29:08Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "370.00", "lithology_to": "450.00", "lithology_raw_data": "quartz bedrock", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202591}}, {"model": "wells.lithologydescription", "pk": "9d73375e-f3df-4986-919f-f421cb22d388", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:56:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:56:25Z", "activity_submission": null, "well_tag_number": 112989, "lithology_from": "0.00", "lithology_to": "117.00", "lithology_raw_data": "SAND FINE TO MEDIUM/ MEDIUM TO LOOSE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202403}}, {"model": "wells.lithologydescription", "pk": "9d77b7f8-53a6-4bb5-95e6-7f58c89cc80c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "68.00", "lithology_to": "80.00", "lithology_raw_data": "SANDS AND GRAVEL", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203949}}, {"model": "wells.lithologydescription", "pk": "9d824a96-1df7-41a3-8ef9-febd3401764c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "172.00", "lithology_to": "175.00", "lithology_raw_data": "quartz", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203680}}, {"model": "wells.lithologydescription", "pk": "9d88dbd8-bfe5-4043-b9cc-f23145a8dbe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:35:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, "well_tag_number": 112680, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200479}}, {"model": "wells.lithologydescription", "pk": "9d8a824e-7980-46e9-8bd0-5099c4c71a34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203324}}, {"model": "wells.lithologydescription", "pk": "9d922fe3-6104-498b-8ea6-947a2f40e5ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "167.00", "lithology_to": "209.00", "lithology_raw_data": "GREY-TAN BEDROCK SOLID", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202537}}, {"model": "wells.lithologydescription", "pk": "9da0c8fe-7d8d-444b-9f7f-5a7b23306dca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "77.00", "lithology_to": "120.00", "lithology_raw_data": "YELLOW/GRAY/BROWN CLAY-TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197946}}, {"model": "wells.lithologydescription", "pk": "9da19adc-8470-4d8b-bac8-239d9ed30081", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:23:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, "well_tag_number": 112972, "lithology_from": "50.00", "lithology_to": "61.00", "lithology_raw_data": "GRAVEL, COBBLES, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-3 ANGULAR", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202294}}, {"model": "wells.lithologydescription", "pk": "9da98d97-f248-4108-b9d2-1dec6dc0fde5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "152.00", "lithology_to": "164.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203653}}, {"model": "wells.lithologydescription", "pk": "9db39cb0-1d5e-4505-9bd6-676563d9e0a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "49.00", "lithology_to": "54.00", "lithology_raw_data": "SILTY SAND WITH CLAY BALLS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202151}}, {"model": "wells.lithologydescription", "pk": "9dbd0b31-2496-4dc4-b6d8-80b4c9b77890", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "27.00", "lithology_to": "40.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198599}}, {"model": "wells.lithologydescription", "pk": "9dd0210c-06b3-423a-8df1-ad7692368d21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "47", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197827}}, {"model": "wells.lithologydescription", "pk": "9ddfa7e2-1864-4424-b8dc-971af5e89d8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "52.00", "lithology_to": "55.00", "lithology_raw_data": "GRAVEL AND SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194608}}, {"model": "wells.lithologydescription", "pk": "9de096c0-173e-4719-be22-fc4b31cc10f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:44:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:44:36Z", "activity_submission": null, "well_tag_number": 112664, "lithology_from": "22.00", "lithology_to": "26.50", "lithology_raw_data": "SAND WITH PEBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200410}}, {"model": "wells.lithologydescription", "pk": "9df0b272-7551-4f29-bcce-9297140fcb9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "175.00", "lithology_to": "190.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205638}}, {"model": "wells.lithologydescription", "pk": "9df9bc20-7b4f-413d-91ab-16ada51d75d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "PACKED BROWN SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197389}}, {"model": "wells.lithologydescription", "pk": "9dfeb609-4e03-4550-ac9d-5c773b99a7c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "54.00", "lithology_to": "61.00", "lithology_raw_data": "GRAVEL COARSE TO FINE WITH COARSE TO MEDIUM FINE SAND, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201656}}, {"model": "wells.lithologydescription", "pk": "9e014d5e-b881-4f60-a270-c4784be12da9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "47.00", "lithology_to": "54.00", "lithology_raw_data": "CLAY, TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200376}}, {"model": "wells.lithologydescription", "pk": "9e22e994-b727-4728-ba4b-eba07c8334ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:29:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:29:01Z", "activity_submission": null, "well_tag_number": 112291, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197737}}, {"model": "wells.lithologydescription", "pk": "9e23eced-0089-4c5a-a28a-1269ed7a1669", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "49.00", "lithology_to": "53.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199698}}, {"model": "wells.lithologydescription", "pk": "9e2fb0c8-8b6a-4164-bea2-d409709855b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "68.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200104}}, {"model": "wells.lithologydescription", "pk": "9e3cf7e3-8123-49fc-b9a5-45f51b89315d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "3.00", "lithology_to": "30.00", "lithology_raw_data": "TIGHT; CEMENTED GRAVEL AND SAND WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200644}}, {"model": "wells.lithologydescription", "pk": "9e48e73a-8245-408b-9e6a-c77a3587a78e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, "well_tag_number": 112564, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL, MINOR CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199746}}, {"model": "wells.lithologydescription", "pk": "9e49d87e-13da-495a-b5dd-a5b509df0c76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "630.00", "lithology_to": "660.00", "lithology_raw_data": "SS/Shale lenses", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203624}}, {"model": "wells.lithologydescription", "pk": "9e508293-4c9b-4a3c-9726-2d4f50a9ea7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "SOFT CLAY WITH SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205635}}, {"model": "wells.lithologydescription", "pk": "9e55cbb8-fc70-415c-8494-70b2081c3f43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201456}}, {"model": "wells.lithologydescription", "pk": "9e665fd6-22e8-4df4-8237-c9d2fc5076ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "67.00", "lithology_to": "81.00", "lithology_raw_data": "and silt layers", "lithology_description": "56", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198818}}, {"model": "wells.lithologydescription", "pk": "9e7e5155-16ba-42fc-9a63-310e615ee229", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": "SAND, CLAY, MIX GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202104}}, {"model": "wells.lithologydescription", "pk": "9e7e89ac-01ff-4c75-bf65-2cf92ff29e1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:39:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, "well_tag_number": 113263, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "cobbles", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203892}}, {"model": "wells.lithologydescription", "pk": "9e80ac32-a686-4749-b561-1dbc6c6ba00e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "FINE WITH SOME SILTY DRY BROWN SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200665}}, {"model": "wells.lithologydescription", "pk": "9e854dfd-e696-43dd-aa23-2339e5360255", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "94.00", "lithology_to": "137.00", "lithology_raw_data": "COARSER, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200789}}, {"model": "wells.lithologydescription", "pk": "9e8878ce-5d41-4cda-94fb-283be502ac45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "176.00", "lithology_to": "195.00", "lithology_raw_data": "GRAVEL AND SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198475}}, {"model": "wells.lithologydescription", "pk": "9e96fdbd-1294-44c2-8005-3ebb083aa343", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "35.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201358}}, {"model": "wells.lithologydescription", "pk": "9e9b97cb-44da-41ea-82ee-7b63f7be3dc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "275.00", "lithology_to": "280.00", "lithology_raw_data": "FINE SAND WITH SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205645}}, {"model": "wells.lithologydescription", "pk": "9ea78baf-752a-46a9-98a8-c6acc94765fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, "well_tag_number": 113302, "lithology_from": "27.00", "lithology_to": "360.00", "lithology_raw_data": "siltstone/shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "1.5 GPM at 160 ft; 3 GPM at 320 ft; 4.5 GPM at 340 ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204046}}, {"model": "wells.lithologydescription", "pk": "9eaa3f8f-0f26-4336-a33d-11343047948d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "20.00", "lithology_to": "28.00", "lithology_raw_data": "GRAVEL WITH LARGE COBBLES", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202252}}, {"model": "wells.lithologydescription", "pk": "9eb50b9e-c60c-4033-a1b3-061fae15edaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well_tag_number": 113173, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203419}}, {"model": "wells.lithologydescription", "pk": "9eb697b8-26b5-4c41-ac6a-f112308c137b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN-GREY, SAND-GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198017}}, {"model": "wells.lithologydescription", "pk": "9ed43dcb-6911-4f18-94af-397de6b64b8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:16:03Z", "activity_submission": null, "well_tag_number": 113085, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202904}}, {"model": "wells.lithologydescription", "pk": "9f21124c-84c2-4952-b9b4-7eb07763ace1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:27:24Z", "activity_submission": null, "well_tag_number": 112649, "lithology_from": "300.00", "lithology_to": "495.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200352}}, {"model": "wells.lithologydescription", "pk": "9f2158a0-f1b4-4cac-b678-7bbc1c58232b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "255.00", "lithology_to": "285.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK WITH MEDIUM WT BROKEN QUARTZ, SEAMS OF GNEISS AND DIORITE", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197424}}, {"model": "wells.lithologydescription", "pk": "9f25e3b7-766b-4225-924c-09c021a69746", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T20:24:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T20:24:55Z", "activity_submission": null, "well_tag_number": 112653, "lithology_from": "140.00", "lithology_to": "780.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=WHITE AND BLACK; 500'-600'=LESS THAN 0.25USGPM; 760'=4GPM WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200359}}, {"model": "wells.lithologydescription", "pk": "9f2c0bb9-9ef4-48cb-ac25-448dd9d70d41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198339}}, {"model": "wells.lithologydescription", "pk": "9f31c53f-2f68-43d1-bd93-26e00b19dce8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "367.00", "lithology_to": "400.00", "lithology_raw_data": "SS hard, grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203401}}, {"model": "wells.lithologydescription", "pk": "9f33cd00-302c-49e7-ac01-9a8a20bc7de4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "32.00", "lithology_to": "110.00", "lithology_raw_data": "CLAY WITH SAND AND GRAVEL TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200842}}, {"model": "wells.lithologydescription", "pk": "9f439d72-cf14-4c9b-9167-26321cf247ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "254.00", "lithology_to": "405.00", "lithology_raw_data": "rock, some white calcite", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202922}}, {"model": "wells.lithologydescription", "pk": "9f44698b-2235-4663-96d9-40d2c03b09ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199963}}, {"model": "wells.lithologydescription", "pk": "9f4fb085-ab13-4cb5-b4cd-e0b0ba9c4bec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:55:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, "well_tag_number": 112446, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM GRAVEL CLAY, COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198856}}, {"model": "wells.lithologydescription", "pk": "9f55a06d-c907-42f0-b357-df1a96b29788", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "26.00", "lithology_to": "53.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202382}}, {"model": "wells.lithologydescription", "pk": "9f571b77-8b19-4289-ba86-c1bf960afb43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well_tag_number": 112814, "lithology_from": "8.00", "lithology_to": "143.00", "lithology_raw_data": "grey/green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201237}}, {"model": "wells.lithologydescription", "pk": "9f6af8bb-94d7-47c8-a7d7-54a6a70af592", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well_tag_number": 112231, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197427}}, {"model": "wells.lithologydescription", "pk": "9f6c8155-899a-4a7b-99a3-6cee1e651b98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well_tag_number": 112408, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198529}}, {"model": "wells.lithologydescription", "pk": "9f7a7d44-1118-4d97-af52-5a423a739cc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, "well_tag_number": 113299, "lithology_from": "54.00", "lithology_to": "218.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "black, dense/stiff", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204026}}, {"model": "wells.lithologydescription", "pk": "9f888037-59e9-4e26-83e3-78285393fe47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, "well_tag_number": 112654, "lithology_from": "55.00", "lithology_to": "110.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200361}}, {"model": "wells.lithologydescription", "pk": "9f99bde0-a59d-4d7e-9798-aa91b3b82592", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "23.00", "lithology_to": "49.00", "lithology_raw_data": "WITH SOFT LAYERS", "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOISTURE @ 44'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201521}}, {"model": "wells.lithologydescription", "pk": "9f9e4723-1af2-409d-86d1-9a0edf63ccfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T17:33:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, "well_tag_number": 113017, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202512}}, {"model": "wells.lithologydescription", "pk": "9f9f69ee-d2f2-4023-ad02-6c821988c6c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "158.00", "lithology_to": "160.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202706}}, {"model": "wells.lithologydescription", "pk": "9faa9fcc-a715-4552-8743-5a43e25ccbe9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:33Z", "activity_submission": null, "well_tag_number": 113305, "lithology_from": "82.00", "lithology_to": "92.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204059}}, {"model": "wells.lithologydescription", "pk": "9fb1db6b-3e2e-49b2-bb6a-35af2e7ec0d3", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:32:54Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:32:54Z", "activity_submission": null, "well_tag_number": 107072, "lithology_from": "21.00", "lithology_to": "25.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 167275}}, {"model": "wells.lithologydescription", "pk": "9fb22e3f-e3bd-4034-937d-0f87e03b5e70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, "well_tag_number": 112720, "lithology_from": "9.00", "lithology_to": "24.00", "lithology_raw_data": "broken bedrock and broken gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "weathered bedrock", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200676}}, {"model": "wells.lithologydescription", "pk": "9fb57fd1-86f5-4b2e-91e8-186b6abf9260", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well_tag_number": 112750, "lithology_from": "73.00", "lithology_to": "98.00", "lithology_raw_data": "GREY & BROWN SAND 20-S TIGHT PACKED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200897}}, {"model": "wells.lithologydescription", "pk": "9fb5cedd-3022-44eb-8b74-0be7fcbb26db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "42.00", "lithology_to": "90.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist,", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204037}}, {"model": "wells.lithologydescription", "pk": "9fbbce5f-9691-44ed-99df-324c755a4473", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "80.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202307}}, {"model": "wells.lithologydescription", "pk": "9fbe00fb-3972-4608-bfa1-ff65360bc978", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "WHITE & BROWN ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183347}}, {"model": "wells.lithologydescription", "pk": "9fd6a03c-f047-4169-a438-c08d54eb3639", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "161.00", "lithology_to": "220.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198264}}, {"model": "wells.lithologydescription", "pk": "9fe3d2ac-bc83-4e76-b081-00ecd7225571", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:16Z", "activity_submission": null, "well_tag_number": 112584, "lithology_from": "58.00", "lithology_to": "65.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "65'=LOST CIRCULATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199883}}, {"model": "wells.lithologydescription", "pk": "9fee83f0-0d98-43de-96fb-987074532533", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T16:11:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T16:11:27Z", "activity_submission": null, "well_tag_number": 112519, "lithology_from": "0.00", "lithology_to": "673.00", "lithology_raw_data": "blast rock spoils", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199413}}, {"model": "wells.lithologydescription", "pk": "9ff75e9f-b7ab-4fb6-84da-f21aeb530423", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "83.00", "lithology_to": "107.00", "lithology_raw_data": "WITH SILTSTONE LENSES", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201487}}, {"model": "wells.lithologydescription", "pk": "9ffbe373-7f28-4062-a6ab-c31a045b312f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "Hard Grey Bedrock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202459}}, {"model": "wells.lithologydescription", "pk": "a007de6c-b438-4881-a57a-8760968f79c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "GRAVEL, SAND, CLAY, COBBLES, DARK BROWN", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202240}}, {"model": "wells.lithologydescription", "pk": "a00badfb-7605-485b-b87d-338e58d29e60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "291.00", "lithology_to": "293.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201879}}, {"model": "wells.lithologydescription", "pk": "a00e60c3-f86c-4d4e-92d2-7480f92e6acf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:24:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:25:42Z", "activity_submission": null, "well_tag_number": 112996, "lithology_from": "102.00", "lithology_to": "115.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202447}}, {"model": "wells.lithologydescription", "pk": "a00fee30-4c24-41e5-9570-fbd37f0e649f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well_tag_number": 112624, "lithology_from": "18.00", "lithology_to": "64.00", "lithology_raw_data": "VERY SILTY SAND/GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200195}}, {"model": "wells.lithologydescription", "pk": "a01c880d-9fea-478a-8b44-b8864e01a35d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well_tag_number": 112370, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "BLACK/BROWN, ORGANICS/SANDY SOILS/GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198308}}, {"model": "wells.lithologydescription", "pk": "a01e8616-0cbf-49df-94cd-16b8451bd121", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well_tag_number": 112613, "lithology_from": "9.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200089}}, {"model": "wells.lithologydescription", "pk": "a028ad8c-f18c-4d06-a83a-f4f1d915b664", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "36.00", "lithology_to": "58.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202254}}, {"model": "wells.lithologydescription", "pk": "a029d7a2-0968-447d-ac21-5b040d8c4ccb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T18:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, "well_tag_number": 112283, "lithology_from": "55.00", "lithology_to": "87.00", "lithology_raw_data": "gravel, sand, boulders", "lithology_description": "18", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "61", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197705}}, {"model": "wells.lithologydescription", "pk": "a03138d4-6ffd-487a-8e1c-0b4c57cd2e91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, "well_tag_number": 112937, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAVEL INTO CLAY AT 5'", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202091}}, {"model": "wells.lithologydescription", "pk": "a034f90c-e61b-4f52-bc53-030842d0cfe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T19:32:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T19:32:44Z", "activity_submission": null, "well_tag_number": 112617, "lithology_from": "50.00", "lithology_to": "296.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200139}}, {"model": "wells.lithologydescription", "pk": "a036109e-c592-4a77-968e-647eff12c096", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "82.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY/SILT/ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198966}}, {"model": "wells.lithologydescription", "pk": "a03f3dca-1380-42d3-958f-ed7d4a7f7162", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well_tag_number": 112587, "lithology_from": "12.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199901}}, {"model": "wells.lithologydescription", "pk": "a064826e-0b51-4367-9a14-b31b791d6139", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "240.00", "lithology_to": "291.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204083}}, {"model": "wells.lithologydescription", "pk": "a0917c3d-382d-4696-b51e-0494684664c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "132.00", "lithology_to": "151.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203226}}, {"model": "wells.lithologydescription", "pk": "a0984915-b6be-4df9-bcd4-f9deac625082", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:48:15Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "196.00", "lithology_to": "218.00", "lithology_raw_data": "CRUMBLY BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "200-230 LOST CIRCULATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200185}}, {"model": "wells.lithologydescription", "pk": "a0a2c06b-c74b-462e-9457-597561f03a0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "11.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202487}}, {"model": "wells.lithologydescription", "pk": "a0a84cf9-4fb3-4e88-9a94-7e0cd8cdb701", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:50Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "164.00", "lithology_to": "166.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201974}}, {"model": "wells.lithologydescription", "pk": "a0afdd6e-21ba-4299-a64b-540e836c5412", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "60.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203542}}, {"model": "wells.lithologydescription", "pk": "a0b6411a-0dfa-48de-be84-410b215a5bcf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "87.00", "lithology_to": "99.00", "lithology_raw_data": "Fine to coarse sand and gravel, some cobbles", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203468}}, {"model": "wells.lithologydescription", "pk": "a0b74a9f-5671-4f3d-9c13-40ea622c39a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well_tag_number": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SLIGHTLY UNSTABLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202997}}, {"model": "wells.lithologydescription", "pk": "a0bcd76e-df65-42ad-b9ac-678487e231ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "gravel", "lithology_description": "06", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203537}}, {"model": "wells.lithologydescription", "pk": "a0c20599-ef02-492e-9741-f777abfbccd2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "603.00", "lithology_to": "656.00", "lithology_raw_data": "grey/green with trace of white", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": "90.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201382}}, {"model": "wells.lithologydescription", "pk": "a0dbe9a4-3f08-470b-8b7a-76f10b6cfca0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, "well_tag_number": 113168, "lithology_from": "75.00", "lithology_to": "88.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203367}}, {"model": "wells.lithologydescription", "pk": "a0dcc1e4-68b0-49cb-b078-aa76cb9f7dd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, "well_tag_number": 112670, "lithology_from": "31.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "187'-194'=FRACTURES; 12 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200447}}, {"model": "wells.lithologydescription", "pk": "a0e28dee-34b1-45ad-bd6a-20c38238fb60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T17:46:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, "well_tag_number": 112867, "lithology_from": "10.50", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "30 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201687}}, {"model": "wells.lithologydescription", "pk": "a0ecb8ba-5964-42fe-bfdb-fe6cbcb7bc0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T22:55:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, "well_tag_number": 113219, "lithology_from": "103.00", "lithology_to": "146.00", "lithology_raw_data": "sand and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "progressively coarser", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203708}}, {"model": "wells.lithologydescription", "pk": "a0efd061-7b9f-4b98-859d-99792628f167", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:52:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, "well_tag_number": 112349, "lithology_from": "25.00", "lithology_to": "52.00", "lithology_raw_data": "sand silt gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198174}}, {"model": "wells.lithologydescription", "pk": "a0f4e21e-296b-4141-9ee2-55c0add2f524", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "10.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201956}}, {"model": "wells.lithologydescription", "pk": "a0f95f8d-22f5-41e4-a7f3-18e3e7700efb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, black", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204004}}, {"model": "wells.lithologydescription", "pk": "a0f9d8c3-3700-4002-85f0-59f2e2dd976c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "216.00", "lithology_to": "233.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197878}}, {"model": "wells.lithologydescription", "pk": "a10633b3-1932-461c-a40c-daeba950cc14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "136.00", "lithology_to": "142.00", "lithology_raw_data": "silt sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203960}}, {"model": "wells.lithologydescription", "pk": "a10a0480-b76a-4dc9-ac11-6ae9f5e0bdba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:39:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, "well_tag_number": 112949, "lithology_from": "15.00", "lithology_to": "30.00", "lithology_raw_data": "LARGE COBBLES WITH MEDIUM SAND, WELL SORTED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202143}}, {"model": "wells.lithologydescription", "pk": "a10c9e4e-321d-459a-8626-c712c1451793", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, "well_tag_number": 112976, "lithology_from": "63.00", "lithology_to": "64.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202314}}, {"model": "wells.lithologydescription", "pk": "a10e0c36-086c-4353-8a11-518b593fd4c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "65.00", "lithology_to": "75.00", "lithology_raw_data": "broken rock, softer", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202353}}, {"model": "wells.lithologydescription", "pk": "a10e90fd-3446-4a26-b27d-96bb7d1f8497", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; DENSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199148}}, {"model": "wells.lithologydescription", "pk": "a1127f99-61e6-4895-9187-ef23279103f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "146.00", "lithology_to": "158.00", "lithology_raw_data": "SILTY CLAY WITH ORGANICS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201695}}, {"model": "wells.lithologydescription", "pk": "a1220d3f-413c-46d1-88cc-7420a25dade8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "444.00", "lithology_to": "600.00", "lithology_raw_data": "med. grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fracture @576-578'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201258}}, {"model": "wells.lithologydescription", "pk": "a1252f60-8817-488a-bbf9-da93d354c0ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199915}}, {"model": "wells.lithologydescription", "pk": "a1272775-a842-4f9b-8ea3-b65bb1c433ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, "well_tag_number": 112773, "lithology_from": "4.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201056}}, {"model": "wells.lithologydescription", "pk": "a12fb65e-26b5-459d-8122-535530ede03c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, "well_tag_number": 112593, "lithology_from": "131.00", "lithology_to": "135.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199937}}, {"model": "wells.lithologydescription", "pk": "a14114a9-592f-47be-82e8-2d39147d6cbf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:41:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:41:53Z", "activity_submission": null, "well_tag_number": 112917, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "01", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202007}}, {"model": "wells.lithologydescription", "pk": "a1490dbe-dfee-45f5-a194-436bbcaadef3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199077}}, {"model": "wells.lithologydescription", "pk": "a15714b6-840e-4030-bdf0-14bcbb90487d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201809}}, {"model": "wells.lithologydescription", "pk": "a168a81b-98a4-4f93-bdc1-3170270bce95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202989}}, {"model": "wells.lithologydescription", "pk": "a17bd67b-e8e1-49df-99fe-75d36ec3fb74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T07:42:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, "well_tag_number": 112765, "lithology_from": "0.00", "lithology_to": "11.50", "lithology_raw_data": "MEDIUM-STIFF; SILTY CLAY-TRACE SAND & GRAVEL. TRACE GRAVEL 1-3CM & SUBROUNDED ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; MOIST; FROZEN TO 0.8M, MEDIUM PLASTICITY & DENSITY. SAND POCKETS 1-3 CM NEAR 1.5M", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201008}}, {"model": "wells.lithologydescription", "pk": "a17c2e8b-090e-4483-941d-6c4a4d66ecf1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199287}}, {"model": "wells.lithologydescription", "pk": "a18bcb94-2ec0-465f-bdfc-db184da750b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, "well_tag_number": 112687, "lithology_from": "6.00", "lithology_to": "56.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200511}}, {"model": "wells.lithologydescription", "pk": "a18bf770-04ff-405c-a83f-1b8bebfccdb8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, "well_tag_number": 112389, "lithology_from": "205.00", "lithology_to": "295.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, GRANITE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED ZONE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198432}}, {"model": "wells.lithologydescription", "pk": "a18d79b2-a11e-40de-8d57-3dff60c06dc7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T16:11:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T16:11:27Z", "activity_submission": null, "well_tag_number": 112519, "lithology_from": "673.00", "lithology_to": "683.00", "lithology_raw_data": "blasted bedrock spoil", "lithology_description": null, "lithology_colour": "09", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199414}}, {"model": "wells.lithologydescription", "pk": "a196eea1-e227-4c8a-8779-f72e5f131237", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, "well_tag_number": 112504, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROWN SILT & CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199333}}, {"model": "wells.lithologydescription", "pk": "a19d4082-2721-4f6f-86bd-5bd88c2d87ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, "well_tag_number": 112355, "lithology_from": "131.00", "lithology_to": "136.00", "lithology_raw_data": "sand/gravel", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198204}}, {"model": "wells.lithologydescription", "pk": "a1a30f49-826a-4c89-8b87-72a71049fc2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "22.00", "lithology_to": "145.00", "lithology_raw_data": "SALT & PEPPER GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197434}}, {"model": "wells.lithologydescription", "pk": "a1a3f887-9333-479c-8b2e-c54f08685f17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198580}}, {"model": "wells.lithologydescription", "pk": "a1b1d805-b387-4b3d-b191-8c979436c348", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:30:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:45Z", "activity_submission": null, "well_tag_number": 112465, "lithology_from": "170.00", "lithology_to": "205.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199010}}, {"model": "wells.lithologydescription", "pk": "a1c94ecb-330f-4cb5-a6c6-2b5ad21db375", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "14.00", "lithology_to": "45.00", "lithology_raw_data": "BROWN/GREY/WHITE, VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198406}}, {"model": "wells.lithologydescription", "pk": "a1d0842a-2aca-4386-97bd-6e4593eff81a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "73.00", "lithology_to": "80.00", "lithology_raw_data": "SILTY CLAY, GRAVEL, SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202684}}, {"model": "wells.lithologydescription", "pk": "a1e9655d-3e9c-40a9-aa6a-cf40782b218a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MINOR CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199950}}, {"model": "wells.lithologydescription", "pk": "a1fc38ea-557b-4a13-a0b7-b45501542c7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200620}}, {"model": "wells.lithologydescription", "pk": "a20c3f75-6e53-4ae7-acc7-1eb0642a80f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-23T19:56:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, "well_tag_number": 112813, "lithology_from": "2.00", "lithology_to": "4.00", "lithology_raw_data": "wood", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201233}}, {"model": "wells.lithologydescription", "pk": "a211f86c-d1e8-45c8-9316-1d0bb55fefc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198564}}, {"model": "wells.lithologydescription", "pk": "a215786b-d019-43f2-8cd7-1b4d1ca2b4d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "14.00", "lithology_to": "39.00", "lithology_raw_data": "COARSE SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201338}}, {"model": "wells.lithologydescription", "pk": "a2160911-e551-4a3d-973b-c7cda9789e9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "428.00", "lithology_to": "432.00", "lithology_raw_data": "Shale soft brown and grey", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203405}}, {"model": "wells.lithologydescription", "pk": "a216dfe2-28f8-4ea1-813c-dae35e5a85ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "211.00", "lithology_to": "215.00", "lithology_raw_data": "W.B. SILTY BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201461}}, {"model": "wells.lithologydescription", "pk": "a21ed31c-b7bc-480c-bb4d-d01524699e95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199993}}, {"model": "wells.lithologydescription", "pk": "a221ea9b-9f64-4a06-b96f-262b593db150", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T13:46:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, "well_tag_number": 112544, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199622}}, {"model": "wells.lithologydescription", "pk": "a22aa50c-6655-4f8f-a933-01d74e13b74e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, "well_tag_number": 112269, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "Back fill, shale and debris", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197610}}, {"model": "wells.lithologydescription", "pk": "a2332051-f96c-46a8-b994-730c7d95a866", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183974}}, {"model": "wells.lithologydescription", "pk": "a235a01f-24e8-495d-abf2-92a8452fe3a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "63.00", "lithology_to": "69.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "with grey limestone ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202812}}, {"model": "wells.lithologydescription", "pk": "a235dff4-96d1-48d8-8250-5eaa1214b231", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well_tag_number": 112391, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198435}}, {"model": "wells.lithologydescription", "pk": "a238b9bd-d415-47b5-a9d9-80886bf7b858", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:38:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, "well_tag_number": 112366, "lithology_from": "12.00", "lithology_to": "60.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198268}}, {"model": "wells.lithologydescription", "pk": "a23bf366-b2ea-463e-a0a4-2a65ccb48c71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": "0.00", "lithology_to": "1.50", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202468}}, {"model": "wells.lithologydescription", "pk": "a244a446-c0c3-4acf-9c43-838b6f3c4a24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "89.00", "lithology_to": "91.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201992}}, {"model": "wells.lithologydescription", "pk": "a249cbfe-7950-4d24-b8a7-debe7d6be3bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "31.00", "lithology_to": "33.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203665}}, {"model": "wells.lithologydescription", "pk": "a264e4dd-01c4-4d13-b307-363f5730ecec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T21:01:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, "well_tag_number": 112831, "lithology_from": "70.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "90' broken", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201366}}, {"model": "wells.lithologydescription", "pk": "a271033b-f9df-4bd1-8ae2-24747103552e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well_tag_number": 112981, "lithology_from": "75.00", "lithology_to": "145.00", "lithology_raw_data": "rock", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202354}}, {"model": "wells.lithologydescription", "pk": "a27bb3f9-3f31-4004-843d-bd1d84bd892e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, CLAY, MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199203}}, {"model": "wells.lithologydescription", "pk": "a27c5cb9-41e6-4775-a022-561aaa08f126", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:50:55Z", "activity_submission": null, "well_tag_number": 112820, "lithology_from": "7.00", "lithology_to": "9.00", "lithology_raw_data": "silty sand and gravels", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201275}}, {"model": "wells.lithologydescription", "pk": "a288390a-0faa-48ab-a05d-a7a3a8cb5d0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well_tag_number": 112599, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199977}}, {"model": "wells.lithologydescription", "pk": "a290b2b7-1523-4575-8ec6-a802ea4d6dc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "51.00", "lithology_to": "57.00", "lithology_raw_data": "HARD PACKED SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200714}}, {"model": "wells.lithologydescription", "pk": "a2937c7b-7c99-4d6f-9da3-8d3339615ad4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well_tag_number": 112238, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197466}}, {"model": "wells.lithologydescription", "pk": "a293d65b-1066-475d-9865-2d5c209919d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": "54.00", "lithology_to": "120.00", "lithology_raw_data": "bedrock, some shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "17", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203103}}, {"model": "wells.lithologydescription", "pk": "a29552b9-777a-412b-b431-9ee061dc9f66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "132.00", "lithology_to": "183.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203784}}, {"model": "wells.lithologydescription", "pk": "a2ad1fc0-be17-4b64-92d6-a32fbd95e5ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well_tag_number": 112587, "lithology_from": "400.00", "lithology_to": "525.00", "lithology_raw_data": "CHANGES IN ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199903}}, {"model": "wells.lithologydescription", "pk": "a2ae70d9-6d14-4f4e-86e3-ed7e1d28f625", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:24Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "358.00", "lithology_to": "359.00", "lithology_raw_data": "MEDIUM-HARD, TURNING BROWNISH SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197931}}, {"model": "wells.lithologydescription", "pk": "a2dc6fc5-0484-45d7-8133-6f9952f7ff0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "90.00", "lithology_to": "105.00", "lithology_raw_data": "gravel", "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201217}}, {"model": "wells.lithologydescription", "pk": "a2fd6ed6-e823-40ff-8eab-b983d85e60bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "339.00", "lithology_to": "341.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201226}}, {"model": "wells.lithologydescription", "pk": "a2ffb020-e1c0-4d3a-ac56-b8baa7aa5885", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "14.00", "lithology_to": "44.00", "lithology_raw_data": "SOFT +; FEW SMALL COBBLES AND GRAVELS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN, GREY; HARDPAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199826}}, {"model": "wells.lithologydescription", "pk": "a3100abf-35d7-4f0e-9e3b-14582a2dc71f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:56Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "SHALE AND FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199492}}, {"model": "wells.lithologydescription", "pk": "a31d8293-2469-42ee-9591-b667d0cd3db4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SANDY CLAY AND STONES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202202}}, {"model": "wells.lithologydescription", "pk": "a320d832-14de-407d-b79e-b23604f85ffb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "171.00", "lithology_to": "255.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK WITH INTERMITTENT MEDIUM BLUE SEAMS OF FELDSPAR", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197423}}, {"model": "wells.lithologydescription", "pk": "a325eace-251e-423c-adca-6ec204872b93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "180.00", "lithology_to": "500.00", "lithology_raw_data": "GRAY & BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "BROKEN UP ROCK @ 430'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201792}}, {"model": "wells.lithologydescription", "pk": "a33e43e0-38bc-4ac7-b817-93ec72fbd6c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "68.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198040}}, {"model": "wells.lithologydescription", "pk": "a33f2ce5-1078-4681-802c-8ea79280e2e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:26:22Z", "activity_submission": null, "well_tag_number": 112787, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CRUSH GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201129}}, {"model": "wells.lithologydescription", "pk": "a33fb5e1-1edf-4d42-aee8-15a8cf194835", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "167.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY, LAYER OF TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202779}}, {"model": "wells.lithologydescription", "pk": "a348264e-80fa-4843-9dea-1deb17770ba3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "422.00", "lithology_to": "431.00", "lithology_raw_data": "SHALE & SILTSTONE WITH SALT & PEPPER LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201500}}, {"model": "wells.lithologydescription", "pk": "a348b2a7-b679-4c20-b48a-5dc1e22a9291", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "250.00", "lithology_to": "263.00", "lithology_raw_data": "RED, FRACTURED VOLCANIC ROCK", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197956}}, {"model": "wells.lithologydescription", "pk": "a34cf751-f119-4b3e-b997-64165cba98d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, "well_tag_number": 112712, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200630}}, {"model": "wells.lithologydescription", "pk": "a3612f5c-abfb-4dfa-8292-64755386033d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:37:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, "well_tag_number": 113243, "lithology_from": "63.00", "lithology_to": "77.00", "lithology_raw_data": "gravel", "lithology_description": "45", "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203790}}, {"model": "wells.lithologydescription", "pk": "a3625063-3461-4152-b823-2f11dbdd3937", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "0.00", "lithology_to": "33.00", "lithology_raw_data": "STIFF CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197893}}, {"model": "wells.lithologydescription", "pk": "a3786792-43ca-4076-9275-a9814846f4c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "605.00", "lithology_to": "612.00", "lithology_raw_data": "FRIABLE", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "STATIC 193.7", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201515}}, {"model": "wells.lithologydescription", "pk": "a3835f6f-dc16-4225-b283-13aef8afae5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:55:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, "well_tag_number": 112446, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198854}}, {"model": "wells.lithologydescription", "pk": "a395d132-0895-4eea-b524-63951c5183af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "51.00", "lithology_to": "58.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197666}}, {"model": "wells.lithologydescription", "pk": "a39df927-2b04-4200-bba1-134c6b3bce7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "60.00", "lithology_to": "85.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202874}}, {"model": "wells.lithologydescription", "pk": "a3a29344-2cf2-4099-b107-b6bb3bc0cb87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:08:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, "well_tag_number": 112293, "lithology_from": "14.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197745}}, {"model": "wells.lithologydescription", "pk": "a3a8ef57-13fc-4a6a-82e3-5cf005aa8768", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well_tag_number": 112467, "lithology_from": "283.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199024}}, {"model": "wells.lithologydescription", "pk": "a3a909c2-9f10-4a6a-8eea-0b715fc99abe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "71.00", "lithology_to": "73.00", "lithology_raw_data": "and gravel", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203700}}, {"model": "wells.lithologydescription", "pk": "a3adbba0-c150-4285-a3e0-fbef0e5026ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199210}}, {"model": "wells.lithologydescription", "pk": "a3baf5eb-47df-4077-bdbe-606fd1892ac3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:57:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, "well_tag_number": 112292, "lithology_from": "65.00", "lithology_to": "75.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197742}}, {"model": "wells.lithologydescription", "pk": "a3cec410-1cde-4d29-8ecd-4064bcfe0397", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "27.00", "lithology_to": "34.00", "lithology_raw_data": "MEDIUM AND FINE SAND, TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FORMATION DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200889}}, {"model": "wells.lithologydescription", "pk": "a3d59106-ec53-4df8-b049-f2f9263953c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well_tag_number": 113271, "lithology_from": "30.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203925}}, {"model": "wells.lithologydescription", "pk": "a3f2c6c7-436b-4e70-a183-ed5e310f1db5", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-11T00:46:54Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T00:46:54Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "265.00", "lithology_to": "270.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201037}}, {"model": "wells.lithologydescription", "pk": "a4044f2b-0503-483c-b520-a6504bc3c276", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SILTY, NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200374}}, {"model": "wells.lithologydescription", "pk": "a419e06a-3784-44b1-b860-37b941203aee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL AND SAND, MEDIUM AND FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199361}}, {"model": "wells.lithologydescription", "pk": "a41d039c-c54b-4ce9-af1c-758d06707c7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T21:02:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, "well_tag_number": 112794, "lithology_from": "3.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CLAY CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201142}}, {"model": "wells.lithologydescription", "pk": "a4258fdc-e818-42a7-8fee-dd2b8aa6fe95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "1.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203191}}, {"model": "wells.lithologydescription", "pk": "a42b963d-ed6f-46ce-82a3-275e6482c5f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "and gravel with black streaks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198745}}, {"model": "wells.lithologydescription", "pk": "a43ad5ba-24ed-46f5-a6ea-28d49a59500e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T12:50:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T12:50:58Z", "activity_submission": null, "well_tag_number": 113124, "lithology_from": "0.00", "lithology_to": "642.00", "lithology_raw_data": "blasted bedrock sand stone", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203111}}, {"model": "wells.lithologydescription", "pk": "a4455315-2561-4708-b954-b6863f3952c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, "well_tag_number": 112756, "lithology_from": "25.00", "lithology_to": "71.00", "lithology_raw_data": "LARGE GRAVEL AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200939}}, {"model": "wells.lithologydescription", "pk": "a452652d-ef69-443a-9199-c05dd2820528", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "25.00", "lithology_to": "62.00", "lithology_raw_data": "SILT CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MUSHY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201107}}, {"model": "wells.lithologydescription", "pk": "a453377c-66a9-4d4c-8ae3-a97aaca54b92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "385.00", "lithology_to": "405.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198519}}, {"model": "wells.lithologydescription", "pk": "a4539610-a6ba-4517-82b1-b664fbc98ca7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "71.00", "lithology_to": "138.00", "lithology_raw_data": "SAND & CLAY & STONES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202200}}, {"model": "wells.lithologydescription", "pk": "a4566323-cf64-48f3-8631-d7fc5fc7a506", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, "well_tag_number": 112249, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197513}}, {"model": "wells.lithologydescription", "pk": "a457ee19-d4be-4c31-94e0-7ceec6eec3e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well_tag_number": 113166, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "cobbles/gravel ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203356}}, {"model": "wells.lithologydescription", "pk": "a45f3255-9bd0-4e69-bf4d-d5324474203e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:22:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:22:00Z", "activity_submission": null, "well_tag_number": 112679, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200477}}, {"model": "wells.lithologydescription", "pk": "a46a04bd-cb09-494a-aae0-28b38b91bc81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:09Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197551}}, {"model": "wells.lithologydescription", "pk": "a46c3116-5999-43c0-a6dd-cc13cc8bb31c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well_tag_number": 112594, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199941}}, {"model": "wells.lithologydescription", "pk": "a46d9826-0341-44b6-ac0c-c59dea937c56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "35.00", "lithology_to": "41.00", "lithology_raw_data": "SHALE AND SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197909}}, {"model": "wells.lithologydescription", "pk": "a47a5ded-2ab6-4f89-86a8-45b6f5097f58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:38:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, "well_tag_number": 112366, "lithology_from": "140.00", "lithology_to": "475.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/PINK, GRANITE GNEISS TYPE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "140-142'=SOFT, WATER, 2 GPM, FRACTURED; 350-375'=MEDIUM/HARD, WATER INCREASED, 5 GPM, FRACTURED; 440-452'=MEDIUM/HARD, WATER INCREASED TO 20 GPM, FRACTURED ZONE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198270}}, {"model": "wells.lithologydescription", "pk": "a4805850-e98b-4b5f-ae02-c44b11652c2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/RED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199028}}, {"model": "wells.lithologydescription", "pk": "a4873859-05af-4d3c-91ad-1cbd7d879235", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well_tag_number": 112738, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200818}}, {"model": "wells.lithologydescription", "pk": "a495c577-2dc5-44af-a5c7-191eec05b62c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203118}}, {"model": "wells.lithologydescription", "pk": "a4a5b2b1-29f6-4fa2-a1ed-1c14f0c831d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "88.00", "lithology_to": "93.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201622}}, {"model": "wells.lithologydescription", "pk": "a4b570fa-3f01-451d-9d71-32d98a838824", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well_tag_number": 112255, "lithology_from": "9.00", "lithology_to": "19.00", "lithology_raw_data": "FINE SAND WITH PEBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197546}}, {"model": "wells.lithologydescription", "pk": "a4bbd5b5-88e9-48f9-9b02-bae34bc92259", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "60.00", "lithology_to": "78.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198499}}, {"model": "wells.lithologydescription", "pk": "a4c0a12d-7bbc-4bdc-8a93-9edc8f4dfdaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "224.00", "lithology_to": "231.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202825}}, {"model": "wells.lithologydescription", "pk": "a4c5baf7-bfd8-4167-8b47-cbc3058aef46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "230.00", "lithology_to": "340.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199869}}, {"model": "wells.lithologydescription", "pk": "a4d87b91-fb35-478c-be80-6de7f587079a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198118}}, {"model": "wells.lithologydescription", "pk": "a4dedbb3-8943-43cb-8656-21671f2e2cce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:15:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, "well_tag_number": 112953, "lithology_from": "34.00", "lithology_to": "39.00", "lithology_raw_data": "SAND & BROKEN ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10-15 USGM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202166}}, {"model": "wells.lithologydescription", "pk": "a4ef26d9-966c-4c60-8534-e9fa5f68af87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201206}}, {"model": "wells.lithologydescription", "pk": "a4fc781f-96fc-41ba-b299-9c8232c8a956", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "21.00", "lithology_to": "30.00", "lithology_raw_data": "BROWN GRAVEL & TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201349}}, {"model": "wells.lithologydescription", "pk": "a5116bc3-2eef-4025-9186-c78233d6804a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "43.00", "lithology_to": "54.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198326}}, {"model": "wells.lithologydescription", "pk": "a51b45a7-9972-4083-a1b7-693c9e11ae59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, "well_tag_number": 113087, "lithology_from": "85.00", "lithology_to": "140.00", "lithology_raw_data": "clay and sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202912}}, {"model": "wells.lithologydescription", "pk": "a5250091-9ba1-49e5-8d54-4522381c1ffa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "784.00", "lithology_to": "802.00", "lithology_raw_data": "& tan volcanic", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202860}}, {"model": "wells.lithologydescription", "pk": "a529e1c2-ba02-4826-8877-6d2c98fe1d70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "320.00", "lithology_to": "331.00", "lithology_raw_data": "MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED @ 324 L.C.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201612}}, {"model": "wells.lithologydescription", "pk": "a5337dff-c798-405b-897a-322272d08da1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-02T21:43:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-02T21:43:35Z", "activity_submission": null, "well_tag_number": 110627, "lithology_from": "0.00", "lithology_to": "44.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 187790}}, {"model": "wells.lithologydescription", "pk": "a5364882-c452-4b92-89e4-dae3a76a92fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "WITH BASALT ZONES, BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199629}}, {"model": "wells.lithologydescription", "pk": "a542daeb-2a08-40a5-a95f-6fcfe1dc569f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "9.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD; DENSE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199147}}, {"model": "wells.lithologydescription", "pk": "a54af279-bb88-481b-ab28-5570216abf24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:52:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, "well_tag_number": 112941, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "SAND & CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202116}}, {"model": "wells.lithologydescription", "pk": "a574427d-14ca-4b73-a469-635972835a7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T17:49:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, "well_tag_number": 112289, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197728}}, {"model": "wells.lithologydescription", "pk": "a575d24d-0a0d-44ce-b638-752657ead03e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "95.00", "lithology_to": "112.00", "lithology_raw_data": "SAND, FINE-MED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197875}}, {"model": "wells.lithologydescription", "pk": "a5790a0e-3cc7-4c47-a14e-aa3634366386", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well_tag_number": 112536, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199564}}, {"model": "wells.lithologydescription", "pk": "a5841cea-3f05-4ae6-bac4-4dca0f8a5d50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "185.00", "lithology_to": "286.00", "lithology_raw_data": "SHALE WITH SOME SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT GREY AND CHOCOLATE BROWN; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200876}}, {"model": "wells.lithologydescription", "pk": "a58b25d4-eac8-4e95-ae17-2df8b3da616e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "230.00", "lithology_to": "245.00", "lithology_raw_data": "SANDSTONE WITH SHALE LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201035}}, {"model": "wells.lithologydescription", "pk": "a58c9229-6943-40a6-835e-d9ee74d03e4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "60.00", "lithology_to": "68.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198646}}, {"model": "wells.lithologydescription", "pk": "a58e3aab-37af-4640-a8b6-6f97b13ed372", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203618}}, {"model": "wells.lithologydescription", "pk": "a59b073f-dbee-45f1-86fa-574da622e9fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, "well_tag_number": 112712, "lithology_from": "8.00", "lithology_to": "9.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200631}}, {"model": "wells.lithologydescription", "pk": "a5a77f32-f282-4721-b557-3a2adef831dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SULPHER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200404}}, {"model": "wells.lithologydescription", "pk": "a5a85a1d-9b63-41c6-8a83-ae72b6a075ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:18:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, "well_tag_number": 112873, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "200.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201727}}, {"model": "wells.lithologydescription", "pk": "a5aa4846-6dc3-4bab-b4e1-f4e211771498", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "120.00", "lithology_to": "167.00", "lithology_raw_data": "BROWN-PINK BROKEN ROCK - MIXED CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202536}}, {"model": "wells.lithologydescription", "pk": "a5dbd09c-ebf9-4003-9a3e-b3c8e7d6b488", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well_tag_number": 112500, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, TILL MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199303}}, {"model": "wells.lithologydescription", "pk": "a5fc2b68-9512-43fd-9588-f2d081ddbedb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:19Z", "activity_submission": null, "well_tag_number": 112774, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201058}}, {"model": "wells.lithologydescription", "pk": "a600a909-38a2-4c0e-ab28-ae2384450ba0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201026}}, {"model": "wells.lithologydescription", "pk": "a61edac1-f7fe-4920-b6f5-db7aa9a236e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, "well_tag_number": 112903, "lithology_from": "97.00", "lithology_to": "111.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201905}}, {"model": "wells.lithologydescription", "pk": "a6441781-54ec-4e9a-9c93-6118ceeca3ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "60.00", "lithology_to": "118.00", "lithology_raw_data": "SILT AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198462}}, {"model": "wells.lithologydescription", "pk": "a65130cd-c94a-4c0d-ad67-f66d388f9e50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "197.00", "lithology_to": "200.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Woody", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197625}}, {"model": "wells.lithologydescription", "pk": "a6779f97-9099-48f4-a5f5-c155a3f4e592", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well_tag_number": 112870, "lithology_from": "100.00", "lithology_to": "304.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201711}}, {"model": "wells.lithologydescription", "pk": "a67f93c5-1b80-423c-b69c-1704dd77de3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "127.00", "lithology_to": "130.00", "lithology_raw_data": "MEDIUM HARD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201532}}, {"model": "wells.lithologydescription", "pk": "a688cae3-b205-403f-b044-f8b2a4f41a82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, "well_tag_number": 112304, "lithology_from": "60.00", "lithology_to": "130.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197800}}, {"model": "wells.lithologydescription", "pk": "a68e9427-12e1-499f-b655-3d0dab9a6a88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "50.00", "lithology_to": "100.00", "lithology_raw_data": "light blue green quartz medium hard rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202579}}, {"model": "wells.lithologydescription", "pk": "a68fbf2f-ae6e-4dd2-b18c-3360b1563ae0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "40.00", "lithology_to": "120.00", "lithology_raw_data": "with quartz", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199038}}, {"model": "wells.lithologydescription", "pk": "a6907ed0-3cd7-4656-9788-e2ea665b1a5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "165.00", "lithology_to": "178.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198294}}, {"model": "wells.lithologydescription", "pk": "a6913bcc-bfdb-4e0c-b462-c5355cfbc4fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well_tag_number": 112845, "lithology_from": "10.00", "lithology_to": "33.00", "lithology_raw_data": "GREY FINE SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201443}}, {"model": "wells.lithologydescription", "pk": "a695b82f-f679-404e-b031-275835b28a93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:31Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "0.00", "lithology_to": "21.00", "lithology_raw_data": "with cobbles", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202315}}, {"model": "wells.lithologydescription", "pk": "a6a1390b-2124-472f-a682-e6f7a6097fe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:44:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, "well_tag_number": 112452, "lithology_from": "70.00", "lithology_to": "78.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198907}}, {"model": "wells.lithologydescription", "pk": "a6a90519-19ac-468c-926b-a55324774284", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:47:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:47:44Z", "activity_submission": null, "well_tag_number": 112376, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198335}}, {"model": "wells.lithologydescription", "pk": "a6b21799-e1f1-4b82-b158-2f453efe0115", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "291.00", "lithology_to": "348.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204084}}, {"model": "wells.lithologydescription", "pk": "a6b744a3-dda7-4fec-9234-71e16cd4746b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "54.00", "lithology_to": "69.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202152}}, {"model": "wells.lithologydescription", "pk": "a6b7ed60-258c-4fb9-8194-93e12a987f99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, "well_tag_number": 112285, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197708}}, {"model": "wells.lithologydescription", "pk": "a6c6ed5c-9fd8-415d-a475-8509919fe95e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "SILT & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201786}}, {"model": "wells.lithologydescription", "pk": "a6c8e495-a86f-495c-b52e-daa92a9eb5ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "20.00", "lithology_to": "32.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200657}}, {"model": "wells.lithologydescription", "pk": "a6cf3c0a-9252-4a2d-88ed-2420b6448ab0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "33.00", "lithology_to": "39.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "water bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203529}}, {"model": "wells.lithologydescription", "pk": "a6d0070a-a810-418a-a2c2-07ef783caae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "49.00", "lithology_to": "55.00", "lithology_raw_data": "dark grey/green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201249}}, {"model": "wells.lithologydescription", "pk": "a6d7488e-2785-4b40-bba2-3e04572c6260", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SAND, ROCKS, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198982}}, {"model": "wells.lithologydescription", "pk": "a6ddbee6-f52d-4499-840d-82b861d70068", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, "well_tag_number": 112406, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TO 50' AND WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198527}}, {"model": "wells.lithologydescription", "pk": "a709dc6a-9ba3-4878-a4ba-0bc82806819a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:35:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:35:31Z", "activity_submission": null, "well_tag_number": 112875, "lithology_from": "18.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201733}}, {"model": "wells.lithologydescription", "pk": "a709fb70-6538-42f9-b33e-34dd3ccd08d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:27:58Z", "activity_submission": null, "well_tag_number": 112712, "lithology_from": "9.00", "lithology_to": "33.00", "lithology_raw_data": "SILTY GREY SAND WITH SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DIRTY; WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200632}}, {"model": "wells.lithologydescription", "pk": "a70cfc69-2730-4ecd-9fa4-a86fcb4ad974", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "260.00", "lithology_to": "360.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198842}}, {"model": "wells.lithologydescription", "pk": "a714a95b-855d-448d-9e1f-6b03d14a0a62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "201.00", "lithology_to": "216.00", "lithology_raw_data": "GRAVEL/FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198720}}, {"model": "wells.lithologydescription", "pk": "a7174c42-63c1-4ec6-85f0-7402dc931617", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "183.00", "lithology_to": "190.00", "lithology_raw_data": "BROWN/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202088}}, {"model": "wells.lithologydescription", "pk": "a745e2ec-4fb0-48db-a122-76f659aa8ccc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198647}}, {"model": "wells.lithologydescription", "pk": "a747a4f7-f3ce-4d54-a8bf-03166dc2ad82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "70.00", "lithology_to": "130.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201390}}, {"model": "wells.lithologydescription", "pk": "a7575823-e073-402d-9611-8e95f215a6be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "280.00", "lithology_to": "290.00", "lithology_raw_data": "COMPRESSED GRAVEL, ANGULAR", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198615}}, {"model": "wells.lithologydescription", "pk": "a75c0dc7-46ae-4c03-b2e8-3df9331bbb01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR CLAY CONTENT", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199914}}, {"model": "wells.lithologydescription", "pk": "a763f829-9f0b-45ba-b263-ca31f6291337", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": "6.00", "lithology_to": "11.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198218}}, {"model": "wells.lithologydescription", "pk": "a76da237-b9ff-4aa3-8ebb-aceecaac5d55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "127.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198863}}, {"model": "wells.lithologydescription", "pk": "a777de28-5a5c-4b50-a076-0bc41b65dd75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well_tag_number": 112258, "lithology_from": "60.00", "lithology_to": "76.00", "lithology_raw_data": "MEDIUM SAND WITH COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20+ USGPM, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197567}}, {"model": "wells.lithologydescription", "pk": "a77b1568-80d9-4820-b010-d09412ef4fda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T23:16:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, "well_tag_number": 100127, "lithology_from": "75.00", "lithology_to": "400.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130144}}, {"model": "wells.lithologydescription", "pk": "a783f0e1-03bc-42a6-a202-fad0e12cf0c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, "well_tag_number": 112264, "lithology_from": "48.00", "lithology_to": "75.00", "lithology_raw_data": "SMALL GRAVEL WITH FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197586}}, {"model": "wells.lithologydescription", "pk": "a7865e8b-89d2-4d5e-882e-829a5765a7ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "80.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199094}}, {"model": "wells.lithologydescription", "pk": "a79e2be3-f7bd-42f7-b7dd-141bd35dae89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "106.00", "lithology_to": "112.00", "lithology_raw_data": "and gravel", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198878}}, {"model": "wells.lithologydescription", "pk": "a7a3b070-2df6-4525-9b9e-f13d2898959a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well_tag_number": 112705, "lithology_from": "135.00", "lithology_to": "182.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200584}}, {"model": "wells.lithologydescription", "pk": "a7a93cd0-73bf-4f6f-8441-a4380458f450", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "FINE, SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200030}}, {"model": "wells.lithologydescription", "pk": "a7bae250-c86a-471a-8ac0-4286b9cd8dd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201979}}, {"model": "wells.lithologydescription", "pk": "a7bebe52-6ff8-4fe0-8489-1905f1dfa6e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "2.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202642}}, {"model": "wells.lithologydescription", "pk": "a7def395-db9d-404e-b414-926eff2f9097", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198973}}, {"model": "wells.lithologydescription", "pk": "a7e48510-87bf-4ac6-9d20-b7f953df9117", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "179.00", "lithology_to": "209.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201436}}, {"model": "wells.lithologydescription", "pk": "a7e632b5-9efc-47a8-8d07-18cd113e52b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, "well_tag_number": 112348, "lithology_from": "56.00", "lithology_to": "57.00", "lithology_raw_data": "sand silt", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198172}}, {"model": "wells.lithologydescription", "pk": "a7fa400a-17e2-4076-ab35-97c7510a4d2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198861}}, {"model": "wells.lithologydescription", "pk": "a80ac1a7-cb95-4cd3-8119-9678bbfce282", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "64.00", "lithology_to": "66.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203698}}, {"model": "wells.lithologydescription", "pk": "a80c31b9-bece-45bd-877e-6be5ab3b0dee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, "well_tag_number": 112760, "lithology_from": "72.00", "lithology_to": "74.00", "lithology_raw_data": "DRY TILL WITH GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200975}}, {"model": "wells.lithologydescription", "pk": "a811d1f4-67d7-499c-ba02-3e25a0339ffd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203636}}, {"model": "wells.lithologydescription", "pk": "a81cd767-4a00-497c-8565-9205bb234ad7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:57:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, "well_tag_number": 112292, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY AND SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197740}}, {"model": "wells.lithologydescription", "pk": "a8346f86-37eb-49eb-bab9-bd787938784e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "14.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203871}}, {"model": "wells.lithologydescription", "pk": "a83d0c8c-a213-415e-8301-3fb7eb18c706", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well_tag_number": 112231, "lithology_from": "28.00", "lithology_to": "190.00", "lithology_raw_data": "BLUE/GREEN VOLCANIC WITH WHITE FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE AT 83 FEET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197430}}, {"model": "wells.lithologydescription", "pk": "a84b533c-8351-4b36-9940-d16bf8b1a1cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, "well_tag_number": 112290, "lithology_from": "70.00", "lithology_to": "85.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "12", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197733}}, {"model": "wells.lithologydescription", "pk": "a84f92a8-a675-4557-abec-efce65599952", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "94.00", "lithology_to": "96.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198951}}, {"model": "wells.lithologydescription", "pk": "a864c317-271c-4578-8832-1b01b7e74db1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "184.00", "lithology_to": "240.00", "lithology_raw_data": "HARDER CONGLOMERATE WITH SOFT FRACTURES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN, GREY AND WHITE; SOFT FRACTURES; UNSTABLE ZONE@202',237'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200816}}, {"model": "wells.lithologydescription", "pk": "a86537f7-c78f-4c40-96b4-86a635527e7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well_tag_number": 112982, "lithology_from": "77.00", "lithology_to": "81.00", "lithology_raw_data": "SILTY SAND, CLAY BALLS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5-6 WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202364}}, {"model": "wells.lithologydescription", "pk": "a87ca249-5e18-4426-8241-cf17dfbb252f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "141.00", "lithology_to": "167.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197621}}, {"model": "wells.lithologydescription", "pk": "a87dd7ff-519f-4e66-856d-ce5501d0954e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "58.00", "lithology_to": "82.00", "lithology_raw_data": "DARK GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "12 GPM, TOO SILTY TO CLEAN UP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197881}}, {"model": "wells.lithologydescription", "pk": "a88887bb-506f-4a85-a43d-8c729bcbeb5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "92.00", "lithology_to": "96.00", "lithology_raw_data": "SLOPPY SAND/CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201166}}, {"model": "wells.lithologydescription", "pk": "a88a09b8-a067-42a5-991c-fd3cb8e91a87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": "21.00", "lithology_to": "27.00", "lithology_raw_data": "broken rock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201189}}, {"model": "wells.lithologydescription", "pk": "a893423d-d29d-45f1-ab55-242123f0f51a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well_tag_number": 112898, "lithology_from": "48.00", "lithology_to": "75.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201882}}, {"model": "wells.lithologydescription", "pk": "a8c15a47-ff48-400e-adb9-b1cf12edcf02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "11.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY AND GRAVEL TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200763}}, {"model": "wells.lithologydescription", "pk": "a8d85d00-1d82-4116-84bc-753e569bdaef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY CLAY, MINOR ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198689}}, {"model": "wells.lithologydescription", "pk": "a8eb9ebc-933d-4b8f-8f9d-468e0fc6d932", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:53:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, "well_tag_number": 113286, "lithology_from": "52.00", "lithology_to": "105.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203976}}, {"model": "wells.lithologydescription", "pk": "a8edf9a4-966d-4ef6-99d6-0fdf7669fd91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, "well_tag_number": 112348, "lithology_from": "5.00", "lithology_to": "39.00", "lithology_raw_data": "gravel sand cobbles", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198169}}, {"model": "wells.lithologydescription", "pk": "a8ee824b-a3b0-4182-ad8b-cb1a1a796bbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, "well_tag_number": 112861, "lithology_from": "28.00", "lithology_to": "40.00", "lithology_raw_data": "WITH GREY SHALE LAYERS", "lithology_description": "72", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201644}}, {"model": "wells.lithologydescription", "pk": "a8f03166-634b-4d04-a8e2-cd4a6312bb6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "140.00", "lithology_to": "173.00", "lithology_raw_data": "BROWNISH & LIGHT & DARK GREY", "lithology_description": "60", "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FINE SANDSTONE LENSES @ 150'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201595}}, {"model": "wells.lithologydescription", "pk": "a8f90f0b-05fe-4d6d-bd54-e7dfdb49efcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:06:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, "well_tag_number": 112744, "lithology_from": "30.00", "lithology_to": "42.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200863}}, {"model": "wells.lithologydescription", "pk": "a91d0021-00fa-45f0-ac52-bf20eaaf19a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "112.00", "lithology_to": "190.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197876}}, {"model": "wells.lithologydescription", "pk": "a91d5582-8bc7-4fdf-aeb8-f69918976521", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "25.00", "lithology_to": "37.00", "lithology_raw_data": "GRAVEL, CLAY, LARGE COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202271}}, {"model": "wells.lithologydescription", "pk": "a924c008-ff90-45f6-b453-4375db448c9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "34.00", "lithology_to": "110.00", "lithology_raw_data": "BROWN SILTY CLAY, SOME SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199344}}, {"model": "wells.lithologydescription", "pk": "a92c6d0d-dbe1-46e6-a6a6-43a16cdc8993", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, "well_tag_number": 112584, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199879}}, {"model": "wells.lithologydescription", "pk": "a92c833d-360b-43af-b8e6-52b065a980c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "large fracture at 230'-245'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202474}}, {"model": "wells.lithologydescription", "pk": "a92fc279-89dc-4521-ab32-30cd2da38cd1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:38:23Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "7.50", "lithology_to": "155.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT GREY, WHITE AND GREEN; DRY; SOLID; SOFT SPOT @ 54' AND 188'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200622}}, {"model": "wells.lithologydescription", "pk": "a9466756-4e17-4b75-8811-87bd150d1a8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, "well_tag_number": 105508, "lithology_from": "23.00", "lithology_to": "37.00", "lithology_raw_data": "SAND MED-COARSE", "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159715}}, {"model": "wells.lithologydescription", "pk": "a9499500-830b-49e1-a404-22f132430ab4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, "well_tag_number": 113262, "lithology_from": "8.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203888}}, {"model": "wells.lithologydescription", "pk": "a94b719c-f5f9-418a-9fea-c90e6931a205", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "276.00", "lithology_to": "356.00", "lithology_raw_data": "GREY/BLACK SAND, SOME GRAVEL - DAMP TO W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200178}}, {"model": "wells.lithologydescription", "pk": "a95835c2-e2bd-417f-9ff6-3d4f93c2f12c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, "well_tag_number": 112235, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197446}}, {"model": "wells.lithologydescription", "pk": "a959d98c-719a-47a7-b416-fb0f3ff7d4b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198969}}, {"model": "wells.lithologydescription", "pk": "a961602e-38ec-4c7f-ac7e-987fab09ca01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well_tag_number": 112308, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "LOAM", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197819}}, {"model": "wells.lithologydescription", "pk": "a965c213-d2a2-4f14-a0a7-b934799859d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, "well_tag_number": 113147, "lithology_from": "7.00", "lithology_to": "156.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 57'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203278}}, {"model": "wells.lithologydescription", "pk": "a96807d7-86f6-415b-99fe-76e46eb5c255", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, "well_tag_number": 113285, "lithology_from": "41.00", "lithology_to": "54.00", "lithology_raw_data": "SAND AND GRAVEL WITH SMALL BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203970}}, {"model": "wells.lithologydescription", "pk": "a96807e9-80f4-4a32-a7fa-1aabdaef7638", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "353.00", "lithology_to": "357.00", "lithology_raw_data": "SS med brownish grey, fractured - making water ", "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203399}}, {"model": "wells.lithologydescription", "pk": "a97b142c-c29b-4516-8058-8aeeb8e4d7b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well_tag_number": 112592, "lithology_from": "60.00", "lithology_to": "110.00", "lithology_raw_data": "COARSE, GRAVEL, FINE, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199931}}, {"model": "wells.lithologydescription", "pk": "a9872a37-8426-4298-ab19-ab38ee224e31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "130.00", "lithology_to": "196.00", "lithology_raw_data": "GREY CLAY WITH SILT LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201451}}, {"model": "wells.lithologydescription", "pk": "a98a3fb3-5560-48ff-a54d-f0516fd4c3f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "358.00", "lithology_to": "383.00", "lithology_raw_data": "fine to medium sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202418}}, {"model": "wells.lithologydescription", "pk": "a98bef0b-edbc-42da-aa37-3d1d76c58522", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well_tag_number": 112862, "lithology_from": "20.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY, SOME TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201648}}, {"model": "wells.lithologydescription", "pk": "a9925e43-cc77-48fb-a839-2f649c75442a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, "well_tag_number": 112937, "lithology_from": "15.00", "lithology_to": "43.00", "lithology_raw_data": "CLAY HITTING BEDROCK VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202092}}, {"model": "wells.lithologydescription", "pk": "a9a2906b-24d7-4426-b636-78553ccd1b88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL WITH ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198553}}, {"model": "wells.lithologydescription", "pk": "a9a29a6f-8a8a-4fe4-a2e3-fa8b574f8a79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199530}}, {"model": "wells.lithologydescription", "pk": "a9aa1b83-7443-4893-9f1a-93cbf126ee00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, "well_tag_number": 112909, "lithology_from": "48.00", "lithology_to": "56.00", "lithology_raw_data": "FINE - MEDIUM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201936}}, {"model": "wells.lithologydescription", "pk": "a9c79c61-43b2-4fbe-853f-efea9b483846", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, "well_tag_number": 113199, "lithology_from": "115.00", "lithology_to": "125.00", "lithology_raw_data": "Conglomerate, soft", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203563}}, {"model": "wells.lithologydescription", "pk": "a9e3d92d-5beb-49f8-8b0d-9b6c03653b4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well_tag_number": 112983, "lithology_from": "78.00", "lithology_to": "88.00", "lithology_raw_data": "looser gravel", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202369}}, {"model": "wells.lithologydescription", "pk": "a9e50d66-9a9b-4a82-98a7-232cb7f4cb75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "338.00", "lithology_to": "360.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200951}}, {"model": "wells.lithologydescription", "pk": "a9e68eff-abbe-42ec-842c-e262866451d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "44.00", "lithology_to": "45.00", "lithology_raw_data": "SANDSTONE FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197918}}, {"model": "wells.lithologydescription", "pk": "a9e79d12-fa72-40ca-b0c4-ab4351d0609b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "94.00", "lithology_to": "117.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198743}}, {"model": "wells.lithologydescription", "pk": "a9e97306-419a-4b26-96a5-626d782dc1d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "22.00", "lithology_to": "27.00", "lithology_raw_data": "BOULDERS AND GRAVEL, SOME SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200888}}, {"model": "wells.lithologydescription", "pk": "a9f05fad-4d2d-4701-9df4-a26ba576861d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:48:45Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=REDDISH BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200463}}, {"model": "wells.lithologydescription", "pk": "aa0226f5-36dc-4919-8087-d97120826262", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201734}}, {"model": "wells.lithologydescription", "pk": "aa060644-9a29-48e2-b8be-d5d44330da11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "89.00", "lithology_to": "100.00", "lithology_raw_data": "RED SEAMS, FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198941}}, {"model": "wells.lithologydescription", "pk": "aa07239b-4a24-4568-a371-1573ab357dc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "208.00", "lithology_to": "268.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202385}}, {"model": "wells.lithologydescription", "pk": "aa2125be-4f3a-4eaf-9f7b-b1fc83500212", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:41:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, "well_tag_number": 112466, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199012}}, {"model": "wells.lithologydescription", "pk": "aa289e78-467e-48bf-be7b-3b2be0f65896", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "37.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200873}}, {"model": "wells.lithologydescription", "pk": "aa2b5d92-2c9a-40d9-acb9-bd2bf3f62774", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199158}}, {"model": "wells.lithologydescription", "pk": "aa2e4e7a-e11c-420a-a608-97c0220eec49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:53:50Z", "activity_submission": null, "well_tag_number": 112228, "lithology_from": "127.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD FRACTURED AREAS WITH TRACES OF GNEISS", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER SYSTEMATICALLY INCREASED TO 20 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197410}}, {"model": "wells.lithologydescription", "pk": "aa4a951a-30ed-47ff-a354-f15659c25234", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199004}}, {"model": "wells.lithologydescription", "pk": "aa4ec87b-4a13-4d3a-b369-9cc0bc38ec48", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "154.00", "lithology_to": "159.00", "lithology_raw_data": "and gravel", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203552}}, {"model": "wells.lithologydescription", "pk": "aa4fb05d-41c9-4f81-98df-bb429a7a4328", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "60.00", "lithology_to": "120.00", "lithology_raw_data": "Shale with layers of soft shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203599}}, {"model": "wells.lithologydescription", "pk": "aa531471-5667-4d04-b8b0-e7102bd0d727", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, "well_tag_number": 113252, "lithology_from": "95.00", "lithology_to": "145.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203815}}, {"model": "wells.lithologydescription", "pk": "aa537dc6-31f1-490a-a01c-bd9d572a995d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, "well_tag_number": 112290, "lithology_from": "85.00", "lithology_to": "97.00", "lithology_raw_data": "FINE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197734}}, {"model": "wells.lithologydescription", "pk": "aa5669e2-d13c-4658-86d0-b938b05df93a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, "well_tag_number": 112913, "lithology_from": "75.00", "lithology_to": "207.00", "lithology_raw_data": "SILT, SAND, CLAY, SOME GRAVEL THIS ZONE WITH A PERCHED TABLE AROUND 115FT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201950}}, {"model": "wells.lithologydescription", "pk": "aa682ce6-d65c-4b2e-ba00-463ab5e7d526", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "73.00", "lithology_to": "120.00", "lithology_raw_data": "WITH SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201637}}, {"model": "wells.lithologydescription", "pk": "aa739853-a2a3-45d0-bfde-dd518271115d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "272.00", "lithology_to": "291.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201878}}, {"model": "wells.lithologydescription", "pk": "aa745036-5dc8-4f66-9b95-7d7016746b33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "170.00", "lithology_to": "172.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199679}}, {"model": "wells.lithologydescription", "pk": "aa82d589-4339-4f41-93b6-1f97a0852db1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "56.00", "lithology_to": "71.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198365}}, {"model": "wells.lithologydescription", "pk": "aa842f38-747a-4d04-b624-e461ce1e0d6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well_tag_number": 112605, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200024}}, {"model": "wells.lithologydescription", "pk": "aa85d847-419e-4406-84f3-4b0cad801f98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": "Sand with Clay/silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203856}}, {"model": "wells.lithologydescription", "pk": "aaa5c3d0-0b62-4489-be79-a68d8413c37a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well_tag_number": 112616, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY, ROCKS AND COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200132}}, {"model": "wells.lithologydescription", "pk": "aaa9752c-ee01-46ed-ad4b-b21912aa250c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "FINE SAND, TRACE SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200979}}, {"model": "wells.lithologydescription", "pk": "aaaac0fd-5298-4ab1-875b-fe5e44888b16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:31Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "21.00", "lithology_to": "38.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202316}}, {"model": "wells.lithologydescription", "pk": "aab03da4-3bf5-47bb-a673-46a0494b7e88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "99.50", "lithology_to": "101.00", "lithology_raw_data": "POSSIBLE BOULDER OF FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200853}}, {"model": "wells.lithologydescription", "pk": "aabb604c-1ede-446a-8ede-4f5358de7e25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "34.00", "lithology_to": "51.00", "lithology_raw_data": "and gravel", "lithology_description": "48", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197665}}, {"model": "wells.lithologydescription", "pk": "aabb7d3d-fb2b-4122-b47e-6fb6db973e95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "81.00", "lithology_to": "88.00", "lithology_raw_data": "SANDSTONE - SALT AND PEPPER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199496}}, {"model": "wells.lithologydescription", "pk": "aac7296e-9bbc-46de-8745-8f845969c17c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "51.00", "lithology_to": "53.00", "lithology_raw_data": "SANDY BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203137}}, {"model": "wells.lithologydescription", "pk": "aac7a162-cfe3-42e3-aa97-ad36999cdc6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL/BROWN/GRAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202080}}, {"model": "wells.lithologydescription", "pk": "aad3ed52-c0ac-47f2-b9af-7e405bbd6d94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:56:02Z", "activity_submission": null, "well_tag_number": 112913, "lithology_from": "275.00", "lithology_to": "295.00", "lithology_raw_data": "COARSE GRAVEL & SMALL AMOUNT MEDIUM SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AIRLIFT\r\nCOLOUR: GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201952}}, {"model": "wells.lithologydescription", "pk": "aad8f284-4d09-44cc-9d65-29148284225b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "7.00", "lithology_to": "43.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202808}}, {"model": "wells.lithologydescription", "pk": "aae29cdc-f6e0-4f7b-9620-1298c1f3cef8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "52.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202198}}, {"model": "wells.lithologydescription", "pk": "aae6d5e9-7c2d-4e0a-b10e-7fbf0d719f70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "14.00", "lithology_to": "260.00", "lithology_raw_data": "SLATE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURES, NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198376}}, {"model": "wells.lithologydescription", "pk": "aae9b190-3a07-4a6c-a2ef-b2a00985c00a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well_tag_number": 112701, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200564}}, {"model": "wells.lithologydescription", "pk": "aaef6c7f-6c51-4bfe-a6a8-41d800fddf3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "52.00", "lithology_to": "55.00", "lithology_raw_data": "VOLCANIC LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199080}}, {"model": "wells.lithologydescription", "pk": "ab27ef4d-5604-4b47-9c4d-fbfc21c0f9b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "77.00", "lithology_to": "79.00", "lithology_raw_data": "chunks", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197656}}, {"model": "wells.lithologydescription", "pk": "ab288ee0-052d-42aa-b0f7-06949d6a80ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; SILTY CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200032}}, {"model": "wells.lithologydescription", "pk": "ab31272f-ba4c-4c9a-b4e6-04e9066e7330", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:16:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, "well_tag_number": 113218, "lithology_from": "15.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203704}}, {"model": "wells.lithologydescription", "pk": "ab494125-20b8-4cb6-9151-b529e7d4eaee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "12.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201106}}, {"model": "wells.lithologydescription", "pk": "ab49963c-aa57-4174-a9f5-a4559a439863", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "194.00", "lithology_to": "273.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "24", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@ 240'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201702}}, {"model": "wells.lithologydescription", "pk": "ab5486c5-9295-430f-8477-e3eb8a61bc81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "69.00", "lithology_to": "82.00", "lithology_raw_data": "clean", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "VERY GOOD WATER PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203798}}, {"model": "wells.lithologydescription", "pk": "ab586c6e-7b10-4fb3-a5fa-a9cd1cf98a29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "120.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201530}}, {"model": "wells.lithologydescription", "pk": "ab646549-e22a-423d-9472-269b2777530a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, "well_tag_number": 112251, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "GRAVELY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197520}}, {"model": "wells.lithologydescription", "pk": "ab6a0f2b-fb13-48be-993e-0aa7a82c08ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202306}}, {"model": "wells.lithologydescription", "pk": "ab6a593e-a724-4b74-a24c-4e340c5e27c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, "well_tag_number": 113206, "lithology_from": "15.00", "lithology_to": "45.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203590}}, {"model": "wells.lithologydescription", "pk": "ab775489-b99d-4e40-be16-79121759793d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, "well_tag_number": 112458, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198958}}, {"model": "wells.lithologydescription", "pk": "ab8008e0-566e-462d-be6d-a995ffc436da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "285.00", "lithology_to": "293.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "28", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203205}}, {"model": "wells.lithologydescription", "pk": "ab896d7b-1404-4754-82e6-46d2e3c9711d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:09:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, "well_tag_number": 112872, "lithology_from": "74.00", "lithology_to": "94.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201723}}, {"model": "wells.lithologydescription", "pk": "ab98e430-2690-48a3-9d94-7bcbe7fad014", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well_tag_number": 113152, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203305}}, {"model": "wells.lithologydescription", "pk": "ab9dc139-0e77-4e9b-9511-258104830cbf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, "well_tag_number": 112760, "lithology_from": "78.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING FRACTURE @ 288'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200978}}, {"model": "wells.lithologydescription", "pk": "aba3d552-f9aa-44c2-aa9f-19c90d1ab4a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, "well_tag_number": 112280, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197691}}, {"model": "wells.lithologydescription", "pk": "aba49809-8958-47a7-b67d-0149a69534ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:31:58Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-15T21:37:17Z", "activity_submission": null, "well_tag_number": 112945, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "42", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202126}}, {"model": "wells.lithologydescription", "pk": "aba76c54-8a05-48a8-b613-ef5604cda883", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": "SANDSTONE, SALT AND PEPPER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199875}}, {"model": "wells.lithologydescription", "pk": "ababeb68-9cf2-4d31-9cea-b36d0dc119f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:29:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, "well_tag_number": 112896, "lithology_from": "1.00", "lithology_to": "28.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201869}}, {"model": "wells.lithologydescription", "pk": "abb427f9-f80f-4ced-b95e-ebc8426d19c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "64.00", "lithology_to": "68.00", "lithology_raw_data": "MEDIUM-SOFT, BROWNISH SANDSTONE (MEDIUM AND FINE)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197995}}, {"model": "wells.lithologydescription", "pk": "abb45412-b305-499a-afcd-0c04f7929e1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:28:58Z", "activity_submission": null, "well_tag_number": 113257, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "Sand with clay/silt (topsoil)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203849}}, {"model": "wells.lithologydescription", "pk": "abd628d0-833b-49a1-b7c6-1b2a55f8c9da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "17.00", "lithology_to": "26.00", "lithology_raw_data": "Grey gravel till, firm", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203463}}, {"model": "wells.lithologydescription", "pk": "abdf87c3-a8a7-4fda-b172-d2b4babde016", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "6.00", "lithology_to": "7.51", "lithology_raw_data": "OL - ORGANIC SOIL, WOOD FRAGMENTS, HUMIC MATERIAL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201069}}, {"model": "wells.lithologydescription", "pk": "abe3b36c-2822-4dd4-98aa-9f6b4d011054", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200028}}, {"model": "wells.lithologydescription", "pk": "ac1537ea-c1b3-407d-9e74-76afc39abfe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "295.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; FRACTURED, WATER BEARING @ 295'; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200708}}, {"model": "wells.lithologydescription", "pk": "ac1631fc-8032-41ea-8960-73ce4670a31e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well_tag_number": 113008, "lithology_from": "24.00", "lithology_to": "29.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "pea gravel", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202479}}, {"model": "wells.lithologydescription", "pk": "ac176840-13e2-44ae-b023-f56832365f20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, "well_tag_number": 112918, "lithology_from": "27.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202012}}, {"model": "wells.lithologydescription", "pk": "ac1786da-3a04-40a1-9ae6-9b2e8120c6d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well_tag_number": 112571, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199780}}, {"model": "wells.lithologydescription", "pk": "ac19ebb7-4951-402b-a586-3276feb4c28b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "8.00", "lithology_to": "19.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198034}}, {"model": "wells.lithologydescription", "pk": "ac1d445d-d1d5-4429-b19b-5221b750afe3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "460.00", "lithology_to": "485.00", "lithology_raw_data": "BLUE/WHITE VOLCANIC WITH SEAMS OF WHITE FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197397}}, {"model": "wells.lithologydescription", "pk": "ac238baa-cba8-49d7-ba12-a8e656c589dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well_tag_number": 112409, "lithology_from": "385.00", "lithology_to": "450.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198540}}, {"model": "wells.lithologydescription", "pk": "ac26dcf8-2f33-4f6f-8b57-61d90fa51530", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Total yield 3.5 USgpm.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203688}}, {"model": "wells.lithologydescription", "pk": "ac27788d-1f01-4ad0-9c67-c87767b4a4ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:50:57Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "292.00", "lithology_to": "297.00", "lithology_raw_data": "VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREY/BROWN/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199897}}, {"model": "wells.lithologydescription", "pk": "ac319e23-ceb4-4650-9c85-8cff027a93b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "205.00", "lithology_to": "285.00", "lithology_raw_data": "GREY/WHITE SILTSONE, OCCASIONALLY WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197979}}, {"model": "wells.lithologydescription", "pk": "ac44f8a6-60a8-4f6b-8b5b-a3a310a92951", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198634}}, {"model": "wells.lithologydescription", "pk": "ac6149ac-78aa-4594-8080-aca41b561b76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "19.00", "lithology_to": "38.00", "lithology_raw_data": "fine sand and gravels", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198752}}, {"model": "wells.lithologydescription", "pk": "ac654f55-502e-4694-9103-8ce522cc16ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "159.00", "lithology_to": "160.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203553}}, {"model": "wells.lithologydescription", "pk": "ac68720b-ce7c-44f8-90a8-a6fbf9faccb6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "1.00", "lithology_to": "8.50", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200389}}, {"model": "wells.lithologydescription", "pk": "ac80effb-f7fa-4f0d-bb39-364fefd5d452", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198844}}, {"model": "wells.lithologydescription", "pk": "ac878c9b-222a-4c0d-98f9-284fcf593655", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:24:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:24:08Z", "activity_submission": null, "well_tag_number": 112691, "lithology_from": "0.00", "lithology_to": "115.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200529}}, {"model": "wells.lithologydescription", "pk": "ac897055-a3a9-4797-bebd-ebac156fc925", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198860}}, {"model": "wells.lithologydescription", "pk": "ac9963da-db00-402a-848b-9fc03c1ce67e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well_tag_number": 112845, "lithology_from": "109.00", "lithology_to": "116.00", "lithology_raw_data": "GREY SILTY CLAYS AND SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201447}}, {"model": "wells.lithologydescription", "pk": "aca96648-84e7-4039-9a7a-abaa6651ef26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "231.00", "lithology_to": "235.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "POSSIBLY MAKING WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199489}}, {"model": "wells.lithologydescription", "pk": "acab667f-1c56-4298-9891-54b6784fd1f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "127.00", "lithology_to": "137.00", "lithology_raw_data": "SILTY TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201330}}, {"model": "wells.lithologydescription", "pk": "acb2a3cb-608b-4484-a67d-a95d3825083f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "iron sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199563}}, {"model": "wells.lithologydescription", "pk": "acb2eaea-3da6-4903-9977-aa15db585f11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "185.00", "lithology_to": "197.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Siltier", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197624}}, {"model": "wells.lithologydescription", "pk": "acc70cd3-a8d0-4698-a365-99ac9ad70001", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "6.00", "lithology_to": "18.00", "lithology_raw_data": "COBBLES, GRAVEL, SMALL BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202269}}, {"model": "wells.lithologydescription", "pk": "acd81f88-4193-483b-b6a8-2909156d7753", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "152.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199003}}, {"model": "wells.lithologydescription", "pk": "acdf8ce0-a7f7-466e-bb5b-d2b83509ebd1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "115.00", "lithology_to": "116.00", "lithology_raw_data": "SILTSTONE & SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201527}}, {"model": "wells.lithologydescription", "pk": "acfbde2b-3651-4698-bbec-57729d661bfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132260}}, {"model": "wells.lithologydescription", "pk": "ad079970-2660-4501-9090-de0d4a69779e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "84.00", "lithology_to": "115.00", "lithology_raw_data": "GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203172}}, {"model": "wells.lithologydescription", "pk": "ad17fac2-c809-4395-a5ca-0515ce1570ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "6.00", "lithology_to": "14.00", "lithology_raw_data": "BROWN/GREY, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WEATHERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198405}}, {"model": "wells.lithologydescription", "pk": "ad1dfabe-3b04-4915-82e1-27ae3c023163", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "400.00", "lithology_to": "520.00", "lithology_raw_data": "BEDROCK LAYERED ZONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199007}}, {"model": "wells.lithologydescription", "pk": "ad22644b-39cf-402d-a89a-a99d29879db8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well_tag_number": 112897, "lithology_from": "140.00", "lithology_to": "148.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201873}}, {"model": "wells.lithologydescription", "pk": "ad25182d-9589-46ca-92b6-62c9d4a33373", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "85.00", "lithology_to": "91.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LITTLE WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201922}}, {"model": "wells.lithologydescription", "pk": "ad26a463-e404-4ef4-a653-a62d0a29fcf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "122.00", "lithology_to": "154.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACKISH GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201044}}, {"model": "wells.lithologydescription", "pk": "ad2719a9-2379-47b2-8674-eb5530b5bd80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, "well_tag_number": 113269, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": "CLAYS AND GRAVEL LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203913}}, {"model": "wells.lithologydescription", "pk": "ad2ddf90-9ecc-4cfe-8b70-8ee2dce8b3fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well_tag_number": 113270, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "rip rap fill", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203917}}, {"model": "wells.lithologydescription", "pk": "ad6338dc-54dc-4f9a-89cd-7c758aad5a36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "205.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201032}}, {"model": "wells.lithologydescription", "pk": "ad6675cf-e23e-42f6-8eb3-d0aae523f402", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "21.00", "lithology_to": "45.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5-10GPM ESTIMATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201863}}, {"model": "wells.lithologydescription", "pk": "ad7145de-a81d-4ac4-91d8-1e4e46a4fdb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T18:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, "well_tag_number": 112283, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197704}}, {"model": "wells.lithologydescription", "pk": "ad7b5185-5318-4683-918d-7898402ed811", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well_tag_number": 113264, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "gravel", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203896}}, {"model": "wells.lithologydescription", "pk": "ad94f1f2-28ba-459c-853c-2d39d0111153", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, "well_tag_number": 112362, "lithology_from": "4.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY, GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198237}}, {"model": "wells.lithologydescription", "pk": "ada2a0d9-916c-4c82-b2ae-8547d8b233b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well_tag_number": 112845, "lithology_from": "57.00", "lithology_to": "76.00", "lithology_raw_data": "GREY RIVER SANDS, SOME WOOD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201445}}, {"model": "wells.lithologydescription", "pk": "ada948ee-ca45-4674-8f00-6350d6bbe15f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:01:58Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:58Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "69.00", "lithology_to": "79.00", "lithology_raw_data": "SAND AND GRAVEL, WB", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172306}}, {"model": "wells.lithologydescription", "pk": "adab9d5a-ea1a-4d29-bf06-82ecac38195a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "390.00", "lithology_to": "397.00", "lithology_raw_data": "GREY/BLUE VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; YIELD=2+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197368}}, {"model": "wells.lithologydescription", "pk": "adb26ab7-d42e-49b6-a06a-143bad6a3a86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:44Z", "activity_submission": null, "well_tag_number": 112693, "lithology_from": "14.00", "lithology_to": "202.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200537}}, {"model": "wells.lithologydescription", "pk": "adb7652f-0116-43d9-bc7e-2eeb79dde244", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, ROCKS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198610}}, {"model": "wells.lithologydescription", "pk": "adb7fb44-19f0-4e9d-bf83-3b30325aa572", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199433}}, {"model": "wells.lithologydescription", "pk": "adb9fb20-67ae-47cc-a1d9-ec6d6ca75dce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:09Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197550}}, {"model": "wells.lithologydescription", "pk": "adbebfad-7151-44ce-a336-06425ea77b02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well_tag_number": 112668, "lithology_from": "110.00", "lithology_to": "153.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200436}}, {"model": "wells.lithologydescription", "pk": "adda52c8-77b7-46c6-a0fe-5123b9654130", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "GRAVEL, CLAYS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199813}}, {"model": "wells.lithologydescription", "pk": "addce0f3-9d9b-45d1-9098-0bbbcecf226f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "697.00", "lithology_to": "784.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "small fracture at 774'/ intermitent quartz layer", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202859}}, {"model": "wells.lithologydescription", "pk": "ae06024b-b05d-4f67-bad4-fcf2f9061208", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:01:29Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:29Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "33.00", "lithology_to": "53.00", "lithology_raw_data": "INTERBEDDED SAND AND CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172304}}, {"model": "wells.lithologydescription", "pk": "ae0885da-6042-4060-98e1-35ba57bc5d69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:36:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, "well_tag_number": 112973, "lithology_from": "2.00", "lithology_to": "12.00", "lithology_raw_data": "CEMENTED GRAVEL WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202297}}, {"model": "wells.lithologydescription", "pk": "ae08b1be-bd79-4f21-a1b8-6f4f09137778", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Installed PVC Liner to 180'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201472}}, {"model": "wells.lithologydescription", "pk": "ae12a426-610b-4392-b09d-f41e6f79f993", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "4.00", "lithology_to": "21.00", "lithology_raw_data": "broken", "lithology_description": "58", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204078}}, {"model": "wells.lithologydescription", "pk": "ae1c7f42-b296-4824-84f0-b32df5d88612", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198510}}, {"model": "wells.lithologydescription", "pk": "ae372f65-5244-4bef-a502-e46af73e5b9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well_tag_number": 113129, "lithology_from": "190.00", "lithology_to": "196.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203154}}, {"model": "wells.lithologydescription", "pk": "ae3c8779-9cb2-426f-a92d-eac7169f3763", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "40.00", "lithology_to": "70.00", "lithology_raw_data": "BADLEY FRACTURED BEDROCK WITH SOME CLAY SEAMS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197838}}, {"model": "wells.lithologydescription", "pk": "ae4020f8-1f07-4b48-9859-2bec7605be21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132521}}, {"model": "wells.lithologydescription", "pk": "ae403ef6-3d2f-4200-bc69-0994cd19b2ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "34.00", "lithology_to": "42.00", "lithology_raw_data": "and cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198324}}, {"model": "wells.lithologydescription", "pk": "ae4b1b6e-5d9e-48ad-a775-a1983ff8fe2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "44.00", "lithology_to": "93.00", "lithology_raw_data": "MEDIUM VOLCANIC WITH WHITE TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199827}}, {"model": "wells.lithologydescription", "pk": "ae4ba234-c864-4d5c-983c-98955f982daf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "53.00", "lithology_to": "64.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203138}}, {"model": "wells.lithologydescription", "pk": "ae53f9a6-0a7c-4d35-bcc0-fb036d8c0f3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, "well_tag_number": 113303, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204048}}, {"model": "wells.lithologydescription", "pk": "ae5cea79-4304-4ea4-a70b-7a9e66156183", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "80.00", "lithology_to": "82.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198965}}, {"model": "wells.lithologydescription", "pk": "ae63dbb3-d90a-4e19-9ecc-10afeaffa457", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "69.00", "lithology_to": "77.00", "lithology_raw_data": "GREY SILTY SAND AND MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200911}}, {"model": "wells.lithologydescription", "pk": "ae7502b1-0c50-43e2-8f2f-643e13b8513d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "4.00", "lithology_to": "6.00", "lithology_raw_data": "granite", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198338}}, {"model": "wells.lithologydescription", "pk": "ae7a83db-8f90-424e-8dd7-fd98d9931e49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "24.00", "lithology_to": "36.00", "lithology_raw_data": "cobbles", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202490}}, {"model": "wells.lithologydescription", "pk": "ae823a33-f445-488b-b877-bd31e6c777de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well_tag_number": 113070, "lithology_from": "44.00", "lithology_to": "46.00", "lithology_raw_data": "VERY FINE, SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202789}}, {"model": "wells.lithologydescription", "pk": "ae8bd5ba-1c9c-42f0-aeb8-c0866b1963ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "38.00", "lithology_to": "47.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198341}}, {"model": "wells.lithologydescription", "pk": "aea28aec-81b5-4a5e-974a-7ef9338f4870", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "113.00", "lithology_to": "119.00", "lithology_raw_data": "SAND WITH PEBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201867}}, {"model": "wells.lithologydescription", "pk": "aead1072-d6d4-481d-9406-bbba9e009319", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "390.00", "lithology_to": "396.00", "lithology_raw_data": "SILTSTONE & SHALE WTIH SALT & PEPPER LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201497}}, {"model": "wells.lithologydescription", "pk": "aeb7c5de-7b32-47a0-adf2-de91e419c3af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200073}}, {"model": "wells.lithologydescription", "pk": "aeb80ee5-cef0-4742-86c7-fb9f2b341d62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "25.00", "lithology_to": "36.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198284}}, {"model": "wells.lithologydescription", "pk": "aeb940f3-e025-410c-bd0d-e1b914b8a8fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "23.00", "lithology_to": "36.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200006}}, {"model": "wells.lithologydescription", "pk": "aebe0bb6-f522-4653-9452-8ce183d6f0e4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-05-30T23:53:24Z", "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:09:43Z", "activity_submission": null, "well_tag_number": 104533, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "200.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 154111}}, {"model": "wells.lithologydescription", "pk": "aedbea25-bc1e-4e04-80bb-ba24a70b72a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "30.00", "lithology_to": "51.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201350}}, {"model": "wells.lithologydescription", "pk": "aedcfcc6-e2e1-42c2-b574-2897c794e980", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, "well_tag_number": 110750, "lithology_from": "62.00", "lithology_to": "260.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURES FROM 248-256", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188531}}, {"model": "wells.lithologydescription", "pk": "aee5fe67-0ad4-4491-a78b-3d8ed4694b10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "80.00", "lithology_to": "94.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY; 90'-94'=FRACTURE, WEATHERED BEDROCK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200100}}, {"model": "wells.lithologydescription", "pk": "aeef2af4-fedb-4497-82eb-c3fc2be6cf5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "230.00", "lithology_to": "245.00", "lithology_raw_data": "COMPETENT BEDROCK, W.B.Q", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200188}}, {"model": "wells.lithologydescription", "pk": "aef75b73-4d3e-4884-98b8-fc1196812cf7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "740.00", "lithology_to": "1140.00", "lithology_raw_data": "green/grey", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "some soft zones from 970' to total depth", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201363}}, {"model": "wells.lithologydescription", "pk": "af36a0f5-7078-4143-847d-026903fb6a43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:09:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, "well_tag_number": 112995, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "09", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202444}}, {"model": "wells.lithologydescription", "pk": "af38b8cc-852c-4e83-9ea4-1bfc61ca2ecc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199549}}, {"model": "wells.lithologydescription", "pk": "af5a5c7c-9f84-4544-9fbb-9b53cfcdf386", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "1.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201337}}, {"model": "wells.lithologydescription", "pk": "af6852d3-29e2-4a2d-8944-6a290f898c41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "77.00", "lithology_to": "81.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200350}}, {"model": "wells.lithologydescription", "pk": "af6cb23b-db5c-4ac3-9490-d688cb951c0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:11Z", "activity_submission": null, "well_tag_number": 112410, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198543}}, {"model": "wells.lithologydescription", "pk": "af75e2f6-ab71-44aa-ae0a-1a376eb8322f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well_tag_number": 112600, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199985}}, {"model": "wells.lithologydescription", "pk": "af7e5362-ad6a-42de-92ca-3ca6978ac544", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198835}}, {"model": "wells.lithologydescription", "pk": "af8ac4d7-48f7-4778-9c7a-debda1849a1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "20.00", "lithology_to": "50.00", "lithology_raw_data": "black green hard rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202578}}, {"model": "wells.lithologydescription", "pk": "af8ee962-2c0f-4974-aef0-b97574ad425f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "159.00", "lithology_to": "172.00", "lithology_raw_data": "GREEN-GREY, SILTY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198023}}, {"model": "wells.lithologydescription", "pk": "af907765-0919-414a-a1a3-c6df9bc2c723", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well_tag_number": 112302, "lithology_from": "255.00", "lithology_to": "335.00", "lithology_raw_data": "W.B. BROWN SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197793}}, {"model": "wells.lithologydescription", "pk": "af93a279-c238-458d-8e33-aeb1290ffbcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "SILT, CLAY & ROCKS, LIGHT BROWN", "lithology_description": null, "lithology_colour": "09", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201828}}, {"model": "wells.lithologydescription", "pk": "af9aa70c-8c5c-435e-8665-3884f11ebae1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "102.00", "lithology_to": "118.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201669}}, {"model": "wells.lithologydescription", "pk": "afa924dc-b351-4985-87a5-c5d16eb88f98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:51Z", "activity_submission": null, "well_tag_number": 112303, "lithology_from": "81.00", "lithology_to": "162.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197798}}, {"model": "wells.lithologydescription", "pk": "afadbc08-5c60-4f25-b213-7a71adfd74bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "400.00", "lithology_to": "436.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200758}}, {"model": "wells.lithologydescription", "pk": "afb329b6-3faa-44d3-afa1-cdec3b80eaca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:14:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, "well_tag_number": 112313, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197847}}, {"model": "wells.lithologydescription", "pk": "afb4ce44-89ae-4055-a383-8ab0b21e41d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, "well_tag_number": 113147, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203277}}, {"model": "wells.lithologydescription", "pk": "afbdfc19-a6fd-48db-aa06-87326c8bad9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199383}}, {"model": "wells.lithologydescription", "pk": "afc36957-4faa-49ce-8432-ab109fa9c33f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well_tag_number": 112984, "lithology_from": "39.00", "lithology_to": "45.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "sand/gravel", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202377}}, {"model": "wells.lithologydescription", "pk": "afcbd2b7-b577-4b29-a05e-d6566393b190", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "971.00", "lithology_to": "973.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "brokien material", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202867}}, {"model": "wells.lithologydescription", "pk": "afd6bc47-0cf1-44bb-8704-a2047ff5a9da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "25.00", "lithology_to": "29.00", "lithology_raw_data": "SAND, GRAVEL, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "4-6", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202393}}, {"model": "wells.lithologydescription", "pk": "afe1ccac-3205-4824-81c0-59daf7521afd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "75.00", "lithology_to": "115.00", "lithology_raw_data": "HARD CLAY WITH GRAVEL", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202256}}, {"model": "wells.lithologydescription", "pk": "afe5c113-9a16-4cf5-8f99-b2b6355bc265", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well_tag_number": 112786, "lithology_from": "12.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201128}}, {"model": "wells.lithologydescription", "pk": "afede156-0d1e-49e2-9adf-12779de4ce1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "237.00", "lithology_to": "245.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200110}}, {"model": "wells.lithologydescription", "pk": "aff009c2-0871-42cd-8845-4c57bf783218", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well_tag_number": 112894, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "SILT & CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201854}}, {"model": "wells.lithologydescription", "pk": "aff25642-3193-4c46-8e44-44ea394f7035", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "325.00", "lithology_to": "387.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRILLED TO 340', DID STATIC CHECK @ 57.3'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201495}}, {"model": "wells.lithologydescription", "pk": "aff5848e-5ca2-4c9c-9abc-f361a1e39e1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "110.00", "lithology_to": "113.00", "lithology_raw_data": "SAND, SILT AND CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198629}}, {"model": "wells.lithologydescription", "pk": "affbece7-fd09-49db-8f14-38316906931e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, "well_tag_number": 112306, "lithology_from": "4.00", "lithology_to": "165.00", "lithology_raw_data": "BEDROCK/GRANITE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197811}}, {"model": "wells.lithologydescription", "pk": "b001f284-e181-47ca-9436-49c2e2696d35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:44:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, "well_tag_number": 112452, "lithology_from": "53.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198906}}, {"model": "wells.lithologydescription", "pk": "b0049729-b681-4a2e-8a8c-516ca79f9b7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well_tag_number": 113301, "lithology_from": "280.00", "lithology_to": "340.00", "lithology_raw_data": "siltstone/shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "black", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204042}}, {"model": "wells.lithologydescription", "pk": "b00c1dda-f438-42be-afc9-d44d2aded3ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well_tag_number": 112616, "lithology_from": "72.00", "lithology_to": "76.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200134}}, {"model": "wells.lithologydescription", "pk": "b021f390-8cf5-40df-87df-b39d6db75f3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "123.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200075}}, {"model": "wells.lithologydescription", "pk": "b027f381-49f5-4173-830b-0111ebff653c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197831}}, {"model": "wells.lithologydescription", "pk": "b02871f7-2455-4403-9dec-dfd5837e7e95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199025}}, {"model": "wells.lithologydescription", "pk": "b068629b-9677-4ad5-bec5-d046041c41e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "210.00", "lithology_to": "217.00", "lithology_raw_data": "BROWN CLAY, SOME SAND, ODD STONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199430}}, {"model": "wells.lithologydescription", "pk": "b06cec70-e860-43cf-b17c-a6ceabc939da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "235.00", "lithology_to": "237.00", "lithology_raw_data": "MEDIUM HARD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201600}}, {"model": "wells.lithologydescription", "pk": "b06f5dc1-8f2b-42ce-9efd-6a5a65b81673", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203076}}, {"model": "wells.lithologydescription", "pk": "b0717d89-f8c9-4c9d-b1e9-82e5eb2cee3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BOULDERS, COARSE SAND, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199267}}, {"model": "wells.lithologydescription", "pk": "b071bcc2-0d77-4fac-a194-ec78af784bf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "42.00", "lithology_to": "46.00", "lithology_raw_data": "SAND, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202236}}, {"model": "wells.lithologydescription", "pk": "b07d5e40-e994-4e1e-ac4c-bfe5ff5852ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "340.00", "lithology_to": "360.00", "lithology_raw_data": "Sandstone tight", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203613}}, {"model": "wells.lithologydescription", "pk": "b07f176c-74e3-470c-b11e-bd5c9eee2160", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "COARSE SAND AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198918}}, {"model": "wells.lithologydescription", "pk": "b09613b1-be83-49cb-9986-11dcd3c9d235", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:44:04Z", "activity_submission": null, "well_tag_number": 113146, "lithology_from": "310.00", "lithology_to": "518.00", "lithology_raw_data": "GREY SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203275}}, {"model": "wells.lithologydescription", "pk": "b0a4805a-145e-4580-a5a7-1fda33dfb648", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": "98.00", "lithology_to": "250.00", "lithology_raw_data": "rock, very hard", "lithology_description": "61", "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "50", "water_bearing_estimated_flow": "0.7500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 180'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202471}}, {"model": "wells.lithologydescription", "pk": "b0a5d3a6-8712-467c-b6d7-a9789afa1d33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:39Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202960}}, {"model": "wells.lithologydescription", "pk": "b0a63b21-9f83-4e08-aa87-fd6fcda83af7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well_tag_number": 113150, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "sand-fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203289}}, {"model": "wells.lithologydescription", "pk": "b0beba40-b074-4438-9edb-51cd322f113b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "47", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197828}}, {"model": "wells.lithologydescription", "pk": "b0c8e504-fe99-4b15-8fa3-6f7f3df73fce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "24.00", "lithology_to": "47.00", "lithology_raw_data": "SILTSTONE, SHALE, BROWN STAINING, ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LAYERED, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201585}}, {"model": "wells.lithologydescription", "pk": "b0c90193-383f-4976-855a-7aeb0e832118", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "107.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132271}}, {"model": "wells.lithologydescription", "pk": "b0c99c97-0f6d-49db-ad2b-3f20cf9f6a0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "0.00", "lithology_to": "150.00", "lithology_raw_data": "CLAY/GRAVELLY SECTIONS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197923}}, {"model": "wells.lithologydescription", "pk": "b0e66d7a-4d73-49a2-9ca0-dc3bd7092d42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:20:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, "well_tag_number": 112763, "lithology_from": "10.00", "lithology_to": "12.50", "lithology_raw_data": "SILTY CLAY, TRACE SAND & GRAVEL. LESS TRACE GRAVEL THAN ABOVE W. INCREASE IN SILT & SAND CONTENT ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; WET; INCREASE IN MOISTURE IN WET POCKETS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201001}}, {"model": "wells.lithologydescription", "pk": "b0ea20e7-ef78-4e3f-9365-519e65df8450", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, "well_tag_number": 112682, "lithology_from": "55.00", "lithology_to": "63.00", "lithology_raw_data": "HARD PAN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200490}}, {"model": "wells.lithologydescription", "pk": "b0fd5f8b-3bc7-49b5-9c53-b549542428a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "164.00", "lithology_to": "177.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203654}}, {"model": "wells.lithologydescription", "pk": "b105444e-ee3e-487b-8311-aa4dc4d4a8ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "440.00", "lithology_to": "515.00", "lithology_raw_data": "BROKEN UNSTABLE FORMATION", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198378}}, {"model": "wells.lithologydescription", "pk": "b1054c6c-e9d1-421d-bfd7-647ff21a2978", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "07", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204013}}, {"model": "wells.lithologydescription", "pk": "b105f8d0-0388-4111-b3db-17986f597dcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well_tag_number": 112959, "lithology_from": "54.00", "lithology_to": "72.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202217}}, {"model": "wells.lithologydescription", "pk": "b10b5e29-1d40-4a80-98e3-44afb6525637", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, "well_tag_number": 112625, "lithology_from": "78.00", "lithology_to": "84.00", "lithology_raw_data": "DIRTY SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200202}}, {"model": "wells.lithologydescription", "pk": "b10c877c-1a43-4c5c-b174-62f82af50166", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "SAND, GRAVEL, TRACES OF CLAY", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199988}}, {"model": "wells.lithologydescription", "pk": "b1131527-0d3b-4034-8f2b-2a2a5bb2c11e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "173.00", "lithology_to": "176.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201596}}, {"model": "wells.lithologydescription", "pk": "b11b61af-72dc-435b-a99b-fdfe1283c3e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:50:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, "well_tag_number": 112611, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200079}}, {"model": "wells.lithologydescription", "pk": "b11b6634-64ee-402b-80fd-cbb52def725b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "101.00", "lithology_to": "111.00", "lithology_raw_data": "medium to coarse grained", "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197619}}, {"model": "wells.lithologydescription", "pk": "b1410464-99a8-4cbd-b057-c71f8928def4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "95.00", "lithology_to": "100.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MORE WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183345}}, {"model": "wells.lithologydescription", "pk": "b14a4f37-31d5-467f-87ba-cc1dad478063", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, "well_tag_number": 112455, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198929}}, {"model": "wells.lithologydescription", "pk": "b154b723-10bf-4e64-8c67-b1e408127270", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "243.00", "lithology_to": "280.00", "lithology_raw_data": "SAND, FINE TO MEDIUM SILT CONTENT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198614}}, {"model": "wells.lithologydescription", "pk": "b156661f-4d47-4265-851a-77d765bf6d95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, "well_tag_number": 110750, "lithology_from": "18.00", "lithology_to": "62.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188530}}, {"model": "wells.lithologydescription", "pk": "b1567b77-b232-4d56-a2ab-09633174d3b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199075}}, {"model": "wells.lithologydescription", "pk": "b1581d78-55af-477c-ba2d-931f3226d4f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "210.00", "lithology_to": "580.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "some white and light green", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201263}}, {"model": "wells.lithologydescription", "pk": "b1621a2c-ac83-4453-b3d8-8934db98db45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "SOFT/HARD, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198588}}, {"model": "wells.lithologydescription", "pk": "b166c229-0fa4-4524-947c-83541cf58952", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well_tag_number": 112983, "lithology_from": "88.00", "lithology_to": "89.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202370}}, {"model": "wells.lithologydescription", "pk": "b16bf9b8-26f8-4d5d-b4c2-706f88edcc86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "280.00", "lithology_to": "282.00", "lithology_raw_data": "GRAVEL WITH FINE SILTY SAND ", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205646}}, {"model": "wells.lithologydescription", "pk": "b16fc549-302f-4e61-bf82-745a820df68f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "1.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203325}}, {"model": "wells.lithologydescription", "pk": "b1766c7b-00de-428c-a0f4-28addc01632d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "80.00", "lithology_to": "300.00", "lithology_raw_data": "SMALL/MEDIUM, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198649}}, {"model": "wells.lithologydescription", "pk": "b1786da9-8823-4182-b3ab-9d95a7bf4de8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "25.00", "lithology_to": "29.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201324}}, {"model": "wells.lithologydescription", "pk": "b17d37b9-a698-4bf8-80dd-086806a2e9b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "153.00", "lithology_to": "155.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199371}}, {"model": "wells.lithologydescription", "pk": "b17fb1b8-3162-4d3a-99e9-f8b08af77bd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "350.00", "lithology_to": "365.00", "lithology_raw_data": "GREEN/GREY/WHITE GRANITE WITH FEW WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198126}}, {"model": "wells.lithologydescription", "pk": "b18dfedc-6668-43f5-95dd-92cd97bf33a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, "well_tag_number": 112373, "lithology_from": "28.00", "lithology_to": "309.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198318}}, {"model": "wells.lithologydescription", "pk": "b19bec8f-dc39-40f1-89ee-69eebac8bdad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198798}}, {"model": "wells.lithologydescription", "pk": "b1bcc3e5-e914-4801-a4f8-ee426c64bd83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:14:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, "well_tag_number": 112714, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SAND AND GRAVEL FILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200639}}, {"model": "wells.lithologydescription", "pk": "b1bf3b59-aa4d-42be-813c-f18168e2ab60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well_tag_number": 111752, "lithology_from": "59.00", "lithology_to": "208.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 194610}}, {"model": "wells.lithologydescription", "pk": "b1c77b40-0872-4875-a542-1dd2f3d92c52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:17:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, "well_tag_number": 112546, "lithology_from": "82.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199638}}, {"model": "wells.lithologydescription", "pk": "b1d74bd6-e59a-4d7e-8a98-bc5edc3c3ccf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199968}}, {"model": "wells.lithologydescription", "pk": "b1e6be3c-8497-4bed-b069-1c7b919e5713", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203237}}, {"model": "wells.lithologydescription", "pk": "b1e79835-c287-4e09-864e-3b55316f0685", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, "well_tag_number": 113025, "lithology_from": "170.00", "lithology_to": "232.00", "lithology_raw_data": "Yellow Clay and Sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202555}}, {"model": "wells.lithologydescription", "pk": "b1e79c08-4ce5-4d19-882e-b020e7c7a49a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "290.00", "lithology_to": "293.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203133}}, {"model": "wells.lithologydescription", "pk": "b2044172-0eb7-42e6-92ee-56803510da59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "28.00", "lithology_to": "37.00", "lithology_raw_data": "trace of gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199045}}, {"model": "wells.lithologydescription", "pk": "b21459e6-2a2b-4881-a67c-0008a3c588f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "250.00", "lithology_to": "260.00", "lithology_raw_data": "GRAVEL, MINOR SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199577}}, {"model": "wells.lithologydescription", "pk": "b21700b8-3105-4e6c-a025-234b29152296", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T17:49:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, "well_tag_number": 112732, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": "SILTY SAND WITH SOME SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200775}}, {"model": "wells.lithologydescription", "pk": "b217735a-6d4c-4bb6-b485-1a555c591df3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, "well_tag_number": 112477, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199121}}, {"model": "wells.lithologydescription", "pk": "b221dc99-401a-424d-a9fd-8b8a41d7a701", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "28.00", "lithology_to": "35.00", "lithology_raw_data": "BROKEN BEDROCK - GRAVEL TYPE RETURN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199847}}, {"model": "wells.lithologydescription", "pk": "b23157af-a7b8-467a-887a-4871a6c3622b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T23:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, "well_tag_number": 112672, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY, GRAVEL, COBBLE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200451}}, {"model": "wells.lithologydescription", "pk": "b234d209-6864-43be-a179-31436db49f6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "82.00", "lithology_to": "97.00", "lithology_raw_data": "LIGHT GREY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201523}}, {"model": "wells.lithologydescription", "pk": "b236a0dd-b867-429a-9712-ffed952e90a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, "well_tag_number": 112412, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "FINE SAND & SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198550}}, {"model": "wells.lithologydescription", "pk": "b2378ca9-fc9a-4ec1-a116-dcdd55fb6b0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "72.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201042}}, {"model": "wells.lithologydescription", "pk": "b26b8c6c-0303-46a1-9905-4b6fdeb2f121", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "3.00", "lithology_to": "22.00", "lithology_raw_data": "TILL & COBBLES, BROWN/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202156}}, {"model": "wells.lithologydescription", "pk": "b2919a1c-cb2d-4091-927e-bc675bf682b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:58:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:58:32Z", "activity_submission": null, "well_tag_number": 112309, "lithology_from": "26.00", "lithology_to": "200.00", "lithology_raw_data": "DARK GREY BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "167'=FRACTURE, 2.5 USGPM; 176'=FRACTURE, 2.5 USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197825}}, {"model": "wells.lithologydescription", "pk": "b2947abe-7638-4fa0-82aa-94980f8921a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "21.00", "lithology_to": "23.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198349}}, {"model": "wells.lithologydescription", "pk": "b2ab188b-2563-47e5-bff8-7325e03055d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "60.00", "lithology_to": "63.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "slight fracture at 62'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202811}}, {"model": "wells.lithologydescription", "pk": "b2b346ac-6b13-4c53-b7ff-c63ea38d811d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "101.00", "lithology_to": "135.00", "lithology_raw_data": "DRY BROWN SAND, LITTLE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203140}}, {"model": "wells.lithologydescription", "pk": "b2b550bb-bf7d-4d31-81a2-fcd0336f9f21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "Brown silty topsoil", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203461}}, {"model": "wells.lithologydescription", "pk": "b2bd3d35-f7e9-4028-9e37-9d8a789f3ef3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "147.00", "lithology_to": "360.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BLUE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199858}}, {"model": "wells.lithologydescription", "pk": "b2c8083b-ae31-4a0a-b39a-9cd05ac9677f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "GREY/BROWN VOLCANIC WITH FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197385}}, {"model": "wells.lithologydescription", "pk": "b2d6cf4e-8d7a-4bed-9d7a-260633c43f3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:00:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, "well_tag_number": 112234, "lithology_from": "35.00", "lithology_to": "47.00", "lithology_raw_data": "SAND/GRAVEL/COBBLES", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197444}}, {"model": "wells.lithologydescription", "pk": "b2e2b62f-05dd-49fd-b0e3-34b162b21b64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well_tag_number": 112616, "lithology_from": "4.00", "lithology_to": "72.00", "lithology_raw_data": "CLAY, ROCKS AND BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200133}}, {"model": "wells.lithologydescription", "pk": "b2e90ed9-d617-42a3-816b-d604e4b097f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198774}}, {"model": "wells.lithologydescription", "pk": "b2f4a52e-8751-4b2e-b550-948bdc42497a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, "well_tag_number": 112535, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "no iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199562}}, {"model": "wells.lithologydescription", "pk": "b2f6a752-31e3-4c51-89a5-8b0f963146d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well_tag_number": 112483, "lithology_from": "80.00", "lithology_to": "92.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199169}}, {"model": "wells.lithologydescription", "pk": "b2f834b4-0981-4e0a-9c21-6ce0dc82303b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:19:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, "well_tag_number": 113006, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202464}}, {"model": "wells.lithologydescription", "pk": "b2f9dbd7-5d5f-4e90-b08e-4165660418bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/HARD CEMENTED GRAVEL AND MEDIUM GRADE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199959}}, {"model": "wells.lithologydescription", "pk": "b303b97f-7a29-44c5-b8c8-be539f6d797d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "60.00", "lithology_to": "71.00", "lithology_raw_data": "with fine sand", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201666}}, {"model": "wells.lithologydescription", "pk": "b304d3f0-b6a3-4d2e-b11b-022f4961b594", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well_tag_number": 112255, "lithology_from": "33.00", "lithology_to": "41.00", "lithology_raw_data": "MEDIUM SAND WITH COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "50+ USGPM; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197549}}, {"model": "wells.lithologydescription", "pk": "b3144eab-d066-48e6-a5ca-cf514d090108", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": " at 190'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201191}}, {"model": "wells.lithologydescription", "pk": "b3160ca4-4a76-44db-8b5d-1d3398313505", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "161.00", "lithology_to": "165.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203827}}, {"model": "wells.lithologydescription", "pk": "b31a83ec-8c1e-443c-90c4-ba71d9ef99f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, "well_tag_number": 112713, "lithology_from": "30.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER GREY AND BLACK SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; CLEANER; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200638}}, {"model": "wells.lithologydescription", "pk": "b3292012-fe5f-44ba-8f08-6dc650c859d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "870.00", "lithology_to": "960.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "soft spots at 886, 898 & 933", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202863}}, {"model": "wells.lithologydescription", "pk": "b32bd4e7-cc04-41e7-9b07-e165e53a2a74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, "well_tag_number": 112565, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY LAYERS, SAND, GRAVEL MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199751}}, {"model": "wells.lithologydescription", "pk": "b33fd0c8-3f4c-4829-b705-f0b63e3f5b3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "374.00", "lithology_to": "421.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; DRY; SOLID; WHITE QUARTZ SEAMS AT 397'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200603}}, {"model": "wells.lithologydescription", "pk": "b3459a55-8e9c-41ae-8751-e0ba42144c2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "19.00", "lithology_to": "67.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203780}}, {"model": "wells.lithologydescription", "pk": "b3468172-cd58-45db-bb41-c3dd99f820d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:39:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, "well_tag_number": 112262, "lithology_from": "18.00", "lithology_to": "22.00", "lithology_raw_data": "LARGE BOULDERS, MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197581}}, {"model": "wells.lithologydescription", "pk": "b34998e9-b983-4821-9987-09981e0d7d21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:27:24Z", "activity_submission": null, "well_tag_number": 112649, "lithology_from": "495.00", "lithology_to": "540.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; 520'=4-8 GPM WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200353}}, {"model": "wells.lithologydescription", "pk": "b35dabeb-5521-4789-9402-a68030680438", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "115.00", "lithology_to": "121.00", "lithology_raw_data": "SILTY FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200996}}, {"model": "wells.lithologydescription", "pk": "b363b5a2-5031-4f66-84b2-962cf53cb474", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, "well_tag_number": 112249, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197515}}, {"model": "wells.lithologydescription", "pk": "b36a6525-5e47-4456-9ee7-d858b1c10047", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "156.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201046}}, {"model": "wells.lithologydescription", "pk": "b375ec65-9238-4981-9715-cfc4d1dcc0cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "225.00", "lithology_to": "239.00", "lithology_raw_data": "MEDIUM TO COARSE SAND AND FINE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200991}}, {"model": "wells.lithologydescription", "pk": "b37838bb-968f-4dd0-82ba-6c96b79e38ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "191.00", "lithology_to": "192.00", "lithology_raw_data": "fractured", "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "20.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202823}}, {"model": "wells.lithologydescription", "pk": "b378c0d0-44fe-4852-b27f-c77a1ebce8f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, "well_tag_number": 112811, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201211}}, {"model": "wells.lithologydescription", "pk": "b37b5ecc-38dc-4035-87cb-424422e611b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well_tag_number": 112341, "lithology_from": "150.00", "lithology_to": "380.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREEN VOLCANIC SEAMS OF GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198115}}, {"model": "wells.lithologydescription", "pk": "b381bf98-a385-4f75-b973-f3dbd4a13f86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198693}}, {"model": "wells.lithologydescription", "pk": "b387ad79-f551-4ab2-b996-ef33ae0f8647", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "13.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132522}}, {"model": "wells.lithologydescription", "pk": "b390b2a7-ba5c-45a4-8ec9-a57aa314bf89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "233.00", "lithology_to": "239.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "with brown volcanic", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202827}}, {"model": "wells.lithologydescription", "pk": "b39e876d-5ab3-4785-9433-4ac4ae06b28b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, "well_tag_number": 112835, "lithology_from": "36.00", "lithology_to": "41.00", "lithology_raw_data": "silty", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "pulled back to 39'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201397}}, {"model": "wells.lithologydescription", "pk": "b3a37ca4-8878-4ac0-8cfa-cb0b51708720", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "176.00", "lithology_to": "204.00", "lithology_raw_data": "FINE SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199428}}, {"model": "wells.lithologydescription", "pk": "b3b275d0-f134-49b8-a737-2043f5b953e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "2.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203294}}, {"model": "wells.lithologydescription", "pk": "b3b44d14-7a23-4c80-ba9d-fdc2560aa531", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "HARD PACKED CLAY WITH SOME GRAVEL AND SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200891}}, {"model": "wells.lithologydescription", "pk": "b3bcffba-64d7-491b-ae05-6730789c8160", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "4.00", "lithology_to": "13.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203837}}, {"model": "wells.lithologydescription", "pk": "b3ca8210-0e6e-4e43-bef5-7cd9015153fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199185}}, {"model": "wells.lithologydescription", "pk": "b3d7e7c7-b423-4cf5-9351-577b9ffb7596", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:47:54Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "186.00", "lithology_to": "225.00", "lithology_raw_data": "Coarse grey sandstone", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "water bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203380}}, {"model": "wells.lithologydescription", "pk": "b3ddc34f-4dbc-4db2-bdf1-12af329879d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199256}}, {"model": "wells.lithologydescription", "pk": "b3fde9bb-89d3-4991-b8ef-9180d731ae4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "85.00", "lithology_to": "122.00", "lithology_raw_data": "GRAVEL WITH A FEW DAMP SEAMS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "A FEW DAMP SEAMS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201043}}, {"model": "wells.lithologydescription", "pk": "b400280b-3966-467f-917f-2297c09819be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "497.00", "lithology_to": "515.00", "lithology_raw_data": "GREY SHALE, SOME WATER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201302}}, {"model": "wells.lithologydescription", "pk": "b4144b76-345d-485e-b29a-9d9f4716009a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "226.00", "lithology_to": "320.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=WHITE/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199791}}, {"model": "wells.lithologydescription", "pk": "b4160bf4-fd4c-48ca-8db3-4e46faac833c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T18:22:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, "well_tag_number": 112532, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "GRAVEL, SILTY, DIRTY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199528}}, {"model": "wells.lithologydescription", "pk": "b416cfa2-ccf4-48a9-93e2-90cd9d7306cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well_tag_number": 112409, "lithology_from": "375.00", "lithology_to": "385.00", "lithology_raw_data": "SILT, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198539}}, {"model": "wells.lithologydescription", "pk": "b41a7550-76bc-480e-8b88-649cb6fa08f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SILTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202717}}, {"model": "wells.lithologydescription", "pk": "b4221102-127f-4f75-8310-2bac282692a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "290.00", "lithology_to": "311.00", "lithology_raw_data": "gravelly till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202415}}, {"model": "wells.lithologydescription", "pk": "b4271955-0946-4c37-852d-f8f933e9ce26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:41:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:38Z", "activity_submission": null, "well_tag_number": 112704, "lithology_from": "34.00", "lithology_to": null, "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200578}}, {"model": "wells.lithologydescription", "pk": "b42a9213-043b-4faf-bbb5-d5cde27b050b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "177.00", "lithology_to": "185.00", "lithology_raw_data": "SMALL ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202039}}, {"model": "wells.lithologydescription", "pk": "b42b4af1-4629-4749-8750-6087ac11dc89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199157}}, {"model": "wells.lithologydescription", "pk": "b43be6f7-106e-409c-82b2-6877dc21461e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "105.00", "lithology_to": "136.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198729}}, {"model": "wells.lithologydescription", "pk": "b43ef604-0e3e-4fa4-a5af-3b5cb00adc6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:02:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, "well_tag_number": 112839, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.3300", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 245'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201411}}, {"model": "wells.lithologydescription", "pk": "b43f36df-827f-4577-b257-1985131f9a0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well_tag_number": 112559, "lithology_from": "102.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199710}}, {"model": "wells.lithologydescription", "pk": "b451d2d5-d7b6-4c12-bdc2-874c9ada82c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:30:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:38Z", "activity_submission": null, "well_tag_number": 113023, "lithology_from": "129.00", "lithology_to": "159.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202550}}, {"model": "wells.lithologydescription", "pk": "b45492ef-1903-4919-925f-3fcc84d31b0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "284.00", "lithology_to": "292.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "wet, welded", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204009}}, {"model": "wells.lithologydescription", "pk": "b457abc1-aeb0-4c9f-8d94-b42ab3d36fe4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "43.00", "lithology_to": "159.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197902}}, {"model": "wells.lithologydescription", "pk": "b45edabc-4d3a-4064-a688-312fe401c80f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T15:40:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T15:40:18Z", "activity_submission": null, "well_tag_number": 112638, "lithology_from": "0.00", "lithology_to": "56.00", "lithology_raw_data": "till/clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200314}}, {"model": "wells.lithologydescription", "pk": "b461bd6d-3800-4906-ae31-4f5d84aa047a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "155.00", "lithology_to": "171.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197999}}, {"model": "wells.lithologydescription", "pk": "b462daba-f574-4c61-9700-25bc22291680", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "388.00", "lithology_to": "394.00", "lithology_raw_data": "SANDSTONE COARSE S&P TO FINE CONGLOMERATE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201553}}, {"model": "wells.lithologydescription", "pk": "b4734558-842f-4c5e-94d2-d9945f265a55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "120.00", "lithology_to": "137.00", "lithology_raw_data": "CEMENTED CLAY/VOLCANIC TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197947}}, {"model": "wells.lithologydescription", "pk": "b4844a5f-5b4e-45e6-a929-51bf5212a3a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198422}}, {"model": "wells.lithologydescription", "pk": "b48e3cee-fb5f-4a35-85d2-9598a0f0a2df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197672}}, {"model": "wells.lithologydescription", "pk": "b48ec97b-7f89-4393-a8de-10085ef9b031", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "22.00", "lithology_to": "26.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198607}}, {"model": "wells.lithologydescription", "pk": "b4a02774-da4a-4cd2-88c3-b1dc13260391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198811}}, {"model": "wells.lithologydescription", "pk": "b4c72bdd-047e-4895-9d6c-13b8edbe26a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD, BOULDERS AND TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198597}}, {"model": "wells.lithologydescription", "pk": "b4dbb05f-4519-482e-a650-faac37b0b35b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, "well_tag_number": 113092, "lithology_from": "48.00", "lithology_to": "55.00", "lithology_raw_data": "cleaner, very sandy", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202935}}, {"model": "wells.lithologydescription", "pk": "b4de79c0-dc1c-46bd-b761-8a4a72a78416", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "819.00", "lithology_to": "829.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203065}}, {"model": "wells.lithologydescription", "pk": "b4dfd481-a248-44f9-8756-8e17de056b68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, "well_tag_number": 112676, "lithology_from": "85.00", "lithology_to": "120.00", "lithology_raw_data": "BLK SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200474}}, {"model": "wells.lithologydescription", "pk": "b4e9bec3-dd62-4125-88a6-b2a089040d8d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:32:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:53Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "46.00", "lithology_to": "66.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200115}}, {"model": "wells.lithologydescription", "pk": "b4ee51cb-fff2-4015-8c6f-35c02b670e81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "170.00", "lithology_to": "220.00", "lithology_raw_data": "GREY/WG VOLCANIC FELDSPAR WITH FEW GREEN AND WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197404}}, {"model": "wells.lithologydescription", "pk": "b4f98a73-9af4-4a00-a380-2be6d90fa471", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well_tag_number": 112994, "lithology_from": "19.00", "lithology_to": "143.00", "lithology_raw_data": null, "lithology_description": "51", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202438}}, {"model": "wells.lithologydescription", "pk": "b50b7685-381a-47bb-8434-f0aa62fe8a5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "31.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198938}}, {"model": "wells.lithologydescription", "pk": "b50f7909-01e6-41d6-bbb0-2fed7fc0c4a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "612.00", "lithology_to": "623.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201516}}, {"model": "wells.lithologydescription", "pk": "b5108dca-9d69-49e3-966a-6c19c14d3d9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "111.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199380}}, {"model": "wells.lithologydescription", "pk": "b517d9ef-add8-4ab3-8822-1461ed833106", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, "well_tag_number": 112286, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197713}}, {"model": "wells.lithologydescription", "pk": "b52a528e-0edf-4abb-96b1-a2173deab334", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "116.00", "lithology_to": "130.00", "lithology_raw_data": "CLAY, THIN LAYER OF WEATHERED SS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201094}}, {"model": "wells.lithologydescription", "pk": "b53231e5-c8d1-4d1c-9f6f-1b307c1129fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "290.00", "lithology_to": "300.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197981}}, {"model": "wells.lithologydescription", "pk": "b5381050-0ac4-4bf5-8876-5bd34e74dac7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197540}}, {"model": "wells.lithologydescription", "pk": "b55605f0-e68b-4f2f-9378-a6ae325221d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "102.00", "lithology_to": "103.00", "lithology_raw_data": "SILTSTONE/SHALE WITH BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201677}}, {"model": "wells.lithologydescription", "pk": "b57053b8-b018-4b5c-a624-9883d3051ba8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "68.00", "lithology_to": "200.00", "lithology_raw_data": "WHITE & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WITH PUMP PROTECTION; FRACTURED @ 184 - 192'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201820}}, {"model": "wells.lithologydescription", "pk": "b588b24c-79b0-4ce3-b1b2-7f5b2bcde2cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "700.00", "lithology_to": "799.00", "lithology_raw_data": "few fractures", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203063}}, {"model": "wells.lithologydescription", "pk": "b5946baf-843f-4205-8eb7-8adb60e3f839", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T00:47:23Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "210.00", "lithology_to": "220.00", "lithology_raw_data": "GREEN/GREY/WHITE GRANITE WITH A FEW WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198124}}, {"model": "wells.lithologydescription", "pk": "b59bf2bb-d4ce-4f33-8ad2-186f322a2749", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:19Z", "activity_submission": null, "well_tag_number": 112774, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BIRDS EYE GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201059}}, {"model": "wells.lithologydescription", "pk": "b5a6cd6a-47a8-43e4-897a-eea7dcef0f02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "44.00", "lithology_to": "64.00", "lithology_raw_data": "and gravel", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203697}}, {"model": "wells.lithologydescription", "pk": "b5ac4912-d86e-4ca8-ac78-e234000c67da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:14:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, "well_tag_number": 112714, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "MEDIUM AND FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200640}}, {"model": "wells.lithologydescription", "pk": "b5acedf8-a2c2-4ee2-b90d-d2072d681f50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:25:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, "well_tag_number": 112874, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201731}}, {"model": "wells.lithologydescription", "pk": "b5b73b08-4a7e-49ba-aa1c-9ca47e200669", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198368}}, {"model": "wells.lithologydescription", "pk": "b5b84e5b-6c6c-4258-b6f9-8e7bd55a332c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "6.00", "lithology_to": "25.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199034}}, {"model": "wells.lithologydescription", "pk": "b5be57ea-a734-4534-bcba-b9be3c262f22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:12:05Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "210.00", "lithology_to": "220.00", "lithology_raw_data": "MEDIUM; GRAVEL, MINOR SAND, MEDIUM-HARD; CEMENTED GRAVEL;", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199538}}, {"model": "wells.lithologydescription", "pk": "b5d38367-066f-4427-a906-353ff310efd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, "well_tag_number": 112683, "lithology_from": "0.00", "lithology_to": "2.50", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200494}}, {"model": "wells.lithologydescription", "pk": "b5e5e910-d162-4c1b-8610-108904043814", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "140.00", "lithology_to": "143.00", "lithology_raw_data": "ANGULAR GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199272}}, {"model": "wells.lithologydescription", "pk": "b5e7f87b-35e2-4998-b314-b3a0f3425251", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "cobbles", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203008}}, {"model": "wells.lithologydescription", "pk": "b5edb653-8001-4e42-a387-7469be9456cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "46.00", "lithology_to": "68.00", "lithology_raw_data": "CEMENTED GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202237}}, {"model": "wells.lithologydescription", "pk": "b5efeaf2-a4c6-4310-8a81-f23af95a41ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203836}}, {"model": "wells.lithologydescription", "pk": "b5f00790-9f11-4a67-ba87-8fb57764614d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, "well_tag_number": 112903, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201903}}, {"model": "wells.lithologydescription", "pk": "b5f07ac8-7ae9-46cc-a8cb-46ad99b14a35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well_tag_number": 112383, "lithology_from": "70.00", "lithology_to": "130.00", "lithology_raw_data": "with quartz lenses", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198394}}, {"model": "wells.lithologydescription", "pk": "b5f541db-2aef-4209-948e-4cb5aa1cb24d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "22.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203240}}, {"model": "wells.lithologydescription", "pk": "b6027aa1-b323-4af6-8a9f-0d4ff5382817", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "293.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199056}}, {"model": "wells.lithologydescription", "pk": "b61478a4-5b74-4d4c-8ebc-295a7a475059", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "300'=1 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198954}}, {"model": "wells.lithologydescription", "pk": "b616fe6d-1bb1-4274-a71d-000c5ceeeb88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, "well_tag_number": 112249, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197514}}, {"model": "wells.lithologydescription", "pk": "b61ad9ad-17a9-4f5f-963c-a8d67a72c4df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, "well_tag_number": 113141, "lithology_from": "67.00", "lithology_to": "71.00", "lithology_raw_data": "WEST GRAVELS AND SILTS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203248}}, {"model": "wells.lithologydescription", "pk": "b61e5b05-50d3-46a1-a67f-c5d6aa7ec5f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well_tag_number": 112609, "lithology_from": "23.00", "lithology_to": "28.00", "lithology_raw_data": null, "lithology_description": "49", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200057}}, {"model": "wells.lithologydescription", "pk": "b644b0da-d316-4a15-be4a-c0c8d177f588", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "31.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203095}}, {"model": "wells.lithologydescription", "pk": "b65129cd-2230-47bf-a189-7238c8573b1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well_tag_number": 112594, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199942}}, {"model": "wells.lithologydescription", "pk": "b6631644-13d6-4444-bb2b-70a33eb917b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "154.00", "lithology_to": "175.00", "lithology_raw_data": "VOLCANIC MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132275}}, {"model": "wells.lithologydescription", "pk": "b673dd9c-a96a-4ed2-a015-b2d5cdd60f45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "284.00", "lithology_to": "295.00", "lithology_raw_data": "W.B. MD/COARSE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203146}}, {"model": "wells.lithologydescription", "pk": "b67fec23-62c7-41f5-9571-54146dfbe1c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "19.00", "lithology_to": "25.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED; SOME SURFACE WATER (1 GPM)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200811}}, {"model": "wells.lithologydescription", "pk": "b6831cf5-d227-4e8a-a926-d3d2e6b85ebb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:12:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, "well_tag_number": 112352, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": "gravel sand few cobbles", "lithology_description": null, "lithology_colour": "13", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198185}}, {"model": "wells.lithologydescription", "pk": "b6887c6d-8359-4d5e-8b08-ead309fdb392", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, "well_tag_number": 112578, "lithology_from": "385.00", "lithology_to": "444.00", "lithology_raw_data": "VOLCANIC WITH TRACES OF WHITE FELDSPAR", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199845}}, {"model": "wells.lithologydescription", "pk": "b68f0924-5a2f-4b3b-bfbd-034acbbec0cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "460.00", "lithology_to": "480.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199293}}, {"model": "wells.lithologydescription", "pk": "b6963e5a-5687-4705-b70e-1e16d28ec8f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well_tag_number": 112622, "lithology_from": "205.00", "lithology_to": "276.00", "lithology_raw_data": "FINE GREY SILTY SANDS, MORE COARSE SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200177}}, {"model": "wells.lithologydescription", "pk": "b69dacd7-2e53-4915-b9c0-5935df179f7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN/GREY/TRACE OF CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202081}}, {"model": "wells.lithologydescription", "pk": "b6a231fa-87a3-4105-8bc8-2e6de272817c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T13:46:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, "well_tag_number": 112544, "lithology_from": "48.00", "lithology_to": "75.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN; DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199624}}, {"model": "wells.lithologydescription", "pk": "b6cbf2a9-826a-47f4-987d-fdecf72b924f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "161.00", "lithology_to": "166.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198762}}, {"model": "wells.lithologydescription", "pk": "b6cfb700-2a25-4b54-abaa-138d85979527", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "195.00", "lithology_to": "205.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201031}}, {"model": "wells.lithologydescription", "pk": "b6df6f5a-31a2-4dab-adf5-ed18893efd0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well_tag_number": 112919, "lithology_from": "40.00", "lithology_to": "89.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202017}}, {"model": "wells.lithologydescription", "pk": "b6eed752-6cfb-47ee-8da1-c25c6f936ba6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:51:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, "well_tag_number": 112437, "lithology_from": "36.00", "lithology_to": "480.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198772}}, {"model": "wells.lithologydescription", "pk": "b6fa0ec9-9196-4cc5-b8c2-4cd4d12d1257", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "109.00", "lithology_to": "135.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203525}}, {"model": "wells.lithologydescription", "pk": "b711e6e4-b9ca-400f-a878-c87c7fda0962", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "SOIL/FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203167}}, {"model": "wells.lithologydescription", "pk": "b71fd3f1-662b-4230-9b4c-6246d89a9d04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, "well_tag_number": 113291, "lithology_from": "3.00", "lithology_to": "78.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203994}}, {"model": "wells.lithologydescription", "pk": "b722ec54-7f71-443f-b3c5-ada4bac36460", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well_tag_number": 112549, "lithology_from": "285.00", "lithology_to": "535.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199653}}, {"model": "wells.lithologydescription", "pk": "b7265685-28d0-461f-b51d-57f44980aaa4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well_tag_number": 112483, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, MINOR SILTY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199166}}, {"model": "wells.lithologydescription", "pk": "b72cb2b3-04e7-4361-8e93-0327c2caebe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "14.00", "lithology_to": "18.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201347}}, {"model": "wells.lithologydescription", "pk": "b72df2b8-52d8-4d57-9912-7b2ede65bd0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:33Z", "activity_submission": null, "well_tag_number": 112861, "lithology_from": "55.00", "lithology_to": "61.00", "lithology_raw_data": "WITH FINE SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201646}}, {"model": "wells.lithologydescription", "pk": "b73b6c9a-7198-4e22-a20b-06efd0d7dc31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY TILL", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201582}}, {"model": "wells.lithologydescription", "pk": "b742a734-7c36-48f5-8c86-cfa9455313a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198846}}, {"model": "wells.lithologydescription", "pk": "b74a6de0-672a-471d-9989-46c231860e01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well_tag_number": 112992, "lithology_from": "85.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL WITH SOME COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202425}}, {"model": "wells.lithologydescription", "pk": "b74ada3a-0cdd-49b5-8658-92ed087f4072", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, "well_tag_number": 112840, "lithology_from": "108.00", "lithology_to": "108.00", "lithology_raw_data": "layers of organic could be coal", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201415}}, {"model": "wells.lithologydescription", "pk": "b74d3389-5ba2-46cd-b587-0b1c2438c08d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "24.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM/HARD, BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198635}}, {"model": "wells.lithologydescription", "pk": "b75352ec-757a-4191-866c-31eda6c5bbed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "157.00", "lithology_to": "166.00", "lithology_raw_data": "DAMP CLAY & SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199347}}, {"model": "wells.lithologydescription", "pk": "b7616527-07f0-4ef4-bf98-b3f1a99b24da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, "well_tag_number": 112885, "lithology_from": "18.00", "lithology_to": "50.00", "lithology_raw_data": "RED & GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201795}}, {"model": "wells.lithologydescription", "pk": "b769fe7d-9690-4bcb-b6e6-276aa96c4960", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "340.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK ASH ZONES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=RED/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199633}}, {"model": "wells.lithologydescription", "pk": "b76f15e5-c3a3-4ddf-be88-f04f25d85da2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "88.00", "lithology_to": "98.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWNISH GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199497}}, {"model": "wells.lithologydescription", "pk": "b76fb877-634f-4400-be5a-3641c6b81d78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T08:17:06Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "245.00", "lithology_to": "275.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED ZONE, WATER INCREASED TO 10 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198428}}, {"model": "wells.lithologydescription", "pk": "b77cbdd6-6e33-4a29-9e5c-b9006018cb3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well_tag_number": 113214, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203676}}, {"model": "wells.lithologydescription", "pk": "b77e4c09-073d-4e1e-9b55-9ce298f68e80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "80.00", "lithology_to": "83.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "09", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201486}}, {"model": "wells.lithologydescription", "pk": "b79d072b-f036-4589-bd6c-e297925ba732", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201969}}, {"model": "wells.lithologydescription", "pk": "b7b6a11f-6897-4ea6-a281-439191504b12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "69.00", "lithology_to": "71.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH SOME GRAVEL LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200722}}, {"model": "wells.lithologydescription", "pk": "b7d24467-eded-4225-9ddc-5f9df66a060f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "438.00", "lithology_to": "440.00", "lithology_raw_data": "Bentonitic grey shale", "lithology_description": "04", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203408}}, {"model": "wells.lithologydescription", "pk": "b7d96a87-90af-4ffa-abeb-b7ae177e8f40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, "well_tag_number": 112304, "lithology_from": "140.00", "lithology_to": "216.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197802}}, {"model": "wells.lithologydescription", "pk": "b7d9b7c3-d5f4-4c94-b17f-a8e1307def0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY AND GRAVEL SEAMS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199156}}, {"model": "wells.lithologydescription", "pk": "b7dc9084-9b4d-430d-867d-5e7d5382acf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "122.00", "lithology_to": "210.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202227}}, {"model": "wells.lithologydescription", "pk": "b7ddcdd8-26fc-4a43-b611-d54a4279b8b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY MIXED WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198637}}, {"model": "wells.lithologydescription", "pk": "b7fb5822-fa33-4e1d-a2d2-0e8beb79d2c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "94.00", "lithology_to": "94.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200101}}, {"model": "wells.lithologydescription", "pk": "b803eaa6-2b07-4560-91bd-1fe462f4ca46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "TILL MINOR ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199087}}, {"model": "wells.lithologydescription", "pk": "b805dfc0-a021-4349-85aa-178ab4852b2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "120.00", "lithology_to": "130.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199725}}, {"model": "wells.lithologydescription", "pk": "b8211403-43f8-4d55-9c40-2f9463726aed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well_tag_number": 112628, "lithology_from": "142.00", "lithology_to": "149.00", "lithology_raw_data": "SAND, GRAVEL W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200284}}, {"model": "wells.lithologydescription", "pk": "b8237548-84cc-481d-81ec-d898c1338ae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203604}}, {"model": "wells.lithologydescription", "pk": "b830934a-29b4-45a9-973e-095fcf37246b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "71.00", "lithology_to": "95.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "VERY FINE GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197874}}, {"model": "wells.lithologydescription", "pk": "b8309556-4eba-4d1a-9b16-ca6ece1c7f7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200605}}, {"model": "wells.lithologydescription", "pk": "b83826a0-4a9c-4759-a5ca-b2d8394a39a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "619.00", "lithology_to": "621.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202856}}, {"model": "wells.lithologydescription", "pk": "b83e94f1-7c7a-46f0-ba6f-05325ae21ebe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "FRACTURED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199635}}, {"model": "wells.lithologydescription", "pk": "b843b49b-9d58-4509-82ec-41cfea2c3884", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "203.00", "lithology_to": "250.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132533}}, {"model": "wells.lithologydescription", "pk": "b844c097-d68a-4537-a9b8-e66db924a8f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well_tag_number": 112994, "lithology_from": "144.00", "lithology_to": "260.00", "lithology_raw_data": null, "lithology_description": "51", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202440}}, {"model": "wells.lithologydescription", "pk": "b847382b-308b-4b03-a42c-cccb6a4e0f2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:44:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, "well_tag_number": 112940, "lithology_from": "60.00", "lithology_to": "65.00", "lithology_raw_data": "SOME SILT", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202113}}, {"model": "wells.lithologydescription", "pk": "b84b74c5-e3b4-4f77-868f-4489259f14f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, "well_tag_number": 112835, "lithology_from": "19.00", "lithology_to": "36.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201396}}, {"model": "wells.lithologydescription", "pk": "b866455e-09b1-469b-afef-0cf59cff8f80", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "220.00", "lithology_to": "350.00", "lithology_raw_data": "GREEN/GREY GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198125}}, {"model": "wells.lithologydescription", "pk": "b8665347-cbe3-4223-bd3a-ae95ce757874", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:12:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, "well_tag_number": 112352, "lithology_from": "50.00", "lithology_to": "92.00", "lithology_raw_data": "gravel sand little clay", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198187}}, {"model": "wells.lithologydescription", "pk": "b86670f3-df9e-42ad-b0c5-d38ede9955c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "88.00", "lithology_to": "112.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203013}}, {"model": "wells.lithologydescription", "pk": "b89d176a-3791-48d2-a24c-4abecc63e721", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "839.00", "lithology_to": "860.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FRACTURE AT 855-860'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203067}}, {"model": "wells.lithologydescription", "pk": "b89d7646-c1eb-4758-b978-4c9e1c4dd885", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": "55.00", "lithology_to": "543.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 160'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202971}}, {"model": "wells.lithologydescription", "pk": "b8a26da3-3cca-43c3-9000-0618d3ece062", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well_tag_number": 113088, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": "broken", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202917}}, {"model": "wells.lithologydescription", "pk": "b8c2277f-0e70-4d5c-b68e-d214232c12ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, "well_tag_number": 112287, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197720}}, {"model": "wells.lithologydescription", "pk": "b8c6f5e4-1443-45d4-add1-c95b90885d02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "116.00", "lithology_to": "117.00", "lithology_raw_data": "S&P, POSSIBLY MW", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201528}}, {"model": "wells.lithologydescription", "pk": "b8e27ff3-1c93-47d6-bbd0-06b569718ab7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "52.00", "lithology_to": "76.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201824}}, {"model": "wells.lithologydescription", "pk": "b8e74523-cde0-4451-bdfa-b8fb3feac8d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "71.00", "lithology_to": "161.00", "lithology_raw_data": "FINE AND MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200723}}, {"model": "wells.lithologydescription", "pk": "b8f56dd2-77a3-40e4-8301-3583121469f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "8.00", "lithology_to": "21.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197590}}, {"model": "wells.lithologydescription", "pk": "b909cc75-ed8e-4c61-baee-6b435da1e67d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "CLAY, ROCKS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198608}}, {"model": "wells.lithologydescription", "pk": "b90b4cb7-2aa3-4425-b8ef-d50cc7674873", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "80.00", "lithology_to": "87.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198922}}, {"model": "wells.lithologydescription", "pk": "b90bd6eb-3f1a-4b0d-8aaf-929c84ffef3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T08:16:14Z", "activity_submission": null, "well_tag_number": 112388, "lithology_from": "215.00", "lithology_to": "245.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, GRANITE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198427}}, {"model": "wells.lithologydescription", "pk": "b90c0cd2-3ad3-4a85-963b-c7b53c50a55b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well_tag_number": 112613, "lithology_from": "110.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200093}}, {"model": "wells.lithologydescription", "pk": "b91f5619-e95a-4bf0-9db3-d8dc997856bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "124.00", "lithology_to": "157.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198903}}, {"model": "wells.lithologydescription", "pk": "b922a914-50f1-497c-9668-ec05a582d1a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "525.00", "lithology_to": "560.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198783}}, {"model": "wells.lithologydescription", "pk": "b9265269-478d-49a2-9570-1c2d3fb9c907", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:27:52Z", "activity_submission": null, "well_tag_number": 112905, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SOIL & CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201916}}, {"model": "wells.lithologydescription", "pk": "b93bc3d0-84d6-402b-9f95-30e552039190", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:01:46Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:46Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "53.00", "lithology_to": "69.00", "lithology_raw_data": "SAND AND GRAVEL, SILTY, HARD PACKED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172305}}, {"model": "wells.lithologydescription", "pk": "b940dc4d-79a7-4286-9929-e496a3120140", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "8.50", "lithology_to": "25.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200390}}, {"model": "wells.lithologydescription", "pk": "b9867fdd-1185-47cd-a35b-aa458af3f529", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "4.00", "lithology_to": "42.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH FEW WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197382}}, {"model": "wells.lithologydescription", "pk": "b9a45c14-c69d-4279-b021-7900ac56d85f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": "43.00", "lithology_to": "345.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203018}}, {"model": "wells.lithologydescription", "pk": "b9b384cc-fc96-4d8e-9986-69f5765d1699", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, "well_tag_number": 112937, "lithology_from": "43.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE @ 65', 90', 100'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202093}}, {"model": "wells.lithologydescription", "pk": "b9b4c55b-b07c-49cb-a606-c1bf49e4142f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "108.00", "lithology_to": "126.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197670}}, {"model": "wells.lithologydescription", "pk": "b9c26f36-3521-4da1-95ef-c2137723c7f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well_tag_number": 112893, "lithology_from": "27.00", "lithology_to": "502.00", "lithology_raw_data": "WHITE/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201852}}, {"model": "wells.lithologydescription", "pk": "b9c3e8fa-8a52-4f9e-bbd4-36c5ea1e937b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "307.00", "lithology_to": "325.00", "lithology_raw_data": "FRIABLE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201494}}, {"model": "wells.lithologydescription", "pk": "b9d593c2-af74-4693-b245-42db3f753547", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, "well_tag_number": 113182, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203457}}, {"model": "wells.lithologydescription", "pk": "b9d6d6ae-cfc8-4676-8b0c-aa481120419a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T07:01:12Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "450.00", "lithology_to": "550.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN, SEAMS OF VOLCANIC GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198420}}, {"model": "wells.lithologydescription", "pk": "b9d7f5ed-d0ab-42fb-8bde-d4b9c40e42d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "93.00", "lithology_to": "102.00", "lithology_raw_data": "GRAVEL WITH BOULDERS & SAND, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201661}}, {"model": "wells.lithologydescription", "pk": "b9d7fc7e-0f35-44a1-be28-7477ff1e60d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:10:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, "well_tag_number": 108027, "lithology_from": "110.00", "lithology_to": "156.00", "lithology_raw_data": "sandstone", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172314}}, {"model": "wells.lithologydescription", "pk": "b9e1b8f9-8777-456f-8e27-020a5c47cf2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "17.00", "lithology_to": "21.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202635}}, {"model": "wells.lithologydescription", "pk": "b9e61715-f92b-48ee-bbcb-cdfec7f0f10e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:15:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, "well_tag_number": 112971, "lithology_from": "21.00", "lithology_to": "44.00", "lithology_raw_data": "MEDIUM SAND, FINE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "60+", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202290}}, {"model": "wells.lithologydescription", "pk": "b9f287aa-2901-44ca-8069-da18ba73f3ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "127.00", "lithology_to": "211.00", "lithology_raw_data": "grey/green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201252}}, {"model": "wells.lithologydescription", "pk": "b9f325db-1c13-48b6-b353-ad4294f3f4c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203881}}, {"model": "wells.lithologydescription", "pk": "ba00c6ff-f26a-4f0c-bdf7-b0871ca74ba9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "40.00", "lithology_to": "92.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203241}}, {"model": "wells.lithologydescription", "pk": "ba00fe8b-b269-4d71-a9f2-6024c9fd80c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "435.00", "lithology_to": "500.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199704}}, {"model": "wells.lithologydescription", "pk": "ba099208-9049-4078-a7f2-a41bdf2178ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well_tag_number": 112750, "lithology_from": "113.00", "lithology_to": "116.00", "lithology_raw_data": "GREY HARD PACKED SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200899}}, {"model": "wells.lithologydescription", "pk": "ba2366e2-ccf4-47c8-99e7-56bf6792fa56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "67.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197645}}, {"model": "wells.lithologydescription", "pk": "ba24ece5-af16-4754-904e-bec3c6ecb5e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:20:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, "well_tag_number": 112763, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "MEDIUM TO STIFF; SILTY CLAY; TRACE SAND, AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; MOIST; MEDIUM PLASTICITY, DENSE, FROZEN TO 1.0M GRAVEL IS 1-2CM AND SUBROUNDED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201000}}, {"model": "wells.lithologydescription", "pk": "ba2cdd72-35f5-44c5-bd77-d86170dae2ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, "well_tag_number": 112290, "lithology_from": "102.00", "lithology_to": "105.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197736}}, {"model": "wells.lithologydescription", "pk": "ba33dbfb-afcd-458b-8104-0fe3149d2e5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "225.00", "lithology_to": "232.00", "lithology_raw_data": "FINE TO MEDIUM COARSE, FRIABLE", "lithology_description": "58", "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LOW PRESSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201598}}, {"model": "wells.lithologydescription", "pk": "ba365552-82e4-4a54-9608-334788996755", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:13:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, "well_tag_number": 112515, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 75'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199394}}, {"model": "wells.lithologydescription", "pk": "ba47b023-b8b2-4aa4-ac40-80401f75e75f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T08:29:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, "well_tag_number": 112731, "lithology_from": "23.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200771}}, {"model": "wells.lithologydescription", "pk": "ba4c99d2-7f45-4447-96c9-e0f6a103ea34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "MEDIUM/HARD; CLAY, SILT, ROCKS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199091}}, {"model": "wells.lithologydescription", "pk": "ba4d89a6-1e80-4418-a094-33effb30ae12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202641}}, {"model": "wells.lithologydescription", "pk": "ba6e872f-4d55-4ec2-9ed8-a280edd22712", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "245.00", "lithology_to": "250.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "15", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201604}}, {"model": "wells.lithologydescription", "pk": "ba965e89-93f1-40be-be9d-ef09b8760b28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "120.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199140}}, {"model": "wells.lithologydescription", "pk": "ba996f78-447d-413c-81d4-3e1db477567d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "123.00", "lithology_to": "163.00", "lithology_raw_data": "HARDPAN", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197421}}, {"model": "wells.lithologydescription", "pk": "baacd929-93d6-426e-944b-658e52be109b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199100}}, {"model": "wells.lithologydescription", "pk": "baae50c4-cc67-4301-bcff-42fe56805927", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "36.00", "lithology_to": "40.00", "lithology_raw_data": "SANDSTONE FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197916}}, {"model": "wells.lithologydescription", "pk": "bab35c90-525c-4256-aa24-c05b1dda8d27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:17Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE/FRACTURED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197941}}, {"model": "wells.lithologydescription", "pk": "babf0fe1-331d-414c-a197-53499406c995", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "98.00", "lithology_to": "104.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WEATHERED/FRACTURED; COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199893}}, {"model": "wells.lithologydescription", "pk": "bac43e28-2f8a-45dd-b811-3b1d6a5c42d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "300.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199113}}, {"model": "wells.lithologydescription", "pk": "bada4337-4b85-42b1-9108-f70fc02d3716", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "45.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201808}}, {"model": "wells.lithologydescription", "pk": "bae5f749-edda-4ef7-bd35-392a46c9401d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, "well_tag_number": 112279, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "HARD PAN COMPACT SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197685}}, {"model": "wells.lithologydescription", "pk": "baf61bb2-f13c-4ce1-af52-0e138c13423c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199570}}, {"model": "wells.lithologydescription", "pk": "baf90b52-d56c-466a-9845-842fff7fd14c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:56:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, "well_tag_number": 112764, "lithology_from": "8.00", "lithology_to": "11.50", "lithology_raw_data": "MEDIUM STIFF; SILTY CLAY - TRACE SAND, AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK, GREYISH BROWN; MOIST; INCREASE IN MOISTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201006}}, {"model": "wells.lithologydescription", "pk": "bb0741b1-1223-4bc1-b691-07ea1ab14405", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:57:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, "well_tag_number": 112961, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY, TOPSOIL, STONES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202228}}, {"model": "wells.lithologydescription", "pk": "bb0b35fa-424f-4413-ada2-dec07f0b2d8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "8.00", "lithology_to": "30.00", "lithology_raw_data": "HARDER GREY CLAYS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203946}}, {"model": "wells.lithologydescription", "pk": "bb0f1c8b-31bc-4de2-9bbe-07e28bd776b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, "well_tag_number": 112797, "lithology_from": "83.60", "lithology_to": "100.00", "lithology_raw_data": "SILTY GRAVEL WITH SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TARGET AQUIFER WHERE WELL SCREEN WAS INSTALLED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201154}}, {"model": "wells.lithologydescription", "pk": "bb29d3a5-fd36-4e64-bb74-8ec25cf67d5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well_tag_number": 113265, "lithology_from": "110.00", "lithology_to": "200.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203909}}, {"model": "wells.lithologydescription", "pk": "bb3f9a8c-c9b4-481a-874a-bcc48b287288", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "163.00", "lithology_to": "203.00", "lithology_raw_data": "CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202208}}, {"model": "wells.lithologydescription", "pk": "bb42ac19-7067-4686-8855-1301c1c34cc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well_tag_number": 112509, "lithology_from": "17.00", "lithology_to": "65.00", "lithology_raw_data": "GRAY SILTY CLAYS & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199352}}, {"model": "wells.lithologydescription", "pk": "bb546d35-4de5-4038-8828-b3336702fee7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:35:46Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "270.00", "lithology_to": "275.00", "lithology_raw_data": "Coarse grey sandstone", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "water bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203382}}, {"model": "wells.lithologydescription", "pk": "bb6bdd4b-1e7b-4048-877f-158e4d040486", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:18:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, "well_tag_number": 112783, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE CHAMBER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201114}}, {"model": "wells.lithologydescription", "pk": "bb78c89c-f91c-4abd-8edc-adef20bbe96f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, "well_tag_number": 113099, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202975}}, {"model": "wells.lithologydescription", "pk": "bb814cc7-32a7-4e3b-ae45-15f168adb79b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:37:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, "well_tag_number": 113243, "lithology_from": "14.00", "lithology_to": "63.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "16", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203789}}, {"model": "wells.lithologydescription", "pk": "bb8d0582-4b04-4d73-bcb4-59e6904a7123", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198829}}, {"model": "wells.lithologydescription", "pk": "bb95b544-0e7b-4c7a-af05-a94468587b90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, "well_tag_number": 112929, "lithology_from": "115.00", "lithology_to": "155.00", "lithology_raw_data": "GRAY/PINK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOME WATER 150-152'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202065}}, {"model": "wells.lithologydescription", "pk": "bb962984-824e-49c5-939e-0238fcb5fab5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-17T03:21:20Z", "activity_submission": null, "well_tag_number": 112478, "lithology_from": "20.00", "lithology_to": "26.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199125}}, {"model": "wells.lithologydescription", "pk": "bb985f92-853b-4c61-9fd1-17ca181f0685", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "10.00", "lithology_to": "60.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202873}}, {"model": "wells.lithologydescription", "pk": "bb9a491b-e7d3-429c-877c-781d0a011f8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:19:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, "well_tag_number": 113006, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "pulled back to 18'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202467}}, {"model": "wells.lithologydescription", "pk": "bbaafbb9-0108-4760-a136-d5b1fb7af1e7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:36:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:36:02Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "142.00", "lithology_to": "150.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200122}}, {"model": "wells.lithologydescription", "pk": "bbadcca7-4827-405a-adae-166cd28b813f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well_tag_number": 112904, "lithology_from": "34.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY SOME SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201909}}, {"model": "wells.lithologydescription", "pk": "bbb97d09-9c40-482e-8265-0f09d16c585d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "44.00", "lithology_to": "51.00", "lithology_raw_data": "DRY COARSE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203136}}, {"model": "wells.lithologydescription", "pk": "bbc12084-4327-4991-a97f-7845ef54952f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": "22.00", "lithology_to": "62.00", "lithology_raw_data": "slaty", "lithology_description": "49", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198220}}, {"model": "wells.lithologydescription", "pk": "bbc52d62-0150-4650-bcce-ff134ec2d611", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "180.00", "lithology_to": "380.00", "lithology_raw_data": "SHALE AND SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198002}}, {"model": "wells.lithologydescription", "pk": "bbd63749-9b3a-4740-8a4f-6aeb21b4929b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "510.00", "lithology_to": "540.00", "lithology_raw_data": "FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200421}}, {"model": "wells.lithologydescription", "pk": "bbd86b36-e554-4d34-ad5f-b0dfaabf329d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": "Sand (till?), some gravel, trace silt, grey-brown, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203507}}, {"model": "wells.lithologydescription", "pk": "bbe3cb57-bce6-449a-9c5e-ace28864ca17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well_tag_number": 112716, "lithology_from": "64.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK WITH SOME CONGLOMERATE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT AND DARK GREY; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200647}}, {"model": "wells.lithologydescription", "pk": "bbe6dd8a-9b42-4954-a978-2641d2339a3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": "ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202937}}, {"model": "wells.lithologydescription", "pk": "bbe80066-fb4d-4d00-89b5-aa664d3e3b89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "0.00", "lithology_to": "58.00", "lithology_raw_data": "clean", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB at 13'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200333}}, {"model": "wells.lithologydescription", "pk": "bbe8ebc5-a74d-4275-8d79-9b9243af210d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:15:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, "well_tag_number": 112971, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "PAVEMENT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202288}}, {"model": "wells.lithologydescription", "pk": "bbf761ce-d006-4489-939e-e368feeee9bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, "well_tag_number": 112798, "lithology_from": "0.00", "lithology_to": "3.30", "lithology_raw_data": "ORGANIC SILTY LOAM", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201156}}, {"model": "wells.lithologydescription", "pk": "bbf947ee-6eb7-4b72-a969-afa0bf7c478d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, "well_tag_number": 112385, "lithology_from": "15.00", "lithology_to": "116.00", "lithology_raw_data": "MEDIUM/HARD, VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198399}}, {"model": "wells.lithologydescription", "pk": "bbfeb8fd-318b-42de-ab29-2300cb86df73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:24:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:24:10Z", "activity_submission": null, "well_tag_number": 112268, "lithology_from": "14.00", "lithology_to": "412.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197609}}, {"model": "wells.lithologydescription", "pk": "bc05c864-f91b-472d-9087-d25414a62fe2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, "well_tag_number": 112417, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198594}}, {"model": "wells.lithologydescription", "pk": "bc115d82-43d8-4680-83e5-f691726b5388", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "113.00", "lithology_to": "115.00", "lithology_raw_data": "CEMENTED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198715}}, {"model": "wells.lithologydescription", "pk": "bc1cf29f-8000-4b2c-ae96-96c39ebe198b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "37.00", "lithology_to": "51.00", "lithology_raw_data": "and silty sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198848}}, {"model": "wells.lithologydescription", "pk": "bc30ce18-4c64-49e5-831e-b385ca6d78dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203637}}, {"model": "wells.lithologydescription", "pk": "bc324a64-5cf4-4cac-9b21-cb1eea2d4711", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-01T20:31:13Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "46.00", "lithology_to": "52.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200801}}, {"model": "wells.lithologydescription", "pk": "bc3eb251-08f3-4170-9c46-001ffa6d3dd7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:15:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, "well_tag_number": 112943, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202123}}, {"model": "wells.lithologydescription", "pk": "bc468507-5ac8-45a1-9892-4c4de0a1b15b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, "well_tag_number": 112333, "lithology_from": "105.00", "lithology_to": "106.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198015}}, {"model": "wells.lithologydescription", "pk": "bc4f6d94-8b23-4cd5-b28a-52c35e5edf13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, "well_tag_number": 112899, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "5 - 10 GPM @ 240'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201889}}, {"model": "wells.lithologydescription", "pk": "bc59fcae-b8ae-4bea-9a42-0862d7d6d0ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well_tag_number": 113180, "lithology_from": "135.00", "lithology_to": "175.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203450}}, {"model": "wells.lithologydescription", "pk": "bc694435-c960-4cfd-bef7-946337b6889e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well_tag_number": 112577, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199838}}, {"model": "wells.lithologydescription", "pk": "bc6df188-9e53-4409-9579-0f269f411677", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:11:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, "well_tag_number": 113203, "lithology_from": "0.00", "lithology_to": "95.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203578}}, {"model": "wells.lithologydescription", "pk": "bc715e15-802e-41a5-af1b-1501058494b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, "well_tag_number": 113288, "lithology_from": "0.00", "lithology_to": "38.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Boulders, dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203977}}, {"model": "wells.lithologydescription", "pk": "bc85d12a-fff7-47a7-a290-606528ab752b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:29:31Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "270.00", "lithology_to": "370.00", "lithology_raw_data": "quartz bedrock", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202590}}, {"model": "wells.lithologydescription", "pk": "bc90c0c4-2f7d-46e1-9aa1-6d7b41ded51b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well_tag_number": 112952, "lithology_from": "194.00", "lithology_to": "197.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202162}}, {"model": "wells.lithologydescription", "pk": "bc968c54-a9b1-4724-9143-c83ef2cbf197", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, "well_tag_number": 112913, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201948}}, {"model": "wells.lithologydescription", "pk": "bca64840-647e-4b21-9a31-a4e79c3f5ba7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, GRAVEL MIXED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200097}}, {"model": "wells.lithologydescription", "pk": "bcacaac4-04ab-4874-a7e9-3805f14ddf14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:44:36Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T17:46:49Z", "activity_submission": null, "well_tag_number": 112664, "lithology_from": "1.00", "lithology_to": "22.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200409}}, {"model": "wells.lithologydescription", "pk": "bcae2ecb-e4bc-4eab-acba-f16fdae36873", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "MEDIUM/HARD, WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198631}}, {"model": "wells.lithologydescription", "pk": "bcb37f2e-b86f-47ae-b30f-f2be6d0e6199", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well_tag_number": 112849, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "48", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SILTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201476}}, {"model": "wells.lithologydescription", "pk": "bcb39e95-9ae8-442f-92cb-8c7be6b27e32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, "well_tag_number": 112297, "lithology_from": "30.00", "lithology_to": "70.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197767}}, {"model": "wells.lithologydescription", "pk": "bcb676ad-767c-45b9-9eaa-77ccc189d6fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:57:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:57:35Z", "activity_submission": null, "well_tag_number": 112642, "lithology_from": "66.00", "lithology_to": "76.00", "lithology_raw_data": null, "lithology_description": "34", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200323}}, {"model": "wells.lithologydescription", "pk": "bcbc4a33-9193-43da-b8a5-5330b819e576", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:20Z", "activity_submission": null, "well_tag_number": 112774, "lithology_from": "9.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BIRDS EYE GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201061}}, {"model": "wells.lithologydescription", "pk": "bcc9b4e4-73b5-4fc6-8438-fbf740c19c7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, "well_tag_number": 113052, "lithology_from": "255.00", "lithology_to": "355.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202670}}, {"model": "wells.lithologydescription", "pk": "bccd21d3-ff8a-457f-860c-5856dac37a22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "208.00", "lithology_to": "210.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203329}}, {"model": "wells.lithologydescription", "pk": "bcdd1e17-b1b3-4abd-a8c6-7473bf1601fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:07:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, "well_tag_number": 112669, "lithology_from": "178.00", "lithology_to": "200.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "11.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "COLOUR=DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200443}}, {"model": "wells.lithologydescription", "pk": "bd053a88-8f9f-4356-ba14-849ecd842009", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T19:28:45Z", "activity_submission": null, "well_tag_number": 112561, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY GRAVEL (63-70) ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199721}}, {"model": "wells.lithologydescription", "pk": "bd06cf96-5be1-4140-a3fb-49b43cc0623f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well_tag_number": 112536, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199568}}, {"model": "wells.lithologydescription", "pk": "bd1269a7-9a2f-45d6-b2ed-8d44c4baf9dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T19:13:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:31Z", "activity_submission": null, "well_tag_number": 113036, "lithology_from": "584.00", "lithology_to": "700.00", "lithology_raw_data": "SANDSTONE, FINE TO MED FRYABLE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202626}}, {"model": "wells.lithologydescription", "pk": "bd14961f-1d29-4c29-a7d6-3bb5df8b476f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "36.00", "lithology_to": "72.00", "lithology_raw_data": "BROWN CLAY, SOME SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197458}}, {"model": "wells.lithologydescription", "pk": "bd14b6c5-c780-4b6d-bcce-a947539f371c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "18.00", "lithology_to": "38.00", "lithology_raw_data": "FINE AND COARSE SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200685}}, {"model": "wells.lithologydescription", "pk": "bd1b8454-7ee2-4b73-916e-f5168b8e14e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "25.00", "lithology_to": "38.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202221}}, {"model": "wells.lithologydescription", "pk": "bd3cc8fe-c784-48cc-88a7-a05c1e3799e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "43.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198601}}, {"model": "wells.lithologydescription", "pk": "bd4096d5-1d67-4fc7-b2c0-cc249934f578", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "DENSE GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "GREY/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199154}}, {"model": "wells.lithologydescription", "pk": "bd567719-b952-4e2b-8eaf-e45c0abd1537", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:13:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, "well_tag_number": 112844, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201438}}, {"model": "wells.lithologydescription", "pk": "bd601783-d25c-4399-ad17-70d9984f5ff1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "2.00", "lithology_to": "11.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200345}}, {"model": "wells.lithologydescription", "pk": "bd6317be-730d-4c00-90f7-633716c97ed6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "29.00", "lithology_to": "95.00", "lithology_raw_data": "COARSE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201325}}, {"model": "wells.lithologydescription", "pk": "bd740c71-5bfe-4c33-93ed-e169d78cef82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "101.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202031}}, {"model": "wells.lithologydescription", "pk": "bd84e2a2-9770-4f10-98e4-6af44b9c5785", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198663}}, {"model": "wells.lithologydescription", "pk": "bd8ba898-3790-4afb-87d5-bb72ff0c7378", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "140.00", "lithology_to": "176.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198474}}, {"model": "wells.lithologydescription", "pk": "bd8c8865-f1d4-4c65-a80d-b16dda55dc0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE @ 224'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201049}}, {"model": "wells.lithologydescription", "pk": "bd991d78-4678-48c4-87fe-b5f4169cd761", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199771}}, {"model": "wells.lithologydescription", "pk": "bdb0d7c9-7a8c-48f6-93ff-7f3f4f500524", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:29:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:29:35Z", "activity_submission": null, "well_tag_number": 112595, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL AND COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199945}}, {"model": "wells.lithologydescription", "pk": "bdb3044e-e70a-4fc8-8306-aa41ca7d8da7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "319.00", "lithology_to": "330.00", "lithology_raw_data": "FINE SILTSTONE WITH SOME SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200836}}, {"model": "wells.lithologydescription", "pk": "bdcd30b2-4074-4a5a-875e-d78547007802", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well_tag_number": 112605, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200022}}, {"model": "wells.lithologydescription", "pk": "bdd583b7-d5d6-4b01-88c2-867638c55236", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200787}}, {"model": "wells.lithologydescription", "pk": "bdf80856-5b3f-4a19-b373-c05ebaa8de9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "100.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": "67", "lithology_colour": "06", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201359}}, {"model": "wells.lithologydescription", "pk": "bdff260e-feb3-4431-a8e0-f2be55838797", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200164}}, {"model": "wells.lithologydescription", "pk": "be03897f-46ad-4bf6-8f29-d209caf447c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199214}}, {"model": "wells.lithologydescription", "pk": "be046be8-a720-429a-a14e-46d13a332dbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, "well_tag_number": 113052, "lithology_from": "95.00", "lithology_to": "245.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202668}}, {"model": "wells.lithologydescription", "pk": "be11a328-618c-487d-b2ef-b17bdaf360c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "168.00", "lithology_to": "173.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MUSHY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201111}}, {"model": "wells.lithologydescription", "pk": "be22b894-737d-45a4-828c-a0f55142c358", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM TO FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199257}}, {"model": "wells.lithologydescription", "pk": "be26c010-7f0b-4c6b-8ba9-49eba54eecbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "226.00", "lithology_to": "245.00", "lithology_raw_data": "W.B. MIXED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201463}}, {"model": "wells.lithologydescription", "pk": "be2b0bd0-cc5d-4c9c-bae0-5100943f054a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "10.00", "lithology_to": "30.00", "lithology_raw_data": "MEDIUM-SOFT; CLAY-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199474}}, {"model": "wells.lithologydescription", "pk": "be2dfa4a-d878-41ce-9ceb-9dce058c490b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, "well_tag_number": 112593, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND, MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199933}}, {"model": "wells.lithologydescription", "pk": "be4c23d1-7de4-4bc3-974b-a3c364a71231", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, "well_tag_number": 113288, "lithology_from": "87.00", "lithology_to": "146.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203980}}, {"model": "wells.lithologydescription", "pk": "be4de9f7-b280-42c4-b013-aeba02e786b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, "well_tag_number": 112795, "lithology_from": "81.00", "lithology_to": "83.30", "lithology_raw_data": "GREY FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201148}}, {"model": "wells.lithologydescription", "pk": "be5b2f7e-a626-4d32-82c7-b1bbfffb3910", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199365}}, {"model": "wells.lithologydescription", "pk": "be89a12e-fd30-426e-9c8d-d6cdca663e74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "72.00", "lithology_to": "130.00", "lithology_raw_data": "FINE BROWN SAND, SILTS & CLAYS, SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197459}}, {"model": "wells.lithologydescription", "pk": "beaca1c8-a363-4531-8aee-a4f1bfcdc7ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "112.00", "lithology_to": "118.00", "lithology_raw_data": "BROWN TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202696}}, {"model": "wells.lithologydescription", "pk": "beb293b2-2ddd-46a9-88ec-e33fc448f687", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "160.00", "lithology_to": "172.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199106}}, {"model": "wells.lithologydescription", "pk": "bec00255-5aee-4983-a4a0-56e74a5b5e6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, "well_tag_number": 112305, "lithology_from": "77.00", "lithology_to": "92.00", "lithology_raw_data": "GRAVEL AND SAND ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197806}}, {"model": "wells.lithologydescription", "pk": "becf684c-ef73-462e-835a-7dfea1897be6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:41:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, "well_tag_number": 112466, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, MINOR, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199011}}, {"model": "wells.lithologydescription", "pk": "befcb3b5-3ed3-417d-8638-0e218d7da9a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "27.00", "lithology_to": "30.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198971}}, {"model": "wells.lithologydescription", "pk": "bf07b596-57aa-4092-ad28-e1f1cdf24a0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well_tag_number": 112273, "lithology_from": "7.00", "lithology_to": "36.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197637}}, {"model": "wells.lithologydescription", "pk": "bf090162-5197-411f-9e62-1301abbf231a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well_tag_number": 112749, "lithology_from": "48.00", "lithology_to": "59.00", "lithology_raw_data": "GRAVEL WITH MORE WATER", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "COLOUR=DARK GREY AND BLACK; WATERBEARING; DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200892}}, {"model": "wells.lithologydescription", "pk": "bf12e9e8-8076-48cf-9a1d-19b2be6aa7b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T19:13:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, "well_tag_number": 112836, "lithology_from": "42.00", "lithology_to": "71.00", "lithology_raw_data": "very clean, tight cobbles", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "very clean", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201400}}, {"model": "wells.lithologydescription", "pk": "bf1977f4-4415-427c-a7b8-3d9e42211f63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "210.00", "lithology_to": "212.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197374}}, {"model": "wells.lithologydescription", "pk": "bf19af72-9083-40ce-b731-89d255dd5cea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "6.00", "lithology_to": "26.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199058}}, {"model": "wells.lithologydescription", "pk": "bf1e9113-e93a-451d-850d-0d0706d07cea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "90.00", "lithology_to": "106.00", "lithology_raw_data": "HARD/LOOSE BOULDER/GRAVELS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197974}}, {"model": "wells.lithologydescription", "pk": "bf37acf7-2466-41d5-bad1-a701bb15d14c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well_tag_number": 112707, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM/SOFT; SOFT GREY, WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200591}}, {"model": "wells.lithologydescription", "pk": "bf47c034-1823-482e-8a9b-a91c5b3b3d0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "233.00", "lithology_to": "276.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197897}}, {"model": "wells.lithologydescription", "pk": "bf4b7237-82f9-49be-99a3-017942d38649", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well_tag_number": 112409, "lithology_from": "280.00", "lithology_to": "375.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "HIGH PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198538}}, {"model": "wells.lithologydescription", "pk": "bf72013b-478e-4118-adb9-d52a2396019a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": "SILTST MED HARD", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143908}}, {"model": "wells.lithologydescription", "pk": "bf757b67-99e8-481d-9b50-2e77031c345e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well_tag_number": 113143, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water Source", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203258}}, {"model": "wells.lithologydescription", "pk": "bf7d4bcc-3e05-447d-94fa-7835a0eadf63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199884}}, {"model": "wells.lithologydescription", "pk": "bf9c4ba8-c0e7-4e3f-92e7-46d7be79df36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "800.00", "lithology_to": "820.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203630}}, {"model": "wells.lithologydescription", "pk": "bfa3fa49-32c0-4dce-9a18-49813f41bb2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well_tag_number": 112549, "lithology_from": "280.00", "lithology_to": "285.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199652}}, {"model": "wells.lithologydescription", "pk": "bfb98a61-4f82-4a54-badb-60b061549c0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well_tag_number": 112550, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199662}}, {"model": "wells.lithologydescription", "pk": "bfc02acb-5436-4b0d-9242-9bacaf9ff685", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, SILT, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198909}}, {"model": "wells.lithologydescription", "pk": "bfcd7880-b2d3-4c59-a9ce-851d528f5b94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "241.00", "lithology_to": "252.00", "lithology_raw_data": "and gravels", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203662}}, {"model": "wells.lithologydescription", "pk": "bfe20ec2-b34e-4619-967d-dbeeeb2d5036", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 300'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201193}}, {"model": "wells.lithologydescription", "pk": "bfe7f319-9fcb-4622-9c44-f36b8bbdd056", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, "well_tag_number": 112586, "lithology_from": "297.00", "lithology_to": "325.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199898}}, {"model": "wells.lithologydescription", "pk": "bff1280e-e4fa-48a5-a568-e4b10fdee109", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "9.00", "lithology_to": "11.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198253}}, {"model": "wells.lithologydescription", "pk": "bff23b9e-bdb7-4143-8d04-f08438274396", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "40.00", "lithology_to": "47.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198699}}, {"model": "wells.lithologydescription", "pk": "bff8cc25-adcb-4c94-8c33-d3e7c057f640", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "180.00", "lithology_to": "231.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203125}}, {"model": "wells.lithologydescription", "pk": "bffb7524-0cf6-40de-b41e-c16be57c8bcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "380.00", "lithology_to": "391.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198003}}, {"model": "wells.lithologydescription", "pk": "c00006e1-e253-4d9d-a489-1a6d7dfa1806", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "71.00", "lithology_to": "187.00", "lithology_raw_data": "VERY HARD AND DENSE; CLAY (CASING TIGHT)", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED; DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200670}}, {"model": "wells.lithologydescription", "pk": "c005c6e1-975b-467f-80ac-228fc24e6357", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "2.00", "lithology_to": "12.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201260}}, {"model": "wells.lithologydescription", "pk": "c00fe15d-94e4-4dca-96a4-d9aba38e368c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well_tag_number": 112992, "lithology_from": "19.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202423}}, {"model": "wells.lithologydescription", "pk": "c019024f-6b2c-4c1e-af99-2cb829a9952c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BOULDERS AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199955}}, {"model": "wells.lithologydescription", "pk": "c0468129-6501-42c4-911d-93f09dcf7ef2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well_tag_number": 113188, "lithology_from": "97.00", "lithology_to": "155.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "water bearing fractures 115' to 125', 135' to 145'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203499}}, {"model": "wells.lithologydescription", "pk": "c04b2585-467e-415b-8cdd-f2ba33dc998c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "204.00", "lithology_to": "208.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash - tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198764}}, {"model": "wells.lithologydescription", "pk": "c0539241-50f1-422f-9a88-45749b6cc6a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "33.00", "lithology_to": "54.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199062}}, {"model": "wells.lithologydescription", "pk": "c05b756f-8c57-46b5-92c0-22e4f47c7160", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, "well_tag_number": 113288, "lithology_from": "146.00", "lithology_to": "160.00", "lithology_raw_data": "fine-medium", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "lots of mica", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203981}}, {"model": "wells.lithologydescription", "pk": "c061db7a-b99c-4702-ba9d-94bd2ccdc2fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199279}}, {"model": "wells.lithologydescription", "pk": "c0701217-de6b-4d62-8828-b3d9f1e3845d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "140.00", "lithology_to": "153.00", "lithology_raw_data": "CLAY, ANGULAR", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199741}}, {"model": "wells.lithologydescription", "pk": "c07fde5e-3515-4545-ac4e-1094471b44af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well_tag_number": 113134, "lithology_from": "155.00", "lithology_to": "246.00", "lithology_raw_data": "red/ green/ dark grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203189}}, {"model": "wells.lithologydescription", "pk": "c0998669-e3b6-4441-9cb4-ba3f64b70209", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "153.00", "lithology_to": "169.00", "lithology_raw_data": "LAYERED GRAY CLAY WITH LAYERED GRAY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203301}}, {"model": "wells.lithologydescription", "pk": "c0a6181a-df1f-4d30-977f-619b4f462b23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "25.00", "lithology_to": "115.00", "lithology_raw_data": "SILT WITH SOME CLAY, TRACE FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY; SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200995}}, {"model": "wells.lithologydescription", "pk": "c0bbe5ce-2a94-43cb-882a-cef48f404428", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, "well_tag_number": 112269, "lithology_from": "300.00", "lithology_to": "605.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197614}}, {"model": "wells.lithologydescription", "pk": "c0ccaf05-9e96-40bb-9530-de773e794617", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "174.00", "lithology_to": "193.00", "lithology_raw_data": "CLAY W/ SOME ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203160}}, {"model": "wells.lithologydescription", "pk": "c0d14499-1e6a-47ce-8df9-f199d3572a23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "100.00", "lithology_to": "235.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199586}}, {"model": "wells.lithologydescription", "pk": "c0d64991-5e8d-4b1c-9983-baa567e524b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "73.00", "lithology_to": "82.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199051}}, {"model": "wells.lithologydescription", "pk": "c0e365d9-e49f-43e7-931d-5b6cdfe51d3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "10.00", "lithology_to": "48.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199669}}, {"model": "wells.lithologydescription", "pk": "c0e438ea-0240-4dcd-a4e0-7b3701a036fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "DIRT, GRAVEL, FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201161}}, {"model": "wells.lithologydescription", "pk": "c0e7ffbb-b08f-4d3d-b78c-150194283d9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T17:01:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T17:01:16Z", "activity_submission": null, "well_tag_number": 112851, "lithology_from": "0.00", "lithology_to": "656.00", "lithology_raw_data": "BLAST ROCK SPOIL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201480}}, {"model": "wells.lithologydescription", "pk": "c0f7ba33-b620-4e29-9833-254c2580aa5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-27T18:54:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-27T18:54:34Z", "activity_submission": null, "well_tag_number": 112818, "lithology_from": "10.00", "lithology_to": "205.00", "lithology_raw_data": "and sandstone layers.", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201267}}, {"model": "wells.lithologydescription", "pk": "c10898d5-5176-4f3e-a7d8-ea4c0143eeb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:33:39Z", "activity_submission": null, "well_tag_number": 113259, "lithology_from": "95.00", "lithology_to": "114.00", "lithology_raw_data": "Dense/stiff light grey till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203865}}, {"model": "wells.lithologydescription", "pk": "c1152834-ac42-4597-855d-33b4af724c54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:14:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, "well_tag_number": 112313, "lithology_from": "33.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL WITH SOME SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197849}}, {"model": "wells.lithologydescription", "pk": "c123ddcb-4faf-4915-a3d3-f208cac29a18", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:32:01Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:01Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200112}}, {"model": "wells.lithologydescription", "pk": "c134505d-ad0e-4ccc-9bf5-3c9d750389ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "8.00", "lithology_to": "20.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198791}}, {"model": "wells.lithologydescription", "pk": "c143ba89-9843-4bc4-928d-2571ccad095b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:22:48Z", "activity_submission": null, "well_tag_number": 113085, "lithology_from": "270.00", "lithology_to": "350.00", "lithology_raw_data": "GREEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202908}}, {"model": "wells.lithologydescription", "pk": "c1454830-41d7-41d0-94e2-e11b8b614c3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "171.00", "lithology_to": "190.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203668}}, {"model": "wells.lithologydescription", "pk": "c14b0ee1-44f7-40de-8da1-1dc08cd59b5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "200.00", "lithology_to": "230.00", "lithology_raw_data": "W.B. GRAVELS AND SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197464}}, {"model": "wells.lithologydescription", "pk": "c15d8333-06e3-4762-8ee9-f5edfb42a8ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "206.00", "lithology_to": "220.00", "lithology_raw_data": "SILT, ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200108}}, {"model": "wells.lithologydescription", "pk": "c16623d9-5361-418c-a408-613840a60f84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, "well_tag_number": 113099, "lithology_from": "382.00", "lithology_to": "475.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202978}}, {"model": "wells.lithologydescription", "pk": "c1749db8-6e37-4ebf-9639-53e3f6be7337", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:47:56Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "221.00", "lithology_to": "230.00", "lithology_raw_data": "CRUMBLY BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "200-230 LOST CIRCULATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200187}}, {"model": "wells.lithologydescription", "pk": "c174b2a7-2440-4348-9d93-1a5a68674af4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "50.00", "lithology_to": "63.00", "lithology_raw_data": "and silts", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203641}}, {"model": "wells.lithologydescription", "pk": "c17504d2-b1d5-42e2-8dff-21263ed3ac5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "fill", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202872}}, {"model": "wells.lithologydescription", "pk": "c1757b2c-f5a4-486a-ac25-b1626cb42df0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well_tag_number": 113021, "lithology_from": "55.00", "lithology_to": "105.00", "lithology_raw_data": "clay lenses", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202543}}, {"model": "wells.lithologydescription", "pk": "c175c994-3043-49b8-bf37-f1dc8de41ea1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well_tag_number": 113041, "lithology_from": "29.00", "lithology_to": "38.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202637}}, {"model": "wells.lithologydescription", "pk": "c1778727-51f3-43ff-9c6b-b5a8096fad29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, "well_tag_number": 112286, "lithology_from": "19.00", "lithology_to": "37.00", "lithology_raw_data": "GRANITE, SOME CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197715}}, {"model": "wells.lithologydescription", "pk": "c1792657-1860-490b-a934-a5d7de37a9c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well_tag_number": 112849, "lithology_from": "29.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "MED. SAND", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201478}}, {"model": "wells.lithologydescription", "pk": "c184ffbf-3e9e-4486-83de-923a81d9768f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:33:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, "well_tag_number": 112948, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202138}}, {"model": "wells.lithologydescription", "pk": "c19ae70a-e91f-4e5c-b7af-adb777d66128", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well_tag_number": 112239, "lithology_from": "298.00", "lithology_to": "325.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197477}}, {"model": "wells.lithologydescription", "pk": "c1a2d064-0e35-46ea-a753-8ec6bb4a902f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "212.00", "lithology_to": "224.00", "lithology_raw_data": null, "lithology_description": "39", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight - Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198766}}, {"model": "wells.lithologydescription", "pk": "c1a594c0-7a33-476a-a71e-c620cfb18aa2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "256.00", "lithology_to": "385.00", "lithology_raw_data": "CLAY W/ FINE SAND SEAMS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203164}}, {"model": "wells.lithologydescription", "pk": "c1cbbcf0-d250-49b1-8c33-8da6a151baea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "135.00", "lithology_to": "183.00", "lithology_raw_data": "DRY BROWN SILTY SAND, LITTLE GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203141}}, {"model": "wells.lithologydescription", "pk": "c1cf358c-bef4-41d8-9e6c-f96c96a09da6", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T21:43:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:43:03Z", "activity_submission": null, "well_tag_number": 110749, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188532}}, {"model": "wells.lithologydescription", "pk": "c1de4148-33e8-4d28-8da7-72829a2040a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:14:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:14:53Z", "activity_submission": null, "well_tag_number": 112690, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200527}}, {"model": "wells.lithologydescription", "pk": "c1e88a8e-8dcd-4895-91d7-47fd7d6aeb22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, "well_tag_number": 112343, "lithology_from": "160.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC - SEAMS OF QUARTZ - LARGER GRAINED", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198131}}, {"model": "wells.lithologydescription", "pk": "c1edb01e-d344-49c3-8a6d-81e4a6ab9709", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "99.00", "lithology_to": "146.00", "lithology_raw_data": "CLAY WITH GRAVELLY TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201694}}, {"model": "wells.lithologydescription", "pk": "c1ef18c7-79de-4234-9e7d-3ccae76a64e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "235.00", "lithology_to": "237.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199587}}, {"model": "wells.lithologydescription", "pk": "c1fac7e9-b123-4678-9144-9bc056f0b4d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "106.00", "lithology_to": "108.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198853}}, {"model": "wells.lithologydescription", "pk": "c20145f8-ea6b-483e-9630-8d463514a097", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, "well_tag_number": 112885, "lithology_from": "56.00", "lithology_to": "160.00", "lithology_raw_data": "BROWN & RED", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201797}}, {"model": "wells.lithologydescription", "pk": "c20e9faa-7021-4cd2-986a-a48384674c07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "14.00", "lithology_to": "31.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203085}}, {"model": "wells.lithologydescription", "pk": "c217181c-5145-4a1f-8453-3b5fe1e1a204", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, "well_tag_number": 112295, "lithology_from": "8.00", "lithology_to": "23.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197753}}, {"model": "wells.lithologydescription", "pk": "c21a6030-522e-4783-aa7d-2e664a84a5d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "58.00", "lithology_to": "79.00", "lithology_raw_data": "CLAY AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203120}}, {"model": "wells.lithologydescription", "pk": "c2271f90-64ec-4bbd-926b-daa086916126", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:49:00Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "190.00", "lithology_to": "200.00", "lithology_raw_data": "Sandstone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "18", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "low pressure water zone", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203569}}, {"model": "wells.lithologydescription", "pk": "c23c7917-ddbb-4698-84d8-4da0b0baaf0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY/TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202426}}, {"model": "wells.lithologydescription", "pk": "c2418aa5-883a-4b84-883b-9939f2335ebf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, "well_tag_number": 113116, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FINAL YIELD AFTER HYDRO-FRACTURE ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203054}}, {"model": "wells.lithologydescription", "pk": "c244003d-a03a-4b39-a3cd-1beb7dfc023f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "112.00", "lithology_to": "400.00", "lithology_raw_data": "with quartz", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198373}}, {"model": "wells.lithologydescription", "pk": "c259b482-598e-4c04-9d2d-d8603db962c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well_tag_number": 112743, "lithology_from": "4.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY, FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200855}}, {"model": "wells.lithologydescription", "pk": "c2691d9c-feed-4739-bf10-dd507d41f753", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well_tag_number": 112587, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": "GRAVELS TO BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199900}}, {"model": "wells.lithologydescription", "pk": "c27bacad-b97d-466a-b028-1cbc9ab5038b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:19:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, "well_tag_number": 112659, "lithology_from": "40.00", "lithology_to": "137.40", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "PEA GRAVEL; CLOSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200387}}, {"model": "wells.lithologydescription", "pk": "c27c7874-8a7f-4706-9633-c7ebf6013f1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 340' - 2.0 US gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203022}}, {"model": "wells.lithologydescription", "pk": "c2865822-deee-4b83-8562-f1c21307b32f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-02-11T00:47:38Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T00:47:38Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "270.00", "lithology_to": "285.00", "lithology_raw_data": "SANSTONE WITH SHALE LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201038}}, {"model": "wells.lithologydescription", "pk": "c2953dac-31a5-47f8-876e-113f9976303c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well_tag_number": 112828, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201348}}, {"model": "wells.lithologydescription", "pk": "c29c09af-1589-40f1-8853-1dea95f423e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "30.00", "lithology_to": "36.00", "lithology_raw_data": "BROWN CLAYS, SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197457}}, {"model": "wells.lithologydescription", "pk": "c2a967d9-8dd6-45a1-b8a9-aef295419477", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well_tag_number": 112969, "lithology_from": "41.00", "lithology_to": "50.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202283}}, {"model": "wells.lithologydescription", "pk": "c2c74245-c026-4453-801e-ec0911c67a8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well_tag_number": 112351, "lithology_from": "1.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198180}}, {"model": "wells.lithologydescription", "pk": "c2cbce8d-5fad-4a8a-ac9e-0358d67bd6f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199990}}, {"model": "wells.lithologydescription", "pk": "c2eba145-9915-4941-99bd-a293859a9891", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well_tag_number": 113095, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202954}}, {"model": "wells.lithologydescription", "pk": "c2f0187d-dbb7-438e-bb6b-4f0acdf95a71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well_tag_number": 113300, "lithology_from": "132.00", "lithology_to": "147.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist, dense/stiff", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204031}}, {"model": "wells.lithologydescription", "pk": "c2f6baf0-aab1-4760-bcaf-13a52fd0db86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "92.00", "lithology_to": "98.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201831}}, {"model": "wells.lithologydescription", "pk": "c2fa54a9-8383-4842-85ed-b58819470ce9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well_tag_number": 112392, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "LARGE BOULDERS AND COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198440}}, {"model": "wells.lithologydescription", "pk": "c3131ef7-d115-4396-88d6-06ec424f8adc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T22:23:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, "well_tag_number": 112692, "lithology_from": "41.00", "lithology_to": "46.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200533}}, {"model": "wells.lithologydescription", "pk": "c31d1684-6768-4f2e-b33c-0150494bd730", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "100.00", "lithology_to": "104.00", "lithology_raw_data": "ANGULAR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199555}}, {"model": "wells.lithologydescription", "pk": "c32820c7-29d3-453a-a231-50f99bcadc7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "31.00", "lithology_to": "41.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203086}}, {"model": "wells.lithologydescription", "pk": "c32f99b1-0ef3-4e77-a27c-cb9c83ff54e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well_tag_number": 113167, "lithology_from": "95.00", "lithology_to": "130.00", "lithology_raw_data": "sand with clay/silt", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "1ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203363}}, {"model": "wells.lithologydescription", "pk": "c333189a-4796-477e-9114-ef31071ebcb2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "341.00", "lithology_to": "377.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, 10-12 slot brown water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201227}}, {"model": "wells.lithologydescription", "pk": "c3404948-5498-45e1-a367-ec1c35c08670", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:35:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:43:20Z", "activity_submission": null, "well_tag_number": 112778, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FILLED UP WITH BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201081}}, {"model": "wells.lithologydescription", "pk": "c3444a25-ef9a-4a7a-af18-9a1330ce6fc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T17:12:55Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:20:54Z", "activity_submission": null, "well_tag_number": 113074, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202794}}, {"model": "wells.lithologydescription", "pk": "c34792c2-08a3-40a3-ae13-d95aa11cc348", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:12:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, "well_tag_number": 112352, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "gravel sand clay", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198186}}, {"model": "wells.lithologydescription", "pk": "c34be9ef-0f56-4c28-bdd3-7819c7c6213c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "275.00", "lithology_to": "285.00", "lithology_raw_data": "SHALE/IRONSTONE LENSES", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED @ 280'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201704}}, {"model": "wells.lithologydescription", "pk": "c3530463-6a96-41de-8976-87821a7c9854", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, "well_tag_number": 112578, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "BLACK ORGANICS, SAND, BROWN SOILS, SOME GRAVELS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199840}}, {"model": "wells.lithologydescription", "pk": "c362b0b6-77fe-4f2c-b67c-1d03db96f2bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, "well_tag_number": 113004, "lithology_from": "230.00", "lithology_to": "230.00", "lithology_raw_data": "Hard Grey Bedrock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202462}}, {"model": "wells.lithologydescription", "pk": "c381b51b-6d2e-459e-9ea4-e7ff1b608068", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well_tag_number": 113217, "lithology_from": "42.00", "lithology_to": "44.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203696}}, {"model": "wells.lithologydescription", "pk": "c385091a-eef6-4b0c-a712-1fd37a02466c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well_tag_number": 112955, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20-30", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202183}}, {"model": "wells.lithologydescription", "pk": "c388072b-3ea7-4e5b-b893-410bd91d431e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:36:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:36:35Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200123}}, {"model": "wells.lithologydescription", "pk": "c3a1b1f7-c5d7-475e-96c8-1737bbf1dd26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, "well_tag_number": 112713, "lithology_from": "9.00", "lithology_to": "30.00", "lithology_raw_data": "DIRTY SAND AND GRAVEL WITH DIRTY, SILTY SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200637}}, {"model": "wells.lithologydescription", "pk": "c3aae5bc-94d2-490d-b543-cdacc32ca5a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "55.00", "lithology_to": "62.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200610}}, {"model": "wells.lithologydescription", "pk": "c3c81a26-300a-456d-9b80-707b449aa162", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "188.00", "lithology_to": "190.00", "lithology_raw_data": "W.B. BROWN SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202722}}, {"model": "wells.lithologydescription", "pk": "c3cb475e-57a8-44b4-a40b-cfca8543532f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:32:57Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T00:37:07Z", "activity_submission": null, "well_tag_number": 112657, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "PORTLAND CEMENT; CLOSURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200381}}, {"model": "wells.lithologydescription", "pk": "c3dc3230-d991-4f3d-9f04-f140d05dbf71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:44:40Z", "activity_submission": null, "well_tag_number": 113016, "lithology_from": "18.00", "lithology_to": "30.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202508}}, {"model": "wells.lithologydescription", "pk": "c3e5b880-bc2e-4eec-91c5-f1292bfeef2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:10:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, "well_tag_number": 108027, "lithology_from": "10.00", "lithology_to": "40.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172311}}, {"model": "wells.lithologydescription", "pk": "c3ea0b5d-d91a-4fa0-a4a6-e0003467180f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "8.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, SMALL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197539}}, {"model": "wells.lithologydescription", "pk": "c3fec18a-13ee-49f1-865a-17518c40258d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "93.00", "lithology_to": "115.00", "lithology_raw_data": "BROWN VOLCANIC WITH LIMESTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=1+USGPM; FRACTURED, CAVING; COLOUR=GREY, WHITE, GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199828}}, {"model": "wells.lithologydescription", "pk": "c40e3227-ff52-43c7-8194-a0e25370f62c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "11.00", "lithology_to": "13.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183975}}, {"model": "wells.lithologydescription", "pk": "c413619d-b3ff-452e-9851-42ffd80340d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well_tag_number": 112418, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "MEDIUM/HARD, BOULDERS AND TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198598}}, {"model": "wells.lithologydescription", "pk": "c4244dd0-9bc1-44e1-87c4-64cc1b67b047", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "70.00", "lithology_to": "71.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198194}}, {"model": "wells.lithologydescription", "pk": "c42847b7-deb9-4a06-94b7-70c069a60695", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "407.00", "lithology_to": "413.00", "lithology_raw_data": "DENSE/STIFF; CLAY, CONGLOMERATE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199603}}, {"model": "wells.lithologydescription", "pk": "c42db612-47e6-4838-8ae6-76aeb6390f6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T17:12:55Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:21:41Z", "activity_submission": null, "well_tag_number": 113074, "lithology_from": "210.00", "lithology_to": "330.00", "lithology_raw_data": "BROWN CLAY AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202796}}, {"model": "wells.lithologydescription", "pk": "c4340d31-9acc-4428-b2d1-3180b480fb82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "383.00", "lithology_to": "389.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, 15-18 slot, brown water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201229}}, {"model": "wells.lithologydescription", "pk": "c43fba9a-049c-4eb2-950a-3af3a53fef8f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202103}}, {"model": "wells.lithologydescription", "pk": "c44d51a7-9f91-47f5-b743-498582d9ffed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND WITH SMALL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SILTY WASH", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197529}}, {"model": "wells.lithologydescription", "pk": "c4553e04-b310-474b-888b-89cfc6c40a3b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "670.00", "lithology_to": "672.00", "lithology_raw_data": "BROWN/GREY/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197361}}, {"model": "wells.lithologydescription", "pk": "c45fdeee-b149-489a-a964-32d52ec3a259", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "591.00", "lithology_to": "670.00", "lithology_raw_data": "BROWN/GREY VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197360}}, {"model": "wells.lithologydescription", "pk": "c471fa37-c7ea-4f18-a41f-26c19ee92a05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "37.00", "lithology_to": "169.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203158}}, {"model": "wells.lithologydescription", "pk": "c4738ac2-727f-4cae-96c4-ff16879843b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "155.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201791}}, {"model": "wells.lithologydescription", "pk": "c47d50af-84f0-42ca-8902-ea0fa47b9342", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, SILT, BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198936}}, {"model": "wells.lithologydescription", "pk": "c47dca06-42e4-4dcb-885d-aa2baa029b2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "111.00", "lithology_to": "117.00", "lithology_raw_data": "MEDIUM SAND, FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "40+", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202334}}, {"model": "wells.lithologydescription", "pk": "c48e0f78-db21-4af2-aadf-7d1d5baf786f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "57.00", "lithology_to": "60.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198451}}, {"model": "wells.lithologydescription", "pk": "c48ef9d5-1bbc-44a2-b27b-4cc0194a7a6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "42.00", "lithology_to": "51.00", "lithology_raw_data": "COARSE SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201340}}, {"model": "wells.lithologydescription", "pk": "c491e939-4a95-437e-8340-2f01b8850a53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, "well_tag_number": 112251, "lithology_from": "18.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197521}}, {"model": "wells.lithologydescription", "pk": "c49fe663-f246-436d-b4ea-49d94304008b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": "30.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202969}}, {"model": "wells.lithologydescription", "pk": "c4a1be28-844d-46d3-9100-28d7f69e2ff8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well_tag_number": 112893, "lithology_from": "19.00", "lithology_to": "27.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201851}}, {"model": "wells.lithologydescription", "pk": "c4af8f29-a4b8-405c-9ed8-f40a76a20af5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202716}}, {"model": "wells.lithologydescription", "pk": "c4b0df21-f948-469b-8a55-b8e56aafe679", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203475}}, {"model": "wells.lithologydescription", "pk": "c4b3edee-4f32-47b2-9f6a-4cebbe45d51b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "160.00", "lithology_to": "164.50", "lithology_raw_data": "DARK GREY CLAY WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "10", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "M.W.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201697}}, {"model": "wells.lithologydescription", "pk": "c4b61fe7-519e-4eb0-b487-f40f7e5a82ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:13:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:13:44Z", "activity_submission": null, "well_tag_number": 112648, "lithology_from": "300.00", "lithology_to": "460.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "440'=4-6 GPM WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200351}}, {"model": "wells.lithologydescription", "pk": "c4bf9ebd-e732-4869-96e7-b3f52d4199b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "130.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202494}}, {"model": "wells.lithologydescription", "pk": "c4c24b59-7261-4416-ade2-84f899592556", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, "well_tag_number": 112312, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOP SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197842}}, {"model": "wells.lithologydescription", "pk": "c4cdff00-df0d-40ee-8a52-9f8490ddd301", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200012}}, {"model": "wells.lithologydescription", "pk": "c4d5dd43-44a1-4fa8-9d32-66a626be64f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "82.00", "lithology_to": "130.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, BLACK AND WHITE; SOLID; WATER BEARING FRACTURE @ 106'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200734}}, {"model": "wells.lithologydescription", "pk": "c4dd93d7-f629-4a85-970e-af361509885d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "576.00", "lithology_to": "619.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "small fracture at 592", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202855}}, {"model": "wells.lithologydescription", "pk": "c4f5cbdf-52e7-4375-b64a-a1e9f42ec22e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "90.00", "lithology_to": "116.00", "lithology_raw_data": "CLAY, THIN LAYERS OF SILTY GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201093}}, {"model": "wells.lithologydescription", "pk": "c4fedc27-5f7d-4b0b-98b9-4ab3e703bc32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "141.00", "lithology_to": "149.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198759}}, {"model": "wells.lithologydescription", "pk": "c526c328-8239-4b3b-8fa8-32f79d53cb5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well_tag_number": 112827, "lithology_from": "51.00", "lithology_to": "56.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201341}}, {"model": "wells.lithologydescription", "pk": "c52d84fc-c2d1-4aad-8472-ebf19030547c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "trace of gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199692}}, {"model": "wells.lithologydescription", "pk": "c53867d0-3157-4f53-b4fa-eb520fdda62c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "very silty, clay", "lithology_description": "52", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203793}}, {"model": "wells.lithologydescription", "pk": "c53f5f06-43e2-4a89-8382-550a2d316ffd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199146}}, {"model": "wells.lithologydescription", "pk": "c5460093-023f-44eb-852d-38f24d670a0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "258.00", "lithology_to": "264.00", "lithology_raw_data": "BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201640}}, {"model": "wells.lithologydescription", "pk": "c55043f9-b64b-4c21-9dde-8260b255878b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198864}}, {"model": "wells.lithologydescription", "pk": "c557f952-b43e-4924-a38f-0bb214921b0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "3.00", "lithology_to": "19.00", "lithology_raw_data": "silty till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202412}}, {"model": "wells.lithologydescription", "pk": "c55a1c8f-50ed-4ca1-8f74-1a19583ac2ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:22:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:37:54Z", "activity_submission": null, "well_tag_number": 112427, "lithology_from": "35.00", "lithology_to": "47.00", "lithology_raw_data": "SOFT/MEDIUM, MEDIUM TO COARSE SAND WITH ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198677}}, {"model": "wells.lithologydescription", "pk": "c566d393-f793-4269-a5b0-931089715d17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199088}}, {"model": "wells.lithologydescription", "pk": "c56cb633-df6b-41d9-9524-404c2283811d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:20:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:20:43Z", "activity_submission": null, "well_tag_number": 112358, "lithology_from": "0.00", "lithology_to": "94.00", "lithology_raw_data": "clay/ gravel/clay / gravel sand cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "well sorted gravel", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198215}}, {"model": "wells.lithologydescription", "pk": "c5832d3d-4df2-459e-8da2-1a78a3869009", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, "well_tag_number": 112588, "lithology_from": "106.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/SOFT; VOLCANIC - TRACES OF WHITE FELDSPAR", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLUE/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199907}}, {"model": "wells.lithologydescription", "pk": "c58e7145-9c2c-4fa8-8e35-93b036e15716", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well_tag_number": 112420, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "80'=5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198621}}, {"model": "wells.lithologydescription", "pk": "c59deec1-67e3-428f-9faf-01f1ea82e302", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "245.00", "lithology_to": "250.00", "lithology_raw_data": "CLAY WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202987}}, {"model": "wells.lithologydescription", "pk": "c5a69247-b563-465f-b397-79e26fb5353b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "16.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN & GREY SHALE & SILTSTONE, M.W.", "lithology_description": "58", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201520}}, {"model": "wells.lithologydescription", "pk": "c5a95f77-87f9-436d-ba6a-0c82ed425916", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198094}}, {"model": "wells.lithologydescription", "pk": "c5c384ad-b836-41cd-b683-bc22d7a0f96b", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:33:40Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:33:40Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "71.00", "lithology_to": "91.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200117}}, {"model": "wells.lithologydescription", "pk": "c5c68151-f54c-4614-b893-488fb23e8cbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:52:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, "well_tag_number": 113306, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 215'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204065}}, {"model": "wells.lithologydescription", "pk": "c5ca1ded-c793-4ae0-8cd0-da99c041a1e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, FINE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199236}}, {"model": "wells.lithologydescription", "pk": "c5ca981c-3664-4ea0-9ec1-764e047e38c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:58Z", "activity_submission": null, "well_tag_number": 110000, "lithology_from": "46.00", "lithology_to": "48.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183979}}, {"model": "wells.lithologydescription", "pk": "c5df674d-5047-435a-8675-0e607a89c99e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "290.00", "lithology_to": "325.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK WITH MEDIUM/HARD SEAMS OF RED METAMORPHIC TYPE BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197426}}, {"model": "wells.lithologydescription", "pk": "c5f43c88-6a6a-4f84-9903-d2e908b54eac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well_tag_number": 112401, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "COARSE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198487}}, {"model": "wells.lithologydescription", "pk": "c6179400-c78b-43c9-b01f-9797381ec1e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:52:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, "well_tag_number": 113306, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204062}}, {"model": "wells.lithologydescription", "pk": "c625d272-5a4d-45ae-a44e-c8b59ed14a02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "530.00", "lithology_to": "535.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "softer andesite", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202852}}, {"model": "wells.lithologydescription", "pk": "c63d55ce-364a-4a3f-bbfd-ddfb27d47203", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well_tag_number": 112520, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199417}}, {"model": "wells.lithologydescription", "pk": "c6514c0b-0d77-45e5-8ffe-be2535fbe9ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well_tag_number": 112779, "lithology_from": "0.00", "lithology_to": "91.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201084}}, {"model": "wells.lithologydescription", "pk": "c6581227-215c-44cc-9bc9-93304f7d9914", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well_tag_number": 112439, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198784}}, {"model": "wells.lithologydescription", "pk": "c6587a6e-5f48-42c2-b33b-8a0700312176", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "77.00", "lithology_to": "153.00", "lithology_raw_data": "FIRM GRAY BLUE CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203300}}, {"model": "wells.lithologydescription", "pk": "c668945f-59bd-4cbf-823d-9406ac5ad52e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "93.00", "lithology_to": "93.50", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200046}}, {"model": "wells.lithologydescription", "pk": "c677a783-3985-400e-8813-2435a0773539", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/SOFT; CLAY SEAM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER; 20+ GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199163}}, {"model": "wells.lithologydescription", "pk": "c67d0b66-6c1a-4893-b0c0-a92c526ce5f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "188.00", "lithology_to": "201.00", "lithology_raw_data": "CLAY/VOLCANIC TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197950}}, {"model": "wells.lithologydescription", "pk": "c67f4691-87c4-49f9-b07d-50cdfbe784d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:31:30Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY LAYER, ANGULAR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199739}}, {"model": "wells.lithologydescription", "pk": "c67f543a-ab1f-4142-b7ad-c671fe01a844", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "23.00", "lithology_to": "73.00", "lithology_raw_data": "SLOPPY CLAY WITH LITTLE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202683}}, {"model": "wells.lithologydescription", "pk": "c68351ff-00fa-4293-bcb4-ac886ab84467", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-10T19:24:22Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "1052.20", "lithology_to": "1101.40", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201022}}, {"model": "wells.lithologydescription", "pk": "c691b06b-640c-4c84-a81c-5fbd542fce65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:16:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:16:06Z", "activity_submission": null, "well_tag_number": 112932, "lithology_from": "0.00", "lithology_to": "115.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202073}}, {"model": "wells.lithologydescription", "pk": "c6957727-95a8-4fe9-ae5e-8fa711496569", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "light green black medium hard rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202580}}, {"model": "wells.lithologydescription", "pk": "c69798a7-20d5-4b98-8bc2-dd999957ab89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well_tag_number": 112351, "lithology_from": "34.00", "lithology_to": "47.00", "lithology_raw_data": "and gravels", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Irony wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198183}}, {"model": "wells.lithologydescription", "pk": "c69d5415-8090-4908-b7f9-3b92005dd3c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well_tag_number": 112701, "lithology_from": "9.00", "lithology_to": "35.00", "lithology_raw_data": "BEDROCK, VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200567}}, {"model": "wells.lithologydescription", "pk": "c6a566ee-0169-42fc-bf0d-49a66ae1cbce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "42.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198039}}, {"model": "wells.lithologydescription", "pk": "c6ac3549-e870-4a01-b8c6-b4d31bd011d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:34Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199734}}, {"model": "wells.lithologydescription", "pk": "c6b13849-56c1-4bd9-9b8a-a44f5e8524d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "10.00", "lithology_to": "26.00", "lithology_raw_data": "BEDROCK-VOLCANIC MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200515}}, {"model": "wells.lithologydescription", "pk": "c6b18fe5-131a-4f6f-a49b-7091a8803aeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, "well_tag_number": 112878, "lithology_from": "35.00", "lithology_to": "56.00", "lithology_raw_data": "with medium sand", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201747}}, {"model": "wells.lithologydescription", "pk": "c6b71da7-81a8-4c39-9f16-b85c96701e35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "205.00", "lithology_to": "249.00", "lithology_raw_data": "COARSE GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198061}}, {"model": "wells.lithologydescription", "pk": "c6ca2de0-d644-483c-a884-9528cf0a3298", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "94.00", "lithology_to": "106.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@ 95' 5 - 42 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201812}}, {"model": "wells.lithologydescription", "pk": "c6cab8de-8cfd-430d-ad43-2f482810c47f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T18:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, "well_tag_number": 112283, "lithology_from": "88.00", "lithology_to": "96.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "Installed 7' Tailpipe welded to 4'x18 slot screen develop well", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197707}}, {"model": "wells.lithologydescription", "pk": "c6cbdc3a-c265-49aa-8a2c-beea56968679", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "108.00", "lithology_to": "167.00", "lithology_raw_data": "and gravel with large cobbles", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water-bearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197595}}, {"model": "wells.lithologydescription", "pk": "c6ceb194-0878-4059-a54a-8e86f52e735c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, "well_tag_number": 112837, "lithology_from": "7.00", "lithology_to": "605.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 30'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201404}}, {"model": "wells.lithologydescription", "pk": "c6eca82d-58c2-4f42-9300-1b496acb45d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "215.00", "lithology_to": "225.00", "lithology_raw_data": "SANDSTONE/ MEDIUM GREY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199867}}, {"model": "wells.lithologydescription", "pk": "c6eff2bd-8f01-4697-ae45-5f58339a4ad0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "155.00", "lithology_to": "188.00", "lithology_raw_data": "W.B. SAND AND GRAVEL (RED WATER)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202721}}, {"model": "wells.lithologydescription", "pk": "c6fdf969-24aa-4fcb-82ad-3faf59818e06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "FRACTURED BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197900}}, {"model": "wells.lithologydescription", "pk": "c7009f50-24f7-4f02-8762-a2766c59213c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "275.00", "lithology_to": "281.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197603}}, {"model": "wells.lithologydescription", "pk": "c708e7d3-df54-4881-8de3-f11d8d82938a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "135.00", "lithology_to": "137.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200077}}, {"model": "wells.lithologydescription", "pk": "c7243743-0c7c-4d74-9ff7-ba545918caad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": "Sand, fine grained, some silt, dense, grey, dry", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203511}}, {"model": "wells.lithologydescription", "pk": "c73ebe83-9a93-4577-bd9a-d88c583e0cfa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "265.00", "lithology_to": "275.00", "lithology_raw_data": "GRAVEL WITH CLAY ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205644}}, {"model": "wells.lithologydescription", "pk": "c7431696-516c-4280-85e6-cc69200019dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199089}}, {"model": "wells.lithologydescription", "pk": "c746ee9d-58e7-4ecb-8e0c-ab854ba82bdf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, "well_tag_number": 112861, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "BROWN/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201643}}, {"model": "wells.lithologydescription", "pk": "c7524ed0-e38f-4684-aede-aa8ec9165dd9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, "well_tag_number": 112570, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199776}}, {"model": "wells.lithologydescription", "pk": "c754bbff-b059-4a4d-899d-21a64697a8aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, "well_tag_number": 112551, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199663}}, {"model": "wells.lithologydescription", "pk": "c75e5b4e-72d0-4e04-ae90-7d30eedd07ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "199.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198082}}, {"model": "wells.lithologydescription", "pk": "c7605061-665b-49b9-a816-ba30696ee3dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK SOME FRACTURES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198837}}, {"model": "wells.lithologydescription", "pk": "c760b556-112c-4235-bdef-70b2d453441a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "7.00", "lithology_to": "13.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199690}}, {"model": "wells.lithologydescription", "pk": "c76b4d20-5763-4ece-901d-891c161d96dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "118.00", "lithology_to": "148.00", "lithology_raw_data": "DRY SILT, BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202697}}, {"model": "wells.lithologydescription", "pk": "c77d6fce-8126-4baf-aaf8-807ad311ff0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well_tag_number": 112870, "lithology_from": "304.00", "lithology_to": "429.00", "lithology_raw_data": "BLACK & WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201712}}, {"model": "wells.lithologydescription", "pk": "c781dcd8-cf0f-44ea-a4d2-394dfb704eca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "60", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201634}}, {"model": "wells.lithologydescription", "pk": "c79be330-aed5-41d4-8d83-a1a257a11992", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "SILT, TRACE CLAY, TRACE FINE TO MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY, TRACE YELLOW; MOTTLING, MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200994}}, {"model": "wells.lithologydescription", "pk": "c7a914c2-a67a-49b4-988e-72790350fba2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:44:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, "well_tag_number": 112940, "lithology_from": "25.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202112}}, {"model": "wells.lithologydescription", "pk": "c7acbd20-4d50-4d49-9bdd-983fef844ff1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T22:17:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, "well_tag_number": 112620, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "till - stony", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200149}}, {"model": "wells.lithologydescription", "pk": "c7ae732b-74a0-4bf9-88ab-57781f21d115", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "293.00", "lithology_to": "390.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132536}}, {"model": "wells.lithologydescription", "pk": "c7c7c1d2-4b2d-4267-9742-2a9fbb0c1d95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "13.00", "lithology_to": "20.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199442}}, {"model": "wells.lithologydescription", "pk": "c7d3b994-2d43-4625-af52-ba5f9b9aae72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:10:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:10:31Z", "activity_submission": null, "well_tag_number": 112772, "lithology_from": "125.00", "lithology_to": "510.00", "lithology_raw_data": "SHALE WITH A FEW LENSES OF SILTSTONE AND FINE SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201053}}, {"model": "wells.lithologydescription", "pk": "c7d817d0-1b9b-4641-b3ec-18a42a184f17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, "well_tag_number": 112344, "lithology_from": "59.00", "lithology_to": "135.00", "lithology_raw_data": "PACKED SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198134}}, {"model": "wells.lithologydescription", "pk": "c7dd8231-8421-4601-b80c-06e001fc71a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:12:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, "well_tag_number": 112352, "lithology_from": "92.00", "lithology_to": "117.00", "lithology_raw_data": "gravel sand caly color", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198188}}, {"model": "wells.lithologydescription", "pk": "c7e60c28-8c7b-4bf3-96f8-3325e474eaf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "115.00", "lithology_to": "130.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202493}}, {"model": "wells.lithologydescription", "pk": "c7ea4104-01f2-4370-b93f-22ed70e456e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": "FINE GREY SAND WITH SOME STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201311}}, {"model": "wells.lithologydescription", "pk": "c8039125-6089-4e56-a0b1-b2583f530773", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T07:42:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, "well_tag_number": 112765, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "SILTY CLAY-TRACE SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; MOIST; MEDIUM PLASTICITY AND HIGH DENSITY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201010}}, {"model": "wells.lithologydescription", "pk": "c80392d2-4f3e-4ac5-82e4-6c3262eafdb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well_tag_number": 112377, "lithology_from": "92.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198345}}, {"model": "wells.lithologydescription", "pk": "c80632af-8d7a-4b0c-9ff5-98dcfe45dbfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "66.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK BLACK BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132268}}, {"model": "wells.lithologydescription", "pk": "c8132502-7b7f-4cb1-a9d8-bbe983889cb4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203609}}, {"model": "wells.lithologydescription", "pk": "c8139cf0-15cd-4b47-aef6-606571eb920b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "211.00", "lithology_to": "240.00", "lithology_raw_data": "light grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201253}}, {"model": "wells.lithologydescription", "pk": "c81bd4be-ce53-4e9a-a34a-87a2a8c2354b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well_tag_number": 113151, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "FIRM TAN TILL GRAVEL", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203296}}, {"model": "wells.lithologydescription", "pk": "c83caa42-d09e-4f50-ab6e-9a798bbef3ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, "well_tag_number": 112285, "lithology_from": "75.00", "lithology_to": "79.00", "lithology_raw_data": "VOLCANIC MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197712}}, {"model": "wells.lithologydescription", "pk": "c8439927-2cc3-431d-8146-44acede829d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well_tag_number": 113166, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203352}}, {"model": "wells.lithologydescription", "pk": "c858dd06-b5e7-4715-86ba-fd7bbd2a1f00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:41:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:38Z", "activity_submission": null, "well_tag_number": 112704, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200576}}, {"model": "wells.lithologydescription", "pk": "c85d6652-411e-4a04-9883-bfbbef091b21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "176.00", "lithology_to": "214.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203391}}, {"model": "wells.lithologydescription", "pk": "c871443e-d8bd-49de-97e9-d302bc4824d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:47:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, "well_tag_number": 112784, "lithology_from": "0.00", "lithology_to": "3.75", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE CHAMBER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201117}}, {"model": "wells.lithologydescription", "pk": "c8733c02-7b97-4789-8c74-8c5c5b7ef815", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "150.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199300}}, {"model": "wells.lithologydescription", "pk": "c8735d62-96eb-47c6-9e48-46ec8f9c9600", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-03-01T20:29:16Z", "update_user": "PROXY_WELLS", "update_date": "2012-03-01T20:29:37Z", "activity_submission": null, "well_tag_number": 105747, "lithology_from": "0.00", "lithology_to": "72.00", "lithology_raw_data": "UNKNOWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRILLED PREVIOUSLY BY ANOTHER COMPANY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 161006}}, {"model": "wells.lithologydescription", "pk": "c8869abd-ecab-46f3-a55f-6bbf57b8b235", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "124.00", "lithology_to": "130.00", "lithology_raw_data": "SH BL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143923}}, {"model": "wells.lithologydescription", "pk": "c88c2868-994c-462d-b70e-049773848af3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well_tag_number": 112528, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199511}}, {"model": "wells.lithologydescription", "pk": "c8911c15-a279-4a2a-b569-ea35b1aef1d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "52.00", "lithology_to": "80.00", "lithology_raw_data": "softer zones", "lithology_description": "58", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204080}}, {"model": "wells.lithologydescription", "pk": "c8a55ee2-f4be-4bda-b1f6-2dcc9f4a6cb7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well_tag_number": 112308, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "STIFF CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197818}}, {"model": "wells.lithologydescription", "pk": "c8b85a8f-e7d0-462d-a025-1d1d2fe1dc8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, "well_tag_number": 112706, "lithology_from": "137.00", "lithology_to": "283.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200588}}, {"model": "wells.lithologydescription", "pk": "c8d7dcda-7c65-450e-9729-57d811140f97", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T21:47:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T21:47:38Z", "activity_submission": null, "well_tag_number": 112300, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197779}}, {"model": "wells.lithologydescription", "pk": "c8ffaa69-974a-4483-97c0-71cfc99b8d59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well_tag_number": 112662, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CONCRETE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200397}}, {"model": "wells.lithologydescription", "pk": "c908bad4-dab1-443a-a663-413f8b30462a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:37Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 300'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203043}}, {"model": "wells.lithologydescription", "pk": "c919c0bd-99b6-4c5f-880e-f98aed825544", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well_tag_number": 112392, "lithology_from": "76.00", "lithology_to": "398.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198445}}, {"model": "wells.lithologydescription", "pk": "c9243ccf-9193-4d6e-9a4d-51d75c94e516", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, "well_tag_number": 112589, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199913}}, {"model": "wells.lithologydescription", "pk": "c926e377-652c-4785-bee0-25538155d44d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "37.00", "lithology_to": "72.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197852}}, {"model": "wells.lithologydescription", "pk": "c933aa87-e444-41d9-952a-ee17e1fc185e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "110.00", "lithology_to": "112.00", "lithology_raw_data": "SHALE AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198066}}, {"model": "wells.lithologydescription", "pk": "c938ba83-9fcf-4d4c-aca7-9c6aa83fee63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "194.00", "lithology_to": null, "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199142}}, {"model": "wells.lithologydescription", "pk": "c949a77c-85a0-4266-ad56-2b780d2c4c1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAY/BLACK", "lithology_description": "47", "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202102}}, {"model": "wells.lithologydescription", "pk": "c94eaa0b-bb47-4212-abd5-d4a3e61aebec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "13.00", "lithology_to": "15.50", "lithology_raw_data": "greenish grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "very weathered/ fractured", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201246}}, {"model": "wells.lithologydescription", "pk": "c957d0ce-286d-43e5-a1ca-38e048765e01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "961.00", "lithology_to": "969.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202865}}, {"model": "wells.lithologydescription", "pk": "c95f93bd-6de4-4095-b3ae-c571031dd2d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:57:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, "well_tag_number": 112961, "lithology_from": "20.00", "lithology_to": "37.50", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202230}}, {"model": "wells.lithologydescription", "pk": "c9615e5d-66d8-4e40-8715-ed96bdfbe3d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "13.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200608}}, {"model": "wells.lithologydescription", "pk": "c963a0c2-16d7-4339-9b78-a6a69dbd285f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well_tag_number": 112550, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "07", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199659}}, {"model": "wells.lithologydescription", "pk": "c96ecdb5-8f56-4f3f-acb0-5154b00d745d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "409.00", "lithology_to": "510.00", "lithology_raw_data": "LARGE GRAINED PINK FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "410'=FRACTURE-WATER INCREASED TO 2 GPM; 450'=BROKEN, FRACTURED; COLOUR=BLUE/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199853}}, {"model": "wells.lithologydescription", "pk": "c96f711e-6673-40f2-81ec-d8c69bda84cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": null, "lithology_description": "12", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201539}}, {"model": "wells.lithologydescription", "pk": "c9722d87-7913-4373-ab4b-0f28fcc97aec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "802.00", "lithology_to": "875.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202861}}, {"model": "wells.lithologydescription", "pk": "c9761e54-d443-48bb-984c-26a8704639fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:55:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, "well_tag_number": 112980, "lithology_from": "6.00", "lithology_to": "14.00", "lithology_raw_data": "SAND, CLAY, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202347}}, {"model": "wells.lithologydescription", "pk": "c985267c-fceb-4044-b1ba-8b8d665cfd67", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "50.00", "lithology_to": "54.00", "lithology_raw_data": "COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198795}}, {"model": "wells.lithologydescription", "pk": "c9881161-1e12-4cba-99c2-fee4351347ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "TIGHT SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202950}}, {"model": "wells.lithologydescription", "pk": "c9aabb8b-be19-406b-99c6-66ff035b79c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "30.00", "lithology_to": "44.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; WATER BEARING; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200764}}, {"model": "wells.lithologydescription", "pk": "c9c5c36c-8744-49e4-a6d0-2d0f73d414a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well_tag_number": 112597, "lithology_from": "160.00", "lithology_to": "176.00", "lithology_raw_data": "MEDIUM TO COARSE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199961}}, {"model": "wells.lithologydescription", "pk": "c9c77306-8507-4a32-baed-2d362837ff86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T17:49:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, "well_tag_number": 112289, "lithology_from": "64.00", "lithology_to": "68.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197730}}, {"model": "wells.lithologydescription", "pk": "c9d40eab-1757-4fcd-b9fd-a5f55a2f901d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, "well_tag_number": 113269, "lithology_from": "38.00", "lithology_to": "65.00", "lithology_raw_data": "CLAYS AND SOME GRAVEL ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203915}}, {"model": "wells.lithologydescription", "pk": "c9dba461-0bbb-40f5-90c5-0808ea3d36c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE, SAND, ROCKS, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198981}}, {"model": "wells.lithologydescription", "pk": "c9f59ee9-6aa4-4f0b-9fdb-fae624975389", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T17:05:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, "well_tag_number": 113144, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "gravel, boulders", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203261}}, {"model": "wells.lithologydescription", "pk": "c9ff095d-f459-4a05-a500-1ed39246cf44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "408.00", "lithology_to": "430.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201555}}, {"model": "wells.lithologydescription", "pk": "c9ff11ea-ba21-4164-ac87-da31cc106166", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well_tag_number": 112547, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199639}}, {"model": "wells.lithologydescription", "pk": "ca09f2c1-2654-4d63-bec8-44128ea22219", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "19.00", "lithology_to": "24.00", "lithology_raw_data": "CLAY AND GRAVEL TILL WITH COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200751}}, {"model": "wells.lithologydescription", "pk": "ca156494-6e40-4d7b-a3b9-64ab47f59ee6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, "well_tag_number": 112882, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201767}}, {"model": "wells.lithologydescription", "pk": "ca1e78e6-03a7-43ba-973f-ee2f866f28b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL, MEDIUM TO COARSE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199263}}, {"model": "wells.lithologydescription", "pk": "ca2724ee-26a2-430a-bad5-18e6f19290c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, "well_tag_number": 113216, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203693}}, {"model": "wells.lithologydescription", "pk": "ca2c109a-1050-42bd-bf69-ecf149dde0b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "448.00", "lithology_to": "451.00", "lithology_raw_data": "Shale, black, med soft", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203411}}, {"model": "wells.lithologydescription", "pk": "ca32e1a7-be20-46ca-9c07-df631d1a016c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198157}}, {"model": "wells.lithologydescription", "pk": "ca349075-86e3-46d6-876c-9cda55d5bf40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well_tag_number": 112707, "lithology_from": "42.00", "lithology_to": "57.00", "lithology_raw_data": "HARD, DARK GREEN/WHITE/GREY GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE AND GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200593}}, {"model": "wells.lithologydescription", "pk": "ca36c779-823e-491b-a586-f0501c14e836", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199069}}, {"model": "wells.lithologydescription", "pk": "ca470ef3-26f2-45dc-8f58-b7133d5553ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, "well_tag_number": 113087, "lithology_from": "178.00", "lithology_to": "314.00", "lithology_raw_data": "clay and sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202914}}, {"model": "wells.lithologydescription", "pk": "ca4d8012-bffa-4781-80e0-9cf46fcf2cde", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, "well_tag_number": 112631, "lithology_from": "20.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": "18", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200291}}, {"model": "wells.lithologydescription", "pk": "ca5373cc-b324-45ed-ba3d-a4ee5f75f309", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:20:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, "well_tag_number": 112763, "lithology_from": "12.50", "lithology_to": "15.00", "lithology_raw_data": "SILTY CLAY - TRACE SAND, AND GRAVEL. INCREASE IN TRACE GRAVEL FROM ABOVE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; MOIST; MEDIUM PLASTICITY, DENSE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201002}}, {"model": "wells.lithologydescription", "pk": "ca5d44b7-3003-40f8-a35c-074c19b21078", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:02:20Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "320.00", "lithology_to": "326.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=WHITE/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199792}}, {"model": "wells.lithologydescription", "pk": "ca631c9e-29ab-4ab0-bfe1-349ddaa8a675", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "198.00", "lithology_to": "325.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": "18", "water_bearing_estimated_flow": "14.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 200', FRACTURES OFTEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203833}}, {"model": "wells.lithologydescription", "pk": "ca749da8-6c37-48ea-8460-2dbc161e10cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": "silt", "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203266}}, {"model": "wells.lithologydescription", "pk": "ca7a894b-e9f9-4fce-b7ec-b0ad69f63ef8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, "well_tag_number": 112891, "lithology_from": "22.00", "lithology_to": "38.00", "lithology_raw_data": "SAND & GRAVEL WITH SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201841}}, {"model": "wells.lithologydescription", "pk": "ca8210a5-3f98-4cca-986d-3b4bb91c5e18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "110.00", "lithology_to": "205.00", "lithology_raw_data": "GREY/GREEN VOLCANIC WITH A FEW GREEN TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197347}}, {"model": "wells.lithologydescription", "pk": "ca8386a9-8bad-40e8-93aa-ea38dfa94538", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, "well_tag_number": 112903, "lithology_from": "54.00", "lithology_to": "97.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "6.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "6 - 20 GPM @ 95'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201904}}, {"model": "wells.lithologydescription", "pk": "ca852ca9-3e88-479c-96a4-11cbf605201a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, "well_tag_number": 112312, "lithology_from": "78.00", "lithology_to": "79.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197846}}, {"model": "wells.lithologydescription", "pk": "ca9ae0bf-0c26-4fb7-b25e-a720af1778d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well_tag_number": 113290, "lithology_from": "0.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Black, white, green bedroc", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203987}}, {"model": "wells.lithologydescription", "pk": "caa0188b-a708-4a66-a130-f41ebdf50ea6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, "well_tag_number": 112373, "lithology_from": "347.00", "lithology_to": "375.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198320}}, {"model": "wells.lithologydescription", "pk": "caab209b-06b2-456e-abbc-43fc5488bbfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, "well_tag_number": 113206, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203592}}, {"model": "wells.lithologydescription", "pk": "caae3da5-0aa8-4bcf-bc5d-54553c689cde", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well_tag_number": 113153, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203313}}, {"model": "wells.lithologydescription", "pk": "cab8ce3e-a4a0-4b28-84bc-ed8d2b6f5335", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well_tag_number": 113150, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203290}}, {"model": "wells.lithologydescription", "pk": "cabab950-fa2d-48bc-8b54-edee465cb123", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:28:59Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "450.00", "lithology_to": "470.00", "lithology_raw_data": "granite", "lithology_description": null, "lithology_colour": "07", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202592}}, {"model": "wells.lithologydescription", "pk": "cabcbbc0-2302-4824-91d7-c5c041b7cc6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "335.00", "lithology_to": "341.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202837}}, {"model": "wells.lithologydescription", "pk": "caca345b-16f5-4475-bb4c-179c4c99e67a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, "well_tag_number": 112564, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM-HARD; CEMENTED GRAVELS, MEDIUM SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199747}}, {"model": "wells.lithologydescription", "pk": "cacef12a-5db6-4661-98a8-058a101051aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "465.00", "lithology_to": "470.00", "lithology_raw_data": "MW", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201505}}, {"model": "wells.lithologydescription", "pk": "cad023be-eee3-418a-b5e1-25e89dcfb6c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "14.00", "lithology_to": "25.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201323}}, {"model": "wells.lithologydescription", "pk": "cad4e462-ddc2-49ca-ad30-b245266909db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "3.00", "lithology_to": "35.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200799}}, {"model": "wells.lithologydescription", "pk": "cad5ded8-1deb-4ded-9137-b5448428875a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "238.00", "lithology_to": "241.00", "lithology_raw_data": "pea gravels", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203661}}, {"model": "wells.lithologydescription", "pk": "cad89ec8-5d58-4de7-96d7-7c41fb3c3b36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "22.00", "lithology_to": "107.00", "lithology_raw_data": "gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202643}}, {"model": "wells.lithologydescription", "pk": "cadb8c00-c1e3-454f-8afa-20e3366454a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "25.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201920}}, {"model": "wells.lithologydescription", "pk": "cae0843f-40ab-42ff-a70d-a4dbf3dc8ce9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "33.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "10", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203666}}, {"model": "wells.lithologydescription", "pk": "cae65a03-e2d3-44db-9270-8fa39f57aef6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "420.00", "lithology_to": "510.00", "lithology_raw_data": "MEDIUM SOFT; GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=TAN, GREY AND GREEN; TRACE OF WATER; FRACTURED 480'-500'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200626}}, {"model": "wells.lithologydescription", "pk": "caeb1751-f3ca-4887-ace9-7725fed92353", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well_tag_number": 113079, "lithology_from": "216.00", "lithology_to": "218.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "18", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fractured", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202883}}, {"model": "wells.lithologydescription", "pk": "caf0260f-3ff4-465b-b6e1-cb2d964936c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "292.00", "lithology_to": "307.00", "lithology_raw_data": "FINE TO MEDIUM FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201493}}, {"model": "wells.lithologydescription", "pk": "caf370ff-9f78-40af-9af5-04e730e2ea7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "164.00", "lithology_to": "166.00", "lithology_raw_data": "silts", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198732}}, {"model": "wells.lithologydescription", "pk": "caf4f2a0-2b43-4ae5-aa2f-2e9a970f4ef9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "330.00", "lithology_to": "338.00", "lithology_raw_data": "sandy", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200340}}, {"model": "wells.lithologydescription", "pk": "caf62eab-273b-4a96-8522-1c85687122d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "300.00", "lithology_to": "430.00", "lithology_raw_data": "with black streaks ", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199702}}, {"model": "wells.lithologydescription", "pk": "cafa9d5c-c010-4411-8c30-28f94aaf7e78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T20:46:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, "well_tag_number": 113039, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202627}}, {"model": "wells.lithologydescription", "pk": "cafe1441-3102-4eaa-a82e-ca23b26cdda6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well_tag_number": 112845, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "ASPHALT, DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201442}}, {"model": "wells.lithologydescription", "pk": "cb029346-9243-4c69-8bcd-771d8d763132", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well_tag_number": 112969, "lithology_from": "40.00", "lithology_to": "41.00", "lithology_raw_data": "SMALL BOULDERS, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202282}}, {"model": "wells.lithologydescription", "pk": "cb249691-959b-4291-9580-439be27d7972", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well_tag_number": 112862, "lithology_from": "110.00", "lithology_to": "114.00", "lithology_raw_data": "SAND WITH GRAVEL/SOME CLAY & FINES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201651}}, {"model": "wells.lithologydescription", "pk": "cb2e26f4-af45-41e2-9bbc-7cf6beb69a09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "79.00", "lithology_to": "117.00", "lithology_raw_data": "BLACK/GREY, VOLCANIC, FEW TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198103}}, {"model": "wells.lithologydescription", "pk": "cb2eb635-b2d2-4534-9672-f8597fd1c3f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "860.00", "lithology_to": "890.00", "lithology_raw_data": "soft formation", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LARGE FLUID LOSS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203068}}, {"model": "wells.lithologydescription", "pk": "cb310484-aa4d-4d93-94dc-fdeda9f3f987", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well_tag_number": 112816, "lithology_from": "21.00", "lithology_to": "210.00", "lithology_raw_data": "hard zones, some light grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201262}}, {"model": "wells.lithologydescription", "pk": "cb393014-7c10-4e36-a4ba-fdaf3769b131", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "152.00", "lithology_to": "173.00", "lithology_raw_data": "MEDIUM-SOFT, GREY, SAND MEDIUM FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198059}}, {"model": "wells.lithologydescription", "pk": "cb497cfb-b4eb-4838-9794-ee021e026d14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "123.00", "lithology_to": "145.00", "lithology_raw_data": "SILTY CLAY, SOME GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198020}}, {"model": "wells.lithologydescription", "pk": "cb594622-27e8-4b91-aacd-b9d6212bf901", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well_tag_number": 112383, "lithology_from": "328.00", "lithology_to": "335.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198396}}, {"model": "wells.lithologydescription", "pk": "cb72abd2-c195-49ba-b9d9-7395d320e53e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well_tag_number": 112750, "lithology_from": "98.00", "lithology_to": "113.00", "lithology_raw_data": "TAN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200898}}, {"model": "wells.lithologydescription", "pk": "cb8e7c2a-2b71-431f-a31f-4b5a88c3d2bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, "well_tag_number": 112294, "lithology_from": "16.00", "lithology_to": "40.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197750}}, {"model": "wells.lithologydescription", "pk": "cb98f4ce-a5d8-40f2-b45f-68a30a2f1bed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "95.00", "lithology_to": "123.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198512}}, {"model": "wells.lithologydescription", "pk": "cbaaadc4-e912-4d15-b4d0-4e3fd3984585", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY & TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201617}}, {"model": "wells.lithologydescription", "pk": "cbbfe917-241f-4c8c-9cef-72631d8307c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "405.00", "lithology_to": "420.00", "lithology_raw_data": "FINE SAND, SILT AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198520}}, {"model": "wells.lithologydescription", "pk": "cbc4f509-9de9-4f8d-a94c-fd27ce037416", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "53.00", "lithology_to": "73.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198885}}, {"model": "wells.lithologydescription", "pk": "cbcce457-946a-4f98-9a98-89dd837e8f59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "200.00", "lithology_to": "215.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198584}}, {"model": "wells.lithologydescription", "pk": "cbd243cb-90d0-4fe0-8338-5512f759c910", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, "well_tag_number": 112394, "lithology_from": "4.00", "lithology_to": "96.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198455}}, {"model": "wells.lithologydescription", "pk": "cbe623ee-21e3-4a24-8bc8-33eefed9d8b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:19:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, "well_tag_number": 113006, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "compact", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB, salty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202466}}, {"model": "wells.lithologydescription", "pk": "cc0bf06c-c2c2-4949-8c38-bba48171bffc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "178.00", "lithology_to": "187.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199462}}, {"model": "wells.lithologydescription", "pk": "cc0e3f3b-d89d-43b4-aba2-8e39c469d02b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "130.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE/FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198070}}, {"model": "wells.lithologydescription", "pk": "cc128d4a-26b3-4445-a837-0215c5247008", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well_tag_number": 113166, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "cobbles/gravel", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203355}}, {"model": "wells.lithologydescription", "pk": "cc16a069-453f-4514-9749-8b21a7aeb06e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOP SOIL WITH ORGANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197833}}, {"model": "wells.lithologydescription", "pk": "cc22446b-eb42-4217-b3fc-a01d7450ca65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "8.00", "lithology_to": "70.00", "lithology_raw_data": "SHALE, SANDSTONE LAYERED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "30'=10 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199871}}, {"model": "wells.lithologydescription", "pk": "cc383ab0-6e01-40cc-99be-02a9f5122810", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well_tag_number": 112451, "lithology_from": "81.00", "lithology_to": "101.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198900}}, {"model": "wells.lithologydescription", "pk": "cc5449f1-a2c0-410e-9bc6-3b31f1c54b7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well_tag_number": 113060, "lithology_from": "81.00", "lithology_to": "140.00", "lithology_raw_data": "SILT WITH SOME SANDS AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202719}}, {"model": "wells.lithologydescription", "pk": "cc5b8b75-786a-47f1-8579-df853daf01a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well_tag_number": 112450, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY/ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198890}}, {"model": "wells.lithologydescription", "pk": "cc61bb1c-88c4-40fb-9cb7-a908f5ea38d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197399}}, {"model": "wells.lithologydescription", "pk": "cc74267c-26ee-40fc-82d2-721cc0c41dd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199033}}, {"model": "wells.lithologydescription", "pk": "cc8096ac-a762-4c63-a1da-82510111befc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "460.00", "lithology_to": "535.00", "lithology_raw_data": "MEDIUM-HARD; HARDER VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, WHITE AND TAN; SOFT SPOT AND FRACTURE @ 486'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200471}}, {"model": "wells.lithologydescription", "pk": "cc8208fc-56df-42d8-9e90-a4c66ad0e9d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "383.00", "lithology_to": "385.00", "lithology_raw_data": "hard clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202419}}, {"model": "wells.lithologydescription", "pk": "cc8e48b9-1ba3-49e1-b82d-0d61e9529f32", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well_tag_number": 112370, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "MEDIUM/HARD GRANITE/GNEISS TYPE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER INCREASED TO 6 GPM; FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198313}}, {"model": "wells.lithologydescription", "pk": "cc8e4b9b-ba8a-475e-91a3-c9448e5a0afc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "240.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM-HARD; CONGLOMERATE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK, WHITE AND GREY; DRY SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200769}}, {"model": "wells.lithologydescription", "pk": "cc99499d-1e95-4044-a048-78251388e9ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198228}}, {"model": "wells.lithologydescription", "pk": "cc9f7769-4eaf-4f8b-98b8-1a6942bef622", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "110.00", "lithology_to": "125.00", "lithology_raw_data": "HARDER BROWN SILT, SANDS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200956}}, {"model": "wells.lithologydescription", "pk": "cca1d220-b29f-4f36-950c-00ee1b2eb765", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": ".6 iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199774}}, {"model": "wells.lithologydescription", "pk": "cca6ec3c-cba0-4c37-94e3-03558e50336c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:29:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, "well_tag_number": 112505, "lithology_from": "47.00", "lithology_to": "57.00", "lithology_raw_data": "W.B. SANDS & GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199340}}, {"model": "wells.lithologydescription", "pk": "ccc332af-ebc0-46ed-9634-b745f0ae0bc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well_tag_number": 112951, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202147}}, {"model": "wells.lithologydescription", "pk": "ccc4f139-a690-40eb-ab6a-9461e997cde5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199431}}, {"model": "wells.lithologydescription", "pk": "ccd2da89-75a8-46bb-b11d-f4993ad9281e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, "well_tag_number": 112241, "lithology_from": "8.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197486}}, {"model": "wells.lithologydescription", "pk": "cd00fd92-4fdd-4652-a232-43c8939d4b0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199078}}, {"model": "wells.lithologydescription", "pk": "cd164d25-cc55-453d-89ee-4986de727e98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "FRACTURED BEDROCK LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202428}}, {"model": "wells.lithologydescription", "pk": "cd19a1c7-cff4-4f3a-8d96-e62ddc7a03a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "45.00", "lithology_to": "48.00", "lithology_raw_data": "sand, med coarse", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "med sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203482}}, {"model": "wells.lithologydescription", "pk": "cd3afec8-38fa-47d1-998a-39e7dab52945", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "206.00", "lithology_to": "259.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197599}}, {"model": "wells.lithologydescription", "pk": "cd3de7e6-3b62-4661-b8af-76243b4a2657", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well_tag_number": 112884, "lithology_from": "500.00", "lithology_to": "560.00", "lithology_raw_data": "GREY & BLACK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "BROKEN UP ROCK @ 540'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201793}}, {"model": "wells.lithologydescription", "pk": "cd575b76-f199-4ed8-83f1-e06e80accf4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well_tag_number": 112457, "lithology_from": "80.00", "lithology_to": "94.00", "lithology_raw_data": "SILT WITH CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198950}}, {"model": "wells.lithologydescription", "pk": "cd67ef48-7f18-4672-82df-d361db610d6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "158.00", "lithology_to": "169.00", "lithology_raw_data": "gravel", "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "46", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 168', open bottom", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202323}}, {"model": "wells.lithologydescription", "pk": "cd7b2600-a6b1-4335-8dff-b25642879919", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "136.00", "lithology_to": "146.00", "lithology_raw_data": "DAMP VERY SILT SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202687}}, {"model": "wells.lithologydescription", "pk": "cd805aa3-4a02-49c6-97e0-6c7616a97f71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "420.00", "lithology_to": "440.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "COLOUR=GREY/BLUE; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199860}}, {"model": "wells.lithologydescription", "pk": "cd8f3691-8a6a-47eb-b749-da00f52292c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, "well_tag_number": 112685, "lithology_from": "53.00", "lithology_to": "57.00", "lithology_raw_data": "HARD PAN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200504}}, {"model": "wells.lithologydescription", "pk": "cda78a00-f703-48c8-b63e-3159a5d47506", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "0.00", "lithology_to": "161.00", "lithology_raw_data": "PREVIOUSLY DRILLED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO LOG AVAILABLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199676}}, {"model": "wells.lithologydescription", "pk": "cdb9c7f0-8be4-4cf3-b6f5-954e4166ce5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "160.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "RED/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199030}}, {"model": "wells.lithologydescription", "pk": "cdbb28f0-e440-4d59-8aee-950b09ab0902", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:55:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:55:00Z", "activity_submission": null, "well_tag_number": 112371, "lithology_from": "48.00", "lithology_to": "49.00", "lithology_raw_data": "silt and clay", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198315}}, {"model": "wells.lithologydescription", "pk": "cddec5f8-f513-4d26-86ed-83794f7f16e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "259.00", "lithology_to": "262.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197600}}, {"model": "wells.lithologydescription", "pk": "cddf3dbb-79a0-4f96-866d-69c4bb66170b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well_tag_number": 113121, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203092}}, {"model": "wells.lithologydescription", "pk": "cde0dc80-c8bd-4a11-a9ea-edf216c02336", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, "well_tag_number": 113285, "lithology_from": "54.00", "lithology_to": "75.00", "lithology_raw_data": "FINE GRAVEL WITH MEDIUM TO COARSE SAND TRACE OF WATER 50 TO 65 MORE WATER FROM 65 TO 75", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203971}}, {"model": "wells.lithologydescription", "pk": "cdf54700-ec3f-4796-be51-898c21245402", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "6.00", "lithology_to": "11.00", "lithology_raw_data": "CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202336}}, {"model": "wells.lithologydescription", "pk": "ce0f4842-9edc-4c99-bd26-3717dca605c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "1360.00", "lithology_to": "1458.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203075}}, {"model": "wells.lithologydescription", "pk": "ce161488-6633-44c6-a7fc-2c9e9871f975", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "59.00", "lithology_to": "82.00", "lithology_raw_data": "VERY DENSE; CLAY AND GRAVEL TILL WITH COBBLES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200733}}, {"model": "wells.lithologydescription", "pk": "ce16289c-fda1-4a9b-8a56-d8d3d9db1b14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "85.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY AND SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199585}}, {"model": "wells.lithologydescription", "pk": "ce227983-7dab-4f38-ae73-890955a40bba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "180.00", "lithology_to": "182.00", "lithology_raw_data": "MEDIUM-HARD, CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198076}}, {"model": "wells.lithologydescription", "pk": "ce356930-97f1-4d6f-9466-48bad7a4a511", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well_tag_number": 112895, "lithology_from": "52.00", "lithology_to": "86.00", "lithology_raw_data": "SILT & CLAY", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201865}}, {"model": "wells.lithologydescription", "pk": "ce3d96e9-d8a6-49d3-a6bc-ec4ed0dfaca7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "84.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED; GREY/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199095}}, {"model": "wells.lithologydescription", "pk": "ce403bc6-0d47-4135-b916-d878be3cd466", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, "well_tag_number": 113149, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203284}}, {"model": "wells.lithologydescription", "pk": "ce4a081e-8dfe-45fd-976d-4f9c3c7477b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "17.00", "lithology_to": "31.00", "lithology_raw_data": "BROWN SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202702}}, {"model": "wells.lithologydescription", "pk": "ce4ff658-ce06-4c87-8add-76de8279a05a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "8.00", "lithology_to": "37.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200872}}, {"model": "wells.lithologydescription", "pk": "ce5872fa-7cf0-4838-8f3c-d60404fcb1ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "280.00", "lithology_to": "355.00", "lithology_raw_data": "Sand, course grained, trace gravel, wet", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Well graded sand, some silt, trace gravel, producing water (~5 gpm) at 335ft; fine to medium sand and some silt at 339ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203512}}, {"model": "wells.lithologydescription", "pk": "ce5ca650-6790-4f29-87eb-497bfb41b3e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MINOR SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200033}}, {"model": "wells.lithologydescription", "pk": "ce6557ef-5398-4c5b-badc-c13be7b446d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "11.00", "lithology_to": "27.00", "lithology_raw_data": "till", "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198254}}, {"model": "wells.lithologydescription", "pk": "ce662ae4-2518-4714-bc5a-29b52960d36e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, "well_tag_number": 112703, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "BROKEN BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200574}}, {"model": "wells.lithologydescription", "pk": "ce6b5e9a-a6be-4610-96ab-6b30138ea3f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "340.00", "lithology_to": "358.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202417}}, {"model": "wells.lithologydescription", "pk": "ce77416b-8b81-4f59-9d69-20ff2527d312", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "126.00", "lithology_to": "138.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197671}}, {"model": "wells.lithologydescription", "pk": "ce77ceab-c536-4cb4-b6a9-c30c862bd730", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:15:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, "well_tag_number": 112926, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "COARSE GRAVEL & SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202052}}, {"model": "wells.lithologydescription", "pk": "ce7c1a71-bf96-4fca-b4f4-024bbb9ed11b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "17.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198656}}, {"model": "wells.lithologydescription", "pk": "ce7fecd0-8339-4b9b-b275-bb90871490fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well_tag_number": 112548, "lithology_from": "194.00", "lithology_to": "200.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199650}}, {"model": "wells.lithologydescription", "pk": "ce906fb3-f2ed-4c88-9d1d-be80602c65c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, "well_tag_number": 112685, "lithology_from": "3.00", "lithology_to": "30.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200502}}, {"model": "wells.lithologydescription", "pk": "ce96b849-abbc-4d42-b5a6-801f824f2395", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, "well_tag_number": 112333, "lithology_from": "55.00", "lithology_to": "105.00", "lithology_raw_data": "BROWN-GREY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198014}}, {"model": "wells.lithologydescription", "pk": "ce9e41d8-9abd-4381-9c44-9fdaa25f8f61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "58.00", "lithology_to": "91.00", "lithology_raw_data": "silty, silt layers", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200334}}, {"model": "wells.lithologydescription", "pk": "ceaf1b02-30fc-49f1-a749-affb44a3077e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well_tag_number": 112990, "lithology_from": "95.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL & SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202409}}, {"model": "wells.lithologydescription", "pk": "cebaa4f4-4c3d-479b-81a0-6a31afd0a512", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T08:29:39Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-01T08:32:07Z", "activity_submission": null, "well_tag_number": 112731, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "TIGHT, CEMENTED BOULDERS; SAND AND GRAVEL WITH TRACE OF CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200770}}, {"model": "wells.lithologydescription", "pk": "cebb9e4a-d6d5-4e2f-9fe8-82983054ab0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "114.00", "lithology_to": "139.00", "lithology_raw_data": "FINE SANDSTONE WITH S&P LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "TOTAL STATIC 104 BGL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201545}}, {"model": "wells.lithologydescription", "pk": "cebede01-43d8-4a82-a2f6-7c968a7dac90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "42.00", "lithology_to": "58.00", "lithology_raw_data": "medium fine grain", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202318}}, {"model": "wells.lithologydescription", "pk": "ced4aef7-aaa1-4496-a4b4-2b87615a113b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, "well_tag_number": 112463, "lithology_from": "14.00", "lithology_to": "147.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "36", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198994}}, {"model": "wells.lithologydescription", "pk": "cedf11ea-0f7a-4d9c-8f6e-ff75821dfa39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbles", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201577}}, {"model": "wells.lithologydescription", "pk": "cee1a443-c05b-4865-9a8e-934ce179f19d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "232.00", "lithology_to": "254.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201777}}, {"model": "wells.lithologydescription", "pk": "ceea8c2a-fb9d-4412-b52c-f1421e5f8f09", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well_tag_number": 112357, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198210}}, {"model": "wells.lithologydescription", "pk": "cef7be70-d7fb-4f55-aef9-ad2f7d9389bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "190.00", "lithology_to": "208.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203328}}, {"model": "wells.lithologydescription", "pk": "cef9065a-7c44-467e-b217-aed284c04045", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "24.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198382}}, {"model": "wells.lithologydescription", "pk": "ceff4044-725b-4c12-b99d-ba50b2b0d808", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well_tag_number": 112600, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199982}}, {"model": "wells.lithologydescription", "pk": "cf18ee3c-4534-4f25-b44b-e1e787a9521b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:43:34Z", "activity_submission": null, "well_tag_number": 113146, "lithology_from": "280.00", "lithology_to": "310.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203274}}, {"model": "wells.lithologydescription", "pk": "cf19b270-a353-4040-a597-e3ca4064b397", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "60.00", "lithology_to": "75.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199253}}, {"model": "wells.lithologydescription", "pk": "cf227ded-f8d6-46a7-a248-6eac7e788ddc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well_tag_number": 113155, "lithology_from": "210.00", "lithology_to": "236.00", "lithology_raw_data": null, "lithology_description": "11", "lithology_colour": "16", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203330}}, {"model": "wells.lithologydescription", "pk": "cf327a83-e1fd-4a42-9821-b9448173fe18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, "well_tag_number": 112694, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200538}}, {"model": "wells.lithologydescription", "pk": "cf33c8db-8ab5-4f6f-91eb-2ced6d7626b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "175.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198332}}, {"model": "wells.lithologydescription", "pk": "cf49d1bc-0a09-475c-87fc-a54c3ea2b24b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T19:53:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, "well_tag_number": 113013, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202496}}, {"model": "wells.lithologydescription", "pk": "cf635f2d-1e56-4d06-b54b-c4ddbd617f52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "174.00", "lithology_to": "175.00", "lithology_raw_data": "W.B. GREY SILTY SAND AND GRAVEL (WATER WENT BLACK)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201320}}, {"model": "wells.lithologydescription", "pk": "cf792715-bcb9-4559-a0a1-ef959149d5c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "45.00", "lithology_to": "65.00", "lithology_raw_data": "GRAVEL/SOME LARGE COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198152}}, {"model": "wells.lithologydescription", "pk": "cf7c03fe-b8a0-4da5-bae0-b48ccac8b6d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, "well_tag_number": 112891, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201838}}, {"model": "wells.lithologydescription", "pk": "cf8ef698-7361-4eec-9ff8-910b9fbee71c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "39.00", "lithology_to": "141.00", "lithology_raw_data": "GREY CLAY WITH LAYERS OF SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202777}}, {"model": "wells.lithologydescription", "pk": "cf90009d-05b9-49a4-a624-a17befc96013", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "174.00", "lithology_to": "180.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREY/GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199803}}, {"model": "wells.lithologydescription", "pk": "cf9494bd-d34c-4120-8309-c40dd33b75c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:00:45Z", "activity_submission": null, "well_tag_number": 112639, "lithology_from": "0.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": "44", "lithology_colour": null, "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200315}}, {"model": "wells.lithologydescription", "pk": "cf98a777-3ff0-4d18-a2ef-0de57f2d680c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well_tag_number": 113082, "lithology_from": "130.00", "lithology_to": "170.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202895}}, {"model": "wells.lithologydescription", "pk": "cf9eaae4-5f4b-448b-899e-ce5c45e7dfb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well_tag_number": 112879, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "ORGANIC STICKS & SAND, GREY AND BLACK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201751}}, {"model": "wells.lithologydescription", "pk": "cfa26918-785f-4937-8f8a-c490f2a5c1bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "129.00", "lithology_to": "132.00", "lithology_raw_data": "sand", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203783}}, {"model": "wells.lithologydescription", "pk": "cfb3b941-3659-43bf-b222-6664fe9e5eba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, "well_tag_number": 112425, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198665}}, {"model": "wells.lithologydescription", "pk": "cfbf4052-1e2c-4878-881e-60a7cdb7e27d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well_tag_number": 112748, "lithology_from": "281.00", "lithology_to": "460.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN AND BLACK; SOLID; WATER BEARING @ 438'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200884}}, {"model": "wells.lithologydescription", "pk": "cfc1feb6-baa2-4d57-afde-5d9faa4c23bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well_tag_number": 112536, "lithology_from": "53.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, SAND MINOR", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199566}}, {"model": "wells.lithologydescription", "pk": "cfe5fd68-fa38-4233-8960-18ed74d5e53f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203084}}, {"model": "wells.lithologydescription", "pk": "d0024363-2590-4aaa-b3b0-2385054e3c12", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:32:33Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:33Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "42.00", "lithology_to": "46.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200114}}, {"model": "wells.lithologydescription", "pk": "d01217bc-1c75-4cbb-a0bc-9a5b91091fd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, "well_tag_number": 113149, "lithology_from": "42.00", "lithology_to": "50.00", "lithology_raw_data": "cased bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203286}}, {"model": "wells.lithologydescription", "pk": "d01f40dc-ef80-48d6-a381-d05540e63620", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "134.00", "lithology_to": "138.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201971}}, {"model": "wells.lithologydescription", "pk": "d02a93f1-5281-467d-86ec-85ac72d9cfa9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "80.00", "lithology_to": "158.00", "lithology_raw_data": "medium fine", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet at 127'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202322}}, {"model": "wells.lithologydescription", "pk": "d02d0c02-75a4-46a5-823f-a198b2afe183", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, "well_tag_number": 113043, "lithology_from": "107.00", "lithology_to": "108.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202644}}, {"model": "wells.lithologydescription", "pk": "d034f571-c038-4508-b730-ce7d4a92bf96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well_tag_number": 112613, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silts", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200088}}, {"model": "wells.lithologydescription", "pk": "d038dd1c-5984-48a6-9c74-6902703a348c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "8.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203238}}, {"model": "wells.lithologydescription", "pk": "d03ff497-796a-40a4-b4d2-98d6bccd0f96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201027}}, {"model": "wells.lithologydescription", "pk": "d043841f-aa04-4045-9b1e-1ad68d021d70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, "well_tag_number": 112288, "lithology_from": "182.00", "lithology_to": "199.00", "lithology_raw_data": "VOLCANIC - CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197726}}, {"model": "wells.lithologydescription", "pk": "d0459147-01e4-4f0c-ad14-dcab09b9af5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, "well_tag_number": 112246, "lithology_from": "11.00", "lithology_to": "14.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197505}}, {"model": "wells.lithologydescription", "pk": "d049651b-c841-4066-8ba0-3081caefa30f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "90.00", "lithology_to": "107.00", "lithology_raw_data": "Sand, trace to some gravel, trace silt, brown-grey, moist", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203505}}, {"model": "wells.lithologydescription", "pk": "d0496538-ead4-4121-9948-ad2d9ca28618", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "39.00", "lithology_to": "68.00", "lithology_raw_data": "CLAYS AND SANDS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203948}}, {"model": "wells.lithologydescription", "pk": "d04f6338-9848-4400-b069-31f5039f8992", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-13T21:03:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, "well_tag_number": 113032, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202596}}, {"model": "wells.lithologydescription", "pk": "d04ff665-10f6-4fed-9fce-500d9e19e0e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, "well_tag_number": 112859, "lithology_from": "45.00", "lithology_to": "102.00", "lithology_raw_data": "medium coarse", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201629}}, {"model": "wells.lithologydescription", "pk": "d0531b52-fb50-4ac3-b2b2-596521458807", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "255.00", "lithology_to": "338.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200950}}, {"model": "wells.lithologydescription", "pk": "d0544979-d81c-41cb-a230-a87391a1b773", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:40:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, "well_tag_number": 112928, "lithology_from": "85.00", "lithology_to": "137.00", "lithology_raw_data": "80 TO 90 BIG GRAVEL, 137 BEDROCK, 136 SHALE APPROX", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "250.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202061}}, {"model": "wells.lithologydescription", "pk": "d06e8e42-260e-42dc-a042-c6dfa295528f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "231.00", "lithology_to": "233.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "leaking water from fracture at 81'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202826}}, {"model": "wells.lithologydescription", "pk": "d0751475-ced9-4e4a-abf6-880b2a31e48d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "65.00", "lithology_to": "96.00", "lithology_raw_data": "WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200182}}, {"model": "wells.lithologydescription", "pk": "d079f179-cc13-4e43-9bdd-e095ff64e92f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well_tag_number": 112409, "lithology_from": "4.00", "lithology_to": "280.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198537}}, {"model": "wells.lithologydescription", "pk": "d08443f5-5837-4ce4-9753-a37662aa841b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": "BROWN-YELLOW SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198071}}, {"model": "wells.lithologydescription", "pk": "d086676e-2d3e-4f61-9efa-1d822e24e0d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well_tag_number": 112272, "lithology_from": "7.00", "lithology_to": "68.00", "lithology_raw_data": "till", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197631}}, {"model": "wells.lithologydescription", "pk": "d09ea6cd-95be-4168-8d05-e558835be183", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "FRACTURED ROCK, WEATHERED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199212}}, {"model": "wells.lithologydescription", "pk": "d0a057d1-891e-42c6-925c-3ae059a72b5b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, "well_tag_number": 112402, "lithology_from": "10.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198491}}, {"model": "wells.lithologydescription", "pk": "d0adc0cb-bea8-4325-8ee1-0c28c36115e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "fill", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202411}}, {"model": "wells.lithologydescription", "pk": "d0aefe96-83a3-476c-8b0e-0b656fe6b0f7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:01:01Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:01Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "24.00", "lithology_to": "27.00", "lithology_raw_data": "SAND, BROWN", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172302}}, {"model": "wells.lithologydescription", "pk": "d0b0165b-1249-4701-ae40-daad62b0dbfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "160.00", "lithology_to": "165.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "165 CLAY (160-165)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199264}}, {"model": "wells.lithologydescription", "pk": "d0c16799-5918-4576-902d-c509a6f01486", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, dark grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204012}}, {"model": "wells.lithologydescription", "pk": "d0c19bbf-804f-4fd1-8e31-6e6a0ff0a020", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "310.00", "lithology_to": "317.00", "lithology_raw_data": "BROKEN BLACK SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201297}}, {"model": "wells.lithologydescription", "pk": "d0d5c2b2-8a75-426c-9dc8-ff6263461483", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, "well_tag_number": 113119, "lithology_from": "41.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203087}}, {"model": "wells.lithologydescription", "pk": "d0d82d74-138a-4d19-87b8-ec95087d9f78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "7.00", "lithology_to": "16.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198565}}, {"model": "wells.lithologydescription", "pk": "d0e4ff07-3ca5-430a-98cc-f1ebe0aa6f12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "4.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201815}}, {"model": "wells.lithologydescription", "pk": "d0f5e664-7aca-4c1f-a7a4-ff146e54afa7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "58.00", "lithology_to": "67.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202319}}, {"model": "wells.lithologydescription", "pk": "d0ff7971-e1bf-46df-b4e4-a7aeb411b903", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "75.00", "lithology_to": "89.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197401}}, {"model": "wells.lithologydescription", "pk": "d104fd66-dffc-4938-a6fe-c3ff2a0b7419", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "70.00", "lithology_to": "77.00", "lithology_raw_data": "GREY BROWN", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201620}}, {"model": "wells.lithologydescription", "pk": "d1089a8e-d579-4f1c-9e2a-ad5c0fe0a709", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "223.00", "lithology_to": "225.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198266}}, {"model": "wells.lithologydescription", "pk": "d108d540-3844-4989-aa89-e6501dafe9e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "30.00", "lithology_to": "136.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203958}}, {"model": "wells.lithologydescription", "pk": "d10c0d25-d3ee-4909-8200-609538027754", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "137.00", "lithology_to": "172.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197948}}, {"model": "wells.lithologydescription", "pk": "d10f1ddc-7d61-4030-a6fb-747627aaa248", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well_tag_number": 112383, "lithology_from": "130.00", "lithology_to": "328.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198395}}, {"model": "wells.lithologydescription", "pk": "d113806e-1e29-40b6-be5a-ac4d3cf4ce5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, "well_tag_number": 113289, "lithology_from": "14.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "orange, loose, dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203984}}, {"model": "wells.lithologydescription", "pk": "d1158f77-85e1-4e45-9921-02e0b639e5a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199727}}, {"model": "wells.lithologydescription", "pk": "d11debbf-77a9-4717-8271-12ba25b76a01", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "5.00", "lithology_to": "10.00", "lithology_raw_data": "GREY & BROWN", "lithology_description": "72", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201482}}, {"model": "wells.lithologydescription", "pk": "d11e296e-9b1e-4892-86c3-f5a6bb97fa75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "220.00", "lithology_to": "280.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198917}}, {"model": "wells.lithologydescription", "pk": "d11ef92c-a75c-4ab2-91d3-67cb0b9a76fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, "well_tag_number": 112296, "lithology_from": "137.00", "lithology_to": "207.00", "lithology_raw_data": "SANDSTONE INTERBEDDED WITH SILTSTONE & SHALE LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197763}}, {"model": "wells.lithologydescription", "pk": "d12323c8-f8c6-41be-90c4-cbdf0ffbacff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well_tag_number": 112331, "lithology_from": "197.00", "lithology_to": "202.00", "lithology_raw_data": "GREEN/GREY VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197989}}, {"model": "wells.lithologydescription", "pk": "d12c041a-9b04-45fb-b201-0b80d4c9482d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "11.00", "lithology_to": "13.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198361}}, {"model": "wells.lithologydescription", "pk": "d1359ffd-9e8b-4449-bf95-66d1ea87b2fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:44:50Z", "activity_submission": null, "well_tag_number": 113016, "lithology_from": "30.00", "lithology_to": "135.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202509}}, {"model": "wells.lithologydescription", "pk": "d14fe8fc-0ef2-419a-a0ab-65f788731d1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well_tag_number": 112339, "lithology_from": "121.00", "lithology_to": "190.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREY, VOLCANIC - SEVERAL FRACTURES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "151'=SOFT, BLACK, FRACTURE, 2 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198096}}, {"model": "wells.lithologydescription", "pk": "d15881f9-fec0-467d-9ca5-9e7a88c3d61e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "180.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE / FINE SANDSTONE / SILTSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199505}}, {"model": "wells.lithologydescription", "pk": "d159b006-e0eb-460e-9615-cba27e35dd79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "37.00", "lithology_to": "39.00", "lithology_raw_data": "SAND, GRAVEL, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5-8", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202272}}, {"model": "wells.lithologydescription", "pk": "d1902ae1-66a2-4270-8935-fbd1b16162a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:02:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, "well_tag_number": 112839, "lithology_from": "5.00", "lithology_to": "400.00", "lithology_raw_data": "sandstone", "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 75'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201410}}, {"model": "wells.lithologydescription", "pk": "d1a036cd-90de-45c7-af48-5211d8699c26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "75.00", "lithology_to": "210.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197373}}, {"model": "wells.lithologydescription", "pk": "d1a309f1-2745-48a8-8f50-22cbf524cdc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well_tag_number": 113153, "lithology_from": "25.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "clay no silt", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203314}}, {"model": "wells.lithologydescription", "pk": "d1a99b87-e9f7-4c8e-81e6-a6a94dabb37d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203265}}, {"model": "wells.lithologydescription", "pk": "d1aaa132-fadc-4ba7-ad86-e3ea4e6802d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "423.00", "lithology_to": "428.00", "lithology_raw_data": "SS hard fine grey with hard shale lenses", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203404}}, {"model": "wells.lithologydescription", "pk": "d1ada664-825a-46e3-9c12-6996d5f3c257", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "36.00", "lithology_to": "38.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198285}}, {"model": "wells.lithologydescription", "pk": "d1b81159-9aee-42a9-a7a6-15ec4fa68deb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "57.00", "lithology_to": "61.00", "lithology_raw_data": "LOOSE SILTY SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200715}}, {"model": "wells.lithologydescription", "pk": "d1c05bae-6b1d-4cf8-8369-896b7ea25cda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, "well_tag_number": 112673, "lithology_from": "117.00", "lithology_to": "119.00", "lithology_raw_data": "BROWN WATER BEARING SAND AND GRAVEL WITH ORGANICS (VERY DIRTY)", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED; STOPPED DRILLING AT 119', FORMATION GETTING DIRTIER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200459}}, {"model": "wells.lithologydescription", "pk": "d1c45c85-bbd3-44a0-9f9f-5643180aaa6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200402}}, {"model": "wells.lithologydescription", "pk": "d1cb5b60-5383-43a8-8079-64a3cfec171d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:29:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:29:01Z", "activity_submission": null, "well_tag_number": 112291, "lithology_from": "63.00", "lithology_to": "103.00", "lithology_raw_data": "BEDROCK, VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197739}}, {"model": "wells.lithologydescription", "pk": "d1d3f64c-72ce-4670-a76f-9de8255cc5d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "205.00", "lithology_to": "215.00", "lithology_raw_data": "BLUE/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED AREA", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197436}}, {"model": "wells.lithologydescription", "pk": "d1d8e4ef-834e-4873-b6a3-4f6c2f8985bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, "well_tag_number": 112640, "lithology_from": "69.00", "lithology_to": "157.00", "lithology_raw_data": "clay till ", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200318}}, {"model": "wells.lithologydescription", "pk": "d1dba43c-4740-4c0a-be88-63b34b278b7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, "well_tag_number": 112722, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200690}}, {"model": "wells.lithologydescription", "pk": "d1e81b55-201c-4891-a532-3948bc1fe516", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "221.00", "lithology_to": "235.00", "lithology_raw_data": "and sand", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203659}}, {"model": "wells.lithologydescription", "pk": "d1fe3343-4f6b-48e1-9cf2-dfbaf5ecb44d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T22:17:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, "well_tag_number": 112620, "lithology_from": "9.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "72", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200150}}, {"model": "wells.lithologydescription", "pk": "d200bdc1-e76d-4b9d-bbdd-a182cf7649cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, "well_tag_number": 112727, "lithology_from": "222.00", "lithology_to": "250.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200738}}, {"model": "wells.lithologydescription", "pk": "d201f2af-7943-4f78-9589-94e6f6dafdb9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY-SILTY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "58'=2 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199861}}, {"model": "wells.lithologydescription", "pk": "d2054fb5-a000-4487-a831-37a3e621764b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well_tag_number": 112959, "lithology_from": "40.00", "lithology_to": "54.00", "lithology_raw_data": "SILTY SAND & GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "10 +", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202216}}, {"model": "wells.lithologydescription", "pk": "d20f8cdc-4445-47e7-9b9c-11db5663e538", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199967}}, {"model": "wells.lithologydescription", "pk": "d218417c-dbc9-4190-a251-318785e8ae49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "0.00", "lithology_to": "1.31", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CEMENT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201075}}, {"model": "wells.lithologydescription", "pk": "d21a5ef6-e236-430e-a350-2fd5cf192bd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, "well_tag_number": 112825, "lithology_from": "124.00", "lithology_to": "127.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201329}}, {"model": "wells.lithologydescription", "pk": "d21d5872-3414-4ec7-acf1-696358a5e28c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, "well_tag_number": 112861, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": "MED SOFT TO MED HARD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201645}}, {"model": "wells.lithologydescription", "pk": "d229f343-fe27-4b34-b081-6c69d2d6da8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, "well_tag_number": 112389, "lithology_from": "295.00", "lithology_to": "375.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURED AREA, WATER INCREASED TO 5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198433}}, {"model": "wells.lithologydescription", "pk": "d2336cc5-28b0-4f41-a2cd-67ebc8494819", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well_tag_number": 113152, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203303}}, {"model": "wells.lithologydescription", "pk": "d24584ee-57f8-49d6-a5c4-a0f0f959a949", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "17.00", "lithology_to": "24.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202489}}, {"model": "wells.lithologydescription", "pk": "d2554fdc-4f44-4007-bb15-f54a30513a6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-02T21:43:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-02T21:43:35Z", "activity_submission": null, "well_tag_number": 110627, "lithology_from": "55.00", "lithology_to": null, "lithology_raw_data": "BEDROCK VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 187792}}, {"model": "wells.lithologydescription", "pk": "d262ce69-ae9a-4a33-9036-0f3699fa672f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well_tag_number": 112431, "lithology_from": "11.00", "lithology_to": "26.00", "lithology_raw_data": "with rotten rock", "lithology_description": "06", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198706}}, {"model": "wells.lithologydescription", "pk": "d266a8f4-6fb5-4793-b524-c0add935f400", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T07:42:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, "well_tag_number": 112765, "lithology_from": "11.50", "lithology_to": "15.00", "lithology_raw_data": "MEDIUM STIFF; SILTY CLAY - TRACE SAND & GRAVEL. INCREASE IN TRACE SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; WET; WET POCKETS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201009}}, {"model": "wells.lithologydescription", "pk": "d26a262b-b876-4037-8add-5aa2d9da3988", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "194.00", "lithology_to": "222.00", "lithology_raw_data": "CLAYEY SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200989}}, {"model": "wells.lithologydescription", "pk": "d26a9f65-1adf-4fda-b984-2c47ba629ec8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "286.00", "lithology_to": "290.00", "lithology_raw_data": "COMPACT SAND", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202388}}, {"model": "wells.lithologydescription", "pk": "d26f899a-f798-4e2f-a670-5502479ac150", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "246.00", "lithology_to": "264.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BLACK, WHITE, TAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159177}}, {"model": "wells.lithologydescription", "pk": "d294d413-08ff-4918-b031-4d24d3b48758", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "light green quartz soft fractured rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202583}}, {"model": "wells.lithologydescription", "pk": "d29cd3be-20ff-4036-ad12-cae10ff86d9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "47.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel with till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198738}}, {"model": "wells.lithologydescription", "pk": "d2a30c92-0533-45c2-b000-b62d0986933f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:30:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:44Z", "activity_submission": null, "well_tag_number": 112465, "lithology_from": "0.00", "lithology_to": "161.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199008}}, {"model": "wells.lithologydescription", "pk": "d2a64169-7853-4cd7-97ab-e8cd04039441", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "93.00", "lithology_to": "147.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LOST CIRC. 95-120; WET FRAC @ 135'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201623}}, {"model": "wells.lithologydescription", "pk": "d2a939d5-aa6d-4d80-a4cd-bfe4d4accdeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well_tag_number": 112490, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199221}}, {"model": "wells.lithologydescription", "pk": "d2ae9959-19b1-40b3-ae12-9d6029afb32a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-10T23:05:34Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "282.00", "lithology_to": "285.00", "lithology_raw_data": "GRAVEL/COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197857}}, {"model": "wells.lithologydescription", "pk": "d2b43558-1a4f-4a8f-b8f2-1a00a4ed67f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "156.00", "lithology_to": "174.00", "lithology_raw_data": "W.B. GREY SILTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201319}}, {"model": "wells.lithologydescription", "pk": "d2c67fd5-a551-4654-8d0a-726069f6cf71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, "well_tag_number": 112670, "lithology_from": "16.00", "lithology_to": "25.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200445}}, {"model": "wells.lithologydescription", "pk": "d2e53c1c-92b9-4dc8-9f68-037f577cdc07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "136.00", "lithology_to": "176.00", "lithology_raw_data": "FINE SILTS, SOME SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199427}}, {"model": "wells.lithologydescription", "pk": "d31544f9-1036-4308-9d04-94cfe40c92c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "214.00", "lithology_to": "288.00", "lithology_raw_data": "SHALE / SILTSTONE / SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199465}}, {"model": "wells.lithologydescription", "pk": "d3187b08-7c61-45f8-9654-25f44f3c1eb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "13.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "cobbles,sand,gravel", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202501}}, {"model": "wells.lithologydescription", "pk": "d32779d7-baec-47a6-a542-5c69f8fcfd24", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "10.00", "lithology_to": "70.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198193}}, {"model": "wells.lithologydescription", "pk": "d32862a6-d6a9-45ed-9456-b3c81f41ab92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:57Z", "activity_submission": null, "well_tag_number": 112287, "lithology_from": "125.00", "lithology_to": "162.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197722}}, {"model": "wells.lithologydescription", "pk": "d3387f68-2579-48d4-aa11-5fb43791a1a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "290.00", "lithology_to": "295.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; DRY; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200707}}, {"model": "wells.lithologydescription", "pk": "d34be579-bd03-4c9d-b9e2-b0daba1c1076", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:04:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, "well_tag_number": 112942, "lithology_from": "113.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "80.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202120}}, {"model": "wells.lithologydescription", "pk": "d3566f63-53bf-41b3-b188-a9e0c2e5f2af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T19:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T19:59:26Z", "activity_submission": null, "well_tag_number": 112796, "lithology_from": "0.00", "lithology_to": "195.00", "lithology_raw_data": "silestone shale", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201150}}, {"model": "wells.lithologydescription", "pk": "d368cb15-fffa-4387-9d1b-e645965ab1a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203645}}, {"model": "wells.lithologydescription", "pk": "d36d288d-fd37-49d4-ad45-2df76bddafb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "140.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM/SOFT; BASALT", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199191}}, {"model": "wells.lithologydescription", "pk": "d3813952-9f2b-40d0-b865-9132263668b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "273.00", "lithology_to": "321.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199822}}, {"model": "wells.lithologydescription", "pk": "d39f3fd9-b2cc-4254-95ac-1a08184d14fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "85.00", "lithology_to": "90.00", "lithology_raw_data": "SAND GRAVEL/MINOR TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198683}}, {"model": "wells.lithologydescription", "pk": "d3a34434-5a5a-4c3e-9bde-75d0b76b5c99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "till ", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley - tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203016}}, {"model": "wells.lithologydescription", "pk": "d3ab463b-e107-4e26-a2d0-be3323d15ebe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well_tag_number": 112471, "lithology_from": "152.00", "lithology_to": "153.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199064}}, {"model": "wells.lithologydescription", "pk": "d3acc7f1-adaa-4ec3-bbef-d934ad9a54fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "214.00", "lithology_to": "232.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201776}}, {"model": "wells.lithologydescription", "pk": "d3b20e2d-dd50-43e5-9588-8120ffcae7fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well_tag_number": 112812, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "organics", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201212}}, {"model": "wells.lithologydescription", "pk": "d3b79050-7314-47c5-8510-5a17e42764ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-02T19:13:36Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "99.00", "lithology_to": "114.00", "lithology_raw_data": "SAND WITH ASH", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATER BEARING; DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200829}}, {"model": "wells.lithologydescription", "pk": "d3c2f530-a93c-42c2-83b3-9180e7c0b26d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "organics", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201376}}, {"model": "wells.lithologydescription", "pk": "d3db323a-5231-48c4-beec-a51a530765fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, "well_tag_number": 112280, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197689}}, {"model": "wells.lithologydescription", "pk": "d3f89b99-c896-44b3-b079-1f192e53bf55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "135.00", "lithology_to": "137.00", "lithology_raw_data": "FELDSPAR", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "COLOUR=WHITE, GREEN; FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199819}}, {"model": "wells.lithologydescription", "pk": "d3f8e6fa-9580-475a-9f63-a13eeb7bef35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well_tag_number": 112721, "lithology_from": "58.00", "lithology_to": "76.00", "lithology_raw_data": "FINE AND MEDIUM SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH BROWN; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200687}}, {"model": "wells.lithologydescription", "pk": "d40f0228-4eee-44c4-834b-73e5e3ca3a0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well_tag_number": 112698, "lithology_from": "27.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200555}}, {"model": "wells.lithologydescription", "pk": "d4169073-c3c8-47bf-acf4-7dd24634ea3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, "well_tag_number": 112288, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197723}}, {"model": "wells.lithologydescription", "pk": "d4191bed-ad1a-4e9f-96dc-2ec48f5abb6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199090}}, {"model": "wells.lithologydescription", "pk": "d419c707-60eb-405d-b285-34e0964b1e61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well_tag_number": 113153, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "med sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203309}}, {"model": "wells.lithologydescription", "pk": "d41a6257-273a-41e8-9bcd-a58f2c3002a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "29.00", "lithology_to": "31.00", "lithology_raw_data": "SILTY SAND SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130486}}, {"model": "wells.lithologydescription", "pk": "d43154fe-49b9-4b11-a5fa-035d2fe7431a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198660}}, {"model": "wells.lithologydescription", "pk": "d43728c2-b73f-4624-acde-1e1fd16e3ce1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well_tag_number": 112886, "lithology_from": "132.00", "lithology_to": "182.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201804}}, {"model": "wells.lithologydescription", "pk": "d43e6154-75fa-41ff-9319-ecf2c5f07c10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "49.00", "lithology_to": "82.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201522}}, {"model": "wells.lithologydescription", "pk": "d4589896-8c12-47c8-b5b0-ab8060f73414", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:51:14Z", "activity_submission": null, "well_tag_number": 112820, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "clay and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201276}}, {"model": "wells.lithologydescription", "pk": "d46d6c84-6d58-4b70-983a-93c9b7085383", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, "well_tag_number": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 230'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203042}}, {"model": "wells.lithologydescription", "pk": "d4717bd8-a1ef-4280-bfd4-a5e045df687f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "14.00", "lithology_to": "17.00", "lithology_raw_data": "gravel", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203009}}, {"model": "wells.lithologydescription", "pk": "d4822a1f-bc18-4c5d-994a-a55b83e780fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well_tag_number": 112342, "lithology_from": "42.00", "lithology_to": "210.00", "lithology_raw_data": "GREY/GREEN GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198123}}, {"model": "wells.lithologydescription", "pk": "d4852a3a-cdfd-4fa2-9936-d4a6586fd897", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:50:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, "well_tag_number": 112746, "lithology_from": "6.00", "lithology_to": "10.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200868}}, {"model": "wells.lithologydescription", "pk": "d48da463-52c6-4001-9e64-6ee2c4d1adef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, "well_tag_number": 112976, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SAND, CLAY & SMALL COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202310}}, {"model": "wells.lithologydescription", "pk": "d4b97e8a-6773-448b-ba38-ade5edcc4183", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183339}}, {"model": "wells.lithologydescription", "pk": "d4c14431-7804-4d2b-991d-4546044b5a46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198830}}, {"model": "wells.lithologydescription", "pk": "d4c6c9a7-7854-4512-97fc-f192d9006b3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "42.00", "lithology_to": "115.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202492}}, {"model": "wells.lithologydescription", "pk": "d4db6f9a-44a8-4924-9b9c-861993e89756", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "140.00", "lithology_to": "180.00", "lithology_raw_data": "BROWN/GREY, TRACE OF CLAY", "lithology_description": "45", "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202086}}, {"model": "wells.lithologydescription", "pk": "d4dccdd9-e890-49ae-a27e-bbd43a705d26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "117.00", "lithology_to": "125.00", "lithology_raw_data": "and gravel", "lithology_description": "48", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198744}}, {"model": "wells.lithologydescription", "pk": "d4e4d52e-c4cd-425b-92c5-77fa77269b68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well_tag_number": 113065, "lithology_from": "78.00", "lithology_to": "140.00", "lithology_raw_data": "SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202748}}, {"model": "wells.lithologydescription", "pk": "d4e7798b-b28d-46f1-b557-036805a8acd4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "100.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198572}}, {"model": "wells.lithologydescription", "pk": "d4e93d5d-2a24-44d0-8fd1-1878bdf004e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "light green black quartz medium soft rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202581}}, {"model": "wells.lithologydescription", "pk": "d4fc6d15-fffc-45af-813d-bd23c8999983", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "137.00", "lithology_to": "157.00", "lithology_raw_data": "DAMP CLAY, SILTS & SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199346}}, {"model": "wells.lithologydescription", "pk": "d514e815-8719-455b-ab38-6330e7faa7b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "45.00", "lithology_to": "63.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Stony", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198754}}, {"model": "wells.lithologydescription", "pk": "d54f0e70-656d-4ac9-a3ee-902f3081c440", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:24:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, "well_tag_number": 112901, "lithology_from": "183.00", "lithology_to": "191.00", "lithology_raw_data": "SAND, GRAVEL & SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201895}}, {"model": "wells.lithologydescription", "pk": "d5545931-d6e8-4965-ae2e-2cf16485ff2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well_tag_number": 112711, "lithology_from": "510.00", "lithology_to": "779.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREEN, WHITE AND PINK WITH GREY; DRY; SOLID; SOFT SPOTS @ 663', 745', 762'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200627}}, {"model": "wells.lithologydescription", "pk": "d554e0ac-2ba0-4e04-94b4-d1de3708a35d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "135.00", "lithology_to": "155.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202495}}, {"model": "wells.lithologydescription", "pk": "d576fdbb-7ecc-4b13-b7f4-d3ca9972b60e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "64.00", "lithology_to": "75.00", "lithology_raw_data": "SANDSTONE / SHALE LENSES", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199478}}, {"model": "wells.lithologydescription", "pk": "d59b705d-6d83-4c41-b2f5-c5d56dc03a65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, "well_tag_number": 112684, "lithology_from": "37.00", "lithology_to": "75.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/MIX", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200498}}, {"model": "wells.lithologydescription", "pk": "d59ce255-a6e9-488e-80f6-cde4f16adb4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200181}}, {"model": "wells.lithologydescription", "pk": "d5aafb02-7e64-423d-9d23-a9b6aa2a3bfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, "well_tag_number": 112540, "lithology_from": "67.00", "lithology_to": "128.00", "lithology_raw_data": "CLAY, SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199611}}, {"model": "wells.lithologydescription", "pk": "d5b792aa-78fe-4fff-8754-94628df34542", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "220.00", "lithology_to": "310.00", "lithology_raw_data": "FINE SILTSTONE WITH SOME GREY SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200834}}, {"model": "wells.lithologydescription", "pk": "d5bc0475-db47-496d-a9c2-5d5c56328653", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "198.00", "lithology_to": "220.00", "lithology_raw_data": "Sandstone tight", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203606}}, {"model": "wells.lithologydescription", "pk": "d5c35e77-2c67-4f72-a3be-f101d9445233", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "143.00", "lithology_to": "155.00", "lithology_raw_data": "LIGHT AND DARK GREY SHALE AND LAYERED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197998}}, {"model": "wells.lithologydescription", "pk": "d5cb7b14-71f3-48ea-92a3-966f65da6895", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, "well_tag_number": 112797, "lithology_from": "0.00", "lithology_to": "3.30", "lithology_raw_data": "ORGANIC SILTY LOAM", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201151}}, {"model": "wells.lithologydescription", "pk": "d5ce4051-cdd3-4051-baf8-c68d9125e366", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198495}}, {"model": "wells.lithologydescription", "pk": "d5d403df-76f1-44ff-9332-e52a8b59f6eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, "well_tag_number": 112918, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "01", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202010}}, {"model": "wells.lithologydescription", "pk": "d5ded0cd-43c2-4b5e-85d7-73f2fd659647", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, "well_tag_number": 112517, "lithology_from": "98.00", "lithology_to": "131.00", "lithology_raw_data": "silt layers", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199403}}, {"model": "wells.lithologydescription", "pk": "d5e3a56c-236c-48de-aab4-94b424819d7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203644}}, {"model": "wells.lithologydescription", "pk": "d5ea4d14-fad4-46ff-8978-e6f9939c601c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, "well_tag_number": 112977, "lithology_from": "67.00", "lithology_to": "71.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202320}}, {"model": "wells.lithologydescription", "pk": "d5f43652-59aa-44da-a04e-479dc60982a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, "well_tag_number": 112518, "lithology_from": "27.00", "lithology_to": "52.00", "lithology_raw_data": "W.B. COARSE SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199411}}, {"model": "wells.lithologydescription", "pk": "d5fd61d7-2c38-41f2-9299-0238deff42a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:39:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:03Z", "activity_submission": null, "well_tag_number": 112923, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY/TILL SOFT/MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202042}}, {"model": "wells.lithologydescription", "pk": "d60cb566-a9e8-4633-8157-f751376d4c95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": "SHALE & SILTSTONE", "lithology_description": "60", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201483}}, {"model": "wells.lithologydescription", "pk": "d619becd-4c4d-4005-abff-12e892ae5ae2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well_tag_number": 112757, "lithology_from": "360.00", "lithology_to": "373.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200952}}, {"model": "wells.lithologydescription", "pk": "d625fc8c-aa0c-445b-aa6c-bc1aa36fe752", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "148.00", "lithology_to": "164.00", "lithology_raw_data": "and sand", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198731}}, {"model": "wells.lithologydescription", "pk": "d62ddbdd-5f29-49a5-a5ee-3328fbd7d56b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:57:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, "well_tag_number": 113293, "lithology_from": "12.00", "lithology_to": "47.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "black & white", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204002}}, {"model": "wells.lithologydescription", "pk": "d6406841-ae81-4bb7-b1af-7edfb28a5a2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well_tag_number": 112220, "lithology_from": "570.00", "lithology_to": "590.00", "lithology_raw_data": "GREY VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197340}}, {"model": "wells.lithologydescription", "pk": "d65d71c7-69cb-47b4-a40a-3a62fd71c52e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well_tag_number": 113123, "lithology_from": "120.00", "lithology_to": "240.00", "lithology_raw_data": "bedrock, sandstone zones", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "17", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203104}}, {"model": "wells.lithologydescription", "pk": "d67a7822-624b-46e7-a270-d9752ad9bd4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "395.00", "lithology_to": "501.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "VERY_HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204086}}, {"model": "wells.lithologydescription", "pk": "d682bd6d-53f0-4f27-993b-58e7a0411f6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well_tag_number": 112498, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199292}}, {"model": "wells.lithologydescription", "pk": "d689c704-7b52-49a5-974b-b21332afe1f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:41:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:38Z", "activity_submission": null, "well_tag_number": 112704, "lithology_from": "22.00", "lithology_to": "34.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200577}}, {"model": "wells.lithologydescription", "pk": "d6ad25d9-c4f2-4d80-a72b-d7a1b25d33c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:47:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, "well_tag_number": 112248, "lithology_from": "87.00", "lithology_to": "90.70", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197512}}, {"model": "wells.lithologydescription", "pk": "d6b1ab58-0cd1-40ce-bb43-4040c120c9d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "33.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201817}}, {"model": "wells.lithologydescription", "pk": "d6b2239e-ae0b-4cce-9ed7-8240804b3cf3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:40:31Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "168.00", "lithology_to": "170.00", "lithology_raw_data": "GREY/WHITE VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197403}}, {"model": "wells.lithologydescription", "pk": "d6b56ed7-11c1-4c3c-962e-3faf62b3d04d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well_tag_number": 113021, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202542}}, {"model": "wells.lithologydescription", "pk": "d6b78a9a-04dc-4aba-9cb8-812c0fa847a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well_tag_number": 112994, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "TILL/BOULDERS, GREY/BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202436}}, {"model": "wells.lithologydescription", "pk": "d6dd2eca-54f6-4b1a-af95-2ba69194dddb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "349.00", "lithology_to": "376.50", "lithology_raw_data": "MUDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY HOLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201100}}, {"model": "wells.lithologydescription", "pk": "d6e4c7fb-fda7-4ade-80c4-7cfbf5e573a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:24:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, "well_tag_number": 112901, "lithology_from": "191.00", "lithology_to": "192.00", "lithology_raw_data": "SAND & SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5-15 GPM INCLINE PUMP OR 20'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201896}}, {"model": "wells.lithologydescription", "pk": "d6ee0e07-3a56-4af6-99a5-bc33b4daa942", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": "SS FINE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143906}}, {"model": "wells.lithologydescription", "pk": "d6f2ba25-1b03-4a47-8199-1b459d9be90e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, "well_tag_number": 112910, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "MEDIUM COARSE SAND, MEDIUM GRAVEL, BROWN/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AIRLIFT", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201940}}, {"model": "wells.lithologydescription", "pk": "d6f38711-c047-445a-8990-5eefcedb738c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, "well_tag_number": 113105, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "cased bedrock", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203005}}, {"model": "wells.lithologydescription", "pk": "d6f5218f-6914-4c2a-b060-6bb01072814d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:43:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, "well_tag_number": 113169, "lithology_from": "115.00", "lithology_to": "190.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203373}}, {"model": "wells.lithologydescription", "pk": "d71068cd-0322-467e-b960-62172281ea5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "237.00", "lithology_to": "250.00", "lithology_raw_data": "BROWN-YELLOW-RED VOLCANIC ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197955}}, {"model": "wells.lithologydescription", "pk": "d714cca7-cc51-4f97-939d-378f615ff7d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "220.00", "lithology_to": "224.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197350}}, {"model": "wells.lithologydescription", "pk": "d72238c9-f05d-4346-b404-8fba0081866f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well_tag_number": 112969, "lithology_from": "8.00", "lithology_to": "13.00", "lithology_raw_data": "SAND, GRAVEL, SMALL BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202279}}, {"model": "wells.lithologydescription", "pk": "d7232848-67ad-4c08-a5b9-e696445b72c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:21Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "350'", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "before hydrofracking", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199387}}, {"model": "wells.lithologydescription", "pk": "d736d1b9-d68f-497e-a669-3dcbafa334e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "150.00", "lithology_to": "155.00", "lithology_raw_data": "FRACTURE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MORE WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183349}}, {"model": "wells.lithologydescription", "pk": "d738693b-0168-4439-afa2-249dac46aa89", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "135.00", "lithology_to": "310.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198147}}, {"model": "wells.lithologydescription", "pk": "d7396efa-bcbe-4e6a-bb24-59e518f4a5ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:19:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, "well_tag_number": 113204, "lithology_from": "135.00", "lithology_to": "175.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203583}}, {"model": "wells.lithologydescription", "pk": "d7549283-4e30-4667-83ee-17f4b8351f3d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203828}}, {"model": "wells.lithologydescription", "pk": "d7625461-1f87-4f2d-9d0f-524263d083ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well_tag_number": 112688, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200514}}, {"model": "wells.lithologydescription", "pk": "d764cbd3-befa-4447-882d-79e25ea9f702", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "35.00", "lithology_to": "51.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "sand med ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202606}}, {"model": "wells.lithologydescription", "pk": "d76d29d9-2bed-4df4-ac30-097e273a6a1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, "well_tag_number": 112389, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SANDY SOILS SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198429}}, {"model": "wells.lithologydescription", "pk": "d78209ca-2db9-4139-b426-5df50e673e98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well_tag_number": 113173, "lithology_from": "38.00", "lithology_to": "70.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203422}}, {"model": "wells.lithologydescription", "pk": "d7860b68-0679-42b1-aa2e-3448c12d0d84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "251.00", "lithology_to": "254.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203840}}, {"model": "wells.lithologydescription", "pk": "d79da6fe-15b0-473d-8521-f856a3c59861", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "CLAY & TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201536}}, {"model": "wells.lithologydescription", "pk": "d7aa8187-7bc5-4586-a49a-ba47991d1c18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T22:43:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, "well_tag_number": 112636, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200303}}, {"model": "wells.lithologydescription", "pk": "d7b1c0a3-0105-487f-956c-00bfbe8aece6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well_tag_number": 112549, "lithology_from": "0.00", "lithology_to": "280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199651}}, {"model": "wells.lithologydescription", "pk": "d7c5ea91-9559-47f2-ac2f-79e8ed355a20", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "107.00", "lithology_to": "113.00", "lithology_raw_data": "GREY/S+P", "lithology_description": "47", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201488}}, {"model": "wells.lithologydescription", "pk": "d7f8192a-6b55-461a-a2e1-8e44b71ba714", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "93.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202343}}, {"model": "wells.lithologydescription", "pk": "d804502c-8757-48d3-81e6-66b81c486761", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, "well_tag_number": 112305, "lithology_from": "95.00", "lithology_to": "101.00", "lithology_raw_data": "GRAVEL AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197808}}, {"model": "wells.lithologydescription", "pk": "d80bc07e-da31-4116-a970-dfd64171160d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well_tag_number": 112983, "lithology_from": "5.00", "lithology_to": "15.00", "lithology_raw_data": "compact", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202366}}, {"model": "wells.lithologydescription", "pk": "d80c44e2-ba21-4e27-a4ba-cc01ece8b479", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well_tag_number": 113070, "lithology_from": "19.00", "lithology_to": "44.00", "lithology_raw_data": "W.B. PEA GRAVEL AND MEDIUM SAND (BROWN)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202788}}, {"model": "wells.lithologydescription", "pk": "d813e2ba-5086-4f08-a5b4-9305b29b015b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY, SILT, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199731}}, {"model": "wells.lithologydescription", "pk": "d814301f-264e-470d-b72f-88554b6c8943", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well_tag_number": 112549, "lithology_from": "555.00", "lithology_to": "560.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "07", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "caving", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199655}}, {"model": "wells.lithologydescription", "pk": "d8156f8a-796c-4ec4-8508-937bcdcb6c68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, "well_tag_number": 113099, "lithology_from": "75.00", "lithology_to": "382.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202977}}, {"model": "wells.lithologydescription", "pk": "d82ca8ad-a634-4fa0-8509-b1e7c5e015e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "123.00", "lithology_to": "126.00", "lithology_raw_data": "SHALE BENTONITE LIGHT GREY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201593}}, {"model": "wells.lithologydescription", "pk": "d83ba32a-5c49-4b1e-b2f0-20122aa4c8ca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:41Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "68.00", "lithology_to": null, "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197698}}, {"model": "wells.lithologydescription", "pk": "d846eb7a-4f3e-4bfb-be84-f5542477b487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198559}}, {"model": "wells.lithologydescription", "pk": "d854a1c5-0b9d-4195-9a72-d0f8cfb8616f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well_tag_number": 112239, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "SILT, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197474}}, {"model": "wells.lithologydescription", "pk": "d8667dd7-aa8e-4138-8238-dde525de9504", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:51:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, "well_tag_number": 112437, "lithology_from": "35.00", "lithology_to": "36.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198771}}, {"model": "wells.lithologydescription", "pk": "d86ddc67-57df-49ad-aca9-3acf7dcd5017", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "243.00", "lithology_to": "361.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197905}}, {"model": "wells.lithologydescription", "pk": "d874ad68-b208-43b7-a2e4-6a2874e9a621", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well_tag_number": 112512, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199364}}, {"model": "wells.lithologydescription", "pk": "d876991a-c21c-4e3e-9421-8dde4fa67874", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "143.00", "lithology_to": "163.00", "lithology_raw_data": "with quartz layers", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198356}}, {"model": "wells.lithologydescription", "pk": "d878a4ef-5fea-42b2-a487-2486d8457d9d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well_tag_number": 112481, "lithology_from": "74.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "GREY/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199153}}, {"model": "wells.lithologydescription", "pk": "d8969bae-1826-4201-90c9-f78fac75caaf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, "well_tag_number": 112584, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199878}}, {"model": "wells.lithologydescription", "pk": "d897d6bf-056b-4707-bc91-c49d62666e52", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T21:44:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:44:57Z", "activity_submission": null, "well_tag_number": 110749, "lithology_from": "267.00", "lithology_to": "285.00", "lithology_raw_data": "SAND, BLUE CLAY & ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188536}}, {"model": "wells.lithologydescription", "pk": "d8a1b5ee-5d7b-405c-8fd4-537f46e0fceb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "263.00", "lithology_to": "270.00", "lithology_raw_data": "FRACTURED VOLCANIC ROCK", "lithology_description": null, "lithology_colour": "11", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197957}}, {"model": "wells.lithologydescription", "pk": "d8a1f6e2-d595-44eb-8e0c-ae604af01c03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well_tag_number": 112856, "lithology_from": "48.00", "lithology_to": "52.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "sand course", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201581}}, {"model": "wells.lithologydescription", "pk": "d8a2250b-1d8f-4146-bf27-532955651892", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "21.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198567}}, {"model": "wells.lithologydescription", "pk": "d8b5f0f1-8f7f-48d3-b3b8-ccc1b0673c97", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, "well_tag_number": 112676, "lithology_from": "120.00", "lithology_to": "134.00", "lithology_raw_data": "BLK SILTY SAND & ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200475}}, {"model": "wells.lithologydescription", "pk": "d8becc07-daf8-427e-b1a9-53a2ad94dbb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "29.99", "lithology_to": "39.99", "lithology_raw_data": "CL - CLAY, SLOW DILATENCY, LOW PLASTICITY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; FINE GRAINED SAND LAMINATIONS@10.67M BGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201072}}, {"model": "wells.lithologydescription", "pk": "d8c05e4e-c1c6-46c5-a76c-99ac23d5b861", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "14.00", "lithology_to": "21.00", "lithology_raw_data": "SAND, FINE-MED", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197871}}, {"model": "wells.lithologydescription", "pk": "d8cd766c-c461-4246-845f-1093d3f21d1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well_tag_number": 112730, "lithology_from": "84.00", "lithology_to": "92.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT GREY; DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200767}}, {"model": "wells.lithologydescription", "pk": "d8deea48-308d-4d42-8c98-e1bf1a92c328", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well_tag_number": 112416, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/HARD, GRAVEL/FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198587}}, {"model": "wells.lithologydescription", "pk": "d8e7dc9b-515a-4d1c-a2db-7f57f966d1d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "0.00", "lithology_to": "110.00", "lithology_raw_data": "GRAY-BROWN, CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TILL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198065}}, {"model": "wells.lithologydescription", "pk": "d8ee38e9-f43b-45a5-b200-2eb8faf55062", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "55.00", "lithology_to": "105.00", "lithology_raw_data": "HARD PACKED, GREY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200659}}, {"model": "wells.lithologydescription", "pk": "d8fd2807-890e-493f-9505-8678f3299a7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well_tag_number": 112258, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SILTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197563}}, {"model": "wells.lithologydescription", "pk": "d9011493-7f58-403c-be21-5fe65ebc1079", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "16.00", "lithology_to": "50.00", "lithology_raw_data": "and fine sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198870}}, {"model": "wells.lithologydescription", "pk": "d90f2689-7551-468a-a6b4-0e8649982691", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "185.00", "lithology_to": "225.00", "lithology_raw_data": "WHITE/BLUE/GREEN SEAMS OF GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197392}}, {"model": "wells.lithologydescription", "pk": "d915671a-d58c-4f97-9c3a-985de3dd1b43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "32.00", "lithology_to": "51.00", "lithology_raw_data": "DIRTIER FINE AND SILTY SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200713}}, {"model": "wells.lithologydescription", "pk": "d91e1085-081a-44d6-98c0-c4feb93e5ca8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well_tag_number": 112424, "lithology_from": "32.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198659}}, {"model": "wells.lithologydescription", "pk": "d9326321-3c97-490d-a3e3-bcbc7d11b358", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well_tag_number": 112420, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198617}}, {"model": "wells.lithologydescription", "pk": "d935b009-6217-4806-bb6b-088d07918ba2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:10:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, "well_tag_number": 108027, "lithology_from": "1.00", "lithology_to": "10.00", "lithology_raw_data": "shale bedrock", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172310}}, {"model": "wells.lithologydescription", "pk": "d9364468-f5d2-40ca-ba48-53ac9c438a88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "24.00", "lithology_to": "26.00", "lithology_raw_data": "SAND AND GRAVEL ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER SWL 22 FEET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130483}}, {"model": "wells.lithologydescription", "pk": "d939dbf3-9682-494e-9e88-4a4b97f5d17e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well_tag_number": 112768, "lithology_from": "314.20", "lithology_to": "379.80", "lithology_raw_data": "SANDSTONE WITH SILTSTONE AND MUDSTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY AND VARIED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201020}}, {"model": "wells.lithologydescription", "pk": "d9517a7d-a31d-477a-ac21-f74d5acbd722", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well_tag_number": 112496, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "ANGULAR GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199271}}, {"model": "wells.lithologydescription", "pk": "d954659b-ff22-417b-8c6b-695aef09efb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, "well_tag_number": 112591, "lithology_from": "80.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199925}}, {"model": "wells.lithologydescription", "pk": "d9551c6c-d50f-461d-8c39-568eda77ee33", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "14.00", "lithology_to": "22.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198296}}, {"model": "wells.lithologydescription", "pk": "d95f881e-4660-4d92-a1c9-ab0ed3a9bde1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well_tag_number": 112537, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199578}}, {"model": "wells.lithologydescription", "pk": "d9680c39-aa97-485f-965a-e15b12407b62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:40:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T18:45:52Z", "activity_submission": null, "well_tag_number": 112666, "lithology_from": "5.00", "lithology_to": "95.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURES @ 40', 63' & 90'; 20 GPM; SILTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200423}}, {"model": "wells.lithologydescription", "pk": "d96daab8-77ab-4a18-a502-a78141944872", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "180.00", "lithology_to": "181.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199681}}, {"model": "wells.lithologydescription", "pk": "d975a57f-c618-451e-92cc-ffed32347ef9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well_tag_number": 112434, "lithology_from": "59.00", "lithology_to": "74.00", "lithology_raw_data": "and gravel with some clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198740}}, {"model": "wells.lithologydescription", "pk": "d97620a1-b03d-4840-b9e1-5d4533064ea4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "77.00", "lithology_to": "87.00", "lithology_raw_data": "W.B. SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200912}}, {"model": "wells.lithologydescription", "pk": "d986c989-7035-485f-ab84-8b7c5b017c32", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:23:21Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:41:27Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "275.00", "lithology_to": "282.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199545}}, {"model": "wells.lithologydescription", "pk": "d98ea63c-3cae-45b0-93e2-c5e630b0bbec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well_tag_number": 112523, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "0 iron ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199445}}, {"model": "wells.lithologydescription", "pk": "d993ea39-66e6-4614-b55c-3a8a991e2fe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199117}}, {"model": "wells.lithologydescription", "pk": "d9c40086-64ad-4158-b954-df71738fab67", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:21:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, "well_tag_number": 112632, "lithology_from": "22.00", "lithology_to": "156.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200295}}, {"model": "wells.lithologydescription", "pk": "d9cf1449-3fd3-45b0-989f-8dfbbdd3010a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well_tag_number": 112604, "lithology_from": "60.00", "lithology_to": "62.00", "lithology_raw_data": "HARD PAN", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200017}}, {"model": "wells.lithologydescription", "pk": "d9ed6fb2-bd65-4a9b-84aa-90f6030aabb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, "well_tag_number": 112976, "lithology_from": "42.00", "lithology_to": "52.00", "lithology_raw_data": "WITH CLAY BALLS", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2-3", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202312}}, {"model": "wells.lithologydescription", "pk": "d9eecb68-2fa1-4cdd-bbc3-1c69211e2e39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well_tag_number": 112488, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM CLAY, ANGULAR, GRAVEL LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199205}}, {"model": "wells.lithologydescription", "pk": "d9f20a72-747f-485a-94ae-b920c8aca43a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well_tag_number": 112489, "lithology_from": "346.00", "lithology_to": "440.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK, FRACTURED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199219}}, {"model": "wells.lithologydescription", "pk": "d9f48404-008e-4f49-8ecc-f61112ec62c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, "well_tag_number": 112927, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202058}}, {"model": "wells.lithologydescription", "pk": "d9f60252-c9e1-41ea-9158-3400ddf83f27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well_tag_number": 113300, "lithology_from": "18.00", "lithology_to": "128.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, black", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204029}}, {"model": "wells.lithologydescription", "pk": "d9fda54e-e425-47af-ac94-165087511423", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "314.00", "lithology_to": "316.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202834}}, {"model": "wells.lithologydescription", "pk": "d9ffa177-5341-4c8e-8ad9-1335a2555a50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well_tag_number": 112849, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "48", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201475}}, {"model": "wells.lithologydescription", "pk": "da03ff4a-eb16-4bba-a9b2-dcc8df8ebbc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199994}}, {"model": "wells.lithologydescription", "pk": "da0a698b-5aa6-4789-a082-c0c03e0f53d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "206.00", "lithology_to": "210.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "28", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203670}}, {"model": "wells.lithologydescription", "pk": "da13238a-83ae-4761-acd2-aabe36d20fcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "and fine sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198871}}, {"model": "wells.lithologydescription", "pk": "da20dd58-9cbb-43a8-ab03-3bbd5895a353", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well_tag_number": 112991, "lithology_from": "19.00", "lithology_to": "47.00", "lithology_raw_data": "gravelly till", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202413}}, {"model": "wells.lithologydescription", "pk": "da2346f3-1e86-4a16-acef-54a49109c623", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-10T01:41:37Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "222.00", "lithology_to": "225.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "3.8000", "water_bearing_estimated_flow_units": "LPS", "lithology_observation": "224'=3.8 LPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200990}}, {"model": "wells.lithologydescription", "pk": "da366e99-0079-4490-b570-1bd504e9a55a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, "well_tag_number": 113105, "lithology_from": "35.00", "lithology_to": "50.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203004}}, {"model": "wells.lithologydescription", "pk": "da4330ef-ebf2-4967-995a-181d1dd804e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T16:42:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T16:42:46Z", "activity_submission": null, "well_tag_number": 113104, "lithology_from": "0.00", "lithology_to": "180.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203002}}, {"model": "wells.lithologydescription", "pk": "da589770-8079-413b-be52-f7d16bca0270", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, "well_tag_number": 113288, "lithology_from": "38.00", "lithology_to": "49.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203978}}, {"model": "wells.lithologydescription", "pk": "da616295-bb33-4976-9833-421c4612a21e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "VERY FINE AND SILTY SAND WITH SOME SANDY CLAY LAYERS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT GREYISH BROWN; DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200595}}, {"model": "wells.lithologydescription", "pk": "da629540-44af-4f0b-9d88-ec0446a83ad0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well_tag_number": 112379, "lithology_from": "101.00", "lithology_to": "106.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198370}}, {"model": "wells.lithologydescription", "pk": "da6592b9-58a5-4503-b065-da2a0f55d7db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:42:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:29Z", "activity_submission": null, "well_tag_number": 112674, "lithology_from": "31.00", "lithology_to": "59.00", "lithology_raw_data": "FINE SAND WITH GRAVEL SEAMS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200462}}, {"model": "wells.lithologydescription", "pk": "da68cb35-e5db-4b94-bc42-a8a0454db6cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "107.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC WITH WHITE, OCCASIONAL GREEN TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, WHITE, GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199818}}, {"model": "wells.lithologydescription", "pk": "da75b1b5-541e-4e6b-bc17-323705d81f5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199103}}, {"model": "wells.lithologydescription", "pk": "da79b894-26e3-4c6d-bde4-9134c50e6c0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "0.00", "lithology_to": "33.00", "lithology_raw_data": "and gravel", "lithology_description": "06", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203528}}, {"model": "wells.lithologydescription", "pk": "da9f3e80-333d-499a-96b8-ac581eefc847", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198838}}, {"model": "wells.lithologydescription", "pk": "daa16660-a73f-402c-a96b-3872c456c604", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, "well_tag_number": 112243, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "84', 85' = DRY FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197497}}, {"model": "wells.lithologydescription", "pk": "daa1d757-4744-4dbe-a244-ee4e0a41608f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198718}}, {"model": "wells.lithologydescription", "pk": "daa27753-ea04-425c-b77a-d61b75099229", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "140.00", "lithology_to": "144.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203389}}, {"model": "wells.lithologydescription", "pk": "daae5db8-01f4-4e6a-8cf4-2bbb55f0946b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well_tag_number": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 355'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201195}}, {"model": "wells.lithologydescription", "pk": "dabc8364-2061-443b-b99d-b8c30e0072b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:57Z", "activity_submission": null, "well_tag_number": 112287, "lithology_from": "100.00", "lithology_to": "125.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197721}}, {"model": "wells.lithologydescription", "pk": "dacfcd56-4846-49ea-81a3-59c17732d214", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, "well_tag_number": 112453, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198908}}, {"model": "wells.lithologydescription", "pk": "daef7465-2518-458f-b19c-0b9cbc0db627", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "115.00", "lithology_to": "160.00", "lithology_raw_data": "VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, GREEN, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199829}}, {"model": "wells.lithologydescription", "pk": "daf41077-90a0-40ad-886a-cf11a79ddd34", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "0.00", "lithology_to": "43.00", "lithology_raw_data": "cobbles", "lithology_description": "45", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203055}}, {"model": "wells.lithologydescription", "pk": "db03610c-2acf-4d6a-93b0-e9c67b207920", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well_tag_number": 112776, "lithology_from": "7.51", "lithology_to": "15.49", "lithology_raw_data": "SM - SILTY SAND, TRACE CLAY, LAMINATED, FINE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; APPROXIMATELY 8 CM BED, MEDIUM SAND@3.35M BGS; SILT LAMINATIONS, GREY, WET@4.57M BGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201070}}, {"model": "wells.lithologydescription", "pk": "db08e020-76ce-4bba-bb4b-a7eaa70e0d5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "79.00", "lithology_to": "98.00", "lithology_raw_data": "gravel and tight cobble", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198851}}, {"model": "wells.lithologydescription", "pk": "db100a09-10ae-4a8a-9049-ec3349798219", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:34:09Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:34:09Z", "activity_submission": null, "well_tag_number": 107072, "lithology_from": "160.00", "lithology_to": "395.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MEDIUM/HARD. POSS FRACTURES ENCOUNTERED AT: 170, 205, 286, 387, 390 FEET.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 167277}}, {"model": "wells.lithologydescription", "pk": "db10afc2-8da6-462f-b3c5-7bda038cf7d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "80.00", "lithology_to": "102.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Increase in sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198387}}, {"model": "wells.lithologydescription", "pk": "db14ca09-5343-43ae-9d15-771c9791e043", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "101.00", "lithology_to": "140.00", "lithology_raw_data": "SILT, SOME CLAY, TRACE SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200984}}, {"model": "wells.lithologydescription", "pk": "db155c1a-3f80-4b6a-a13d-2f9d4dfa9664", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well_tag_number": 113008, "lithology_from": "36.00", "lithology_to": "40.00", "lithology_raw_data": "sand med course", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fine sand", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202481}}, {"model": "wells.lithologydescription", "pk": "db163ed2-bdaf-4869-9730-b60be267ea93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well_tag_number": 113100, "lithology_from": "120.00", "lithology_to": "215.00", "lithology_raw_data": "CLAY ODD STONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202982}}, {"model": "wells.lithologydescription", "pk": "db26fb8c-2867-4c77-a4bd-ace18456ccfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:09:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, "well_tag_number": 112462, "lithology_from": "87.00", "lithology_to": "100.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198990}}, {"model": "wells.lithologydescription", "pk": "db28f780-1a09-4e4b-a838-89e405ea0d0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well_tag_number": 112474, "lithology_from": "55.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199081}}, {"model": "wells.lithologydescription", "pk": "db2b5cf6-900a-4ad6-a421-1d9577c9d7ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:49Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "60.00", "lithology_to": "170.00", "lithology_raw_data": "Till grey dense plastic", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203567}}, {"model": "wells.lithologydescription", "pk": "db33db2f-f513-46d8-b3da-3e225c38f0f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, "well_tag_number": 112425, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198666}}, {"model": "wells.lithologydescription", "pk": "db3b4e58-4b13-4c09-a857-37bfd19f2ca2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197642}}, {"model": "wells.lithologydescription", "pk": "db45e93c-d380-4363-94c2-0701d086de97", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well_tag_number": 112380, "lithology_from": "600.00", "lithology_to": "700.00", "lithology_raw_data": "SOLID BLACK SLATE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO CHANGE IN YIELD, NO FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198380}}, {"model": "wells.lithologydescription", "pk": "db4c1879-9da7-4c95-85ef-b35867589a42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, "well_tag_number": 112640, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "clay till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200316}}, {"model": "wells.lithologydescription", "pk": "db57e717-7e95-4433-94f0-4791b6d1b5df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "271.00", "lithology_to": "273.00", "lithology_raw_data": "MEDIUM-HARD, DARK GREY SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198064}}, {"model": "wells.lithologydescription", "pk": "db65d6bf-e371-451d-9529-824aedab36af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, "well_tag_number": 112228, "lithology_from": "63.00", "lithology_to": "127.00", "lithology_raw_data": "MEDIUM/HARD LIGHTER FORMATION", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SEVERAL FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197409}}, {"model": "wells.lithologydescription", "pk": "db673261-d39d-4cdc-8f70-895a5b0611a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "0.00", "lithology_to": "31.00", "lithology_raw_data": "bedrock", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203664}}, {"model": "wells.lithologydescription", "pk": "db686af0-48cb-461d-ab5c-29a330cfaa28", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well_tag_number": 112834, "lithology_from": "33.00", "lithology_to": "47.00", "lithology_raw_data": "cobbles, compact, wood pieces, moist", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201387}}, {"model": "wells.lithologydescription", "pk": "db6e28aa-0425-4f52-8b7d-d08a5743e0b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well_tag_number": 112969, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, GRAVEL, SMALL COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET / SILTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202281}}, {"model": "wells.lithologydescription", "pk": "db91b8aa-dfc0-4f76-ac49-89c300178514", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-03T22:01:20Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "98.00", "lithology_to": "117.00", "lithology_raw_data": "SHALE AND SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LIGHT GREY; LAYERED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199480}}, {"model": "wells.lithologydescription", "pk": "dbad4efa-ad77-4e97-a75f-78c86ecf70ff", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:37:38Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:37:38Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200125}}, {"model": "wells.lithologydescription", "pk": "dbb01305-d755-423e-aa0c-4a99077009c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, "well_tag_number": 112288, "lithology_from": "199.00", "lithology_to": "222.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197727}}, {"model": "wells.lithologydescription", "pk": "dbbe8fec-ed47-42e7-b3fe-5383d730a7ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "133.00", "lithology_to": "155.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201317}}, {"model": "wells.lithologydescription", "pk": "dbd1f8f3-e07e-48c4-aee8-8cea57f6c840", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:54:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, "well_tag_number": 112739, "lithology_from": "17.00", "lithology_to": "30.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "LIGHT BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200826}}, {"model": "wells.lithologydescription", "pk": "dbdada41-96ce-41ff-82ff-03ff930937eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "160.00", "lithology_to": "195.00", "lithology_raw_data": "CLAY AND ROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198505}}, {"model": "wells.lithologydescription", "pk": "dbe29b08-d5d4-44ce-bbed-ceb69aefb916", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well_tag_number": 112365, "lithology_from": "118.00", "lithology_to": "128.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198260}}, {"model": "wells.lithologydescription", "pk": "dbeeb960-b25d-40b5-a3ff-eebfc6e13725", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199786}}, {"model": "wells.lithologydescription", "pk": "dbf84425-708a-4510-80c9-b8aae62d9edc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well_tag_number": 113029, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "black medium hard rock", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202582}}, {"model": "wells.lithologydescription", "pk": "dbf88660-99d2-4279-8541-a17823aa0488", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "SILTY GRAVEL, SAND, CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "1-2", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202235}}, {"model": "wells.lithologydescription", "pk": "dc0cf003-76f5-4d2b-9935-532c35a414dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199111}}, {"model": "wells.lithologydescription", "pk": "dc0f4de7-26b5-4b81-9ab5-9a3a41f3dc18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL, BOULDERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199726}}, {"model": "wells.lithologydescription", "pk": "dc17e600-1043-46fe-8f69-ec58dff2023a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "3.00", "lithology_to": "43.00", "lithology_raw_data": "and clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197616}}, {"model": "wells.lithologydescription", "pk": "dc1c830a-869f-461b-8c91-c04f34e9cc63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, "well_tag_number": 112682, "lithology_from": "63.00", "lithology_to": "75.00", "lithology_raw_data": "SAND SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200491}}, {"model": "wells.lithologydescription", "pk": "dc21831b-d4ee-4a07-86c1-556d8f7bac53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well_tag_number": 112442, "lithology_from": "65.00", "lithology_to": "67.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198817}}, {"model": "wells.lithologydescription", "pk": "dc26c861-18ed-4f1a-91a8-634220250d68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "145.00", "lithology_to": "167.00", "lithology_raw_data": "Gravel (till?), some sand, trace silt, grey-brown, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Boulder at 150ft; Lens of some sand, grey-brown, damp at 155ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203508}}, {"model": "wells.lithologydescription", "pk": "dc44f7ac-35db-44fe-b5a0-0cd463bac0eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well_tag_number": 113134, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203184}}, {"model": "wells.lithologydescription", "pk": "dc4503f3-dacf-4220-9f54-8cda8aa08a3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well_tag_number": 113260, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203869}}, {"model": "wells.lithologydescription", "pk": "dc4f3a8f-c0dc-4e0d-9924-ddc7790beda3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well_tag_number": 113078, "lithology_from": "85.00", "lithology_to": "100.00", "lithology_raw_data": "clay and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202875}}, {"model": "wells.lithologydescription", "pk": "dc62426a-2a44-4a60-97a1-249559ccb56b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:42:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:29Z", "activity_submission": null, "well_tag_number": 112674, "lithology_from": "5.00", "lithology_to": "31.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET TO WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200461}}, {"model": "wells.lithologydescription", "pk": "dc6a4c67-7683-494d-8c49-59c114442fbb", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:38:31Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:38:31Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "204.00", "lithology_to": "223.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200127}}, {"model": "wells.lithologydescription", "pk": "dc6ab3ad-d36b-4978-a56a-d1cf32cfafa5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, "well_tag_number": 112929, "lithology_from": "95.00", "lithology_to": "115.00", "lithology_raw_data": "TILL CLAY", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202064}}, {"model": "wells.lithologydescription", "pk": "dc7cb2f8-674b-4c5f-b32e-7ce2f6b24cc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY, SAND WITH GRAVEL BROWN & DARK GREY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201673}}, {"model": "wells.lithologydescription", "pk": "dc7eca1a-4455-463d-9aa6-d65c47f05925", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:39:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:03Z", "activity_submission": null, "well_tag_number": 112923, "lithology_from": "19.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY, FINE SANDY TILL, SOFT/MEDIUM", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202043}}, {"model": "wells.lithologydescription", "pk": "dc8047d6-aa5e-4a41-bc8d-4495d277738a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY-SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199452}}, {"model": "wells.lithologydescription", "pk": "dc96b0a7-8056-4e8b-8d4f-397f08ecfd8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "187.00", "lithology_to": "197.00", "lithology_raw_data": "MEDIUM-HARD; SHALE / SILTSTONE / FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199463}}, {"model": "wells.lithologydescription", "pk": "dc982217-62ae-45eb-88de-c1c12b1eea2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:33:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-06T02:36:08Z", "activity_submission": null, "well_tag_number": 112280, "lithology_from": "10.00", "lithology_to": "29.00", "lithology_raw_data": "MEDIUM BROWN SAND WITH LARGE COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20+ USGPM; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197690}}, {"model": "wells.lithologydescription", "pk": "dca30e4f-3c4d-4524-ac41-62059881f3a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well_tag_number": 112552, "lithology_from": "62.00", "lithology_to": "80.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199671}}, {"model": "wells.lithologydescription", "pk": "dcb31a19-aff4-40bf-90a4-05e61d1990d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well_tag_number": 112253, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": "SORTED, CLEAN, MEDIUM GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197536}}, {"model": "wells.lithologydescription", "pk": "dcdd3988-4290-43a1-bf9f-32f3396aba4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well_tag_number": 112432, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198716}}, {"model": "wells.lithologydescription", "pk": "dcdf7950-de39-45e6-b0d8-646dfe44f3d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well_tag_number": 112871, "lithology_from": "300.00", "lithology_to": "564.00", "lithology_raw_data": "GREY & WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201720}}, {"model": "wells.lithologydescription", "pk": "dceae116-aaae-4441-8f19-683b7c0b8e7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "COARSE LAVA ROCK/TILL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198044}}, {"model": "wells.lithologydescription", "pk": "dcffdcc2-6f8e-46c7-a5dc-3e33484fcf8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well_tag_number": 112964, "lithology_from": "115.00", "lithology_to": "119.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202257}}, {"model": "wells.lithologydescription", "pk": "dd061069-8f2b-4c7c-8716-2cc2bb9fc57d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "306.00", "lithology_to": "354.00", "lithology_raw_data": "MEDIUM-HARD, GREY-BROWN-GREY, SHALE/SILTSTONE/FINE SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197928}}, {"model": "wells.lithologydescription", "pk": "dd26663b-6dd2-42a2-9f0d-aa2aa41a2883", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well_tag_number": 113131, "lithology_from": "63.00", "lithology_to": "84.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203171}}, {"model": "wells.lithologydescription", "pk": "dd3b3d77-76a3-4259-a49e-d0657f90f6c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well_tag_number": 112456, "lithology_from": "20.00", "lithology_to": "31.00", "lithology_raw_data": "CLAY, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198937}}, {"model": "wells.lithologydescription", "pk": "dd3fca32-b2bd-4538-a5ce-45e98fccc18b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198100}}, {"model": "wells.lithologydescription", "pk": "dd4a9b10-c20a-4e4b-9f02-deef1d09f206", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, "well_tag_number": 112785, "lithology_from": "0.00", "lithology_to": "8.92", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NATIVE SOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201120}}, {"model": "wells.lithologydescription", "pk": "dd7655a9-6ae1-4547-9efd-c4d7aceada95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well_tag_number": 112341, "lithology_from": "380.00", "lithology_to": "525.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREEN, VOLCANIC - TRACES OF QUARTZ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.4000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "300 GALLONS PER DAY; SEVERAL FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198116}}, {"model": "wells.lithologydescription", "pk": "dd7efbc0-d7ee-45fa-99be-234a09d30742", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:38:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, "well_tag_number": 112366, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "ORGANICS - SAND & SOILS/COBBLES/GRAVELS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198267}}, {"model": "wells.lithologydescription", "pk": "dd845905-788b-492f-8e8e-ea54e003e192", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well_tag_number": 112743, "lithology_from": "60.00", "lithology_to": "66.00", "lithology_raw_data": "W.B. SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200858}}, {"model": "wells.lithologydescription", "pk": "dd86bc62-260c-4ffb-ae49-0762820e18b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T22:29:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, "well_tag_number": 113112, "lithology_from": "300.00", "lithology_to": "335.00", "lithology_raw_data": "COARSE TILL GRAVEL 315 TO 335", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "M/H", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203037}}, {"model": "wells.lithologydescription", "pk": "dd97b875-10b5-4752-8bf6-eb7a9a5ffb7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well_tag_number": 112554, "lithology_from": "181.00", "lithology_to": "183.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199682}}, {"model": "wells.lithologydescription", "pk": "ddad1e51-ba80-4bc4-be83-4a5bea1c7b03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-08T19:28:13Z", "activity_submission": null, "well_tag_number": 112294, "lithology_from": "40.00", "lithology_to": "103.00", "lithology_raw_data": "BASLALT MIX", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197751}}, {"model": "wells.lithologydescription", "pk": "ddad7b13-f5e6-4ff1-ab38-d5955aba59fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well_tag_number": 112562, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY, SILTY SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199732}}, {"model": "wells.lithologydescription", "pk": "ddb0a0a7-91bd-49ca-b5fb-85b07501cd1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200398}}, {"model": "wells.lithologydescription", "pk": "ddc89e8f-4861-4355-9ad1-024207cd8ac6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:07:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:07:36Z", "activity_submission": null, "well_tag_number": 112931, "lithology_from": "0.00", "lithology_to": "37.00", "lithology_raw_data": "BROWN/GRAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202071}}, {"model": "wells.lithologydescription", "pk": "ddc9f372-564b-4a3e-b757-dd23a28084cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, "well_tag_number": 113181, "lithology_from": "75.00", "lithology_to": "115.00", "lithology_raw_data": "sand, clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203455}}, {"model": "wells.lithologydescription", "pk": "ddcb5190-bc2e-4d9f-aac4-4f6cad3a3d66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well_tag_number": 112341, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANICS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198112}}, {"model": "wells.lithologydescription", "pk": "ddd992ae-cc6f-42f6-8aaa-401a467d371b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, "well_tag_number": 112294, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": "BEDROCK - BASALT", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197749}}, {"model": "wells.lithologydescription", "pk": "dde64ec5-345f-47dc-8a80-2a696f06ba50", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:33Z", "activity_submission": null, "well_tag_number": 113305, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 200'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204061}}, {"model": "wells.lithologydescription", "pk": "ddf8cd87-823d-40e9-96a1-95819a40fc16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well_tag_number": 112492, "lithology_from": "360.00", "lithology_to": "380.00", "lithology_raw_data": "SOFT/MEDIUM; MEDIUM TO COARSE SAND, MINOR GRAVEL, LAYERS OF SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199244}}, {"model": "wells.lithologydescription", "pk": "de002738-d813-4e65-b12f-62bf09b5e5dc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well_tag_number": 113019, "lithology_from": "265.00", "lithology_to": "265.00", "lithology_raw_data": "FRACTURE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202527}}, {"model": "wells.lithologydescription", "pk": "de005e8d-ad9d-4f1d-8106-541035c9f35b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well_tag_number": 112962, "lithology_from": "68.00", "lithology_to": "70.00", "lithology_raw_data": "TIGHT GRAVEL & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "5-6", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202238}}, {"model": "wells.lithologydescription", "pk": "de1733e7-e2d5-42bf-a779-d1b99276ee86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well_tag_number": 112370, "lithology_from": "31.00", "lithology_to": "280.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198310}}, {"model": "wells.lithologydescription", "pk": "de345bea-f8c7-41f5-ac6f-30f813a72e21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "130.00", "lithology_to": "150.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND REDDISH BROWN; SOME 0.25GPM; SOLID; WATER BEARING FRACTURE@140'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200804}}, {"model": "wells.lithologydescription", "pk": "de3670e7-1caa-4743-8855-54c44145616f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:37:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:37:24Z", "activity_submission": null, "well_tag_number": 112397, "lithology_from": "0.00", "lithology_to": "150.50", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FILL WITH BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198457}}, {"model": "wells.lithologydescription", "pk": "de3a757e-d47e-4e55-b83c-c83f2c3869c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "ORGANIC MATERAL AND CLAY LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200002}}, {"model": "wells.lithologydescription", "pk": "de3ac3e6-1766-4e1f-b323-1d570943d5ed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well_tag_number": 112528, "lithology_from": "152.00", "lithology_to": "155.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199514}}, {"model": "wells.lithologydescription", "pk": "de496697-f143-40d6-985a-ffdcc33d4247", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well_tag_number": 112221, "lithology_from": "205.00", "lithology_to": "212.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197348}}, {"model": "wells.lithologydescription", "pk": "de65f8cd-f744-4338-a4ce-010e6b383f77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "140.00", "lithology_to": "220.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198800}}, {"model": "wells.lithologydescription", "pk": "de67be8e-ddd9-4492-a858-f5ce6e73c032", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well_tag_number": 112667, "lithology_from": "213.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200431}}, {"model": "wells.lithologydescription", "pk": "de684729-7e42-489c-85f8-489e668c41a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, "well_tag_number": 112246, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197504}}, {"model": "wells.lithologydescription", "pk": "de6da07b-e27e-43df-bf96-c6408933d9a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T08:14:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, "well_tag_number": 112252, "lithology_from": "104.00", "lithology_to": "116.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197526}}, {"model": "wells.lithologydescription", "pk": "de6e68ba-3478-4ff9-87da-76c129135b17", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well_tag_number": 112853, "lithology_from": "133.00", "lithology_to": "137.00", "lithology_raw_data": "MEDIUM HARD SILSTONE AND VERY FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201534}}, {"model": "wells.lithologydescription", "pk": "de8f22c8-7ae6-4458-abb1-5e1fcef10981", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "75.00", "lithology_to": "130.00", "lithology_raw_data": null, "lithology_description": "49", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203822}}, {"model": "wells.lithologydescription", "pk": "de9bbb71-a1aa-4d21-8118-21e655aec8ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "180.00", "lithology_to": "240.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BLUE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199804}}, {"model": "wells.lithologydescription", "pk": "dea94a96-26db-46cf-8f92-d135d16aac59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, "well_tag_number": 112333, "lithology_from": "34.00", "lithology_to": "55.00", "lithology_raw_data": "BROWN-GREY, SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198013}}, {"model": "wells.lithologydescription", "pk": "deacb8d8-2de8-44ef-9ccb-eee946e3a5dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well_tag_number": 112430, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198703}}, {"model": "wells.lithologydescription", "pk": "dec0cc46-a38d-4d9d-9d63-533e595a374e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well_tag_number": 112893, "lithology_from": "15.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY & SILT", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201850}}, {"model": "wells.lithologydescription", "pk": "dec28233-9b29-456e-86c6-fe6fc17a8471", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "MINOR GRAVEL, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200011}}, {"model": "wells.lithologydescription", "pk": "dec3ef65-49f0-45e5-9d09-2120111cc2f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "12.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": "53", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203521}}, {"model": "wells.lithologydescription", "pk": "dec5ce11-1efc-4526-84dd-e3f929686b53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, "well_tag_number": 112877, "lithology_from": "0.00", "lithology_to": "109.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201742}}, {"model": "wells.lithologydescription", "pk": "decb746e-ea68-405d-9713-5a3b1621ccfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "135.00", "lithology_to": "136.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199801}}, {"model": "wells.lithologydescription", "pk": "ded20dba-87c2-4edb-bc2b-d42e135207b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well_tag_number": 112281, "lithology_from": "18.00", "lithology_to": "26.00", "lithology_raw_data": "LARGE BOULDERS 1'+/FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197694}}, {"model": "wells.lithologydescription", "pk": "dedabb56-3ced-4255-88b6-7393f753775a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well_tag_number": 112559, "lithology_from": "6.00", "lithology_to": "23.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199706}}, {"model": "wells.lithologydescription", "pk": "dee43748-d3c2-431b-a056-853bf57b57d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:46:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:46:04Z", "activity_submission": null, "well_tag_number": 112924, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "COARSE GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202045}}, {"model": "wells.lithologydescription", "pk": "dee8f8ad-cb41-4110-a548-7e6096607463", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "15.00", "lithology_to": "17.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202488}}, {"model": "wells.lithologydescription", "pk": "deee07e1-0919-49bc-908c-8d9ebe39225d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, "well_tag_number": 113242, "lithology_from": "186.00", "lithology_to": "192.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203786}}, {"model": "wells.lithologydescription", "pk": "df36d526-6670-4584-8dff-1569e1396af1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "1.00", "lithology_to": "75.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197400}}, {"model": "wells.lithologydescription", "pk": "df561a27-0864-40e1-b52b-184ecb065d63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "71.00", "lithology_to": "115.00", "lithology_raw_data": "BROWN SAND, FINE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201458}}, {"model": "wells.lithologydescription", "pk": "df59549c-d73c-44f0-878f-2c82952e32d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well_tag_number": 112485, "lithology_from": "80.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/HARD; COARSE, SAND, GRAVEL, SAND LAYER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199182}}, {"model": "wells.lithologydescription", "pk": "df6b1234-8064-49e4-bd95-a8b2b8326033", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "12.00", "lithology_to": "42.00", "lithology_raw_data": "LIMESTONE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199807}}, {"model": "wells.lithologydescription", "pk": "df6d1eae-8aca-406f-b7cb-48b223b5c0ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, "well_tag_number": 110750, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY & BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 188529}}, {"model": "wells.lithologydescription", "pk": "df84ef1d-d197-42eb-866e-4635934e7fc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, "well_tag_number": 112591, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "SILTY SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199923}}, {"model": "wells.lithologydescription", "pk": "df888ba2-e732-4f3c-863f-04c73c2da6bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:18:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, "well_tag_number": 112783, "lithology_from": "5.00", "lithology_to": "63.10", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201116}}, {"model": "wells.lithologydescription", "pk": "df8a966a-72c8-4f9a-a36a-e0fafc78acfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "18.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200004}}, {"model": "wells.lithologydescription", "pk": "df9416cd-6291-4641-9dc1-d6b9fa29c6d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:00:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, "well_tag_number": 112234, "lithology_from": "28.00", "lithology_to": "35.00", "lithology_raw_data": "SEAM OF GRAVEL", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197443}}, {"model": "wells.lithologydescription", "pk": "df962978-e384-4b5c-979b-7481054e4f91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T15:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T15:26:58Z", "activity_submission": null, "well_tag_number": 113249, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203807}}, {"model": "wells.lithologydescription", "pk": "df9b25a6-abd5-4cb7-821e-f080869e06da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well_tag_number": 113082, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "organics, sand, gravel", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "LOOSE", "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202891}}, {"model": "wells.lithologydescription", "pk": "dfa10843-e639-4b48-87b6-9de0f86579e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T06:11:58Z", "activity_submission": null, "well_tag_number": 112385, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "BLUE/BROWN , ORGANICS TO SANDY SOILS W/ GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198398}}, {"model": "wells.lithologydescription", "pk": "dfa67cb1-469e-4d37-87eb-36ef3300eace", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "59.00", "lithology_to": "61.00", "lithology_raw_data": "MEDIUM TO FINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201543}}, {"model": "wells.lithologydescription", "pk": "dfad421c-b86a-45d3-9b3c-a83085048881", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well_tag_number": 112725, "lithology_from": "61.00", "lithology_to": "63.50", "lithology_raw_data": "SAND AND GRAVEL, VERY DIRTY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200716}}, {"model": "wells.lithologydescription", "pk": "dfb16fbc-e846-4d66-ac49-0de893e4bed6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well_tag_number": 112318, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197870}}, {"model": "wells.lithologydescription", "pk": "dfb3580e-6ac4-45c8-8171-a62a7e8252f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T08:14:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, "well_tag_number": 112252, "lithology_from": "0.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197524}}, {"model": "wells.lithologydescription", "pk": "dfc68135-3e8b-4d98-b010-f4d3c9439c3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "150.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199192}}, {"model": "wells.lithologydescription", "pk": "dfd18002-c9b9-4c7f-8ecb-300409306273", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "TIGHT; CLAY AND GRAVEL TILL WITH BOULDERS AND COBBLES AND SOME SAND AND GRAVEL LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200827}}, {"model": "wells.lithologydescription", "pk": "dfd2a7e3-b571-4831-85b7-eeb4f98c9a6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well_tag_number": 113213, "lithology_from": "276.00", "lithology_to": "280.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203674}}, {"model": "wells.lithologydescription", "pk": "dfdd9901-eede-4fbe-9e90-60ed51eaa831", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, "well_tag_number": 105508, "lithology_from": "96.00", "lithology_to": "109.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159718}}, {"model": "wells.lithologydescription", "pk": "dfe1717c-94e6-44f1-b529-c7cc3385526d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, "well_tag_number": 113030, "lithology_from": "72.00", "lithology_to": "81.00", "lithology_raw_data": "clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202587}}, {"model": "wells.lithologydescription", "pk": "dfe366fd-f787-495c-a534-68848cbe995c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202940}}, {"model": "wells.lithologydescription", "pk": "dfeccc4d-b430-4d2f-bf9e-b57a164fdfec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199372}}, {"model": "wells.lithologydescription", "pk": "dff23c25-858e-4881-a574-9507293fe4a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, "well_tag_number": 112614, "lithology_from": "63.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200099}}, {"model": "wells.lithologydescription", "pk": "e01d51ee-c6f4-448c-912e-7ef703e41679", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:24:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:24:10Z", "activity_submission": null, "well_tag_number": 112268, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197608}}, {"model": "wells.lithologydescription", "pk": "e020cd55-88d9-4c73-a5bc-8a9fcf0b7dda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:56:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, "well_tag_number": 112764, "lithology_from": "0.00", "lithology_to": "6.50", "lithology_raw_data": "SILTY CLAY - TRACE SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK, GREYISH BROWN; MOIST, STIFF. FROZEN TO 1.0M, DENSE, LOW TO MEDIUM PLASTICITY ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201004}}, {"model": "wells.lithologydescription", "pk": "e0277c23-7e74-4b79-ae66-19fc756262d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "301.00", "lithology_to": "313.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "310'=FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199467}}, {"model": "wells.lithologydescription", "pk": "e03d3207-0587-4fed-828a-f4141e903d5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:07:03Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "170.00", "lithology_to": "463.00", "lithology_raw_data": "BLACK FORMATION WITH SEAMS OF WHITE VOLCANIC GNEISS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "415'=FRACTURE, 1 LITRE PER MINUTE; COLOUR=BLACK/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199888}}, {"model": "wells.lithologydescription", "pk": "e049e506-3c41-451c-92d5-c75c2819425f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "177.00", "lithology_to": "200.00", "lithology_raw_data": "SHALE/SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "VERY POOR CIRCULATION WITH FOAMER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201626}}, {"model": "wells.lithologydescription", "pk": "e052b3b1-0bc8-4fe1-b2a9-bf8c0df2e871", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well_tag_number": 112879, "lithology_from": "138.00", "lithology_to": "212.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201754}}, {"model": "wells.lithologydescription", "pk": "e0587f13-d46d-445e-bd70-49e96e79932c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198468}}, {"model": "wells.lithologydescription", "pk": "e05c3d8d-6c9a-42a5-ba8a-17eb5f40b88e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "58.00", "lithology_to": "68.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199436}}, {"model": "wells.lithologydescription", "pk": "e05d65c5-87a7-400f-af71-669002b871b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:21:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, "well_tag_number": 112411, "lithology_from": "58.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198548}}, {"model": "wells.lithologydescription", "pk": "e073fc40-fff3-4575-b31c-8eb363cd4494", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "53.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203649}}, {"model": "wells.lithologydescription", "pk": "e0a2709f-5f8d-4fb2-9923-c507618687af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "109.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203194}}, {"model": "wells.lithologydescription", "pk": "e0a3fb9d-0d19-44a7-9f05-9faf33b7c658", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, "well_tag_number": 112463, "lithology_from": "11.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198993}}, {"model": "wells.lithologydescription", "pk": "e0abb414-85d7-4ea1-b979-0f47410ea34f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "broken rock", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204077}}, {"model": "wells.lithologydescription", "pk": "e0aea8b9-ec10-463b-8ffe-0d1a8b95d56e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, "well_tag_number": 112436, "lithology_from": "208.00", "lithology_to": "212.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198765}}, {"model": "wells.lithologydescription", "pk": "e0b461a8-a82a-4c7c-847d-645c8a7661c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "698.00", "lithology_to": "1100.00", "lithology_raw_data": "ORANGE/BLUE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "@ 700' WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201827}}, {"model": "wells.lithologydescription", "pk": "e0bfae8b-c31c-48c5-9a06-c1dc90f44bcf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "with gravel", "lithology_description": "12", "lithology_colour": "16", "lithology_hardness": "DENSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204071}}, {"model": "wells.lithologydescription", "pk": "e0c9abc0-1fed-4f1d-8366-907293b6f0b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202389}}, {"model": "wells.lithologydescription", "pk": "e0d2398a-b15a-4e25-b26d-47d4bed2850b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "100.00", "lithology_to": "148.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199001}}, {"model": "wells.lithologydescription", "pk": "e0e15903-75a8-485f-9c9e-b6ba78375bf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, "well_tag_number": 112285, "lithology_from": "32.00", "lithology_to": "45.00", "lithology_raw_data": "BASALT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197709}}, {"model": "wells.lithologydescription", "pk": "e0f63498-492f-4ab1-afe9-771041516eba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:49Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:50:55Z", "activity_submission": null, "well_tag_number": 113200, "lithology_from": "230.00", "lithology_to": "300.00", "lithology_raw_data": "Sandstone and Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "80.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "layers producing 80 GPM & surging", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203571}}, {"model": "wells.lithologydescription", "pk": "e0fc87e0-a8f5-4e40-9526-a77be69b6702", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well_tag_number": 112273, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "and clays", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197636}}, {"model": "wells.lithologydescription", "pk": "e10b1e20-bbdc-41e3-90b1-fc2e9ffed507", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:24:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, "well_tag_number": 112261, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "LARGE BOULDERS/FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197575}}, {"model": "wells.lithologydescription", "pk": "e10eae6a-9cee-42e1-af34-3860db58462e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, "well_tag_number": 112443, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "sand and organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198827}}, {"model": "wells.lithologydescription", "pk": "e10fbc11-26f0-445d-a732-05343db7be5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well_tag_number": 112646, "lithology_from": "48.00", "lithology_to": "69.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200348}}, {"model": "wells.lithologydescription", "pk": "e120fe68-b323-4963-945b-7c523d7923d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:55:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:55:00Z", "activity_submission": null, "well_tag_number": 112371, "lithology_from": "0.00", "lithology_to": "48.00", "lithology_raw_data": "top soil black/ sand with silt and clay ", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198314}}, {"model": "wells.lithologydescription", "pk": "e1232d1a-e61d-4316-81b5-480f46ffebb8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 450'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202974}}, {"model": "wells.lithologydescription", "pk": "e123cd16-1c58-4d7e-9b71-4ce4f9236f2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well_tag_number": 112574, "lithology_from": "90.00", "lithology_to": "97.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "YIELD=10+USGPM; FRACTURED; COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199809}}, {"model": "wells.lithologydescription", "pk": "e1275331-2e0c-4aa3-bf9d-7d25a066b522", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well_tag_number": 112888, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY & ROOTS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201814}}, {"model": "wells.lithologydescription", "pk": "e1292595-7843-4b3e-90d7-69ac993700ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "128.00", "lithology_to": "140.00", "lithology_raw_data": "Fine silty sand", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203472}}, {"model": "wells.lithologydescription", "pk": "e1361c56-eeab-4ed2-a927-f33be0e76f07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well_tag_number": 113140, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": "till, cobbley", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203239}}, {"model": "wells.lithologydescription", "pk": "e15d9e18-c6e5-4ee9-ae1b-d8137c32d387", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well_tag_number": 112755, "lithology_from": "18.00", "lithology_to": "45.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200933}}, {"model": "wells.lithologydescription", "pk": "e167811b-914f-43f0-bb89-dac6e25b6487", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well_tag_number": 113246, "lithology_from": "60.00", "lithology_to": "69.00", "lithology_raw_data": "cleaner", "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GOOD WATER PRODUCTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203797}}, {"model": "wells.lithologydescription", "pk": "e16e9f05-4809-4ed3-b212-b0eb36b9dd41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:12:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, "well_tag_number": 112260, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "PAVEMENT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197571}}, {"model": "wells.lithologydescription", "pk": "e17aa208-bf18-4508-baea-112b120529e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "90.00", "lithology_to": "97.00", "lithology_raw_data": "MEDIUM/HARD, SAND GRAVEL, MINOR CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198684}}, {"model": "wells.lithologydescription", "pk": "e17b1a18-1876-4bf6-8740-57fe4caffb07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T17:33:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, "well_tag_number": 113017, "lithology_from": "125.00", "lithology_to": "240.00", "lithology_raw_data": "shale lenses", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202514}}, {"model": "wells.lithologydescription", "pk": "e1834b06-7c4c-443d-ada9-79a4bb407816", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well_tag_number": 112752, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200904}}, {"model": "wells.lithologydescription", "pk": "e18ce770-eee6-495c-b9c0-f1853c4761a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:37:19Z", "update_user": "PROXY_WELLS", "update_date": "2017-09-18T16:49:18Z", "activity_submission": null, "well_tag_number": 112935, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "TOP SOIL AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202078}}, {"model": "wells.lithologydescription", "pk": "e1928a84-60f5-4620-ae17-4af7b8071df7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well_tag_number": 112599, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199978}}, {"model": "wells.lithologydescription", "pk": "e19d2e10-48b7-452c-af4c-022e0ab6c652", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "112.00", "lithology_to": "127.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198502}}, {"model": "wells.lithologydescription", "pk": "e1a12ca7-f038-425d-8ae1-c4fe0a43aa61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well_tag_number": 112482, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/SOFT; SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199161}}, {"model": "wells.lithologydescription", "pk": "e1b950f7-c93a-49d6-a51b-7aefd0c9914a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "62.00", "lithology_to": "76.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "80.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203531}}, {"model": "wells.lithologydescription", "pk": "e1b99e7b-8602-4eac-be00-52218a2cfab8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, "well_tag_number": 112540, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199608}}, {"model": "wells.lithologydescription", "pk": "e1baa25e-7ab7-4d46-bbb2-e3c298dbec75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MEDIUM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199262}}, {"model": "wells.lithologydescription", "pk": "e1bc64be-0f03-4e25-9f06-a84f1fcf2a92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "19.00", "lithology_to": "27.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202429}}, {"model": "wells.lithologydescription", "pk": "e1c71747-3bf2-4672-8abd-35b514358942", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well_tag_number": 112464, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BASALT BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WITH RED ZONE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199005}}, {"model": "wells.lithologydescription", "pk": "e1c94fc0-9d2f-4000-aa33-452af3734ccd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well_tag_number": 112602, "lithology_from": "124.00", "lithology_to": "140.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200001}}, {"model": "wells.lithologydescription", "pk": "e1cbb4fd-d5a8-4580-b090-6e3419dbdaef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, "well_tag_number": 112517, "lithology_from": "12.00", "lithology_to": "98.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199402}}, {"model": "wells.lithologydescription", "pk": "e1cc7eaf-2311-4ec4-80fd-b0244666c535", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well_tag_number": 113133, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water Source:", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203181}}, {"model": "wells.lithologydescription", "pk": "e1f4e496-8704-4a17-8dd8-0f8f578f27b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "gravel and fine sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198880}}, {"model": "wells.lithologydescription", "pk": "e1fc9e82-611e-4ab7-a10f-3bbd17447da9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "73.00", "lithology_to": "117.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200168}}, {"model": "wells.lithologydescription", "pk": "e20d5256-747b-41b8-ad60-f6523919404c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:52:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, "well_tag_number": 113306, "lithology_from": "5.00", "lithology_to": "240.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 120'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204063}}, {"model": "wells.lithologydescription", "pk": "e20e0841-aa8d-403f-9714-732a0be0eb0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well_tag_number": 113139, "lithology_from": "78.00", "lithology_to": "93.00", "lithology_raw_data": "BROWN TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203234}}, {"model": "wells.lithologydescription", "pk": "e2177bd6-674c-4dbe-ab7e-55f356fa0bbe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well_tag_number": 112308, "lithology_from": "72.00", "lithology_to": "79.00", "lithology_raw_data": "DARK GREY QUARTZ MIX", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197822}}, {"model": "wells.lithologydescription", "pk": "e22897f0-d60c-4bc0-b351-f33a5ed8c68b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well_tag_number": 112509, "lithology_from": "14.00", "lithology_to": "17.00", "lithology_raw_data": "BROWN SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199351}}, {"model": "wells.lithologydescription", "pk": "e22dd048-c561-4f88-9db2-51b4d69c89e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well_tag_number": 112621, "lithology_from": "38.00", "lithology_to": "73.00", "lithology_raw_data": "SILT AND CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200167}}, {"model": "wells.lithologydescription", "pk": "e22e8a95-9385-42cb-9b83-f36f27d1c1c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well_tag_number": 112311, "lithology_from": "7.00", "lithology_to": "13.00", "lithology_raw_data": "SANDY GRAVEL WITH ANGALAR ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197835}}, {"model": "wells.lithologydescription", "pk": "e242f784-9645-4401-a397-3039a4657629", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:13:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, "well_tag_number": 112515, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199391}}, {"model": "wells.lithologydescription", "pk": "e2559961-8808-48fc-be95-e59fd23ececd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "235.00", "lithology_to": "236.00", "lithology_raw_data": "SS FINE DK GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143933}}, {"model": "wells.lithologydescription", "pk": "e26ac9ca-89bb-4078-83b7-697474036c47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:14:26Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-04T20:41:53Z", "activity_submission": null, "well_tag_number": 112363, "lithology_from": "145.00", "lithology_to": "305.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water source: @ 160' 0.5 USgpm; @ 280' 0.75 USgpm.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198244}}, {"model": "wells.lithologydescription", "pk": "e2872def-e7df-4db8-b528-d0155a160056", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "80.00", "lithology_to": "96.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198876}}, {"model": "wells.lithologydescription", "pk": "e288e21f-3fda-4a88-9d3d-a78750a72aad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "165.00", "lithology_to": "175.00", "lithology_raw_data": "CLAY - SOME GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205637}}, {"model": "wells.lithologydescription", "pk": "e29070f6-7a13-4d1c-a10d-e59e03c0e814", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, "well_tag_number": 113026, "lithology_from": "380.00", "lithology_to": "460.00", "lithology_raw_data": "SANDSTONE GREY WITH SHALE LAYERS AND SHALE FRACTURES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202565}}, {"model": "wells.lithologydescription", "pk": "e2924676-fa09-4486-9e26-103a7aec662d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well_tag_number": 113127, "lithology_from": "195.00", "lithology_to": "273.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203130}}, {"model": "wells.lithologydescription", "pk": "e29441a4-fd80-48b9-8208-ae54d705a864", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:52:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, "well_tag_number": 113306, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 180'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204064}}, {"model": "wells.lithologydescription", "pk": "e29487ac-f157-4230-b8d7-c3c6b82e14d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "27.00", "lithology_to": "134.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE AT 71'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203268}}, {"model": "wells.lithologydescription", "pk": "e29e12e0-03fd-47f9-a7d4-e1b63227cac2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "42.00", "lithology_to": "48.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202329}}, {"model": "wells.lithologydescription", "pk": "e2a56f7b-6584-4d40-8ca6-0683c77fea4a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well_tag_number": 112990, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202408}}, {"model": "wells.lithologydescription", "pk": "e2a8abdb-6496-4701-906b-818288ef2dfb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:33:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:33:43Z", "activity_submission": null, "well_tag_number": 112775, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201064}}, {"model": "wells.lithologydescription", "pk": "e2b94159-bdfb-4a65-81a3-5eb2c1989940", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well_tag_number": 112374, "lithology_from": "73.00", "lithology_to": "85.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198328}}, {"model": "wells.lithologydescription", "pk": "e2c106c7-6d52-4d45-befc-7f92aa6bea99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:32Z", "activity_submission": null, "well_tag_number": 113305, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204057}}, {"model": "wells.lithologydescription", "pk": "e2d8d0e7-f5df-473e-bf46-3d46ea416a2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "silt and organics", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198843}}, {"model": "wells.lithologydescription", "pk": "e2d9bfed-fc3a-4f5a-a412-df410af439a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "204.00", "lithology_to": "233.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202209}}, {"model": "wells.lithologydescription", "pk": "e2da0e0f-554f-4ee7-8471-9f918ee4f7b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "112.00", "lithology_to": "115.00", "lithology_raw_data": "FINE SAND, SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201925}}, {"model": "wells.lithologydescription", "pk": "e3046902-b418-4d31-8ef5-320071946b0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "16.00", "lithology_to": "46.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200981}}, {"model": "wells.lithologydescription", "pk": "e30788d4-5ff6-4aad-a59e-b77f8170d301", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:50:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, "well_tag_number": 112746, "lithology_from": "30.00", "lithology_to": "39.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; CLEANER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200870}}, {"model": "wells.lithologydescription", "pk": "e314447f-9430-49de-ae4b-595cf8fcd942", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, "well_tag_number": 112840, "lithology_from": "11.00", "lithology_to": "19.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201413}}, {"model": "wells.lithologydescription", "pk": "e34ed978-3235-4fdc-adaa-d863ba372025", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well_tag_number": 112413, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "GRAVEL, TRACE OF SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198555}}, {"model": "wells.lithologydescription", "pk": "e34ee2f3-13fb-4c5c-8aff-def769a3f5b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": "3.00", "lithology_to": "98.00", "lithology_raw_data": "rock, very hard", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "0.2500", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "brown zone at 90'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202470}}, {"model": "wells.lithologydescription", "pk": "e3546c42-a210-4d54-a6fa-0cb48d4a18ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well_tag_number": 112959, "lithology_from": "72.00", "lithology_to": "88.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "50 +", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202218}}, {"model": "wells.lithologydescription", "pk": "e355650c-7db5-4ba5-9e2f-f09ad9101318", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well_tag_number": 112864, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "cobbles, silty, moist", "lithology_description": "45", "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201664}}, {"model": "wells.lithologydescription", "pk": "e35abb60-a725-43f3-8c29-4ba0abcd1647", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-26T19:39:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-26T19:39:27Z", "activity_submission": null, "well_tag_number": 113202, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "gravel, cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203576}}, {"model": "wells.lithologydescription", "pk": "e3632b55-44e0-4aa2-bec4-de603bbfdf27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:05:15Z", "activity_submission": null, "well_tag_number": 112245, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197501}}, {"model": "wells.lithologydescription", "pk": "e364cc85-40f4-4d80-9fc7-465888f4e9aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T22:12:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, "well_tag_number": 113247, "lithology_from": "25.00", "lithology_to": "36.00", "lithology_raw_data": "cleaner", "lithology_description": "52", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WB", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203802}}, {"model": "wells.lithologydescription", "pk": "e3688710-6723-48f6-80b2-6a22ca89bb41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "692.00", "lithology_to": "697.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "35.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202858}}, {"model": "wells.lithologydescription", "pk": "e37dc021-5d36-4bb7-89bc-b45620e1d9d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T17:46:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, "well_tag_number": 112867, "lithology_from": "17.00", "lithology_to": "23.50", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "STIFF", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "30gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201688}}, {"model": "wells.lithologydescription", "pk": "e3815f6c-43c4-4d78-99dd-fd2d4cf393d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, "well_tag_number": 112882, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201764}}, {"model": "wells.lithologydescription", "pk": "e384c2b0-832c-4f2f-a3e4-dba0a9edc042", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well_tag_number": 112819, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201269}}, {"model": "wells.lithologydescription", "pk": "e3868fca-1294-41db-a48c-c45375e8f8f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "276.00", "lithology_to": "341.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197898}}, {"model": "wells.lithologydescription", "pk": "e3883391-fd1b-471e-913d-39ac4cd41546", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "287.00", "lithology_to": "300.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", "lithology_description": "47", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "STATIC 223'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201610}}, {"model": "wells.lithologydescription", "pk": "e3896aaf-a380-4ae3-aad3-43a793729ab9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "100.00", "lithology_to": "125.00", "lithology_raw_data": "BLACK & WHITE GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183346}}, {"model": "wells.lithologydescription", "pk": "e389a9a2-d3c8-431a-9327-e996a26f1eaa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well_tag_number": 112340, "lithology_from": "585.00", "lithology_to": "625.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198111}}, {"model": "wells.lithologydescription", "pk": "e38a6378-b0bf-473f-b801-e67acb49ac88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, "well_tag_number": 112685, "lithology_from": "30.00", "lithology_to": "53.00", "lithology_raw_data": "GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200503}}, {"model": "wells.lithologydescription", "pk": "e3942419-75d0-440e-ae23-151d3f27796d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "123.00", "lithology_to": "154.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BOULDER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201771}}, {"model": "wells.lithologydescription", "pk": "e3aaa7f0-5b0d-481c-bc87-440635a6a7a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, "well_tag_number": 112627, "lithology_from": "160.00", "lithology_to": "336.00", "lithology_raw_data": "Gravel & boulders", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200265}}, {"model": "wells.lithologydescription", "pk": "e3b369c2-91eb-4334-909e-ad832111cfa9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "10.50", "lithology_to": "42.00", "lithology_raw_data": "bedrock, some shale", "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203830}}, {"model": "wells.lithologydescription", "pk": "e3c17b08-d149-4908-8b12-0615ae2083c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, "well_tag_number": 112773, "lithology_from": "2.00", "lithology_to": "4.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE CHIPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201055}}, {"model": "wells.lithologydescription", "pk": "e3d41fb0-6680-4d15-85ed-78a773de29e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:10:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, "well_tag_number": 108027, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "silt, sand and rock", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172309}}, {"model": "wells.lithologydescription", "pk": "e3df57dc-c09d-4485-a9dc-b6115ba8e949", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, MINOR SAND AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198978}}, {"model": "wells.lithologydescription", "pk": "e3e2a979-0dfc-4a16-8492-acc60e9dbde6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202967}}, {"model": "wells.lithologydescription", "pk": "e3e45ce0-ef2b-43d0-b050-951fcc2a3327", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "160.00", "lithology_to": "165.00", "lithology_raw_data": "SILT, SAND FINE-MEDIUM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199592}}, {"model": "wells.lithologydescription", "pk": "e3e9dd1a-2c56-4dd0-b614-ca587048f545", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "276.00", "lithology_to": "303.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=CHOCOLATE BROWN WITH GREY AND WHITE; VERY DIRTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200468}}, {"model": "wells.lithologydescription", "pk": "e3ebc263-9337-4718-b703-107358168207", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well_tag_number": 100501, "lithology_from": "136.00", "lithology_to": "154.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "H2O", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132274}}, {"model": "wells.lithologydescription", "pk": "e3f9a9fa-fb32-4c4b-83be-7539cf67f62d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199373}}, {"model": "wells.lithologydescription", "pk": "e4239bc0-d43c-4b4c-b15d-44c9dc8b696a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "333.00", "lithology_to": "338.00", "lithology_raw_data": "LIGHT GREY OTHER SURFICIAL/BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197884}}, {"model": "wells.lithologydescription", "pk": "e423cd92-d1dc-4025-b3cd-37b831db7a30", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202391}}, {"model": "wells.lithologydescription", "pk": "e42c30e7-9f3f-4d39-b57e-9c6e874bff07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, "well_tag_number": 112290, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197731}}, {"model": "wells.lithologydescription", "pk": "e42d91bc-8220-4455-9fa5-c788433f31a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well_tag_number": 113065, "lithology_from": "2.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202746}}, {"model": "wells.lithologydescription", "pk": "e43969d5-fbcf-44a3-aa16-50b51d2c0e65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, "well_tag_number": 112229, "lithology_from": "38.00", "lithology_to": "80.00", "lithology_raw_data": "DENSE HARDPAN. SEVERAL LARGE GLACIAL BOULDERS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SAND CANNOT BE SCREENED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197414}}, {"model": "wells.lithologydescription", "pk": "e444f68a-e885-4cbc-9b2d-d2295e662247", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:01:35Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "745.00", "lithology_to": "752.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199795}}, {"model": "wells.lithologydescription", "pk": "e44c8c74-d972-45d6-acdb-eeed81b06481", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "126.00", "lithology_to": "133.00", "lithology_raw_data": null, "lithology_description": "56", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198292}}, {"model": "wells.lithologydescription", "pk": "e46dba08-027b-490f-b792-cc5bf1c69de8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:51:10Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "418.00", "lithology_to": "460.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "COLOUR=BLACK, WHITE AND GREY; REDDISH BROWN WATER @ 420'; SOFT SPOT AND FRACTURE @ 420'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200470}}, {"model": "wells.lithologydescription", "pk": "e4760fec-bd25-4d17-b03a-f4392298f94b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "28.00", "lithology_to": "34.00", "lithology_raw_data": "and gravel with clay chunks", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197664}}, {"model": "wells.lithologydescription", "pk": "e477439f-f7df-4d8e-82a3-734b33ea668b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well_tag_number": 112802, "lithology_from": "81.50", "lithology_to": "82.00", "lithology_raw_data": "DENSE DARK GRAY MARINE CLAY WITH CLAM SHELL AND VERY FINE SAND WITH TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201176}}, {"model": "wells.lithologydescription", "pk": "e47c7215-a6a5-42f7-bb38-d31e58cff972", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:32:10Z", "activity_submission": null, "well_tag_number": 112360, "lithology_from": "99.00", "lithology_to": "290.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198226}}, {"model": "wells.lithologydescription", "pk": "e480dbd1-88d3-419c-aeb2-20daaeceeb78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "45.00", "lithology_to": "100.00", "lithology_raw_data": "BROWN/GREY/BLACK VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198407}}, {"model": "wells.lithologydescription", "pk": "e480f3c0-b68f-407c-9759-c5d77bf38ff5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:27:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:27:19Z", "activity_submission": null, "well_tag_number": 112633, "lithology_from": "15.00", "lithology_to": "56.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200297}}, {"model": "wells.lithologydescription", "pk": "e490f059-f3a4-4fcf-8751-f4948866bb0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199863}}, {"model": "wells.lithologydescription", "pk": "e4b52e19-5711-41aa-a318-0e90a59131c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "38.00", "lithology_to": "41.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130488}}, {"model": "wells.lithologydescription", "pk": "e4b583bc-de91-408e-9b4a-a66a6e4cd915", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "560.00", "lithology_to": "710.00", "lithology_raw_data": "BROKEN GREEN SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201304}}, {"model": "wells.lithologydescription", "pk": "e4ca5567-0aa3-4a67-a72d-ab834624d13b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:36:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, "well_tag_number": 112973, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202296}}, {"model": "wells.lithologydescription", "pk": "e4cfd811-10d0-425f-bebb-36921673a3f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well_tag_number": 112310, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "47", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197826}}, {"model": "wells.lithologydescription", "pk": "e4d5b9ce-55d5-4775-bb2c-0b887855c28e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "96.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "16", "lithology_hardness": "STIFF", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198728}}, {"model": "wells.lithologydescription", "pk": "e4d64a48-5264-40db-b164-fd4962f96735", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:56:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:56:53Z", "activity_submission": null, "well_tag_number": 112407, "lithology_from": "0.00", "lithology_to": "156.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198528}}, {"model": "wells.lithologydescription", "pk": "e4e2d12e-a425-479a-8728-5906c09f986b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198919}}, {"model": "wells.lithologydescription", "pk": "e4ea909e-a34d-44a5-aa55-6ffc937fa119", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well_tag_number": 112258, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197562}}, {"model": "wells.lithologydescription", "pk": "e4f030f6-9e82-4abc-a16c-f41d11e2656e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "98.00", "lithology_to": "101.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MEDIUM GRAIN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199498}}, {"model": "wells.lithologydescription", "pk": "e4f2f935-872a-47c0-acd5-da2aadc9bceb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well_tag_number": 100500, "lithology_from": "22.00", "lithology_to": "78.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOME GRAVEL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132262}}, {"model": "wells.lithologydescription", "pk": "e50ac95e-26f6-420e-b504-4b7d31cac3b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, "well_tag_number": 112517, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "sand", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199401}}, {"model": "wells.lithologydescription", "pk": "e51aaebe-879d-4ead-8f03-39f92b328c54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well_tag_number": 112403, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198498}}, {"model": "wells.lithologydescription", "pk": "e526d11d-81f9-4252-876d-fa0bb9c642aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "315.00", "lithology_to": "320.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199469}}, {"model": "wells.lithologydescription", "pk": "e54f6927-869c-44ae-aa18-e0ad1e53f4e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well_tag_number": 113304, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204051}}, {"model": "wells.lithologydescription", "pk": "e555e143-0a1b-4e29-8edf-6479f478dde9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well_tag_number": 100542, "lithology_from": "112.00", "lithology_to": "126.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 132526}}, {"model": "wells.lithologydescription", "pk": "e557f7d8-e5ae-4fd9-bec7-a1a28cdf085c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well_tag_number": 112428, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND CLAY AND MINOR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198679}}, {"model": "wells.lithologydescription", "pk": "e5605f74-ad26-452c-a756-3cffb453cf99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "65.00", "lithology_to": "81.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202224}}, {"model": "wells.lithologydescription", "pk": "e56b9d34-2798-45d1-9609-e466a979550a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, "well_tag_number": 112256, "lithology_from": "48.00", "lithology_to": "68.00", "lithology_raw_data": "LARGE 6\" MINUS COBBLES, MEDIUM GREY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WELL SORTED; YIELD = 20+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197556}}, {"model": "wells.lithologydescription", "pk": "e56baf47-16af-4ff3-beb2-3b720dd74c49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, "well_tag_number": 112665, "lithology_from": "277.00", "lithology_to": "342.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200416}}, {"model": "wells.lithologydescription", "pk": "e570d6d3-7c8f-45cc-b00b-714168e69303", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "26.00", "lithology_to": "31.00", "lithology_raw_data": "SAND, FINE GRAVEL, SILT, WOOD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202304}}, {"model": "wells.lithologydescription", "pk": "e578cc94-4ca7-4ae9-9bf8-52d48e3a3d3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well_tag_number": 112771, "lithology_from": "12.00", "lithology_to": "72.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201041}}, {"model": "wells.lithologydescription", "pk": "e5a06ddb-07b0-474b-81de-44a86ab6cf04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:52:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, "well_tag_number": 112941, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "BROWN SOIL, COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202115}}, {"model": "wells.lithologydescription", "pk": "e5aa4d11-bfc0-4b6e-a974-6c80330f573f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "gravel and cobbles", "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198381}}, {"model": "wells.lithologydescription", "pk": "e5b12b16-dc41-4b62-a64e-25e2c619c179", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "317.00", "lithology_to": "458.00", "lithology_raw_data": "BLACK SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201298}}, {"model": "wells.lithologydescription", "pk": "e5b2e7ff-7c6a-4621-8455-ed55026196f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:44:09Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "163.00", "lithology_to": "171.00", "lithology_raw_data": "GLACIAL TILL SAND/GRAVEL", "lithology_description": null, "lithology_colour": "00", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197422}}, {"model": "wells.lithologydescription", "pk": "e5c8535d-9793-4b7c-84ba-4361585ae717", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well_tag_number": 113106, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203007}}, {"model": "wells.lithologydescription", "pk": "e5e9e0b9-f569-48fb-b8c5-3f74b568d0ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well_tag_number": 112354, "lithology_from": "230.00", "lithology_to": "290.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198196}}, {"model": "wells.lithologydescription", "pk": "e6056271-c460-4a74-b8de-9a33515c6dcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "42.00", "lithology_to": "46.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200069}}, {"model": "wells.lithologydescription", "pk": "e606d246-453a-41b8-8936-819757b16eab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, "well_tag_number": 112344, "lithology_from": "135.00", "lithology_to": "141.00", "lithology_raw_data": "GLACIAL TYPE TILL - WATER MIXED WITH CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198135}}, {"model": "wells.lithologydescription", "pk": "e609018a-b04e-4846-89d7-6fe5681187a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, "well_tag_number": 113289, "lithology_from": "5.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "brown, loose, dry", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203983}}, {"model": "wells.lithologydescription", "pk": "e6101335-c432-4738-a189-98a1a1905c1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "278.00", "lithology_to": "282.00", "lithology_raw_data": "GRAVEL, SAND, CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202212}}, {"model": "wells.lithologydescription", "pk": "e61a8b1b-4b3e-4f49-a9ba-04189f6b18a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "503.00", "lithology_to": "603.00", "lithology_raw_data": "SANDSTONE & SILTSTONE", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "12.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FLOWTEST WITH AIR", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201560}}, {"model": "wells.lithologydescription", "pk": "e6243b4b-5a80-45b9-950c-517871730c8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well_tag_number": 112729, "lithology_from": "342.00", "lithology_to": "400.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN AND WHITE; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200757}}, {"model": "wells.lithologydescription", "pk": "e63134cc-2993-4765-9659-e8962b38f1d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "4.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201449}}, {"model": "wells.lithologydescription", "pk": "e6356cd4-82f7-44b5-9f93-e48330880a26", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well_tag_number": 112225, "lithology_from": "395.00", "lithology_to": "525.00", "lithology_raw_data": "GREY/GREEN VOLCANIC WITH FEW GREEN TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197388}}, {"model": "wells.lithologydescription", "pk": "e64071ae-0a7e-4cb4-81be-48dcd328bd2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well_tag_number": 112448, "lithology_from": "96.00", "lithology_to": "106.00", "lithology_raw_data": null, "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198877}}, {"model": "wells.lithologydescription", "pk": "e6430c62-ee78-4c16-a3ee-238ab7e71591", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well_tag_number": 112841, "lithology_from": "168.00", "lithology_to": "171.00", "lithology_raw_data": "layers", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201425}}, {"model": "wells.lithologydescription", "pk": "e6445d02-3e6a-4035-a605-f914586718e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "36.00", "lithology_to": "47.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198725}}, {"model": "wells.lithologydescription", "pk": "e65081c5-3920-4f0b-b34e-981e097437d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "123.00", "lithology_to": "353.00", "lithology_raw_data": "with quartz seams", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199040}}, {"model": "wells.lithologydescription", "pk": "e65cd1fa-0c64-471a-807d-349761a0021f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well_tag_number": 112939, "lithology_from": "115.00", "lithology_to": "135.00", "lithology_raw_data": "MIX WOOD SHALE WHITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202108}}, {"model": "wells.lithologydescription", "pk": "e661fef9-ba9e-4e1f-94b2-37803c8192d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well_tag_number": 112479, "lithology_from": "50.00", "lithology_to": "52.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NO WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199135}}, {"model": "wells.lithologydescription", "pk": "e66d0eed-a14a-4080-b0ba-32186d1e6b3c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well_tag_number": 112337, "lithology_from": "182.00", "lithology_to": "187.00", "lithology_raw_data": "MEDIUM-HARD, SHALEY-CLAY", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198077}}, {"model": "wells.lithologydescription", "pk": "e69d245b-d663-4d75-9900-cf0f09847796", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "69.00", "lithology_to": "71.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202814}}, {"model": "wells.lithologydescription", "pk": "e6a57ee3-897b-4d0d-bb58-a2b9f6d3ed72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "90.00", "lithology_to": "105.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203079}}, {"model": "wells.lithologydescription", "pk": "e6a8d40e-1e10-4bd5-90a9-41a9d2080881", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, "well_tag_number": 112222, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "GREY, BROWN WEATHERED VOLCANIC WITH ORGANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197352}}, {"model": "wells.lithologydescription", "pk": "e6a90ba0-421c-4f55-8bd4-fde8cd19bf1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "48.00", "lithology_to": "63.00", "lithology_raw_data": "and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199048}}, {"model": "wells.lithologydescription", "pk": "e6b1123a-6011-4f72-a534-fc223f1b9485", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:44Z", "activity_submission": null, "well_tag_number": 112693, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200535}}, {"model": "wells.lithologydescription", "pk": "e6b8ad5e-7bfc-42d9-bb0f-782c81c582d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well_tag_number": 112483, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "SHARP ROCK, ANGULAR WATER", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199168}}, {"model": "wells.lithologydescription", "pk": "e6cc739e-c7e1-4366-bec6-0f913e3b27e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:39:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, "well_tag_number": 113263, "lithology_from": "55.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203895}}, {"model": "wells.lithologydescription", "pk": "e6d6b796-c5ad-4895-bc42-b1355ba137b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well_tag_number": 112737, "lithology_from": "157.00", "lithology_to": "184.00", "lithology_raw_data": "SILTSTONE AND FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT GREY; UNSTABLE ZONE@176'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200815}}, {"model": "wells.lithologydescription", "pk": "e6d80522-2645-4a23-a945-b2382407a418", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well_tag_number": 112272, "lithology_from": "83.00", "lithology_to": "86.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Silty - Wet ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197635}}, {"model": "wells.lithologydescription", "pk": "e6df30a8-773b-4282-860e-be582d72eefd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "83.00", "lithology_to": "90.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203544}}, {"model": "wells.lithologydescription", "pk": "e6f6144f-6891-41a6-b170-bb7854908757", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, "well_tag_number": 113116, "lithology_from": "12.00", "lithology_to": "60.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203051}}, {"model": "wells.lithologydescription", "pk": "e6fa1237-b1fb-4d1e-8c54-b8ec5d9982fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well_tag_number": 113020, "lithology_from": "209.00", "lithology_to": "237.00", "lithology_raw_data": "GREY-TAN-PINK BROKEN BEDROCK - WHITE PASTE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "VERY DIRTY HEWING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202538}}, {"model": "wells.lithologydescription", "pk": "e6fdf9d9-e963-4dad-88f9-7c83c0fe5477", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:45:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, "well_tag_number": 112250, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "200.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "133-140 FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197519}}, {"model": "wells.lithologydescription", "pk": "e70262ba-5821-4b2a-a3e3-9a8fbf935807", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "sticky", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198722}}, {"model": "wells.lithologydescription", "pk": "e719cf1d-f1c9-43af-96ee-400ef56a33b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T22:51:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, "well_tag_number": 112699, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200558}}, {"model": "wells.lithologydescription", "pk": "e71c3bc4-11fa-4db9-9d59-84fca331d678", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T21:03:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T21:03:43Z", "activity_submission": null, "well_tag_number": 112619, "lithology_from": "0.00", "lithology_to": "145.00", "lithology_raw_data": "shale & gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200147}}, {"model": "wells.lithologydescription", "pk": "e71c4579-4ce1-40f3-afd1-2415c411f6af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well_tag_number": 112582, "lithology_from": "170.00", "lithology_to": "180.00", "lithology_raw_data": "FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199865}}, {"model": "wells.lithologydescription", "pk": "e729bc15-7d16-4845-af08-13b337f9f0b2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, "well_tag_number": 112368, "lithology_from": "108.00", "lithology_to": "126.00", "lithology_raw_data": null, "lithology_description": "49", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198291}}, {"model": "wells.lithologydescription", "pk": "e736f9ef-75f7-4d40-9a39-a6b2e4a467ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well_tag_number": 112865, "lithology_from": "103.00", "lithology_to": "128.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201678}}, {"model": "wells.lithologydescription", "pk": "e73b99de-2c57-4794-bc74-0e2f27ddf7bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:39Z", "activity_submission": null, "well_tag_number": 113096, "lithology_from": "12.00", "lithology_to": "38.00", "lithology_raw_data": "sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202961}}, {"model": "wells.lithologydescription", "pk": "e74a0fd4-eca9-402e-b1c7-db4026347d4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well_tag_number": 112852, "lithology_from": "537.00", "lithology_to": "543.00", "lithology_raw_data": "SILTSTONE & FINE SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201511}}, {"model": "wells.lithologydescription", "pk": "e7524607-ec14-422b-ae34-8e3da693b88d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:00:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, "well_tag_number": 112696, "lithology_from": "10.00", "lithology_to": "36.00", "lithology_raw_data": "cobbles", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "09", "water_bearing_estimated_flow": "7.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "Layered with sandy and soft zones", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200546}}, {"model": "wells.lithologydescription", "pk": "e757160d-9e36-4117-8e79-83f340a71067", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well_tag_number": 112718, "lithology_from": "3.00", "lithology_to": "7.00", "lithology_raw_data": "FINE AND MEDIUM SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200655}}, {"model": "wells.lithologydescription", "pk": "e75c1cb1-9358-47bc-9642-67e2eebc48ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:23:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, "well_tag_number": 112972, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, SAND, GRAVEL, COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202292}}, {"model": "wells.lithologydescription", "pk": "e75d8035-2710-4a06-9f5f-8fdb910d68a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "6.00", "lithology_to": "110.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199798}}, {"model": "wells.lithologydescription", "pk": "e77635af-d31d-4800-bedb-55b8c7887b84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, "well_tag_number": 112612, "lithology_from": "0.00", "lithology_to": "41.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200082}}, {"model": "wells.lithologydescription", "pk": "e79fe858-a763-4583-8727-f1510a07d0e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "155.00", "lithology_to": "156.00", "lithology_raw_data": "Silt", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203602}}, {"model": "wells.lithologydescription", "pk": "e7b3d51b-c52e-4403-84e8-2fe5e2d37952", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T19:13:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, "well_tag_number": 112836, "lithology_from": "93.00", "lithology_to": "94.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201402}}, {"model": "wells.lithologydescription", "pk": "e7bb5e0d-5ede-4644-a9d0-a7a66fc4c2c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "15.00", "lithology_to": "29.00", "lithology_raw_data": "SILT WITH TRACE OF GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREYISH, BROWN; WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200596}}, {"model": "wells.lithologydescription", "pk": "e7be6d6d-9064-413f-b59f-17846ef33173", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "177.00", "lithology_to": "237.00", "lithology_raw_data": "SHALE & SILTSTONE, MEDIUM TO HARD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201548}}, {"model": "wells.lithologydescription", "pk": "e7c16b4c-e728-42f8-bd12-ed605f7c9753", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, "well_tag_number": 112402, "lithology_from": "65.00", "lithology_to": "77.00", "lithology_raw_data": "FINE TO MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198494}}, {"model": "wells.lithologydescription", "pk": "e7dcaef3-5f69-4702-b4c1-45c614877927", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:56:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, "well_tag_number": 112764, "lithology_from": "6.50", "lithology_to": "8.00", "lithology_raw_data": "SILTY CLAY - TRACE SAND, AND GRAVEL. INCREASE IN SILT AND SAND CONTENT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=DARK GREYISH BROWN; MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201005}}, {"model": "wells.lithologydescription", "pk": "e7e7ba8e-6770-4a1a-8860-10958f177da8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:08:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, "well_tag_number": 112826, "lithology_from": "39.00", "lithology_to": "156.00", "lithology_raw_data": "COARSE GRAVEL & SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201335}}, {"model": "wells.lithologydescription", "pk": "e7e8f998-18d3-4316-8c77-6b877d34eda3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "BROKEN SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201293}}, {"model": "wells.lithologydescription", "pk": "e7fa94b7-59bc-4c91-9ddb-b81d23941bc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET AND SILTY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200369}}, {"model": "wells.lithologydescription", "pk": "e7fb9ab8-a973-4874-bd9a-f21eaa0eab0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, "well_tag_number": 112795, "lithology_from": "0.00", "lithology_to": "73.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201145}}, {"model": "wells.lithologydescription", "pk": "e7fda21d-5bb0-4df7-910b-e26935cfa275", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199283}}, {"model": "wells.lithologydescription", "pk": "e803dcf1-4b3d-4d63-85c0-a3b1b032b94d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, "well_tag_number": 113199, "lithology_from": "15.00", "lithology_to": "80.00", "lithology_raw_data": "Till, clay, cobbles", "lithology_description": "12", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203560}}, {"model": "wells.lithologydescription", "pk": "e80d1c94-36b3-478b-b90a-6a49df1ee742", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "68.00", "lithology_to": "75.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197996}}, {"model": "wells.lithologydescription", "pk": "e81488b6-c952-4f6d-90bb-5eb2f7974065", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, "well_tag_number": 112929, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL TILL GREY/BLACK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202063}}, {"model": "wells.lithologydescription", "pk": "e81809f9-f41c-486e-a4fc-7ea738927448", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well_tag_number": 113290, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "green", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203992}}, {"model": "wells.lithologydescription", "pk": "e825ef98-969b-4a8b-a538-7f59fff9d623", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199531}}, {"model": "wells.lithologydescription", "pk": "e83aa4d9-e14d-48d5-a973-a6aac278136a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY HOLE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203886}}, {"model": "wells.lithologydescription", "pk": "e84b2d90-74b9-4fab-aa65-1c281e13d0c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "114.00", "lithology_to": "118.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "NO IRON", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200407}}, {"model": "wells.lithologydescription", "pk": "e84ca724-21a6-4e56-9c21-155c2f7c2b72", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, "well_tag_number": 112504, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": "BLUE GRAVEL WITH CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199337}}, {"model": "wells.lithologydescription", "pk": "e84fe635-3cba-4668-a306-18d24fb344e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well_tag_number": 112921, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BLASTED FILL ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202026}}, {"model": "wells.lithologydescription", "pk": "e85a43cc-a43e-4912-8999-89020cc0e07a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-03T17:51:06Z", "activity_submission": null, "well_tag_number": 112742, "lithology_from": "58.00", "lithology_to": "90.00", "lithology_raw_data": "SILTY CLAY WITH SOME VOLCANIC ASH LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "COLOUR=GREYISH BROWN; WATER BEARING; WELL SORTED WITH SILTY WASH", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200850}}, {"model": "wells.lithologydescription", "pk": "e8702f8d-2ff2-4279-8747-9046e306efb8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well_tag_number": 112959, "lithology_from": "14.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202215}}, {"model": "wells.lithologydescription", "pk": "e880269b-8f0d-4cc4-829b-18e3ff8d7078", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "136.00", "lithology_to": "140.00", "lithology_raw_data": "SAND, GRAVELS AND SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198473}}, {"model": "wells.lithologydescription", "pk": "e89c0836-f13b-460a-91ef-e50c65146f2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well_tag_number": 112782, "lithology_from": "173.00", "lithology_to": "195.00", "lithology_raw_data": "CLAY WITH FRACTURED MUDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201112}}, {"model": "wells.lithologydescription", "pk": "e8a19e14-afe2-4cac-8376-5c842a85e92b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, "well_tag_number": 113303, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204047}}, {"model": "wells.lithologydescription", "pk": "e8a575df-e8b7-443f-b609-46c888cc42d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "393.00", "lithology_to": "444.00", "lithology_raw_data": "light grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201257}}, {"model": "wells.lithologydescription", "pk": "e8b9d73a-d6b0-4085-9265-eed4b101ff6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, "well_tag_number": 112522, "lithology_from": "68.00", "lithology_to": "71.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "no iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199437}}, {"model": "wells.lithologydescription", "pk": "e8bb7133-ffab-4011-a787-06c4905b9500", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well_tag_number": 113117, "lithology_from": "661.00", "lithology_to": "700.00", "lithology_raw_data": "cobbles, boulders", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TAKING FLUID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203062}}, {"model": "wells.lithologydescription", "pk": "e8c48547-6566-44ba-9112-c1b663093285", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well_tag_number": 112325, "lithology_from": "170.00", "lithology_to": "280.00", "lithology_raw_data": "SILTY CLAY/SOME TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197925}}, {"model": "wells.lithologydescription", "pk": "e8c9340d-97a6-476e-91b9-bc6a436fca16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well_tag_number": 112581, "lithology_from": "7.00", "lithology_to": "125.00", "lithology_raw_data": "VOLCANIC WITH FEW WHITE TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199855}}, {"model": "wells.lithologydescription", "pk": "e8d73c4e-afb8-4d5e-bdb7-5ce0bb75d325", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "82.00", "lithology_to": "90.00", "lithology_raw_data": "ANGULAR ROCKS, FINE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199553}}, {"model": "wells.lithologydescription", "pk": "e8fa03fd-56a2-40c4-8b1d-02da5d0059e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, "well_tag_number": 112240, "lithology_from": "130.00", "lithology_to": "131.00", "lithology_raw_data": "CONGLOMERATE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197482}}, {"model": "wells.lithologydescription", "pk": "e8fbcac7-84ee-4554-bb3a-d2d7f9eec87a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "104.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201964}}, {"model": "wells.lithologydescription", "pk": "e8fc0161-55da-4128-b7d7-d385ef3b35ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well_tag_number": 112433, "lithology_from": "32.00", "lithology_to": "36.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198724}}, {"model": "wells.lithologydescription", "pk": "e90def69-d444-43dd-8a56-88ef3d287ac6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, "well_tag_number": 113269, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203912}}, {"model": "wells.lithologydescription", "pk": "e9106404-726b-4fc6-877c-15b84a88c606", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "340.00", "lithology_to": "360.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199114}}, {"model": "wells.lithologydescription", "pk": "e910b568-1528-4349-85d1-1d0161e1f933", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well_tag_number": 112915, "lithology_from": "49.00", "lithology_to": "66.00", "lithology_raw_data": "COARSE SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201982}}, {"model": "wells.lithologydescription", "pk": "e92396ac-a5a7-4546-ac42-dfc83d789b4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well_tag_number": 112237, "lithology_from": "190.00", "lithology_to": "195.00", "lithology_raw_data": "SANDS AND MORE GRAVEL, STARTED H20 AT 195 FEET", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197462}}, {"model": "wells.lithologydescription", "pk": "e92faf6b-f64a-4278-900b-9bb5e53b38c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-02T19:21:35Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "451.00", "lithology_to": "453.00", "lithology_raw_data": "Coal", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "33", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203412}}, {"model": "wells.lithologydescription", "pk": "e930ccab-ac6d-4d74-b845-323d50608dc3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well_tag_number": 112628, "lithology_from": "176.00", "lithology_to": "215.00", "lithology_raw_data": "COARSE GRAVEL & SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200286}}, {"model": "wells.lithologydescription", "pk": "e931c3da-5a29-46a1-bcb2-591bf4bb1603", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:48:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, "well_tag_number": 112968, "lithology_from": "14.00", "lithology_to": "30.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "50+", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202277}}, {"model": "wells.lithologydescription", "pk": "e93bf959-3e30-40df-afcd-6e19db738975", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well_tag_number": 112978, "lithology_from": "55.00", "lithology_to": "64.00", "lithology_raw_data": "SILT & SAND", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202331}}, {"model": "wells.lithologydescription", "pk": "e9671674-83b3-40f8-88a8-a1888df8ae0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well_tag_number": 112255, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197544}}, {"model": "wells.lithologydescription", "pk": "e96aec09-91e7-4d1f-8dcd-8306ffdbdd8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "115.00", "lithology_to": "125.00", "lithology_raw_data": "SILTY COARS SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199757}}, {"model": "wells.lithologydescription", "pk": "e9857116-d422-4c80-9f21-9035cdb8c142", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "114.00", "lithology_to": "128.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199501}}, {"model": "wells.lithologydescription", "pk": "e985e1ca-a464-458b-92f2-bce56bab569c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well_tag_number": 112623, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "CRUMBLY LAVA ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200189}}, {"model": "wells.lithologydescription", "pk": "e99b3c5d-e92c-4ce3-a671-f52b5c7fb18a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "68.00", "lithology_to": "180.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198777}}, {"model": "wells.lithologydescription", "pk": "e9a0b8ac-8fb7-4e75-8285-b5c4f6da2407", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:41:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-04T01:46:13Z", "activity_submission": null, "well_tag_number": 112233, "lithology_from": "4.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "81'-82'=SOFT, WHITE, FRACTURED FELDSPAR, NO WATER; 120'-121'=SOFT, WHITE, FRACTURED WITH QUARTZ, 7 GPM; 155'-157'=SOFT FRACTURE WITH PINK FELDSPAR, WATER INCREASED TO 15 GPM; 172'-173'=SOFT, WHITE, FRACTURED, WATER INCREASED TO 20 GPM, TOTAL YIELD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197441}}, {"model": "wells.lithologydescription", "pk": "e9b40bca-2700-47fd-9ef2-21e4c8338967", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well_tag_number": 112780, "lithology_from": "0.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201092}}, {"model": "wells.lithologydescription", "pk": "e9eece6d-10ec-4f74-8676-1c0121d147de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "87.00", "lithology_to": "110.00", "lithology_raw_data": "LOOSE SAND AND GRAVEL, CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202247}}, {"model": "wells.lithologydescription", "pk": "e9f93b3a-729c-4247-9d52-edf5355796eb", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:32:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:17Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "22.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200113}}, {"model": "wells.lithologydescription", "pk": "e9fdc203-6474-4610-aadb-0073f2a8f17c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, "well_tag_number": 112713, "lithology_from": "7.00", "lithology_to": "9.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200636}}, {"model": "wells.lithologydescription", "pk": "ea0086fb-3b5f-4292-a40c-3adc5c2b1a61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "335.00", "lithology_to": "400.00", "lithology_raw_data": "FINE SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200838}}, {"model": "wells.lithologydescription", "pk": "ea038a37-a9d1-4c8c-8d76-934142457e9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "194.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199143}}, {"model": "wells.lithologydescription", "pk": "ea03d28b-2dc6-4b45-ad42-c59e6d167044", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well_tag_number": 113134, "lithology_from": "71.00", "lithology_to": "155.00", "lithology_raw_data": "silty sand", "lithology_description": "60", "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203188}}, {"model": "wells.lithologydescription", "pk": "ea16a0a2-6217-41c2-b925-47265f186586", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well_tag_number": 112628, "lithology_from": "149.00", "lithology_to": "176.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200285}}, {"model": "wells.lithologydescription", "pk": "ea1bfbbc-5e75-4a54-b249-be224e8f425e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well_tag_number": 113193, "lithology_from": "95.00", "lithology_to": "108.00", "lithology_raw_data": "gravelly", "lithology_description": "53", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203550}}, {"model": "wells.lithologydescription", "pk": "ea2da201-18e6-4a49-b53d-fba357e60dca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "163.00", "lithology_to": "166.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198357}}, {"model": "wells.lithologydescription", "pk": "ea2e8150-2eef-45da-8a0b-f4961d1ac82b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well_tag_number": 112906, "lithology_from": "91.00", "lithology_to": "95.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201923}}, {"model": "wells.lithologydescription", "pk": "ea354a69-8c28-4689-9aa7-a405d1093048", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "121.00", "lithology_to": "123.00", "lithology_raw_data": "SAND GRAVEL, FINE/CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198019}}, {"model": "wells.lithologydescription", "pk": "ea44532b-a054-4f79-b79d-cf7718aa198f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well_tag_number": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water source:", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203685}}, {"model": "wells.lithologydescription", "pk": "ea4ba8f1-36d4-4be7-a23a-4a0a055d79fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well_tag_number": 112596, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199947}}, {"model": "wells.lithologydescription", "pk": "ea4c1482-840a-47a9-89ff-28cf1e75831e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:40Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T18:12:07Z", "activity_submission": null, "well_tag_number": 112578, "lithology_from": "135.00", "lithology_to": "205.00", "lithology_raw_data": "PASTY METAMORPHIC TYPE BEDROCK - CLAY IN FRACTURES", "lithology_description": null, "lithology_colour": "11", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "168-180=TRACE OF WATER=1.5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199842}}, {"model": "wells.lithologydescription", "pk": "ea592b67-1b29-439b-a623-1ecef4a9669a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:24:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:25:27Z", "activity_submission": null, "well_tag_number": 112996, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202445}}, {"model": "wells.lithologydescription", "pk": "ea5ea7c9-6c97-4304-892e-0ce764e04839", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well_tag_number": 112497, "lithology_from": "170.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199285}}, {"model": "wells.lithologydescription", "pk": "ea5f2065-abde-4dde-8183-d2496f86b387", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-09-10T17:01:10Z", "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:10Z", "activity_submission": null, "well_tag_number": 108025, "lithology_from": "27.00", "lithology_to": "33.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 172303}}, {"model": "wells.lithologydescription", "pk": "ea6068af-94f2-44d8-b578-2b4d58872430", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:35:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, "well_tag_number": 112634, "lithology_from": "27.00", "lithology_to": "56.00", "lithology_raw_data": "grave sand", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200300}}, {"model": "wells.lithologydescription", "pk": "ea6aa727-8724-4009-953f-24b683db7459", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "395.00", "lithology_to": "405.00", "lithology_raw_data": "Gravel, some sand, trace silt and clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203517}}, {"model": "wells.lithologydescription", "pk": "ea76f951-1a6a-40fd-93b6-2c9a7ee00526", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well_tag_number": 113308, "lithology_from": "270.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": "61", "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "18", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SALTY ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204076}}, {"model": "wells.lithologydescription", "pk": "ea774dfd-798e-46e9-821a-f2dd174a388c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 280' - 10 gphour", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203020}}, {"model": "wells.lithologydescription", "pk": "ea77bbd6-8f2c-48c1-8fcc-fd358ab144f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well_tag_number": 113021, "lithology_from": "120.00", "lithology_to": "127.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202545}}, {"model": "wells.lithologydescription", "pk": "ea8b2d5a-063e-495c-adfd-a72fb0c11f78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "163.00", "lithology_to": "168.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "with white quartz", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202821}}, {"model": "wells.lithologydescription", "pk": "ea8ba64c-46f9-445c-bcd7-2bd502627357", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MINOR COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200010}}, {"model": "wells.lithologydescription", "pk": "ea99b232-4a8c-49ef-ac7a-919e1a5aaff4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, "well_tag_number": 113138, "lithology_from": "6.00", "lithology_to": "42.00", "lithology_raw_data": "silt till", "lithology_description": "55", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203219}}, {"model": "wells.lithologydescription", "pk": "eab7402a-cecb-49b2-b7ed-ed944f60df7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, "well_tag_number": 113302, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "moist", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204043}}, {"model": "wells.lithologydescription", "pk": "eac36651-65b6-4a0c-8bc0-ad504b3c57fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "55.00", "lithology_to": "73.00", "lithology_raw_data": "TILL/TRACES OF SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201988}}, {"model": "wells.lithologydescription", "pk": "eacce9a4-88ca-49f9-80b8-634afb5d8aeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well_tag_number": 112786, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "3/8 BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201126}}, {"model": "wells.lithologydescription", "pk": "eacd8c90-80b1-4934-84cf-56529821b07f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well_tag_number": 112823, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201290}}, {"model": "wells.lithologydescription", "pk": "eacdc975-04f2-4923-8599-ee0769150476", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:34:53Z", "activity_submission": null, "well_tag_number": 112516, "lithology_from": "2.00", "lithology_to": "17.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "45", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199396}}, {"model": "wells.lithologydescription", "pk": "ead77f58-83c5-4e4f-8287-383cf80de899", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:15:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, "well_tag_number": 112953, "lithology_from": "18.00", "lithology_to": "34.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202165}}, {"model": "wells.lithologydescription", "pk": "eae1e183-9505-4c1a-927c-ad9997285330", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T05:31:44Z", "activity_submission": null, "well_tag_number": 112419, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD, CLAY, SILT, ROCKS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "47' IN SILT - 52", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198611}}, {"model": "wells.lithologydescription", "pk": "eaeac7f9-8a71-4c90-914c-f2de67f57769", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200102}}, {"model": "wells.lithologydescription", "pk": "eaf4321a-6b05-4e94-8278-e195fb046723", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well_tag_number": 112232, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "BLACK/BROWN, BLACK ORGANICS TO BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197433}}, {"model": "wells.lithologydescription", "pk": "eafa994a-3524-487d-949e-f9fcaedca13e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well_tag_number": 112982, "lithology_from": "51.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, CLAY, COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202361}}, {"model": "wells.lithologydescription", "pk": "eb099629-3ea5-47c8-b9da-dd25f0f2292a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199254}}, {"model": "wells.lithologydescription", "pk": "eb0d7f80-95db-4487-aea7-77a832015ff6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "54.00", "lithology_to": "63.00", "lithology_raw_data": "sand", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Tight", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197675}}, {"model": "wells.lithologydescription", "pk": "eb14c841-fbfa-4b3e-8ad3-f2fdf37ea7f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well_tag_number": 112734, "lithology_from": "19.00", "lithology_to": "42.00", "lithology_raw_data": "TIGHT CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200784}}, {"model": "wells.lithologydescription", "pk": "eb270527-098b-440f-b2bf-bc3210a5c5eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "155.00", "lithology_to": "156.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201318}}, {"model": "wells.lithologydescription", "pk": "eb34482a-9ad2-492e-a5dc-87dbb4940e14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "169.00", "lithology_to": "174.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203159}}, {"model": "wells.lithologydescription", "pk": "eb4368b0-cda6-40f4-b42a-6ae8d3b50d41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202001}}, {"model": "wells.lithologydescription", "pk": "eb4bd630-d4a4-453c-9720-225167e83b15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "4.00", "lithology_to": "9.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202680}}, {"model": "wells.lithologydescription", "pk": "eb6ccb95-6225-49f5-8642-e0fdc82f34fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well_tag_number": 112276, "lithology_from": "58.00", "lithology_to": "64.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197667}}, {"model": "wells.lithologydescription", "pk": "eb9668dd-1789-46f8-aa08-9f786bbe82c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:24:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, "well_tag_number": 112261, "lithology_from": "28.00", "lithology_to": "42.00", "lithology_raw_data": "MEDIUM GRAVEL, MEDIUM SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "18.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "18+ USGPM, WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197578}}, {"model": "wells.lithologydescription", "pk": "ebcee55c-9549-45d5-b297-e44804b322e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well_tag_number": 112500, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT/MEDIUM; SAND/TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199304}}, {"model": "wells.lithologydescription", "pk": "ebe0d0ad-29b5-49fc-abf1-24891c8cab5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:25:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, "well_tag_number": 112874, "lithology_from": "0.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY & ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201728}}, {"model": "wells.lithologydescription", "pk": "ebe1474c-9278-4788-938e-a56bbdfd6d49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200699}}, {"model": "wells.lithologydescription", "pk": "ebe375f1-767a-4422-8c73-2b7e23ca28d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well_tag_number": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 300' - 1.5 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203021}}, {"model": "wells.lithologydescription", "pk": "ebe64a01-cd98-4984-a9cb-a1a73ec6df08", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well_tag_number": 113300, "lithology_from": "147.00", "lithology_to": "155.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "black with white, chunky with some loose", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204032}}, {"model": "wells.lithologydescription", "pk": "ebea3b0b-ffc7-4695-ab4d-4de9481ef0de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well_tag_number": 112469, "lithology_from": "25.00", "lithology_to": "37.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199035}}, {"model": "wells.lithologydescription", "pk": "ebf1746a-d684-4916-9560-4680c60fc69a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "6.00", "lithology_to": "22.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "5ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202614}}, {"model": "wells.lithologydescription", "pk": "ebf9acf3-7808-4e31-bee8-346ec6d03eaa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "260.00", "lithology_to": "324.00", "lithology_raw_data": "interbedded", "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201183}}, {"model": "wells.lithologydescription", "pk": "ebfba245-cf1f-42a0-852e-e86d1f958676", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well_tag_number": 112322, "lithology_from": "159.00", "lithology_to": "206.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197903}}, {"model": "wells.lithologydescription", "pk": "ec0e39c4-9c98-4758-ab3c-963a7a1eb9db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197588}}, {"model": "wells.lithologydescription", "pk": "ec197c45-6dd0-41ce-9ad5-b5f43af3f001", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:12:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, "well_tag_number": 112260, "lithology_from": "14.00", "lithology_to": "29.00", "lithology_raw_data": "SILT AND BOG", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197573}}, {"model": "wells.lithologydescription", "pk": "ec1c8202-1c08-484c-ab05-6f856cb96741", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well_tag_number": 113135, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203190}}, {"model": "wells.lithologydescription", "pk": "ec225f61-65cd-465f-b847-eb24ae1b81d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "6.00", "lithology_to": "39.00", "lithology_raw_data": "MEDIUM BROWN SAND, SMALL GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201162}}, {"model": "wells.lithologydescription", "pk": "ec31a794-7652-48bd-ab59-585b2cfa0630", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, "well_tag_number": 112301, "lithology_from": "47.00", "lithology_to": "182.00", "lithology_raw_data": "BASALTS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197785}}, {"model": "wells.lithologydescription", "pk": "ec39c22d-a147-4510-a442-5ad7e08bc9f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "175.00", "lithology_to": "185.00", "lithology_raw_data": "grey fine sand and gravels", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197623}}, {"model": "wells.lithologydescription", "pk": "ec3e19f4-91ec-44d7-86d9-dbd5f5666b11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "200.00", "lithology_to": "280.00", "lithology_raw_data": "MEDIUM/HARD; GLACIAL TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200037}}, {"model": "wells.lithologydescription", "pk": "ec46d97f-c14e-48d0-af81-9379d88559f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, "well_tag_number": 112882, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201766}}, {"model": "wells.lithologydescription", "pk": "ec50a414-649e-4e80-a085-c66c345121ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well_tag_number": 112600, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "GRAVEL, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199981}}, {"model": "wells.lithologydescription", "pk": "ec665e60-40a6-4f6d-93b6-66056c2b12c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "208.00", "lithology_to": "212.00", "lithology_raw_data": "SAND/CLAY/TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202041}}, {"model": "wells.lithologydescription", "pk": "ec686bb4-fe8c-4c71-a2c6-6638486e3c1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, MINOR ROCKS, SAND SEAMS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199550}}, {"model": "wells.lithologydescription", "pk": "ec6beb54-de12-48f8-90bb-7a7eb3ae741a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well_tag_number": 113183, "lithology_from": "112.00", "lithology_to": "128.00", "lithology_raw_data": "Fine to coarse sand and gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203471}}, {"model": "wells.lithologydescription", "pk": "ec825c57-e36c-4ded-a1db-dbd9786b0429", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well_tag_number": 113057, "lithology_from": "210.00", "lithology_to": "238.00", "lithology_raw_data": "GREY SAND & GRAVEL, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202699}}, {"model": "wells.lithologydescription", "pk": "ec92cdd1-8669-4d2b-b551-9e15d040619b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, "well_tag_number": 112798, "lithology_from": "98.40", "lithology_to": null, "lithology_raw_data": "TILL (ASSUMED)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201160}}, {"model": "wells.lithologydescription", "pk": "eca095d7-18fd-4d26-951e-0f77f10bc13d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well_tag_number": 112992, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "GRAVEL/SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202420}}, {"model": "wells.lithologydescription", "pk": "eca0f542-c4fe-47af-9b7f-19cb7e68433c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "132.00", "lithology_to": "137.00", "lithology_raw_data": "COARSE LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198046}}, {"model": "wells.lithologydescription", "pk": "eca19c5f-7e6b-41c2-8d3d-b1b2c24e3429", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T07:01:35Z", "activity_submission": null, "well_tag_number": 112387, "lithology_from": "315.00", "lithology_to": "450.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "SEVERAL FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198419}}, {"model": "wells.lithologydescription", "pk": "ecb011c9-f108-462d-9221-2af3806126f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "159.00", "lithology_to": "179.00", "lithology_raw_data": "SILT AND SAND, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201435}}, {"model": "wells.lithologydescription", "pk": "ecbd7739-ad80-4cd7-a51b-1f3d5eef76cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:31:18Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:26:03Z", "activity_submission": null, "well_tag_number": 112997, "lithology_from": "0.00", "lithology_to": "127.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202448}}, {"model": "wells.lithologydescription", "pk": "ecdc973c-4bde-4e07-a43c-55bbac470a54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:25:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:25:26Z", "activity_submission": null, "well_tag_number": 113148, "lithology_from": "204.00", "lithology_to": "287.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "DENSE", "lithology_material": "50", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE FROM 279' TO 283'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203283}}, {"model": "wells.lithologydescription", "pk": "ecf6f167-db69-4a5d-9bfe-20db1f64c32c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "365.00", "lithology_to": "375.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "23", "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "BAILED DOWN TO 318.8' @ 4 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201616}}, {"model": "wells.lithologydescription", "pk": "ecf95b31-c923-4b1d-b50e-7bae1c4761fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, "well_tag_number": 113182, "lithology_from": "15.00", "lithology_to": "140.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203458}}, {"model": "wells.lithologydescription", "pk": "ed1fecde-f84e-4373-a42e-e4f72c2283e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198674}}, {"model": "wells.lithologydescription", "pk": "ed30dbd4-546a-4e6d-b8b7-b0bd74c81bac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199070}}, {"model": "wells.lithologydescription", "pk": "ed385ff2-a1a6-412f-998b-6717ec0b7c84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well_tag_number": 105417, "lithology_from": "360.00", "lithology_to": "400.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TAN, WHITE, GREEN. WB FRACTURE AT 378'.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 159180}}, {"model": "wells.lithologydescription", "pk": "ed40ab1a-7df3-4e33-ac7e-87094d7ce6a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD COMPRESSED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198792}}, {"model": "wells.lithologydescription", "pk": "ed4c6659-77a9-4078-9f02-0200949095e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, "well_tag_number": 113009, "lithology_from": "30.00", "lithology_to": "45.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202483}}, {"model": "wells.lithologydescription", "pk": "ed5a7890-c07c-4629-91ca-c09b7e576378", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "91.00", "lithology_to": "144.00", "lithology_raw_data": "like zones", "lithology_description": "19", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "no water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200335}}, {"model": "wells.lithologydescription", "pk": "ed5f3519-3c02-43c4-9a0f-be2da646673b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, "well_tag_number": 113210, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "Overburden ", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203631}}, {"model": "wells.lithologydescription", "pk": "ed637ad2-ece7-495d-a695-68dda27185a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T18:39:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, "well_tag_number": 113178, "lithology_from": "87.00", "lithology_to": "91.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203441}}, {"model": "wells.lithologydescription", "pk": "ed6b48eb-4c53-4a73-a0d1-762fb4fb19d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well_tag_number": 112415, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198579}}, {"model": "wells.lithologydescription", "pk": "ed714334-cb0f-45b6-a413-a3f2703dc1e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well_tag_number": 112324, "lithology_from": "175.00", "lithology_to": "210.00", "lithology_raw_data": "MEDIUM-HARD SANDSTONE/FINE/DIRTY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "ESTIMATED FLOW=MW", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197920}}, {"model": "wells.lithologydescription", "pk": "ed858eb4-07b0-44c0-8632-17b201678591", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:52:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, "well_tag_number": 112907, "lithology_from": "36.00", "lithology_to": "37.00", "lithology_raw_data": "GREEN/GREY/WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201929}}, {"model": "wells.lithologydescription", "pk": "ed8ddb54-a9d9-4f8d-b5d4-38cb14393fe3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well_tag_number": 112536, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, COARSE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199569}}, {"model": "wells.lithologydescription", "pk": "ed8e12ac-52db-4990-84d0-e9dd78b27379", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:32:10Z", "activity_submission": null, "well_tag_number": 112360, "lithology_from": "0.00", "lithology_to": "99.00", "lithology_raw_data": "clay gravel sand/ till/ boulders/ gravel sand silty clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198225}}, {"model": "wells.lithologydescription", "pk": "ed9392c7-6fdf-4f68-9ba5-34ce1d938aa4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well_tag_number": 112495, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "MEDIUM TO COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199261}}, {"model": "wells.lithologydescription", "pk": "eda823f2-60ff-4879-8af9-40d8a84f4266", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:37:43Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "118.00", "lithology_to": "122.00", "lithology_raw_data": "Silty sand (grey)", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "water bearing; 118'-138'=very hard", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203378}}, {"model": "wells.lithologydescription", "pk": "edbb182a-3597-4d46-aab0-22439c4e5749", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "15.50", "lithology_to": "19.50", "lithology_raw_data": "grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "solid, no fracture", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201247}}, {"model": "wells.lithologydescription", "pk": "edd0f9b6-6a74-4ec0-952a-64411c455215", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, "well_tag_number": 112236, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "GREEN/RED, BEDROCK BLOCKING", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197452}}, {"model": "wells.lithologydescription", "pk": "edd452c7-7f6f-42c8-bd87-fb6e34526e12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well_tag_number": 112728, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; WELL SORTED ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200740}}, {"model": "wells.lithologydescription", "pk": "edd9d166-09cc-4e81-8a75-50ea8bb38be8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well_tag_number": 112960, "lithology_from": "81.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202225}}, {"model": "wells.lithologydescription", "pk": "ede72dbf-af08-41e4-863a-e834469a9052", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well_tag_number": 112511, "lithology_from": "103.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199363}}, {"model": "wells.lithologydescription", "pk": "ede85685-891f-404b-8fbb-34d2cb686834", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well_tag_number": 113126, "lithology_from": "140.00", "lithology_to": "169.00", "lithology_raw_data": "DRY GREY SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203123}}, {"model": "wells.lithologydescription", "pk": "ede85920-f8fd-4e33-9a4c-5c36ed1af691", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well_tag_number": 112444, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198841}}, {"model": "wells.lithologydescription", "pk": "edf15f25-ebce-4029-9b07-8bab20a335f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "69.00", "lithology_to": "72.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198161}}, {"model": "wells.lithologydescription", "pk": "edf6c56f-967f-4715-b13c-f35b345a090d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, "well_tag_number": 112773, "lithology_from": "8.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BAROID 41 & DRILLING MUD PUMPED DOWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201057}}, {"model": "wells.lithologydescription", "pk": "ee1ae235-77b1-477c-a27d-198ee4a58b11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "98.00", "lithology_to": "114.00", "lithology_raw_data": "CLAY & ROCKS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201832}}, {"model": "wells.lithologydescription", "pk": "ee1b852c-34d4-4017-94ae-1c1d7a0a7090", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "BROWN FINE SAND WITH SOME STONES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201312}}, {"model": "wells.lithologydescription", "pk": "ee1d7d25-8baf-46a0-979f-75e43e52b509", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well_tag_number": 112272, "lithology_from": "78.00", "lithology_to": "83.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197634}}, {"model": "wells.lithologydescription", "pk": "ee2a6180-3e5f-45eb-aa09-8560b2a2aaf9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "180.00", "lithology_to": "198.00", "lithology_raw_data": "Silt stone", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203605}}, {"model": "wells.lithologydescription", "pk": "ee2fd872-bc1d-44ff-844a-0c81480709a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "105.00", "lithology_to": "180.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203080}}, {"model": "wells.lithologydescription", "pk": "ee416d27-596b-4dca-96cc-328bd6007057", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T18:45:00Z", "activity_submission": null, "well_tag_number": 112579, "lithology_from": "330.00", "lithology_to": "402.00", "lithology_raw_data": "VOLCANIC SEAMS OF MULTI-COLOURED GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLUE/GREEN; 335'=FRACTURE-TOTAL YIELD=1.1 USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199852}}, {"model": "wells.lithologydescription", "pk": "ee46ee99-93f4-435f-9fd1-f49cd42c6ee3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well_tag_number": 112414, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, TRACES OF GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198568}}, {"model": "wells.lithologydescription", "pk": "ee51122b-b3ca-4936-9edb-e20d62b78428", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, "well_tag_number": 112585, "lithology_from": "7.00", "lithology_to": "10.00", "lithology_raw_data": "MEDIUM-HARD; BROKEN, BEDROCK BLOCKS", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/BLUE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199885}}, {"model": "wells.lithologydescription", "pk": "ee516016-3a19-472a-87ca-38d91813a925", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:56:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, "well_tag_number": 112317, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SANDY, LOAM", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197866}}, {"model": "wells.lithologydescription", "pk": "ee600880-f890-487f-943c-9e11705ce1dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "42.00", "lithology_to": "50.00", "lithology_raw_data": "and gravels", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198159}}, {"model": "wells.lithologydescription", "pk": "ee603474-e1d9-400e-8905-b6db77dc84a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "32.00", "lithology_to": "33.00", "lithology_raw_data": "VERY HARD BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198037}}, {"model": "wells.lithologydescription", "pk": "ee608c2a-ea84-476a-939a-64f17ca44187", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, "well_tag_number": 112257, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "LARGE BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197557}}, {"model": "wells.lithologydescription", "pk": "ee66ecc0-1d9b-44cb-8cdc-c96ab8114c00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well_tag_number": 112479, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "GRAVEL, MINOR SAND", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199133}}, {"model": "wells.lithologydescription", "pk": "ee6861a5-c9d9-4f72-9647-009d5e1a67fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well_tag_number": 113079, "lithology_from": "218.00", "lithology_to": "245.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fractured", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202884}}, {"model": "wells.lithologydescription", "pk": "ee6917ca-08dc-46d3-8b88-18f560754ff7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, "well_tag_number": 112477, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199120}}, {"model": "wells.lithologydescription", "pk": "ee6cb375-230e-4a02-b8c6-49ff825c27ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well_tag_number": 112420, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198620}}, {"model": "wells.lithologydescription", "pk": "ee71791f-1a9f-454d-a9cc-44ba96cc3d6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", "lithology_description": "11", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203955}}, {"model": "wells.lithologydescription", "pk": "ee798ef3-d814-49ff-9884-16877b457fc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "loamy", "lithology_description": "00", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203519}}, {"model": "wells.lithologydescription", "pk": "ee8d7264-a18f-40bb-ba46-d2f1b260c78f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "51.00", "lithology_to": "73.00", "lithology_raw_data": "and silty sand", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198849}}, {"model": "wells.lithologydescription", "pk": "eea0253f-30cd-4919-a2fa-7113d108e622", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198626}}, {"model": "wells.lithologydescription", "pk": "eeb24719-baf0-4cab-94ac-70ab3fe64063", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "172.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199107}}, {"model": "wells.lithologydescription", "pk": "eeb62b8a-a913-402b-b4ae-24e12a0f882f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "33.00", "lithology_to": "65.00", "lithology_raw_data": "and gravels", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200041}}, {"model": "wells.lithologydescription", "pk": "eeb64d1a-ea95-46cf-9dbd-9fa82ec797f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "154.00", "lithology_to": "159.00", "lithology_raw_data": "CLAY GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198022}}, {"model": "wells.lithologydescription", "pk": "eebb7c35-f0d7-4a40-9d9f-670ab834445d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well_tag_number": 112323, "lithology_from": "48.00", "lithology_to": "56.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOME FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197913}}, {"model": "wells.lithologydescription", "pk": "eebec467-358c-4ba3-b46b-ddbb1f8ee3d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "200.00", "lithology_to": "390.00", "lithology_raw_data": "GREY/BLUE/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197367}}, {"model": "wells.lithologydescription", "pk": "eebf31ae-06f4-4b64-a255-bf8c5764ece0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well_tag_number": 112887, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201805}}, {"model": "wells.lithologydescription", "pk": "eed621ff-fec6-40e5-a748-dfff73cb8a13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-27T18:54:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-27T18:54:34Z", "activity_submission": null, "well_tag_number": 112818, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201266}}, {"model": "wells.lithologydescription", "pk": "eee1b653-97eb-4aa7-a9e6-de2fe2f7121c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:06:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, "well_tag_number": 112744, "lithology_from": "9.00", "lithology_to": "30.00", "lithology_raw_data": "GRAVEL, SAND AND COBBLES", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200862}}, {"model": "wells.lithologydescription", "pk": "eee95f7c-4603-43fb-85df-29a2faa0d7b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SANDY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201025}}, {"model": "wells.lithologydescription", "pk": "ef2e1edf-3ac7-471c-b96e-79f29acc20fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "61.00", "lithology_to": "118.00", "lithology_raw_data": "SHALE / HARD BROWN LENSES AND FOSSILS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199455}}, {"model": "wells.lithologydescription", "pk": "ef379550-c314-44fc-a4c2-4a2d9b40c1e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well_tag_number": 112979, "lithology_from": "12.00", "lithology_to": "33.00", "lithology_raw_data": "CLAY & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202338}}, {"model": "wells.lithologydescription", "pk": "ef382675-b46c-47c6-9d00-6029dfef5b91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "153.00", "lithology_to": "177.00", "lithology_raw_data": "SHALE/SILTSTONE WITH SOME SALT & PEPPER LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201625}}, {"model": "wells.lithologydescription", "pk": "ef40a838-721f-4376-b08d-5d146401fbba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, "well_tag_number": 112306, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "STIFF CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197810}}, {"model": "wells.lithologydescription", "pk": "ef489b08-ecfa-48ff-8411-fbbc46e8885d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY SILT, MINOR GRAVEL", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; COLOUR=BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199737}}, {"model": "wells.lithologydescription", "pk": "ef6612de-0b60-450f-b7a8-4773d312d852", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well_tag_number": 112445, "lithology_from": "21.00", "lithology_to": "37.00", "lithology_raw_data": "silt and gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198847}}, {"model": "wells.lithologydescription", "pk": "ef8bb04f-59f1-4aa1-8161-b2b82a1fcb2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well_tag_number": 112876, "lithology_from": "78.00", "lithology_to": "92.00", "lithology_raw_data": "CLAY & ROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201740}}, {"model": "wells.lithologydescription", "pk": "ef95ffa5-7084-48b3-8f28-7a511d277589", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:41:19Z", "activity_submission": null, "well_tag_number": 112233, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BROKEN BEDROCK - ORGANICS", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197440}}, {"model": "wells.lithologydescription", "pk": "ef9f545a-cdd9-4b1c-afb8-e1cf211f5eeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, "well_tag_number": 112294, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197748}}, {"model": "wells.lithologydescription", "pk": "efa0e8c6-1a25-436b-8efb-52b284dbb0a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well_tag_number": 112520, "lithology_from": "17.00", "lithology_to": "21.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "No Iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199418}}, {"model": "wells.lithologydescription", "pk": "efa5b18b-8ee0-41de-bfa6-726b8d73418a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well_tag_number": 112806, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 125'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201202}}, {"model": "wells.lithologydescription", "pk": "efab0928-d4c5-4839-bd5f-329b0f282943", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well_tag_number": 112393, "lithology_from": "72.00", "lithology_to": null, "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198453}}, {"model": "wells.lithologydescription", "pk": "efabdd3a-4c86-4226-a43e-4d8938df8ba0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well_tag_number": 113192, "lithology_from": "9.00", "lithology_to": "34.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203538}}, {"model": "wells.lithologydescription", "pk": "efaca835-72fc-4477-8d14-8f194ffce1f0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "Clay, muskeg", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203596}}, {"model": "wells.lithologydescription", "pk": "efd32157-4984-4da6-bdbe-8570864a209e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:51:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, "well_tag_number": 112437, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198770}}, {"model": "wells.lithologydescription", "pk": "efd6cb7d-38a7-451d-92ed-d39c5022da04", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well_tag_number": 112741, "lithology_from": "3.00", "lithology_to": "28.00", "lithology_raw_data": "BOULDERS AND COBBLES WITH SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200840}}, {"model": "wells.lithologydescription", "pk": "efd98cc9-f27d-44b0-afc9-792ae21f97f5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:29:29Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT-MEDIUM; ANGULAR GRAVEL, CLAY SILT LAYER", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BROWN/GREY; 10-15 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199738}}, {"model": "wells.lithologydescription", "pk": "efe334fd-4df5-4423-9d15-3599e486dc10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "135.00", "lithology_to": "150.00", "lithology_raw_data": "BLACK & WHITE GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183348}}, {"model": "wells.lithologydescription", "pk": "effa23a1-e6c4-450b-a826-3811f6227d78", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:25:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:33:20Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198809}}, {"model": "wells.lithologydescription", "pk": "efff3e7f-8592-4f98-8382-defae075ce23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BROWN/GRAY; TRACE OF CLAY", "lithology_description": "47", "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202082}}, {"model": "wells.lithologydescription", "pk": "f0137735-5a23-4608-9080-37acb8143013", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, "well_tag_number": 112301, "lithology_from": "44.00", "lithology_to": "47.00", "lithology_raw_data": "ASH/CLAY/ROCK", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197784}}, {"model": "wells.lithologydescription", "pk": "f018a38a-c563-4f00-8f0f-170a0ee83e43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well_tag_number": 112392, "lithology_from": "15.00", "lithology_to": "71.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198443}}, {"model": "wells.lithologydescription", "pk": "f0375bdb-6751-45cf-9c59-e10617692c7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, "well_tag_number": 112493, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "ROCKS, MEDIUM, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199247}}, {"model": "wells.lithologydescription", "pk": "f03d1648-64cd-4e91-97fd-616a28a0e80c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well_tag_number": 112990, "lithology_from": "120.00", "lithology_to": "14.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "11.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202410}}, {"model": "wells.lithologydescription", "pk": "f04682bd-dffa-438c-9857-4d786c306028", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "413.00", "lithology_to": "415.00", "lithology_raw_data": "DENSE/STIFF; CONGLOMERATE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WITH TRACES OF CLAY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199604}}, {"model": "wells.lithologydescription", "pk": "f08687ae-bf54-477c-bbe0-7dcb1d589bce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well_tag_number": 113097, "lithology_from": "2.00", "lithology_to": "30.00", "lithology_raw_data": "compact, wet", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202968}}, {"model": "wells.lithologydescription", "pk": "f08acad5-92fa-44ba-8dcc-70d8a3b55e83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well_tag_number": 112824, "lithology_from": "91.00", "lithology_to": "94.00", "lithology_raw_data": "GREY SILTY SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201315}}, {"model": "wells.lithologydescription", "pk": "f08be1f0-baa1-4913-b8ef-7a8b6ff89bee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, "well_tag_number": 113209, "lithology_from": "420.00", "lithology_to": "440.00", "lithology_raw_data": "Shale", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203617}}, {"model": "wells.lithologydescription", "pk": "f09eb7b9-96ce-4591-b793-0387d6bf663a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, "well_tag_number": 113025, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "Brown Clay", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202551}}, {"model": "wells.lithologydescription", "pk": "f0a17f18-d79c-43a0-99ca-4b659c3e148e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "155.00", "lithology_to": "178.00", "lithology_raw_data": "BLACK & WHITE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183350}}, {"model": "wells.lithologydescription", "pk": "f0a53adf-e80e-40e0-be5a-156e17e75601", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "138.00", "lithology_to": "144.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "40 +", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202201}}, {"model": "wells.lithologydescription", "pk": "f0ab0e3b-35b0-4d8f-b7ff-ec13d5088a18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "50.00", "lithology_to": "57.00", "lithology_raw_data": "Gravel, some sand, trace silt and clay, grey, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203502}}, {"model": "wells.lithologydescription", "pk": "f0b1712b-4e2f-4370-bba5-c11ecc593c9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T22:23:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, "well_tag_number": 112692, "lithology_from": "30.00", "lithology_to": "41.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200532}}, {"model": "wells.lithologydescription", "pk": "f0be167e-38c9-4fb2-8fda-da666872b34c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well_tag_number": 112275, "lithology_from": "116.00", "lithology_to": "140.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197659}}, {"model": "wells.lithologydescription", "pk": "f0c5a88b-3779-4e0c-94e0-205f27398910", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well_tag_number": 112326, "lithology_from": "12.00", "lithology_to": "33.00", "lithology_raw_data": "LIGHT BROWN SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197935}}, {"model": "wells.lithologydescription", "pk": "f0c946b3-fe28-4a90-851c-d65ab191b479", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:38:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:38:07Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "200.00", "lithology_to": "204.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200126}}, {"model": "wells.lithologydescription", "pk": "f0cfedb8-25e7-47d3-89fc-39227ef6bd51", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well_tag_number": 112890, "lithology_from": "368.00", "lithology_to": "720.00", "lithology_raw_data": "WHITE/GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201836}}, {"model": "wells.lithologydescription", "pk": "f0d775e4-1dbd-4272-b3b7-9eacfa1b9cb7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well_tag_number": 112421, "lithology_from": "120.00", "lithology_to": "123.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198632}}, {"model": "wells.lithologydescription", "pk": "f0def585-3f65-4168-9d02-54a85731b792", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "gravel and wood debris", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200063}}, {"model": "wells.lithologydescription", "pk": "f0e5e228-954e-429d-aba0-46f07fbba8bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well_tag_number": 112223, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197363}}, {"model": "wells.lithologydescription", "pk": "f0ea74f8-8902-487e-aab9-adcf384a2b73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, "well_tag_number": 112303, "lithology_from": "79.00", "lithology_to": "81.00", "lithology_raw_data": "ASH/CLAY", "lithology_description": null, "lithology_colour": "12", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197797}}, {"model": "wells.lithologydescription", "pk": "f0eaf885-a198-4f0b-b6c8-9f7fb1474eb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well_tag_number": 112321, "lithology_from": "341.00", "lithology_to": "360.00", "lithology_raw_data": "CRYSTALLINE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197899}}, {"model": "wells.lithologydescription", "pk": "f0f2683a-359d-4d3b-be85-844963962223", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "39.00", "lithology_to": "56.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202616}}, {"model": "wells.lithologydescription", "pk": "f0f81a5a-db85-4166-9797-8f9bb5d59b11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:06:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, "well_tag_number": 112744, "lithology_from": "4.00", "lithology_to": "9.00", "lithology_raw_data": "GRAVEL AND COBBLES WITH SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": "DRY", "lithology_observation": "WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200861}}, {"model": "wells.lithologydescription", "pk": "f0fe0aaa-7ef4-4fa6-874c-0504447f2aeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well_tag_number": 112258, "lithology_from": "15.00", "lithology_to": "32.00", "lithology_raw_data": "SAND WITH CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197564}}, {"model": "wells.lithologydescription", "pk": "f1002a41-2fdc-483a-868c-142806b5869b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "121.00", "lithology_to": "135.00", "lithology_raw_data": "sand", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199382}}, {"model": "wells.lithologydescription", "pk": "f106cf09-e896-4fe4-a71f-431e947ffe77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well_tag_number": 112975, "lithology_from": "105.00", "lithology_to": "110.00", "lithology_raw_data": "SILTY SAND AND FINE GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202308}}, {"model": "wells.lithologydescription", "pk": "f11da288-a026-4abf-b4c8-e3df0cc03107", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:09:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, "well_tag_number": 112435, "lithology_from": "8.00", "lithology_to": "80.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Cobbley", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198748}}, {"model": "wells.lithologydescription", "pk": "f14837df-5391-472b-bc8e-28f58b15a695", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well_tag_number": 113145, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "silt, soil, mixed organics", "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203264}}, {"model": "wells.lithologydescription", "pk": "f14d7649-8b6e-45fe-87e0-ba3d950dd98a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well_tag_number": 112461, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198984}}, {"model": "wells.lithologydescription", "pk": "f15a0fab-151c-4d6f-a113-80510107c37a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well_tag_number": 112849, "lithology_from": "19.00", "lithology_to": "29.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "48", "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201477}}, {"model": "wells.lithologydescription", "pk": "f15ae333-8470-4a0e-9f3b-b3a0a7f73169", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well_tag_number": 112770, "lithology_from": "225.00", "lithology_to": "230.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201034}}, {"model": "wells.lithologydescription", "pk": "f17609f4-35c9-41d3-8d3f-3b657ac15eb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well_tag_number": 112863, "lithology_from": "61.00", "lithology_to": "74.00", "lithology_raw_data": "MEDIUM GRAVEL WITH SAND AND FINES, GREY BROWN", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201657}}, {"model": "wells.lithologydescription", "pk": "f1806d7a-323c-4f8f-8db2-8cce202a4ef5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well_tag_number": 112815, "lithology_from": "100.00", "lithology_to": "127.00", "lithology_raw_data": "grey/green", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201251}}, {"model": "wells.lithologydescription", "pk": "f1899c9d-8dd2-42bc-b5a3-2835c57244d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well_tag_number": 112494, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM, SAND, GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199252}}, {"model": "wells.lithologydescription", "pk": "f1a03820-b263-48d8-ae0a-cba0d5d2c927", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well_tag_number": 112607, "lithology_from": "88.00", "lithology_to": "93.00", "lithology_raw_data": "coarse gravel", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200045}}, {"model": "wells.lithologydescription", "pk": "f1a84ddd-29f5-4f3f-bb08-5f0615ed2fad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "SAND WITH SILT LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198779}}, {"model": "wells.lithologydescription", "pk": "f1b1c6b0-f845-4ca1-be64-5904d04a351f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:35:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, "well_tag_number": 112680, "lithology_from": "7.00", "lithology_to": "295.00", "lithology_raw_data": "BEDROCK BASALTS WITH SOME SMALL VOLCANIC LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200480}}, {"model": "wells.lithologydescription", "pk": "f1b436c1-8b0b-4e1c-a412-07022b38d6fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, "well_tag_number": 113168, "lithology_from": "89.00", "lithology_to": "90.00", "lithology_raw_data": "sand gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203369}}, {"model": "wells.lithologydescription", "pk": "f1b81605-686e-489d-ba33-3556a35ba79b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well_tag_number": 113300, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "sand with clay/silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "dry, dense/stiff", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204028}}, {"model": "wells.lithologydescription", "pk": "f1c5eb3f-2586-473b-9234-39e0df4c9656", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "11.00", "lithology_to": "42.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Damp", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198158}}, {"model": "wells.lithologydescription", "pk": "f1c92f32-b408-4041-8514-b43d9c4fb277", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, "well_tag_number": 112504, "lithology_from": "5.00", "lithology_to": "31.00", "lithology_raw_data": "BROWN SAND WITH PEBBLES & ROCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199334}}, {"model": "wells.lithologydescription", "pk": "f1e38772-4405-4fe6-9c84-66cb3ce54cad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, "well_tag_number": 112686, "lithology_from": "27.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK, VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200506}}, {"model": "wells.lithologydescription", "pk": "f1ed155e-ecf5-4928-ba99-c9ad265c8fb7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:29:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, "well_tag_number": 112505, "lithology_from": "57.00", "lithology_to": "60.00", "lithology_raw_data": "DENSE BROWN TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199341}}, {"model": "wells.lithologydescription", "pk": "f1f03042-be76-48fc-98b0-40f1df459f3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well_tag_number": 112568, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199770}}, {"model": "wells.lithologydescription", "pk": "f1f58cce-2cd5-442f-a713-f0d0a6d89d60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, "well_tag_number": 112329, "lithology_from": "260.00", "lithology_to": "360.00", "lithology_raw_data": "SAND AND GRAVEL (DIRTY)", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "320-360'=PUMP SETTING; PUMP RATE=10 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197968}}, {"model": "wells.lithologydescription", "pk": "f1fcbcd6-d424-47f2-909b-ab8ce660bd10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "340.00", "lithology_to": "365.00", "lithology_raw_data": "WITH FINE SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201615}}, {"model": "wells.lithologydescription", "pk": "f22724db-2a0d-4791-a5aa-17b4bea16f96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "385.00", "lithology_to": "393.00", "lithology_raw_data": "SILTY DIRTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203165}}, {"model": "wells.lithologydescription", "pk": "f23e8baf-bca9-4400-a548-f6d05b25a29e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "35.00", "lithology_to": "160.00", "lithology_raw_data": "some calcite", "lithology_description": "36", "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "no water less than 160''", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201180}}, {"model": "wells.lithologydescription", "pk": "f2494ea7-0675-4bc5-afa1-4caf6f0efee6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:11Z", "activity_submission": null, "well_tag_number": 112410, "lithology_from": "18.00", "lithology_to": "32.00", "lithology_raw_data": "WEATHERED BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "GREY/BROWN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198544}}, {"model": "wells.lithologydescription", "pk": "f2524ec0-4e00-48a8-a9e2-a24947b318f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, "well_tag_number": 112735, "lithology_from": "70.00", "lithology_to": "700.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": "51", "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; DRY TO WET; WATER BEARING ZONES FROM 590'-650'@2.25 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200797}}, {"model": "wells.lithologydescription", "pk": "f255c478-3f81-48fb-b397-49fb44dc0b9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well_tag_number": 112369, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "gravel and cobble", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198295}}, {"model": "wells.lithologydescription", "pk": "f265288d-5812-41f0-b4d4-dc649b7d9025", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well_tag_number": 113255, "lithology_from": "20.00", "lithology_to": "251.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203839}}, {"model": "wells.lithologydescription", "pk": "f26c689a-61c6-4bd3-bfb3-38307373a1a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "35.00", "lithology_to": "42.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200068}}, {"model": "wells.lithologydescription", "pk": "f2837ee2-4c1b-440a-94d2-32a5af047aed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "118.00", "lithology_to": "150.00", "lithology_raw_data": "SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199456}}, {"model": "wells.lithologydescription", "pk": "f285e0e4-40b4-4631-a245-f4b392d9c83c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, "well_tag_number": 112902, "lithology_from": "92.00", "lithology_to": "98.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201901}}, {"model": "wells.lithologydescription", "pk": "f2a69b13-ad81-49cb-a980-e6beb1d4bdb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "239.00", "lithology_to": "242.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202828}}, {"model": "wells.lithologydescription", "pk": "f2b57ee4-2616-454a-990d-281e922c4421", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "96.00", "lithology_to": "136.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202686}}, {"model": "wells.lithologydescription", "pk": "f2ccbaa1-bb49-41bc-b0ba-1bf2cd628a5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "212.00", "lithology_to": "256.00", "lithology_raw_data": "BROWN CLAYS AND GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200959}}, {"model": "wells.lithologydescription", "pk": "f2e4ed57-45fc-4bb8-a196-ff3705c4c161", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "201.00", "lithology_to": "205.00", "lithology_raw_data": "BROWN/GREY SHALE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197951}}, {"model": "wells.lithologydescription", "pk": "f2e52fe7-b74c-47ca-8af1-e2cbc3c2b819", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-11T19:43:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:43:51Z", "activity_submission": null, "well_tag_number": 112334, "lithology_from": "195.00", "lithology_to": "207.00", "lithology_raw_data": "GREY-WHITE SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198030}}, {"model": "wells.lithologydescription", "pk": "f2f011ff-6542-45ba-be6a-b5f33733fa2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well_tag_number": 112239, "lithology_from": "244.00", "lithology_to": "298.00", "lithology_raw_data": "SANDSTONE, GRAVEL, SAND", "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "GOOD SAND", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197476}}, {"model": "wells.lithologydescription", "pk": "f2f23d14-a880-48aa-bdf0-3c53f560abc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "88.00", "lithology_to": "94.00", "lithology_raw_data": "BOULDERY TILL/CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201692}}, {"model": "wells.lithologydescription", "pk": "f2fbe5ea-f85f-43a5-8f98-62f36d2aa7e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "117.00", "lithology_to": "119.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198165}}, {"model": "wells.lithologydescription", "pk": "f2fc0641-1a51-4bcb-a31e-bdf940c1f12e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, "well_tag_number": 112706, "lithology_from": "130.00", "lithology_to": "137.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200587}}, {"model": "wells.lithologydescription", "pk": "f2fcae70-d68b-450b-a07f-ec331dc06803", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:49:25Z", "activity_submission": null, "well_tag_number": 112675, "lithology_from": "303.00", "lithology_to": "418.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=LIGHT AND DARK GREY, SOME BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200469}}, {"model": "wells.lithologydescription", "pk": "f2ff973b-17f7-41d9-bc99-399fdc136eba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well_tag_number": 112476, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199104}}, {"model": "wells.lithologydescription", "pk": "f303eb15-69b9-434c-949a-1fffc18eb9da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, "well_tag_number": 112671, "lithology_from": "2.00", "lithology_to": "45.00", "lithology_raw_data": "TIGHT, DRY, SANDY GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200449}}, {"model": "wells.lithologydescription", "pk": "f30c8292-d25f-41ed-981f-68872bb3627c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T18:28:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, "well_tag_number": 112733, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "TIGHT; SAND AND GRAVEL WITH SANDY CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY TO WET; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200779}}, {"model": "wells.lithologydescription", "pk": "f3162146-7966-40e7-bfaf-c73ff0638698", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, "well_tag_number": 112685, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200501}}, {"model": "wells.lithologydescription", "pk": "f319eaae-3cc8-47f2-b045-88e6bbaaa780", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well_tag_number": 113271, "lithology_from": "130.00", "lithology_to": "173.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": "9.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203928}}, {"model": "wells.lithologydescription", "pk": "f342734a-d598-4d20-99ab-729224414575", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-10-26T18:55:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, "well_tag_number": 102364, "lithology_from": "1.00", "lithology_to": "19.00", "lithology_raw_data": "CASED BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 142600}}, {"model": "wells.lithologydescription", "pk": "f34b82b3-5238-4f94-9561-2411b8f50275", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well_tag_number": 113171, "lithology_from": "250.00", "lithology_to": "253.00", "lithology_raw_data": null, "lithology_description": "63", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203393}}, {"model": "wells.lithologydescription", "pk": "f3620aef-256f-4a1a-b4f4-b729178aa6e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": "33.00", "lithology_to": "110.00", "lithology_raw_data": "volcanic, limestone", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "fracture at 52\" unstable", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201467}}, {"model": "wells.lithologydescription", "pk": "f3767097-ba24-4268-a339-e4a2a8c761cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well_tag_number": 112762, "lithology_from": "207.00", "lithology_to": "220.00", "lithology_raw_data": "MEDIUM TO COARSE SAND AND FINE GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SATURATED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200999}}, {"model": "wells.lithologydescription", "pk": "f37ec39e-47a5-47e3-9050-5a36c18e6f90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well_tag_number": 113154, "lithology_from": "21.00", "lithology_to": "40.00", "lithology_raw_data": "sand, fine med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "0 iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203318}}, {"model": "wells.lithologydescription", "pk": "f382ccf9-af42-4bf3-97bc-5decc14ad740", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well_tag_number": 113191, "lithology_from": "170.00", "lithology_to": "205.00", "lithology_raw_data": "trace clay", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203535}}, {"model": "wells.lithologydescription", "pk": "f395fd3c-083c-4aa6-9d32-9c9c0c98fb8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "26.00", "lithology_to": "37.00", "lithology_raw_data": "LAYER OF LARGE GRANITE COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198272}}, {"model": "wells.lithologydescription", "pk": "f398d203-07cd-4992-bc71-052ee63fbbcb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well_tag_number": 112332, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "MEDIUM-SOFT, BROWNISH SHALE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197991}}, {"model": "wells.lithologydescription", "pk": "f39e4f4a-0d14-4690-b337-fc6eb0cdff3e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201177}}, {"model": "wells.lithologydescription", "pk": "f3af22f7-377c-442d-8849-0e1afdc710e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:21:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, "well_tag_number": 112880, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201757}}, {"model": "wells.lithologydescription", "pk": "f3be2deb-7855-495e-81ac-553a087f1954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "81.00", "lithology_to": "158.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202705}}, {"model": "wells.lithologydescription", "pk": "f3c31e93-785b-43f2-b742-61e30d590a56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well_tag_number": 112846, "lithology_from": "296.00", "lithology_to": "310.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201453}}, {"model": "wells.lithologydescription", "pk": "f3c60cf7-8500-4029-99e5-40c749ce5733", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well_tag_number": 112803, "lithology_from": "7.00", "lithology_to": "21.00", "lithology_raw_data": "till", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201178}}, {"model": "wells.lithologydescription", "pk": "f3ce7c11-6e05-403c-bf97-33aa47d21c82", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:23:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, "well_tag_number": 112881, "lithology_from": "38.00", "lithology_to": "42.00", "lithology_raw_data": "very silty, some clay", "lithology_description": "62", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201761}}, {"model": "wells.lithologydescription", "pk": "f3eb3693-dba2-46af-ba0c-913ec3ac1e16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well_tag_number": 112847, "lithology_from": "2.00", "lithology_to": "71.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201457}}, {"model": "wells.lithologydescription", "pk": "f3eb5fca-6217-4dae-adb0-1709b74d48f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "71.00", "lithology_to": "72.00", "lithology_raw_data": "fractured", "lithology_description": "71", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": "3.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202815}}, {"model": "wells.lithologydescription", "pk": "f3ec1240-73ec-411e-8db4-e8bd9d078ee6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:05:15Z", "activity_submission": null, "well_tag_number": 112245, "lithology_from": "10.00", "lithology_to": "47.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197502}}, {"model": "wells.lithologydescription", "pk": "f405d85a-3af8-41b7-81a0-c63e2babb49b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "192.00", "lithology_to": "224.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Competent/Slight fracture at 205'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202824}}, {"model": "wells.lithologydescription", "pk": "f4082d89-7b75-4806-bbec-c5c25d5d4b59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T22:23:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, "well_tag_number": 112692, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200531}}, {"model": "wells.lithologydescription", "pk": "f413b0bf-825b-4f1b-a81b-f3157b0b9e9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T23:16:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, "well_tag_number": 100127, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY & BOULDERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130141}}, {"model": "wells.lithologydescription", "pk": "f44367de-7502-48f7-a96e-60a09d939bca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well_tag_number": 113136, "lithology_from": "470.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "25.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203209}}, {"model": "wells.lithologydescription", "pk": "f44edc2a-359c-403d-8739-08c9bf8b7148", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well_tag_number": 112486, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD; BOULDERS, CLAY, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199186}}, {"model": "wells.lithologydescription", "pk": "f44fa26e-5998-420a-b8ca-0047eaf6811e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well_tag_number": 112719, "lithology_from": "211.00", "lithology_to": "215.00", "lithology_raw_data": "VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SOME WATER; FRACTURED; DIRTY; ASH", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200673}}, {"model": "wells.lithologydescription", "pk": "f455d108-37b9-485c-a215-46d43c5077bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILTY CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199532}}, {"model": "wells.lithologydescription", "pk": "f462e19e-0258-4de4-bfc6-1f82cb57a836", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, "well_tag_number": 113179, "lithology_from": "120.00", "lithology_to": "135.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203445}}, {"model": "wells.lithologydescription", "pk": "f467935b-5110-4747-ba7e-e1b875ecaa5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well_tag_number": 113173, "lithology_from": "25.00", "lithology_to": "38.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203421}}, {"model": "wells.lithologydescription", "pk": "f46af870-751b-4c08-87ab-f3b0e808c597", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well_tag_number": 112575, "lithology_from": "137.00", "lithology_to": "272.00", "lithology_raw_data": "MEDIUM VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY, GREEN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199820}}, {"model": "wells.lithologydescription", "pk": "f46d6b8b-7842-4c2d-89ed-096fb2347d2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, "well_tag_number": 112236, "lithology_from": "12.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM HARD, GREEN, NO MATERIAL TYPE PROVIDED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197453}}, {"model": "wells.lithologydescription", "pk": "f4863295-a954-4717-9503-e7d095c5cea7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "169.00", "lithology_to": "175.00", "lithology_raw_data": "CLAY/GREEN SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198055}}, {"model": "wells.lithologydescription", "pk": "f48652ce-b211-4364-a74e-778caf81b945", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, "well_tag_number": 112235, "lithology_from": "23.00", "lithology_to": "85.00", "lithology_raw_data": "B/BL CLAY AND SAND LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "67'=TRACE OF WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197447}}, {"model": "wells.lithologydescription", "pk": "f4888dfb-9e2d-4cd6-878d-1b74b931b312", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well_tag_number": 112550, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "140.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199657}}, {"model": "wells.lithologydescription", "pk": "f49b20fa-2547-401c-9fc8-70f260d74db7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, "well_tag_number": 112438, "lithology_from": "400.00", "lithology_to": "437.00", "lithology_raw_data": "SAND WITH SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198781}}, {"model": "wells.lithologydescription", "pk": "f4db1911-36c1-4324-8adb-a52fd7c71327", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well_tag_number": 113295, "lithology_from": "415.00", "lithology_to": "430.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204017}}, {"model": "wells.lithologydescription", "pk": "f4f85d91-d886-4ee1-9003-193e70495a13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well_tag_number": 109912, "lithology_from": "81.00", "lithology_to": "95.00", "lithology_raw_data": "BLACK & WHITE GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 183344}}, {"model": "wells.lithologydescription", "pk": "f4faff59-47c5-4d87-aa45-0d749799924d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "320.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK, FRACTURED", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199632}}, {"model": "wells.lithologydescription", "pk": "f505aa8e-9368-4ba3-b7d1-16716f000bc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "SHALE, SHANDSONE TIGHT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202946}}, {"model": "wells.lithologydescription", "pk": "f506011f-7a65-4923-8fe1-4c8418536666", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well_tag_number": 112957, "lithology_from": "2.00", "lithology_to": "5.00", "lithology_raw_data": "CLAY & SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202194}}, {"model": "wells.lithologydescription", "pk": "f509a9a1-8f8b-4d5c-98ff-72a22d85425f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-16T20:38:32Z", "activity_submission": null, "well_tag_number": 113087, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "clay and rocks", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202910}}, {"model": "wells.lithologydescription", "pk": "f50c0e73-2454-48db-8d5e-20c14da58bc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well_tag_number": 112483, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, TRACES SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199164}}, {"model": "wells.lithologydescription", "pk": "f51cc379-1d06-4297-b582-0dc9c465e6c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well_tag_number": 113143, "lithology_from": "6.00", "lithology_to": "279.00", "lithology_raw_data": null, "lithology_description": "36", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203256}}, {"model": "wells.lithologydescription", "pk": "f521e886-b25d-41bc-9358-b3da7b1fcc0c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:38:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:38:50Z", "activity_submission": null, "well_tag_number": 112629, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC (DIRT AND GRASS)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200287}}, {"model": "wells.lithologydescription", "pk": "f5224afb-41bd-4c49-b493-13a1699bb55e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:01:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:01:15Z", "activity_submission": null, "well_tag_number": 112307, "lithology_from": "3.00", "lithology_to": "230.00", "lithology_raw_data": "DARK GREY BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURES AT 75'=15 GPM & 208'=10 GPM ", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197817}}, {"model": "wells.lithologydescription", "pk": "f5344315-7b25-4a1b-a3dc-ad9b79b244e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "121.00", "lithology_to": "123.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201966}}, {"model": "wells.lithologydescription", "pk": "f5503ac6-c72e-4f05-b130-41ff31686744", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well_tag_number": 112367, "lithology_from": "515.00", "lithology_to": "575.00", "lithology_raw_data": "PREDOMINATELY PINK AND WHITE GRANITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "TOTAL WATER=1.5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198278}}, {"model": "wells.lithologydescription", "pk": "f550a7d7-0cfa-4ab9-b064-4094cdf44a3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "973.00", "lithology_to": "980.00", "lithology_raw_data": "fractured", "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "6\" voids throughout", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202868}}, {"model": "wells.lithologydescription", "pk": "f5604c82-415f-4976-b334-01475d58730d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well_tag_number": 112833, "lithology_from": "227.00", "lithology_to": "361.00", "lithology_raw_data": "grey/green/ white", "lithology_description": "46", "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "60.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "fractures at 285',323',330',344',", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201379}}, {"model": "wells.lithologydescription", "pk": "f56b5942-0944-4416-ae29-d1d19b0d26b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well_tag_number": 112879, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "SAND & GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201752}}, {"model": "wells.lithologydescription", "pk": "f574482d-c5db-4dfb-bddd-7750d99ecd13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T17:20:03Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "10.00", "lithology_to": "40.00", "lithology_raw_data": "Brownish clay", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203376}}, {"model": "wells.lithologydescription", "pk": "f58876ed-05cd-466a-a63a-38dbbca7a06f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:39:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:39:46Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "229.00", "lithology_to": "232.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BENTONITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200130}}, {"model": "wells.lithologydescription", "pk": "f58c64fb-e853-4d29-aa71-67e7c74fbb37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, "well_tag_number": 113147, "lithology_from": "163.00", "lithology_to": "225.00", "lithology_raw_data": null, "lithology_description": "52", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 216'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203280}}, {"model": "wells.lithologydescription", "pk": "f591490c-9b30-41a7-9cca-a486909cc954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well_tag_number": 112740, "lithology_from": "165.00", "lithology_to": "207.00", "lithology_raw_data": "FINE SILTSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY; SOLID", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200832}}, {"model": "wells.lithologydescription", "pk": "f5a4dfbf-2058-4485-af4e-bba0ce4ac880", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, "well_tag_number": 113261, "lithology_from": "106.00", "lithology_to": "117.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203884}}, {"model": "wells.lithologydescription", "pk": "f5a4e0a4-74ff-4b17-8958-6425a737cfdd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, "well_tag_number": 113216, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "Overburden", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203689}}, {"model": "wells.lithologydescription", "pk": "f5a83139-5156-47b5-aef7-85a6128f29c7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well_tag_number": 112449, "lithology_from": "73.00", "lithology_to": "79.00", "lithology_raw_data": "and gravel", "lithology_description": "71", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "47", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198886}}, {"model": "wells.lithologydescription", "pk": "f5accf75-3ec4-4581-aaa4-43bebeeb2437", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well_tag_number": 112993, "lithology_from": "27.00", "lithology_to": "29.00", "lithology_raw_data": "QUARTZ SEAM", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202430}}, {"model": "wells.lithologydescription", "pk": "f5b2d6ee-8dcb-4add-8084-1ae2d9fd5da7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "NO INFORMATION PROVIDED", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202952}}, {"model": "wells.lithologydescription", "pk": "f5b510d1-30b5-4deb-a0bf-1e1a45fa2452", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "117.00", "lithology_to": "159.00", "lithology_raw_data": "DRY SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201434}}, {"model": "wells.lithologydescription", "pk": "f5c30bf3-89f0-4fcc-92f7-199c5aed7e1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, "well_tag_number": 112463, "lithology_from": "147.00", "lithology_to": "178.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "11", "lithology_hardness": null, "lithology_material": "36", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198995}}, {"model": "wells.lithologydescription", "pk": "f5c87a88-2b45-4a09-86b2-d316151e0759", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well_tag_number": 112308, "lithology_from": "9.00", "lithology_to": "28.00", "lithology_raw_data": "MOIST CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197820}}, {"model": "wells.lithologydescription", "pk": "f5d867d3-884e-446c-bff0-c8596576c35c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, "well_tag_number": 113033, "lithology_from": "51.00", "lithology_to": "56.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "sand coarse", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202607}}, {"model": "wells.lithologydescription", "pk": "f5d8ae01-b1c8-42d8-b16e-673233702281", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "136.00", "lithology_to": "174.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199802}}, {"model": "wells.lithologydescription", "pk": "f5e33a31-6fef-45c1-9f99-f4a514458783", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, "well_tag_number": 112378, "lithology_from": "141.00", "lithology_to": "143.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198355}}, {"model": "wells.lithologydescription", "pk": "f5f041cf-2ca1-4538-afa6-72edb1d2f8cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "71.00", "lithology_to": "74.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201962}}, {"model": "wells.lithologydescription", "pk": "f5f4faf7-9609-4a02-ac6b-ea6249f75d0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "308.00", "lithology_to": "320.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198867}}, {"model": "wells.lithologydescription", "pk": "f5fd52e0-c56c-4007-b359-b64fb61565ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "257.00", "lithology_to": "262.00", "lithology_raw_data": "SILTY WITH GRAVEL", "lithology_description": "71", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205642}}, {"model": "wells.lithologydescription", "pk": "f601065f-8c76-4a77-9e76-cac18c6d0e9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:41:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, "well_tag_number": 112271, "lithology_from": "300.00", "lithology_to": "360.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": "24", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197629}}, {"model": "wells.lithologydescription", "pk": "f616a7da-1b33-4e50-8234-9f2373ec65de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well_tag_number": 112508, "lithology_from": "1.00", "lithology_to": "34.00", "lithology_raw_data": "GRAY SILTY SANDS & ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199343}}, {"model": "wells.lithologydescription", "pk": "f61fb85a-43cd-40ba-8066-2ab37642442b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well_tag_number": 112273, "lithology_from": "54.00", "lithology_to": "56.00", "lithology_raw_data": "and gravels", "lithology_description": "50", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197640}}, {"model": "wells.lithologydescription", "pk": "f62b682e-dbb6-4b9c-b440-0fbbd5da715a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "203.00", "lithology_to": "205.00", "lithology_raw_data": "W.B. SAND AND GRAVEL, VERY SILTY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202689}}, {"model": "wells.lithologydescription", "pk": "f62d5b97-9837-4c6a-abf1-a0f5d9fb035b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:08:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, "well_tag_number": 112826, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201332}}, {"model": "wells.lithologydescription", "pk": "f62f2133-aa30-426f-97bb-72913e563dd2", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-12-15T21:27:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:27:35Z", "activity_submission": null, "well_tag_number": 112440, "lithology_from": "420.00", "lithology_to": "427.00", "lithology_raw_data": "CLAY/SILT", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "2-3 USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198821}}, {"model": "wells.lithologydescription", "pk": "f6412d51-765b-470d-a841-c8a85ba6b047", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-11T18:02:25Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "195.00", "lithology_to": "205.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "2+ USGPM, FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197978}}, {"model": "wells.lithologydescription", "pk": "f64406eb-e230-426d-80e9-ce6d11cd5df4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "5.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANIC BLACK SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201954}}, {"model": "wells.lithologydescription", "pk": "f64c1ebb-45fa-4369-b215-c8e96e9cc4df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T21:38:01Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "314.00", "lithology_to": "385.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FRACTURE AT 315'; GRAVEL TYPE BROKEN (BEDROCK)", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197394}}, {"model": "wells.lithologydescription", "pk": "f64fd0fa-d502-445c-93ba-0fb17c9828f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "155.00", "lithology_to": "158.00", "lithology_raw_data": "MEDIUM-HARD, ORANGE LAVA ROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198051}}, {"model": "wells.lithologydescription", "pk": "f653e858-c5d8-466f-9be3-4401e9de13bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well_tag_number": 112480, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199145}}, {"model": "wells.lithologydescription", "pk": "f65439df-5d84-491e-8bb9-e39508ec7ccc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "39.00", "lithology_to": "118.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198231}}, {"model": "wells.lithologydescription", "pk": "f654e038-ba4e-4694-9f8f-d985aba1902c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well_tag_number": 112963, "lithology_from": "36.00", "lithology_to": "54.00", "lithology_raw_data": "SAND, GRAVEL, COBBLES, SMALL BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202244}}, {"model": "wells.lithologydescription", "pk": "f656cad2-a68e-4f8a-ae86-df42d6e304c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well_tag_number": 112854, "lithology_from": "475.00", "lithology_to": "503.00", "lithology_raw_data": "SILTSTONE & SHALE WITH A FEW FINE SANDSTONE STRINGERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201559}}, {"model": "wells.lithologydescription", "pk": "f65a8ebc-6233-4efb-b8e9-8083edc9d85b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:55:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:55:26Z", "activity_submission": null, "well_tag_number": 112630, "lithology_from": "200.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "320'=4-6 GPM WITH PUMP PROTECTION; ALTERATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200289}}, {"model": "wells.lithologydescription", "pk": "f6616aa6-de85-41b5-8816-47de257d9659", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well_tag_number": 112936, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "BROWN/GREY", "lithology_description": "45", "lithology_colour": "14", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202085}}, {"model": "wells.lithologydescription", "pk": "f6646f39-df7a-4d6b-8f91-13973a195c0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well_tag_number": 112521, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": "BROWN FINE SANDS (DAMP)", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199422}}, {"model": "wells.lithologydescription", "pk": "f6703ce9-9938-4ed0-85ae-baab1e3b0a93", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, "well_tag_number": 113116, "lithology_from": "90.00", "lithology_to": "230.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "LESS THAN 1/2 LITRE PER MINUTE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203053}}, {"model": "wells.lithologydescription", "pk": "f6710d4d-4d30-4b58-bab8-3069a064040a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199029}}, {"model": "wells.lithologydescription", "pk": "f67ce326-7523-417e-b1dd-fdb830d4f4b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well_tag_number": 112475, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; HARD LAYERS WITH CLAY SILT", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/BLACK", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199093}}, {"model": "wells.lithologydescription", "pk": "f68bc46f-2fa3-401b-b1ea-98dcfd99b76e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-03-01T20:30:59Z", "update_user": "PROXY_WELLS", "update_date": "2012-03-01T20:30:59Z", "activity_submission": null, "well_tag_number": 105747, "lithology_from": "72.00", "lithology_to": "100.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "5.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "SOURCE OF WATER WAS 5 GPM AT 95 FEET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 161007}}, {"model": "wells.lithologydescription", "pk": "f68db22b-b79b-4444-b2b6-a9e3d0b4576a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-10T01:40:56Z", "activity_submission": null, "well_tag_number": 112761, "lithology_from": "186.00", "lithology_to": "194.00", "lithology_raw_data": "SILTY, FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0200", "water_bearing_estimated_flow_units": "LPS", "lithology_observation": "187'=0.02 LPS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200988}}, {"model": "wells.lithologydescription", "pk": "f690938e-5e3a-446b-887a-e641a5e6bdd9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, "well_tag_number": 112463, "lithology_from": "3.00", "lithology_to": "11.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198992}}, {"model": "wells.lithologydescription", "pk": "f69916e2-e10c-4361-a2d5-2af29e1305ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well_tag_number": 112405, "lithology_from": "310.00", "lithology_to": "335.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198517}}, {"model": "wells.lithologydescription", "pk": "f69b06e2-6d55-4b17-85ae-ce82ed7b0042", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:26:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-13T21:03:59Z", "activity_submission": null, "well_tag_number": 112344, "lithology_from": "141.00", "lithology_to": "325.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "150'-225'=MEDIUM/HARD, BLUE, SEVERAL FRACTURES, 3 GPM, FRACTURES; 225'-250'=HARD, BLUE/WHITE, SEAMS OF VOLCANIC GNEISS & WHITE FELDSPAR; 262'-278'=SOFT, BLUE/WHITE, LARGE FRACTURED ZONE, 25+ USGPM, LARGE FRACTURES", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198136}}, {"model": "wells.lithologydescription", "pk": "f6b751d8-ad21-4990-a55e-525653aa917a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-23T19:09:12Z", "activity_submission": null, "well_tag_number": 113199, "lithology_from": "125.00", "lithology_to": "140.00", "lithology_raw_data": "Shale", "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "fractured", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203564}}, {"model": "wells.lithologydescription", "pk": "f6bc964a-7543-488e-9b64-344131d948a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well_tag_number": 112513, "lithology_from": "32.00", "lithology_to": "53.00", "lithology_raw_data": null, "lithology_description": "06", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199376}}, {"model": "wells.lithologydescription", "pk": "f6bfd9cf-e7ba-403b-a7ef-3613890c90cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well_tag_number": 112426, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "FINE, SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198668}}, {"model": "wells.lithologydescription", "pk": "f6ca5b0d-5774-4bac-a858-ba4cc1f7a9fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "SILT, SAND, GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WITH WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130484}}, {"model": "wells.lithologydescription", "pk": "f6cb0472-6bb1-44ae-88ef-b221d2a86b22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well_tag_number": 112525, "lithology_from": "288.00", "lithology_to": "301.00", "lithology_raw_data": "MEDIUM HARD; SHALE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199466}}, {"model": "wells.lithologydescription", "pk": "f6f3a298-1b5c-44f3-9118-810d9ad29c61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-13T21:03:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, "well_tag_number": 113032, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "WET SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202598}}, {"model": "wells.lithologydescription", "pk": "f6fe2c20-71ab-4e29-bfb5-81f414296e6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198694}}, {"model": "wells.lithologydescription", "pk": "f710db51-dd54-40d4-be85-0a5c2dd182d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": "SS S & P", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143924}}, {"model": "wells.lithologydescription", "pk": "f714166b-f8d9-4bd8-a6a7-d011515547e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well_tag_number": 112335, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "DARK GREY FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198042}}, {"model": "wells.lithologydescription", "pk": "f71588d7-1a2c-4fe3-bbed-9d90236077db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "126.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE WITH SANDSTONE LENSES, MEDIUM HARD, DARK GREY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201594}}, {"model": "wells.lithologydescription", "pk": "f7178888-27ef-4664-837b-0bd1e9a484fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well_tag_number": 113189, "lithology_from": "57.00", "lithology_to": "65.00", "lithology_raw_data": "Sand, trace to some gravel, grey, damp", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203503}}, {"model": "wells.lithologydescription", "pk": "f748861d-2485-4158-b89d-a6a4c2ae7c1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "118.00", "lithology_to": "123.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "75.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": ".5 iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202621}}, {"model": "wells.lithologydescription", "pk": "f7524c8f-97d0-4ffd-ba67-94f0cd6a4a78", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well_tag_number": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "set up pump at 200' or less", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202475}}, {"model": "wells.lithologydescription", "pk": "f7532ae0-900c-4793-b2c8-bdfc3c755070", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well_tag_number": 112391, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198434}}, {"model": "wells.lithologydescription", "pk": "f755c0c1-306a-4e3c-8ec2-e6f9a3b9ab66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well_tag_number": 112526, "lithology_from": "30.00", "lithology_to": "43.00", "lithology_raw_data": "CLAY-TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199475}}, {"model": "wells.lithologydescription", "pk": "f768c0de-781b-469a-ad30-f9347e421a4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well_tag_number": 113079, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "sand, gravel, silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "66", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202879}}, {"model": "wells.lithologydescription", "pk": "f778c772-32bb-4503-add9-b1d2d7ed7e90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; COARSE GRAVEL, CEMENT LAYER AND CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199297}}, {"model": "wells.lithologydescription", "pk": "f778e9fd-8090-409e-877b-5cf5320954bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well_tag_number": 112319, "lithology_from": "85.00", "lithology_to": "333.00", "lithology_raw_data": "DARK GREY CRYSTALLINE ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "FRACTURE AT 110'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197883}}, {"model": "wells.lithologydescription", "pk": "f77d3788-3308-4f95-ac79-f88e64c9ab4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well_tag_number": 112509, "lithology_from": "65.00", "lithology_to": "76.00", "lithology_raw_data": "LIGHT BROWN SILTY SANDS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199353}}, {"model": "wells.lithologydescription", "pk": "f77d97ee-2314-4873-af04-4605a75a3330", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well_tag_number": 112539, "lithology_from": "192.00", "lithology_to": "210.00", "lithology_raw_data": "SAND, FINE-MEDIUM, SILTSTONE-SHALE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199596}}, {"model": "wells.lithologydescription", "pk": "f7804405-be8b-4d5d-90ea-e0196f14b190", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well_tag_number": 112499, "lithology_from": "180.00", "lithology_to": "220.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199302}}, {"model": "wells.lithologydescription", "pk": "f7854136-444c-44ff-a6b6-19da351630bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, "well_tag_number": 112838, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "1.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "AT 150'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201408}}, {"model": "wells.lithologydescription", "pk": "f78ccc0c-797b-4445-b2b5-ae21b9f62c42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well_tag_number": 112566, "lithology_from": "185.00", "lithology_to": "225.00", "lithology_raw_data": "BROWN SILTY FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199759}}, {"model": "wells.lithologydescription", "pk": "f795d681-74eb-45bf-8cf6-229673dbf81e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well_tag_number": 112422, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198636}}, {"model": "wells.lithologydescription", "pk": "f797a652-8770-4948-b092-689426139ced", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well_tag_number": 112705, "lithology_from": "75.00", "lithology_to": "105.00", "lithology_raw_data": "VOLCANIC, SOME ASH", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200581}}, {"model": "wells.lithologydescription", "pk": "f7ab7c81-c2d5-401f-88e1-91a240e6add9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "436.00", "lithology_to": "438.00", "lithology_raw_data": "Shale dark grey", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203407}}, {"model": "wells.lithologydescription", "pk": "f7b876a2-9a0a-439f-b73b-e0ddda47136a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:07Z", "activity_submission": null, "well_tag_number": 112868, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN GREY", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201689}}, {"model": "wells.lithologydescription", "pk": "f7bad26c-9ac2-48cc-80ae-b9d398a73645", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, "well_tag_number": 112922, "lithology_from": "146.00", "lithology_to": "173.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202036}}, {"model": "wells.lithologydescription", "pk": "f7c40785-841d-4c08-95df-6bc643162619", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, "well_tag_number": 112578, "lithology_from": "19.00", "lithology_to": "135.00", "lithology_raw_data": "MEDIUM/HARD; VOLCANIC BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199841}}, {"model": "wells.lithologydescription", "pk": "f7c552df-2756-4bb0-baeb-af56ac271ec0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198227}}, {"model": "wells.lithologydescription", "pk": "f7c7174b-29d2-4569-b163-e2e37136defd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:57:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, "well_tag_number": 113293, "lithology_from": "47.00", "lithology_to": "400.00", "lithology_raw_data": "shale & quartz", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "0.5 GPM at 60 ft, 1 GPM at 80 ft, 7.5 GPM at 360 ft, 15 GPM at 380 ft, 17 GPM at 400 ft", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204003}}, {"model": "wells.lithologydescription", "pk": "f7ce6f3e-2458-4abb-b5ba-2cb07997d95f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "97.00", "lithology_to": "110.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197648}}, {"model": "wells.lithologydescription", "pk": "f7cedaf0-4843-49e3-8d3e-d369f35fec9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well_tag_number": 112347, "lithology_from": "110.00", "lithology_to": "117.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198164}}, {"model": "wells.lithologydescription", "pk": "f7d32979-314b-4607-8bfa-794365164f6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well_tag_number": 112724, "lithology_from": "52.00", "lithology_to": "67.00", "lithology_raw_data": "FINE SAND WITH COBBLES AND BOULDERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200702}}, {"model": "wells.lithologydescription", "pk": "f8087fcc-88bf-490a-95d1-72073177f989", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well_tag_number": 112547, "lithology_from": "6.00", "lithology_to": "25.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199640}}, {"model": "wells.lithologydescription", "pk": "f80dd960-5db7-4d7d-9d76-0af229d7715a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well_tag_number": 112663, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200399}}, {"model": "wells.lithologydescription", "pk": "f812bc20-18ec-493c-b9b1-f381a78690a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T21:38:18Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "451.00", "lithology_to": "460.00", "lithology_raw_data": "WHITE/BLUE/GREEN LARGE FRACTURED ZONE, BROKEN BEDROCK (1\"-2.5\")", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "UNSTABLE - GRAVEL TYPE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197396}}, {"model": "wells.lithologydescription", "pk": "f8133bb7-01dc-4d23-8dba-89f20a1353eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, "well_tag_number": 112402, "lithology_from": "30.00", "lithology_to": "33.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198492}}, {"model": "wells.lithologydescription", "pk": "f815cca6-6455-484d-b50a-1cca1cd6f5af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well_tag_number": 112603, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200005}}, {"model": "wells.lithologydescription", "pk": "f81d6c55-fb10-42c2-8540-949c2abb53a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, "well_tag_number": 113141, "lithology_from": "0.00", "lithology_to": "67.00", "lithology_raw_data": "WASTE ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203247}}, {"model": "wells.lithologydescription", "pk": "f82a4d44-81f1-485b-a982-233e93e7151b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well_tag_number": 113304, "lithology_from": "69.00", "lithology_to": "83.00", "lithology_raw_data": "sand", "lithology_description": "45", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204055}}, {"model": "wells.lithologydescription", "pk": "f82b8b07-5829-4dad-9cb8-702ad080af66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, "well_tag_number": 113262, "lithology_from": "95.00", "lithology_to": "105.00", "lithology_raw_data": "shale", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "43", "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "FINAL YIELD", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203890}}, {"model": "wells.lithologydescription", "pk": "f82bf0ce-6912-4105-87e4-fc87cf0030fe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well_tag_number": 112645, "lithology_from": "343.00", "lithology_to": "354.00", "lithology_raw_data": "sand", "lithology_description": "40", "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200342}}, {"model": "wells.lithologydescription", "pk": "f836de00-1699-4899-8dd8-bb4217471567", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:00:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, "well_tag_number": 112696, "lithology_from": "36.00", "lithology_to": "40.50", "lithology_raw_data": "med. sands", "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "45", "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "cleaner material", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200547}}, {"model": "wells.lithologydescription", "pk": "f8371629-9a2d-40e7-a2c6-43b9889b8894", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well_tag_number": 112598, "lithology_from": "5.00", "lithology_to": "8.00", "lithology_raw_data": "BOULDER", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199964}}, {"model": "wells.lithologydescription", "pk": "f8496b8b-fec3-4897-bebf-a4fefdd109eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "53.00", "lithology_to": "194.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202383}}, {"model": "wells.lithologydescription", "pk": "f84fbdae-80df-4675-b836-18020e9ce320", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, "well_tag_number": 112591, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199924}}, {"model": "wells.lithologydescription", "pk": "f85614a6-d41b-47a5-9102-5f5586db2a4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well_tag_number": 113254, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": "shale", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": "23", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203831}}, {"model": "wells.lithologydescription", "pk": "f856b479-31d1-4477-913c-9ccac253d714", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "190.00", "lithology_to": "233.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205639}}, {"model": "wells.lithologydescription", "pk": "f859534d-42cb-49c6-b9e3-f7feb9059308", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "254.00", "lithology_to": "256.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203163}}, {"model": "wells.lithologydescription", "pk": "f859c516-3c6c-4f49-99f0-80b62bbe8c35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well_tag_number": 113056, "lithology_from": "80.00", "lithology_to": "96.00", "lithology_raw_data": "SILTY SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202685}}, {"model": "wells.lithologydescription", "pk": "f85cfed4-229e-496f-bbd5-7ac82cf31847", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205634}}, {"model": "wells.lithologydescription", "pk": "f864e3d7-7001-4b07-baa3-2b24f97ba16a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "30.00", "lithology_to": "39.00", "lithology_raw_data": "CLAYS AND SAND LAYERS ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203947}}, {"model": "wells.lithologydescription", "pk": "f86f364c-d8ba-4998-a3f7-fc90828ad447", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, "well_tag_number": 113211, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203638}}, {"model": "wells.lithologydescription", "pk": "f8755bcd-c0e4-4019-9a37-840b5af61a2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well_tag_number": 112606, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, SAND, SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DAMP", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200034}}, {"model": "wells.lithologydescription", "pk": "f87845e6-01ea-4616-972d-8cd901586218", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, "well_tag_number": 113252, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "clay gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203814}}, {"model": "wells.lithologydescription", "pk": "f8958edb-8d06-4ebd-b6c7-65035d1c15e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, "well_tag_number": 113251, "lithology_from": "40.00", "lithology_to": "47.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "10", "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203812}}, {"model": "wells.lithologydescription", "pk": "f89fe8b3-8c6f-4ba7-a480-3274ad6085dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well_tag_number": 112470, "lithology_from": "290.00", "lithology_to": "293.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "15.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199055}}, {"model": "wells.lithologydescription", "pk": "f8b8747a-f97f-4a81-8fce-663c6fca6e86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:35:11Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:42:33Z", "activity_submission": null, "well_tag_number": 112778, "lithology_from": "0.00", "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NOT PROVIDED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201079}}, {"model": "wells.lithologydescription", "pk": "f8da55a2-e7b4-48a5-bc76-0503df4be974", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:52:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, "well_tag_number": 112576, "lithology_from": "344.00", "lithology_to": "347.00", "lithology_raw_data": "VOLCANIC WITH WHITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; COLOUR=GREY, WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199832}}, {"model": "wells.lithologydescription", "pk": "f8e54cef-857f-4bdb-80c7-f20e28670fbf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T17:49:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, "well_tag_number": 112732, "lithology_from": "22.00", "lithology_to": "27.00", "lithology_raw_data": "FINE AND SILTY BROWN SAND WITH SOME GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; DIRTY; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200776}}, {"model": "wells.lithologydescription", "pk": "f8f63ae7-802f-4ec1-a50f-045b6b0a7dad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well_tag_number": 112361, "lithology_from": "119.00", "lithology_to": "136.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198233}}, {"model": "wells.lithologydescription", "pk": "f8fce48b-8ca9-485a-8a7c-edc48e72c873", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, "well_tag_number": 112706, "lithology_from": "18.00", "lithology_to": "130.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200586}}, {"model": "wells.lithologydescription", "pk": "f9028590-3046-469d-933a-1f66bc3df62f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "468.00", "lithology_to": "475.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202847}}, {"model": "wells.lithologydescription", "pk": "f918b4a5-3eb1-4020-82b5-ad4b6c03ab0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:42:50Z", "activity_submission": null, "well_tag_number": 113016, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "CLAY AND ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202506}}, {"model": "wells.lithologydescription", "pk": "f919b957-9162-4990-b7b4-9b7b921fc801", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:22:30Z", "activity_submission": null, "well_tag_number": 112944, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202125}}, {"model": "wells.lithologydescription", "pk": "f93751a6-65b3-4f3c-ab53-204575f912ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T16:48:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, "well_tag_number": 113185, "lithology_from": "14.00", "lithology_to": "34.00", "lithology_raw_data": "gravel & boulders", "lithology_description": "62", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203484}}, {"model": "wells.lithologydescription", "pk": "f93e6d34-1af5-4554-bf11-5b09a70b9391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, "well_tag_number": 112316, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "DARK BROWN TOPSOIL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197861}}, {"model": "wells.lithologydescription", "pk": "f94ee3ed-4fd1-487e-b7db-e9462d80214d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well_tag_number": 112985, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "04", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202378}}, {"model": "wells.lithologydescription", "pk": "f961b03c-f972-4731-966b-534018542fe1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, "well_tag_number": 112736, "lithology_from": "35.00", "lithology_to": "46.00", "lithology_raw_data": "SAND WITH GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST TO WET FROM 39'-46'; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200800}}, {"model": "wells.lithologydescription", "pk": "f9634541-fa85-48a9-9011-1c364abda363", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well_tag_number": 112958, "lithology_from": "233.00", "lithology_to": "257.00", "lithology_raw_data": "SAND, CLAY, SCATTERED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "20-50", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202210}}, {"model": "wells.lithologydescription", "pk": "f9644108-a09c-4446-a99c-778f1966b3be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "BLASTED FILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201985}}, {"model": "wells.lithologydescription", "pk": "f96951ae-5bfa-4fcc-9862-a21c81e18fef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, "well_tag_number": 112385, "lithology_from": "180.00", "lithology_to": "260.00", "lithology_raw_data": "BLUE/GREY VOLCANIC WITH SEAMS OF MULTI-COLOURED GNEISS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "235'=WATER, 1.5 USGPM, FRACTURE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198401}}, {"model": "wells.lithologydescription", "pk": "f9732025-26af-4ade-aa75-67ada6fc20c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well_tag_number": 112226, "lithology_from": "225.00", "lithology_to": "314.00", "lithology_raw_data": "VOLCANIC, LARGER GRAINED MATERIAL", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197393}}, {"model": "wells.lithologydescription", "pk": "f9747727-4f98-40ae-9b4f-a4d4e57f17db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well_tag_number": 112381, "lithology_from": "42.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198384}}, {"model": "wells.lithologydescription", "pk": "f98a0de1-f582-438b-9bfc-4f2eec064a21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well_tag_number": 113184, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand, fine-med", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203476}}, {"model": "wells.lithologydescription", "pk": "f99c06e1-2e9b-409c-8ad5-48380073c03d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well_tag_number": 112967, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY, TOPSOIL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202267}}, {"model": "wells.lithologydescription", "pk": "f99f6b3b-9912-4104-bd02-16c4c166c469", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, "well_tag_number": 113026, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202562}}, {"model": "wells.lithologydescription", "pk": "f9a22f78-313b-45ff-b4fc-4ad1830dc214", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well_tag_number": 112590, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CEMENTED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199916}}, {"model": "wells.lithologydescription", "pk": "f9a6249f-e393-4f96-ac14-f17b25fccc58", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well_tag_number": 112889, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201821}}, {"model": "wells.lithologydescription", "pk": "f9b13ecf-2a77-4b20-af03-f6c027b6bd85", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well_tag_number": 112800, "lithology_from": "56.00", "lithology_to": "69.00", "lithology_raw_data": "FINE GREY SAND, W.B.", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201164}}, {"model": "wells.lithologydescription", "pk": "f9b495ba-1ec6-4ad7-81a6-17dd2ee7c3e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:37:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:37:50Z", "activity_submission": null, "well_tag_number": 112247, "lithology_from": "18.00", "lithology_to": "75.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "150.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "50'-75'=FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197509}}, {"model": "wells.lithologydescription", "pk": "f9bbf0a8-f42f-4573-985c-f0d5bf91016a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "215.00", "lithology_to": "225.00", "lithology_raw_data": "SS MED HARD GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143931}}, {"model": "wells.lithologydescription", "pk": "f9bd6727-f3f1-47b2-b068-fc9e52878d75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, "well_tag_number": 112242, "lithology_from": "26.00", "lithology_to": "60.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197491}}, {"model": "wells.lithologydescription", "pk": "f9d29201-0dee-42c5-b3bb-efb2c6dffc9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well_tag_number": 113190, "lithology_from": "135.00", "lithology_to": "168.00", "lithology_raw_data": "fine to medium", "lithology_description": "62", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "8.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203526}}, {"model": "wells.lithologydescription", "pk": "f9e1055d-87db-49f4-9e0c-a886495f28e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well_tag_number": 112254, "lithology_from": "42.00", "lithology_to": "48.00", "lithology_raw_data": "GREY CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197542}}, {"model": "wells.lithologydescription", "pk": "f9e69089-c961-4a7d-b4f5-2563e1ed68f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well_tag_number": 113035, "lithology_from": "123.00", "lithology_to": "128.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "20.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "CLAY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202622}}, {"model": "wells.lithologydescription", "pk": "f9e762fc-34fc-4073-8639-500868bdc992", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "60.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198974}}, {"model": "wells.lithologydescription", "pk": "f9f20398-7b1e-407a-b6eb-112c3bed5bd0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well_tag_number": 112459, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY CLAY, MINOR ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198962}}, {"model": "wells.lithologydescription", "pk": "f9f45cdb-fe56-451d-8768-2b66092ca5bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well_tag_number": 112314, "lithology_from": "72.00", "lithology_to": "74.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197853}}, {"model": "wells.lithologydescription", "pk": "fa0a6a55-03d6-416c-bcc1-62cffeb82ac4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, "well_tag_number": 112295, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197756}}, {"model": "wells.lithologydescription", "pk": "fa10b4cc-0ea7-42e1-b65e-c77281358c05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well_tag_number": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 240'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201470}}, {"model": "wells.lithologydescription", "pk": "fa14a7cb-a26a-432b-b086-3515d0a94fa7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well_tag_number": 100200, "lithology_from": "31.00", "lithology_to": "38.00", "lithology_raw_data": null, "lithology_description": "40", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 130487}}, {"model": "wells.lithologydescription", "pk": "fa1685bf-b672-40de-8f5f-ae9c9f429249", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "CLAY WITH MIXED ROCKS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198143}}, {"model": "wells.lithologydescription", "pk": "fa2ad49d-a2e7-423c-bd2b-a66d1bf6d006", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "980.00", "lithology_to": "994.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "competemt", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202869}}, {"model": "wells.lithologydescription", "pk": "fa3f8ec3-cb3c-4b6a-ab97-8d6f518ea661", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, "well_tag_number": 112398, "lithology_from": "21.00", "lithology_to": "60.00", "lithology_raw_data": "SILT, SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198461}}, {"model": "wells.lithologydescription", "pk": "fa4ad1b0-0964-4543-9797-ac6b9b776780", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:37:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, "well_tag_number": 113031, "lithology_from": "150.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM BROWN GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202595}}, {"model": "wells.lithologydescription", "pk": "fa4b182a-7d01-4455-849a-39e5f29cdcfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well_tag_number": 113281, "lithology_from": "136.00", "lithology_to": "142.00", "lithology_raw_data": "silt sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203959}}, {"model": "wells.lithologydescription", "pk": "fa57ae63-bdb9-4b2e-a75f-cf5974ff22e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, "well_tag_number": 113279, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203944}}, {"model": "wells.lithologydescription", "pk": "fa57d19a-9585-4fa9-922e-eb8824b24c5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "128.00", "lithology_to": "130.00", "lithology_raw_data": "SANDSTONE", "lithology_description": null, "lithology_colour": "15", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WET; 140' MAKING", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199502}}, {"model": "wells.lithologydescription", "pk": "fa6bc059-f888-4649-a95e-c7e8530af070", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well_tag_number": 112460, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198975}}, {"model": "wells.lithologydescription", "pk": "fa7aff79-86ed-45fa-96d2-a7a3b1928ae6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "200.00", "lithology_to": "206.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200107}}, {"model": "wells.lithologydescription", "pk": "fa89000e-59a3-4dd4-8026-2bd7f39a816f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T16:48:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, "well_tag_number": 113185, "lithology_from": "34.00", "lithology_to": "63.00", "lithology_raw_data": "gravel", "lithology_description": "62", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203485}}, {"model": "wells.lithologydescription", "pk": "fa8fbe23-532e-4669-ab38-0a748686d8bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:48Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "242.00", "lithology_to": "256.00", "lithology_raw_data": "and silts", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197681}}, {"model": "wells.lithologydescription", "pk": "fa98ad01-3fd4-4597-8439-5fdf949688ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well_tag_number": 113067, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "FINE SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202761}}, {"model": "wells.lithologydescription", "pk": "fa9be7cc-c539-43b6-ba0e-d76d97cb582e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well_tag_number": 113077, "lithology_from": "341.00", "lithology_to": "348.00", "lithology_raw_data": null, "lithology_description": "55", "lithology_colour": "05", "lithology_hardness": "DENSE", "lithology_material": "63", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "broken material washing in but no addtional water", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202838}}, {"model": "wells.lithologydescription", "pk": "faa82fe5-bf46-4438-b284-ec528e6232dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well_tag_number": 112656, "lithology_from": "28.00", "lithology_to": "47.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200375}}, {"model": "wells.lithologydescription", "pk": "faad009a-41b9-4a2d-9e54-2439a4d7eb5e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well_tag_number": 112550, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "43", "water_bearing_estimated_flow": "40.0000", "water_bearing_estimated_flow_units": null, "lithology_observation": "caving", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199661}}, {"model": "wells.lithologydescription", "pk": "fab07739-be2a-4ae4-a951-88e6cbb5010d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "300.00", "lithology_to": "500.00", "lithology_raw_data": "SMALL/MEDIUM, SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198650}}, {"model": "wells.lithologydescription", "pk": "faba774c-ca74-4a80-9a8d-8ce9a210e541", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-05T19:24:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:42:21Z", "activity_submission": null, "well_tag_number": 112533, "lithology_from": "282.00", "lithology_to": "286.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199546}}, {"model": "wells.lithologydescription", "pk": "fae0e0bf-fda4-4a8a-8ee8-4ce745b294e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well_tag_number": 112986, "lithology_from": "29.00", "lithology_to": "32.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202394}}, {"model": "wells.lithologydescription", "pk": "faed0176-1098-411f-9e4d-932279bbd624", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well_tag_number": 113014, "lithology_from": "19.00", "lithology_to": "29.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "silty", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202502}}, {"model": "wells.lithologydescription", "pk": "fafc888e-3676-4aea-89e8-c803737d11e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well_tag_number": 112500, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199305}}, {"model": "wells.lithologydescription", "pk": "fb042ca0-33e4-4c21-86e7-4b4a441792d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well_tag_number": 112231, "lithology_from": "5.00", "lithology_to": "9.00", "lithology_raw_data": "B/GREEN BEDROCK BLOCKS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197428}}, {"model": "wells.lithologydescription", "pk": "fb047a04-f880-4bfa-92aa-2648894902c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, "well_tag_number": 113128, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "SANDY BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203134}}, {"model": "wells.lithologydescription", "pk": "fb0b56b6-89d1-4134-8242-e670175e11c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, "well_tag_number": 112329, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197967}}, {"model": "wells.lithologydescription", "pk": "fb149caf-ac4f-41f1-acee-20138c80361c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well_tag_number": 112994, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": null, "lithology_description": "45", "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": "10", "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202441}}, {"model": "wells.lithologydescription", "pk": "fb1db732-b5f7-48cb-8a10-f593ed3bc3be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, "well_tag_number": 112564, "lithology_from": "86.00", "lithology_to": "100.00", "lithology_raw_data": "CEMENTED GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199749}}, {"model": "wells.lithologydescription", "pk": "fb203d5d-c18c-4a9a-b825-5a65a1c02842", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:48Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "394.00", "lithology_to": "454.00", "lithology_raw_data": "GRAY & RED", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201783}}, {"model": "wells.lithologydescription", "pk": "fb2b0aec-9c1f-4c88-ae9a-5b49e4205109", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T20:27:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, "well_tag_number": 112723, "lithology_from": "22.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER SAND AND GRAVEL WITH FINE SAND LAYERS", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "WATER BEARING; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200698}}, {"model": "wells.lithologydescription", "pk": "fb4e3f77-7457-4a73-a3a2-e5ba3d43db9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "147.00", "lithology_to": "215.00", "lithology_raw_data": "PEA GRAVEL & LARGER", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NOT ARTESIAN BUT LOTS OF WATER", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202006}}, {"model": "wells.lithologydescription", "pk": "fb51aedf-d9c7-4ad1-910f-7783cc574d15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well_tag_number": 112759, "lithology_from": "130.00", "lithology_to": "200.00", "lithology_raw_data": "BROWN SILTS, SANDS AND SOME GRAVELS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200967}}, {"model": "wells.lithologydescription", "pk": "fb70b9e1-85b6-4b75-84a2-f1ec8b2f292e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well_tag_number": 113150, "lithology_from": "19.00", "lithology_to": "28.00", "lithology_raw_data": "sand with gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "20GPM sand/med", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203291}}, {"model": "wells.lithologydescription", "pk": "fb717e6f-ce3c-4d13-8b19-faa9e745c7bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "458.00", "lithology_to": "471.00", "lithology_raw_data": "SS, light grey, sugary, S&P", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203415}}, {"model": "wells.lithologydescription", "pk": "fb77a46f-8c1c-4492-9a76-a6f744944e4e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well_tag_number": 113069, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202776}}, {"model": "wells.lithologydescription", "pk": "fb787fbe-ad31-4ebe-ba59-1482d6583087", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198643}}, {"model": "wells.lithologydescription", "pk": "fb8383b2-2f9e-4e5c-81e6-f16e84dc7665", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well_tag_number": 112572, "lithology_from": "137.00", "lithology_to": "226.00", "lithology_raw_data": "GRANITE", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREY/WHITE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199790}}, {"model": "wells.lithologydescription", "pk": "fb8481a4-608d-43ad-a680-41ef0d21f482", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well_tag_number": 112758, "lithology_from": "388.00", "lithology_to": "390.00", "lithology_raw_data": "BROWN CLAYS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200963}}, {"model": "wells.lithologydescription", "pk": "fb8913be-dd9d-454f-a6d9-bd96c1b7c413", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well_tag_number": 112351, "lithology_from": "32.00", "lithology_to": "34.00", "lithology_raw_data": "and gravels", "lithology_description": "73", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198182}}, {"model": "wells.lithologydescription", "pk": "fb97c063-0533-45d1-a09b-12643342320e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "123.00", "lithology_to": "128.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201967}}, {"model": "wells.lithologydescription", "pk": "fb9978b1-1fe4-470f-88a5-ba26eb40dd61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, "well_tag_number": 112454, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198926}}, {"model": "wells.lithologydescription", "pk": "fba75e60-caa8-4ca7-b250-02deae3ccae9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well_tag_number": 113253, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "09", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203818}}, {"model": "wells.lithologydescription", "pk": "fbbd1b36-e116-4319-98ae-33a7b5dad0ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well_tag_number": 113010, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": "19", "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202486}}, {"model": "wells.lithologydescription", "pk": "fbbdb274-7a9c-4e21-bf27-e938d1e4adf4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, "well_tag_number": 112909, "lithology_from": "56.00", "lithology_to": "75.00", "lithology_raw_data": "SILT, CLAY, TRACE GRAVEL & WOOD", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201937}}, {"model": "wells.lithologydescription", "pk": "fbbe9d22-2b7f-4b69-9864-7606c66a68e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199196}}, {"model": "wells.lithologydescription", "pk": "fbbf6c3f-9f80-454f-9e40-3b1507deb6cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:02:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:02:02Z", "activity_submission": null, "well_tag_number": 112700, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200561}}, {"model": "wells.lithologydescription", "pk": "fbd3e964-3428-42e6-b5ec-c5349993b8c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:30Z", "activity_submission": null, "well_tag_number": 113307, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "DENSE", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204066}}, {"model": "wells.lithologydescription", "pk": "fbe0de23-5bad-49e2-9d15-8055b92d8d1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "432.00", "lithology_to": "436.00", "lithology_raw_data": "SS fine brownish grey, med hard ", "lithology_description": "47", "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203406}}, {"model": "wells.lithologydescription", "pk": "fbe8c22f-eae9-47be-bd66-5a7ff8cad818", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well_tag_number": 112270, "lithology_from": "46.00", "lithology_to": "101.00", "lithology_raw_data": "till", "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197618}}, {"model": "wells.lithologydescription", "pk": "fc0be3cf-26b8-4af4-97cf-8ea483282479", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, "well_tag_number": 112527, "lithology_from": "77.00", "lithology_to": "81.00", "lithology_raw_data": "LIGHT AND DARK SHALE AND SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DARK GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199495}}, {"model": "wells.lithologydescription", "pk": "fc12c867-55d4-410d-add4-dd0b46129184", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-01-13T18:34:19Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:34:19Z", "activity_submission": null, "well_tag_number": 112615, "lithology_from": "96.00", "lithology_to": "116.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUTTINGS", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200119}}, {"model": "wells.lithologydescription", "pk": "fc173f61-91ed-4022-ac18-1332fdee4bdb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well_tag_number": 112468, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199031}}, {"model": "wells.lithologydescription", "pk": "fc1e5526-0eae-4438-81e6-b1a5398f47e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T19:53:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, "well_tag_number": 113013, "lithology_from": "360.00", "lithology_to": "400.00", "lithology_raw_data": "lighter green", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "05", "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "at 340'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202498}}, {"model": "wells.lithologydescription", "pk": "fc252955-c915-4d95-a07e-bd0f48aa54b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "and gravel", "lithology_description": "40", "lithology_colour": "03", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199689}}, {"model": "wells.lithologydescription", "pk": "fc31ae56-c7cb-4225-8313-472c19e3b245", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, "well_tag_number": 112504, "lithology_from": "31.00", "lithology_to": "71.00", "lithology_raw_data": "BROWN SAND & GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199335}}, {"model": "wells.lithologydescription", "pk": "fc433b51-4a60-4a12-aba0-ad571addfae5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "284.00", "lithology_to": "412.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197377}}, {"model": "wells.lithologydescription", "pk": "fc4f2c26-e495-45c3-b132-8221eccd483a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well_tag_number": 112267, "lithology_from": "292.00", "lithology_to": "320.00", "lithology_raw_data": "gravel and till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Black streaks", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197607}}, {"model": "wells.lithologydescription", "pk": "fc5f3410-7285-410b-b8ee-09ad9ad8124c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, "well_tag_number": 112336, "lithology_from": "85.00", "lithology_to": "152.00", "lithology_raw_data": "MEDIUM-SOFT, BROWN-GREY, SEMI-CEMENTED, SILT-SANDY LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198058}}, {"model": "wells.lithologydescription", "pk": "fc732ee7-3108-4d78-9dd7-097ba9f40c94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well_tag_number": 112345, "lithology_from": "310.00", "lithology_to": "400.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH FEW GREEN AND WHITE TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198148}}, {"model": "wells.lithologydescription", "pk": "fc819564-6e91-410f-8bcc-3545cec82951", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T20:09:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T20:09:07Z", "activity_submission": null, "well_tag_number": 112652, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "330'=1.25 USGPM; 380'=4-6GPM WITH PUMP PROTECTION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200358}}, {"model": "wells.lithologydescription", "pk": "fc85fd3f-51fa-4b43-a116-daf99fd3e6d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well_tag_number": 112914, "lithology_from": "145.00", "lithology_to": "164.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "09", "water_bearing_estimated_flow": "100.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201973}}, {"model": "wells.lithologydescription", "pk": "fc8c143c-d45c-4373-8285-73a23c94b72e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, "well_tag_number": 112760, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200976}}, {"model": "wells.lithologydescription", "pk": "fc9be70b-f56a-4ead-976c-d08ea02e781d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:08:20Z", "activity_submission": null, "well_tag_number": 112229, "lithology_from": "220.00", "lithology_to": "420.00", "lithology_raw_data": "SHALE BEDROCK", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "WATER INCREASED TO 0.5 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197417}}, {"model": "wells.lithologydescription", "pk": "fca101db-7de0-418f-9abe-b729d6ed9fad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:48Z", "activity_submission": null, "well_tag_number": 112278, "lithology_from": "204.00", "lithology_to": "242.00", "lithology_raw_data": null, "lithology_description": "73", "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Brown silt wash", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197680}}, {"model": "wells.lithologydescription", "pk": "fca23cb5-5ba5-490b-9966-3c11db15051a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "489.00", "lithology_to": "492.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH SMALL WHITE IN SEAM", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED; YIELD=30+ USGPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197380}}, {"model": "wells.lithologydescription", "pk": "fca3bc66-3808-4f6d-93ec-7cf3badc5c81", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, "well_tag_number": 112878, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "cobbles", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "HARD", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201745}}, {"model": "wells.lithologydescription", "pk": "fcb79916-d91a-4ee3-b01d-947792101a70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well_tag_number": 113118, "lithology_from": "180.00", "lithology_to": "185.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203081}}, {"model": "wells.lithologydescription", "pk": "fcbc9ae8-c738-4e35-b00a-dc1d40c1eb2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, "well_tag_number": 112695, "lithology_from": "118.00", "lithology_to": "202.00", "lithology_raw_data": "BASALTS", "lithology_description": null, "lithology_colour": "01", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200544}}, {"model": "wells.lithologydescription", "pk": "fceb8fbd-73f0-45b8-8c28-2a73c7a078dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:10:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, "well_tag_number": 112356, "lithology_from": "75.00", "lithology_to": "75.00", "lithology_raw_data": "gravel silt", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "50 gpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198208}}, {"model": "wells.lithologydescription", "pk": "fcf3d505-63b4-4eb8-8b55-eb935a94a154", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, "well_tag_number": 112708, "lithology_from": "94.00", "lithology_to": "355.00", "lithology_raw_data": "BASALT BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "VERY_HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=BLACK AND WHITE; DRY; SOLID; WHITE QUARTZ SEAMS AT 215', 227', 282'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200601}}, {"model": "wells.lithologydescription", "pk": "fcf7b013-a089-4000-a143-191397fcda0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well_tag_number": 112701, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200568}}, {"model": "wells.lithologydescription", "pk": "fd006ead-bb4b-45ef-be8d-732b037af070", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well_tag_number": 113552, "lithology_from": "262.00", "lithology_to": "265.00", "lithology_raw_data": "SILT", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 205643}}, {"model": "wells.lithologydescription", "pk": "fd09c3d5-efad-45d0-a4ae-a3bd9b93c1bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, "well_tag_number": 112235, "lithology_from": "85.00", "lithology_to": "125.00", "lithology_raw_data": "MEDIUM/SOFT PACKED SAND", "lithology_description": null, "lithology_colour": "05", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197448}}, {"model": "wells.lithologydescription", "pk": "fd14d909-cc7c-42c4-9167-0488b58394c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, "well_tag_number": 113115, "lithology_from": "5.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203046}}, {"model": "wells.lithologydescription", "pk": "fd17f26e-b970-494d-bf30-066685ae6f18", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well_tag_number": 102666, "lithology_from": "168.00", "lithology_to": "192.00", "lithology_raw_data": "SS HARD FINE GRY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 143929}}, {"model": "wells.lithologydescription", "pk": "fd180ae9-01ba-475a-9627-285b43f3ccea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well_tag_number": 112224, "lithology_from": "280.00", "lithology_to": "284.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH WHITE", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": "0.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197376}}, {"model": "wells.lithologydescription", "pk": "fd1e75dd-9595-4461-8cdf-9ad80cc3635e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, "well_tag_number": 112937, "lithology_from": "100.00", "lithology_to": "175.00", "lithology_raw_data": "VOLCANIC ", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "2.5000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURE @ 155' AND 160'", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202094}}, {"model": "wells.lithologydescription", "pk": "fd37b316-cc85-4fbe-9724-738cece22058", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well_tag_number": 113130, "lithology_from": "22.00", "lithology_to": "37.00", "lithology_raw_data": "SILT AND SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203157}}, {"model": "wells.lithologydescription", "pk": "fd3daeda-09e3-44d3-8622-f8e65b442e11", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:34:02Z", "update_user": "PROXY_WELLS", "update_date": "2017-05-10T21:51:28Z", "activity_submission": null, "well_tag_number": 113080, "lithology_from": "50.00", "lithology_to": "260.00", "lithology_raw_data": "Siltstone/shale, Dark Grey, loose/med, dry", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202886}}, {"model": "wells.lithologydescription", "pk": "fd407644-1cd7-477b-a3bd-745b18863224", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well_tag_number": 112386, "lithology_from": "100.00", "lithology_to": "410.00", "lithology_raw_data": "BLACK/GREY/WHITE, VOLCANIC WITH OCCASIONAL TRACES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198408}}, {"model": "wells.lithologydescription", "pk": "fd43bb7a-4244-4810-858e-6f4d5eb2c02b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well_tag_number": 112786, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NATIVE SOIL", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201127}}, {"model": "wells.lithologydescription", "pk": "fd4c96a9-eded-49f8-9ce4-8aa902123d63", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:13:46Z", "activity_submission": null, "well_tag_number": 113170, "lithology_from": "225.00", "lithology_to": "270.00", "lithology_raw_data": "Blackish silty clayish", "lithology_description": "40", "lithology_colour": "01", "lithology_hardness": null, "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "225' = waterbearing", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203381}}, {"model": "wells.lithologydescription", "pk": "fd531035-b45e-4da8-b456-cb31dff7ad99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:42Z", "activity_submission": null, "well_tag_number": 113179, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "gravel", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203442}}, {"model": "wells.lithologydescription", "pk": "fd64678b-ac5f-49c5-b4fd-62fb7e8bd2da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well_tag_number": 113309, "lithology_from": "348.00", "lithology_to": "395.00", "lithology_raw_data": "bedrock", "lithology_description": "52", "lithology_colour": "05", "lithology_hardness": "HARD", "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204085}}, {"model": "wells.lithologydescription", "pk": "fd7423f2-0d8e-4df3-b6b7-cc6c8a1c414b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:40:13Z", "activity_submission": null, "well_tag_number": 112227, "lithology_from": "220.00", "lithology_to": "224.00", "lithology_raw_data": "GREY/WG VOLCANIC FELDSPAR", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": "3.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "FRACTURED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197405}}, {"model": "wells.lithologydescription", "pk": "fd77df52-e260-4b04-8c62-fa007c3f4453", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well_tag_number": 112330, "lithology_from": "165.00", "lithology_to": "195.00", "lithology_raw_data": "SILTSTONE", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197977}}, {"model": "wells.lithologydescription", "pk": "fd856575-07f2-497a-b2da-0190e0f5baf7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well_tag_number": 112346, "lithology_from": "160.00", "lithology_to": "240.00", "lithology_raw_data": "WHITE/PINK/BLACK/GREY - VOLCANIC - SEVERAL FRACTURES", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "4.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "TOTAL WATER=4 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198154}}, {"model": "wells.lithologydescription", "pk": "fd87b507-6f97-4ef9-a0b3-f5960a4ffdba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well_tag_number": 112473, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM TO COARSE SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199068}}, {"model": "wells.lithologydescription", "pk": "fd99b935-6345-4ad5-8506-6d50fbc102a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well_tag_number": 112601, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199991}}, {"model": "wells.lithologydescription", "pk": "fda0ec75-7e3c-4e1d-bca6-ed70fad05a68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well_tag_number": 112558, "lithology_from": "57.00", "lithology_to": "120.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "05", "lithology_hardness": "MEDIUM", "lithology_material": "39", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199700}}, {"model": "wells.lithologydescription", "pk": "fdaca779-23e5-47ec-810d-9fc614c40f3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well_tag_number": 112429, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY WITH SILT AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "BROWN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198688}}, {"model": "wells.lithologydescription", "pk": "fdbc7e78-8aba-446f-95e3-daa0d7694fd9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T21:20:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, "well_tag_number": 100001, "lithology_from": "2.00", "lithology_to": "13.00", "lithology_raw_data": "GRAVEL, SILTY BROWN WITH CLAY LAYERS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 129523}}, {"model": "wells.lithologydescription", "pk": "fdbcc796-eea1-4cc2-bbbd-8772545a58a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, "well_tag_number": 112362, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVELS, SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "LOOSE", "lithology_material": null, "water_bearing_estimated_flow": "30.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": "30+ USGPM, CLEAN AND CLEAR", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198240}}, {"model": "wells.lithologydescription", "pk": "fdc1cecf-9670-49ae-9528-86fcded4654f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, "well_tag_number": 112447, "lithology_from": "300.00", "lithology_to": "308.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198866}}, {"model": "wells.lithologydescription", "pk": "fdd0eef2-7850-4b25-be65-87558802c361", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, "well_tag_number": 112753, "lithology_from": "64.00", "lithology_to": "69.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200921}}, {"model": "wells.lithologydescription", "pk": "fddf11a2-da68-49ed-bdd3-eaa641e94128", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, "well_tag_number": 113108, "lithology_from": "50.00", "lithology_to": "68.00", "lithology_raw_data": "till", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203026}}, {"model": "wells.lithologydescription", "pk": "fdfa3981-3b16-486b-9e8f-19b448a57f27", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well_tag_number": 113093, "lithology_from": "160.00", "lithology_to": "167.00", "lithology_raw_data": "VOLCANICS", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202945}}, {"model": "wells.lithologydescription", "pk": "fe03cbb3-5bdf-4c9a-aa8b-2d4ae91a9b23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well_tag_number": 112583, "lithology_from": "70.00", "lithology_to": "90.00", "lithology_raw_data": "SHALE, SANDSTONE LENSES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MINOR LOSS OF CIRCULATION", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199872}}, {"model": "wells.lithologydescription", "pk": "fe09293f-eedc-4e57-b478-94ded5788faa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, "well_tag_number": 112504, "lithology_from": "71.00", "lithology_to": "78.00", "lithology_raw_data": "BROWN GREVEL WITH LESS SAND", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199336}}, {"model": "wells.lithologydescription", "pk": "fe190d79-524f-4a7f-b3b6-70a8e8f105f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well_tag_number": 113212, "lithology_from": "24.00", "lithology_to": "50.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": "11", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Wet", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203647}}, {"model": "wells.lithologydescription", "pk": "fe2c945d-f991-443f-8a8f-4156f3f721a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well_tag_number": 112538, "lithology_from": "19.00", "lithology_to": "33.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND SILT", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "DRY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199580}}, {"model": "wells.lithologydescription", "pk": "fe2fadf6-3ed2-417a-8825-2ceac6e60fd2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, "well_tag_number": 112328, "lithology_from": "132.00", "lithology_to": "144.00", "lithology_raw_data": "COARSE GRAVEL AND SAND", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "50.0000", "water_bearing_estimated_flow_units": "USGPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197962}}, {"model": "wells.lithologydescription", "pk": "fe34d6a5-49f0-45cf-8640-5bf7b27bc88b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well_tag_number": 112484, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/SOFT; GRAVEL SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199171}}, {"model": "wells.lithologydescription", "pk": "fe3964a2-1f84-472f-9bd7-4f5dcfe4dc98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well_tag_number": 112230, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": " ORGANICS", "lithology_description": null, "lithology_colour": "02", "lithology_hardness": "SOFT", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197418}}, {"model": "wells.lithologydescription", "pk": "fe39f114-f53e-48c0-a680-6b399edceac5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well_tag_number": 112858, "lithology_from": "77.00", "lithology_to": "88.00", "lithology_raw_data": "BROWN SANDSTONE/GREY SHALE LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201621}}, {"model": "wells.lithologydescription", "pk": "fe5bf0ed-d3c2-4dea-8895-623c15fd7632", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, "well_tag_number": 112857, "lithology_from": "267.00", "lithology_to": "280.00", "lithology_raw_data": "FINE, FRIABLE, DIRTY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201608}}, {"model": "wells.lithologydescription", "pk": "fe66bdf2-f7c7-4603-8a8c-b2f88d26c858", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:45:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, "well_tag_number": 112250, "lithology_from": "127.00", "lithology_to": "137.00", "lithology_raw_data": "CONGLOMERATE", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197518}}, {"model": "wells.lithologydescription", "pk": "fe6daa40-956c-4147-b95e-9b00bd3c51fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well_tag_number": 112860, "lithology_from": "28.00", "lithology_to": "40.00", "lithology_raw_data": "SANDSTONE & SHALE LAYERED, MEDIUM SOFT, BRWON GREY", "lithology_description": "72", "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201633}}, {"model": "wells.lithologydescription", "pk": "fe6dee90-2dcd-462a-8b68-8fa32b3bd237", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, "well_tag_number": 112373, "lithology_from": "1.00", "lithology_to": "28.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "16", "lithology_hardness": "HARD", "lithology_material": "43", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "rotten", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198317}}, {"model": "wells.lithologydescription", "pk": "fe6ea621-7295-4037-8d39-7996235b9d13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well_tag_number": 112726, "lithology_from": "271.00", "lithology_to": "580.00", "lithology_raw_data": "GRANITE BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN, WHITE AND PINK GRANITE BEDROCK WITH SOME BLACK AND WHITE ZONES; SOLID, SOME FRACTURES; WATER BEARING @ 540'; SOFT SPOTS AND SOFT FRACTURED ZONES @ 470', 525', 535'* AND 540'*", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200728}}, {"model": "wells.lithologydescription", "pk": "fe70b21b-9ec9-4618-acfc-adc523bdccdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well_tag_number": 112916, "lithology_from": "127.00", "lithology_to": "135.00", "lithology_raw_data": null, "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "10", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "NOT ARTESIAN", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202003}}, {"model": "wells.lithologydescription", "pk": "fe82ab83-41be-4da4-97c8-f3390f4b2a91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well_tag_number": 113058, "lithology_from": "2.00", "lithology_to": "17.00", "lithology_raw_data": "BROWN CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202701}}, {"model": "wells.lithologydescription", "pk": "fe85ca9a-40ec-4bf7-a30f-ca115b7491f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well_tag_number": 112747, "lithology_from": "84.00", "lithology_to": "151.00", "lithology_raw_data": "BIT LOOSER, DENSE CLAY WITH SILT LAYERS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST; WELL SORTED", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200874}}, {"model": "wells.lithologydescription", "pk": "fe885e0a-15f5-4e89-bc43-ec6563e6bad1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well_tag_number": 112710, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": "46", "lithology_colour": null, "lithology_hardness": "LOOSE", "lithology_material": "46", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "1/2 ppm iron", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200617}}, {"model": "wells.lithologydescription", "pk": "fe910ef4-a7ec-4d4d-8646-c97bb54b27d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, "well_tag_number": 112563, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "DENSE CLAY LAYER, ANGULAR GRAVEL", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "MOIST", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199740}}, {"model": "wells.lithologydescription", "pk": "fe925607-bdee-4b43-83ef-80a2b293f235", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well_tag_number": 112399, "lithology_from": "195.00", "lithology_to": "220.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198476}}, {"model": "wells.lithologydescription", "pk": "fea13151-7959-4267-b1ce-a21fe4ec78e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, "well_tag_number": 112327, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": "PURPLE-GREY VOLCANIC ROCK", "lithology_description": null, "lithology_colour": null, "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197958}}, {"model": "wells.lithologydescription", "pk": "fead78d9-ad2f-4590-8d32-afb5188ba566", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well_tag_number": 112274, "lithology_from": "95.00", "lithology_to": "97.00", "lithology_raw_data": null, "lithology_description": "58", "lithology_colour": null, "lithology_hardness": null, "lithology_material": "18", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Unstable", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197647}}, {"model": "wells.lithologydescription", "pk": "fecb2b49-067c-46c2-9bcc-61bc22eb059f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well_tag_number": 112610, "lithology_from": "33.00", "lithology_to": "35.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "07", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200067}}, {"model": "wells.lithologydescription", "pk": "fece69c6-8092-4f75-b80c-7eb4a09a0a74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:49:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T00:49:28Z", "activity_submission": null, "well_tag_number": 112658, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "CUT CASING BELOW GRADE", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200383}}, {"model": "wells.lithologydescription", "pk": "fed2a8e4-ac03-423a-be59-c26b0af46e2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well_tag_number": 112830, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201356}}, {"model": "wells.lithologydescription", "pk": "fedef04b-421b-430a-802e-0763d8556b8f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-13T00:44:10Z", "activity_submission": null, "well_tag_number": 112612, "lithology_from": "110.00", "lithology_to": "145.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "24", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "Water source: @ 120' - 1.0 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200086}}, {"model": "wells.lithologydescription", "pk": "fee1cff7-133f-4496-bc16-fab945428c74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, "well_tag_number": 113299, "lithology_from": "218.00", "lithology_to": "700.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": "50", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "< 1/4 GPM", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204027}}, {"model": "wells.lithologydescription", "pk": "fee244d9-eb07-4137-800e-0fdb92236f70", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:12:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, "well_tag_number": 112260, "lithology_from": "1.00", "lithology_to": "14.00", "lithology_raw_data": "FILL / GRAVEL", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 197572}}, {"model": "wells.lithologydescription", "pk": "fefb3f11-20ee-4539-83af-2365b85a6f7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:24:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:25:35Z", "activity_submission": null, "well_tag_number": 112996, "lithology_from": "30.00", "lithology_to": "102.00", "lithology_raw_data": "siltstone shale", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "DENSE", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202446}}, {"model": "wells.lithologydescription", "pk": "ff110878-9bb9-4e45-88b5-313ec963f4e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well_tag_number": 112709, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "STIFF", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200609}}, {"model": "wells.lithologydescription", "pk": "ff25afe3-3f00-4ccb-9e67-9ca7d83147ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well_tag_number": 112843, "lithology_from": "113.00", "lithology_to": "117.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201433}}, {"model": "wells.lithologydescription", "pk": "ff25de3b-41dc-4bc8-a744-3e047aefd4ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, "well_tag_number": 112697, "lithology_from": "130.00", "lithology_to": "140.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "06", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 200550}}, {"model": "wells.lithologydescription", "pk": "ff36ce65-2c8a-45f5-825e-024c4b89278e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well_tag_number": 112545, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BASALT ASH ZONES, BEDROCK", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=RED/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199630}}, {"model": "wells.lithologydescription", "pk": "ff6072de-baf3-448f-a821-0190324fe04a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well_tag_number": 113294, "lithology_from": "292.00", "lithology_to": "294.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": "0.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": "moist, ight grey", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 204010}}, {"model": "wells.lithologydescription", "pk": "ff6a6e68-fc46-4f99-a938-2a0e9acccd2b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well_tag_number": 112500, "lithology_from": "160.00", "lithology_to": "230.00", "lithology_raw_data": "CLAY", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199308}}, {"model": "wells.lithologydescription", "pk": "ff6da87c-1867-496d-96b7-d8a646bd0e21", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, "well_tag_number": 112805, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "LOOSE", "lithology_material": "03", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201196}}, {"model": "wells.lithologydescription", "pk": "ff729b08-9c0b-4257-b66b-77a092a9f488", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well_tag_number": 112359, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "@ 65' 4 USgpm", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198223}}, {"model": "wells.lithologydescription", "pk": "ff7c80b8-7757-4595-9ce3-e63d61dd4370", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well_tag_number": 112423, "lithology_from": "610.00", "lithology_to": "612.00", "lithology_raw_data": "SAND", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198653}}, {"model": "wells.lithologydescription", "pk": "ffa05bb5-fbef-49df-9f2f-49efa9fc4d41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, "well_tag_number": 112412, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198549}}, {"model": "wells.lithologydescription", "pk": "ffaaba3f-fcc0-412d-84f2-a7aa5504c644", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well_tag_number": 112400, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": "BR SAND + GRAVEL + COBBLES", "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "W.B.", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 198479}}, {"model": "wells.lithologydescription", "pk": "ffb07b52-f3f0-42b6-80fa-345127f36be4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, "well_tag_number": 112514, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, "lithology_description": "06", "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": "06", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199384}}, {"model": "wells.lithologydescription", "pk": "ffb65afe-afc4-4a66-bdd5-66f400bc7c71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, "well_tag_number": 112487, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD; COMPRESSED GRAVELS", "lithology_description": null, "lithology_colour": "04", "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199199}}, {"model": "wells.lithologydescription", "pk": "ffd4f1a5-70eb-4748-b0c8-7215fc77a3cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, "well_tag_number": 112976, "lithology_from": "15.00", "lithology_to": "42.00", "lithology_raw_data": null, "lithology_description": "33", "lithology_colour": "03", "lithology_hardness": "SOFT", "lithology_material": "13", "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 202311}}, {"model": "wells.lithologydescription", "pk": "ffdb316e-426b-47e5-a6eb-40e0112395e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:48Z", "activity_submission": null, "well_tag_number": 112883, "lithology_from": "454.00", "lithology_to": "500.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": "04", "lithology_hardness": "SOFT", "lithology_material": "05", "water_bearing_estimated_flow": "1.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201784}}, {"model": "wells.lithologydescription", "pk": "ffdbdf65-f099-4fe2-af64-872fb046c1fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well_tag_number": 112573, "lithology_from": "114.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC", "lithology_description": null, "lithology_colour": "14", "lithology_hardness": "HARD", "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "COLOUR=GREEN/GREY", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199800}}, {"model": "wells.lithologydescription", "pk": "ffe1f12d-3e90-4bcc-941a-8111f22604bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T21:02:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, "well_tag_number": 112794, "lithology_from": "27.00", "lithology_to": "30.00", "lithology_raw_data": null, "lithology_description": null, "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": "SAND & CLAY MIX", "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 201143}}, {"model": "wells.lithologydescription", "pk": "ffef34b5-18a4-4961-802a-16232413fe4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well_tag_number": 112534, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "ANGULAR GRAVEL", "lithology_description": null, "lithology_colour": "03", "lithology_hardness": "MEDIUM", "lithology_material": null, "water_bearing_estimated_flow": "10.0000", "water_bearing_estimated_flow_units": "GPM", "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 199554}}, {"model": "wells.lithologydescription", "pk": "fffd9e84-f3bd-4c2a-a45e-89fed98ae4c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, "well_tag_number": 113172, "lithology_from": "440.00", "lithology_to": "442.00", "lithology_raw_data": "Shale, fine SS and siltstone layered", "lithology_description": "47", "lithology_colour": null, "lithology_hardness": null, "lithology_material": null, "water_bearing_estimated_flow": null, "water_bearing_estimated_flow_units": null, "lithology_observation": null, "bedrock_material": null, "bedrock_material_descriptor": null, "lithology_structure": null, "lithology_moisture": null, "surficial_material": null, "secondary_surficial_material": null, "lithology_sequence_number": 203409}}, {"model": "wells.productiondata", "pk": "00834d82-9c89-44d0-be65-aee3c7b67d0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T15:40:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T15:40:18Z", "activity_submission": null, "well": 112638, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "16.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "009a1039-bc1c-428b-a305-aace44e216f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:44:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:44:36Z", "activity_submission": null, "well": 112664, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "01098369-cf86-4471-8fdb-50011330dca1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, "well": 112694, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "012bdd6c-1e77-4679-8c9a-74751dc77638", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T17:19:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, "well": 113115, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "60.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0160c106-4a00-499c-83a3-e1b423eaf50d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, "well": 112491, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "016a0803-8fe1-4358-8481-b90e7e7ab197", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:35:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, "well": 112914, "yield_estimation_method": "BAILING", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": "175.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "01c44c6a-b9ae-414c-b463-2668fd8537fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-17T23:54:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, "well": 112802, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "02274a2e-04a0-4abb-b8cd-d85a74d4bb44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T18:22:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, "well": 112615, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "02388ad7-1c23-455e-8507-d3bbe641b223", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:07:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:04Z", "activity_submission": null, "well": 112447, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "02db91b6-fb35-447a-bbd5-c94f8b2c0dcd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:53:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, "well": 113286, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "37.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "02e347e3-dde0-4d9a-a0d5-e7b2e41f3d43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:27:24Z", "activity_submission": null, "well": 112649, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "032a9362-3bf2-4a26-8519-ffde7908bf53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:28:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, "well": 113058, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "038c6b48-1b43-4dc8-a758-6e02c2c80cef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T21:56:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, "well": 112526, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": "235.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "04151aad-e492-480a-b842-61e85f1df8f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:09:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, "well": 112490, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "04a2524f-66e9-438a-b2c7-5d82f6874eee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:18:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, "well": 112975, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "6.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "04aa1534-cad0-4ade-b50f-a23e9a8446c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T22:39:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, "well": 113026, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "04e2a608-8262-4e03-ad55-dc918856dd2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:19:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, "well": 112729, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "249.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "05782c66-deec-495d-a085-d8876e31e35b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:23:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, "well": 112886, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "39.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "05f0b96b-2e6f-419a-b3a2-aca63ec9bcdb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T19:03:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, "well": 113154, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "75.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "05f5406b-efb8-48f5-845a-325a1646ff02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T19:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, "well": 113145, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "067b8047-3e93-441a-8b45-8dba16acb4ff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:51:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:51:59Z", "activity_submission": null, "well": 112576, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "06ac6dcd-aebb-4a65-b855-6fb2d3b8bc69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2011-09-16T01:22:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2011-09-16T01:22:20Z", "activity_submission": null, "well": 104636, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "06b79dca-8d3e-4c73-8f50-e84a71b0aced", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, "well": 112238, "yield_estimation_method": "BAILING", "yield_estimation_rate": "3.00", "yield_estimation_duration": "0.75", "well_yield_unit": "GPM", "static_level": "249.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "06c3557d-5c73-43c7-96fc-1997f0b113bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, "well": 113067, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "06eb3ee4-b272-43ea-ab3b-a7826febbccd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:08:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, "well": 112826, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "075cc3f3-8447-4e15-bd0f-0729419b0c8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:56:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:56:25Z", "activity_submission": null, "well": 112989, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3004.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "07cb0e8d-4587-4028-9718-99863e97a333", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:00:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, "well": 112429, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "07cc215a-5515-4c53-9e11-45050942d240", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:33:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, "well": 112948, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "8.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": "13.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "07f8affc-4a9a-4db1-a8d9-367ee7d91f86", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:52:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, "well": 112224, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "084be021-9a16-4f80-a591-e46deb82b215", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:05:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, "well": 113259, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "205.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": "176.50", "drawdown": "208.90", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0873e6d7-6ddc-4095-a871-b08ed836205d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, "well": 112331, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0874d323-eb0c-4ca3-95d7-816c7d148c61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:08:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, "well": 112985, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "5.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "58.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "09bf7bb0-ba42-4e04-b5c2-2abc23380917", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T17:57:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, "well": 112426, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0a44e804-738a-48da-940f-3220093fb7f7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T21:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, "well": 100542, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0a7a7788-3110-44cb-ba8d-98f9e5da6b99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:42:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:28Z", "activity_submission": null, "well": 112674, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "3.50", "well_yield_unit": "GPM", "static_level": "7.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0a8c9e7d-ab36-4cf6-9730-3960b8676191", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T21:20:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, "well": 100001, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0ada6f45-78a9-4a2d-8c91-c051d2e4214c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:11:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, "well": 112408, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0af77e00-15b7-4f29-83df-8a8383ca8b5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T22:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T22:11:12Z", "activity_submission": null, "well": 113040, "yield_estimation_method": "OTHER", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "250.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0b1024de-f0be-49f2-8237-7be084106ba4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, "well": 112242, "yield_estimation_method": "BAILING", "yield_estimation_rate": "35.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "63.10", "drawdown": "67.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0b96eb7d-154c-407f-874c-8c0b90fc6583", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:44:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, "well": 113126, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0c5a928a-f2b8-48b7-b8c8-f3618237d6d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:05Z", "activity_submission": null, "well": 112533, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0c79e542-8954-4c1e-8b7d-940779a1b8a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-10-26T18:55:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, "well": 102364, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0c95ef69-4e2c-46a5-9f60-a6eb5b1cb1b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:55:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, "well": 112656, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0d8235d0-b999-43ab-8bc6-985c76a218e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T08:48:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, "well": 112492, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0d9e2f96-6021-4b84-88ef-17872d02d2c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:27:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, "well": 112346, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0dc0b986-b5e8-45a3-9866-b7b76988b3b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:33:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, "well": 112712, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0de7fc2b-13ff-45f9-bdc3-b2a30c98dace", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, "well": 112431, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0deb50e0-c285-499d-af56-de5af117513a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:12:27Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:00:34Z", "activity_submission": null, "well": 112286, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": null, "well_yield_unit": "IGM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0e1b94d1-d4d6-424e-b055-4fa6c16392f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T19:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, "well": 112740, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "210.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0e329625-eb2b-4b93-9e5e-0473af9bb232", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, "well": 112579, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0e3a4331-46e7-40d7-a957-64f09033d327", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-21T18:55:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:48Z", "activity_submission": null, "well": 113043, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0e450216-85d1-494b-828d-7dc7db18bdd6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:17:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, "well": 112571, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0f0ed473-0de8-43c1-a844-6224b9dd53df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:55:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, "well": 112804, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0f2ced56-671d-449a-bb59-68d9cfb3a555", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:14:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:14:53Z", "activity_submission": null, "well": 112690, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0f3611d5-daf6-4410-85ca-db18cd1a20c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:11:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, "well": 112568, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0f83c568-09f7-4fbc-8a13-c3c4425b3e1b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T23:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, "well": 112570, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "6.00", "yield_estimation_duration": "0.25", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": "10.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0f9bfe99-6a60-423f-890c-dfb1a021ae14", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:36:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, "well": 113150, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "8.00", "drawdown": "8.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0fd1ec4b-fde0-4fb9-a652-7ade7a30e764", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T18:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, "well": 113088, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "35.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "0fdb0ff8-d1f1-49c3-a1c7-64e695e5592a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:47:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:47:44Z", "activity_submission": null, "well": 112376, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1074daa4-d3e6-4b03-a765-dcef660e0122", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:29:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, "well": 112450, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "10bca217-bf27-48b1-897d-e91527413e23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, "well": 112824, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "4.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "119ad64c-d2d2-4210-8e36-d894ab82d34f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:34:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:34:52Z", "activity_submission": null, "well": 112516, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "70.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "12c541e5-76a8-448a-ba9d-1751175a444c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-10-05T22:11:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, "well": 113552, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "12d75e7d-2118-4bc2-b28c-614774fc4af1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T18:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, "well": 112624, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "138c2815-315d-4dd3-890e-27aaebca7915", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T20:30:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, "well": 113014, "yield_estimation_method": "PUMPING", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "17.50", "drawdown": "17.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "13d2d121-3686-48a6-93ac-b26794226e2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:20:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, "well": 112604, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "13fc07d8-6c26-4768-a2dc-4ee4c0dd08ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:49:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:33Z", "activity_submission": null, "well": 112240, "yield_estimation_method": "BAILING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "45.00", "drawdown": "85.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "145491bd-0401-4ade-9c94-f317dcf6cef5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:23:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:23:55Z", "activity_submission": null, "well": 112933, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1505bdca-0f16-4c0d-abe6-3dbe754d9dc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T19:15:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, "well": 112668, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": "0.60", "well_yield_unit": "GPM", "static_level": "22.10", "drawdown": "280.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "156be8c8-c769-446e-bf57-2f570026ce99", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:49:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T00:49:28Z", "activity_submission": null, "well": 112658, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1576b1b7-f9ab-4244-b7ac-ce7f6da69b15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:33:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:19Z", "activity_submission": null, "well": 112334, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "100.00", "drawdown": "220.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "15aca4d5-4e07-4267-acd5-ae98660f36aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-07T23:59:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, "well": 112750, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "100.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "160de2e9-cc35-4186-b3d9-30755ba9b8eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:00:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:21Z", "activity_submission": null, "well": 112825, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "16384310-f478-4873-a114-5698959a304f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:33:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, "well": 112226, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1679775e-66d2-4ac5-91dc-60b35ea24576", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:20:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, "well": 112910, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "75.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1692018f-ab10-400f-8a2b-9fe3048c3c60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:21:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, "well": 112632, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "17d1f915-aff6-4688-b761-23b937479bee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T00:16:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, "well": 112706, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "18512dee-ebd5-46ca-85da-10a99f33decc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:48:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, "well": 112757, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "186aa1fb-7804-4ed9-a2ed-9ee3222bea47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:52:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, "well": 112534, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "18a419e7-dc47-40e9-bd3e-fb020f837d25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:27:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, "well": 112976, "yield_estimation_method": "BAILING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": "14.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "195f8791-49e6-408f-8aa1-afbc9b180391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:53:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, "well": 112903, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1976f073-0c7b-4ca3-9b91-2403e471eca5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:34Z", "activity_submission": null, "well": 113278, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "39.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "199053f6-81f5-49e6-9863-914c57ac24bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:25:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, "well": 112581, "yield_estimation_method": "PUMPING", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "19f01fee-97fc-41d5-bc78-c4457d791bc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-17T16:22:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:02Z", "activity_submission": null, "well": 113033, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "60.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "9.00", "drawdown": "9.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "19fdc7f6-fe5b-43f7-ab77-581a45603349", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, "well": 112582, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "19fe4cc2-2f78-449f-af70-f6c7f36e578e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:50:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, "well": 112611, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1a10228f-4a33-4d0f-b631-3887f652aac5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:31:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, "well": 112834, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "68.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1a290a63-3128-4baa-9fea-badfec550679", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, "well": 112927, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "14.00", "drawdown": "14.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1aa9a8ac-0956-45a6-afad-c4ba9f5deb1c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T20:00:59Z", "update_user": "PROXY_WELLS", "update_date": "2017-02-14T20:27:16Z", "activity_submission": null, "well": 112797, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "74.50", "yield_estimation_duration": "3.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1b0a0d1f-e3cb-4524-bcea-edc9f1569e43", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:39:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, "well": 112865, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "93.00", "drawdown": "117.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1b3b64d8-d485-4231-a2e0-d25bbe4cd8be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:32:10Z", "activity_submission": null, "well": 112360, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "100.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1b4b482d-d3f0-40d1-9afd-a78f98a25799", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:47:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, "well": 112784, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1b918106-f425-4a69-864c-935329f02891", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:38:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, "well": 113127, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1ba2215b-a046-4eab-9821-257fe69004d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T21:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T21:51:57Z", "activity_submission": null, "well": 113266, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "13.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1c30ddc5-dd51-4a9d-ae7b-6db43fdb21e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:28:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, "well": 112402, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1cc8a68a-321e-421b-9438-6c2e5a4e6eeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:24:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, "well": 112381, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1d005bae-ac8b-4a0e-a13d-715d8bb0d483", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-08T16:46:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, "well": 113174, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "8.50", "well_yield_unit": "GPM", "static_level": "24.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1d1b3c2f-2ab1-4b2b-838d-58e7eae6df59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:20:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:20:43Z", "activity_submission": null, "well": 112358, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "70.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1d6c60c5-5b38-4de8-8e35-3ff2706b615c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:42:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:42:35Z", "activity_submission": null, "well": 112635, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1d87f552-5caf-4af5-85f7-a9ced73bf2d9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-17T19:38:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, "well": 113123, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1dcffc8e-5e1f-401e-861a-99409fdf6393", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:30:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, "well": 113190, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1e0507d7-394f-4260-b523-dbe1079772ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:21Z", "activity_submission": null, "well": 113128, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1e3dbc36-5805-4ec9-88b5-4f3e9d1fd730", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T18:22:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, "well": 112532, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "80.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1e8f83f4-881d-4d3f-8fcc-0192623ec0af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, "well": 112863, "yield_estimation_method": "PUMPING", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1f4143d4-b37a-4239-9314-8c5d726bfa29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T05:13:15Z", "activity_submission": null, "well": 112777, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1faf4c62-446d-4764-9918-66165fb63d9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:05:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, "well": 112276, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "1fc58972-0841-4903-a478-c0bd8c9759de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T18:00:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T18:00:21Z", "activity_submission": null, "well": 113244, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "48.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "202ae921-bc1d-4173-bb03-e512e09f6c5a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:48:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, "well": 112320, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "11.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "59.00", "drawdown": "180.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "207916a9-6b79-4b31-8847-7fe885a4134d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:57:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, "well": 112292, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "207a4638-a490-4c57-b51a-4580c4492861", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T17:55:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, "well": 113177, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "20a0c863-cb3a-49d4-8e48-c537799db701", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-21T18:53:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, "well": 112518, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "20af22e1-46cf-4e6e-a764-dfaad7b1638c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:57:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, "well": 112961, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "37.50", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "14.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "20f5ea64-e928-4854-b8af-95e824973afe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T13:46:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, "well": 112544, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "20f79839-3dae-45b7-88b9-d257f4d042ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T17:20:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, "well": 113304, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "44.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "212fa509-f1f8-4235-976a-0538e374fbe6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, "well": 112441, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "216963b3-08c1-4fdd-8da4-852e5d8825e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:13:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, "well": 112990, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "11.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": "52.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "21ba0760-3470-4425-b001-68f21f2bee8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:35:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:35:31Z", "activity_submission": null, "well": 112875, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "13.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "22322dfe-58e2-4c21-a018-e6ae1aa20059", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-09T21:42:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, "well": 110750, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "14.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2288b259-2a92-40d8-b6a3-f6c3e2742fa5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:34:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, "well": 112386, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "229cb62b-68de-43a3-9647-173d08b30442", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, "well": 112815, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "22ff5912-2228-4c8b-b7ba-19b4d1fd40d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:13:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:13:44Z", "activity_submission": null, "well": 112648, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "23276c4b-6840-4c0e-a7a7-f6205d817a29", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T16:17:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, "well": 112819, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "17.00", "drawdown": "17.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "232b81c3-0f9e-4b81-a82d-fe276fce60f8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T16:55:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, "well": 112511, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "23cac2e6-938d-4c24-ba13-b6bfc8b83d65", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:19:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, "well": 113204, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "138.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "23f5b4d4-8685-4826-a848-1a22629bb4b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T22:11:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, "well": 113093, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "24465d8d-9572-4440-acb0-32a6b66ab4f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:15:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, "well": 113289, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.90", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "24680c8c-a400-44a6-9ec3-ebbb1d067b2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:46:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, "well": 112888, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "24d67e94-a577-4e1e-a658-9ae4e3605757", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:29:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, "well": 113189, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "24ea8d4f-7736-4c25-9ccb-a854b11a7d31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-13T21:03:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, "well": 113032, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "175.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "20.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2504de9e-2609-45b9-8ed1-816b347aed0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-23T19:56:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, "well": 112813, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2539e5c4-5f1c-4166-bf25-d345e822ba0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:40:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, "well": 112597, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2577dcef-c4dc-4130-9a6a-885dcc064e53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:01:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:00Z", "activity_submission": null, "well": 112355, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "89.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "26375538-2681-447f-841b-70b837a7c940", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:11:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, "well": 112853, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "26fa50e5-a0c2-47ea-8b36-3e5a8f733c35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T23:17:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, "well": 112655, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "27bc6dbd-0652-4fa4-ab06-d8cc29d12965", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:23:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, "well": 113133, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "27cce3f0-1cf7-44cc-a021-0e6f9eee0f6e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T02:19:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, "well": 112762, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "27d22fb2-45dc-4227-9750-e88554b398b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T22:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, "well": 112717, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "75.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "17.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2811bdb2-e426-4f53-b6c4-185c48a754e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, "well": 112484, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "28304658-ea42-40b3-88bc-1950f8ca40d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:01:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:50Z", "activity_submission": null, "well": 112350, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "80.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "284b7263-58f1-49c3-89d1-a04ad607967e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T22:29:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, "well": 113112, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "295060b1-3940-48ab-9896-bbaca3919933", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:22:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:32Z", "activity_submission": null, "well": 112727, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "299e4408-75b3-415d-b9a6-99a08ad0a208", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:30:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:44Z", "activity_submission": null, "well": 112465, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "29cdeb66-8409-4749-96ab-107a8e12a184", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:53:09Z", "activity_submission": null, "well": 112263, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "12.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "6.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2a52eb55-f057-47aa-afd3-1c2a87e21f66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, "well": 113291, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2b1ff7f7-b4c0-4936-b345-933751cbba90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:32:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, "well": 112236, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2b429748-272c-46a3-b840-f6e2895d8f9f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T17:47:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, "well": 113290, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2c4cc318-6ae5-4915-8cf6-b7c7438d564c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:12Z", "activity_submission": null, "well": 112387, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2c5c8929-b661-4dea-9e67-1daec9f8050a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, "well": 112594, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2c776f59-8299-4c5f-8a1c-fd4d60bb0c03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:22:30Z", "activity_submission": null, "well": 112715, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2c7e0adc-2f68-47f5-88fa-eaef994d7156", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T19:04:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:04:38Z", "activity_submission": null, "well": 112580, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2c81b47a-39f8-4f71-a1b9-dc09997da8d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:22Z", "activity_submission": null, "well": 113263, "yield_estimation_method": "BAILING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2ca42f1d-8b58-4f24-9cae-3dfa03663b45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:55:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, "well": 112980, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "12.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "8.20", "drawdown": "15.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2ca9f51d-6087-4292-b71b-855b7bc0ca25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:59:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, "well": 112952, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "110.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "36.40", "drawdown": "48.60", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2cd150d0-790f-4134-acb1-573ac2904afa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T23:59:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-01T23:59:30Z", "activity_submission": null, "well": 113086, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2d4c8a62-4cdb-4c2c-9b20-f2adcbb10559", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-15T21:03:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, "well": 113116, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2d7596c8-9819-41db-8065-558b9417ce98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:32:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, "well": 112683, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.25", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2d827754-8291-4478-97e3-9cee83cdc80c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T21:09:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, "well": 112742, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": "41.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2dd17779-c61a-4216-88c8-a46be1352894", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:18:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:16Z", "activity_submission": null, "well": 112290, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2de1164f-6cc8-4f7c-9aaa-7439b63701d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T22:37:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-01T22:37:13Z", "activity_submission": null, "well": 113085, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2de3fdcd-390a-41a8-b9da-052ebd79adfb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:52:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, "well": 113306, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2e230a7f-b97e-4cf5-ac0c-47d4bd3b3b79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:55:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, "well": 113136, "yield_estimation_method": "BAILING", "yield_estimation_rate": "25.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2e7e6bc1-304a-42b3-b104-c4768ec2d9a2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:35:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, "well": 112314, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "37.00", "drawdown": "275.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2ea800ba-3588-42c1-a8cc-3f3fa2cf73e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:10:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, "well": 112448, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2f20e360-0649-43ec-898a-98561cbff72f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:40:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, "well": 112574, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "5.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2f9018c7-219f-4486-8623-a194738cc602", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:18:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, "well": 112621, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "600.00", "yield_estimation_duration": "8.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2fce233b-52ab-4047-9cef-b26c3d0d6ea3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T17:46:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, "well": 112867, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "0.25", "well_yield_unit": "GPM", "static_level": "6.50", "drawdown": "10.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "2feb8cc8-bb03-4c2c-9ca3-e5c06874a970", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:02:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, "well": 112343, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3023a532-2338-4f8f-8853-0ddc7bf934e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T18:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, "well": 112644, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "302ff640-8f41-4037-8b02-7a221adfbabf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-09-28T17:04:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, "well": 113503, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "18.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "303b4c1e-336e-4018-bb06-a94fa8a28f40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-19T20:46:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, "well": 113039, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "30c15a1d-65d9-4f41-b10b-2762acad08be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:13:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, "well": 112357, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "317d4390-56e4-4c3a-8151-df9a4a9f9a7d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:03:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, "well": 112994, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "6.00", "well_yield_unit": "GPM", "static_level": "75.00", "drawdown": "255.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "32630c1e-93d9-44fc-8602-00b04f57fc84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:21:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, "well": 112341, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "327cb0cd-a67c-4e72-b2e6-07a1686c5289", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:21:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, "well": 112411, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "38.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "32901ded-8892-4638-b206-6392e00b50e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:52:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, "well": 112907, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "329230f3-e9a7-4dff-9b34-14719e284291", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:42:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, "well": 112459, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "32da4fc5-a7bb-436d-9faa-1af0f7da5db9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:26:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:26:00Z", "activity_submission": null, "well": 112265, "yield_estimation_method": "PUMPING", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "13.00", "drawdown": "18.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3364219b-f55f-4e4c-8598-567567cd052b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T19:13:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, "well": 112836, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "50.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "339ab6f6-8f81-4542-b730-458d0d52c90e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:06:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, "well": 112744, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "53.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "34482d9e-04cc-4ab1-947c-b2e377093e38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T20:12:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:12:59Z", "activity_submission": null, "well": 112515, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "346521a4-268f-4344-a021-54e71ed3ba6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:03:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:04Z", "activity_submission": null, "well": 112296, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "349e3e9b-326c-4fca-9368-defab25b3b6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:16:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, "well": 112279, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "18.00", "well_yield_unit": "GPM", "static_level": "2.00", "drawdown": "24.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "34f5c361-4d2d-40cb-968f-10c1165f91f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, "well": 112227, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "354db9f9-4d48-425d-be38-317540a38982", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, "well": 113079, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "35520fcb-5608-4da5-b626-5942cb2d9184", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T22:36:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:56Z", "activity_submission": null, "well": 112527, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "294.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "35662295-a975-4f2e-b36b-6f7feab137da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, "well": 112230, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "35736293-ab6e-458e-b2fb-284cd09c5e79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, "well": 112957, "yield_estimation_method": "BAILING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "5.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "35936245-c87b-4cd9-9d01-2241d0e09d71", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:55:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, "well": 112685, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "359ece30-5c7e-4db3-bbcc-66b782b28c2d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:13:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, "well": 112879, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "168.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "360f7acc-5925-478d-9be5-5370011d632f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:51:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, "well": 112929, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3625615c-309a-40f9-b386-82ae11f8600f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:28:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, "well": 112780, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "363f4430-ff76-43a4-b395-0675549c1fa5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:19:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, "well": 112485, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "368146b9-4cd4-4254-98fa-0e87ed264a53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, "well": 112684, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "371779eb-05ed-4422-b9f1-0120167d4afa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T15:46:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, "well": 113299, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "37355d72-7df7-4519-8675-993d4fc3e540", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, "well": 112984, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "18.50", "drawdown": "18.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "37594827-c94d-40f7-88e3-b5c32bb3d20b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-26T21:23:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-26T21:23:56Z", "activity_submission": null, "well": 113073, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "375d08fe-40f6-4af1-8cf4-dad4cbc1f16e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:44:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, "well": 112876, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "18.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "61.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "37a24b60-bfdd-4488-9f54-a1d60442d647", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T12:50:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T12:50:57Z", "activity_submission": null, "well": 113124, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "200.00", "yield_estimation_duration": "33.00", "well_yield_unit": "GPM", "static_level": "520.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3807e879-7f0e-4193-8d17-0c4e60f9a41a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:02:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, "well": 112393, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "38.08", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "384cd2d7-abe1-48b7-a037-55d0842c66af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T21:01:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, "well": 112831, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "38b675f3-33b3-4449-a002-e4cf0c63a117", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:40:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:40:19Z", "activity_submission": null, "well": 112375, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "394c91f0-c1e9-4350-9633-4a95121b54ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, "well": 112255, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "100.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "396bf065-d683-41f0-9850-5ec13d811db2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, "well": 112734, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "150.00", "yield_estimation_duration": "8.50", "well_yield_unit": "GPM", "static_level": "43.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "39b9e969-9fb5-4c0a-a909-43978999fdb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:31:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, "well": 113070, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "39fd4d24-b5bc-418f-bded-c355853581a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:16:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, "well": 112542, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3a6cce10-fa04-420a-8d4c-b877590659d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-23T23:16:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, "well": 100127, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3a8177fe-d883-47d3-9abb-3d51952d7729", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T23:06:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, "well": 112229, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3abe680a-02b7-4b26-a97f-53c9481b5eda", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, "well": 112380, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3ae5e430-dbf2-4277-b87d-21c0159c9aef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, "well": 112401, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "6.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3b05b06e-ca43-4802-931b-e00181d0fe4a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T22:14:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, "well": 112743, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3b1f0c22-95b6-4c13-aa98-6747686a991d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-01T16:27:16Z", "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:27:16Z", "activity_submission": null, "well": 104533, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "200.00", "yield_estimation_duration": "3.00", "well_yield_unit": "USGPM", "static_level": "0.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3b5047ae-d17a-4621-b0e4-59b045871ee1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T01:22:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, "well": 112675, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "85.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3b621d58-3322-4fab-bb28-6c6b84f74ff5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T20:09:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, "well": 112803, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3be53e6b-eadf-4e5f-a4d8-47b6662f534b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:41:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, "well": 112992, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "0.75", "well_yield_unit": "GPM", "static_level": "15.00", "drawdown": "90.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3bf3360c-eb77-491e-b421-77b702d74cde", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:04:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, "well": 113030, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3bffbe06-4885-4ee4-8fdd-f9fe98487ba0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, "well": 112916, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "300.00", "yield_estimation_duration": "12.00", "well_yield_unit": "GPM", "static_level": "55.66", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3c1430ea-d977-4b76-adcc-88bf2ed077ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:05:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, "well": 113056, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3c28ea38-0bf9-47f6-a789-3dde50ec3e79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:04:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, "well": 112439, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3c6b5a97-7737-4b0a-99f3-fd9d98d023b5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:50:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, "well": 112746, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3c75e86f-d2c8-4663-86ef-5acdbd8bf3ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T22:25:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, "well": 112726, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.25", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "189.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3cab6f22-8847-41c9-be5f-cc7cdfde205d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:25:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:25:26Z", "activity_submission": null, "well": 113148, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3cb23822-bbf1-47df-9d3b-a853a82afcff", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:08:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, "well": 113254, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3cc37cbb-fd8b-4a92-a456-af6c09b3c1e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:05:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, "well": 112335, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "16.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "25.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3cd8c8d8-8dcb-4002-a316-deedc9b016d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:52:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, "well": 112349, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3d7b5cc3-9b52-4925-8e76-91348e505e4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:37:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, "well": 113243, "yield_estimation_method": "BAILING", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": "38.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3deec7fc-a321-48e7-9a10-94c4b4e82f40", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:34:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, "well": 112870, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3e6fa623-43ee-4730-9215-b4c572d1e55c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, "well": 112662, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3f19251d-253a-4cd4-aef8-abe7b48186e5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:42:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, "well": 113284, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "35.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3f291fb0-dc9e-4da9-918c-cea8d057dfe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:11:05Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:01:24Z", "activity_submission": null, "well": 112305, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": null, "well_yield_unit": "IGM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "3fa6e163-9dcb-42e4-bfa6-8663f4bb497a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T20:23:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, "well": 113082, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "400fe635-a8fe-4af3-b61a-84e2fc4eb025", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:37:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, "well": 112451, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "404b8244-f3fe-4595-8688-8f793f13d404", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, "well": 112489, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4055273f-f2c3-44ce-92a6-d0dbf4d0e454", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T01:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, "well": 112761, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "410c9ed0-9c0e-4e27-8c0e-7a8bcff3baf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:06:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, "well": 112259, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "160.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "9.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "411242d0-36d5-42fa-8b44-ec3e6b9042c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:30:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:30:45Z", "activity_submission": null, "well": 112934, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4132a862-2acc-4b01-8034-9ff6c7740a91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:30:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:37Z", "activity_submission": null, "well": 113023, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "41ecf89d-d42d-41c1-bf51-cdf9d231414a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T20:00:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, "well": 113025, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "423db981-8fbb-43f1-888a-bb615d9943b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T16:02:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:37Z", "activity_submission": null, "well": 112522, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "50.00", "yield_estimation_duration": "0.25", "well_yield_unit": "GPM", "static_level": "5.00", "drawdown": "5.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "42740764-492c-495a-a412-0d5d5ac1d894", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, "well": 112864, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "53.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "428306b0-1ba7-404c-a5e6-0a10733d6666", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:09:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, "well": 112462, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "42f8cf0c-b018-431a-8c20-7e047110f226", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T19:05:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, "well": 112768, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "330.00", "yield_estimation_duration": "72.00", "well_yield_unit": "GPM", "static_level": "181.70", "drawdown": "924.60", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4302a680-2342-4dbc-bb3e-831fafb2605a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T22:26:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, "well": 112707, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "29.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "43d00483-2133-483e-a684-2692d00cb3e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-05T21:08:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:54Z", "activity_submission": null, "well": 113004, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "40.00", "drawdown": "283.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "43e08ff8-0de2-4a68-8c30-d2badf375aa6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:27:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, "well": 112965, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "35.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "10.10", "drawdown": "11.20", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "442efb5b-5fb7-4e86-b02a-f3f4e135d410", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T04:45:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, "well": 112253, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "22.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "8.00", "drawdown": "10.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "44701792-d32f-4e7c-b422-d97c9c55164a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:06:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, "well": 112549, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "447eb332-c551-4b6a-93f2-5159b76651a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:46:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, "well": 113140, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "0.33", "yield_estimation_duration": "168.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "44ede143-fd7e-4aa8-9637-f6cbf6029ee5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T21:24:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:24:08Z", "activity_submission": null, "well": 112691, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "45190a7e-625f-49e4-906a-09edf588d1b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:22:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, "well": 112561, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "45240fd3-761c-484d-a607-48c173a1ab9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:30:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:31Z", "activity_submission": null, "well": 112977, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "458d49db-ec68-47ca-b798-691c7f71a770", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:55:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, "well": 112812, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "550.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": "311.50", "drawdown": "341.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "45f82770-135a-4f80-a6ed-9227ccb178e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:16:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, "well": 112986, "yield_estimation_method": "BAILING", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "11.80", "drawdown": "13.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "46273800-67c7-4795-8192-c8768602cb23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:14:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, "well": 113213, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "463a79b1-aaca-4045-ba9b-c80763f14c9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:44:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, "well": 112499, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4650c2b9-e63e-441f-b97c-1183eb124851", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:54:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, "well": 112398, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "46709145-c11d-4f4a-a299-f35d11ca3d2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-03T22:18:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, "well": 113003, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "47244231-f5bd-4dcc-ba06-95f34bb89cc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:09:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, "well": 112565, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "47e49792-7eea-4eb3-9332-ba911aea7bae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:09:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, "well": 112469, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "48008ccf-b496-48a9-a66c-8160802662fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:08:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, "well": 112497, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "480af2ae-261f-4deb-a4cb-6125498cc2ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, "well": 112471, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "480f33a9-478d-4f8c-9332-c7ca1ab92f59", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:39:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, "well": 112949, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "6.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "8.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "48816250-9265-4fd2-9cdf-234beae5ff5d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T19:29:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, "well": 112505, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "490dfbb2-c8db-45f6-a6fd-e2a4c9ee20da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T22:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T22:34:14Z", "activity_submission": null, "well": 113146, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "10.00", "well_yield_unit": "GPM", "static_level": "140.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "49159d86-8aa5-4223-84e9-a0ffebe8078b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-21T21:07:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, "well": 112849, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "75.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "9.00", "drawdown": "9.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "49260e86-300a-4513-b641-0fd89bca347e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-09-20T05:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, "well": 111752, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "49879b9e-8b2a-4b43-86fc-b594ea135524", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:32:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, "well": 112367, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4a666f71-00e1-4acd-9ca0-f913126b25bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T17:55:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:28Z", "activity_submission": null, "well": 112504, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "150.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4a6e5022-5027-4010-9983-5af76a0f404b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T18:15:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:32Z", "activity_submission": null, "well": 113305, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "40.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4ab05cc2-e854-435a-a64e-f022133fdc0a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, "well": 112785, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4b048b45-1747-4eb3-b25a-72b79c8fd2f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:59:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, "well": 112434, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4b0e651c-4502-49d1-a604-568a16b5579f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:39:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, "well": 112962, "yield_estimation_method": "BAILING", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "64.00", "drawdown": "68.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4b143c30-e761-4981-b409-ceb633327b7a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:43:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-30T14:43:15Z", "activity_submission": null, "well": 112999, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1000.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4b514f62-ce97-40b6-bf83-aacb5813f9f9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, "well": 112220, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4b7a6102-b3e6-4efa-83ee-d140187e14e9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:23:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, "well": 112754, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4bc2d68c-4e63-4ef1-9f31-a86174908111", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:22:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:22:00Z", "activity_submission": null, "well": 112679, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4bfb6862-1846-4e2c-ba81-1c1523b6a2e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:58:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, "well": 112326, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4c610a1c-066e-48d6-b135-fb0cc379189a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:34:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:34:02Z", "activity_submission": null, "well": 113080, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "3.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": "24.00", "drawdown": "24.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4c86aa03-b90e-4dd4-908e-37534495e869", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, "well": 113206, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "35.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4c99b51b-a724-4ae3-be49-91afd8a91f55", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, "well": 113181, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "35.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "85.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4d0018f8-0311-432e-8aa2-bb676f0560af", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, "well": 112494, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4d1ad6e4-adeb-4425-90e1-59f1a7b4662d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:44:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, "well": 113212, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4d1de564-a1d4-4f33-b26e-2e53fae76f4f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:39:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:39:35Z", "activity_submission": null, "well": 112789, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4d70a8b7-e634-4897-9d01-95abcdf40f39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:13:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, "well": 112430, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4d95cf25-23ef-42bd-a2c0-0fe6dd8bfacb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, "well": 112432, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4e68d3c7-4f45-4044-a0cd-b1626625184e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:14:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, "well": 112714, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4eb01df0-caad-43d5-8fd0-26b5e7bc61ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:13:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, "well": 112844, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4ec6f3b9-817f-47c3-905e-1f49a985cf4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T21:22:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, "well": 112539, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4ee83c0d-18b3-4c00-bbb6-9728a4b91571", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T22:44:26Z", "update_user": "PROXY_WELLS", "update_date": "2017-08-02T19:34:44Z", "activity_submission": null, "well": 113172, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4f26afad-78f1-4e69-803b-9f9593960f69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:54:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, "well": 112552, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4fd51900-dc01-4465-8685-1d812f9b3e6f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:57:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, "well": 112354, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "4fe817af-8533-4840-861f-4250129d8ba8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:06:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, "well": 100500, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "75.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "501037cd-495e-452b-a2f8-44e8dfb99285", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:27:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, "well": 112609, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "50e152f3-4284-4213-848e-1f7b8a771c9b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-24T19:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, "well": 100200, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "510db9f5-e8b8-4033-a712-5e9029555f66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T17:04:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, "well": 112310, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "11.00", "drawdown": "11.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "511bff05-9941-4a34-80bd-2e34c5657101", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:52:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, "well": 112858, "yield_estimation_method": "OTHER", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "112.80", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "515ab938-0e9d-408d-b819-b78499da025b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:00:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, "well": 112782, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "516157d0-0508-4254-8e46-3486e3171180", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T22:05:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, "well": 112540, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5184e6f2-f0d2-4468-a684-15ceb41e4732", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T22:41:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, "well": 113260, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "51e77374-acc3-4003-b4d3-6c9143221400", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, "well": 112713, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "52428f97-4067-43f0-b107-19fc611ea28f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:51:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, "well": 112437, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5242ee1e-57ba-4822-b8ca-40d5449a8d9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, "well": 112417, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "52ad76fd-a58f-4ad5-b807-1cf5cad9f617", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T17:49:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, "well": 112289, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "52b9f4cf-6cc4-4eab-977c-98d504dea027", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, "well": 113135, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "52d2ae67-5b62-4536-8a85-37f4b13763ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:58:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, "well": 112460, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "52dd79db-8caf-4a11-9856-37608767d1de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T18:57:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, "well": 113293, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "17.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "531c6546-24f7-45c7-b6ea-bd316f15f9c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T06:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, "well": 112573, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5358a0ce-88dd-4bfe-9d3f-7de55bd2fcc8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:31:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-30T14:31:18Z", "activity_submission": null, "well": 112997, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1000.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "53bf783f-e80a-4035-b1fe-9fe9615de8ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T19:24:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:13Z", "activity_submission": null, "well": 113211, "yield_estimation_method": "BAILING", "yield_estimation_rate": "2.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5404d2fe-2fcb-4d17-805e-3510d7166a95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:11:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, "well": 112311, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "540bd230-8580-4752-9bba-9f2184ab4954", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T16:09:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, "well": 112282, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5436ec71-89d9-4e11-96c6-ac935354f6a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:28:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, "well": 112419, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "544872ca-9f59-4359-a028-674453d818df", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:26:22Z", "activity_submission": null, "well": 112787, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "547a215a-0673-4e8f-bf97-61c785cc24e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T16:45:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, "well": 112823, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "54adfd10-2c4e-4e5f-952e-10fa9a5a4c22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:11:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, "well": 112338, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "563379fd-0d9e-4e7d-a058-6ff0919e9a3a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T05:36:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, "well": 112306, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "320.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "565f0e1a-de5f-4804-b94d-aed7f7724f7b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T17:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, "well": 112795, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "350.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": "40.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "56a84e36-f898-487a-a361-3fbe9e39e1a7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:07:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:07:36Z", "activity_submission": null, "well": 112931, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": "21.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "56e43a23-9600-4181-9e6a-cde1c67ed4f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T06:08:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, "well": 112385, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "570d0845-3dfe-43b3-893c-744f9643a84c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, "well": 113117, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "571197f6-5dc3-4cc5-8711-9dd22a545a03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-23T17:05:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, "well": 113144, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "180.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "571208da-13fa-4f48-969e-050f0bea1ab7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:40:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, "well": 113010, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "571b57ec-fd93-4fef-b766-4f7114ebcb07", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:54:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, "well": 112993, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "17.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": "120.00", "drawdown": "400.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5779a1d5-4265-4158-adda-2dab54c00b52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:40:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, "well": 112605, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "57ede0d5-6d31-4bb2-9b34-1bc107235bd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T16:48:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, "well": 113185, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "63.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "58b0547a-4b08-4850-b33e-c5fec9c2bc68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:54:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, "well": 112739, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "12.60", "drawdown": "12.82", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "58cd4687-0d9b-4500-b97f-20dd7db28532", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T00:20:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, "well": 112473, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "599f7abb-e785-4b76-a777-5e9847dda966", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T22:14:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, "well": 112313, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "40.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5a01331e-0536-49f5-b843-9b7b3c596984", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:25:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, "well": 112805, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5a3b2a2e-46da-403b-9ec6-904134870e6c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:43:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, "well": 112258, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "50.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5a4057ae-321a-4584-a6df-8144804c298c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:37:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, "well": 112725, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "4.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5aa19422-fee8-4f1e-bfc3-c8dca707e87a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:56:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, "well": 113142, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5ae3bf92-90b5-4397-8e70-acf434072057", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:41:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:37Z", "activity_submission": null, "well": 112704, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "16.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5ae4f9fb-6588-4f72-b4fd-955aab76f9ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:04:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, "well": 112474, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5afc533c-dda2-4b51-951a-171459ad498c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:12:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, "well": 112921, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "2.00", "drawdown": "145.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5b91ca36-c4ee-42ca-b221-468ebe629000", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T19:34:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, "well": 112433, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5be04ec7-9cad-4cdd-9c80-459ccf60d851", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:16:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:16:06Z", "activity_submission": null, "well": 112932, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "26.90", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5c298602-7e94-4b21-857b-5631fb81cef8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-25T16:08:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, "well": 113153, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "3.00", "drawdown": "3.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5c64865f-8eb4-4271-bbe3-e5d52b93f8b9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:17:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, "well": 112457, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5cb220ed-9906-4a07-94ec-d9b6cc6fc6e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, "well": 113246, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "170.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "14.00", "drawdown": "16.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5d514ec9-2850-4c39-bbc7-14062faf7602", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:39:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, "well": 112412, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "63.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5d7745fd-b5d5-4374-9146-34de012490f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:36:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, "well": 112414, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5df4b330-dad1-4248-b73e-45131fcdd3d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T21:03:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T21:03:43Z", "activity_submission": null, "well": 112619, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "65.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5e62a9d2-ff8c-4530-b73f-2122afaf9611", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T18:55:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T18:55:27Z", "activity_submission": null, "well": 112767, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5e9ef8e9-8356-45f7-8fe0-214dcb40967d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:06:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, "well": 112900, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "7.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5eea633e-65eb-42ed-87bf-06df1d36b331", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-02T20:01:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, "well": 112741, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "7.00", "well_yield_unit": "GPM", "static_level": "130.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5f3c5818-db2c-49b2-8579-ac3790c32e67", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:19:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, "well": 112583, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "5f964cb0-fff9-49bd-a703-1d32b310b772", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T22:31:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, "well": 112748, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.25", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "299.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6018174f-13ee-407e-8d11-3f28b2f1f620", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:37:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, "well": 113302, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6053f5d2-f4c9-4aab-abdc-4886a1916e0f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:07:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, "well": 112399, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "605d5743-b2c0-4ef9-a8d0-90be6006cb56", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:31:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, "well": 112887, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "607b5b49-2990-4dbf-93c3-8121b10917f6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:15:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, "well": 112971, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "60.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "12.40", "drawdown": "16.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6102a520-fd41-4ab2-bc7c-f9105fb12a54", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-29T18:00:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, "well": 113155, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "62b6c2f9-4278-4455-b55e-e80cbb594877", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T16:52:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, "well": 112963, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "62c648e9-5375-450c-b9a0-c8afd5c04f1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T17:04:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, "well": 112759, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "62fa6106-f97f-4144-b12a-b84a016a5602", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:56:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, "well": 112764, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "634cddb1-6d3b-4cdb-9355-e3bd574ab605", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:39:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:34Z", "activity_submission": null, "well": 112443, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "63a1fd60-5b44-493c-92d9-27cf7189af37", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:00:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, "well": 112696, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "63a4bb33-9ad6-4fd2-b369-6bffb5e68db3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:48:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, "well": 112968, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "12.60", "drawdown": "13.20", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "63eca40b-4c7e-4dc9-94fd-6fefc3a4ada5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T17:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, "well": 112264, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "12.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "87.00", "drawdown": "92.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6414e9d2-82e2-4f25-bb39-c497096ebea3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:13:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, "well": 112324, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "180.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "64748291-e3ed-4645-be4b-39a8a1fc7cd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:42:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:42:54Z", "activity_submission": null, "well": 112650, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6482023b-f0f6-484c-8e63-d5ad6cf850e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T18:06:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:39Z", "activity_submission": null, "well": 112578, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6493dfff-535f-4e83-bef0-ba2c525b3fe8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T18:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, "well": 112513, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "97.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6493f95c-6608-4dd5-a688-18b20b026c02", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:55:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:23Z", "activity_submission": null, "well": 112487, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "64c73084-87aa-4df3-ac2a-f075c18db740", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, "well": 112406, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "35.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "65421b24-d3d7-4678-959d-4e9cf639e399", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T19:54:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T19:54:04Z", "activity_submission": null, "well": 113275, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "35.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6595fb39-71df-4deb-8caa-a7a975af63ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T22:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, "well": 112339, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "659c9135-3695-4029-a59c-d511b07b0459", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:31:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, "well": 112939, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "65a23965-2f4a-4043-873a-43cdb306a6b4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:17:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, "well": 112546, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.25", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "65ad04ea-4385-4200-9c21-2926c70dbe4a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T01:19:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, "well": 112771, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "147.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "65b9fa36-dd33-44ae-9835-9c9a30258eb1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:39:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, "well": 112262, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "6.00", "well_yield_unit": "GPM", "static_level": "8.00", "drawdown": "9.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "65c80519-a038-4927-a808-a8d4d2a33e2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T20:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, "well": 112394, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "65f9f3f3-65cb-4bd2-a5c1-d08561a5682b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T17:33:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, "well": 113017, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "66211768-8ee2-4295-a565-51796bffc41a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:43:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:43:53Z", "activity_submission": null, "well": 112641, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "24.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "664b6ee9-ed8e-47d1-9b83-db1d564a1ab3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:47:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, "well": 112871, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.63", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "66a4be48-0bd7-4a90-98af-569c6f00b11e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:33:00Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-03T13:26:06Z", "activity_submission": null, "well": 113279, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "500.00", "yield_estimation_duration": "11.50", "well_yield_unit": "GPM", "static_level": "7.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "66b2b411-89c4-435c-a56a-185a8586ddf1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:39:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, "well": 112308, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "11.00", "drawdown": "115.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "66cf1b79-2a54-4145-8720-1507e2f2ae05", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T03:11:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, "well": 112237, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "24.50", "well_yield_unit": "GPM", "static_level": "120.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6767492c-d492-48e1-91b4-ffd2ff55c550", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T18:52:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T18:52:11Z", "activity_submission": null, "well": 112820, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "677047c3-8e67-4d9f-86c3-0c89b6f72344", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T19:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, "well": 112333, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "84.00", "drawdown": "96.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "67871e74-448f-4827-ba81-f4b23d098fb5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, "well": 112362, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "678f06ab-c805-45ad-94fa-55a50f21c3c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:33:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, "well": 112703, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "67d22f02-c3cb-4ee4-a503-0202b836f126", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:56:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, "well": 112251, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "65.50", "drawdown": "70.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "682ec7a8-e39d-458f-828f-f39342873ed5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-22T19:22:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:21Z", "activity_submission": null, "well": 112811, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "17.00", "drawdown": "17.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "68d86efa-2a2d-4093-9180-4567f999fb41", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-16T16:34:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, "well": 113184, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "60.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "8.50", "drawdown": "7.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6a061703-fe3a-481c-bfb8-708b7d4ab415", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-02-25T19:07:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, "well": 100501, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6aa153c4-f8f0-4c2a-9567-281f93b13942", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, "well": 112436, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6abf89c3-b797-4880-a4b2-d6ab0e6e102e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:00:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:00:45Z", "activity_submission": null, "well": 112639, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6ac190c7-61e1-4238-aa38-52a8a7b55982", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:35:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, "well": 112828, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6b28cb94-3a7a-473e-82f1-b413ba4b7f4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, "well": 112592, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6b33dc96-16ad-4761-a1ff-9089a15b51b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:52:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, "well": 112941, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6b918d99-a414-47c2-9b75-da0ad4fe49b6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T20:41:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, "well": 113151, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6bf450c2-59f0-4a2c-8259-2cd5f37b9969", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:40:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, "well": 112298, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6c1214fb-7b2f-4dae-aa12-25766deb6e87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T15:57:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, "well": 112752, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6c410f46-4759-46fb-8337-2041f9f4ab2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, "well": 112915, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6c872767-8e4b-4409-aa41-a502e24c697c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T21:03:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, "well": 113216, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6cf948f9-6b4d-4854-8b2c-fe1bb862e7e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:44:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:00:18Z", "activity_submission": null, "well": 112295, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": null, "well_yield_unit": "IGM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6d11659c-9e87-4926-9f96-1e42bc79555a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T20:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, "well": 112554, "yield_estimation_method": "BAILING", "yield_estimation_rate": "8.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6d2dd1fa-1936-47e8-9bf8-e60c00756d88", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, "well": 112316, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.60", "well_yield_unit": "GPM", "static_level": "141.20", "drawdown": "190.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6d5a525e-b3b9-4ea4-bcc6-abd81583d0eb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:28:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, "well": 112336, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "230.00", "drawdown": "265.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6d91320e-48e9-4733-b261-ba3a9a7a140e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:29:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, "well": 112482, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6dba9555-93cf-4cb8-aa17-1b5180989b36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T18:56:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, "well": 112889, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6dcc3e94-7e23-4124-b648-a66873a7de53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:23:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, "well": 112972, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "16.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "49.00", "drawdown": "50.08", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6de9f44a-f1a7-4c3f-92fd-8c27e856d9d1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:58:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, "well": 112758, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6e2e9525-ae8b-4a8b-a420-56ea217f8f84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T19:35:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, "well": 113090, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6e500349-ad90-44f8-90fc-955e09bd6c2a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T17:07:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, "well": 112512, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6e8e957a-bc2b-4991-8e1a-70357bd59173", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:42:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, "well": 112610, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6ed67279-9458-4981-aebe-a32c0d2b6463", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:06:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:06:55Z", "activity_submission": null, "well": 113005, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6ed8cbc3-2df9-4d9f-ab50-31a3b9d6aa8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:45:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:45:45Z", "activity_submission": null, "well": 112353, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "70.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6f089083-e08f-4335-8abf-ec23a3d8c533", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T18:37:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, "well": 113031, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "100.00", "drawdown": "159.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6f4c01d2-10b5-49f6-b762-96495ec81330", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T21:58:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, "well": 112866, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "6f6857f3-65ef-42ea-a53b-14f3b86c87c1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T19:23:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, "well": 113149, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "9.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "90.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "704c9825-f0f1-45ce-8952-1f7e27924a8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:45:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, "well": 112688, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "704fc472-c426-471f-9908-7f206b1e4cee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-01T15:39:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-01T15:39:10Z", "activity_submission": null, "well": 113083, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "70504f25-298c-48a8-82a3-55f30d00f021", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:55:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:55:26Z", "activity_submission": null, "well": 112630, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "706468f0-5cfa-4390-a0e4-ef0ecba3c6d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:38:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, "well": 112366, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7094e97d-fdd7-4759-a6c0-d93f730f8107", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-28T23:33:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, "well": 112708, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.75", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "77.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "70b22a51-e9ee-41d3-9367-5b341b2f2017", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T21:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, "well": 112854, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "639.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "70b9a9a6-4835-4118-9ff3-81edf0d22c36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T16:20:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, "well": 112856, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "130.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "6.60", "drawdown": "12.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "70c7effe-1398-4bd9-b027-b20c54d12e7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T18:59:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, "well": 113129, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "710a729a-c15a-4981-a56e-b80f957c68e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:33Z", "activity_submission": null, "well": 112878, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "31.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "71192770-0675-4723-94cf-4a489a2abc0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:21:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, "well": 113277, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "15.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7134e174-209f-4f9d-a475-9892678ddaf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:21:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, "well": 112590, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7147d327-99c0-4325-bf09-5bb607011fed", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:22:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, "well": 112427, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7163e1cb-3c7f-48c4-8645-07859e04e898", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, "well": 112959, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "35.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "10.60", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "718796b8-4064-46dd-a62b-2f7cd2c3073a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:07:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, "well": 112925, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "721e25af-3d13-4fe4-8986-02d09ff76b49", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:05:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, "well": 112837, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "50.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "722d049a-2543-4947-b56f-d1bf0d5ad0bc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:54:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, "well": 112468, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "725d4f28-c32e-4a25-8468-e3b87dce0493", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T20:43:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:30Z", "activity_submission": null, "well": 113307, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "72c72210-1be0-4773-a5e6-376ba72c144e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2010-12-09T17:56:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, "well": 102666, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "72c95bc3-f805-4c0f-9cf8-a34bdc332767", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:50:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, "well": 112898, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "72f2ee5e-4527-49f8-8ae6-a8509cd8fb03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-11-30T07:25:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, "well": 112152, "yield_estimation_method": "BAILING", "yield_estimation_rate": "5.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7347206c-364c-49c6-b088-d82d1d032280", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T19:03:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, "well": 112645, "yield_estimation_method": "BAILING", "yield_estimation_rate": "7.00", "yield_estimation_duration": "6.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "73b15d34-abbd-403b-a66f-b8b4f76f85d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:54:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, "well": 112623, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "70.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "73c7bf02-680f-4874-a35f-f8d81c4d5b60", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:54:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, "well": 112370, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "74142950-2baf-4be1-97c3-c2869c0f8809", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:41:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:41:53Z", "activity_submission": null, "well": 112917, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7434f669-e3e1-41ed-9ee1-a67e637efbcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, "well": 112585, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "745b0cb9-bef1-4551-9b59-803ecd1db034", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:50:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, "well": 112369, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "749583b4-c821-475e-9edf-94989f28d804", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:35:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, "well": 112721, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "10.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "75055a70-2b51-4bfb-a11d-a1c82a9f7f1e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-03-31T23:24:44Z", "update_user": "PROXY_WELLS", "update_date": "2017-03-31T23:24:44Z", "activity_submission": null, "well": 113002, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "200.00", "yield_estimation_duration": "1.00", "well_yield_unit": "USGPM", "static_level": "3.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7535d879-22bc-404a-84e3-12e81abb835a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:09:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, "well": 112536, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "754110dc-b943-499a-8a7e-6b32e90daf25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:29:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:54Z", "activity_submission": null, "well": 113168, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "88.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "755fc011-aa10-4e93-b356-82f4dfa30433", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T05:54:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, "well": 112572, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "75774802-7dbd-4af0-999d-63c275803d95", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:05:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, "well": 112241, "yield_estimation_method": "BAILING", "yield_estimation_rate": "25.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "122.00", "drawdown": "140.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "75a7dfcd-646b-470a-9a81-17de72dd7b8c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T21:09:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:10Z", "activity_submission": null, "well": 112410, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.25", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "75cf5fce-fc40-49c2-b3e7-16ec7b5b0727", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:09:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, "well": 112872, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "764f808b-e7c7-44e0-8664-94c5d97d81c4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:23:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, "well": 112881, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "765be7c6-bf21-47a8-85b3-2bec38fc1dab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:37:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, "well": 112955, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "42.00", "drawdown": "46.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7694c62b-b07b-4dfd-a0b8-4749938a113f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T16:11:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T16:11:27Z", "activity_submission": null, "well": 112519, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "615.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "76a5f7cf-48a8-4072-9ebe-2d9afac13a13", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:02:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, "well": 112982, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.20", "well_yield_unit": "GPM", "static_level": "52.00", "drawdown": "62.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "77699a42-e0ce-4376-8fd4-cba26099cf61", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, "well": 112859, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "42.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "776acf2b-d7f1-483d-a6d1-83ea5f3a3306", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T18:28:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, "well": 112733, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "77aa3c9c-ea45-4f5c-b896-410db18a2423", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-18T22:05:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, "well": 113264, "yield_estimation_method": "BAILING", "yield_estimation_rate": "6.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "77cabbf8-187e-4678-b008-f18a4fffe6b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:34:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, "well": 113118, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "35.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "99.00", "drawdown": "214.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "77d2596e-c893-4da8-8342-dac5f042f03f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:29:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, "well": 112987, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "0.60", "well_yield_unit": "GPM", "static_level": "37.00", "drawdown": "120.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "77df69ba-418c-433b-a63c-33b1585ffa0e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:13:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, "well": 112318, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "223.00", "drawdown": "250.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "78099772-bc87-4972-8bac-4986c7621557", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T16:33:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T16:33:40Z", "activity_submission": null, "well": 113103, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "40.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7826b2cc-7ca8-4cf8-949f-7c3e3d7b9f22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:30:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, "well": 112223, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "786bb5b0-eeae-46f0-8258-1e3e0a92d5c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:46:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, "well": 112348, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "78939d18-e890-4e8d-a5d8-2c150b838304", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:18:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, "well": 113166, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "130.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "4.00", "drawdown": "15.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7898cbd6-7b0e-40de-a7af-14d86e3352ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:33:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:54Z", "activity_submission": null, "well": 112966, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "35.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "121.00", "drawdown": "13.20", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "79c22eee-722c-4971-a74e-bed2f08afe6a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T20:36:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, "well": 112525, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "65.00", "drawdown": "335.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "79fc4ece-8d27-4656-8f4c-7879c1f0ae66", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T17:33:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, "well": 113199, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7a3743e3-f6f5-44c8-9308-50d8746851cb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:45:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, "well": 112476, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7a614dda-fb31-42a2-9387-94a687400eca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T17:20:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T17:20:03Z", "activity_submission": null, "well": 113170, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7a6f96a3-43ca-4790-bf59-be488d18d10b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:44:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, "well": 112902, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7ac4fc4e-a572-44c3-b377-fddedf73952a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:28:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, "well": 112425, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7b5cd1fb-f0ea-442b-a8d5-717c310683e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:18:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, "well": 112478, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7b740356-c1f0-483c-92f6-f361d95c9192", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:33:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, "well": 112454, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7b9c593a-691f-4604-bf18-89818d0b4e4b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T21:53:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:22Z", "activity_submission": null, "well": 112564, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7b9de68b-4247-434a-a85b-ddc5068e7604", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:36:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, "well": 112640, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "25.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7ba21f4a-5a00-4a60-974a-14c36bf555ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-18T21:01:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, "well": 112627, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "800.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7bb2ed0d-a337-469c-a15f-5393716ef9e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:10:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, "well": 112418, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7c93196f-4c9e-432e-bc4d-6ed2455df09d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:20:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, "well": 112904, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7cdd2639-4251-48cf-800e-0c264f8023d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:27:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:27:19Z", "activity_submission": null, "well": 112633, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "35.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7d2038b9-5fd1-4e46-83a3-10a321b99af7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T19:20:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-17T22:16:01Z", "activity_submission": null, "well": 112625, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": "121.40", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7d40a19f-6764-4423-8162-59978d2bd0b3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:15:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:39Z", "activity_submission": null, "well": 112686, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7d5b6f29-14c8-4e4a-a919-20d13335fc9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:01:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, "well": 112883, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "114.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7d8df09c-9f8b-4c35-9b40-5667cc9ce8dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:10:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:10:30Z", "activity_submission": null, "well": 112772, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7d98a010-8934-47cf-9500-50aac8ed1589", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, "well": 112359, "yield_estimation_method": "OTHER", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7dd176e1-703b-4950-b891-daf4daa82e44", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T21:06:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, "well": 113152, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "6.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7dd9d3e1-5911-477d-b92c-e1f41dcdb78b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:17:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, "well": 113262, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7ddfb027-77da-414d-a7af-af92844dc792", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T01:04:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, "well": 113193, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7dfc979d-0a6a-4042-82d5-4851b9409c15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:24:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, "well": 112315, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.60", "well_yield_unit": "GPM", "static_level": "221.00", "drawdown": "250.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7e2310f0-2cfa-4d4f-aa2b-721dcdb55e5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:57:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, "well": 112667, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7e948873-e091-4429-a3ac-a12a7dc7b74e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:21:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, "well": 112267, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7f7716a5-d870-4077-8a6e-fe3c6fa34be7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-10T23:56:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, "well": 112317, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "141.00", "drawdown": "170.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7fdc00a8-6845-4a31-b35f-f5a2133cc92d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:41:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, "well": 112420, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "7fec772d-7ff6-4f30-924a-d11c8d6e39bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T22:11:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:58Z", "activity_submission": null, "well": 113108, "yield_estimation_method": "BAILING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "804eaa81-8a29-40f9-9681-f7cacb174082", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:00:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, "well": 112969, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8051e4e6-041a-4d15-85f2-394956a476da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T19:09:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, "well": 112711, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.06", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8106ac65-e479-4ed0-82fe-2304474c6b8b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-10T17:02:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T17:02:05Z", "activity_submission": null, "well": 113111, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "81171dd1-825e-40c6-b43c-76351a339218", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T06:32:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, "well": 112486, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "81221ba4-b9e5-411a-988f-1e7b1fa40306", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-09T21:51:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:51:09Z", "activity_submission": null, "well": 110749, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "12.00", "well_yield_unit": "USGPM", "static_level": null, "drawdown": "42.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "814e35b1-06d7-4698-bff4-d2efafee4528", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, "well": 112389, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "818b3323-7787-4173-b27b-ce2ab434bf87", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:04:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:04:38Z", "activity_submission": null, "well": 112920, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "81a46296-1e67-4eb7-bc7b-f50e64218697", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:37:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:37:04Z", "activity_submission": null, "well": 112660, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "81d477c5-f0ec-455d-b4f1-d5be0f6aa9c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:15:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, "well": 112701, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8246f461-5362-4fe0-9172-809edf57e0bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:55:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:55:00Z", "activity_submission": null, "well": 112371, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "82bbeea2-5c9a-4dd0-9175-798e04e3c384", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T22:09:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, "well": 112400, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "82ffb063-09c8-4d1e-90f8-d30a387fb9e7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, "well": 112287, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "82ffc91c-9fe0-4c83-af03-fc6a11f24693", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:55:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, "well": 112446, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8344a0e4-45e4-40d5-8ace-d433d27f0d31", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T17:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T17:52:59Z", "activity_submission": null, "well": 113012, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8360b343-87f0-49bd-a143-6aa30d6c8cf6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:46:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, "well": 112480, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "83953b7e-c0bb-4936-a707-759ffb9da1c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T17:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:55Z", "activity_submission": null, "well": 113105, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "80.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8449b986-7855-404e-a410-b8c2bff4d27e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:24:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, "well": 112464, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "84bb922e-d870-4949-9777-c666b53331d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T21:05:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, "well": 112724, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "62.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8609cc18-bf05-4083-b59d-8a090d72d795", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T07:18:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, "well": 112424, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "862037cc-df4f-4f80-94ea-f19366bc249f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:12:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, "well": 113294, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8676b838-730b-4828-87fe-782de07fcb9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:15:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, "well": 112926, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "1.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "86a0d47d-8353-4ff6-8df4-350f846abcca", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T17:48:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T17:48:48Z", "activity_submission": null, "well": 113024, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "86e644d3-fd4c-4897-9153-549188e22909", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:31:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, "well": 113065, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "86f0129b-d73f-47cb-ad19-d50a6e76755a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T21:08:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, "well": 112225, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "6.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "86f6610f-5a53-4ded-96f0-f79eca6c950b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:19:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, "well": 112845, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "250.00", "yield_estimation_duration": "13.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8712e6c8-74db-429e-a77f-4cd65d023830", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:12:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, "well": 112260, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8762542f-b6db-49c2-8c63-efa88b3cc570", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:37:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:37:24Z", "activity_submission": null, "well": 112397, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "878a545a-477a-4cc1-9c11-f6ca567d24a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-12T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, "well": 113113, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "879651c2-a83f-4660-b75b-e7a5db6042d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T20:40:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, "well": 112716, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.33", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "65.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "87bf565e-0b6e-4276-b4ab-13a2c5b713e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T17:06:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, "well": 112710, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "60.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "5.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8844989a-9575-4e70-9634-04488a5df730", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:39:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, "well": 113215, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.50", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "88595f5f-0604-468f-95f3-04b91b3c8586", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T08:13:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, "well": 112388, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "88b41899-78ef-4060-bc60-44f38cadb453", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:27:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:51Z", "activity_submission": null, "well": 112736, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": "3.50", "well_yield_unit": "GPM", "static_level": "49.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "88c62449-1386-4faa-8760-110a5cf4b198", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:15:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, "well": 113057, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8919fd92-a442-4882-94d1-0803b9a69b1d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:56:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, "well": 112500, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "892a30e2-bdce-43af-af16-f227c38918a5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:12:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, "well": 112631, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "893ddb22-99d7-43cb-acde-fa91155b122b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T23:05:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:02Z", "activity_submission": null, "well": 113261, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8952cd0d-205e-431c-95a8-2bb5b571e655", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:36:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, "well": 112973, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "8.00", "drawdown": "18.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "897f827a-4925-46b1-b5a7-9593388746f3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T21:24:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, "well": 112901, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "89808747-3567-4fb6-8037-9a72fe69683a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T14:40:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, "well": 112288, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "89aa4bb4-ce8e-4aa2-bd08-9837af4470ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:26:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:57Z", "activity_submission": null, "well": 112922, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "325.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "89f1fdea-04a5-4be1-a5cb-948d19c2b6be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T23:03:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, "well": 112749, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "22.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": "11.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8a2ec979-1ab7-418f-8da6-e3888277a166", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T16:44:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, "well": 113087, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8a58c513-1568-473c-bf73-d181aaa01599", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T05:43:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, "well": 112483, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8ac5adcf-3a20-4d0d-875d-cbef94f1989f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:26:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, "well": 112588, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1520.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8ac6dd72-1f7d-4e58-b9cd-7928ce7c4427", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T23:12:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, "well": 112909, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8af5b4e4-af08-45a0-9bba-fda39f423135", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T23:16:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, "well": 112416, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8b7a3147-13e6-4d98-97f9-b64d6244b3ad", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:55:05Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T18:43:08Z", "activity_submission": null, "well": 112438, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": null, "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8bda9eb1-8449-4e1c-b2d4-6167170d26cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-19T20:34:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, "well": 113265, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8bfaae65-47d8-4e9f-ad92-bd03a5583050", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, "well": 112918, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8c2d961d-9c2a-45fc-b0cf-2e4515ea2956", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:41:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, "well": 112906, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "71.20", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8c4c402c-423d-4ff7-8153-7d39421bab9a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T16:40:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, "well": 113052, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "250.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8c710ff9-9159-431d-9f00-08813de52bb9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:12:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, "well": 112352, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "80.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8d0cac9e-039b-4956-972b-f24db9251a10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:02:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, "well": 112839, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.33", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8d4841d8-904d-4402-a387-82782100eaf8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:29:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, "well": 112860, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "246.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8d6a8200-e3d6-4c92-a507-f1a88d1347b7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T20:43:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, "well": 113169, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "80.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8e4292f2-f468-4c9f-bf1f-1d35fd7377e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-30T18:42:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, "well": 113167, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": "12.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8e74a516-02cd-4693-bb4a-41ffb3e34f15", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T02:01:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, "well": 112477, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8ea4f406-a8ce-4cf7-bb0a-aa98ef87b0ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-03T22:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, "well": 113095, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8ed87396-94bf-44f8-ad47-e50e9dc76ce8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T17:05:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, "well": 112351, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8f209e83-ae64-468e-9a38-09af6a4b54e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T20:24:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T20:24:55Z", "activity_submission": null, "well": 112653, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.25", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "8f71d92d-cde3-48b6-b48a-5b839408e0c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T16:33:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, "well": 112347, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "903fcfd1-26bd-4d31-85f8-0e2265833718", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T20:47:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, "well": 113106, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "905ebb51-9b41-4bee-8d2f-202fe61213d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:12:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, "well": 113217, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "90634758-e5e9-48e8-99aa-ab8c05929b5c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T20:33:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, "well": 112368, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "908139d1-6cd1-4096-beff-a338a5228fef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:08:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, "well": 112843, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "908d84f5-f7f2-4bbf-b433-9645714d8aa5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T22:17:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, "well": 112620, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "90a1a46e-ebef-4f4c-ac85-ad15bef9c7c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T17:16:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, "well": 113218, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "90c802a1-a126-40cb-aea7-74a6a4d5cd10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:23:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, "well": 112702, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "90e93603-6416-4a73-a874-83e2d7f7a7a6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T18:35:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, "well": 112745, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": "15.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9173aa67-db44-46a4-b689-5a26e7be386d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T18:25:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, "well": 112718, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "130.00", "yield_estimation_duration": "6.50", "well_yield_unit": "GPM", "static_level": "16.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "917b999e-f0fe-4d65-ad53-7c4d2ae030a3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:25:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, "well": 112869, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "46.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "91e5b216-674b-4348-8d9d-95f000ac2820", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:02:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:02:01Z", "activity_submission": null, "well": 112700, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "91f33bb5-d858-4199-a4cb-877eefe97c39", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:10:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, "well": 112297, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "92a17a6b-26e8-4e58-99a7-999bb56528bb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:22:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, "well": 112958, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "330.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "78.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "931a65c1-bf22-441a-a40e-8a664c53b59f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, "well": 112981, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "936f1a6d-c7ee-438e-8504-0e02e6d8124e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:59:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:59:38Z", "activity_submission": null, "well": 112912, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "93d8ac4d-467e-445b-baac-28609bce0e98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:07:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, "well": 112669, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "11.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "89.00", "drawdown": "195.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "93f3f75b-0142-4a04-95e2-598ee2fc14f1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, "well": 112537, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "94945260-b7e6-4e29-acd8-7c3b5fc66076", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T13:32:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:12Z", "activity_submission": null, "well": 112501, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "94c74ca1-6d28-4a46-834c-5966f068b3d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T18:57:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, "well": 112829, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "43.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9563de10-53cf-4c09-828d-2d05cf84b5a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T18:59:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, "well": 112391, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "95b3eec1-aa01-4867-aca1-97aa66c7e215", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T21:47:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T21:47:38Z", "activity_submission": null, "well": 112300, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "95c32fac-632d-4316-94dc-df7f56cb9cd8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:47:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, "well": 112248, "yield_estimation_method": "BAILING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "25.30", "drawdown": "78.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "95d7d10c-1ab8-4841-a106-3dec8af94ebb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-31T18:43:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, "well": 113171, "yield_estimation_method": "BAILING", "yield_estimation_rate": "7.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "180.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "95dd554a-9892-4f63-ad42-ea079359ebb3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T20:55:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, "well": 112409, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "80.00", "yield_estimation_duration": "40.00", "well_yield_unit": "GPM", "static_level": "270.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "96036f7a-19d8-4b8d-843f-dd4c3dc5dbce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:41:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:41:19Z", "activity_submission": null, "well": 112233, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "96165fe0-e841-4492-9a81-920e033d5c10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-04T22:55:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, "well": 113219, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9630be29-cb75-4897-a789-3feee78fe17a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:29:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, "well": 112896, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "96394195-e33f-4c36-b45c-6223b558c79d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T20:56:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, "well": 112737, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "96420b5f-78b7-4e5e-80d0-d57c4f77bb08", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T16:42:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T16:42:46Z", "activity_submission": null, "well": 113104, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "45.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "96ab8373-eb85-4a87-b307-1c99bb005787", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T17:12:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:34Z", "activity_submission": null, "well": 113242, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "96af2cba-2a95-4782-b1ae-fb751dc24aa8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T05:04:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, "well": 112254, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "7.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "977c0d5c-b370-4972-b1d0-16e9b9a3a50c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:44:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, "well": 113007, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "97f12699-6933-46b6-86a3-c94bb76b28ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T17:47:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, "well": 112520, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "50.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "14.60", "drawdown": "14.60", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9814d2f5-08a4-42b5-a94b-8cc7a80016cf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:59:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, "well": 112600, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "98f7b643-9258-4f4c-b6b4-de7d05fc6952", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:19:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, "well": 112413, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "994be6c7-e053-4ee4-bc29-4a35f88d81fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:24:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-30T14:24:46Z", "activity_submission": null, "well": 112996, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1000.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "99900bf4-f683-4d91-95ea-d02de3347ce3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T20:29:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, "well": 113214, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "99a45566-1d40-451e-8b0d-9ae4e110a7a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T18:43:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, "well": 113210, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "76.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "99b7f046-4e7d-4a1e-9652-2b303999824a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:20:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T18:24:18Z", "activity_submission": null, "well": 112665, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "47.50", "drawdown": "520.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9a5329c4-3af8-4597-8b38-f73877ecca83", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-28T18:42:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, "well": 113081, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9a85ff1c-0ab5-476a-92e5-d0ca0ecc3ad3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T18:37:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, "well": 112428, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9b4e7070-4892-4b1a-83cf-091fb3e702fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T22:28:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, "well": 113255, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.75", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9b7783fd-40ee-47f9-94a8-8f7455a70321", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:17:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, "well": 112885, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "72.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9b8be667-f615-4c43-8df9-4d9bc662f220", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T03:21:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, "well": 112951, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": "3.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9b9005c2-a5f4-40a7-aa43-362f1b8ecb9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:52:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, "well": 112445, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9c1f828b-b196-498d-b818-34047b1faef7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T06:20:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, "well": 112763, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9c52d2c0-0c92-46d0-9bfa-0ce2450d2155", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T18:40:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:40:17Z", "activity_submission": null, "well": 112666, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "4.50", "drawdown": "280.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9c557688-d02a-43a3-b593-e996f3fbe684", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T00:42:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, "well": 112770, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "110.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9c7dfbf1-f1e8-458d-bd99-e2da59a7e2ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T20:18:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, "well": 113078, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "400.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9c8d3986-254b-4606-bf57-0a3d6b8aff76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T17:12:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T17:12:55Z", "activity_submission": null, "well": 113074, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9cbadb1f-d633-4f16-a34e-19e8e222e3bf", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, "well": 112365, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9cdede6f-70c0-439d-8b0e-1ad3b91e75d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:18:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:03Z", "activity_submission": null, "well": 112453, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9d9f6b1c-065c-4582-a720-531a0787349c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T17:42:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, "well": 112663, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "60.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "6.50", "drawdown": "19.20", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9db91a0b-b79c-4655-8899-04111f51b404", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-06T22:19:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, "well": 113006, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "8.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9dbcf574-2552-477b-8049-8388c97cb9c8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-30T16:47:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, "well": 112709, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "60.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "0.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9dc47735-39ef-4341-885c-8d4b03ed3d1f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:42:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, "well": 112967, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "8.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "35.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9e04bf39-d2fa-4669-9a1b-95a7f648c318", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:02:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:30Z", "activity_submission": null, "well": 112614, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9e43b5d2-124b-4ec7-9c21-ff6242a3f98a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:51:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:36Z", "activity_submission": null, "well": 112244, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "8.70", "drawdown": "10.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9ee48970-266d-4801-9fe2-ddf492692445", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:59:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, "well": 112790, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9f4e7def-19f3-4c6a-baad-646ab33f029f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:00:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, "well": 112234, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9fb9721f-2c07-4ab0-9b61-a93ba290a52d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-18T21:25:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, "well": 112498, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9fc68fde-c8a2-4860-b172-b561ecc91eab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-27T17:11:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, "well": 113203, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "150.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "9fee794e-b9f6-4c57-814b-54253a7faa62", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T17:41:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:39Z", "activity_submission": null, "well": 113096, "yield_estimation_method": "BAILING", "yield_estimation_rate": "6.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a09178d6-de6d-461f-b444-5558c4cbe391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T00:00:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, "well": 112231, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a0c5a002-03ac-49de-8d69-7e8f51c434d0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T15:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T15:26:58Z", "activity_submission": null, "well": 113249, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a0cf7d71-9e1f-4339-ad9d-b3a49c0f4279", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:32:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, "well": 112558, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a0f33894-3a73-48ad-9f6f-5cf792cdb083", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T20:01:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, "well": 112613, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a1292d70-9746-47e3-871f-0f6a754466b0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T18:29:01Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T20:59:34Z", "activity_submission": null, "well": 112291, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": null, "well_yield_unit": "IGM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a1485032-a455-4d44-90bf-bbd72469d26a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:11:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, "well": 112607, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a1ae78b3-5a59-4481-9c2b-0b8bf4f24e64", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T15:29:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, "well": 113008, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "50.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "10.50", "drawdown": "10.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a1dd845d-c9a2-4c11-895b-b0c025cb63be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T04:15:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, "well": 112953, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "12.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "19.00", "drawdown": "32.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a25871e9-a18b-4f6e-a24e-a8cf9ddb5acc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T21:35:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, "well": 112634, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a260b46b-b680-40b6-945b-85ab86da5718", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T20:09:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T20:09:07Z", "activity_submission": null, "well": 112652, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.75", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a2d29b46-654e-4016-8ed1-d62719297bee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, "well": 112838, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a2f8a3c2-292c-47cd-ab70-f44857720419", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T21:43:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, "well": 113066, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a30a2b10-965d-4b72-8410-f117cd39d053", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:13:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, "well": 112508, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a320f4d5-5a57-4d47-894c-75cd2c2bcbc6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-22T19:34:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, "well": 112521, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a3487413-cac7-43fb-afb0-d5faa91e7737", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:38:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, "well": 112897, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "3.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a35c00b3-0ae4-4cac-aac9-402a0bb76fde", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:22:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:22:05Z", "activity_submission": null, "well": 112791, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a37fcde9-3e49-458c-a700-92e22df955a4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-05T19:09:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, "well": 113101, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a388f1e9-9de7-4fa1-b73a-eb42e7e9bd90", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T17:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, "well": 113029, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a3b7d9e5-6e20-4b7c-8f4b-210450276a73", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T21:33:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:48Z", "activity_submission": null, "well": 113200, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a3c30eaf-5093-4f7f-92db-2b1b2f82ada2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T20:56:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:00:02Z", "activity_submission": null, "well": 112299, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": null, "well_yield_unit": "IGM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a3d05b07-a3a9-4e7c-b14d-9854bd2f5df2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T16:24:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, "well": 112261, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "18.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "15.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a3e073bc-8baf-4bde-9758-f87af25d4516", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T16:15:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, "well": 113009, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a476f3ac-42e1-46b5-ae3a-1b1bb9f98599", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T22:43:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, "well": 112816, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a4f368fb-0b21-47ae-b2c8-c8042cd296a8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:51:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, "well": 112423, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a55d3c5a-1643-40fc-8b51-f83055a89c45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-10T17:18:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-10T17:18:11Z", "activity_submission": null, "well": 112842, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1000.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a562a995-20dd-4de9-a107-9c95d7fa63fc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:19:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, "well": 112246, "yield_estimation_method": "BAILING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "54.60", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a56a4937-6c2a-4b2a-9b74-e2e87575da53", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:29:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, "well": 112847, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a57ef3c8-c982-48c6-957f-480b0d1ba6fb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T21:30:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:11Z", "activity_submission": null, "well": 112798, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "123.60", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a589a86c-77a9-473f-85cd-490bd1793363", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T20:36:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, "well": 112584, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a5ff5606-44fc-4575-b970-4e3795e03ed0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T21:52:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T21:52:58Z", "activity_submission": null, "well": 113038, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a605a8cd-da41-46b4-bb70-bfaa8e637fc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T23:09:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, "well": 112995, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "30.50", "drawdown": "70.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a61dae3c-2544-4d33-9924-92eaadfc160f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:00:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, "well": 112321, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "0.60", "well_yield_unit": "GPM", "static_level": "87.00", "drawdown": "340.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a63045f5-d0bf-4f05-a94a-2838b5db9a67", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-02T20:02:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, "well": 113092, "yield_estimation_method": "BAILING", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a65f8ba1-8834-479f-8bba-5c76ebf80b23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T06:22:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, "well": 112422, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a66c94c5-d88a-48fb-b4bc-860fb7105b42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T21:25:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, "well": 112596, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a685824f-e218-42ba-bfdf-c8346cb83602", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T04:00:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, "well": 112481, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a73817d1-a4d2-423e-b96c-7a68c1f337e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:41:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, "well": 112271, "yield_estimation_method": "PUMPING", "yield_estimation_rate": null, "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a7b5aee2-0d6b-40dd-8340-6a819d470959", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:22:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, "well": 113301, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a7e19675-fe03-4ac0-93f6-67a78071c94c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T04:08:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, "well": 112345, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a7ff6b3d-0de1-46b8-b194-0b017ef25b52", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:32:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:32:50Z", "activity_submission": null, "well": 113282, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "290.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a87fdd6e-5518-481e-93f2-d97df8810894", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T16:57:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:57:35Z", "activity_submission": null, "well": 112642, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "18.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a88bde26-6d3e-47f9-a23b-1bc6556c6b06", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-28T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, "well": 112822, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a89c0bf3-659a-4e74-bd97-a9b72a68472a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T18:57:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, "well": 112283, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "86.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a936e840-0e99-4f69-be32-229d45e70564", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:05:15Z", "activity_submission": null, "well": 112245, "yield_estimation_method": "BAILING", "yield_estimation_rate": "1.50", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "50.00", "drawdown": "173.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a939dc56-b703-4c25-bd7f-86d4f05c5355", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-04T19:59:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-04T19:59:54Z", "activity_submission": null, "well": 112531, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a9a77a67-5581-4160-ab6b-f82ca938d23b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-02T23:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, "well": 105508, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "87.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "a9f76674-21a4-4c2c-93d0-f83bfb17ac4c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, "well": 112899, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "aad4868d-918e-40a1-b2c9-90c4cce1af4d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:28:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, "well": 112882, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "92.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ab3b9404-4edf-4824-9c7f-11142981e3d5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:13:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:19Z", "activity_submission": null, "well": 112774, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ab4eed35-b001-413b-9e15-831e69a1e86d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T19:58:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, "well": 112651, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "200.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "abda1386-54b2-4f20-8af1-dde2eb160a8e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:24:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, "well": 112303, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "abdf76e4-fb6c-4d40-8123-c6a460c3a45d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:33:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, "well": 112383, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ac5347e5-008b-4932-9629-d34d67594391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:18:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, "well": 112493, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ad2350a9-ba54-41b2-9031-64e6edc7e8ee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T21:18:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:18:37Z", "activity_submission": null, "well": 112396, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ad2ad0f6-b349-4b91-a79c-f468c9d9c95f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T17:40:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:43Z", "activity_submission": null, "well": 113119, "yield_estimation_method": "BAILING", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "60.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ad412058-5941-48df-89d7-6055ea6179fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T03:30:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, "well": 112325, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": "358.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ad480408-2446-4fc8-9a00-90b95f2d3523", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:25:51Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, "well": 113100, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "7.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ad68262f-eb9f-4833-a861-fecb232ed983", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T07:42:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, "well": 112765, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ad6f7c44-23a2-45fc-b59b-8ae58f56310f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T19:03:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, "well": 113020, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "adfd2dbf-8b6d-48cd-b16d-38cfd0b7d7ea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T15:30:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, "well": 113035, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "75.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "6.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "adfda427-279c-4615-be65-febf2b93d2f2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-09T21:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:14Z", "activity_submission": null, "well": 112760, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "96.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ae320a6a-9949-4ddd-a553-5e18f7b98263", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:41:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, "well": 112466, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "aed020d5-f6e3-4b86-9d64-fa0445293669", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:04:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, "well": 112456, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "af5cce57-4922-4ba4-a9c3-12c321a71b9e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T18:39:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, "well": 113178, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "84.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b0368eec-2772-4aae-bb9f-4a769419007b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T16:36:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, "well": 112911, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "180.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b097494d-db72-4029-807e-74ef56f330db", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:31:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:31:58Z", "activity_submission": null, "well": 112945, "yield_estimation_method": "OTHER", "yield_estimation_rate": "3.60", "yield_estimation_duration": "0.66", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b10af0bf-b683-4f32-9278-40163bd12d1a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-12T22:12:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, "well": 113247, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b11589d1-6934-4194-b522-8e2803dd745d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T23:09:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, "well": 112496, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b1b1254e-4866-4d1f-b671-9de0b01ad916", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:46:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, "well": 112281, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "8.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "48.50", "drawdown": "58.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b1c2001d-3f5b-4ca7-9213-5b996a5d0611", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T18:22:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, "well": 112560, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b1ece92f-500e-4195-beeb-12c7c38ec534", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:44:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, "well": 112940, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b28cb3ad-549b-4cb3-bda3-06b779164bf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T21:26:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:26:38Z", "activity_submission": null, "well": 113022, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b2c25a75-0876-444f-afc7-1abec57c8687", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:00:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, "well": 112378, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b2c34244-52be-467e-850e-a6614a3c27e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T21:11:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, "well": 113308, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": "0.25", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b2cd04fd-1ecc-4a34-afb8-12a5f8a7cfe7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T15:11:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, "well": 112461, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b2cd273c-e3a3-4093-9a79-59645dc1f4d7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T23:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, "well": 112672, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.25", "well_yield_unit": "GPM", "static_level": "17.00", "drawdown": "75.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b38eb66b-3ccb-4bf3-977a-d316d196d3cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:35:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, "well": 112680, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b38f80f4-ddd8-4741-b4d6-f25447b43ae0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:06:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, "well": 112890, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b3955de7-0451-4c70-beac-4a585d41ec8d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:12:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, "well": 112628, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b402544f-cd5e-4b04-a3a2-d244989540a9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T17:09:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T17:09:47Z", "activity_submission": null, "well": 113250, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b4932bc7-e057-4bb2-b626-7ef418327187", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T04:47:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, "well": 112776, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b49ec6ca-248f-4eaf-b531-b9d04a12678e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:25:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, "well": 112874, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "19.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b50904f7-63d6-45e8-9ec5-07b9501f7f69", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-21T21:55:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, "well": 112806, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b570c92d-8ebb-4ec4-90d8-e2a1665ebdd1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T17:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, "well": 112548, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "123.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b61ba46d-ed95-49bb-80b9-2fea3749b62e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:00:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, "well": 112249, "yield_estimation_method": "BAILING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "134.80", "drawdown": "150.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b6347ade-bd6a-4bf6-a3af-cb5ab770025d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:04:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:42Z", "activity_submission": null, "well": 113179, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "110.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b652a3a3-e67b-4a8a-b278-dc1cfba79cf0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T23:58:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, "well": 112340, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b653e9ba-b5cc-4321-b013-12e28323738c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:26:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, "well": 112442, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b65905f3-49a8-4958-8af7-9a5e449e7917", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:26:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, "well": 112405, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b684e519-b165-4d6f-8ccf-aa49abd33fe5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-19T20:25:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, "well": 112509, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b69ed146-958e-4eb4-9689-9b40f6ec8aea", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:28:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, "well": 112602, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b6d8ff4c-ec5c-44af-b0cc-de86166fe97d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T22:43:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, "well": 112636, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "75.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "11.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b7391c35-d939-4531-8d1d-5739a0c307e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T19:29:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:29:38Z", "activity_submission": null, "well": 112788, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b7965edb-6225-43a3-b026-cd77f8bbecbb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:08:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, "well": 112589, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b87678fa-0ec6-42ab-9c74-d276bb235213", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:58:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, "well": 112937, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b886ba8f-a5df-4b50-993f-fddf3f7175ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-08T21:17:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, "well": 113107, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b8b7d74d-9194-493e-a27b-045c8e9cdbc4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:37:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, "well": 112891, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b8df0010-ad37-45e6-8819-a56cc76cf4e0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:52:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, "well": 112698, "yield_estimation_method": "BAILING", "yield_estimation_rate": "8.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b90be7e2-0b4a-43b6-8be5-baa27137d799", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:51:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, "well": 112612, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b9345f76-963a-4a53-a1d5-530ca35231c2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T02:03:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, "well": 112323, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "15.00", "drawdown": "55.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b97ac7b3-64cf-4534-9809-21956c1c6d8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:12:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:12:03Z", "activity_submission": null, "well": 113132, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "7.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b98ca0dd-d8d1-4791-a3b5-9933a2ca4bd3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-16T18:29:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, "well": 113121, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "b990b36f-af05-411b-8cb3-4e79120d4a00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-23T20:27:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, "well": 112646, "yield_estimation_method": "BAILING", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ba26aa1e-677a-42c9-833d-002043ba6864", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T03:33:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:33:43Z", "activity_submission": null, "well": 112775, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ba5fcfa8-0af5-4861-800b-08d85630e186", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:46:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, "well": 113131, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ba88d7b3-5e38-4b65-9a0b-57ce1c669f3f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T19:53:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, "well": 113013, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "20.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "baa0c6cc-5cfd-440c-9c50-26d7f6bc079e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T21:40:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, "well": 113253, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "115.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "baebe0c5-2712-48e4-8312-4fb0f7624117", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T17:59:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, "well": 112766, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bb3ca227-1cdd-499e-b356-d3b77713da79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-13T19:07:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, "well": 112392, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bbe18f57-78dc-4ed0-94e9-ee825677a4d2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T21:11:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, "well": 112884, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "90.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bc0244b0-b301-4d82-a868-b88f3682d5e8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:24:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, "well": 112449, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bc11a1ee-d3d4-43b7-bf85-ebf9f76d997a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:08:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, "well": 112293, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bc926be0-ee43-4ac3-9134-59eeb0c03139", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T17:11:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, "well": 112913, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bca366e1-2a9a-437e-8934-819c5c5ec10f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-03T19:05:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, "well": 112747, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bcc12fce-60b6-49d5-af82-0682352d4197", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:38:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, "well": 113139, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bcd298c5-53b7-4afa-b009-48c14d0b8023", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T20:34:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, "well": 112852, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "193.70", "drawdown": "620.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bd2a71d0-0d41-42db-b8d0-5d6172bf6374", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T17:49:23Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:23Z", "activity_submission": null, "well": 112732, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bd478608-fc8d-4e46-a205-180c27050cfc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T19:56:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, "well": 112735, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.25", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "262.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bd97afa4-be70-4e6d-bcdd-f784adc5f9c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T22:17:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, "well": 113099, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bdb703b2-fd13-46f0-b516-b73e5e9e0e36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T21:57:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, "well": 113182, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "80.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "be8a5d86-6009-4617-983c-7f611bd50364", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:10:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, "well": 112374, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "be9563d4-253c-4dfc-b612-e7743b500b25", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T14:37:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-30T14:37:47Z", "activity_submission": null, "well": 112998, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "500.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "be99515d-2f9f-464a-b86a-9a2a046e9646", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:53:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, "well": 112877, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.50", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "51.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "beb46cc1-7bc6-4fb4-a401-3669debd98fa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T07:59:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, "well": 112730, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "13.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bf57dcd3-c9dc-47f8-9ce5-4db0190bf6da", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-17T20:02:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, "well": 113257, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "201.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "212.00", "drawdown": "234.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bf9b41b8-4ded-493e-8afb-7e65ec8806e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:39:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, "well": 112361, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "bffe7169-c5ff-47e6-bb94-cd500d9d7224", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T20:27:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, "well": 112723, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": "6.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c027262d-22b0-4f2c-a412-4cc950fea517", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:04:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, "well": 112942, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "80.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "43.60", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c0635aab-1178-414a-8496-f52c2a8c6f94", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-08T21:39:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, "well": 112840, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c11271a5-8775-4796-bf13-5315bc449106", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T08:14:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, "well": 112252, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "7.00", "well_yield_unit": "GPM", "static_level": "90.30", "drawdown": "91.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c163e804-be7b-4d2b-aa08-afcabec57200", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:49:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, "well": 112936, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "500.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "1043.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c1bbb0ad-af73-4bfc-8299-d8fef8c519be", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T04:34:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, "well": 112239, "yield_estimation_method": "BAILING", "yield_estimation_rate": "12.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "272.60", "drawdown": "276.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c29143c6-fe07-4b6c-b51c-4b3898a98eaa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T20:58:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, "well": 112337, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "244.00", "drawdown": "350.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c2bf5707-39b4-4c81-a3f8-d46454f6fd03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-21T19:52:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, "well": 113186, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "120.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c2c75b1d-0fc5-4759-a7c4-4bb158c35984", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T08:29:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, "well": 112731, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "80.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": "23.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c34dcffe-cfb4-481d-834d-c2a01f025958", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:54:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, "well": 112671, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "0.60", "well_yield_unit": "GPM", "static_level": "32.00", "drawdown": "50.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c3ccf2e8-637e-4fa7-bd87-a0f838103266", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, "well": 113303, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.50", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "25.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c550b09f-76e1-4a66-bc84-afe28950ca36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:46:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, "well": 112599, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c5a17c15-23e5-4c0e-bfa9-bf0536946d9c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T18:38:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, "well": 112591, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c64f6d26-4d6c-4cef-b6d5-ef21ec48d493", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:41:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, "well": 112444, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c6505485-72be-4787-b934-705fef541480", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:07:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-05T06:11:20Z", "activity_submission": null, "well": 112256, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "33.00", "yield_estimation_duration": "6.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "7.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c6800464-9774-459e-b979-79e4b1974009", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:59:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, "well": 112689, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c6d0c380-ae55-498d-8255-82ba05772328", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:22:30Z", "activity_submission": null, "well": 112944, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c6d5f014-73eb-45b6-90b9-75a2346394d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:38:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, "well": 112274, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c7518afd-0027-4955-9355-74241fdfe3e2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-20T20:19:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, "well": 112848, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c78a974e-ed08-43dc-b599-7653cf1a93ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T19:35:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, "well": 112514, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.25", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c7b60c8d-ef2b-4afc-9ea8-55857e080bdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:09:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:09:44Z", "activity_submission": null, "well": 112678, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c7bb01f8-9993-469b-8ee8-01cd6407c5ba", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T05:37:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-09T20:01:47Z", "activity_submission": null, "well": 112243, "yield_estimation_method": "BAILING", "yield_estimation_rate": "2.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "19.70", "drawdown": "56.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c7bc4582-0c44-4f29-9208-4932d3853920", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-01T17:10:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, "well": 113173, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "44.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c7ea7df5-14d5-47ac-b1d6-0f2d22fe34ef", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2012-02-01T22:12:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, "well": 105417, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c8103195-a0e9-4624-b8f3-142cb1017657", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:18:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, "well": 112946, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "8.00", "drawdown": "9.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c822d9bf-98cd-4d32-ac5c-0990c3319d22", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T07:18:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, "well": 112783, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c911eec6-6d17-434e-8d62-076058a9ee12", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T08:15:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, "well": 112786, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c9509972-e619-4f75-a792-6067f341c5a0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:32:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, "well": 112270, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c9606de1-6994-46eb-897e-dbd7e4edf8d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T18:01:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, "well": 112833, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "90.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "c9831636-6b5e-4e93-a9f8-91be524a635b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:50:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, "well": 113141, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ca35c9c6-fe90-4993-b21d-cb4442958777", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T22:37:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, "well": 112991, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ca7f3388-18a3-43b7-b83d-06d55abda8e6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T05:26:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, "well": 112327, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cb1a4066-cfc2-4819-bfba-03ef85fac361", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T06:27:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, "well": 112257, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "15.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "15.00", "drawdown": "25.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cb269d75-dbe3-473c-8fd7-f8ec77e8d9ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T16:28:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, "well": 113288, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cb474a9d-264f-4b22-8a0c-1f9b2e262aeb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T16:54:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:57Z", "activity_submission": null, "well": 112328, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cba6de5b-8b1e-41c0-ae65-243ed7740905", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-12T16:26:20Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T17:24:12Z", "activity_submission": null, "well": 113028, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cbcb154a-8dc7-4cfa-a287-395deb311d03", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-24T22:09:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, "well": 112654, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "240.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cbd30ca3-2484-471a-a0eb-0a36e93a261b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:52:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, "well": 113285, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "5.00", "drawdown": "75.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cc4fb616-3182-49d1-8213-afc5682c325f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T01:21:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, "well": 112475, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cc6f1eb1-2b23-4448-9fdc-23fc44cea203", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T18:54:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, "well": 112606, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cc933074-67f7-4cad-9565-4b38739a3738", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T01:13:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, "well": 112322, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": "380.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cca7286b-ed89-42c1-a0a2-8addc913f0c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T07:45:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, "well": 112250, "yield_estimation_method": "BAILING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": "116.80", "drawdown": "117.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ccdfe3b7-9bf7-47e0-aa5e-9780c8ec662b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T00:34:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, "well": 112319, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "0.75", "well_yield_unit": "GPM", "static_level": "32.65", "drawdown": "400.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cd22e325-4c0e-4835-91f8-0e959edf7b04", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-11-14T17:30:00Z", "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:30:00Z", "activity_submission": null, "well": 107072, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": "4.50", "well_yield_unit": "USGPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cd3d8def-77b7-44c7-aba7-75d461f265f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T00:44:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, "well": 112342, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cdd5c159-7655-48f3-b0c5-c1f05109ea23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:26:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:43Z", "activity_submission": null, "well": 112693, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ce4258c3-1d64-4194-91b8-9458ea9ae8ce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2013-09-11T00:09:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:09:59Z", "activity_submission": null, "well": 108027, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "9.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ce5ba5cb-a82e-4e03-a8e9-76c1b8f19e84", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T20:38:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:34Z", "activity_submission": null, "well": 112563, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ce741a53-822f-46f8-9aab-b06e53a39479", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-01T22:20:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, "well": 112827, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "150.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ce959e40-18c8-42c0-9523-01fe72b24c91", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:46:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:46:04Z", "activity_submission": null, "well": 112924, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cf174131-adb7-47ec-a2c6-78c892cbfeb6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T19:18:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, "well": 112873, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "200.00", "yield_estimation_duration": "3.50", "well_yield_unit": "GPM", "static_level": "3.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cf66e0e3-5ea4-4f4c-aa4e-4aaddc1993c5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-27T18:54:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-27T18:54:34Z", "activity_submission": null, "well": 112818, "yield_estimation_method": "OTHER", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "cf932721-ef9f-46f4-89bc-5cc7deac1e46", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T22:08:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, "well": 112738, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "11.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d03fdebd-446f-420a-a79a-35ac15174226", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-13T19:06:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, "well": 112616, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d04967d2-7bd9-43e0-8a45-ba14ff3e9039", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T19:25:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, "well": 112608, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d086fba5-98df-464d-8d83-efc426776bac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:48:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, "well": 112950, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "430.00", "yield_estimation_duration": "8.00", "well_yield_unit": "GPM", "static_level": "4.00", "drawdown": "13.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d09a9ef9-f96b-4722-8e15-0a3e80e4c033", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:57:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, "well": 112722, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "14.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d0cc602d-0c7c-4bd4-8a9b-15e93c080dee", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T17:49:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, "well": 113269, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "5.00", "drawdown": "95.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d0d3d259-437e-4d8d-b9f8-ad9d2177fb42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-22T17:01:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T17:01:16Z", "activity_submission": null, "well": 112851, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "35.00", "well_yield_unit": "GPM", "static_level": "525.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d0f67592-1d1f-4206-837f-13d6ccce10b8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T05:57:05Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, "well": 112421, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d1481d02-c70c-453e-aad7-c32c0ea8e909", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-20T19:18:00Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, "well": 113041, "yield_estimation_method": "BAILING", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d1bf5914-6e6c-4b0e-a8b5-7cc42ae04eac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T03:31:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, "well": 112479, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d1c134d7-10fd-4641-97d0-76de10ff74a1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-02-02T21:43:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-03-23T18:56:48Z", "activity_submission": null, "well": 110627, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "17.00", "yield_estimation_duration": null, "well_yield_unit": "IGM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d1f10672-8116-4933-adad-7b845fdb6db4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:22:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:47:00Z", "activity_submission": null, "well": 112329, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d214eded-b693-4c29-938c-d6dca64e361b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-29T16:15:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:11Z", "activity_submission": null, "well": 113209, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "35.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d23f0cbe-fcf7-4f04-8a04-cd50c26e8df3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T07:00:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, "well": 112575, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "35.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d260e159-f240-4296-9475-a7935020ec7e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-19T20:38:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:38:50Z", "activity_submission": null, "well": 112629, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d2ce2329-cc42-44cc-b8fc-047f3de856fd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:53:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, "well": 113192, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d31c4c06-8424-4f8c-85fe-23cd0d87c893", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-30T16:19:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-30T16:19:42Z", "activity_submission": null, "well": 113000, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "0.25", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d3929c44-a615-4cba-a3fc-f62773767765", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:16:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, "well": 113188, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d3e66147-e3a7-4a1d-ab84-a2a0af76254c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T18:07:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, "well": 112970, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "26.00", "drawdown": "34.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d3e6a0c2-cc0e-48df-9d86-00fc3e000059", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-28T19:17:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, "well": 112523, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "12.00", "drawdown": "22.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d416519a-5f88-4a90-a78d-70dddcea492c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:13:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:13:19Z", "activity_submission": null, "well": 112284, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.25", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d4b47831-3c93-446f-a9be-c9d3a4ec6bcc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T16:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T16:31:02Z", "activity_submission": null, "well": 113016, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "0.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d4e84d78-c832-4f0d-9831-707fdd261af4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T21:43:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, "well": 112988, "yield_estimation_method": "BAILING", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "10.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d525c3e4-bba2-4baf-a85b-c91b3a0d1c2f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:00:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, "well": 112301, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d55d2afc-c672-41bf-b960-a8cb5a6da756", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T22:12:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, "well": 112379, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d58bb04f-c9e9-44f2-a813-8a206f399909", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-20T22:51:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, "well": 112517, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "65.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d5a1ce6b-dfd1-467f-822f-09027e6cf000", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T16:31:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, "well": 112577, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "100.00", "yield_estimation_duration": "0.25", "well_yield_unit": "GPM", "static_level": "2.00", "drawdown": "15.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d5c2bc44-688c-49be-bc74-2d65cad79893", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T18:22:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, "well": 112470, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d609069a-117e-41d5-9dab-5e32fe5bf65e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:28:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, "well": 112720, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d6582093-fa13-4634-8f74-5b3153275bdc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T19:51:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:07Z", "activity_submission": null, "well": 112892, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d65b8722-572c-4966-8088-060eb3a58e77", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:06:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, "well": 112373, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "195.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d66a8a41-34ec-41cf-87bc-f07ad19f81e3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-17T17:30:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, "well": 112622, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d6c9bc08-660f-42ef-8671-972679b2890a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T19:17:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, "well": 112682, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d7296450-c370-4ebe-a72d-023633739391", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-04T20:19:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, "well": 113097, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "25.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d7347a6f-acc9-4aa5-a755-b93dbb23c43a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T22:16:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, "well": 113069, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d79a5879-1e70-4b30-b216-62519bf1a77d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-24T18:05:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, "well": 113147, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "18.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d7bceab3-022b-4ddc-a3f0-5925cc3bcf0b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T20:29:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, "well": 113134, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d7c724c0-f7c6-46cb-8269-4b166f764931", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T20:21:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, "well": 112880, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "16.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d7f80e04-3d04-4099-b513-299643a638ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-26T19:39:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-26T19:39:27Z", "activity_submission": null, "well": 113202, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d844e676-2784-47b5-bedd-6480b7dd7c7c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T22:14:41Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, "well": 112598, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d896b565-8d01-4a3b-a409-435206853ce0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T21:49:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, "well": 112377, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d8c5558f-afe3-46c0-87ce-66c90e1e147c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:59:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, "well": 112930, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d8f2c464-2c17-47d4-9486-cb7a95b23011", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T19:51:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, "well": 112861, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.20", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "60.00", "drawdown": "60.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d907a9bb-8e58-431a-8882-1748787409c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T21:10:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, "well": 112440, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d90acfcd-9a5c-433f-984f-d3446dadda0d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:03:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, "well": 112893, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d9757660-facd-4e63-b53b-d246b3fda741", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T22:51:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, "well": 112228, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "d9b34a22-ce69-4d2c-a720-b1b0fba294d3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-21T19:35:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, "well": 113295, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "24.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "da61ba27-8030-4409-bb88-0aa56ea5e2dd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-14T19:59:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T19:59:26Z", "activity_submission": null, "well": 112796, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1000.00", "yield_estimation_duration": "4.50", "well_yield_unit": "GPM", "static_level": "60.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "da78bf56-32e9-4c7f-8f53-56dd0452e0ec", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:43:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, "well": 113019, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "17.00", "yield_estimation_duration": "72.00", "well_yield_unit": "GPM", "static_level": "39.00", "drawdown": "172.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "da851cbc-751c-4b53-abe6-62bf9f8dc355", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T20:40:29Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, "well": 112928, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "105.60", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dab522da-ce1c-49c3-90f0-150b5d06ab8a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T20:20:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, "well": 113021, "yield_estimation_method": "BAILING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "db77dceb-b581-4c42-8e97-acc07fa9adc2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T21:20:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, "well": 113281, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "6.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "108.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "db8b6754-ff7d-40cc-8abb-128630b3f7c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T17:05:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, "well": 112964, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "18.75", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "10.20", "drawdown": "49.80", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "db8fbf90-6cca-472d-87b0-82db19e8613c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:19:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, "well": 112463, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dbbdafa0-1f0f-40b9-9a78-d8d65a314722", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:19:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, "well": 112659, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dc3f7078-3686-4d4b-ae29-a83ba345d334", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T18:52:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, "well": 112695, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.30", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dc5fa3c1-33b9-4677-bd8e-abd485e33451", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T22:44:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, "well": 112452, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dce75a95-5af5-4877-9c72-839163a43db6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-13T19:21:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, "well": 113180, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "180.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dcf9a4dd-3b8a-4b93-86ec-224eb0e86a79", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T23:01:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, "well": 112543, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dd1d6408-7012-4e4a-93fd-4f587121fbf9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T19:48:34Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, "well": 112221, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dd4e16b2-c625-46a5-acff-89b3f92dfe96", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T17:51:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, "well": 112467, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dda25c0c-86ba-4b12-917d-033a1cab472d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T01:14:04Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, "well": 112232, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "3.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "de07c31f-45c9-4e43-8efa-0c39784e48c0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:58:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:58:32Z", "activity_submission": null, "well": 112309, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "de9d1f0d-d0fc-44e4-a2c9-451ccb2a8026", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-25T18:08:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, "well": 113309, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ded1e5f6-7439-4039-bc92-0baa11c23d35", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T17:15:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, "well": 113125, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "df23492f-482b-4022-88ca-9ef717361500", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-16T19:32:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T19:32:44Z", "activity_submission": null, "well": 112617, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "62.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "dfd24284-046d-4999-b3e1-9ee442883720", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T23:15:08Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, "well": 112601, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e003f4f4-8214-465b-a0fc-f2194ce6743f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-15T20:09:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, "well": 112435, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e10f49af-b378-42da-b861-103234552583", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T22:23:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:26Z", "activity_submission": null, "well": 112692, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e19bafc3-d474-4990-8c24-b0793db9d725", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-10T18:11:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:11:13Z", "activity_submission": null, "well": 113018, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "0.25", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e1a76c16-732d-4aff-a1aa-98dad2fb551c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T22:30:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, "well": 112670, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "68.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e1b9369a-2188-4637-84b0-2d2e63acca2c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-03T20:09:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:12Z", "activity_submission": null, "well": 112222, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e1c820a1-dcb7-4d36-bcad-9ae61f5c726c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:43:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, "well": 112781, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e24b8274-fcce-4681-98f2-17edce376d76", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-15T16:46:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, "well": 112800, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "2.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e3680164-7d3c-4807-b4d8-7e530df9f255", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-14T14:25:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, "well": 112846, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e39bb6ca-4ef7-4154-9bdf-1e7dd2c164c3", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T18:49:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, "well": 112332, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e4106de5-3cfe-4439-8429-97ed59b89eb0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T19:23:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, "well": 113130, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e450e1a0-e7fe-46f2-baf3-ec23cad6d189", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T17:34:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T17:34:33Z", "activity_submission": null, "well": 113011, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e4dff645-82c5-47dc-adda-92b526ec0647", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T00:32:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T00:32:57Z", "activity_submission": null, "well": 112657, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e4ecec6a-e5ca-4760-bd33-bb4764011f5f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:06:54Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:06:54Z", "activity_submission": null, "well": 113076, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e509d0a2-c6f5-41df-b1dd-011436e80632", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:31:02Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, "well": 112547, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e563b989-3358-44d1-a49f-81185accfdf8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T04:58:24Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, "well": 112304, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e591603a-77bb-4a52-862a-11f277ce7f00", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-24T18:07:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:07Z", "activity_submission": null, "well": 112868, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "95.00", "drawdown": "294.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e59cc2d7-fcf3-412b-b227-22e25ef25017", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-10T22:00:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T22:00:44Z", "activity_submission": null, "well": 112769, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e5e5126a-2ba8-433f-b281-454689c45b45", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:53:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, "well": 112793, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e5fbd97d-e979-4205-b758-e29d2cabcdbc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T01:26:58Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, "well": 112344, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e63c797d-ba6f-4e77-8c2e-79c732c4647e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T00:07:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, "well": 112673, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "71.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e6aa6ee9-502f-4bfd-9eb1-980e8b6ae6c6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-14T22:26:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, "well": 113183, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "872.00", "yield_estimation_duration": "24.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e6cfa830-2ec6-4751-b845-8518049cfb57", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T19:52:18Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, "well": 112593, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e732ae6c-d652-4923-8470-c6cc68bb3f6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:52:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, "well": 112275, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e76a849e-ddd7-4d8e-9ac4-d6c765475f16", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-07T23:41:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T23:41:35Z", "activity_submission": null, "well": 113015, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e8082740-988e-4201-a53c-8100926bfe92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T20:34:28Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, "well": 112687, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e86621e8-5669-41ab-b97e-d0d76ec554cd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T07:19:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, "well": 112488, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e8720a4b-7dac-4610-9b6f-36745b2b2d68", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T20:24:06Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, "well": 112983, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "33.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e8829087-7177-4678-88e5-79df603c8314", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:30:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, "well": 112755, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e955130d-97a4-481b-b5c1-69c7a057fe10", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-28T18:03:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:17Z", "activity_submission": null, "well": 113205, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "30.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e98b2e32-ae3b-4ea6-9d08-3d0e98b94b1e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-11T17:58:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, "well": 112330, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "e9a26d6a-baaa-49c7-83ff-7aa45be8e595", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T18:51:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, "well": 112681, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "7.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ea72de6f-b155-41e9-b94b-2705835110cc", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-11T23:19:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:53Z", "activity_submission": null, "well": 113027, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ea9bc565-72d2-4a88-a2c4-f84f7d37f286", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:59:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, "well": 113271, "yield_estimation_method": "BAILING", "yield_estimation_rate": "9.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "eb5252aa-f771-404f-b277-523cec5888d8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T02:27:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, "well": 112947, "yield_estimation_method": "PUMPING", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ebb0473d-156d-4232-96b7-b49b96a3044e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T19:56:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:56:53Z", "activity_submission": null, "well": 112407, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "85.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ebb7bf79-f778-43d1-b6b0-e89e90696a92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T21:37:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:37:19Z", "activity_submission": null, "well": 112935, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "9.66", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ecb49a82-36e6-426b-989d-500b23417cfe", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T02:18:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, "well": 112235, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ed82fb6a-cec2-44a1-aea2-84060e8fa23f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T20:11:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, "well": 112862, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "27.00", "drawdown": "95.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "edf20c2a-7312-47d3-921b-6586eede707c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:18:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, "well": 112895, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ee7f8f62-3031-43dd-ae22-dbd67142f63f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T22:42:48Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, "well": 112566, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ee84fdaa-4888-4671-9ac4-ac94cc95e357", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T19:14:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, "well": 112363, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ee878cea-9147-432d-a0f7-a52c465dbdce", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T21:02:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, "well": 112794, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ee935e96-587a-465c-888b-de70f91585e1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T19:39:03Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:03Z", "activity_submission": null, "well": 112923, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "40.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "eea5e032-7873-4ec8-903f-dca014ea4da9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T21:05:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, "well": 112273, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "eec76a9e-9d7d-42e3-ba78-de4b95da5227", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T05:35:11Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T05:35:11Z", "activity_submission": null, "well": 112778, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "eee63789-a53f-488f-8455-7d27a19c6755", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-18T19:13:30Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, "well": 113036, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ef16c336-15e8-4627-9771-d5052a66e1bd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T20:54:12Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, "well": 112272, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ef94111d-5ef0-4cc1-b98c-a907b194bda4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T19:41:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, "well": 112562, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "efd01c20-3f8c-4c5d-960c-93084f0e21de", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T22:51:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, "well": 112699, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "13.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "efd6b68b-f932-460e-b951-91a34f26cb36", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T22:20:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, "well": 112278, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "efe1f81d-8727-4a71-9e21-08ae11dbbc42", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T19:25:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, "well": 112294, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "11.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f051a616-4e1b-4783-81a1-4a42a1481f6d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:37:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, "well": 112756, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "5.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f098ad9f-8a0d-4864-86d2-cb9c2a08a330", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-13T21:13:57Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, "well": 110000, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f134d1b2-cb09-4c8b-a88b-b2c95abcc730", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:30:53Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:53Z", "activity_submission": null, "well": 113138, "yield_estimation_method": "BAILING", "yield_estimation_rate": "40.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f16620e2-d20c-4add-94c7-72125ebc8362", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-23T18:11:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, "well": 112857, "yield_estimation_method": "BAILING", "yield_estimation_rate": "11.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "318.20", "drawdown": "388.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f16cacda-92ac-4833-9262-7bc952c94a6b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-31T19:09:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, "well": 112719, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": "91.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f17f3719-afde-4645-b8a6-33693d96f78c", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-07T19:11:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, "well": 112835, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "4.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f1a50172-ac93-4edf-9ca5-77b7abfe912d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-03T23:04:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, "well": 112528, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "40.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f1a776a4-11fa-47a0-9886-ea8e0d95c17d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-24T21:39:22Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, "well": 112814, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f1c88b57-752c-487f-966b-6f1fd32efc38", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:47:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, "well": 112979, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "15.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "0.00", "drawdown": "25.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f1d34aec-3763-4c9c-8d17-a37fda0eac23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-06-22T00:43:32Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, "well": 113191, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "80.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f1e68117-7976-415c-9cde-5a24b0bd4007", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:21:38Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, "well": 113252, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "45.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f1fabd11-64d0-4ce5-a202-0c28a23cd514", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T19:12:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, "well": 112697, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f395a5d8-a653-4fd8-920a-f3966a9b048e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T18:30:49Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, "well": 113270, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "8.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f3dcc39f-251f-4dd9-ae51-0a014d3cae75", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T18:56:31Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, "well": 112919, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "1.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f3e96472-510c-4cb3-8516-e9ee1f4846b1", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T22:12:33Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, "well": 113143, "yield_estimation_method": "BAILING", "yield_estimation_rate": "1.50", "yield_estimation_duration": "0.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f3f4cc64-6b91-4caa-9c2d-37a4d3ebc627", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T06:01:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:01:15Z", "activity_submission": null, "well": 112307, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "25.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "38.90", "drawdown": "200.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f43c6b46-fec8-4b55-a824-53087d69398d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-20T20:03:39Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:03:39Z", "activity_submission": null, "well": 113276, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f44dcb32-4105-4753-a5a9-499df6894b47", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T20:31:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:31:15Z", "activity_submission": null, "well": 112792, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f493265b-8f0b-48b0-ac95-e1566ebbdcf2", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-07T22:29:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:19Z", "activity_submission": null, "well": 112285, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f49aac83-419b-4404-a8f3-66ccff346bb9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:37:37Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, "well": 112269, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f50cc963-ae6d-4c48-a332-d4e9c557ae23", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T19:53:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:21Z", "activity_submission": null, "well": 112535, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "75.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "9.00", "drawdown": "9.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f50f5918-d201-44ca-92b8-d814fd9ac411", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-05-18T21:10:16Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, "well": 113137, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "3.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f57eb592-3275-4177-8af6-7028e084ee8f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T06:11:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, "well": 112779, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f5844f35-7dc0-4e69-b76c-8a42ebb6c3d6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-17T22:53:13Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, "well": 112495, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f59cc605-e1ea-4d62-b10b-4794ff7115c9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-24T16:08:07Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, "well": 113300, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.90", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "184.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f5ae9145-e400-41a0-94ff-04374c959bc0", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-11T02:42:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, "well": 112773, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f5b94024-224d-4dbc-a5ca-4d60eb394497", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-04T06:37:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:37:50Z", "activity_submission": null, "well": 112247, "yield_estimation_method": "BAILING", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": "47.50", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f5ec2f28-7a2f-43b6-b22e-766f06039ea7", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-26T17:22:50Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, "well": 112676, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "30.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "18.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f66ff5fe-0872-43d3-8237-47fa1f4ee066", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T22:13:43Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, "well": 112938, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f673f06e-e4db-4730-95bc-3d7d1ba94788", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T22:08:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, "well": 112587, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1500.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f6d4fb37-4335-4483-88f6-c44e6607f98d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T19:38:45Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, "well": 112978, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "1.00", "drawdown": "2.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f6fdb229-af64-4799-953f-52978473b158", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-27T23:15:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, "well": 112943, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "300.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f76a88b4-1f49-45b3-aaa3-28a43afdebb6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2015-03-08T19:26:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, "well": 109912, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "25.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f77d531d-e109-4614-9636-b7cdd1ad7973", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T18:41:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, "well": 112403, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f7866cda-4b9d-4234-a372-49a226543463", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-10T21:43:55Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:54:08Z", "activity_submission": null, "well": 112586, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "1.50", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f7a8a029-220c-4bda-8b9d-426ccbd0dab4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-08T16:08:46Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, "well": 112753, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "8.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f84f2cb4-f4e2-4ba5-903f-0e5eecf92d2e", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T13:48:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, "well": 112455, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f8b59831-d729-4428-995f-e329f20070f4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-12T18:10:26Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, "well": 112356, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "50.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "16.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "f9e929a7-2e78-4320-8c0f-4025fbda7c98", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-16T14:32:15Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, "well": 112458, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fa218397-d70e-4a4d-8542-dda91a635e7f", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:30:47Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, "well": 112550, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "180.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fa7997f4-e31a-4dd9-9d9d-ce10eedd6deb", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-28T15:48:56Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, "well": 112960, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "46.00", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fad33459-0c65-4927-b0f3-da96513dcaf6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-09T17:54:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, "well": 112559, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fae90285-45c3-40c7-b537-bb7399a4ee74", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-25T20:41:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, "well": 113060, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fafea740-14f4-43c3-a0a4-24656243f16d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-07-13T18:09:25Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:25Z", "activity_submission": null, "well": 113251, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "20.00", "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": "3.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fba02e27-bdef-4476-bcab-0f7254fefbe9", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-05T18:24:10Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:24:10Z", "activity_submission": null, "well": 112268, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fbd413a6-900f-4c73-9895-84935904110d", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-08T22:10:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, "well": 112302, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "100.00", "yield_estimation_duration": "15.50", "well_yield_unit": "GPM", "static_level": "140.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fc24681d-7157-4c30-b514-d0a783353afd", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T22:27:52Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:27:52Z", "activity_submission": null, "well": 112905, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fc746784-c2ad-4829-b795-d925b270de92", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-12T02:50:40Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, "well": 112603, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fc75d462-cf3b-4554-a54b-3a320ff6e344", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T14:04:21Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, "well": 112545, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fccc2564-3001-4ca1-ad74-4612373d04d4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-05T20:50:44Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, "well": 112538, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "60.00", "yield_estimation_duration": "3.00", "well_yield_unit": "GPM", "static_level": "156.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fcf79614-8d2b-4ceb-9aee-1384fc9c95ab", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-06T20:20:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, "well": 112830, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": "1.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fd22b16f-4d3b-444d-9ef0-3ad44ba3b086", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-26T20:11:17Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, "well": 112894, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "12.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fd33ce56-0b53-407c-b95f-b067d8166dd5", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-25T01:59:27Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:59:27Z", "activity_submission": null, "well": 112661, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fd7b8a27-58ca-4f10-ab0c-f5b265a10156", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-09T20:52:59Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, "well": 112312, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "80.00", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fdd792af-504b-42d9-b091-a00765ed92ac", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-02-01T06:51:14Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, "well": 112728, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "120.00", "yield_estimation_duration": "5.00", "well_yield_unit": "GPM", "static_level": "86.00", "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fe03a021-3027-4dfa-b5a5-acc56ca5b4e4", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-03-09T18:48:36Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, "well": 112841, "yield_estimation_method": "BAILING", "yield_estimation_rate": "10.00", "yield_estimation_duration": "1.50", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fe16734a-28e7-4bdb-9a02-9ce137969845", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-04-27T18:22:01Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, "well": 113077, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fe1c35b6-8192-4dcd-b71e-d3dcf9b464ae", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-27T23:50:55Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, "well": 112705, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "2.75", "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fe530ba6-34e5-43ab-8b24-ec81336e1df8", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-11T20:29:35Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:29:35Z", "activity_submission": null, "well": 112595, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ff1cb2b6-7878-4982-a41b-eb27008dffe6", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-14T22:56:19Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, "well": 112415, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ff46456e-5b52-4a08-96b9-d04b62dd529a", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-06T18:53:09Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, "well": 112551, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": "15.00", "yield_estimation_duration": "2.00", "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "ffe350b0-d737-4ac5-9952-60f5dc26621b", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2017-01-04T19:40:42Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-04T19:40:42Z", "activity_submission": null, "well": 112530, "yield_estimation_method": "AIR_LIFT", "yield_estimation_rate": null, "yield_estimation_duration": null, "well_yield_unit": "GPM", "static_level": null, "drawdown": null, "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.productiondata", "pk": "fffb6109-43da-4c3a-b2bb-bf7b4462a2aa", "fields": {"create_user": "PROXY_EWELLS_USER", "create_date": "2016-12-06T02:33:20Z", "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, "well": 112280, "yield_estimation_method": "PUMPING", "yield_estimation_rate": "30.00", "yield_estimation_duration": "4.00", "well_yield_unit": "GPM", "static_level": "6.00", "drawdown": "6.50", "hydro_fracturing_performed": false, "hydro_fracturing_yield_increase": null}}, {"model": "wells.aquifervulnerabilitycode", "pk": "H", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "High", "display_order": 2, "effective_date": "1970-01-01T00:00:00Z", "expiry_date": null}}, {"model": "wells.aquifervulnerabilitycode", "pk": "L", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Low", "display_order": 4, "effective_date": "1970-01-01T00:00:00Z", "expiry_date": null}}, {"model": "wells.aquifervulnerabilitycode", "pk": "M", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Moderate", "display_order": 6, "effective_date": "1970-01-01T00:00:00Z", "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "BLACK", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:55:12.473Z", "update_user": "steve", "update_date": "2018-09-12T18:55:12.473Z", "description": "Black", "display_order": 1, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "BLACK_FLECKS", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:55:33.425Z", "update_user": "steve", "update_date": "2018-09-12T18:55:33.425Z", "description": "Black flecks", "display_order": 2, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "BROWN", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:55:43.182Z", "update_user": "steve", "update_date": "2018-09-12T18:55:43.182Z", "description": "Brown", "display_order": 3, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "CLEAR", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:56:04.676Z", "update_user": "steve", "update_date": "2018-09-12T18:56:04.676Z", "description": "Clear / none", "display_order": 4, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "GREY", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:56:18.106Z", "update_user": "steve", "update_date": "2018-09-12T18:56:18.106Z", "description": "Grey", "display_order": 5, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "MILKY", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:56:47.103Z", "update_user": "steve", "update_date": "2018-09-12T18:56:47.103Z", "description": "Slight colour / milky", "display_order": 7, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "ORANGE", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:56:29.695Z", "update_user": "steve", "update_date": "2018-09-12T18:56:29.695Z", "description": "Orange", "display_order": 6, "effective_date": null, "expiry_date": null}}, {"model": "wells.waterqualitycolour", "pk": "OTHER", "fields": {"create_user": "steve", "create_date": "2018-09-12T18:56:56.903Z", "update_user": "steve", "update_date": "2018-09-12T18:56:56.903Z", "description": "Other", "display_order": 8, "effective_date": null, "expiry_date": null}}, {"model": "wells.hydraulicproperty", "pk": "017c35ad-e33c-42d6-94a1-15f52d693d61", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T12:02:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T12:02:14Z", "well": 113065, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "020e66c2-ae70-4551-a6ae-569521955ae5", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T13:15:46Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T13:15:46Z", "well": 112507, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "1b7d62e6-11aa-4014-a6cf-dc8ec4d93caf", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T11:21:18Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T11:21:18Z", "well": 112777, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "20ee849b-ebb2-4914-838b-cce1cef80cee", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-10T12:16:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-10T12:16:35Z", "well": 100500, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "2233caf8-fb67-40e1-90fb-4777941340f0", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T12:14:13Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T12:14:13Z", "well": 112986, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "2fadff9b-9e49-4c88-90e0-861f1ff7d31b", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T11:39:40Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T11:39:40Z", "well": 112485, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "3137ce91-517b-4607-95a5-01e04bb2263c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T17:08:36Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T17:08:36Z", "well": 113067, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "37c9dcf2-8420-4b11-b6e8-c0ef4a574b6e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-18T12:41:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-18T12:41:21Z", "well": 112961, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "413a06cf-9f0f-40dc-9b4b-c4b54166183f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-06-14T15:36:39Z", "update_user": "PROXY_WELLS", "update_date": "2017-06-14T15:36:39Z", "well": 113183, "avi": null, "storativity": null, "transmissivity": "864", "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "41755a5e-bd4d-4670-a88a-69dd7a44edad", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-01-15T21:03:21Z", "update_user": "PROXY_WELLS", "update_date": "2012-01-15T21:03:21Z", "well": 334, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "41f047f2-8f17-4f00-a602-48c6b13653cf", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-01-29T17:51:54Z", "update_user": "PROXY_WELLS", "update_date": "2012-01-29T17:51:54Z", "well": 123, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "48e578a6-f224-45f6-ae70-b2b0e022c70a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T12:30:25Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T12:30:25Z", "well": 113301, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "4a6050d5-033e-4875-a45a-9808fb4634f4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T13:15:42Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T13:15:42Z", "well": 112506, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "5197c195-ef3d-41c7-96c1-a41149c1a929", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-07-11T10:10:50Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-11T10:10:50Z", "well": 113189, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "5827c9be-a938-4b26-9e85-5292b0c492c7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T17:08:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T17:08:21Z", "well": 112755, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "59f0e480-36e1-47a8-84c9-0f2f4aeff886", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-15T14:01:43Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-15T14:01:43Z", "well": 105417, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "5e056dd4-0cdb-46e2-8182-6baeafcfdba1", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-12-15T13:57:22Z", "update_user": "PROXY_WELLS", "update_date": "2012-12-15T13:57:22Z", "well": 100127, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "614fad5e-45a8-4850-a6c5-466c83509b7d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T12:02:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T12:02:21Z", "well": 113553, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "633e78aa-789b-4fee-a3fc-6f3becb33ad6", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T11:21:31Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T11:21:31Z", "well": 112789, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "6344b780-df05-4cd1-82bd-8518b79f7d95", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-11-24T13:33:53Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:33:53Z", "well": 113013, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "714a7786-6dfc-4127-940d-0ea8fdbf50c4", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T17:08:42Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T17:08:42Z", "well": 113125, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "74069f83-c7ed-4d67-b55f-57d24791b1aa", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:50:12Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:50:12Z", "well": 112962, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "74dbc26d-9f14-4a44-af12-9894162a7e75", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-12-18T18:01:19Z", "update_user": "PROXY_WELLS", "update_date": "2012-12-18T18:01:19Z", "well": 102364, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "78bd0b48-f097-4570-ab9f-b5168239b5ce", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T12:02:10Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T12:02:10Z", "well": 112824, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "79cd3cc7-40ab-4353-bf3f-ee81d61bd713", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-03-15T13:21:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-03-15T13:21:24Z", "well": 109912, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "7adcee5c-3150-41e5-82f8-6791a9f2aceb", "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-14T11:15:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-14T11:15:55Z", "well": 108025, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "876a6e95-e75f-401a-b939-591be917b3ce", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T13:15:51Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T13:15:51Z", "well": 112743, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "8ba6cc51-e981-44e8-bdc3-b27eccd661ba", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T11:21:36Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T11:21:36Z", "well": 112800, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "91387fe7-1027-4158-84f8-b24b222d3f2c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-24T13:15:38Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-24T13:15:38Z", "well": 112312, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "94ff8da7-bc3f-4432-bacf-e3aea2b10757", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-18T12:45:57Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-18T12:45:57Z", "well": 112268, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "ab15caac-a46a-4b5f-a321-73c09b193409", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-18T12:41:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-18T12:41:14Z", "well": 112725, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "adb829f9-2370-4cd9-a86d-fd1c918f494c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T11:39:45Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T11:39:45Z", "well": 112498, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "b27bff28-5298-4548-9419-90441c50b65e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T11:56:13Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T11:56:13Z", "well": 112967, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "b7463937-f053-46d1-87c5-908567cc8f20", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T13:37:18Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T13:37:18Z", "well": 112939, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "bd5e3d30-042e-4270-b4a8-b6dc5b7aa06d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T11:22:22Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T11:22:22Z", "well": 112615, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "c21b7045-2a6a-47ed-8fba-557b89e6461e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-01-08T11:56:46Z", "update_user": "PROXY_WELLS", "update_date": "2013-01-08T11:56:46Z", "well": 100200, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "c5a755a6-debd-4246-887c-9a910463bfa7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-15T22:07:01Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-15T22:07:01Z", "well": 112895, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "c917a0d7-b9a0-4678-b0da-3c1eb21f8e3d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-18T12:41:18Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-18T12:41:18Z", "well": 112960, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "cac717c6-f8e3-4d03-8d2d-9c5eef9c24fa", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-27T11:36:29Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-27T11:36:29Z", "well": 113127, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "ce48c45e-a3f6-454e-91e2-4faa400a1246", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T11:21:41Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T11:21:41Z", "well": 113126, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "d060d358-4b85-4e5c-9abd-d5db72b2b5c7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T12:02:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T12:02:07Z", "well": 112658, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "d17be5f5-52a0-47d6-83f7-7034f76641da", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T11:40:11Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T11:40:11Z", "well": 113295, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "d4d14e2b-17a1-4ce4-9092-6cc85f30a88c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:49:45Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:49:45Z", "well": 112718, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "d6f34058-b18e-4422-8c40-7d3b5099d000", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T11:51:18Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T11:51:18Z", "well": 112982, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "d7e16862-1bf1-440b-9d80-1c418ac4df1a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-18T12:41:10Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-18T12:41:10Z", "well": 112719, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "d91c9c25-1c08-4b3a-917b-b8d5a165a76a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:49:50Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:49:50Z", "well": 112955, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "dd2abf9e-4cf6-41ca-b189-59c87dd78ef7", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-18T12:46:03Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-18T12:46:03Z", "well": 112476, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "e004ed00-e6e0-4e14-8669-ff88850bdba8", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T11:40:05Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T11:40:05Z", "well": 113291, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "e0a6fd1a-19e9-433d-b21f-b2eaeb5b9d50", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:50:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:50:07Z", "well": 112957, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "e1b9d214-a412-4f8e-bbfc-86eeb34ea224", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-15T14:02:08Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-15T14:02:08Z", "well": 112963, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "e51022dd-7d34-4c2e-865a-b3ab035e3d20", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T12:14:04Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T12:14:04Z", "well": 112959, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "e7f42630-3146-44b6-ac13-6c2586b4792a", "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-10-16T10:48:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-16T10:48:12Z", "well": 113552, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "ed230db2-a7f0-4e16-b3f7-00b8fe903225", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T11:21:22Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T11:21:22Z", "well": 112778, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "eee320bd-bf11-45ec-a8bc-767f5c3b923f", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:50:23Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:50:23Z", "well": 112976, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "efc4e166-f06b-40d6-9994-d95865ae4425", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-26T11:21:27Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-26T11:21:27Z", "well": 112787, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "f4d622fa-3609-4ada-afce-99f599f5b37c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:49:41Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:49:41Z", "well": 112302, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "f516ee81-ca17-419b-9d2f-9580e9e8464e", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T15:50:17Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T15:50:17Z", "well": 112972, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "f755144f-d298-41d2-a7f3-9cae90259b7d", "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-02-07T16:16:41Z", "update_user": "PROXY_WELLS", "update_date": "2012-02-07T16:16:41Z", "well": 126, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "fb51a9f7-dad9-450a-9861-fac7123b1f71", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-16T11:22:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-16T11:22:14Z", "well": 112429, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "wells.hydraulicproperty", "pk": "fda0a7ab-d1d9-403c-9293-a1e08769eb6c", "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-08-19T13:37:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-19T13:37:21Z", "well": 112941, "avi": null, "storativity": null, "transmissivity": null, "hydraulic_conductivity": null, "specific_storage": null, "specific_yield": null, "testing_method": null, "testing_duration": null, "analytic_solution_type": null, "boundary_effect": null}}, {"model": "submissions.wellactivitycode", "pk": "ALT", "fields": {"create_user": "", "create_date": null, "update_user": null, "update_date": null, "description": "Alteration report", "display_order": 2, "effective_date": null, "expiry_date": null}}, {"model": "submissions.wellactivitycode", "pk": "CON", "fields": {"create_user": "", "create_date": null, "update_user": null, "update_date": null, "description": "Construction report", "display_order": 1, "effective_date": null, "expiry_date": null}}, {"model": "submissions.wellactivitycode", "pk": "DEC", "fields": {"create_user": "", "create_date": null, "update_user": null, "update_date": null, "description": "Decomission report", "display_order": 3, "effective_date": null, "expiry_date": null}}, {"model": "submissions.wellactivitycode", "pk": "LEGACY", "fields": {"create_user": "", "create_date": null, "update_user": null, "update_date": null, "description": "Legacy record", "display_order": 5, "effective_date": null, "expiry_date": null}}, {"model": "submissions.wellactivitycode", "pk": "STAFF_EDIT", "fields": {"create_user": "", "create_date": null, "update_user": null, "update_date": null, "description": "Staff edit", "display_order": 4, "effective_date": null, "expiry_date": null}}, {"model": "aquifers.aquifermaterial", "pk": "B", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Bedrock", "display_order": 2, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifermaterial", "pk": "G", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Gravel", "display_order": 4, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifermaterial", "pk": "S", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Sand", "display_order": 6, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifermaterial", "pk": "SG", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Sand and Gravel", "display_order": 8, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "1a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Unconfined sand and gravel - large river system", "display_order": 2, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "1b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Unconfined sand and gravel aquifer - medium stream system", "display_order": 4, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "1c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Unconfined sand and gravel aquifer - small stream system", "display_order": 6, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "2", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Unconfined sand and gravel - deltaic", "display_order": 8, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "3", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Unconfined sand and gravel - alluvial or colluvial fan", "display_order": 10, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "4a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Unconfined sand and gravel - late glacial outwash", "display_order": 12, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "4b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Confined sand and gravel - glacial", "display_order": 14, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "4c", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Confined sand and gravel - glacio-marine", "display_order": 16, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "5a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Fractured sedimentary rock", "display_order": 18, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "5b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Karstic limestone", "display_order": 20, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "6a", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Flat-lying to gently-dipping volcanic bedrock", "display_order": 22, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifersubtype", "pk": "6b", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Fractured crystalline bedrock", "display_order": 24, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquiferproductivity", "pk": "H", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "High", "display_order": 2, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquiferproductivity", "pk": "L", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Low", "display_order": 4, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquiferproductivity", "pk": "M", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Moderate", "display_order": 6, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquiferdemand", "pk": "H", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "High", "display_order": 2, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquiferdemand", "pk": "L", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Low", "display_order": 4, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquiferdemand", "pk": "M", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Moderate", "display_order": 6, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.wateruse", "pk": "D", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Domestic", "display_order": 2, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.wateruse", "pk": "M", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Multiple", "display_order": 4, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.wateruse", "pk": "PD", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Potential Domestic", "display_order": 6, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.qualityconcern", "pk": "I", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Isolated", "display_order": 2, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.qualityconcern", "pk": "L", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Local", "display_order": 4, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.qualityconcern", "pk": "N", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "None", "display_order": 8, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.qualityconcern", "pk": "R", "fields": {"create_user": "DATALOAD_USER", "create_date": "2018-01-01T08:00:00Z", "update_user": "DATALOAD_USER", "update_date": "2018-01-01T08:00:00Z", "description": "Regional", "display_order": 6, "effective_date": "1970-01-01T08:00:00Z", "expiry_date": null}}, {"model": "aquifers.aquifer", "pk": 1, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:07:39Z", "aquifer_name": null, "location_description": "Floods; Harrison; Hope", "material": "SG", "subtype": "1a", "area": "7.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments; glaciofluvial and fluvial gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 2, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:31:59Z", "aquifer_name": null, "location_description": "Chawathil", "material": "SG", "subtype": "1a", "area": "7.1", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fraser River Sediments; Glacial, glaciofluvial and fluvial gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 3, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:32:20Z", "aquifer_name": null, "location_description": "Laidlaw", "material": "SG", "subtype": "1a", "area": "9.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 4, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:32:32Z", "aquifer_name": "Aggasiz", "location_description": "Aggasiz/Sea Bird Island", "material": "SG", "subtype": "1a", "area": "63.3", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 5, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:32:42Z", "aquifer_name": null, "location_description": "Chehalis", "material": "SG", "subtype": "3", "area": "16.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 6, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:07:19Z", "aquifer_name": "Chilliwack-Rosedale", "location_description": "Chilliwack-Rosedale", "material": "SG", "subtype": "1a", "area": "141.5", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments; Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 7, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:53:01Z", "aquifer_name": null, "location_description": "Harrison Mills", "material": "SG", "subtype": "1a", "area": "6.2", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 8, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:53:12Z", "aquifer_name": "Vedder River Fan", "location_description": "Vedder Crossing", "material": "SG", "subtype": "3", "area": "53.8", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 9, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:53:22Z", "aquifer_name": null, "location_description": "Chilliwack River; Cultus Lake", "material": "SG", "subtype": "1b", "area": "14.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Channel gravel & sand, outwash gravel; Salish Sediments; Sumas Drift", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 10, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T11:53:33Z", "aquifer_name": null, "location_description": "Mouth of Sleese Creek", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "M", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 11, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T13:42:22Z", "aquifer_name": null, "location_description": "Lake Erroch/Deroche Creek", "material": "SG", "subtype": "4a", "area": "13.2", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Sumas Drift", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 12, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T13:42:33Z", "aquifer_name": "Nicomen Slough", "location_description": "Nicomen Slough", "material": "SG", "subtype": "1a", "area": "60.2", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 13, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T13:42:45Z", "aquifer_name": null, "location_description": "Norrish Creek", "material": "SG", "subtype": "3", "area": "2.3", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 14, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:03:31Z", "aquifer_name": "Hatzic Prairie", "location_description": "Hatzic Prairie", "material": "SG", "subtype": "1a", "area": "10.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Salish Sediments; Fraser River Sediments", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 15, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-07-20T12:20:59Z", "aquifer_name": "Abbotsford-Sumas", "location_description": "Abbotsford -Sumas", "material": "SG", "subtype": "4a", "area": "94.9", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Sumas Drift; glacial outwash", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 16, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T13:54:14Z", "aquifer_name": null, "location_description": "Mount Lehman", "material": "SG", "subtype": "4a", "area": "5.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Sumas Drift", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 17, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:02:45Z", "aquifer_name": null, "location_description": "Mission Floodplain", "material": "SG", "subtype": "1a", "area": "7.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 18, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T14:59:04Z", "aquifer_name": null, "location_description": "Mission", "material": "B", "subtype": "5a", "area": "49.0", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Tertiary bedrock", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 19, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:08:44Z", "aquifer_name": "Grant Hill", "location_description": "Grant Hill", "material": "B", "subtype": "5a", "area": "56.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Tertiary bedrock", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 20, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T13:55:00Z", "aquifer_name": "Columbia Valley", "location_description": "Columbia Valley", "material": "SG", "subtype": "4a", "area": "15.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Sumas Drift; Salish Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 21, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:16:22Z", "aquifer_name": "Sumas Prairie", "location_description": "Sumas Prairie", "material": "SG", "subtype": "1a", "area": "97.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments; Fraser River Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 22, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T14:06:46Z", "aquifer_name": null, "location_description": "Matsqui Prairie", "material": "SG", "subtype": "1a", "area": "45.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments; Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 23, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T14:06:56Z", "aquifer_name": null, "location_description": "North of Abbotsford", "material": "SG", "subtype": "4a", "area": "3.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sumas Drift", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 24, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-07-20T12:21:25Z", "aquifer_name": null, "location_description": "Glen Valley", "material": "SG", "subtype": "1a", "area": "19.2", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fraser River Sediments; Salish Sediments", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 25, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:02:08Z", "aquifer_name": null, "location_description": "Miracle Valley", "material": "SG", "subtype": "4b", "area": "14.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fort Langley Formation? Vashon Drift?", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 26, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:05:44Z", "aquifer_name": null, "location_description": "Kanaka/Whonnock Creek", "material": "SG", "subtype": "4b", "area": "15.0", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drfit? Fort Langley Formation?", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 27, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:21:19Z", "aquifer_name": "Aldergrove AB", "location_description": "Aldergrove AB", "material": "SG", "subtype": "4c", "area": null, "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 28, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:18:28Z", "aquifer_name": null, "location_description": "Northwest of Clearbrook", "material": "SG", "subtype": "4b", "area": "68.7", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 29, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:00:05Z", "aquifer_name": null, "location_description": "North of Mt. Lehman", "material": "SG", "subtype": "4b", "area": "3.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 30, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T14:28:48Z", "aquifer_name": null, "location_description": "North of Dennison", "material": "SG", "subtype": "4b", "area": "4.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 31, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:09:49Z", "aquifer_name": null, "location_description": "Glen Valley (Lower)", "material": "SG", "subtype": "4c", "area": "17.2", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Mainly sand, sand and gravel of estuarine, marine and fluvial origin", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 32, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T10:53:39Z", "aquifer_name": null, "location_description": "Beaver River", "material": "SG", "subtype": "4c", "area": "50.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Early Fort Langley or late Vashon glaciofluvial/glaciomarine outwash", "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 33, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-03T15:32:25Z", "aquifer_name": "West of Aldergrove", "location_description": "West of Aldergrove", "material": "SG", "subtype": "4b", "area": "73.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Early Fort Langley or Vashon intertill glaciofluvial/glaciomarine outwash", "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 34, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:10:24Z", "aquifer_name": null, "location_description": "South of Aldergrove", "material": "SG", "subtype": "4b", "area": "10.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 35, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:09:13Z", "aquifer_name": "Hopington AB", "location_description": "Hopington - Township of Langley", "material": "SG", "subtype": "4a", "area": "23.9", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Sumas glaciofluvial deltaic", "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 36, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T13:58:56Z", "aquifer_name": "Fort Langley B", "location_description": "Fort Langley", "material": "SG", "subtype": "1a", "area": "1.3", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 37, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-12-12T13:59:08Z", "aquifer_name": "Fort Langley AC", "location_description": "Fort Langley Upland", "material": "SG", "subtype": "4a", "area": "3.9", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Sumas Drift; Raised proglacial deltaic gravel and sand", "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 38, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:14:36Z", "aquifer_name": null, "location_description": "Alouette", "material": "SG", "subtype": "1b", "area": "17.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments; Fort Langley Formation", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 39, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:11:15Z", "aquifer_name": null, "location_description": "East Pitt River", "material": "SG", "subtype": "1a", "area": "84.1", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 40, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:11:25Z", "aquifer_name": null, "location_description": "Barnston Island", "material": "SG", "subtype": "1a", "area": "6.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 41, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:22:45Z", "aquifer_name": "Brookswood", "location_description": "Langley/Surrey", "material": "SG", "subtype": "4a", "area": null, "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Sumas Drift & Fort Langley", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 42, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:38:56Z", "aquifer_name": null, "location_description": "South Fraser River Delta", "material": "SG", "subtype": "1a", "area": "142.9", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 43, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:42:00Z", "aquifer_name": null, "location_description": "Annacis Island", "material": "SG", "subtype": "1a", "area": "5.5", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 44, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:39:17Z", "aquifer_name": null, "location_description": "Lulu Island", "material": "SG", "subtype": "1a", "area": "109.8", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 45, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:39:29Z", "aquifer_name": null, "location_description": "North Arm Delta", "material": "SG", "subtype": "1a", "area": "16.3", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 46, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:39:39Z", "aquifer_name": null, "location_description": "Coquitlam River Floodplain", "material": "SG", "subtype": "1a", "area": "9.9", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "I", "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 47, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:39:49Z", "aquifer_name": null, "location_description": "Boundary Avenue near Border Sand & Gravel", "material": "SG", "subtype": "4a", "area": "4.8", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 48, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:39:59Z", "aquifer_name": null, "location_description": "Fraser River Junction", "material": "SG", "subtype": "1a", "area": "9.0", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 49, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T15:40:09Z", "aquifer_name": null, "location_description": "Vancouver-Quadra Sands", "material": "SG", "subtype": "4b", "area": "195.1", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Quadra Sands", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 50, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:23:37Z", "aquifer_name": "South of Hopington", "location_description": "South of Hopington", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 51, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:24:36Z", "aquifer_name": "South of Murrayville AC", "location_description": "South of Murrayville", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Vashon Drift", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 52, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:25:32Z", "aquifer_name": "Langley Upland", "location_description": "Langley Upland/Inter-till", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 53, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:20:57Z", "aquifer_name": null, "location_description": "Hazelmere Valley", "material": "SG", "subtype": "4c", "area": "18.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 54, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:21:07Z", "aquifer_name": null, "location_description": "Hazelmere", "material": "SG", "subtype": "4b", "area": "2.6", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 55, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:21:25Z", "aquifer_name": null, "location_description": "Grandview", "material": "SG", "subtype": "4c", "area": "20.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 56, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:21:34Z", "aquifer_name": null, "location_description": "NE of Whiterock", "material": "SG", "subtype": "4b", "area": "1.7", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 57, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:21:43Z", "aquifer_name": null, "location_description": "Whiterock", "material": "SG", "subtype": "4b", "area": "40.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 58, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-25T10:52:47Z", "aquifer_name": "Nicomekl-Serpentine", "location_description": "Nicomekl-Serpentine", "material": "SG", "subtype": "4c", "area": "216.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Glaciomarine outwash (Semiahmoo/pre-Semiahmoo)", "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 59, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-07-20T12:22:22Z", "aquifer_name": null, "location_description": "Clayton Upland (Upper)", "material": "SG", "subtype": "4b", "area": "35.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 60, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:22:12Z", "aquifer_name": null, "location_description": "Clayton Upland (Lower)", "material": "SG", "subtype": "4c", "area": "13.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 61, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:29:21Z", "aquifer_name": null, "location_description": "Newton Upland", "material": "SG", "subtype": "4b", "area": "137.4", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Quadra Sands", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 62, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:36:54Z", "aquifer_name": null, "location_description": "Tsawwassen", "material": "SG", "subtype": "4b", "area": "6.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 63, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:37:02Z", "aquifer_name": null, "location_description": "Westham Island", "material": "SG", "subtype": "1a", "area": "10.4", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 64, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:37:10Z", "aquifer_name": null, "location_description": "Mitchel Island", "material": "SG", "subtype": "1a", "area": "1.4", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 65, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T16:37:18Z", "aquifer_name": null, "location_description": "Sea Island", "material": "SG", "subtype": "1a", "area": "15.4", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 66, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:23:44Z", "aquifer_name": null, "location_description": "Capilano River", "material": "SG", "subtype": "2", "area": "5.4", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 67, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:23:55Z", "aquifer_name": null, "location_description": "Seymour River/Lynn Creek", "material": "SG", "subtype": "2", "area": "5.2", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 68, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:24:06Z", "aquifer_name": null, "location_description": "Belcarra", "material": "B", "subtype": "6b", "area": "1.8", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Coast Plutonic diorite; Pre-Jurassic Twin Island Group", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 69, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:24:28Z", "aquifer_name": null, "location_description": "Port Moody", "material": "SG", "subtype": "1a", "area": "2.8", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 70, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:24:40Z", "aquifer_name": null, "location_description": "Coquitlam River", "material": "SG", "subtype": "1b", "area": "25.1", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments; Capilano Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 71, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:24:53Z", "aquifer_name": null, "location_description": "West Pitt River", "material": "SG", "subtype": "1a", "area": "14.0", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 72, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:25:03Z", "aquifer_name": null, "location_description": "McMillan Island", "material": "SG", "subtype": "1a", "area": "2.5", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 73, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T09:25:22Z", "aquifer_name": null, "location_description": "Matsqui Island", "material": "SG", "subtype": "1a", "area": "3.7", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Fraser River Sediments", "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 74, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:21:41Z", "aquifer_name": "Upper Merritt", "location_description": "Merritt", "material": "SG", "subtype": "1c", "area": "7.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 75, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:21:32Z", "aquifer_name": "Joeyaska Deep", "location_description": "Joeyaska", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 76, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:26:35Z", "aquifer_name": "Stumbles Creek", "location_description": "Stumbles Creek", "material": "SG", "subtype": "3", "area": "12.9", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 77, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:26:14Z", "aquifer_name": "Lower Nicola", "location_description": "Lower Nicola", "material": "SG", "subtype": "4b", "area": "5.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 78, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:28:34Z", "aquifer_name": null, "location_description": "West End of Nicola Lake", "material": "SG", "subtype": "3", "area": "1.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1993, "notes": null}}, {"model": "aquifers.aquifer", "pk": 79, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:27:44Z", "aquifer_name": "Unicola", "location_description": "Lower Clapperton Creek", "material": "SG", "subtype": "3", "area": "8.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 80, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:28:54Z", "aquifer_name": "Conicola", "location_description": "Nicola", "material": "SG", "subtype": "4b", "area": "6.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 81, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:29:02Z", "aquifer_name": null, "location_description": "14 kilometres northeast of Prince George", "material": "B", "subtype": "5a", "area": "6.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 82, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:29:11Z", "aquifer_name": null, "location_description": "12 kilometres northeast of Prince George", "material": "SG", "subtype": "4b", "area": "2.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 83, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-19T09:35:17Z", "aquifer_name": null, "location_description": "10 kilometres northeast of Prince Georg", "material": "SG", "subtype": "4b", "area": "3.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 84, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:29:28Z", "aquifer_name": null, "location_description": "North and west of Tabor Lake", "material": "B", "subtype": "5a", "area": "4.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 85, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-19T10:05:11Z", "aquifer_name": null, "location_description": "West of south end of Tabor Lake", "material": "SG", "subtype": "4b", "area": "5.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 86, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:29:47Z", "aquifer_name": "Pineview", "location_description": "Pineview to Buckhorn", "material": "SG", "subtype": "4b", "area": "142.8", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Tertiary channel sand and gravel deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 87, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:30:06Z", "aquifer_name": null, "location_description": "Miller to Tabor", "material": "SG", "subtype": "4b", "area": "12.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 88, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T10:17:52Z", "aquifer_name": null, "location_description": "College Heights, South of Prince George", "material": "B", "subtype": "6b", "area": "7.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Primarily volcanic rk; Witch Lake Formation; Mesozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 89, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:30:25Z", "aquifer_name": null, "location_description": "Vanway South", "material": "B", "subtype": "6b", "area": "7.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 90, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T10:30:38Z", "aquifer_name": null, "location_description": "Beaverley", "material": "SG", "subtype": "4b", "area": "46.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 91, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:31:46Z", "aquifer_name": null, "location_description": "Northwest of Beaverley", "material": "B", "subtype": "6b", "area": "4.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 92, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-19T10:24:22Z", "aquifer_name": "Lower Nechako River", "location_description": "Lower Nechako River Valley", "material": "SG", "subtype": "1b", "area": "51.7", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Present day alluvial sands and gravels", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 93, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-19T10:45:15Z", "aquifer_name": null, "location_description": "Cranbrook Hill", "material": "B", "subtype": "6b", "area": "9.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 94, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-19T10:56:07Z", "aquifer_name": null, "location_description": "Hart Highlands", "material": "SG", "subtype": "4a", "area": "11.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 95, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T10:25:34Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 94", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 96, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:32:38Z", "aquifer_name": null, "location_description": "Spa Creek", "material": "B", "subtype": "4a", "area": "1.1", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 97, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-28T12:19:01Z", "aquifer_name": "Salmon River - Upper Aquifer", "location_description": "Salmon River from Falkland to Salmon arm", "material": "SG", "subtype": "1a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 98, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-28T12:19:13Z", "aquifer_name": "Salmon River - Lower Aquifer", "location_description": "Salmon River - Westwold to Salmon Arm", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 99, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:33:07Z", "aquifer_name": null, "location_description": "Switsemalph", "material": "B", "subtype": "6b", "area": "2.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 100, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:48:37Z", "aquifer_name": "Gleneden", "location_description": "Gleneden", "material": "G", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 101, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T16:02:47Z", "aquifer_name": null, "location_description": "Mount Tappen", "material": "B", "subtype": "6b", "area": "0.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 102, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-13T11:47:30Z", "aquifer_name": "Hullcar Confined Aquifer", "location_description": "Hullcar", "material": "S", "subtype": "4b", "area": "15.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 103, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-10-13T11:47:38Z", "aquifer_name": "Hullcar Unconfined Aquifer", "location_description": "Parkinson Lake", "material": "S", "subtype": "4a", "area": "21.7", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 104, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:59:07Z", "aquifer_name": null, "location_description": "1 kilometre northwest of Hullcar", "material": "B", "subtype": "6b", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 105, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:59:23Z", "aquifer_name": null, "location_description": "Hillcrest", "material": "B", "subtype": "5a", "area": "1.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 106, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:59:33Z", "aquifer_name": null, "location_description": "Southwest of Leduc Creek", "material": "B", "subtype": "6b", "area": "16.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 107, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T15:59:44Z", "aquifer_name": null, "location_description": "Gardom Lake to Enderby", "material": "B", "subtype": "6b", "area": "21.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 108, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:38:59Z", "aquifer_name": "Tuhok Unconfined Aquifer", "location_description": "4 kilometres southeast of Salmon Arm", "material": "SG", "subtype": "4a", "area": "25.4", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 109, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:39:08Z", "aquifer_name": "Tuhok Confined Aquifer", "location_description": "Highway 97B", "material": "G", "subtype": "4b", "area": "27.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 110, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T16:03:56Z", "aquifer_name": null, "location_description": "Grandview Bench", "material": "B", "subtype": "6b", "area": "13.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 111, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:39:18Z", "aquifer_name": "Spallumcheen Unconfined Aquifer", "location_description": "Lower Shuswap River Valley", "material": "SG", "subtype": "4a", "area": "101.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 112, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T16:04:13Z", "aquifer_name": null, "location_description": "2 kilometres northeast of Enderby", "material": "B", "subtype": "5a", "area": "2.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 113, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:39:27Z", "aquifer_name": "Ashton Creek Confined", "location_description": "Ashton Creek", "material": "SG", "subtype": "4b", "area": "13.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 114, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:39:36Z", "aquifer_name": "Mara Aquifer", "location_description": "South of Mara Lake", "material": "SG", "subtype": "3", "area": "3.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 115, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-20T10:15:58Z", "aquifer_name": null, "location_description": "Northeast of Quesnel", "material": "SG", "subtype": "1b", "area": "2.5", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Modern alluvium", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 116, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T10:49:03Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 115", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 117, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-12T16:24:56Z", "aquifer_name": null, "location_description": "Red Bluff south of Quesnel", "material": "S", "subtype": "1a", "area": "6.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 118, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T10:52:14Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 115", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 119, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T10:53:06Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 115", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 120, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:04:07Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 115", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 121, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:34:01Z", "aquifer_name": null, "location_description": "Kersley", "material": "SG", "subtype": "4a", "area": "1.4", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 122, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:34:11Z", "aquifer_name": null, "location_description": "Sardine Flats", "material": "SG", "subtype": "4b", "area": "10.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 123, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:05:18Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 115", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 124, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:34:31Z", "aquifer_name": "Fraser Plateau Lava", "location_description": "70 Mile House to 108 Mile Lake", "material": "B", "subtype": "6a", "area": "6545.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Cenozoic, Tertiary, Miocene and/or Pliocene Epochs", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 125, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:41:22Z", "aquifer_name": null, "location_description": "Pressy Lake", "material": "SG", "subtype": "4a", "area": "5.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 126, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:41:35Z", "aquifer_name": "108 Mile Limestone", "location_description": "Simon Lake", "material": "B", "subtype": "6b", "area": "250.6", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Mesozoic, Late Triassic, Karnian & Norian Epochs, Nicola Group", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 127, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:51:53Z", "aquifer_name": null, "location_description": "Buffalo Creek", "material": "B", "subtype": "6a", "area": "17.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Cenozoic, Tertiary, Eocene and ? Oligocene Epochs, Kamloops Group, Skull Hill", "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 128, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:23:38Z", "aquifer_name": null, "location_description": "West end of Horse Lake", "material": "SG", "subtype": "4b", "area": "5.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 129, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:24:19Z", "aquifer_name": null, "location_description": "South central shore of Horse Lake", "material": "SG", "subtype": "4b", "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 130, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T09:35:00Z", "aquifer_name": null, "location_description": "East end of Horse Lake", "material": "SG", "subtype": "4b", "area": "9.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 131, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:24:38Z", "aquifer_name": null, "location_description": "105 Mile Lake", "material": "SG", "subtype": "4b", "area": "10.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 132, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:24:48Z", "aquifer_name": null, "location_description": "Buffalo Creek", "material": "SG", "subtype": "4b", "area": "22.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 133, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:01:26Z", "aquifer_name": null, "location_description": "Cache Creek to Scottie Creek", "material": "SG", "subtype": "4b", "area": "16.5", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 134, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:00:49Z", "aquifer_name": null, "location_description": "Cache Creek to north of Maiden Creek", "material": "SG", "subtype": "1c", "area": "15.2", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 135, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:25:19Z", "aquifer_name": null, "location_description": "Semlin Valley", "material": "SG", "subtype": "4b", "area": "10.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 136, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:25:39Z", "aquifer_name": null, "location_description": "Mauvais Rocher IR#5", "material": "SG", "subtype": "3", "area": "3.6", "productivity": "H", "demand": "M", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 137, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:25:50Z", "aquifer_name": null, "location_description": "Minton Creek", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 138, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:26:00Z", "aquifer_name": null, "location_description": "Upper Missioner/Minton Creek Valleys", "material": "B", "subtype": "6b", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 139, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:26:13Z", "aquifer_name": null, "location_description": "Missioner Creek Valley", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 140, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:26:23Z", "aquifer_name": null, "location_description": "North side of lower Missioner Creek Valley", "material": "B", "subtype": "6b", "area": "2.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 141, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-13T14:26:32Z", "aquifer_name": null, "location_description": "Between Williams Lake and Missioner Creek", "material": "B", "subtype": "6a", "area": "18.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 142, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T15:05:03Z", "aquifer_name": null, "location_description": "Southwest side of Williams Lake", "material": "B", "subtype": "6b", "area": "1.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 143, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T15:50:36Z", "aquifer_name": null, "location_description": "Southwest side of Williams Lake", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 144, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T15:50:46Z", "aquifer_name": null, "location_description": "Southeast side of Williams Lake", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 145, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:00:01Z", "aquifer_name": null, "location_description": "Northeast side of Williams Lake", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 146, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:00:12Z", "aquifer_name": null, "location_description": "West and northwest side of Williams Lake", "material": "SG", "subtype": "4b", "area": "3.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 147, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Hill southwest of Williams Lake townsite", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 148, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Between Chimney Creek and Williams Lake", "material": "B", "subtype": "6a", "area": "30.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 149, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Chimney Creek Valley", "material": "SG", "subtype": "4b", "area": "6.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 150, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "South of Williams Lake on Dog Creek Road", "material": "SG", "subtype": "4b", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 151, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Frost Creek", "material": "SG", "subtype": "4b", "area": "1.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 152, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T12:51:24Z", "aquifer_name": null, "location_description": "South of Williams Lake on Dog Creek Road", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 153, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Lower Pablo Creek", "material": "B", "subtype": "6b", "area": "3.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1994, "notes": null}}, {"model": "aquifers.aquifer", "pk": 154, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-29T15:17:33Z", "aquifer_name": null, "location_description": "NW of Whonnock Lake", "material": "B", "subtype": "6b", "area": "36.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 155, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:15:58Z", "aquifer_name": null, "location_description": "Walker Hook, Saltspring Island", "material": "SG", "subtype": "4b", "area": "1.2", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 156, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:16:08Z", "aquifer_name": null, "location_description": "Ganges Harbour, Saltspring Island", "material": "SG", "subtype": "4b", "area": "3.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 157, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:16:19Z", "aquifer_name": null, "location_description": "Fulford Harbour, Saltspring Island", "material": "SG", "subtype": "4b", "area": "3.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 158, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:16:28Z", "aquifer_name": "Grand Forks", "location_description": "Grand Forks", "material": "SG", "subtype": "1b", "area": "38.8", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 159, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:16:38Z", "aquifer_name": "Lost Shoe Creek", "location_description": "Ucluelet", "material": "SG", "subtype": "2", "area": "12.4", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 160, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:16:51Z", "aquifer_name": "Lower Cassidy", "location_description": "Cassidy", "material": "SG", "subtype": "4b", "area": "8.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glacio-Fluvial (Vashon)", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 161, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:16:59Z", "aquifer_name": "Cassidy", "location_description": "Cassidy", "material": "SG", "subtype": "1b", "area": "31.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Capilano Sediments and Salish Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 162, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-18T16:17:08Z", "aquifer_name": "162", "location_description": "Cedar, Yellow Point, N. Oyster (Ladysmith)", "material": "B", "subtype": "5a", "area": "84.2", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Cedar & DeCourcey Formation (Nanaimo Series)", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 163, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:19:47Z", "aquifer_name": null, "location_description": "Cedar, North Holden Lake", "material": "SG", "subtype": "4b", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Quadra Sands", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 164, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:19:56Z", "aquifer_name": "164", "location_description": "Harewood Lake", "material": "B", "subtype": "5a", "area": "6.3", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Extension Formation (Nanaimo Series)", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 165, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:20:06Z", "aquifer_name": "165", "location_description": "South Wellington", "material": "B", "subtype": "5a", "area": "17.4", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Nanaimo Series, Upper Cretaceous", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 166, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:20:17Z", "aquifer_name": null, "location_description": "Stevenson Point, Nanaimo", "material": "B", "subtype": "6b", "area": "12.0", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Vancouver Volcanics", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 167, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:20:25Z", "aquifer_name": "167", "location_description": "Westwood Lake, Nanaimo", "material": "SG", "subtype": "4b", "area": "14.6", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Either glacio-fluvial Vashon Drift or Quadra Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 168, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:20:34Z", "aquifer_name": "168", "location_description": "Ladysmith", "material": "B", "subtype": "5a", "area": "6.7", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Nanaimo Series, Cretaceous Era", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 169, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:20:43Z", "aquifer_name": null, "location_description": "Saltair, South Ladysmith", "material": "S", "subtype": "4b", "area": "9.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 170, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:20:53Z", "aquifer_name": null, "location_description": "Panorama Ridge, Chemainus", "material": "B", "subtype": "6b", "area": "1.9", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sicker Volcanics", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 171, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:21:04Z", "aquifer_name": null, "location_description": "Mount Sicker, Crofton - Chemainus", "material": "B", "subtype": "5a", "area": "14.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Haslam Formation", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 172, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T09:21:13Z", "aquifer_name": null, "location_description": "Chemainus and Crofton", "material": "SG", "subtype": "1b", "area": "7.5", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 173, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:08:57Z", "aquifer_name": null, "location_description": "Maple Mountain, Crofton - Maple Bay", "material": "B", "subtype": "6b", "area": "34.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sicker Volcanics", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 174, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:09:09Z", "aquifer_name": null, "location_description": "North Duncan", "material": "S", "subtype": "4b", "area": "1.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 175, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:09:20Z", "aquifer_name": null, "location_description": "North Duncan", "material": "B", "subtype": "5a", "area": "42.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Haslam Formation", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 176, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:09:30Z", "aquifer_name": null, "location_description": "East Duncan - Maple Bay", "material": "B", "subtype": "5a", "area": "15.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sicker Volcanics & Haslam Formation", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 177, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:09:40Z", "aquifer_name": null, "location_description": "East Duncan - Maple Bay", "material": "B", "subtype": "5a", "area": "7.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sicker Volcanics & Haslam Formation", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 178, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:09:48Z", "aquifer_name": null, "location_description": "Skutz Falls, Lake Cowichan, Paldi", "material": "SG", "subtype": "4b", "area": "17.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Vashon Drift; Likely advance glacial outwash", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 179, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:09:58Z", "aquifer_name": null, "location_description": "Sahtlam", "material": "SG", "subtype": "1b", "area": "7.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 180, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:10:08Z", "aquifer_name": null, "location_description": "Sahtlam", "material": "SG", "subtype": "4b", "area": "8.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 181, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:10:16Z", "aquifer_name": null, "location_description": "West Duncan", "material": "B", "subtype": "5a", "area": "1.3", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Duncan Formation", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 182, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:10:24Z", "aquifer_name": null, "location_description": "Paldi - Sahtlam", "material": "B", "subtype": "5a", "area": "31.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Duncan Formation", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 183, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:17:12Z", "aquifer_name": null, "location_description": "West Duncan", "material": "SG", "subtype": "4b", "area": "6.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 184, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:41:54Z", "aquifer_name": null, "location_description": "West Duncan", "material": "G", "subtype": "4a", "area": "2.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 185, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:42:03Z", "aquifer_name": null, "location_description": "Deerholm, South Duncan", "material": "SG", "subtype": "4b", "area": "14.9", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 186, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:42:13Z", "aquifer_name": "Lower Cowichan River A", "location_description": "Duncan", "material": "SG", "subtype": "1b", "area": "17.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 187, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:42:23Z", "aquifer_name": "Lower Cowichan River B", "location_description": "Duncan", "material": "SG", "subtype": "1b", "area": "11.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Capilano Sediments", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 188, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:42:31Z", "aquifer_name": "Lower Cowichan River C", "location_description": "Duncan", "material": "SG", "subtype": "4b", "area": "8.7", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift?", "mapping_year": 1995, "notes": null}}, {"model": "aquifers.aquifer", "pk": 189, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:42:49Z", "aquifer_name": null, "location_description": "Honeymoon Bay & Mesachie Lake", "material": "S", "subtype": "2", "area": "10.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments; fluvial, alluvial & glacio-fluvial sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 190, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:43:04Z", "aquifer_name": null, "location_description": "Youbou", "material": "SG", "subtype": "2", "area": "2.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely ice contact deltas of Vashon Drift", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 191, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:43:15Z", "aquifer_name": null, "location_description": "North Lake Cowichan", "material": "SG", "subtype": "2", "area": "3.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments; Fluvial and Glaciofluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 192, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:43:24Z", "aquifer_name": null, "location_description": "North Lake Cowichan", "material": "SG", "subtype": "4b", "area": "8.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Galcial outwash sand & gravel; Vashon Drift", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 193, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:43:32Z", "aquifer_name": "Osoyoos West", "location_description": "West Osoyoos", "material": "SG", "subtype": "4a", "area": "14.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Glacial deposits, Kettle outwash", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 194, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:43:43Z", "aquifer_name": null, "location_description": "Osoyoos East", "material": "SG", "subtype": "4a", "area": "5.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 195, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:43:54Z", "aquifer_name": null, "location_description": "Osoyoos East", "material": "SG", "subtype": "4b", "area": "0.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 196, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:44:03Z", "aquifer_name": null, "location_description": "Deerholm / Duncan", "material": "B", "subtype": "5a", "area": "46.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Nanaimo Series", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 197, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-04-06T15:56:59Z", "aquifer_name": null, "location_description": "Cowichan Bay / Cobble Hill", "material": "SG", "subtype": "4b", "area": "39.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 198, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:44:21Z", "aquifer_name": null, "location_description": "Cowichan Station / Duncan", "material": "B", "subtype": "5a", "area": "6.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Nanaimo Series", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 199, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:44:40Z", "aquifer_name": null, "location_description": "Cowichan Station", "material": "SG", "subtype": "4b", "area": "3.4", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 200, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:51:33Z", "aquifer_name": null, "location_description": "Cobble Hill / Duncan", "material": "B", "subtype": "6b", "area": "26.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sicker Volcanics", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 201, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:51:40Z", "aquifer_name": null, "location_description": "Cobble Hill", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 202, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:51:49Z", "aquifer_name": null, "location_description": "Shawnigan Lake / Cobble Hill", "material": "B", "subtype": "6b", "area": "21.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Bonanza Group and Sicker Volcanics", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 203, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:51:55Z", "aquifer_name": null, "location_description": "Shawnigan Lake / Cobble Hill", "material": "B", "subtype": "6b", "area": "31.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Wark and Colquitz Gneiss and Bonanza Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 204, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:52:04Z", "aquifer_name": null, "location_description": "Cobble Hill / Mill Bay", "material": "B", "subtype": "6b", "area": "16.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Lower to Middle Jurassic Island Intrusions", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 205, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:58:23Z", "aquifer_name": null, "location_description": "Cobble Hill / Shawnigan Lake", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 206, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:58:34Z", "aquifer_name": null, "location_description": "Mill Bay", "material": "SG", "subtype": "4a", "area": "2.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Vashon Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 207, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:58:43Z", "aquifer_name": null, "location_description": "Mill Bay / Shawnigan Lake", "material": "B", "subtype": "6b", "area": "25.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Bonanza Group and Lower to Middle Island Intrusions", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 208, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:58:51Z", "aquifer_name": null, "location_description": "Spectacle Lake / Malahat", "material": "B", "subtype": "6b", "area": "31.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Wark Gneiss & Leech River Formations", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 209, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:58:59Z", "aquifer_name": "209", "location_description": "Errington; Morison Creek area", "material": "SG", "subtype": "4b", "area": "10.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Confined glaciofluvial sand and gravel - likely Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 210, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:09Z", "aquifer_name": "210", "location_description": "Nanoose Bay", "material": "B", "subtype": "5a", "area": "5.4", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary Rks, Fourth Lk. Form.; Intrusive Rk., Mount Hall Gabbro", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 211, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:16Z", "aquifer_name": "211", "location_description": "Nanaimo", "material": "B", "subtype": "6b", "area": "29.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Triassic basalts, Karmutsen Form; Sedimentary Rks, Nanaimo Grp.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 212, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:25Z", "aquifer_name": null, "location_description": "Parksville", "material": "B", "subtype": "5a", "area": "5.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Nanaimo Group", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 213, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:33Z", "aquifer_name": null, "location_description": "Lantzville", "material": "B", "subtype": "6b", "area": "42.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Vancouver Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 214, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:41Z", "aquifer_name": "214", "location_description": "Madrona Point / Parksville", "material": "B", "subtype": "5a", "area": "30.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Nanaimo Group: Extension Form. & Comox Form.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 215, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:49Z", "aquifer_name": null, "location_description": "Lantzville", "material": "SG", "subtype": "4b", "area": "14.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Quadra Sand", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 216, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T10:59:57Z", "aquifer_name": null, "location_description": "Parksville", "material": "SG", "subtype": "4b", "area": "25.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 217, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:00:05Z", "aquifer_name": null, "location_description": "Qualicum", "material": "SG", "subtype": "4b", "area": "42.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 218, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:00:12Z", "aquifer_name": null, "location_description": "Nanoose Hill", "material": "B", "subtype": "5a", "area": "15.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Benson Formation", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 219, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:00:19Z", "aquifer_name": null, "location_description": "Nanoose Creek", "material": "SG", "subtype": "4b", "area": "27.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 220, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:00:27Z", "aquifer_name": "220", "location_description": "Errington", "material": "B", "subtype": "5a", "area": "59.2", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Haslam Formation of the Nanaimo Group", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 221, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:00:35Z", "aquifer_name": null, "location_description": "Parksville", "material": "SG", "subtype": "2", "area": "4.0", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 222, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:00:42Z", "aquifer_name": null, "location_description": "Sorrento / Notch Hill", "material": "SG", "subtype": "4b", "area": "14.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Lacustrine and Fluvial Deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 223, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:01:07Z", "aquifer_name": null, "location_description": "Celista", "material": "SG", "subtype": "4b", "area": "13.7", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Lacustrine Deposit", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 224, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:01:15Z", "aquifer_name": null, "location_description": "Eagle Bay", "material": "B", "subtype": "6b", "area": "21.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Eagle Bay Assemblage", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 225, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:01:23Z", "aquifer_name": null, "location_description": "Sicamous (Mara Lake)", "material": "SG", "subtype": "2", "area": "1.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Lacustrine and Modern Fan Deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 226, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:01:30Z", "aquifer_name": null, "location_description": "Scotch Creek to Anglemont", "material": "B", "subtype": "6b", "area": "75.0", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Johnson Lake Unit", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 227, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:01:39Z", "aquifer_name": null, "location_description": "Sorrento / Notch Hill", "material": "B", "subtype": "5b", "area": "18.8", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Sicamous Formation", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 228, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:01:47Z", "aquifer_name": null, "location_description": "Celista", "material": "SG", "subtype": "2", "area": "2.9", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Modern Alluvium Fan and Fraser Glaciation Terraced Delta", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 229, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T12:57:10Z", "aquifer_name": null, "location_description": "Scotch Creek", "material": "SG", "subtype": "2", "area": "11.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Modern Alluvium Fan and Fraser Glaciation Terraced Delta", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 230, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:02:02Z", "aquifer_name": null, "location_description": "Squilax / Tappen", "material": "SG", "subtype": "3", "area": "17.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 231, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:48:50Z", "aquifer_name": "Sunnybrae", "location_description": "Sunnybrae", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "Pre-Glacial Fan", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 232, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:49:01Z", "aquifer_name": "Tappen", "location_description": "Tappen", "material": "G", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "preglacial fan, Bessette alluvium and possibly basal aquifer", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 233, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:02:26Z", "aquifer_name": null, "location_description": "Blind Bay / White Lake", "material": "B", "subtype": "6b", "area": "52.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Sicamous Formation, Skwaam Bay and Woolford Creek Units", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 234, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:02:33Z", "aquifer_name": null, "location_description": "Squilax", "material": "SG", "subtype": "2", "area": "19.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments and Modern Alluvium", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 235, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:02:41Z", "aquifer_name": null, "location_description": "Whitecroft", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 236, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:02:48Z", "aquifer_name": null, "location_description": "Chase", "material": "SG", "subtype": "1b", "area": "11.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 237, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:02:57Z", "aquifer_name": null, "location_description": "Chase", "material": "SG", "subtype": "1b", "area": "7.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Lacustrine Deposit", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 238, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:03:05Z", "aquifer_name": null, "location_description": "Spotted Lake, Osoyoos", "material": "B", "subtype": "6b", "area": "7.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Kobau Group", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 239, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Fraser Lake", "material": "B", "subtype": "6a", "area": "48.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Cache Creek and Endako Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 240, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "SG", "subtype": "4a", "area": "28.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Deposit", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 241, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "B", "subtype": "5a", "area": "15.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Cache Creek Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 242, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "SG", "subtype": "4b", "area": "332.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Pre-Fraser Glaciation Deposit", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 243, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:07:53Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "B", "subtype": "6b", "area": "375.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Miocene and Pliocene Basalts", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 244, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "SG", "subtype": "1b", "area": "40.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Post galcial alluvial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 245, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "SG", "subtype": "4b", "area": "18.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Pre-Fraser Glaciation deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 246, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "SG", "subtype": "4b", "area": "184.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Pre-Fraser Glaciation", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 247, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Vanderhoof", "material": "SG", "subtype": "4b", "area": "7.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Pre-Fraser Glaciation", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 248, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:04:06Z", "aquifer_name": null, "location_description": "Spotted Lake, Osoyoos", "material": "B", "subtype": "6b", "area": "4.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kobau Group", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 249, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:08:23Z", "aquifer_name": null, "location_description": "Duck Range / Pritchard / Monte Lake", "material": "B", "subtype": "6b", "area": "197.3", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Kamloops Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 250, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:04:27Z", "aquifer_name": null, "location_description": "Pinantan Lake / Pritchard", "material": "B", "subtype": "6b", "area": "132.9", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Kamloops and Nicola Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 251, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:20:26Z", "aquifer_name": null, "location_description": "Pritchard", "material": "SG", "subtype": "4b", "area": "12.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 252, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:20:34Z", "aquifer_name": null, "location_description": "Monte Creek", "material": "SG", "subtype": "4b", "area": "4.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 253, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:20:49Z", "aquifer_name": null, "location_description": "Monte Lake", "material": "SG", "subtype": "4b", "area": "3.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 254, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T11:01:08Z", "aquifer_name": null, "location_description": "Osoyoos Lake to southwest of Tug Lake", "material": "SG", "subtype": "1a", "area": "29.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Recent and Fraser Glaciation fluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 255, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:08:46Z", "aquifer_name": null, "location_description": "North of Tug Lake to Vaseux Lake", "material": "SG", "subtype": "1a", "area": "14.0", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Recent and Fraser Glaciation fluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 256, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:09:04Z", "aquifer_name": null, "location_description": "Testalinden Creek to Reed Creek", "material": "SG", "subtype": "3", "area": "16.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Recent and Fraser Glaciation fluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 257, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:09:16Z", "aquifer_name": null, "location_description": "Meyers Flat", "material": "SG", "subtype": "4b", "area": "8.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 258, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:21:33Z", "aquifer_name": null, "location_description": "Richter Pass", "material": "SG", "subtype": "3", "area": "7.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Recent Fraser Glaciation - Alluvial Fan deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 259, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-11T16:00:23Z", "aquifer_name": "Similkameen River Aquifer", "location_description": "US Border to Princeton", "material": "SG", "subtype": "1a", "area": "120.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Unconfined alluvium; Fraser Glaciation", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 260, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:09:55Z", "aquifer_name": null, "location_description": "Marron Valley northwest of Okanagan Falls", "material": "B", "subtype": "6b", "area": "62.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Basal Volcanics (Marron Formation)", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 261, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:21:59Z", "aquifer_name": null, "location_description": "Marron Valley northwest of Okanagan Falls", "material": "SG", "subtype": "4a", "area": "3.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Recent Fraser Glaciation", "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 262, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:22:12Z", "aquifer_name": null, "location_description": "White Lake Basin 35 km south of Penticton", "material": "SG", "subtype": "4a", "area": "1.2", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": null, "litho_stratographic_unit": "Recent Fraser Glaciation", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 263, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:22:21Z", "aquifer_name": null, "location_description": "North of Okanagan Falls/ shore of Skaha Lk", "material": "B", "subtype": null, "area": "8.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Nelson Plutonic", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 264, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:22:30Z", "aquifer_name": null, "location_description": "Okanagan Falls and east of Okanagan Falls", "material": "SG", "subtype": "4a", "area": "9.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Glaciofluvial Deposits", "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 265, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:10:04Z", "aquifer_name": null, "location_description": "Between OK Falls and Vaseux Lk", "material": "SG", "subtype": "1a", "area": "5.5", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Glaciofluvial Deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 266, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:22:45Z", "aquifer_name": null, "location_description": "Stafford Creek southwest of Penticton", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Glaciofluvial Deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 267, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:22:53Z", "aquifer_name": null, "location_description": "Shingle Creek", "material": "SG", "subtype": "3", "area": "6.8", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Alluvial and Glaciofluvial Deposits", "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 268, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:23:03Z", "aquifer_name": null, "location_description": "Penticton East and east shore of Skaha Lk.", "material": "B", "subtype": "6b", "area": "26.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Nelson Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 269, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:23:10Z", "aquifer_name": null, "location_description": "Ellis Creek", "material": "B", "subtype": "6b", "area": "10.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Monashee Group", "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 270, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:23:18Z", "aquifer_name": null, "location_description": "Ellis Creek", "material": "SG", "subtype": "3", "area": "4.7", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Alluvium (Floodplain Deposits)", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 271, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:23:40Z", "aquifer_name": null, "location_description": "North Thompson River floodplain", "material": "SG", "subtype": "1b", "area": "7.5", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Alluvium (floodplain) and Fan Deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 272, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:09:28Z", "aquifer_name": null, "location_description": "North-east of Kamloops", "material": "B", "subtype": "5a", "area": "672.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Cache Creek Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 273, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:10:12Z", "aquifer_name": null, "location_description": "Rose Hill / Barnhartvale / Shumway Lake", "material": "B", "subtype": "5a", "area": "172.8", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Cache Creek and Nicola Groups", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 274, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Brigade Lake", "material": "B", "subtype": "6b", "area": "76.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 275, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Knutsford", "material": "B", "subtype": "6b", "area": "1.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops Group", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 276, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:00:16Z", "aquifer_name": null, "location_description": "Sugarloaf Hill southwest of Kamloops", "material": "B", "subtype": "6b", "area": "64.8", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Coast Intrusions: Iron Mask Batholith", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 277, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Davidson Creek", "material": "SG", "subtype": "4a", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 278, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Peterson Creek", "material": "SG", "subtype": "4a", "area": "2.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 279, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Buse Lake", "material": "SG", "subtype": "4b", "area": "5.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops Drift; Pre- and Post-Fraser glacial and non-glacial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 280, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "2 km west of Barnhartvale", "material": "SG", "subtype": "4b", "area": "1.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops Drift; Pre-Fraser glacial and non-glacial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 281, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Paul Lake", "material": "SG", "subtype": "4b", "area": "1.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Kamloops drift; Pre-Fraser glacial and non-glacial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 282, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Kamloops Airport", "material": "SG", "subtype": "1b", "area": "23.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Recent alluvial", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 283, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "North Thompson River north of Kamloops", "material": "SG", "subtype": "1b", "area": "79.2", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Modern alluvium and Fan deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 284, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Pulmill southwest of Kamloops", "material": "SG", "subtype": "1b", "area": "2.2", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Recent alluvial deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 285, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Campbell Creek", "material": "SG", "subtype": "4b", "area": "3.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Recent alluvial and older Kamloops Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 286, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Lower South Thompson River", "material": "SG", "subtype": "1b", "area": "33.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Recent alluvial and older Kamloops Drift", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 287, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Heffley and Edward Creek confluence", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Lacustrine complex", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 288, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Louis and Fraser Creek Valleys", "material": "SG", "subtype": "3", "area": "26.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Alluvium-Fan complex", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 289, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:49:12Z", "aquifer_name": "Westwold", "location_description": "Westwold Valley", "material": "SG", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "glacial outwash and post-Fraser alluvium", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 290, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Dixon and Sargent Creek Valleys", "material": "SG", "subtype": "3", "area": "5.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Alluvium-Fan complex", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 291, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:16:45Z", "aquifer_name": null, "location_description": "Dixon, Sargent and Jet Creek Valleys", "material": "B", "subtype": "6b", "area": "50.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": "Upper Triassic or earlier", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 292, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Louis Creek and North Thompson confluence", "material": "SG", "subtype": "1b", "area": "2.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Modern alluvium and fan deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 293, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "North Thompson River; north of Barriere", "material": "SG", "subtype": "1b", "area": "51.6", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Modern alluvium and fan deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 294, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Lower Barriere River Valley", "material": "SG", "subtype": "1c", "area": "11.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 295, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Christian Creek Valley", "material": "SG", "subtype": "4b", "area": "5.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Lacustrine complex and hummocky gravels", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 296, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Little Fort", "material": "SG", "subtype": "1c", "area": "5.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Modern alluvium and fan deposits", "mapping_year": 1996, "notes": null}}, {"model": "aquifers.aquifer", "pk": 297, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:41:23Z", "aquifer_name": null, "location_description": "Summerland, Trout Creek", "material": "SG", "subtype": "2", "area": "2.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 298, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:41:34Z", "aquifer_name": null, "location_description": "Naramata", "material": "B", "subtype": "6b", "area": "202.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 299, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:41:41Z", "aquifer_name": null, "location_description": "Fauder (Meadow Valley)", "material": "SG", "subtype": "4b", "area": "7.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 300, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:41:52Z", "aquifer_name": null, "location_description": "Faulder (Enesas Creek)", "material": "B", "subtype": "6b", "area": "55.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 301, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:01Z", "aquifer_name": "Shannon Lake", "location_description": "Shannon Lake", "material": "SG", "subtype": "4a", "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 302, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:13Z", "aquifer_name": "Powers Ck Deltaic", "location_description": "South of Westbank adjacent to Okanagan Lk.", "material": "SG", "subtype": "2", "area": "1.6", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 303, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:21Z", "aquifer_name": "McDougall Creek Deltaic", "location_description": "Southeast of Westbank adj. to Okanagan Lk.", "material": "S", "subtype": "2", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 304, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:28Z", "aquifer_name": null, "location_description": "West side of Okanagan Lk, west of Kelowna", "material": "B", "subtype": "5a", "area": "19.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 305, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:35Z", "aquifer_name": null, "location_description": "West side of Okanagon Lk, west of Kelowna", "material": "B", "subtype": "5a", "area": "23.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 306, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:42Z", "aquifer_name": null, "location_description": "East of Westbank, parallel to Mt. Boucher", "material": "SG", "subtype": "4b", "area": "3.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 307, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:51Z", "aquifer_name": "Eagle River", "location_description": "Malakwa", "material": "SG", "subtype": "1b", "area": "45.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 308, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:42:58Z", "aquifer_name": null, "location_description": "West of Sicamous", "material": "B", "subtype": "6b", "area": "4.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 309, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:43:05Z", "aquifer_name": null, "location_description": "South of Sicamous", "material": "SG", "subtype": "3", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1997, "notes": null}}, {"model": "aquifers.aquifer", "pk": 310, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:49:22Z", "aquifer_name": "Creighton", "location_description": "Creighton Valley", "material": "SG", "subtype": "1c", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "mixed kame, fan and modern alluvium", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 311, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:49:32Z", "aquifer_name": "Upper Cherryville", "location_description": "South of Cherryville", "material": "G", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "preglacial, early Bessette", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 312, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:43:33Z", "aquifer_name": null, "location_description": "Cherryville", "material": "B", "subtype": "6b", "area": "45.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 313, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:43:42Z", "aquifer_name": null, "location_description": "Cherryville", "material": "B", "subtype": "6b", "area": "14.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 314, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:49:44Z", "aquifer_name": "Lumby - Lower Aquifer", "location_description": "Lumby", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "deep basal (early Bessette)", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 315, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T15:30:38Z", "aquifer_name": "Merged with 314", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 316, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:49:57Z", "aquifer_name": "Lumby - Upper Aquifer", "location_description": "Lavington to Lumby", "material": "SG", "subtype": "1c", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 317, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T15:33:33Z", "aquifer_name": "Merged with 316", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 318, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:50:10Z", "aquifer_name": "Bessette Creek", "location_description": "Lumby to Shuswap Falls", "material": "G", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "deep basal (early Bessette)", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 319, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:50:24Z", "aquifer_name": "Trinity Valley", "location_description": "North of Lumby", "material": "G", "subtype": "1c", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "late Bessette to early glacial", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 320, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:44:34Z", "aquifer_name": null, "location_description": "Galiano Island", "material": "B", "subtype": "5a", "area": "58.2", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Upper Cretaceous Nanaimo Group", "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 321, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:44:42Z", "aquifer_name": "Upper Gates River", "location_description": "Birken", "material": "SG", "subtype": "1b", "area": "4.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 322, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:44:50Z", "aquifer_name": "Lower Gates River", "location_description": "D'Arcy", "material": "SG", "subtype": "1b", "area": "7.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 323, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:44:58Z", "aquifer_name": "Seton Portage", "location_description": "Seton Portage", "material": "SG", "subtype": "1b", "area": "1.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 324, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:45:07Z", "aquifer_name": null, "location_description": "Lillooet", "material": "SG", "subtype": "4b", "area": "7.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 325, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T11:45:15Z", "aquifer_name": null, "location_description": "Lillooet", "material": "SG", "subtype": "1c", "area": "4.4", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 326, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:16:38Z", "aquifer_name": null, "location_description": "Pemberton", "material": "SG", "subtype": "1b", "area": "32.7", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 327, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:02Z", "aquifer_name": null, "location_description": "Prince George", "material": "SG", "subtype": "1b", "area": "3.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 328, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:11Z", "aquifer_name": null, "location_description": "Prince George", "material": "SG", "subtype": "4b", "area": "20.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 329, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:19Z", "aquifer_name": null, "location_description": "Prince George", "material": "B", "subtype": "6b", "area": "45.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 330, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:32Z", "aquifer_name": null, "location_description": "Prince George", "material": "SG", "subtype": "4b", "area": "5.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 331, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:39Z", "aquifer_name": null, "location_description": "Prince George", "material": "SG", "subtype": "4b", "area": "7.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 332, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:47Z", "aquifer_name": null, "location_description": "Prince George", "material": "SG", "subtype": "4b", "area": "309.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 333, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:04:55Z", "aquifer_name": null, "location_description": "Hixon", "material": "SG", "subtype": "1c", "area": "23.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 334, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:05:03Z", "aquifer_name": null, "location_description": "Hixon", "material": "SG", "subtype": "1a", "area": "0.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Post-glacial, Quatenary,alluvial deposits(Learning and Armstrong,1969)", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 335, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:05:11Z", "aquifer_name": null, "location_description": "Hixon", "material": "SG", "subtype": "4b", "area": "108.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fraser glaciation, Quaternary, glaciofluvual deposits (Learming and Armstrong,", "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 336, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:05:21Z", "aquifer_name": null, "location_description": "Hixon", "material": "SG", "subtype": "4b", "area": "3.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 337, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:14Z", "aquifer_name": null, "location_description": "Timothy Lake", "material": "SG", "subtype": "4b", "area": "1.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Post Fraser Glaciation and non-glacial deposits", "mapping_year": 1998, "notes": null}}, {"model": "aquifers.aquifer", "pk": 338, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:05:54Z", "aquifer_name": null, "location_description": "McLeod Lake", "material": "SG", "subtype": "4b", "area": "5.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 339, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:05Z", "aquifer_name": null, "location_description": "North of Prince George", "material": "B", "subtype": "6b", "area": "29.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 340, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:14Z", "aquifer_name": null, "location_description": "East of Vanderhoof/north of Prince George", "material": "SG", "subtype": "1c", "area": "1.5", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 341, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:24Z", "aquifer_name": null, "location_description": "East of Vanderhoof /norht of Prince George", "material": "SG", "subtype": "4b", "area": "3.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 342, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:34Z", "aquifer_name": null, "location_description": "East of Vanderhoof/north of Prince George", "material": "SG", "subtype": "4a", "area": "2.7", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 343, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:43Z", "aquifer_name": null, "location_description": "North of Prince George", "material": "SG", "subtype": "4b", "area": "34.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 344, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:51Z", "aquifer_name": null, "location_description": "Ellison Lake to Wood Lake", "material": "SG", "subtype": "4b", "area": "8.7", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 345, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:06:59Z", "aquifer_name": null, "location_description": "Oyama", "material": "SG", "subtype": "4a", "area": "6.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 346, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:39:44Z", "aquifer_name": "South Vernon Unconfined Aquifer", "location_description": "Kalamalka Lake to Vernon", "material": "SG", "subtype": "4a", "area": "14.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Likely alluvium or stream terrace deposits", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 347, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-14T16:53:21Z", "aquifer_name": "South Vernon Confined Aquifer", "location_description": "Vernon to Okanagan Lake", "material": "SG", "subtype": "4b", "area": "6.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sand and gravels from alluvium or stream terrace deposits", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 348, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:39:54Z", "aquifer_name": "Swan Lake Confined Aquifer", "location_description": "Just north of Vernon to north of Swan Lake", "material": "SG", "subtype": "4b", "area": "13.8", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 349, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:07:35Z", "aquifer_name": null, "location_description": "Northeast of Vernon along BX Creek", "material": "SG", "subtype": "4b", "area": "25.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 350, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:07:44Z", "aquifer_name": null, "location_description": "NE of Vernon and to the south of BX Creek", "material": "B", "subtype": "5a", "area": "7.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 351, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:07:54Z", "aquifer_name": null, "location_description": "NE of Vernon and to the north of BX Creek", "material": "B", "subtype": "6b", "area": "21.8", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 352, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:50:36Z", "aquifer_name": "Coldstream", "location_description": "Coldstream to Lavington", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "reworked Bessette, early glacial outwash", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 353, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:40:12Z", "aquifer_name": "Eagle Rock Aquifer", "location_description": "SE of Armstrong", "material": "SG", "subtype": "3", "area": "7.7", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Pre-Glacial, Reworked Pre-Glacial, Syn-Glacial", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 354, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:40:21Z", "aquifer_name": "O\u2019Keefe Unconfined Aquifer", "location_description": "O'Keefe Valley and Grandview Flats", "material": "SG", "subtype": "4a", "area": "23.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Pre-Glacial, Reworked Pre-Glacial, Syn-Glacial", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 355, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:08:31Z", "aquifer_name": null, "location_description": "West of Deep Creek, NW of Armstrong", "material": "B", "subtype": "6b", "area": "15.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 356, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:08:39Z", "aquifer_name": null, "location_description": "Mouth of Deep Creek", "material": "SG", "subtype": "4b", "area": "3.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 357, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:08:52Z", "aquifer_name": null, "location_description": "Whiteman Creek Fan", "material": "SG", "subtype": "3", "area": "2.2", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan deposits", "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 358, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:09:01Z", "aquifer_name": null, "location_description": "Fintry Fan, Short Creek", "material": "SG", "subtype": "3", "area": "0.9", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan sediments", "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 359, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:17:36Z", "aquifer_name": null, "location_description": "Quesnel, west side of Fraser River", "material": "SG", "subtype": "4b", "area": "10.7", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 360, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:09:19Z", "aquifer_name": null, "location_description": "West of Bouchie Lake, northwest of Quesnel", "material": "B", "subtype": "6b", "area": "47.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary rk, Cache Creek Complex, Paleozoic to Mesozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 361, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:09:32Z", "aquifer_name": null, "location_description": "East of Milburn Lake and nw of Quesnel", "material": "SG", "subtype": "4a", "area": "5.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 362, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:09:47Z", "aquifer_name": null, "location_description": "North of Quesnel and south of Strathnaver", "material": "SG", "subtype": "1b", "area": "5.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 363, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:09:56Z", "aquifer_name": null, "location_description": "NW of Quesnel and north of Bouchie Lake", "material": "SG", "subtype": "4b", "area": "11.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 364, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:10:06Z", "aquifer_name": null, "location_description": "NW of Quesnel and west of Moose Heights", "material": "SG", "subtype": "4b", "area": "3.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 365, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:10:16Z", "aquifer_name": null, "location_description": "NW of Quesnel and E shoreline of Bouchie L", "material": "SG", "subtype": "4b", "area": "17.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 366, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:10:24Z", "aquifer_name": null, "location_description": "Northwest of Quesnel and east of Bouchie L", "material": "SG", "subtype": "4b", "area": "2.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 367, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:10:33Z", "aquifer_name": null, "location_description": "Northwset of Quesnel", "material": "SG", "subtype": "1a", "area": "1.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 368, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:10:42Z", "aquifer_name": null, "location_description": "2 km. north of Quesnel", "material": "B", "subtype": "6b", "area": "32.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 369, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:10:50Z", "aquifer_name": null, "location_description": "2 km. north of Quesnel Airport", "material": "SG", "subtype": "4b", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 370, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T12:56:38Z", "aquifer_name": null, "location_description": "Area west of Quesnel", "material": "SG", "subtype": "1b", "area": "6.7", "productivity": "H", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 371, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:11:08Z", "aquifer_name": null, "location_description": "E of Quesnel Airport and S of Ten Mile L.", "material": "SG", "subtype": "4b", "area": "26.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 372, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:11:18Z", "aquifer_name": null, "location_description": "Northwest of Ten Mile Lake, Quesnel", "material": "SG", "subtype": "4b", "area": "29.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 373, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:11:30Z", "aquifer_name": null, "location_description": "Rt. St. James at mouth of Stuart L", "material": "SG", "subtype": "4b", "area": "14.1", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 374, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:11:44Z", "aquifer_name": null, "location_description": "Ft st James bounded by Stuart L and Pitka", "material": "B", "subtype": "5b", "area": "19.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Late Proterozioc to Oligocene of Later-Cache Creek Group", "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 375, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:11:52Z", "aquifer_name": null, "location_description": "Ft St James bound by Necoslie R and Stuart", "material": "B", "subtype": "5b", "area": "3.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 376, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:12:01Z", "aquifer_name": null, "location_description": "Ft St James-south of Stuart L shoreli", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 377, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:12:11Z", "aquifer_name": null, "location_description": "Ft. St. James-west of Sruart R.", "material": "SG", "subtype": "4b", "area": "11.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 378, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:12:22Z", "aquifer_name": null, "location_description": "Ft. St. James - east of Stuart River", "material": "SG", "subtype": "4b", "area": "0.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 1999, "notes": null}}, {"model": "aquifers.aquifer", "pk": 379, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:12:31Z", "aquifer_name": null, "location_description": "Horsefly, B.C.", "material": "SG", "subtype": "4b", "area": "6.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 380, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:12:39Z", "aquifer_name": null, "location_description": "14 km North of William Lake", "material": "SG", "subtype": "4b", "area": "6.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 381, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T15:29:10Z", "aquifer_name": null, "location_description": "McLeese L. 30km north of Williams Lake", "material": "SG", "subtype": "4b", "area": "6.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 382, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T15:29:19Z", "aquifer_name": null, "location_description": "Soda Cr. 26 km north of Williams Lake", "material": "SG", "subtype": "1b", "area": "5.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 383, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:05Z", "aquifer_name": null, "location_description": "Dugan Lake, 7km north of 150 Mile House", "material": "SG", "subtype": "4a", "area": "14.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 384, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:13Z", "aquifer_name": null, "location_description": "150 Mile House, B. C.", "material": "SG", "subtype": "4b", "area": "12.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 385, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:22Z", "aquifer_name": null, "location_description": "4.5 km. sw of McKenzie", "material": "SG", "subtype": "4b", "area": "20.4", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 386, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:30Z", "aquifer_name": null, "location_description": "Miocene, Northeast of 150 Mile House", "material": "B", "subtype": "6b", "area": "65.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 387, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:38Z", "aquifer_name": null, "location_description": "Alliuvial Fan of Fitzsimmons Cr.,Whistler", "material": "SG", "subtype": "3", "area": "2.6", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 388, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:51Z", "aquifer_name": null, "location_description": "SW end of Green Lake at Nineteen Mile Cr.", "material": "SG", "subtype": "3", "area": "1.2", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 389, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:13:59Z", "aquifer_name": null, "location_description": "Valley from Alta Lk to Green Lk, Whistler", "material": "SG", "subtype": "4b", "area": "3.2", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 390, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:07Z", "aquifer_name": null, "location_description": "W side of Green Lk opposite Parkhurst", "material": "SG", "subtype": "1b", "area": "0.1", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 391, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:16Z", "aquifer_name": null, "location_description": "Bdrk aq above and on the NW side of valley", "material": "B", "subtype": "6b", "area": "45.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 392, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:24Z", "aquifer_name": null, "location_description": "Bdrk aq above and on the SW side of valley", "material": "B", "subtype": "6b", "area": "74.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 393, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:31Z", "aquifer_name": null, "location_description": "At Whislter Cr between Nita Lk and Alpha L", "material": "SG", "subtype": "3", "area": "0.4", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 394, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:38Z", "aquifer_name": null, "location_description": "Sproatt Cr Fan, w end of Alpha Lk,Whistler", "material": "SG", "subtype": "3", "area": "0.1", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 395, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:46Z", "aquifer_name": null, "location_description": "Appr 2km w of Alpha Lk at Sproatt", "material": "SG", "subtype": "1b", "area": "1.2", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 396, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:14:55Z", "aquifer_name": null, "location_description": "Cheekye Fan", "material": "SG", "subtype": "1b", "area": "5.1", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 397, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:15:04Z", "aquifer_name": null, "location_description": "Powerhouse Springs Mamguan R E of Squamish", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "H", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 398, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:15:11Z", "aquifer_name": null, "location_description": "Mamquam Valley", "material": "SG", "subtype": "1b", "area": "6.0", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 399, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:15:20Z", "aquifer_name": null, "location_description": "Squamish River Squamish to Brackendale", "material": "SG", "subtype": "1b", "area": "12.0", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 400, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T14:15:27Z", "aquifer_name": null, "location_description": "Confluence - Squamish, Cheakamus, Cheekye", "material": "SG", "subtype": "3", "area": "8.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 401, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:15:17Z", "aquifer_name": null, "location_description": "22 km north along the Cheakamus River", "material": "SG", "subtype": "1b", "area": "6.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 402, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T16:16:30Z", "aquifer_name": null, "location_description": "Stawamus R valley, Squamish", "material": "SG", "subtype": "3", "area": "2.3", "productivity": "H", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 403, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:44:21Z", "aquifer_name": null, "location_description": "Shannon Falls, south of Squamish", "material": "SG", "subtype": "3", "area": "0.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 404, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:44:30Z", "aquifer_name": null, "location_description": "Furry Creek", "material": "SG", "subtype": "3", "area": "0.5", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 405, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:44:44Z", "aquifer_name": null, "location_description": "D'Arcy Creek Alluvial Fan", "material": "SG", "subtype": "3", "area": "1.0", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 406, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:44:53Z", "aquifer_name": null, "location_description": "Approximately 11 km NE of 150 Mile house", "material": "SG", "subtype": "4b", "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 407, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:45:03Z", "aquifer_name": null, "location_description": "Point Holmes, east of the Town of Comox.", "material": "SG", "subtype": "2", "area": "1.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 408, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:45:12Z", "aquifer_name": null, "location_description": "Comox Harbour to 10 km north of Merville", "material": "SG", "subtype": "4b", "area": "147.7", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Quadra Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 409, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:45:26Z", "aquifer_name": null, "location_description": "Little River deltaic deposit", "material": "SG", "subtype": "2", "area": "1.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 410, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:45:36Z", "aquifer_name": null, "location_description": "Southern bank of Oyster River delta", "material": "SG", "subtype": "2", "area": "1.7", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 411, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:45:44Z", "aquifer_name": null, "location_description": "1 km S. of Oyster R. Vancounver Is.", "material": "B", "subtype": "5a", "area": "4.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Nanaimo group", "mapping_year": 2009, "notes": null}}, {"model": "aquifers.aquifer", "pk": 412, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:45:52Z", "aquifer_name": null, "location_description": "Kahushan Point, north bank of Oyster R.", "material": "SG", "subtype": "2", "area": "3.2", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 413, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:00Z", "aquifer_name": null, "location_description": "West of Royston, north to Puntledge River", "material": "B", "subtype": "5a", "area": "35.2", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Nanaimo Group; likely the Comox Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 414, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:11Z", "aquifer_name": null, "location_description": "Alluvial fan at the mouth of Rosewall Cr.", "material": "SG", "subtype": "2", "area": "1.5", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 415, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:20Z", "aquifer_name": null, "location_description": "Tsable River delta deposit", "material": "SG", "subtype": "2", "area": "0.8", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 416, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:28Z", "aquifer_name": null, "location_description": "Thames River to Maplegaurd Point", "material": "SG", "subtype": "4b", "area": "13.7", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 417, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:36Z", "aquifer_name": null, "location_description": "North of Cumberland, to Puntledge R.", "material": "SG", "subtype": "4a", "area": "14.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Capilano Sediments and possibly Quadra sands in places", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 418, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:45Z", "aquifer_name": null, "location_description": "South bank at Oyster-Little R. confluence", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sediments?", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 419, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:46:53Z", "aquifer_name": null, "location_description": "Wilfred Creek delta, south of Fanny Bay", "material": "SG", "subtype": "2", "area": "4.3", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 420, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:47:00Z", "aquifer_name": null, "location_description": "1 km south of Oyster River mouth", "material": "B", "subtype": "5a", "area": "0.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Nanaimo Group", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 421, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T16:22:21Z", "aquifer_name": null, "location_description": "Nile Creek to Thames Creek", "material": "SG", "subtype": "4b", "area": "6.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 422, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:47:15Z", "aquifer_name": null, "location_description": "Porteau Cove, Howe Sound", "material": "SG", "subtype": "3", "area": "0.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sediments", "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 423, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:52:54Z", "aquifer_name": null, "location_description": "North shore of La Hache Lake", "material": "SG", "subtype": "4a", "area": "12.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 424, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:03Z", "aquifer_name": null, "location_description": "eastside of Bridge Lake", "material": "SG", "subtype": "4b", "area": "6.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 425, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:12Z", "aquifer_name": null, "location_description": "south of Bridge Lake", "material": "B", "subtype": "6b", "area": "45.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 426, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:21Z", "aquifer_name": null, "location_description": "Eagle Creek", "material": "SG", "subtype": "4b", "area": "5.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 427, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:29Z", "aquifer_name": null, "location_description": "southern tip of Canim Lake", "material": "SG", "subtype": "4b", "area": "15.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 428, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:36Z", "aquifer_name": null, "location_description": "San Jose River and Knife Creek", "material": "SG", "subtype": "4b", "area": "1.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 429, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:44Z", "aquifer_name": null, "location_description": "near Ruth Lake", "material": "SG", "subtype": "4b", "area": "4.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 430, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:53:52Z", "aquifer_name": null, "location_description": "West shore of Canim Lake", "material": "SG", "subtype": "4b", "area": "0.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2000, "notes": null}}, {"model": "aquifers.aquifer", "pk": 431, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:00Z", "aquifer_name": null, "location_description": "Mackenzie", "material": "SG", "subtype": "4a", "area": "1.5", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 432, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:07Z", "aquifer_name": null, "location_description": "Mackenzie", "material": "SG", "subtype": "3", "area": "3.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 433, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:15Z", "aquifer_name": null, "location_description": "McLeod Lake", "material": "SG", "subtype": "4a", "area": "10.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 434, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:22Z", "aquifer_name": null, "location_description": "Appr 6km NE of Tudyah Lakes", "material": "SG", "subtype": "1b", "area": "15.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 435, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:29Z", "aquifer_name": null, "location_description": "Whaling Station Bay, Hornby Island", "material": "B", "subtype": "5a", "area": "3.8", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 436, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:36Z", "aquifer_name": null, "location_description": "Shingle Spit-Phipps Point, Hornby Island", "material": "B", "subtype": "5a", "area": "5.2", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 437, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:44Z", "aquifer_name": null, "location_description": "Ford Cove-Norman Point, Hornby Island", "material": "B", "subtype": "5a", "area": "2.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 438, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:54:52Z", "aquifer_name": null, "location_description": "Mt. Geoffrey, Hornby Island", "material": "B", "subtype": "5a", "area": "18.8", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 439, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:55:00Z", "aquifer_name": null, "location_description": "Jim Smith Lake", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 440, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-19T15:55:07Z", "aquifer_name": null, "location_description": "Hudson Hope", "material": "SG", "subtype": "1b", "area": "13.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "High energy glaciofluvial sand & gravel", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 441, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:07:40Z", "aquifer_name": null, "location_description": "Lynx Ck.; 7 km NE of Hudson Hope", "material": "B", "subtype": "5a", "area": "13.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 442, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:07:50Z", "aquifer_name": null, "location_description": "3.5 km W. of Taylor", "material": "SG", "subtype": "1b", "area": "1.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "sand and gravel", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 443, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:07:59Z", "aquifer_name": null, "location_description": "Taylor townsite N. of peace R.", "material": "G", "subtype": "4a", "area": "11.9", "productivity": "M", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 444, "fields": {"create_user": "SYSTEM", "create_date": "2004-09-14T15:17:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:08:08Z", "aquifer_name": null, "location_description": "2 km W. of Ft. St. John", "material": "SG", "subtype": "4a", "area": "75.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "buried valley glacial fluvial deposits", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 445, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:10:20Z", "aquifer_name": null, "location_description": "NW of Cranbrook; near Hospital Ck", "material": "SG", "subtype": "4b", "area": "5.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 446, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:10:32Z", "aquifer_name": null, "location_description": "Booth Creek, NW of Cranbrook", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 447, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:08:35Z", "aquifer_name": null, "location_description": "Georgina Pt - Hall Hill, Mayne Island N.", "material": "B", "subtype": "5a", "area": "3.7", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Upper Cretaceous; Nanimo Grp; Gabriola & Spray Formations", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 448, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:08:42Z", "aquifer_name": null, "location_description": "Clayhurst", "material": "B", "subtype": "5a", "area": "90.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Smoky Group , Wapiti Formation", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 449, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:08:59Z", "aquifer_name": null, "location_description": "West of Sooke at Orveas Bay", "material": "B", "subtype": "5a", "area": "28.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sooke Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 450, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:09:07Z", "aquifer_name": null, "location_description": "Nicholson; Stacey Ck. Fan and South", "material": "SG", "subtype": "4b", "area": "3.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 451, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:09:15Z", "aquifer_name": null, "location_description": "Between Ft. St. John & Blueberry Ck.", "material": "B", "subtype": "5a", "area": "3286.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 452, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:09:24Z", "aquifer_name": null, "location_description": "E. of Invermere; E. side of Columbia R.", "material": "SG", "subtype": "4b", "area": "1.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 453, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:10:45Z", "aquifer_name": null, "location_description": "Windermere; E. side of Windermere LK.", "material": "SG", "subtype": "4b", "area": "65.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Glaciofluvial; Multiple stacked aquifers?", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 454, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:09:39Z", "aquifer_name": null, "location_description": "S. of Golden; across R. from Nicholson", "material": "SG", "subtype": "1b", "area": "4.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 455, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:09:46Z", "aquifer_name": null, "location_description": "Hospital Creek near Golden", "material": "SG", "subtype": "4b", "area": "0.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 456, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:09:54Z", "aquifer_name": null, "location_description": "Golden, confluence of 2 rivers", "material": "SG", "subtype": "1b", "area": "10.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 457, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:10:02Z", "aquifer_name": null, "location_description": "NE of Invermere; E. side of River", "material": "SG", "subtype": "4b", "area": "0.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 458, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:10:56Z", "aquifer_name": null, "location_description": "Fairmont Hotsprings; W. side of R.", "material": "SG", "subtype": "1b", "area": "15.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 459, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:10:16Z", "aquifer_name": null, "location_description": "Fairmont Hot Springs", "material": "SG", "subtype": "4b", "area": "3.3", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 460, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:10:24Z", "aquifer_name": null, "location_description": "Madias Ck.; N. of Fairmont Hotsprings", "material": "SG", "subtype": "3", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 461, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": null, "location_description": "Upper Mission Creek", "material": "SG", "subtype": "4b", "area": "15.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 462, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:09:20Z", "aquifer_name": "Bellevue fan aquifer", "location_description": "Upper Mission in south Kelowna", "material": "SG", "subtype": "3", "area": "23.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 463, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:31:51Z", "aquifer_name": "merged with aquifer 464 in 2018", "location_description": "S, E, NE of Kelowna; S & E side of valley", "material": "SG", "subtype": "4b", "area": "64.2", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 464, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:17:45Z", "aquifer_name": "Greater Kelowna Aquifer", "location_description": "Below Kelowna to Ellison Lake", "material": "SG", "subtype": "4b", "area": "93.6", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 465, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:32:37Z", "aquifer_name": "Merged with 464 in 2018", "location_description": "S. Kelowna; possibly E. to Rutland", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "L", "known_water_use": null, "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 466, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:33:01Z", "aquifer_name": "merged with 464 in 2018", "location_description": "6 km SE of Kelowna", "material": "SG", "subtype": "4a", "area": "0.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 467, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:22:27Z", "aquifer_name": "Mission Creek Aquifer", "location_description": "East Kelowna and Rutland area", "material": "SG", "subtype": "1c", "area": "41.7", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 468, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:34:00Z", "aquifer_name": "merged with 464 in 2018", "location_description": "2 km N of Kelowna; Clifton Rd. area", "material": "SG", "subtype": "4a", "area": "0.2", "productivity": "H", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 469, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:24:46Z", "aquifer_name": "Glemmore Basal Aquifer", "location_description": "Glenmore Valley, N. of Kelowna", "material": "SG", "subtype": "4b", "area": "11.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 470, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:11:59Z", "aquifer_name": "470", "location_description": "Kelowna north to Ellison Lake", "material": "B", "subtype": "6b", "area": "52.2", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Volcanic Rk, Penticton Grp, Cenozoic Era & Harper Ranch Grp, Paleozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 471, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:12:06Z", "aquifer_name": null, "location_description": "West of Ellison Lake", "material": "B", "subtype": "6b", "area": "127.6", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Intrusive rks; Mesozoic Era; Granite & Alkali feldspar granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 472, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:12:14Z", "aquifer_name": "472", "location_description": "Southeast of Ellison Lake", "material": "B", "subtype": "6b", "area": "18.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Metamorphic Rk, Shuswap Assemblage, Proterozoic to Paleozoic Era", "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 473, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-21T11:19:17Z", "aquifer_name": null, "location_description": "Mission, Daves & Cardinal Ck area", "material": "B", "subtype": "6b", "area": "39.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 474, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:12:48Z", "aquifer_name": null, "location_description": "Kettle Valley - Rock Creek", "material": "SG", "subtype": "1b", "area": "1.4", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 475, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:12:55Z", "aquifer_name": null, "location_description": "Bedrock slope north of Rock Creek", "material": "B", "subtype": "6b", "area": "0.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 476, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:01Z", "aquifer_name": null, "location_description": "Low lying area northeast of Rock Creek", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 477, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:09Z", "aquifer_name": null, "location_description": "Kettle R., eastward from Rock Ck.", "material": "SG", "subtype": "1c", "area": "5.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 478, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:18Z", "aquifer_name": null, "location_description": "Midway", "material": "SG", "subtype": "3", "area": "3.6", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 479, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:31Z", "aquifer_name": null, "location_description": "Kettle River Valley near Christina Lake", "material": "SG", "subtype": "4b", "area": "9.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 480, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:39Z", "aquifer_name": null, "location_description": "South end of Christina Lk.", "material": "SG", "subtype": "3", "area": "0.9", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 481, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:46Z", "aquifer_name": null, "location_description": "Kettle River Valley at West ridge", "material": "SG", "subtype": "1c", "area": "6.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 482, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:13:53Z", "aquifer_name": null, "location_description": "Kettle river Valley near Beaverdell", "material": "SG", "subtype": "1c", "area": "15.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 483, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:00Z", "aquifer_name": null, "location_description": "Trail Townsite", "material": "SG", "subtype": "1b", "area": "1.3", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 484, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:12Z", "aquifer_name": null, "location_description": "Waneta Junction/southeast of Trail", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 485, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:19Z", "aquifer_name": null, "location_description": "Southwest of the Village of Montrose", "material": "SG", "subtype": "3", "area": "0.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 486, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:27Z", "aquifer_name": null, "location_description": "Columbia Gardens northwards to Kelly Ck.", "material": "B", "subtype": "6b", "area": "21.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 487, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:34Z", "aquifer_name": null, "location_description": "Goat River Floodplain near Creston", "material": "SG", "subtype": "4a", "area": "10.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 488, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:43Z", "aquifer_name": null, "location_description": "Lister, South of Creston", "material": "B", "subtype": "6b", "area": "77.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 489, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:52Z", "aquifer_name": null, "location_description": "Canyon, SE of Creston", "material": "SG", "subtype": "3", "area": "2.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 490, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:14:59Z", "aquifer_name": null, "location_description": "Rykerts Lake", "material": "SG", "subtype": "3", "area": "0.7", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 491, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:06Z", "aquifer_name": null, "location_description": "Southern area of the Moyie R.", "material": "SG", "subtype": "1b", "area": "3.3", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 492, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:13Z", "aquifer_name": null, "location_description": "Yahk", "material": "SG", "subtype": "1b", "area": "1.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 493, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:19Z", "aquifer_name": null, "location_description": "Ross Spur, North", "material": "B", "subtype": "5a", "area": "6.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 494, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:26Z", "aquifer_name": null, "location_description": "Ross Spur, South", "material": "B", "subtype": "6b", "area": "20.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 495, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:33Z", "aquifer_name": null, "location_description": "Fruitvale Creek", "material": "B", "subtype": "6b", "area": "11.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 496, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:42Z", "aquifer_name": null, "location_description": "Salmo River", "material": "SG", "subtype": "1b", "area": "15.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 497, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:50Z", "aquifer_name": null, "location_description": "Erie 1, Salmo", "material": "SG", "subtype": "1c", "area": "1.3", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 498, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:15:59Z", "aquifer_name": null, "location_description": "Erie 2, Salmo", "material": "SG", "subtype": "3", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 499, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:16:07Z", "aquifer_name": "504", "location_description": "Alice Siding, north of Creston", "material": "B", "subtype": "6b", "area": "35.2", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary & dolomitic rks, Creston, Kitchener & Aldridge Formations", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 500, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:16:14Z", "aquifer_name": null, "location_description": "Blueberry, between China Ck. and Kinnaird", "material": "B", "subtype": "6b", "area": "14.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 501, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:37:19Z", "aquifer_name": null, "location_description": "Lower China Creek", "material": "SG", "subtype": "4a", "area": "1.3", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 502, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:37:26Z", "aquifer_name": "502", "location_description": "Robson, N of Columbia R. & W of Castlegar", "material": "SG", "subtype": "4a", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fluvial sand and gravels", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 503, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:37:32Z", "aquifer_name": null, "location_description": "Robson - South", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 504, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:37:39Z", "aquifer_name": "504", "location_description": "Raspberry Village", "material": "SG", "subtype": "4a", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Post glacial floodplain", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 505, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:37:45Z", "aquifer_name": "505", "location_description": "Castlegar Townsite North", "material": "SG", "subtype": "4b", "area": "1.9", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 506, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-08-21T10:02:14Z", "aquifer_name": "506", "location_description": "Brilliant, Kootenay & Columbia Rivers", "material": "SG", "subtype": "1b", "area": "0.8", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial sand and gravels", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 507, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:37:58Z", "aquifer_name": null, "location_description": "Airport Creek", "material": "SG", "subtype": "4a", "area": "1.9", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 508, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:38:08Z", "aquifer_name": null, "location_description": "Selkirk Colledge, Southeast of Castlegar", "material": "SG", "subtype": "4b", "area": "1.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 509, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:38:16Z", "aquifer_name": null, "location_description": "Castlegar - South", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 510, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:38:22Z", "aquifer_name": null, "location_description": "Castlegar - Airport", "material": "SG", "subtype": "4b", "area": "6.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 511, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:11:12Z", "aquifer_name": null, "location_description": "Fortynine Creek", "material": "B", "subtype": "6b", "area": "23.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 512, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:11:25Z", "aquifer_name": null, "location_description": "Falls Creek near West Arm, Kootenay Lake", "material": "B", "subtype": "6b", "area": "31.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 513, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:11:37Z", "aquifer_name": null, "location_description": "Krestova B. R.", "material": "B", "subtype": "6b", "area": "12.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 514, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:11:49Z", "aquifer_name": null, "location_description": "Crescent Valley", "material": "SG", "subtype": "4b", "area": "15.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 515, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:38:58Z", "aquifer_name": null, "location_description": "Krestova - Surficial", "material": "SG", "subtype": "4a", "area": "0.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 516, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:04Z", "aquifer_name": null, "location_description": "Willow Point", "material": "SG", "subtype": "3", "area": "0.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 517, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:11Z", "aquifer_name": null, "location_description": "Roberts Bay - Cedar Point", "material": "SG", "subtype": "4b", "area": "2.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 518, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:19Z", "aquifer_name": null, "location_description": "Mt. Nelson", "material": "B", "subtype": "6b", "area": "1.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 519, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:26Z", "aquifer_name": null, "location_description": "Baynes Lake - East 1", "material": "SG", "subtype": "4b", "area": "6.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 520, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:35Z", "aquifer_name": null, "location_description": "Baynes Lake - East 2", "material": "SG", "subtype": "4a", "area": "4.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 521, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:41Z", "aquifer_name": null, "location_description": "Jaffray", "material": "SG", "subtype": "4a", "area": "5.2", "productivity": "H", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 522, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:47Z", "aquifer_name": null, "location_description": "Rosen Lake - South", "material": "SG", "subtype": "4a", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 523, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:53Z", "aquifer_name": null, "location_description": "Cranbrook S., B. R.", "material": "B", "subtype": "5a", "area": "28.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 524, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:39:59Z", "aquifer_name": null, "location_description": "Cranbrook", "material": "SG", "subtype": "4b", "area": "21.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Glaciofluvial", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 525, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:12:03Z", "aquifer_name": null, "location_description": "Cranbrook - West St. Mary River", "material": "SG", "subtype": "4b", "area": "30.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 526, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:40:15Z", "aquifer_name": null, "location_description": "Cranbrook - East", "material": "SG", "subtype": "4b", "area": "10.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 527, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:40:23Z", "aquifer_name": null, "location_description": "Bull River", "material": "SG", "subtype": "4b", "area": "4.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvioglacial; possibly stacked aquifers", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 528, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:40:36Z", "aquifer_name": null, "location_description": "Wardner", "material": "SG", "subtype": "1b", "area": "8.0", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 529, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:40:42Z", "aquifer_name": null, "location_description": "Wardner", "material": "B", "subtype": "5b", "area": "46.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sed rock; Banff, Exshaw, Palliser, Sassenach, Alexo form.; Paleozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 530, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:40:49Z", "aquifer_name": null, "location_description": "Rosen Lake - North", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 531, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:40:58Z", "aquifer_name": null, "location_description": "Tie Lake", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 532, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:41:06Z", "aquifer_name": null, "location_description": "Elk River", "material": "SG", "subtype": "4b", "area": "20.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 533, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:46:53Z", "aquifer_name": null, "location_description": "Combined with aquifer 532 in 2015", "material": null, "subtype": "4b", "area": null, "productivity": null, "demand": "H", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 534, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:47:15Z", "aquifer_name": null, "location_description": "Fernie S. B. R.", "material": "B", "subtype": "5a", "area": "6.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 535, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:12:25Z", "aquifer_name": null, "location_description": "Cranbrook Northwest", "material": "B", "subtype": "5a", "area": "115.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Indurated sedimentary rocks; siltstone and argillite", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 536, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:12:35Z", "aquifer_name": null, "location_description": "Wycliffe", "material": "B", "subtype": "5a", "area": "54.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 537, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:12:48Z", "aquifer_name": null, "location_description": "Kimberley, B.R.", "material": "B", "subtype": "5a", "area": "25.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 538, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:13:00Z", "aquifer_name": null, "location_description": "St. Mary River IR", "material": "SG", "subtype": "1a", "area": "11.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 539, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:13:12Z", "aquifer_name": null, "location_description": "Mather Creek", "material": "SG", "subtype": "4b", "area": "11.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 540, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:03Z", "aquifer_name": null, "location_description": "Wasa Lake", "material": "SG", "subtype": "1b", "area": "10.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 541, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:10Z", "aquifer_name": null, "location_description": "Ta Ta Creek", "material": "SG", "subtype": "4b", "area": "3.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 542, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:17Z", "aquifer_name": null, "location_description": "North of Wasa Lake", "material": "SG", "subtype": "4b", "area": "4.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 543, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:27Z", "aquifer_name": null, "location_description": "Skookumchuk S.", "material": "SG", "subtype": "4b", "area": "23.0", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 544, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:35Z", "aquifer_name": null, "location_description": "Skookumchuk E.", "material": "SG", "subtype": "1c", "area": "0.5", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 545, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:43Z", "aquifer_name": null, "location_description": "NE of Skookumchuck", "material": "SG", "subtype": "1c", "area": "6.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 546, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:51Z", "aquifer_name": null, "location_description": "Moyie River - South near Glenlily", "material": "SG", "subtype": "1b", "area": "3.2", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 547, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:48:58Z", "aquifer_name": null, "location_description": "SE portion of Keats Island", "material": "SG", "subtype": "4c", "area": "0.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 548, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:06Z", "aquifer_name": null, "location_description": "Keats Island", "material": "B", "subtype": "6b", "area": "6.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 549, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:13Z", "aquifer_name": null, "location_description": "Southwestern portion of Gambier Island", "material": "B", "subtype": "6b", "area": "4.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 550, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:21Z", "aquifer_name": null, "location_description": "Carmelo Point, Gambier Island", "material": "B", "subtype": "6b", "area": "2.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2001, "notes": null}}, {"model": "aquifers.aquifer", "pk": 551, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:28Z", "aquifer_name": null, "location_description": "Northeast portion of Gambier Island", "material": "B", "subtype": "6b", "area": "5.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2002, "notes": null}}, {"model": "aquifers.aquifer", "pk": 552, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:34Z", "aquifer_name": null, "location_description": "Langdale", "material": "SG", "subtype": "2", "area": "0.6", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 553, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:41Z", "aquifer_name": null, "location_description": "Soames Point", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 554, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:48Z", "aquifer_name": null, "location_description": "Gibsons Landing", "material": "SG", "subtype": "4b", "area": "0.5", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Capiliano Sediments", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 555, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:49:55Z", "aquifer_name": null, "location_description": "Sechelt", "material": "B", "subtype": "6b", "area": "24.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 556, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:01Z", "aquifer_name": null, "location_description": "Chapman Creek", "material": "SG", "subtype": "2", "area": "0.9", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 557, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:07Z", "aquifer_name": null, "location_description": "Sargeant Bay, Sunshine Coast", "material": "SG", "subtype": "4c", "area": "3.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Recent fluvial and glacio-marine sediments; Capilano Sediments", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 558, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:15Z", "aquifer_name": null, "location_description": "Halfmoon Bay", "material": "B", "subtype": "6b", "area": "10.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 559, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:21Z", "aquifer_name": null, "location_description": "Sakinaw Lake; Mixel Lake", "material": "B", "subtype": "6b", "area": "14.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Bedrock \u0096 fractured granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 560, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:29Z", "aquifer_name": "Gibson\u0092s Lower Aquifer", "location_description": "Chaster Creek", "material": "SG", "subtype": "4b", "area": "10.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 561, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:38Z", "aquifer_name": null, "location_description": "Kleindale", "material": "B", "subtype": "6b", "area": "4.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 562, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:45Z", "aquifer_name": null, "location_description": "Wakefield Creek, Sechelt", "material": "B", "subtype": "6b", "area": "9.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Fractured granite; occasionally black basalt; likely the Late Jurassic Period", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 563, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:51Z", "aquifer_name": null, "location_description": "Wakefield Creek, Sechelt", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Recent glacio-fluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 564, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:50:59Z", "aquifer_name": null, "location_description": "Porpoise Bay", "material": "B", "subtype": "6b", "area": "0.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 565, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:51:05Z", "aquifer_name": null, "location_description": "Francis Penninsula", "material": "B", "subtype": "6b", "area": "3.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Bedrock; fractured basalt or granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 566, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:51:14Z", "aquifer_name": null, "location_description": "Angus Creek", "material": "SG", "subtype": "3", "area": "1.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Salish Sediments", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 567, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:06:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:51:22Z", "aquifer_name": null, "location_description": "East of south end of Windermere Lk", "material": "SG", "subtype": "4b", "area": "0.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 568, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:06:31Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:51:30Z", "aquifer_name": null, "location_description": "Shuswap Ck. area; NE of Invermere", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 569, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:51:37Z", "aquifer_name": null, "location_description": "Confluence of Telkwa and Bulkley Rivers", "material": "SG", "subtype": "4b", "area": "2.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 570, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:27:48Z", "aquifer_name": null, "location_description": "Terrace - SE; Jack Pine Flats", "material": "SG", "subtype": "3", "area": "4.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 571, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:27:56Z", "aquifer_name": null, "location_description": "E. of Terrace - Thornhill; E. of River", "material": "SG", "subtype": "1b", "area": "6.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 572, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:28:06Z", "aquifer_name": null, "location_description": "E. of Terrace - Thornhill; E. side of R.", "material": "SG", "subtype": "4b", "area": "6.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 573, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:28:14Z", "aquifer_name": null, "location_description": "Terrace - North", "material": "SG", "subtype": "4b", "area": "13.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 574, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:28:23Z", "aquifer_name": null, "location_description": "Gossan Creek; E. of Terrace", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 575, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:28:31Z", "aquifer_name": null, "location_description": "Terrace - South", "material": "SG", "subtype": "4b", "area": "9.9", "productivity": "H", "demand": "H", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 576, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:52:34Z", "aquifer_name": null, "location_description": "S. of Telkwa; SE side of Telkwa River", "material": "SG", "subtype": "4b", "area": "5.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 577, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:52:41Z", "aquifer_name": null, "location_description": "E. of Smithers; E. side of Bulkley River", "material": "SG", "subtype": "4b", "area": "13.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 578, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:52:47Z", "aquifer_name": null, "location_description": "E. of Smithers; E. side of Bulkley River", "material": "B", "subtype": "5a", "area": "159.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 579, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:52:54Z", "aquifer_name": null, "location_description": "E. of Smithers; E. side of Bulkley River", "material": "B", "subtype": "5a", "area": "62.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 580, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:01Z", "aquifer_name": null, "location_description": "Smithers - North; W. side of Bulkley River", "material": "B", "subtype": "5a", "area": "5.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 581, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:07Z", "aquifer_name": null, "location_description": "S of Telkwa & Bulkley R. confluence", "material": "SG", "subtype": "4b", "area": "26.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 582, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:14Z", "aquifer_name": null, "location_description": "Confluence of Telkwa & Bulkley R", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 583, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:21Z", "aquifer_name": null, "location_description": "East side of Telkwa River", "material": "SG", "subtype": "4a", "area": "2.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 584, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:30Z", "aquifer_name": null, "location_description": "Smithers - North; E. side of Bulkley River", "material": "SG", "subtype": "4b", "area": "20.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 585, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:37Z", "aquifer_name": null, "location_description": "Smithers - South; W. side of Bulkley River", "material": "SG", "subtype": "4b", "area": "9.8", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 586, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:45Z", "aquifer_name": null, "location_description": "Smithers; Between Beavery & John Brown Cks", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 587, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:53:51Z", "aquifer_name": null, "location_description": "Smithers - East; E. side of Bulkley River", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 588, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-17T10:51:17Z", "aquifer_name": "Merged with 575 - Not in Use", "location_description": "Terrace - West; Kitsumkalum I.R.", "material": "G", "subtype": "1b", "area": "0.6", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 589, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:54:06Z", "aquifer_name": null, "location_description": "East of Pine and Murray River confluence", "material": "B", "subtype": "5a", "area": "19.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 590, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:29:10Z", "aquifer_name": null, "location_description": "South Groundbirch", "material": "SG", "subtype": "4b", "area": "49.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 591, "fields": {"create_user": "WELLS", "create_date": "2003-08-14T07:48:07Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:29:50Z", "aquifer_name": null, "location_description": "Groundbirch, Willow Valley, Sunset Prairie", "material": "B", "subtype": "5a", "area": "519.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Smoky Group, Kaskapau Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 592, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T09:47:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:54:27Z", "aquifer_name": null, "location_description": "Willow Valley near Sunset Prairie", "material": "SG", "subtype": "4b", "area": "63.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 593, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T11:07:24Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T13:30:13Z", "aquifer_name": null, "location_description": "Bear Mountain, Dawson Creek area", "material": "B", "subtype": "5a", "area": "1146.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Kaskapau Formation, Smoky Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 594, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T14:48:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:54:42Z", "aquifer_name": null, "location_description": "Groundbirch Buried Channel", "material": "SG", "subtype": "4b", "area": "53.8", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Wisconsinan sediments", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 595, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T14:51:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:54:51Z", "aquifer_name": null, "location_description": "North of Sunset Creek, Sunset Prarie", "material": "B", "subtype": "5a", "area": "69.6", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 596, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T15:00:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:54:59Z", "aquifer_name": null, "location_description": "Progress", "material": "SG", "subtype": "4b", "area": "125.2", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Laurentide Glacial lake", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 597, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T15:04:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:55:06Z", "aquifer_name": null, "location_description": "Arras Buried Channels", "material": "SG", "subtype": "4b", "area": "40.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Wisconsinan sediments", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 598, "fields": {"create_user": "WELLS", "create_date": "2003-08-22T15:08:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:55:13Z", "aquifer_name": null, "location_description": "Pouce Coupe", "material": "SG", "subtype": null, "area": "3.2", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "recent fluvial deposits", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 599, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:05:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:55:20Z", "aquifer_name": null, "location_description": "Sooke R floodplain, west to Kemp Lk", "material": "SG", "subtype": "4b", "area": "19.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Capilano sediments and Vashon till", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 600, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:08:30Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T11:55:28Z", "aquifer_name": null, "location_description": "Horse Creek Fan S. of Nicholson", "material": "SG", "subtype": "3", "area": "2.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 601, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:09:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:51:33Z", "aquifer_name": null, "location_description": "5 km S. of Radium Hot Springs", "material": "SG", "subtype": "1b", "area": "0.1", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 602, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:12:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:41:34Z", "aquifer_name": null, "location_description": "from Radium towards Columbia River", "material": "SG", "subtype": "1b", "area": "1.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 603, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:13:50Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:13:24Z", "aquifer_name": null, "location_description": "Invermere 3km N and S", "material": "SG", "subtype": "1b", "area": "13.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 604, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:16:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:41:51Z", "aquifer_name": null, "location_description": "East of Sooke around Young Lake", "material": "SG", "subtype": "4b", "area": "2.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand and Saanichton gravel", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 605, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:18:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:41:59Z", "aquifer_name": null, "location_description": "South of Broom Hill NE of Sooke Bay", "material": "SG", "subtype": "4b", "area": "0.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand and Saanichton gravel", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 606, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:33:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:07Z", "aquifer_name": "Sooke-Metchosin", "location_description": "Colwood, Langford, Metchosin, Sooke", "material": "B", "subtype": "6b", "area": "537.6", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Metchosin Igneous Complex; Gabbroic, basaltic & volcanic rock", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 607, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:37:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:15Z", "aquifer_name": null, "location_description": "North end of Saanich Peninsula", "material": "B", "subtype": "5a", "area": "9.1", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Nanaimo Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 608, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:37:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:25Z", "aquifer_name": "North Central Saanich", "location_description": "North Saanich to Elk Lake", "material": "B", "subtype": "6b", "area": "79.7", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Island Plutonic Suite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 609, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:38:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:33Z", "aquifer_name": null, "location_description": "Littlewood Rd N of Victoria Intl Airport", "material": "SG", "subtype": "4b", "area": "0.5", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 610, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:39:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:40Z", "aquifer_name": null, "location_description": "North Saanich, Bazan Bay", "material": "SG", "subtype": "4b", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 611, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:40:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:47Z", "aquifer_name": "Hagan Aquifer", "location_description": "Saanichton, Central Saanich", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "L", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand & gravel; Upper unit of the Cowichan Head formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 612, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:40:46Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:42:56Z", "aquifer_name": "Keating", "location_description": "Central Saanich, Keating", "material": "SG", "subtype": "4b", "area": "8.5", "productivity": "M", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sand & gravel; Upper unit of the Cowichan Head Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 613, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:41:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:06Z", "aquifer_name": "Durrance", "location_description": "Durrance Rd, Saanich", "material": "SG", "subtype": "4b", "area": "0.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand & gravel; Upper unit of the Cowichan Head Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 614, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:41:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:13Z", "aquifer_name": "Karmutsen", "location_description": "Saanich between Cordova and Brentwood Bay", "material": "B", "subtype": "6b", "area": "17.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Karmutsen Formation; A basaltic unit with minor breccia, tuff & limestone", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 615, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:42:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:20Z", "aquifer_name": null, "location_description": "East side of Saanich Peninsula", "material": "SG", "subtype": "4b", "area": "3.4", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "I", "litho_stratographic_unit": "Quadra sand, Cowichan Head Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 616, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:43:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:27Z", "aquifer_name": "Cordova Bay", "location_description": "Elk Lake to Cordova Bay, Saanich", "material": "SG", "subtype": "4b", "area": "7.9", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 617, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:44:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:34Z", "aquifer_name": "West Saanich Road", "location_description": "West Saanich Rd at Wallace Dr", "material": "SG", "subtype": "4b", "area": "0.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand & gravel; Upper unit of the Cowichan Head Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 618, "fields": {"create_user": "WELLS", "create_date": "2004-01-12T13:45:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:41Z", "aquifer_name": null, "location_description": "Port Renfrew, south side of San Juan River", "material": "B", "subtype": "6b", "area": "5.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Leech River Formation", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 619, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:07:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:48Z", "aquifer_name": null, "location_description": "Mayne Island", "material": "B", "subtype": "5a", "area": "8.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 620, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:07:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:43:56Z", "aquifer_name": null, "location_description": "Mayne Island", "material": "B", "subtype": "5a", "area": "7.7", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 621, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:07:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:44:02Z", "aquifer_name": null, "location_description": "Kelly Lake", "material": "B", "subtype": "5a", "area": "27.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Wapiti Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 622, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:07:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:44:09Z", "aquifer_name": null, "location_description": "South of Pouce Coupe", "material": "B", "subtype": "5a", "area": "280.2", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Dowling, Thistle, Hanson and Muskiki Members", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 623, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:14:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:44:16Z", "aquifer_name": null, "location_description": "Lone Prairie area", "material": "SG", "subtype": "5a", "area": "17.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "S & gr of glacial or pre-glacial origin", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 624, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:07:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:44:23Z", "aquifer_name": null, "location_description": "Wildmore Ck.; Chetwind - Groundbirch", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan and glaciofluvial deposits-intermixed", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 625, "fields": {"create_user": "SYSTEM", "create_date": "2004-08-26T14:07:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T14:44:30Z", "aquifer_name": null, "location_description": "Bissett Ck. SW of Chetwynd", "material": "SG", "subtype": "3", "area": "0.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 626, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:29:30Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:02Z", "aquifer_name": null, "location_description": "N. of Pine River; Chetwynd area", "material": "SG", "subtype": "4b", "area": "2.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 627, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:30:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:08Z", "aquifer_name": null, "location_description": "Dhetwynd area; W. of Dokie Siding", "material": "B", "subtype": "5a", "area": "7.8", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Cruiser Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 628, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:31:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:15Z", "aquifer_name": null, "location_description": "Chetwyn; N. of Pine R.", "material": "SG", "subtype": "3", "area": "1.5", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 629, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:31:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:33Z", "aquifer_name": null, "location_description": "Chetwynd area", "material": "SG", "subtype": "3", "area": "0.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 630, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:33:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:41Z", "aquifer_name": null, "location_description": "Jackfish Lake", "material": "SG", "subtype": "4b", "area": "8.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 631, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:33:25Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:48Z", "aquifer_name": null, "location_description": "S. of the Peace R.", "material": "B", "subtype": "5a", "area": "43.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Kaskapau and Dunvegan Formations", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 632, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:33:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:13:56Z", "aquifer_name": null, "location_description": "Navy Channel, S. Mayne Is.", "material": "B", "subtype": "5a", "area": "3.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Upper Cretaceous; Nanimo Group; Gabriola & Spray Formations", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 633, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:34:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:02Z", "aquifer_name": null, "location_description": "South of the Peace River", "material": "B", "subtype": "5a", "area": "44.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Kaskapau and Dunvegan Formations", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 634, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:34:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:10Z", "aquifer_name": null, "location_description": "Taylor; S. of Peace River", "material": "B", "subtype": "5a", "area": "83.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 635, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:35:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:17Z", "aquifer_name": null, "location_description": "SW of Tumbler Ridge townsite", "material": "G", "subtype": null, "area": "0.9", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 636, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:35:38Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:23Z", "aquifer_name": null, "location_description": "Goodlow; E. of Ft. St. John", "material": "SG", "subtype": "4b", "area": "3.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 637, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:35:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:30Z", "aquifer_name": null, "location_description": "Between Prespatou & Umbach Cks.", "material": "SG", "subtype": "4b", "area": "83.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "till with minor sand & gravel deposits", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 638, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:37:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:36Z", "aquifer_name": null, "location_description": "Between Snyder & Buic Cks.", "material": "SG", "subtype": "4b", "area": "20.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 639, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:39:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:42Z", "aquifer_name": null, "location_description": "NW of Rose Prarie; N. of Blueberry R.", "material": "B", "subtype": "5a", "area": "844.8", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 640, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:40:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:49Z", "aquifer_name": null, "location_description": "E. of Tumbler Ridge; N. of Flatbed Ck.", "material": "SG", "subtype": "4a", "area": "2.5", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 641, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:40:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:14:56Z", "aquifer_name": null, "location_description": "Between Francois and Tchesinkut Lakes", "material": "SG", "subtype": "4b", "area": "15.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 642, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:41:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:09Z", "aquifer_name": null, "location_description": "Between Francois and Tchesinkut Lakes", "material": "B", "subtype": "6a", "area": "41.4", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Cenozoic Era Basalts", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 643, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:41:30Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:15Z", "aquifer_name": null, "location_description": "Endako; N. of Endako R.", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 644, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:41:46Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:22Z", "aquifer_name": null, "location_description": "NE of burns and Decker Lakes", "material": "B", "subtype": "6b", "area": "19.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; granitic intrusions", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 645, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:42:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:30Z", "aquifer_name": null, "location_description": "Gerow Is. & S. shore of Burns Lk.", "material": "SG", "subtype": "4b", "area": "3.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 646, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:42:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:36Z", "aquifer_name": null, "location_description": "Between Burns and Tchesinkut Lakes", "material": "B", "subtype": "6b", "area": "9.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; granitic intrusions", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 647, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:42:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:43Z", "aquifer_name": null, "location_description": "E. shore of Decker Lake", "material": "SG", "subtype": "4b", "area": "3.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 648, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:42:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:49Z", "aquifer_name": null, "location_description": "N. of Decker Lake", "material": "SG", "subtype": "4b", "area": "7.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 649, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:46:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:15:56Z", "aquifer_name": null, "location_description": "N. shore of Burns Lk.", "material": "SG", "subtype": "4b", "area": "3.8", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 650, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:47:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:03Z", "aquifer_name": null, "location_description": "Simon Bay; N. shore of Fraser Lk.", "material": "B", "subtype": "6a", "area": "3.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Endako Group Volcanics", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 651, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:47:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:10Z", "aquifer_name": null, "location_description": "N. shore of Burns Lake", "material": "B", "subtype": null, "area": "3.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; granitic intrusions", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 652, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:48:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:17Z", "aquifer_name": null, "location_description": "NW of Burns Lk.; S. of Old Woman Lk", "material": "B", "subtype": "6a", "area": "4.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Endako Group Volcanics", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 653, "fields": {"create_user": "SYSTEM", "create_date": "2004-09-14T15:44:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:24Z", "aquifer_name": null, "location_description": "Rose Lk.; NW of Burns Lk.", "material": "SG", "subtype": "4b", "area": "1.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 654, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:49:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:31Z", "aquifer_name": null, "location_description": "NE of Huston; W. of Topley", "material": "B", "subtype": "6a", "area": "15.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Endako Group Volcanics", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 655, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:49:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:38Z", "aquifer_name": null, "location_description": "NE of Huston; W. of Topley", "material": "SG", "subtype": "4b", "area": "12.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 656, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:49:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:45Z", "aquifer_name": null, "location_description": "Topley Landing; W. of Babine lk.", "material": "SG", "subtype": "4b", "area": "0.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 657, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:50:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:16:52Z", "aquifer_name": null, "location_description": "Confluence of Nechako & Cheslatta Rivers", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 658, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:50:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:02Z", "aquifer_name": null, "location_description": "S. of Bulkley R. nr. Huston", "material": "B", "subtype": "6b", "area": "9.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; Hazelton Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 659, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:50:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:09Z", "aquifer_name": null, "location_description": "S. of Bulkley R. nr. Huston", "material": "SG", "subtype": "1b", "area": "11.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 660, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:51:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:16Z", "aquifer_name": null, "location_description": "S. of Bulkley R. nr. Huston", "material": "SG", "subtype": "4b", "area": "6.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits; Buried sand & gravel channel deposits", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 661, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:51:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:23Z", "aquifer_name": null, "location_description": "Spider Lk nr Horne Lk", "material": "SG", "subtype": "4a", "area": "3.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Kame Feature", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 662, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:52:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:30Z", "aquifer_name": null, "location_description": "Between Big & Little Qualicum Rivers", "material": "SG", "subtype": "4b", "area": "53.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Quadra", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 663, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:52:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:38Z", "aquifer_name": "663", "location_description": "Upper reaches of Whisky Creek", "material": "SG", "subtype": "4a", "area": "9.8", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Kame terrace and delta glacio-fluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 664, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:53:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:45Z", "aquifer_name": null, "location_description": "Little Qualicum R. valley & delta", "material": "SG", "subtype": "1b", "area": "5.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Salish sediments", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 665, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:53:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:51Z", "aquifer_name": null, "location_description": "Between Big Qualicum R. & Thames Ck.", "material": "SG", "subtype": "4b", "area": "22.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Capilano Sediments", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 666, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:54:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:17:58Z", "aquifer_name": null, "location_description": "N. shore Stuart Lk.; NW of Ft. St. James", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 667, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:54:37Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:05Z", "aquifer_name": null, "location_description": "W. end of Fraser Lk.; W. bank of Perry Ck.", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 668, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:54:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:13Z", "aquifer_name": null, "location_description": "Stellako; W. end of Fraser k.", "material": "SG", "subtype": "4b", "area": "2.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 669, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:56:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:19Z", "aquifer_name": null, "location_description": "W. end of Fraser Lk.; S. bank of Endako R.", "material": "SG", "subtype": "4b", "area": "4.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 670, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:56:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:26Z", "aquifer_name": null, "location_description": "SW side of Fraser Lk.", "material": "SG", "subtype": "4b", "area": "2.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 671, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:56:31Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:35Z", "aquifer_name": null, "location_description": "SW side of Dry William Lk; S of Fraser Lk", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 672, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:56:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:45Z", "aquifer_name": null, "location_description": "SW side of Fraser Lk.", "material": "B", "subtype": "6a", "area": "15.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; Endako Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 673, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:56:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:52Z", "aquifer_name": null, "location_description": "S. side of Fraser Lake", "material": "B", "subtype": "6b", "area": "61.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Topley Intrusions; Granitic", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 674, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:57:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:18:59Z", "aquifer_name": null, "location_description": "NW side of Fraser Lake", "material": "B", "subtype": "6a", "area": "13.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; Endako Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 675, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:57:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-21T16:19:05Z", "aquifer_name": null, "location_description": "Dunalter Lake; NW. of Huston", "material": "B", "subtype": "6b", "area": "10.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; Hazelton Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 676, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:57:30Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:07:15Z", "aquifer_name": null, "location_description": "S. of Mathews Lk. W. of Huston", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacioalcusterine deposits", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 677, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:57:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:07:22Z", "aquifer_name": null, "location_description": "N. of Huston; NW of Bulkley R.", "material": "SG", "subtype": "4b", "area": "4.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacioalcusterine and glaciofluvial deposits", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 678, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:57:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:07:29Z", "aquifer_name": null, "location_description": "S. & SW of Francois Lk.; W. of Fraser Lk.", "material": "B", "subtype": "6b", "area": "110.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic; Hazelton Group", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 679, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:58:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:07:36Z", "aquifer_name": null, "location_description": "N. of Cheslatta R.; S. of Francois Lk.", "material": "SG", "subtype": "4b", "area": "19.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacioalcusterine and glacial moraine deposits", "mapping_year": 2003, "notes": null}}, {"model": "aquifers.aquifer", "pk": 680, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:58:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:11:29Z", "aquifer_name": "Wark-Colquitz", "location_description": "Victoria S of Elk Lake, E of Finlayson Arm", "material": "B", "subtype": "6b", "area": "209.0", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Wark-Colquitz Complex; Paleozoic; Crystalline igneous and meta-igneous rocks", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 681, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:59:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:11:36Z", "aquifer_name": null, "location_description": "Willis Point, SE side of Saanich Inlet", "material": "B", "subtype": "6b", "area": "7.9", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Bonanza Group volcanics; Lower Jurassic", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 682, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T16:59:50Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:11:59Z", "aquifer_name": null, "location_description": "Colwood, Langford, Metchosin", "material": "SG", "subtype": "4a", "area": "24.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Colwood Delta Formation", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 683, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:00:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:12:30Z", "aquifer_name": null, "location_description": "Metchosin, from Parry Bay inland 3 km", "material": "SG", "subtype": "4b", "area": "9.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand, Parry Bay Formation", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 684, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:00:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:12:38Z", "aquifer_name": null, "location_description": "Goldstream River mouth, Finlayson Arm", "material": "SG", "subtype": "1c", "area": "0.3", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Capilano and Salish sediments", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 685, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:01:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:12:45Z", "aquifer_name": "Pacheedaht", "location_description": "San Juan River floodplain, Port Renfrew", "material": "SG", "subtype": "1b", "area": "41.2", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Capilano and Salish sediments", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 686, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:03:40Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:12:53Z", "aquifer_name": null, "location_description": "Gordon Head, Saanich", "material": "SG", "subtype": "4b", "area": "7.3", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Quadra sand", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 687, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:06:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:13:00Z", "aquifer_name": null, "location_description": "Taylor Flats; SE of Ft. St. John", "material": "SG", "subtype": "3", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 688, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:06:36Z", "update_user": "PROXY_WELLS", "update_date": "2017-07-18T15:23:31Z", "aquifer_name": null, "location_description": "E. of Chetwynd; N. of Pine R.", "material": "B", "subtype": "5a", "area": "17.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation (Upper Cretaceous)", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 689, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:07:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:13:14Z", "aquifer_name": null, "location_description": "SE of Chetwynd; S. of Pine R.", "material": "B", "subtype": "5a", "area": "75.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 690, "fields": {"create_user": "WELLS", "create_date": "2004-08-24T17:07:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:13:24Z", "aquifer_name": null, "location_description": "Clayhurst area", "material": "SG", "subtype": "4b", "area": "23.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 691, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T13:04:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:13:32Z", "aquifer_name": null, "location_description": "East of Ash River", "material": "B", "subtype": "5a", "area": "29.3", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 692, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T13:05:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:13:40Z", "aquifer_name": null, "location_description": "Bear Creek; N of Stamp River Falls", "material": "SG", "subtype": "4a", "area": "1.6", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 693, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T13:05:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:13:48Z", "aquifer_name": null, "location_description": "Stamp River; d/s from Great Central Lake", "material": "SG", "subtype": "4a", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 694, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T13:05:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:01Z", "aquifer_name": null, "location_description": "Stamp River; E side of Stamp Falls", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 695, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T13:05:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:10Z", "aquifer_name": null, "location_description": "N shore of Sproat Lake; close to Kleecoot", "material": "SG", "subtype": "4b", "area": "1.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 696, "fields": {"create_user": "WELLS", "create_date": "2004-09-21T09:46:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:23Z", "aquifer_name": null, "location_description": "East of Stamp Falls", "material": "B", "subtype": "5a", "area": "4.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Cretaceous sandstone and shale", "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 697, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T12:12:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:32Z", "aquifer_name": null, "location_description": "East side of Alberni Valley", "material": "B", "subtype": "5a", "area": "42.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 698, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T12:27:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:42Z", "aquifer_name": null, "location_description": "North shore of Sproat Lake at Kleecoot", "material": "B", "subtype": "6b", "area": "5.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 699, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T12:31:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:49Z", "aquifer_name": null, "location_description": "N sh of Sproat Lk; 8 km W of Port Alberni", "material": "B", "subtype": "6b", "area": "1.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 700, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T12:33:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:14:56Z", "aquifer_name": null, "location_description": "N shore of Sproat Lake at Kleecoot", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 701, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T12:34:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:04Z", "aquifer_name": null, "location_description": "Eagle Point SW of Kleecoot", "material": "B", "subtype": "6b", "area": "2.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 702, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:26:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:10Z", "aquifer_name": null, "location_description": "McCoy Lake; W of Port Alberni", "material": "B", "subtype": "6b", "area": "18.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 703, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:27:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:16Z", "aquifer_name": null, "location_description": "W bank of Somass River", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 704, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:30:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:23Z", "aquifer_name": null, "location_description": "E bank of Somass River", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 705, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:32:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:29Z", "aquifer_name": null, "location_description": "Polly Point; 4km S of Port Alberni; E side", "material": "SG", "subtype": "3", "area": "0.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 706, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:34:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:36Z", "aquifer_name": null, "location_description": "Gabriola; Northern area", "material": "B", "subtype": "5a", "area": "5.9", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 707, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:40:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:43Z", "aquifer_name": null, "location_description": "China Cr; E Alb. In; 8km S of Pt Alberni", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 708, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:42:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:50Z", "aquifer_name": null, "location_description": "E side Alberni In; 8 km S of Port Alberni", "material": "B", "subtype": "6b", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 709, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:44:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:15:59Z", "aquifer_name": null, "location_description": "Gabriola; excluding northern portion", "material": "B", "subtype": "5a", "area": "46.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 710, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:46:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:06Z", "aquifer_name": null, "location_description": "South Pender", "material": "B", "subtype": "5a", "area": "9.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 711, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:48:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:12Z", "aquifer_name": null, "location_description": "North Pender; northern area", "material": "B", "subtype": "5a", "area": "11.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 712, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:49:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:21Z", "aquifer_name": null, "location_description": "North Pender; Port Browning", "material": "B", "subtype": "5a", "area": "6.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 713, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:50:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:28Z", "aquifer_name": null, "location_description": "Quilchena Cr; S shore of Nicola Lake", "material": "SG", "subtype": "1c", "area": "3.5", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 714, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:53:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:37Z", "aquifer_name": null, "location_description": "Nicola Lake Indian Reserve", "material": "SG", "subtype": "1c", "area": "3.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 715, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:55:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:45Z", "aquifer_name": null, "location_description": "mouths of Moore and Stumplake Creeks", "material": "SG", "subtype": "1b", "area": "4.3", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 716, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T14:58:46Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:30:07Z", "aquifer_name": "Spences Bridge", "location_description": "confluence of Nicola and Thompson Rivers", "material": "SG", "subtype": "1b", "area": "0.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 717, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:00:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:16:58Z", "aquifer_name": null, "location_description": "S of Ashcroft; E side of Thompson River", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 718, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:02:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:17:09Z", "aquifer_name": null, "location_description": "Ashcroft; Ashcroft Ranch", "material": "SG", "subtype": "4a", "area": "3.6", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 719, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:04:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:17:16Z", "aquifer_name": null, "location_description": "Ashcroft; W side of Thompson River", "material": "SG", "subtype": "1b", "area": "7.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 720, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:06:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:17:23Z", "aquifer_name": null, "location_description": "North Pender; southern portioin", "material": "B", "subtype": "5a", "area": "9.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 721, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:08:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:17:32Z", "aquifer_name": null, "location_description": "Saltspring Island; north part", "material": "B", "subtype": "5a", "area": "47.0", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2005, "notes": null}}, {"model": "aquifers.aquifer", "pk": 722, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:11:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:17:39Z", "aquifer_name": null, "location_description": "Saltspring Is; central part; Ganges area", "material": "B", "subtype": "6b", "area": "84.4", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2005, "notes": null}}, {"model": "aquifers.aquifer", "pk": 723, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:17:46Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:17:46Z", "aquifer_name": null, "location_description": "Saltspring Island", "material": "B", "subtype": "6b", "area": "51.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2005, "notes": null}}, {"model": "aquifers.aquifer", "pk": 724, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:19:11Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:31:35Z", "aquifer_name": "West of Merritt", "location_description": "Nicola R fldpln between Canford & Coyle", "material": "SG", "subtype": "1c", "area": "5.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 725, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:21:50Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:47:00Z", "aquifer_name": "Spius Creek West of Canford", "location_description": "s of Nicola R & Spius Cr con; W of Canford", "material": "B", "subtype": "6b", "area": "9.8", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 726, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:23:34Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:48:33Z", "aquifer_name": "Canford", "location_description": "Nicola R & Spius Cr con; w of Canford", "material": "SG", "subtype": "4b", "area": "5.4", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 727, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:24:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:18:17Z", "aquifer_name": null, "location_description": "Cherry Cr valley; SW of Kamloops", "material": "B", "subtype": "6b", "area": "29.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 728, "fields": {"create_user": "WELLS", "create_date": "2005-07-05T15:26:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:18:25Z", "aquifer_name": null, "location_description": "Cherry Cr valley; SW of Kamloops", "material": "SG", "subtype": "4b", "area": "8.4", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2004, "notes": null}}, {"model": "aquifers.aquifer", "pk": 729, "fields": {"create_user": "WELLS", "create_date": "2005-10-11T10:24:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:18:32Z", "aquifer_name": null, "location_description": "South Thetis Island", "material": "B", "subtype": "5a", "area": "0.6", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Mesozoic, upper cretaceous", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 730, "fields": {"create_user": "WELLS", "create_date": "2006-04-06T15:25:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:18:40Z", "aquifer_name": "730", "location_description": "South East Thetis Island", "material": "B", "subtype": "5a", "area": "2.7", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Northumberland Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 731, "fields": {"create_user": "WELLS", "create_date": "2006-04-06T15:28:30Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:18:47Z", "aquifer_name": "731", "location_description": "Thetis Island", "material": "B", "subtype": "5a", "area": "6.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 732, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:40:30Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:18:55Z", "aquifer_name": "732", "location_description": "Thetis Island", "material": "B", "subtype": "5a", "area": "1.3", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 733, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:44:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:02Z", "aquifer_name": null, "location_description": "Norway Island", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous De Courcy Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 734, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:46:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:11Z", "aquifer_name": null, "location_description": "Dayman Island", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 735, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:49:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:17Z", "aquifer_name": null, "location_description": "Saturna Island - east", "material": "B", "subtype": "5a", "area": "1.4", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Mesozoic, Geoffrey Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 736, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:49:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:25Z", "aquifer_name": null, "location_description": "Saturna Island - north", "material": "B", "subtype": "5a", "area": "2.6", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 737, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:55:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:31Z", "aquifer_name": null, "location_description": "Saturna Island - west", "material": "B", "subtype": "5a", "area": "2.9", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Mesozoic, Northumberland Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 738, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:57:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:38Z", "aquifer_name": null, "location_description": "Saturna Island - west", "material": "B", "subtype": "5a", "area": "0.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Northumberland Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 739, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T09:58:00Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:45Z", "aquifer_name": null, "location_description": "Denman Island - east", "material": "SG", "subtype": "4b", "area": "4.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Cenozoic, Quaternary glacial and post glacial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 740, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:00:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:52Z", "aquifer_name": null, "location_description": "Denman Island", "material": "B", "subtype": "5a", "area": "47.7", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Mesozoic, upper cretaceous De Courcy", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 741, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:03:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:19:59Z", "aquifer_name": null, "location_description": "Hudson Island", "material": "B", "subtype": "5a", "area": "0.2", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous De Courcy Formation", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 742, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:45:00Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:06Z", "aquifer_name": null, "location_description": "Scot Island", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, upper cretaceous De Courcy", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 743, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:47:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:12Z", "aquifer_name": null, "location_description": "Bowen Island, Gafton Lake Valley", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fluvial and glacio-fluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 744, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:50:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:24Z", "aquifer_name": null, "location_description": "Bowen Island - SW", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fluvial and glacio-fluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 745, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:53:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:27Z", "aquifer_name": null, "location_description": "Bowen Island - North", "material": "B", "subtype": "6b", "area": "10.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 746, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:54:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:35Z", "aquifer_name": null, "location_description": "Central Bowen Island", "material": "B", "subtype": "6b", "area": "14.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Lower to Middle Jurassic", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 747, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:56:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:42Z", "aquifer_name": null, "location_description": "Bowen Island - South and SE", "material": "B", "subtype": "6b", "area": "15.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 748, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T10:58:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:49Z", "aquifer_name": null, "location_description": "Bowen Island - west", "material": "B", "subtype": "6b", "area": "5.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 749, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:00:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:20:56Z", "aquifer_name": null, "location_description": "Bowen Island - SW", "material": "B", "subtype": "6b", "area": "4.1", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 750, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:01:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:21:03Z", "aquifer_name": null, "location_description": "Mayne Island, east of Village Bay", "material": "SG", "subtype": "4b", "area": "0.1", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 751, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:03:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:50:19Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 752, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:06:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:50:25Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 753, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:08:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:50:33Z", "aquifer_name": "753", "location_description": "Quadra Island, Quatheiaski Cove", "material": "SG", "subtype": "4b", "area": "3.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 754, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:12:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:50:41Z", "aquifer_name": "754", "location_description": "Quathiaski Cove, Quadra Island", "material": "B", "subtype": "6b", "area": "2.3", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Volcanic Rk, Late Mesozoic; noted as basalt on well records", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 755, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:15:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:50:49Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 756, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:17:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:02Z", "aquifer_name": "756", "location_description": "Quadra Is between Gowlland & Drew Harbours", "material": "B", "subtype": "6b", "area": "5.7", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic Rk, Late Mesozoic; Noted as Basalt or Granite on well records.", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 757, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:18:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:09Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "B", "subtype": "6b", "area": "0.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Late mesozoic", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 758, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:20:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:17Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "B", "subtype": "6b", "area": "0.2", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Late Mesozoic", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 759, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:21:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:25Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "B", "subtype": "6b", "area": "0.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Late Mesozoic", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 760, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:23:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:33Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "B", "subtype": "6b", "area": "0.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Late Mesozoic", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 761, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:25:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:41Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "SG", "subtype": "3", "area": "0.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Alluvial Fan", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 762, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:26:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:48Z", "aquifer_name": null, "location_description": "Quadra Island", "material": "SG", "subtype": "4b", "area": "1.6", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 763, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:28:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:51:55Z", "aquifer_name": null, "location_description": "Port McNeil", "material": "B", "subtype": "5a", "area": "0.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 764, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:29:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:02Z", "aquifer_name": null, "location_description": "Port McNeil - east", "material": "SG", "subtype": "4b", "area": "3.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Likely glacio-fluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 765, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:32:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:09Z", "aquifer_name": null, "location_description": "South of Tumbler Ridge", "material": "B", "subtype": null, "area": "2.3", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Fort St. John Group", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 766, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:34:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:17Z", "aquifer_name": null, "location_description": "Anahim- E of Tweedsmuir Park", "material": "SG", "subtype": "4b", "area": "2.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Outwash gravel and glaciolacustrine deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 767, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:37:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:23Z", "aquifer_name": null, "location_description": "Anahim \u0096 east of Tweedsmuir Park", "material": "B", "subtype": "6a", "area": "0.7", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "unknown", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 768, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:38:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:30Z", "aquifer_name": null, "location_description": "Anahim \u0096 east of Tweedsmuir Park", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 769, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:40:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:37Z", "aquifer_name": null, "location_description": "Clearwater \u0096 North of Kamloops", "material": "SG", "subtype": "3", "area": "9.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Alluvial fans", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 770, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:41:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:45Z", "aquifer_name": null, "location_description": "Clearwater \u0096 North of Kamloops", "material": "SG", "subtype": "1b", "area": "2.6", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 771, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:43:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:52Z", "aquifer_name": null, "location_description": "Clearwater \u0096 North of Kamloops", "material": "B", "subtype": "6b", "area": "11.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely outwash gravel and glacio-lacustrine deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 772, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:44:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:52:59Z", "aquifer_name": null, "location_description": "Clearwater \u0096 North of Kamloops", "material": "B", "subtype": "6b", "area": "2.8", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely outwash gravel and glacio-lacustrine deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 773, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:48:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:06Z", "aquifer_name": null, "location_description": "Clearwater \u0096 North of Kamloops", "material": "SG", "subtype": "4b", "area": "1.7", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely outwash gravel and glacio-lacustrine deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 774, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:49:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:13Z", "aquifer_name": null, "location_description": "Upland area SW of Houston", "material": "SG", "subtype": "4b", "area": "3.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 775, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:50:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:19Z", "aquifer_name": null, "location_description": "NE of Houston", "material": "B", "subtype": "6b", "area": "1.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Jurassic and Cretaceous- Hazelton Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 776, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:50:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:27Z", "aquifer_name": null, "location_description": "Egmont", "material": "B", "subtype": "6b", "area": "1.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Upper Cretaceous period and earlier, Mesozoic and Cenozoic era", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 777, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:50:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:34Z", "aquifer_name": null, "location_description": "Deadman Valley NW of Kamloops", "material": "SG", "subtype": "1c", "area": "7.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Quaternary, post-Fraser Glaciation fluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 778, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:50:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:41Z", "aquifer_name": null, "location_description": "Pym Island, N of Swartz Bay", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 779, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:51:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:49Z", "aquifer_name": null, "location_description": "Knapp Island, N of Swartz Bay", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 780, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:53:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:53:56Z", "aquifer_name": null, "location_description": "Goudge Island, east of Swartz Bay", "material": "B", "subtype": "5a", "area": "0.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 781, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:54:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:03Z", "aquifer_name": null, "location_description": "Kolb Island, East of Swartz Bay", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 782, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:56:18Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:12Z", "aquifer_name": null, "location_description": "Fernie Island, East of Swartz Bay", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 783, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:57:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:20Z", "aquifer_name": null, "location_description": "Coal Island, N of Swartz Bay", "material": "B", "subtype": "5a", "area": "1.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 784, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T11:58:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:28Z", "aquifer_name": null, "location_description": "Forrest Island, East of Sidney", "material": "B", "subtype": "5a", "area": "0.2", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 785, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:00:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:36Z", "aquifer_name": null, "location_description": "Comet Island, East of Sidney", "material": "B", "subtype": "5a", "area": "0.1", "productivity": "L", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 786, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:01:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:45Z", "aquifer_name": null, "location_description": "Sidney Island, North End", "material": "S", "subtype": "4b", "area": "2.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Possibly Quadra Sand", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 787, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:03:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:54:53Z", "aquifer_name": null, "location_description": "Sidney Island, South End", "material": "B", "subtype": "6b", "area": "4.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Fractured rocks; mapped as Vancouver Volcanics of Lower Jurassic", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 788, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:05:09Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:28:50Z", "aquifer_name": null, "location_description": "SW of Terrace, northshore of Skeena River", "material": "B", "subtype": "6b", "area": "1.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured bedrock, Lower Jurassic Hazleton Group", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 789, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:07:20Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:56:27Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 788", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 790, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:09:23Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:50:39Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 575", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 791, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:10:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:55:25Z", "aquifer_name": null, "location_description": "South of Terrace, near Terrace Airport", "material": "SG", "subtype": "4b", "area": "3.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 792, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:12:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:55:31Z", "aquifer_name": null, "location_description": "West shore of Lakelse Lake", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 793, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:13:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:55:39Z", "aquifer_name": null, "location_description": "East shore of Lakelse Lake", "material": "SG", "subtype": "4a", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial floodlplain deposits", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 794, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:14:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:55:46Z", "aquifer_name": null, "location_description": "South of Lakelse Lake", "material": "SG", "subtype": "4a", "area": "11.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 795, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:16:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:55:55Z", "aquifer_name": null, "location_description": "Two Mile, NW of New Hazleton", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 796, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:18:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:56:02Z", "aquifer_name": null, "location_description": "New Hazleton", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 797, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:19:38Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:56:09Z", "aquifer_name": null, "location_description": "Kispiox Village", "material": "SG", "subtype": "1c", "area": "1.2", "productivity": "H", "demand": "M", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Alluvial terrace deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 798, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:21:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:56:18Z", "aquifer_name": null, "location_description": "North of Kispiox Village", "material": "SG", "subtype": "1c", "area": "0.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial terrace deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 799, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T12:23:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T13:56:25Z", "aquifer_name": null, "location_description": "Valemont", "material": "SG", "subtype": "4b", "area": "7.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits, fan deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 800, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:39:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:10:58Z", "aquifer_name": "South Valemont", "location_description": "Valemont", "material": "SG", "subtype": "4b", "area": "17.6", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 801, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:42:31Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:11:05Z", "aquifer_name": null, "location_description": "Revelstoke \u0096 West", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 802, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:44:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:11:13Z", "aquifer_name": null, "location_description": "Revelstoke \u0096 South", "material": "SG", "subtype": "4a", "area": "2.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 803, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:45:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:11:42Z", "aquifer_name": null, "location_description": "Revelstoke \u0096 Townsite", "material": "SG", "subtype": "3", "area": "0.6", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Alluvium material", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 804, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:47:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:11:49Z", "aquifer_name": null, "location_description": "Shuswap River \u0096 east of Enderby", "material": "B", "subtype": "6b", "area": "5.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "unknown", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 805, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:48:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:11:55Z", "aquifer_name": null, "location_description": "West of Mabel Lake \u0096 East of Enderby", "material": "B", "subtype": "6b", "area": "2.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "unknown", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 806, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:50:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:12:02Z", "aquifer_name": null, "location_description": "Shuswap River - east of Enderby", "material": "SG", "subtype": "4b", "area": "1.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 807, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:52:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:12:08Z", "aquifer_name": null, "location_description": "N Thompson River", "material": "SG", "subtype": "1b", "area": "16.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 808, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:54:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:12:14Z", "aquifer_name": "Anarchist Mountain", "location_description": "East of Osoyoos, Anarchist Mountain", "material": "B", "subtype": "6b", "area": "18.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Metamorphic rock; Mesozoic era; granite and alkali", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 809, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:55:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:12:22Z", "aquifer_name": null, "location_description": "East of Osoyoos", "material": "SG", "subtype": "4b", "area": "2.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 810, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:57:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:12:57Z", "aquifer_name": "810", "location_description": "East of Osoyoos", "material": "B", "subtype": "6b", "area": "7.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Metamorphic; Anarchist Form; Paleozoic; greenstone & greenschist.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 811, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T13:59:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:10Z", "aquifer_name": null, "location_description": "North of Grand Forks", "material": "SG", "subtype": "1b", "area": "2.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 812, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:00:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:17Z", "aquifer_name": null, "location_description": "North of Grand Forks", "material": "B", "subtype": "6b", "area": "1.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Attwood Group (north), Grand Forks Group (south)", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 813, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:02:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:23Z", "aquifer_name": null, "location_description": "North of Grand Forks", "material": "B", "subtype": "6b", "area": "1.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Brooklyn Formation and Grand Forks Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 814, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:04:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:30Z", "aquifer_name": null, "location_description": "North of Grand Forks", "material": "B", "subtype": "6b", "area": "0.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Carboniferous or Permian; Knob Hill Group", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 815, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:06:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:37Z", "aquifer_name": null, "location_description": "North of Grand Forks", "material": "SG", "subtype": "1b", "area": "3.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial and glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 816, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:08:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:44Z", "aquifer_name": null, "location_description": "Canal Flats", "material": "SG", "subtype": "1a", "area": "7.3", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial and glaciofluvial deposits", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 817, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:09:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:51Z", "aquifer_name": null, "location_description": "NE of Edgewater, Columbia River Valley", "material": "SG", "subtype": "4b", "area": "4.5", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 818, "fields": {"create_user": "WELLS", "create_date": "2006-04-10T14:11:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:13:58Z", "aquifer_name": null, "location_description": "South of Lakelse Lake", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 819, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:07:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:04Z", "aquifer_name": null, "location_description": "Highland Valley \u0096 W. of Logan Lk", "material": "SG", "subtype": "4b", "area": "6.1", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 820, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:12:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:10Z", "aquifer_name": null, "location_description": "Highland Valley \u0096 W of Logan Lk", "material": "SG", "subtype": "4b", "area": "6.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciaofluvial", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 821, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:17:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:16Z", "aquifer_name": null, "location_description": "Highland Valley \u0096 W of Logan Lk", "material": "SG", "subtype": "4b", "area": "14.0", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 822, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:27:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:23Z", "aquifer_name": null, "location_description": "Logan Lake / SW of Kamloops", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 823, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:52:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:32Z", "aquifer_name": null, "location_description": "Logan Lake / SWof Kamloops", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 824, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:55:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:39Z", "aquifer_name": null, "location_description": "Highland Valley near Award Creek", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 825, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T10:57:14Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-24T12:58:32Z", "aquifer_name": null, "location_description": "Blue River- S of Valemont", "material": "SG", "subtype": "4a", "area": "8.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 826, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:02:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:14:54Z", "aquifer_name": "Nivek", "location_description": "Guichon Creek \u0096S of Kamloops", "material": "SG", "subtype": "3", "area": "0.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 827, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:03:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:01Z", "aquifer_name": "Guichon Creek", "location_description": "South of Mamit Lake", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 828, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:05:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:07Z", "aquifer_name": null, "location_description": "Dease Lake", "material": "SG", "subtype": "4b", "area": "6.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 829, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:08:37Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:14Z", "aquifer_name": null, "location_description": "Wells", "material": "SG", "subtype": "4b", "area": "0.9", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 830, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:15:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:21Z", "aquifer_name": null, "location_description": "S of Bella Coola R./ E of Bella Coola", "material": "SG", "subtype": "3", "area": "2.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 831, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:17:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:27Z", "aquifer_name": null, "location_description": "S of Bella Coola R./ E of Bella Coola", "material": "SG", "subtype": "3", "area": "1.1", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Alluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 832, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:20:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:33Z", "aquifer_name": null, "location_description": "S of Bella Coola R./ E of Bella Coola", "material": "SG", "subtype": "3", "area": "3.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 833, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:23:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:38Z", "aquifer_name": null, "location_description": "S of Bella Coola R. /E of Nusatsum R.", "material": "SG", "subtype": "1b", "area": "2.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 834, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:24:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:44Z", "aquifer_name": null, "location_description": "Savary Island", "material": "SG", "subtype": "4a", "area": "4.9", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Quaternary Quadra Sands and Vashon Drift, sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 835, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:34:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:50Z", "aquifer_name": null, "location_description": "Mermaid Cove / E of Powell River", "material": "B", "subtype": "6b", "area": "2.2", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Granite bedrock", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 836, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:36:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:15:57Z", "aquifer_name": null, "location_description": "Powell River,", "material": "SG", "subtype": "4b", "area": "19.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 837, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:37:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:16:05Z", "aquifer_name": null, "location_description": "Powell River East", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 838, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:38:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:16:11Z", "aquifer_name": null, "location_description": "Powell River", "material": "SG", "subtype": "4b", "area": "11.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial depsits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 839, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:40:46Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T10:19:12Z", "aquifer_name": null, "location_description": "Powell River", "material": "SG", "subtype": "4b", "area": "12.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 840, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:43:18Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:16:25Z", "aquifer_name": null, "location_description": "Powell River, BC", "material": "B", "subtype": "6b", "area": "30.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": "intrusive igneous granidiorite", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 841, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:45:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:16:32Z", "aquifer_name": null, "location_description": "S Cortes Island", "material": "SG", "subtype": "4b", "area": "9.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 842, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:46:40Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:16:47Z", "aquifer_name": null, "location_description": "Cortes Island", "material": "B", "subtype": "6b", "area": "2.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "intrusive igneous granidiorite", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 843, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:48:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:16:53Z", "aquifer_name": null, "location_description": "Cortes Island", "material": "B", "subtype": "6b", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "intrusive igneous granidiorite", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 844, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:50:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:17:01Z", "aquifer_name": null, "location_description": "Cortes Island", "material": "B", "subtype": "6b", "area": "2.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "intrusive igneous granidiorite", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 845, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:52:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:17:07Z", "aquifer_name": null, "location_description": "Cortes Island", "material": "B", "subtype": "6b", "area": "0.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "intrusive igneous granidiorite", "mapping_year": 2006, "notes": null}}, {"model": "aquifers.aquifer", "pk": 846, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:53:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:17:14Z", "aquifer_name": null, "location_description": "Cortes Island", "material": "B", "subtype": "6b", "area": "2.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "intrusive igneous granidiorite", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 847, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:55:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:17:20Z", "aquifer_name": null, "location_description": "Campbell River (south)", "material": "SG", "subtype": "4b", "area": "14.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quadra sands", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 848, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:57:57Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": "848", "location_description": null, "material": null, "subtype": "5a", "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 849, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:58:25Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": "Fortune Creek", "location_description": "NE of Armstrong", "material": "SG", "subtype": null, "area": "13.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 850, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:58:36Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": null, "location_description": "Fellers Heights", "material": "SG", "subtype": null, "area": "4.1", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "sand & gravel with some clay", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 851, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T11:58:48Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": null, "location_description": "Dawson Creek", "material": "SG", "subtype": null, "area": "866.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Confined sand and gravel aquifers of glacial or pre-glacial origin", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 852, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:07:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:17:48Z", "aquifer_name": null, "location_description": "Simms Creek S of Campbell River", "material": "SG", "subtype": "4b", "area": "1.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 853, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:10:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:17:56Z", "aquifer_name": null, "location_description": "Willow Pt/Shelter Pt S of Campbell River", "material": "SG", "subtype": "4b", "area": "3.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 854, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:12:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:02Z", "aquifer_name": null, "location_description": "Oyster Bay S of Campbell River", "material": "SG", "subtype": "4b", "area": "1.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 855, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:12:41Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": "Reserve Aquifer 4 T Values", "location_description": "Reserve Aquifer 4 T Values", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 856, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:13:55Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": "No Aquifer Defined", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 857, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:15:19Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": null, "location_description": "Campbell River Airport", "material": "SG", "subtype": "4b", "area": "2.4", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 858, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:16:37Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:24Z", "aquifer_name": null, "location_description": "Alert Bay \u0096 Cormorant Island", "material": "SG", "subtype": "4b", "area": "4.5", "productivity": "H", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 859, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:17:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:31Z", "aquifer_name": null, "location_description": "Mitchell Bay / Malcolm Island", "material": "SG", "subtype": "4b", "area": "2.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 860, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:19:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:37Z", "aquifer_name": null, "location_description": "Mouth of Peachland Creek, SW of Peachland", "material": "SG", "subtype": "4a", "area": "0.1", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and fluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 861, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:21:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:44Z", "aquifer_name": null, "location_description": "Lower Peachland Creek watershed", "material": "B", "subtype": "6a", "area": "7.0", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": "Triassic/Jurassic intrusive grandioritic rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 862, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:23:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:52Z", "aquifer_name": null, "location_description": "Mouth of Trepanier Creek NE of Peachland", "material": "SG", "subtype": "4b", "area": "1.5", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 863, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:25:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:18:59Z", "aquifer_name": null, "location_description": "N Trepanier Creek Valley N of Peachland", "material": "B", "subtype": "6b", "area": "8.8", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Penticton Group", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 864, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:29:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:05Z", "aquifer_name": null, "location_description": "Trepanier Cr. and Jack Cr, N of Peachland", "material": "SG", "subtype": "4b", "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 865, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:31:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:11Z", "aquifer_name": null, "location_description": "Heber R. and Gold R.", "material": "SG", "subtype": "1b", "area": "0.3", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and fluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 866, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:34:25Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:18Z", "aquifer_name": null, "location_description": "Ashby Point,, Shuswap Lake", "material": "B", "subtype": "5b", "area": "1.9", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Lower Paleozoic", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 867, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:36:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:24Z", "aquifer_name": null, "location_description": "Ashby Point, Shuswap Lake", "material": "SG", "subtype": "4a", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and fluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 868, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:38:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:31Z", "aquifer_name": null, "location_description": "W of Paradise Point, Shuswap Lake", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 869, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:40:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:38Z", "aquifer_name": null, "location_description": "W of Paradise Point, Shuswap Lake", "material": "B", "subtype": "6b", "area": "0.5", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Hydrinian to Paleozoic sedimentary", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 870, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:42:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:45Z", "aquifer_name": null, "location_description": "Knight Cr. at Paradise Point, Shuswap Lake", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 871, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:44:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:19:54Z", "aquifer_name": null, "location_description": "Lower Canoe Cr, E side of valley", "material": "B", "subtype": "5b", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Lower Paleozoic", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 872, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:45:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:20:02Z", "aquifer_name": null, "location_description": "Canoe Creek, at Shuswap Lake", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 873, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:47:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:20:08Z", "aquifer_name": null, "location_description": "Edgewood", "material": "SG", "subtype": "4a", "area": "3.9", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 874, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:48:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:20:15Z", "aquifer_name": "874", "location_description": "Edgewood", "material": "SG", "subtype": "4b", "area": "1.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 875, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:50:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:20:22Z", "aquifer_name": "875", "location_description": "S of Radium, E side of Columbia Valley", "material": "SG", "subtype": "4b", "area": "0.2", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 876, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:51:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:20:30Z", "aquifer_name": "876", "location_description": "Dry Gulch Creek, E side of Columbia Valley", "material": "SG", "subtype": "4b", "area": "0.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 877, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:53:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:20:37Z", "aquifer_name": "877", "location_description": "Stoddart Creek, E side of Columbia Valley", "material": "SG", "subtype": "4b", "area": "1.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 878, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:56:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:13:35Z", "aquifer_name": "878", "location_description": "Wilmer", "material": "SG", "subtype": "4b", "area": "15.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 879, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:58:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:13:46Z", "aquifer_name": "879", "location_description": "Lillian Lake, NW of Wilmer Creek", "material": "B", "subtype": "5a", "area": "89.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Upper Paleozoic", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 880, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T13:59:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:24:32Z", "aquifer_name": "880", "location_description": "Silverdale Cr, W of Mission City", "material": "SG", "subtype": "4b", "area": "8.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 881, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:01:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:24:43Z", "aquifer_name": "881", "location_description": "NE of Mission City", "material": "SG", "subtype": "4b", "area": "12.0", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 882, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:02:33Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:21:42Z", "aquifer_name": "882", "location_description": "NE of Mission City", "material": "B", "subtype": "6b", "area": "16.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "fractured quartz diorite of Coast Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 883, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:04:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:21:49Z", "aquifer_name": "883", "location_description": "Iron Mt, E of Whonnock Lk", "material": "B", "subtype": "6b", "area": "3.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "fractured quartz diorite of Coast Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 884, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:05:43Z", "update_user": "PROXY_WELLS", "update_date": "2017-12-18T11:49:18Z", "aquifer_name": "884", "location_description": "Northshore Hayward Lake to Stave Lake", "material": "SG", "subtype": "4c", "area": "14.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 885, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:07:33Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:22:03Z", "aquifer_name": "885", "location_description": "Northshore of Hayward Lake", "material": "B", "subtype": "6b", "area": "1.7", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 886, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:09:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:25:05Z", "aquifer_name": "886", "location_description": "E of Hayward Lake, N of Hairsine Creek", "material": "B", "subtype": "6b", "area": "32.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 887, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:10:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:25:16Z", "aquifer_name": "887", "location_description": "E of Stave Falls, Steelhead Creek", "material": "B", "subtype": "6b", "area": "26.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 888, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:12:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:25:25Z", "aquifer_name": "888", "location_description": "Steelhead Valley", "material": "SG", "subtype": "4b", "area": "6.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 889, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:13:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:25:35Z", "aquifer_name": "889", "location_description": "N end of Hatzic Valley", "material": "SG", "subtype": "4a", "area": "4.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 890, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:17:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:22:40Z", "aquifer_name": "890", "location_description": "Mt Tom area, SE of Chilliwack", "material": "B", "subtype": "5a", "area": "12.6", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Upper Jurassic Kent fromation", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 891, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:19:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:22:47Z", "aquifer_name": "891", "location_description": "Upper Young Cr. SE of Chilliwack", "material": "B", "subtype": "5a", "area": "6.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Chilliwack Group", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 892, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:20:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:22:54Z", "aquifer_name": "892", "location_description": "N side of Chilliwack River Valley", "material": "SG", "subtype": "4b", "area": "1.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 893, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:22:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:05Z", "aquifer_name": "893", "location_description": "N side of Chilliwack River Valley", "material": "SG", "subtype": "4b", "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 894, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:25:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:11Z", "aquifer_name": "894", "location_description": "N side of Chilliwack River Valley", "material": "SG", "subtype": "4b", "area": "2.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 895, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:26:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:18Z", "aquifer_name": "895", "location_description": "N side of Chilliwack River Valley", "material": "SG", "subtype": "4b", "area": "1.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 896, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:27:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:26Z", "aquifer_name": "896", "location_description": "E of Steelhead", "material": "B", "subtype": "6b", "area": "0.7", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 897, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:28:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:25:46Z", "aquifer_name": "897", "location_description": "N shore Allouette River", "material": "B", "subtype": "6b", "area": "8.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 898, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:30:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:43Z", "aquifer_name": "898", "location_description": "Westside N Allouette River", "material": "B", "subtype": "6b", "area": "0.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 899, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:31:33Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:51Z", "aquifer_name": "899", "location_description": "Ford Creek area, SE of Chilliwack", "material": "B", "subtype": "5a", "area": "8.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Chilliwack Group", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 900, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:33:00Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:23:58Z", "aquifer_name": "900", "location_description": "Sointula / Malcolm Island", "material": "SG", "subtype": "4b", "area": "3.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 901, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:35:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:04Z", "aquifer_name": "901", "location_description": "Sointula / Malcolm Island", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 902, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:36:40Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:09Z", "aquifer_name": "Port McNeil", "location_description": "Pt. McNeil", "material": "SG", "subtype": "4b", "area": "1.0", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2009, "notes": null}}, {"model": "aquifers.aquifer", "pk": 903, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:37:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:15Z", "aquifer_name": null, "location_description": "East of Dawson Creek", "material": "SG", "subtype": null, "area": "33.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Confined sand and gravel aquifers of glacial or pre-glacial origin", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 904, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:38:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:21Z", "aquifer_name": "904", "location_description": "Pt. Hardy", "material": "B", "subtype": "5a", "area": "0.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Nanaimo Group of Late Cretaceous Age", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 905, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:40:38Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:27Z", "aquifer_name": "905", "location_description": "Ft. Rupert", "material": "B", "subtype": "5a", "area": "4.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Nanaimo Group of Late Cretaceous Age", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 906, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:41:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:33Z", "aquifer_name": "906", "location_description": "Ft. Rupert", "material": "SG", "subtype": "4b", "area": "2.2", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 907, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:43:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:40Z", "aquifer_name": "907", "location_description": "Coal Harbour S of Pt. Hardy", "material": "B", "subtype": "5a", "area": "1.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Nanaimo Group of Late Cretaceous Age", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 908, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:45:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:46Z", "aquifer_name": null, "location_description": "North bank of Halfway River", "material": "SG", "subtype": null, "area": "22.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Terrace deposits of sand & gravel", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 909, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:47:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:24:54Z", "aquifer_name": "909", "location_description": "Indian Point - Savary Island", "material": "SG", "subtype": "4a", "area": "0.2", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": "Quaternary Quadra sands", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 910, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:47:25Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T14:25:01Z", "aquifer_name": null, "location_description": "East Williston Lake", "material": "SG", "subtype": null, "area": "36.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial deposits of sand & gravel", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 911, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:48:40Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:07:55Z", "aquifer_name": "911", "location_description": "N of Deka Lake and E of 100 Mile House", "material": "B", "subtype": "6a", "area": "1.7", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic bedrock", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 912, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:50:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:08:04Z", "aquifer_name": "912", "location_description": "W of Bridge Lk /SEof 100 Mile House", "material": "SG", "subtype": "4b", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 913, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:51:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:08:12Z", "aquifer_name": "913", "location_description": "S of Deka Lake and E of 100 Mile House.", "material": "SG", "subtype": "4b", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 914, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:53:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:09:02Z", "aquifer_name": "914", "location_description": "SW of Deka Lake and E of 100 Mile House.", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 915, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:55:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:09:12Z", "aquifer_name": "915", "location_description": "Sulphurous Lake / E of 100 Mile House", "material": "B", "subtype": "6a", "area": "1.2", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic bedrock (basalt)", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 916, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:57:00Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:17:47Z", "aquifer_name": "916", "location_description": "N of Sulphurous Lake/ E of 100 Mile House", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 917, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:57:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:17:56Z", "aquifer_name": null, "location_description": "Near East Pine", "material": "B", "subtype": null, "area": "58.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 918, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T14:58:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:18:14Z", "aquifer_name": "918", "location_description": "N of Bridge Lake / E of 100 Mile House", "material": "SG", "subtype": "4b", "area": "4.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 919, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:00:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:18:29Z", "aquifer_name": "919", "location_description": "NE of Bridge Lake/ E of 100 Mile House", "material": "B", "subtype": "6a", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic bedrock", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 920, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:02:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:18:46Z", "aquifer_name": "920", "location_description": "Kelly Lake/ SWof Clinton", "material": "SG", "subtype": "4b", "area": "6.6", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 921, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:03:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:23:19Z", "aquifer_name": "921", "location_description": "Clinton", "material": "SG", "subtype": "4b", "area": "4.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 922, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:04:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:23:25Z", "aquifer_name": "922", "location_description": "3 Mile Lake / SE of Clinton", "material": "B", "subtype": "5a", "area": "0.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Cretaceous sandstone", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 923, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:05:44Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": null, "location_description": "Moberly Lake", "material": "SG", "subtype": null, "area": "61.8", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Glaciofluvial deposits of sand, gravel & silt", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 924, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:06:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:23:52Z", "aquifer_name": "924", "location_description": "Mossum Creek area near Anmore", "material": "SG", "subtype": "4b", "area": "4.0", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 925, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:08:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:23:58Z", "aquifer_name": "925", "location_description": "Partington Creek near Port Coquitlam", "material": "B", "subtype": "6b", "area": "5.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 926, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:09:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:24:06Z", "aquifer_name": "926", "location_description": "N side of Pitt River Valley", "material": "SG", "subtype": "4b", "area": "2.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 927, "fields": {"create_user": "PROXY_WELLS", "create_date": "2007-08-14T15:12:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:24:22Z", "aquifer_name": "927", "location_description": "W side of Burk Mt, E Coquitlam R. Valley", "material": "SG", "subtype": "4b", "area": "2.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", "mapping_year": 2007, "notes": null}}, {"model": "aquifers.aquifer", "pk": 928, "fields": {"create_user": "PROXY_WELLS", "create_date": "2010-03-09T10:01:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:24:37Z", "aquifer_name": null, "location_description": "Lynx Creek &Peace River", "material": "B", "subtype": "5a", "area": "37.4", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fort St John Group (sedimentary)", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 929, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-21T14:12:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:24:56Z", "aquifer_name": null, "location_description": "North pine River at Nelson Creek", "material": "SG", "subtype": "1b", "area": "10.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Terrace deposits of gravel sheets and sand", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 930, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-21T14:16:40Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:25:04Z", "aquifer_name": null, "location_description": "South Pine River at Nelson Creek", "material": "SG", "subtype": "1b", "area": "16.7", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Terrace deposits of gravel sheets & sand", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 931, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-21T14:20:22Z", "update_user": "PROXY_WELLS", "update_date": "2017-11-27T09:52:54Z", "aquifer_name": null, "location_description": "E. of Blueberry River, N. of Fort St John", "material": "B", "subtype": null, "area": "964.4", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation (Sedimentary)", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 932, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-21T14:24:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:25:58Z", "aquifer_name": null, "location_description": "Wononon, betwix Blueberry & Cameron Rivers", "material": "B", "subtype": "5a", "area": "23.0", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Dunvegan Formation (sedimentary)", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 933, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-21T14:28:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:26:10Z", "aquifer_name": null, "location_description": "Cecil Lake, North Peace River", "material": "B", "subtype": "5a", "area": "1119.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Dunvegan Formation", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 934, "fields": {"create_user": "PROXY_WELLS", "create_date": "2011-06-21T14:36:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:26:18Z", "aquifer_name": null, "location_description": "Between the Halway & Cameron Rivers", "material": "B", "subtype": "5a", "area": "58.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fort St. John Group", "mapping_year": 2011, "notes": null}}, {"model": "aquifers.aquifer", "pk": 935, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:10:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:26:30Z", "aquifer_name": "935", "location_description": "Keremeos Creek Valley", "material": "SG", "subtype": "4b", "area": "5.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 936, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:10:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:26:37Z", "aquifer_name": "936", "location_description": "East of Osoyoos, Anarchist Mountain", "material": "B", "subtype": "6b", "area": "16.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Metamorphic rock; Anarchist Form; Paleozoic Era; Greenstone & Greenschist", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 937, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:11:03Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:26:45Z", "aquifer_name": "937", "location_description": "Keremeos Creek Valley", "material": "B", "subtype": "5a", "area": "4.7", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary rock; Shoemaker Form; Paleo to Meso Era; chert, tuff & greenstone", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 938, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:11:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:26:55Z", "aquifer_name": "938", "location_description": "Hayman Mtn, S of Lambly Ck", "material": "B", "subtype": "6b", "area": "8.3", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Volcanic Rk,Harper Ranch Group, Paleozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 939, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:11:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:27:03Z", "aquifer_name": "939", "location_description": "Wilson Landing", "material": "B", "subtype": "6b", "area": "8.9", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Volcanic Rock; Harper Ranch Grp; Paleozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 940, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:11:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:27:14Z", "aquifer_name": "940", "location_description": "Hayman Mtn., north of Lambly Ck", "material": "B", "subtype": "6b", "area": "2.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Igneous intrusive, metamorphic, meta-sedimentary, meta-volcanic, volcanic", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 941, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:12:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:27:24Z", "aquifer_name": "941", "location_description": "West side of Okanagan Lk; near Ceasars", "material": "B", "subtype": "6b", "area": "12.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Intrusive rock; Mesozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 942, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:12:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:27:32Z", "aquifer_name": "942", "location_description": "Aspen Road and Misery Bay", "material": "B", "subtype": "6b", "area": "5.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Metavolcanic rk; Leech River Complex; includes metabasalt", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 943, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:12:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:27:50Z", "aquifer_name": "943", "location_description": "Jordan River to Rosemond Creek, Vancouver", "material": "B", "subtype": "6b", "area": "16.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Carmanah Group; undivided sed. rks; Metchosin Igneous Complex; Basaltic rks", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 944, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:12:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:06Z", "aquifer_name": "944", "location_description": "Jordan River to Uglow Creek, Vancouver", "material": "SG", "subtype": "4b", "area": "2.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 945, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:13:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:15Z", "aquifer_name": "945", "location_description": "North-eastern shore of Cowichan Lake", "material": "B", "subtype": "5a", "area": "15.6", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured shales & sandstones; Nanaimo Group; Upper Cretaceous Period.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 946, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:13:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:23Z", "aquifer_name": "946", "location_description": "North-eastern shore of Cowichan Lake", "material": "B", "subtype": "6b", "area": "3.7", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fractured volcanic rk; McLaughlin Ridge Form; Devonian Period.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 947, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:13:25Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:30Z", "aquifer_name": "947", "location_description": "East shore of Mesachie Lake", "material": "G", "subtype": "4b", "area": "1.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan and glacio-fluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 948, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:13:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:37Z", "aquifer_name": "948", "location_description": "West shore of Marble Bay, Cowichan Lake", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacial-fluvial outwash channels of gravel and medium sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 949, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:13:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:48Z", "aquifer_name": "949", "location_description": "East shore of Mesachie Lake", "material": "SG", "subtype": "1b", "area": "2.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Alluvial fan and glacio-fluvial deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 950, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:14:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:28:56Z", "aquifer_name": "950", "location_description": "Courtenay Airport, Courtenay", "material": "B", "subtype": "5a", "area": "4.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sed rks of Comox Form.Nanaimo Grp.; Granite; Karmutsen Form.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 951, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:14:18Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:29:08Z", "aquifer_name": "951", "location_description": "Puntledge to Courtenay", "material": "SG", "subtype": "4a", "area": "12.7", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Capilano Sediments; likely sand $ gravel lenses within till deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 952, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:14:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:29:18Z", "aquifer_name": "952", "location_description": "North of Puntledge River", "material": "SG", "subtype": "4a", "area": "3.6", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Capilano Sediments, likley sand $ gravel lenses within till deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 953, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:14:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:29:29Z", "aquifer_name": "953", "location_description": "Pearson Island", "material": "B", "subtype": "6b", "area": "0.1", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Bedrock; fractured granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 954, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:14:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:29:44Z", "aquifer_name": "954", "location_description": "Sakinaw Lake near Steep Spring", "material": "B", "subtype": "6b", "area": "1.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Bedrock; fractured granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 955, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:15:08Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:29:52Z", "aquifer_name": "955", "location_description": "Gunboat Bay; Sunshine Coast", "material": "B", "subtype": "6b", "area": "0.6", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Bedrock; fractured granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 956, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:15:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:30:01Z", "aquifer_name": "956", "location_description": "Lily Lake, Sunshine Coast", "material": "B", "subtype": "6b", "area": "2.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Bedrock; fractured granite", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 957, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:15:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:30:10Z", "aquifer_name": "957", "location_description": "Shuttle Bay to the Malaspina Peninsula", "material": "B", "subtype": "6b", "area": "12.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likley dioritic intrusive rocks; Early Cretaceous Period", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 958, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:15:38Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:30:21Z", "aquifer_name": "958", "location_description": "South of Okeover Arm Provincial Park", "material": "B", "subtype": "6b", "area": "3.2", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely dioritic intrusive rocks; Early Cretaceous Period", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 959, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:15:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:30:34Z", "aquifer_name": "959", "location_description": "Hurtado Point", "material": "B", "subtype": "6b", "area": "7.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely dioritic intrusive rocks; Early Cretaceous Period", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 960, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:15:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:30:43Z", "aquifer_name": "960", "location_description": "Lund, BC", "material": "B", "subtype": "6b", "area": "3.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely dioritic rocks; Early Cretaceous Period", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 961, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:16:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:55:52Z", "aquifer_name": "961", "location_description": "Coast near Altrevida Reef", "material": "SG", "subtype": "4b", "area": "0.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "deposits of gravel and coarse sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 962, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:16:24Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:56:00Z", "aquifer_name": "962", "location_description": "Ladysmith, BC", "material": "SG", "subtype": "4a", "area": "0.6", "productivity": "L", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": "Primarily gravel and sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 963, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:16:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:56:13Z", "aquifer_name": "963", "location_description": "Nanaimo River Road near Berkley Creek", "material": "B", "subtype": "5a", "area": "5.1", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Several formations of the Nanaimo Series, Upper Creatceous", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 964, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:16:49Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:56:20Z", "aquifer_name": "964", "location_description": "Cassidy \u0096 Nanaimo Airport", "material": "B", "subtype": "5a", "area": "17.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Cretaceous sandstone & shale, primarily DeCourcy Form., Nanaimo Series", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 965, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:16:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:56:35Z", "aquifer_name": "965", "location_description": "Ruxton Island", "material": "B", "subtype": "5a", "area": "1.0", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": "Upper Cretaceous Geoffrey Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 966, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:17:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:56:44Z", "aquifer_name": "966", "location_description": "Valdes Island", "material": "B", "subtype": "5a", "area": "24.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Upper Cretaceous; Geoffrey & De Courcy Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 967, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:17:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:56:55Z", "aquifer_name": "967", "location_description": "Reid Island", "material": "B", "subtype": "5a", "area": "1.0", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "pper Cretaceous; Geoffrey & De Courcy Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 968, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:17:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:57:04Z", "aquifer_name": "968", "location_description": "De Courcy Island", "material": "B", "subtype": "5a", "area": "2.0", "productivity": "L", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Upper Cretaceous Geoffrey Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 969, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:17:33Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:57:13Z", "aquifer_name": "969", "location_description": "Sumas mountain", "material": "B", "subtype": "5a", "area": "21.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary rk; Kitsilano Formation; Cenozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 970, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:17:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:25:55Z", "aquifer_name": "970", "location_description": "South of Grant Hill", "material": "SG", "subtype": "4b", "area": "15.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sumas Drift and Fort Langley Formation", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 971, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:18:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:26:06Z", "aquifer_name": "971", "location_description": "Southwest shore of Stave Lake", "material": "SG", "subtype": "1a", "area": "1.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 972, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:18:45Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:57:36Z", "aquifer_name": "972", "location_description": "Sargeant Bay; Kenyon Ck, Sechelt", "material": "B", "subtype": "6b", "area": "3.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Primarily granodioritic intrusive rocks of early Cretaceous Period", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 973, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:18:54Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:57:44Z", "aquifer_name": "973", "location_description": "North Thormanby Island", "material": "S", "subtype": "4b", "area": "1.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand, silty sand, and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 974, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:19:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:57:51Z", "aquifer_name": "974", "location_description": "Gowlland Harbour, Quadra Island", "material": "SG", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 975, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:19:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:57:58Z", "aquifer_name": "975", "location_description": "East shore of McIvor Lake", "material": "SG", "subtype": "4a", "area": "3.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial sand & gravel; w lenses of fine & med sands", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 976, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:19:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:58:06Z", "aquifer_name": "976", "location_description": "Flintoff Creek", "material": "S", "subtype": "4b", "area": "0.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely Quadra Sand", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 977, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:19:39Z", "update_user": "WELLS", "update_date": "2016-04-07T13:13:15Z", "aquifer_name": "977", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 978, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:19:48Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-20T13:55:54Z", "aquifer_name": "Retired in 2017", "location_description": "Merged with Aquifer 115", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 979, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:20:19Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T15:29:33Z", "aquifer_name": "979", "location_description": "Quesnel, east side of the Fraser River", "material": "B", "subtype": null, "area": "57.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary rock, Endako Group, Cenozoic Era", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 980, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:20:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:58:59Z", "aquifer_name": "980", "location_description": "NW of Quesnel, E of Bouchie Lake", "material": "S", "subtype": "6b", "area": "2.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Late Fraser Drift", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 981, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:20:50Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:59:08Z", "aquifer_name": "981", "location_description": "Bouchie Lake, Northwest of Quesnel", "material": "SG", "subtype": "4a", "area": "2.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 982, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:20:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:59:17Z", "aquifer_name": "982", "location_description": "Confluence of Arrow Ck and Goat R.", "material": "B", "subtype": "4a", "area": "38.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary rocks from Aldridge Formation of the Proterozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 983, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:24:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:59:25Z", "aquifer_name": "983", "location_description": "Wild Ck near Duck Lake, BC", "material": "B", "subtype": "4a", "area": "4.9", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary & dolomitic rks, Mount Nelson, Dutch Ck & Kitchener Formations", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 984, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:24:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:59:38Z", "aquifer_name": "984", "location_description": "Confluence of Arrow Ck. and Goat R.", "material": "G", "subtype": "4b", "area": "7.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glacial-fluvial gravel and some sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 985, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:24:31Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T15:59:44Z", "aquifer_name": "985", "location_description": "Kootenay R. floodplain, NW of Creston", "material": "S", "subtype": "1c", "area": "52.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Fluvial deposits of fine to medium sand and some sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 986, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:24:39Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:04:03Z", "aquifer_name": "986", "location_description": "Northeast end of Osoyoos Lake", "material": "SG", "subtype": "4b", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 987, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:24:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:04:11Z", "aquifer_name": "987", "location_description": "Sumas Mountain", "material": "B", "subtype": "6b", "area": "5.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sumas Mountain, Volcanic rock; Harrison Lake Formation", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 988, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:24:56Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:04:20Z", "aquifer_name": "988", "location_description": "Western slope of Sentinel Mountain", "material": "B", "subtype": "6b", "area": "8.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sheppard, Tuzo Creek, & Shingle Ck Intrusions; Some metamorphic rks", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 989, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:25:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:05:34Z", "aquifer_name": "989", "location_description": "Ladybird Mountain, west of Norns Creek", "material": "B", "subtype": "6b", "area": "2.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sheppard, Tuzo Ck, & Shingle Ck Intrusive rks; Some metamorphic rks", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 990, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-04T14:25:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:05:42Z", "aquifer_name": "990", "location_description": "N. side Columbia R., W. of Lower Arrow Lk", "material": "B", "subtype": "6b", "area": "4.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Greenwood, Wallace Cr Plutons, Kinnaird Gneiss form. Some metamorphic rks.", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 991, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:17:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:05:49Z", "aquifer_name": "991", "location_description": "Harrop, BC", "material": "SG", "subtype": "2", "area": "2.6", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial sand & gravel intermixed with fine sand lenses", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 992, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:17:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:05:57Z", "aquifer_name": "992", "location_description": "Fraser, West of Balfour", "material": "SG", "subtype": "2", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial gravel, sand, and sand & gravel deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 993, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:17:47Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:03Z", "aquifer_name": "993", "location_description": "Longbeach to Harrop Point, BC", "material": "SG", "subtype": "3", "area": "1.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial sand & gravel deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 994, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:18:01Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:11Z", "aquifer_name": "994", "location_description": "Kokanee Point", "material": "SG", "subtype": "2", "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fluvial sand & gravel deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 995, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:18:10Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:19Z", "aquifer_name": "995", "location_description": "Longbeach and Fraser", "material": "B", "subtype": "6b", "area": "24.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Granodioritic rocks; Nelson Batholith Grp; Mesozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 996, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:18:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:28Z", "aquifer_name": "996", "location_description": "Bull Mountain", "material": "B", "subtype": "5a", "area": "5.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sed rock; Etherington, Mount Head, and Livingstone Form.; Paleozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 997, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:18:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:35Z", "aquifer_name": "997", "location_description": "Mayook", "material": "SG", "subtype": "4b", "area": "4.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial sand and gravel; possibly multiple stacked aquifers", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 998, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:18:38Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:43Z", "aquifer_name": "998", "location_description": "Bednorski Lake", "material": "SG", "subtype": "4b", "area": "6.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial multiple stacked aquifers?", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 999, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:18:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:13:57Z", "aquifer_name": "999", "location_description": "North of Cranbrook", "material": "G", "subtype": "4b", "area": "3.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1000, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:19:42Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:06:56Z", "aquifer_name": "1000", "location_description": "Eastern side of Windermere Lake", "material": "B", "subtype": "5a", "area": "26.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fine Sed rocks; McKay Group; Cambrian to Ordovician Eras", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1001, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:19:50Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:07Z", "aquifer_name": "1001", "location_description": "Western side of Windermere Lake", "material": "B", "subtype": "5a", "area": "8.9", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Coarse Sed rocks; Windermere Supergroup; Proterozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1002, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:19:57Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:50:48Z", "aquifer_name": "Rawlings Lake", "location_description": "south and west of Rawlings Lake", "material": "SG", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "Kame - Fraser glaciation", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1003, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:05Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:19Z", "aquifer_name": "1003", "location_description": "North of Lumby", "material": "B", "subtype": "5a", "area": "22.8", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sed. rk.; Nicola Group; Mesozoic Era; mudstone, siltstone & shale", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1004, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:27Z", "aquifer_name": "1004", "location_description": "White Valley area", "material": "B", "subtype": "5a", "area": "51.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sed. rock.; Harper Ranch & Nicola Groups; Meta. rock.; Shuswap Assemblage", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1005, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:34Z", "aquifer_name": "1005", "location_description": "Southwest of Kawkawa Lake", "material": "SG", "subtype": "1b", "area": "1.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1006, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:28Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:40Z", "aquifer_name": "1006", "location_description": "Southeast of Devil Lake", "material": "SG", "subtype": "1b", "area": "0.7", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand and gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1007, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:41Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:46Z", "aquifer_name": "1007", "location_description": "Hope", "material": "SG", "subtype": "1b", "area": "2.8", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand & Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1008, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:07:53Z", "aquifer_name": "1008", "location_description": "Northwest of Hope", "material": "B", "subtype": "6b", "area": "3.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Intrusive Rk, Mesozoic Era; Sedimentary rks, Princeton Group, Cenozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1009, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:20:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:01Z", "aquifer_name": "1009", "location_description": "Kawkawa Lake", "material": "B", "subtype": "6b", "area": "3.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "R", "litho_stratographic_unit": "Intrusive rock from the Mesozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1010, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:02Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:08Z", "aquifer_name": "1010", "location_description": "Tulameen", "material": "SG", "subtype": "4a", "area": "0.9", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand and Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1011, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:09Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:14Z", "aquifer_name": "1011", "location_description": "Coalmont, 5 km SE of Tulameen", "material": "SG", "subtype": "1c", "area": "0.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Sand and Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1012, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:19Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:23Z", "aquifer_name": "1012", "location_description": "Riddle Mountain, SE slope", "material": "B", "subtype": "6b", "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Intrusive &volcanic rock, Cenozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1013, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:30Z", "aquifer_name": "1013", "location_description": "Otter Lake, NW shoreline", "material": "G", "subtype": "2", "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Gravel", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1014, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:37Z", "aquifer_name": "Owl Ridge Aquifer", "location_description": "Owl Ridge Subdivision", "material": "SG", "subtype": "4b", "area": "2.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Ice-contact glacial sand & gravel deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1015, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:45Z", "aquifer_name": "Birkenhead River Aquifer", "location_description": "Birkenhead River", "material": "SG", "subtype": "1c", "area": "4.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "ice contact sand and gravel deposits", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1016, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:21:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:52Z", "aquifer_name": "Owl Creek", "location_description": "Owl Creek", "material": "B", "subtype": "5a", "area": "13.5", "productivity": "L", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Sedimentary & volcanic rks;Peninsula & Brokenback Hill Formations", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1017, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T11:22:07Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:08:59Z", "aquifer_name": null, "location_description": "S of Prince George; Cranbrook Hill", "material": "SG", "subtype": "4b", "area": "7.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fluvialglacial sands and gravels", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1018, "fields": {"create_user": "PROXY_WELLS", "create_date": "2012-10-05T12:45:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:09:06Z", "aquifer_name": "1018", "location_description": "Crescent Bay", "material": "B", "subtype": "6b", "area": "8.4", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Granodioritic rock; Nelson Batholith Group; Mesozoic Era", "mapping_year": 2012, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1019, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:00:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:09:13Z", "aquifer_name": "1019", "location_description": "Fintry Provincial Park", "material": "SG", "subtype": "4a", "area": "2.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Ice contact deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1020, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:01:15Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:09:23Z", "aquifer_name": "1020", "location_description": "East face of Sugarloaf Mountain", "material": "B", "subtype": "6b", "area": "52.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Intrusive rock; granite & alkali feldspar granite; Mesozoic Era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1021, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:01:28Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:28:22Z", "aquifer_name": "1021", "location_description": "Winfield", "material": "B", "subtype": "6b", "area": "3.4", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Intrusive rock; granite & alkali feldspar granite; Mesozoic Era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1022, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:01:43Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:28:34Z", "aquifer_name": "1022", "location_description": "Ribbleworth Creek", "material": "B", "subtype": "6b", "area": "25.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Primarily metamorphic rks, Proterozoic Era; some Granitic rks, Mesozoic era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1023, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:01:55Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:28:45Z", "aquifer_name": "1023", "location_description": "Barkley Road, Lake Country", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "glacio-fluvial sediments", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1024, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:02:04Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:28:54Z", "aquifer_name": "1024", "location_description": "Princeton", "material": "B", "subtype": "5a", "area": "122.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Sedimentary rks; Coldwater Beds; Allenby Frm of Princeton Grp; Cenozoic Era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1025, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:02:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:07Z", "aquifer_name": "1025", "location_description": "Allison Lake", "material": "SG", "subtype": "1b", "area": "0.9", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1026, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:02:23Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:14Z", "aquifer_name": "1026", "location_description": "Hayes Creek, N of Finnegan Ck", "material": "B", "subtype": "6b", "area": "22.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Primarily granitic intrusive rks; Mesozoic Era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1027, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:02:40Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:22Z", "aquifer_name": "1027", "location_description": "Chain Lake", "material": "B", "subtype": "6b", "area": "1.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Primarily granitic intrusive rocks; Mesozoic Era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1028, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:02:50Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:29Z", "aquifer_name": "1028", "location_description": "Confluence of Hayes and Siwash Creeks", "material": "G", "subtype": "1b", "area": "7.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1029, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:03:01Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:41Z", "aquifer_name": "1029", "location_description": "North of Princeton", "material": "G", "subtype": "1b", "area": "8.2", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1030, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:03:11Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:50Z", "aquifer_name": "1030", "location_description": "12km North of Princeton", "material": "SG", "subtype": "1b", "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Likely Glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1031, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:03:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:29:59Z", "aquifer_name": "1031", "location_description": "Hayes Ck south of Trehearne Ck", "material": "B", "subtype": "6b", "area": "14.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Primarily granitic intrusive rks; Mesozoic Era", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1032, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:03:32Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:08Z", "aquifer_name": "1032", "location_description": "Osprey Lake", "material": "B", "subtype": "6b", "area": "5.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Igneous intrusive or metamorpjic, meta-sedimentary, meta-volcanic rks", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1033, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-02-28T16:03:48Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:14Z", "aquifer_name": "1033", "location_description": "Chain Lake", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Likely glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1034, "fields": {"create_user": "PROXY_WELLS", "create_date": "2013-05-01T13:51:04Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:23Z", "aquifer_name": "1034", "location_description": "Highland area north of Fort Nelson", "material": "B", "subtype": "5a", "area": "130.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "L", "litho_stratographic_unit": "Fort St. John Group", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1035, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:15:49Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:31Z", "aquifer_name": null, "location_description": "East side of Fort Nelson River", "material": "SG", "subtype": "4b", "area": "4.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glacialfluvial sands and gravel", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1036, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:31:54Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:38Z", "aquifer_name": null, "location_description": "Columbia River Valley at Spillimacheen", "material": "SG", "subtype": "3", "area": "3.2", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1037, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:36:12Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:45Z", "aquifer_name": null, "location_description": "Columbia River Valley northwest of Brisco", "material": "SG", "subtype": "4b", "area": "0.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1038, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:38:44Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:52Z", "aquifer_name": null, "location_description": "Columbia River Valley at Brisco", "material": "SG", "subtype": "4b", "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1039, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:44:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:30:59Z", "aquifer_name": null, "location_description": "Columbia River Valley 1southeast of Brisco", "material": "SG", "subtype": "4b", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1040, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:53:33Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:31:10Z", "aquifer_name": null, "location_description": "Industrial area 6 km south of Fort Nelson", "material": "SG", "subtype": "4b", "area": "5.6", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": "Glaciofluvial gravels and sands", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1041, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T09:56:39Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:31:17Z", "aquifer_name": null, "location_description": "7km SE of Fort Nelson", "material": "SG", "subtype": "1b", "area": "3.3", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "fluvial gravel and sands", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1042, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:12:41Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:31:25Z", "aquifer_name": null, "location_description": "Columbia River Valley-Frances Creek Valley", "material": "SG", "subtype": "4b", "area": "5.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1043, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:15:39Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:31:32Z", "aquifer_name": null, "location_description": "southeast of Golden", "material": "B", "subtype": "5a", "area": "11.3", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "McKay Group", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1044, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:19:19Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:31:44Z", "aquifer_name": null, "location_description": "18 km southeast of Golden", "material": "G", "subtype": "3", "area": "2.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "alluvial fan", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1045, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:21:55Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:31:52Z", "aquifer_name": null, "location_description": "3 km north of Luxor", "material": "B", "subtype": "5a", "area": "1.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Fractured mudstone, siltstone and shale", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1046, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:24:10Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:32:02Z", "aquifer_name": null, "location_description": "2 km northeast of Luxor", "material": "SG", "subtype": "4b", "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1047, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:26:39Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:32:12Z", "aquifer_name": null, "location_description": "30 km southeast of Golden", "material": "SG", "subtype": "3", "area": "1.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quaternary sands and gravels", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1048, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:29:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:32:21Z", "aquifer_name": null, "location_description": "40 km southeast of Golden", "material": "SG", "subtype": "3", "area": "0.7", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "Quaternary sands and gravels", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1049, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:31:48Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:32:29Z", "aquifer_name": null, "location_description": "45 km southeast of Golden", "material": "SG", "subtype": "3", "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "45 km southeast of Golden", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1050, "fields": {"create_user": "PROXY_WELLS", "create_date": "2014-01-20T10:34:38Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:32:37Z", "aquifer_name": null, "location_description": "Babtiste Lake", "material": "SG", "subtype": "4b", "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "glaciofluvial deposits", "mapping_year": 2013, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1051, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T09:11:13Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:00Z", "aquifer_name": null, "location_description": "Salmon River Valley south of Sayward", "material": "SG", "subtype": null, "area": "9.3", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1052, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T09:17:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:08Z", "aquifer_name": null, "location_description": "Junction of Greenhills and Fording River", "material": "SG", "subtype": null, "area": "0.4", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1053, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:04:50Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:18Z", "aquifer_name": null, "location_description": "2 km south of Fernie", "material": "B", "subtype": null, "area": "7.6", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1054, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:07:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:25Z", "aquifer_name": null, "location_description": "Greenhills Creek", "material": "SG", "subtype": null, "area": "0.4", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1055, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:09:39Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:33Z", "aquifer_name": null, "location_description": "Salmon River Valley at Stowe Creek", "material": "SG", "subtype": null, "area": "5.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1056, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:17:33Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:42Z", "aquifer_name": null, "location_description": "1 km N of Elkford, Elk River Valley", "material": "SG", "subtype": null, "area": "2.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1057, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:19:38Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:33:49Z", "aquifer_name": null, "location_description": "Elko, west side of Elk River", "material": "SG", "subtype": null, "area": "6.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1058, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:23:05Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:34:11Z", "aquifer_name": null, "location_description": "Boivin Creek Fan at Elkford", "material": "SG", "subtype": null, "area": "1.1", "productivity": "H", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1059, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T11:27:36Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:34:20Z", "aquifer_name": null, "location_description": "Rocky Mountain Trench, west of Caithness", "material": "SG", "subtype": null, "area": "1.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1060, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T14:24:58Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:34:29Z", "aquifer_name": null, "location_description": "Elk River Valley", "material": "SG", "subtype": null, "area": "2.1", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1061, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T14:27:40Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:34:36Z", "aquifer_name": null, "location_description": "Grasmere Valley", "material": "SG", "subtype": null, "area": "3.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1062, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T14:31:29Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:34:45Z", "aquifer_name": null, "location_description": "west side of Elk River valley", "material": "SG", "subtype": null, "area": "1.9", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1063, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T15:02:39Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:34:54Z", "aquifer_name": null, "location_description": "Edwards Lakes Valley", "material": "SG", "subtype": null, "area": "10.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1064, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T15:04:18Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:35:03Z", "aquifer_name": null, "location_description": "Elk River Valley", "material": "SG", "subtype": null, "area": "3.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1065, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-19T15:21:00Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:35:12Z", "aquifer_name": null, "location_description": "3 km south of Grasmere", "material": "SG", "subtype": null, "area": "2.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1066, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:42:04Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:35:22Z", "aquifer_name": null, "location_description": "West side of Elk river", "material": "SG", "subtype": null, "area": "0.8", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1067, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:44:31Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:35:38Z", "aquifer_name": null, "location_description": "West side of Lake Koocanusa", "material": "B", "subtype": null, "area": "1.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1068, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:46:13Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:35:48Z", "aquifer_name": null, "location_description": "West side of Elk River", "material": "SG", "subtype": null, "area": "2.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1069, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:47:41Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:35:59Z", "aquifer_name": null, "location_description": "East side of Lake Koocanusa", "material": "SG", "subtype": null, "area": "2.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1070, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:49:27Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:36:08Z", "aquifer_name": null, "location_description": "West side of Elk River Valley", "material": "SG", "subtype": null, "area": "5.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1071, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:50:47Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:36:19Z", "aquifer_name": null, "location_description": "West side of Lake Koocanusa", "material": "SG", "subtype": null, "area": "0.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1072, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:52:34Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T13:36:30Z", "aquifer_name": null, "location_description": "West side of Elk River Valley bottom", "material": "SG", "subtype": null, "area": "3.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1073, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T13:57:30Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:54:10Z", "aquifer_name": null, "location_description": "West side of Koocanusa Lake", "material": "SG", "subtype": null, "area": "4.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1074, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T14:55:51Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:54:20Z", "aquifer_name": null, "location_description": "W side of Elk R Valley", "material": "SG", "subtype": null, "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1075, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-27T15:00:43Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:54:28Z", "aquifer_name": null, "location_description": "West side of Kitimat River", "material": "SG", "subtype": null, "area": "6.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1076, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:01:40Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:54:36Z", "aquifer_name": null, "location_description": "W side of Elk R Valley", "material": "B", "subtype": null, "area": "5.1", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1077, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:03:49Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:54:49Z", "aquifer_name": null, "location_description": "North of Kitimat River", "material": "S", "subtype": null, "area": "3.1", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1078, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:05:34Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:54:57Z", "aquifer_name": null, "location_description": "W side of Elk R Valley", "material": "SG", "subtype": null, "area": "8.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1079, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:06:08Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:55:05Z", "aquifer_name": null, "location_description": "Eaast side of Kitimat River", "material": "SG", "subtype": null, "area": "1.6", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1080, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:08:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:55:17Z", "aquifer_name": null, "location_description": "Sparwood", "material": "SG", "subtype": null, "area": "0.1", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1081, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:08:50Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:55:25Z", "aquifer_name": null, "location_description": "West side of Kitimat River", "material": "SG", "subtype": null, "area": "2.3", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1082, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:10:30Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:55:34Z", "aquifer_name": null, "location_description": "Sparwood", "material": "B", "subtype": null, "area": "1.8", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1083, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:13:24Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:55:41Z", "aquifer_name": null, "location_description": "East bank of Kitimat River", "material": "SG", "subtype": null, "area": "0.7", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1084, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:14:46Z", "update_user": "PROXY_WELLS", "update_date": "2015-05-25T09:23:17Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1085, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:14:53Z", "update_user": "PROXY_WELLS", "update_date": "2018-01-02T15:55:52Z", "aquifer_name": null, "location_description": "West side of Kitimat River", "material": "SG", "subtype": null, "area": "1.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1086, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:17:11Z", "update_user": "PROXY_WELLS", "update_date": "2015-05-25T09:26:36Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1087, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:17:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-11T09:06:15Z", "aquifer_name": null, "location_description": "Salmon River Valley at Memekay River", "material": "SG", "subtype": null, "area": "4.6", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1088, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:19:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:10:13Z", "aquifer_name": null, "location_description": "Town of Hosmer", "material": "SG", "subtype": null, "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1089, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:20:12Z", "update_user": "PROXY_WELLS", "update_date": "2015-03-30T10:20:12Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1090, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:21:31Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:10:22Z", "aquifer_name": null, "location_description": "South of Hosmer", "material": "SG", "subtype": null, "area": "3.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1091, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:22:01Z", "update_user": "PROXY_WELLS", "update_date": "2015-03-30T10:22:01Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1092, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:23:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-06-30T12:34:07Z", "aquifer_name": "combined with Aquifer 532", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1093, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:23:35Z", "update_user": "PROXY_WELLS", "update_date": "2015-03-30T10:23:35Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1094, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:24:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:10:32Z", "aquifer_name": null, "location_description": "W. side of Elk R Valley", "material": "B", "subtype": null, "area": "11.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1095, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:25:33Z", "update_user": "PROXY_WELLS", "update_date": "2015-03-30T10:25:33Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1096, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-03-30T10:26:53Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:10:41Z", "aquifer_name": null, "location_description": "Salmon River Valley at Bigtree Creek", "material": "SG", "subtype": null, "area": "2.2", "productivity": "H", "demand": "H", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1097, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-04-23T09:27:32Z", "update_user": "PROXY_WELLS", "update_date": "2015-04-23T09:27:32Z", "aquifer_name": null, "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1098, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-04-23T09:29:50Z", "update_user": "PROXY_WELLS", "update_date": "2016-04-22T16:10:49Z", "aquifer_name": null, "location_description": "East of Englishman River", "material": "SG", "subtype": null, "area": "17.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2015, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1099, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-05-22T12:00:11Z", "update_user": "PROXY_WELLS", "update_date": "2015-05-22T12:00:11Z", "aquifer_name": "TEST AQUIFER", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": null, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1100, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-04T10:28:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:26:19Z", "aquifer_name": null, "location_description": "Whonnock Lake / Creek", "material": "SG", "subtype": "1c", "area": "1.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": "unconfined fluvial or glaciofluvial sand and gravel", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1101, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-04T10:33:58Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:26:29Z", "aquifer_name": null, "location_description": "North Kanata Creek", "material": "SG", "subtype": "4c", "area": "9.5", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial sand and gravel", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1102, "fields": {"create_user": "PROXY_WELLS", "create_date": "2015-12-04T10:39:13Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:26:38Z", "aquifer_name": null, "location_description": "Maple Ridge", "material": "SG", "subtype": "4c", "area": "12.5", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": "Glacio-fluvial sand and gravel", "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1103, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-11T13:47:16Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:26:49Z", "aquifer_name": null, "location_description": "Silverdale", "material": "SG", "subtype": "4b", "area": "9.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1104, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-11T13:50:35Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:27:01Z", "aquifer_name": null, "location_description": "Silvermere Lake Island", "material": "SG", "subtype": "4a", "area": "0.3", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1105, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-11T13:51:59Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:27:12Z", "aquifer_name": null, "location_description": "South of Davis Lake", "material": "B", "subtype": "6b", "area": "0.2", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1106, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-11T13:53:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-04T10:27:23Z", "aquifer_name": null, "location_description": "East of Hatzic Prairie", "material": "B", "subtype": "6b", "area": "5.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1107, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:14:43Z", "aquifer_name": null, "location_description": "Grand Oro Road,south of Twin Lakes", "material": "SG", "subtype": null, "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1108, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:12Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:14:28Z", "aquifer_name": null, "location_description": "Willowbrook and Oliver", "material": "B", "subtype": null, "area": "62.0", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1109, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:17Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:15:05Z", "aquifer_name": null, "location_description": "Willowbrook", "material": "B", "subtype": null, "area": "12.0", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1110, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:22Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:15:30Z", "aquifer_name": null, "location_description": "Water Dog Lake to McCuddy Creek Road", "material": "B", "subtype": null, "area": "16.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1111, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:32Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:15:49Z", "aquifer_name": null, "location_description": "Inkaneep", "material": "SG", "subtype": "1b", "area": "3.0", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1112, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:36Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:16:06Z", "aquifer_name": null, "location_description": "McCoudy Creek Road", "material": "SG", "subtype": null, "area": "0.1", "productivity": "H", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1113, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:04:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:16:21Z", "aquifer_name": null, "location_description": "Mount Kobau", "material": "B", "subtype": null, "area": "9.5", "productivity": "M", "demand": "L", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1114, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-12T16:05:00Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:16:35Z", "aquifer_name": null, "location_description": "South of Goose Creek", "material": "B", "subtype": null, "area": "2.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1115, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-15T09:42:04Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:16:45Z", "aquifer_name": "This aquifer was first named as aquifer #533", "location_description": "Salmon River Valley South in Sayward", "material": "SG", "subtype": "4c", "area": "6.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1116, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-02-15T13:16:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:17:02Z", "aquifer_name": "Rosebery", "location_description": "Mouth of Wilson Creek at Slocan Lake", "material": "SG", "subtype": null, "area": "0.8", "productivity": "M", "demand": "H", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1117, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T10:22:26Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:17:14Z", "aquifer_name": null, "location_description": "Glade east of Kootenay River", "material": "SG", "subtype": null, "area": "1.1", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1118, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T10:25:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:17:27Z", "aquifer_name": null, "location_description": "Taghum", "material": "SG", "subtype": null, "area": "0.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1119, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T10:28:34Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:17:38Z", "aquifer_name": null, "location_description": "Krestova to Passmore, west of Slocan River", "material": "SG", "subtype": null, "area": "16.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1120, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T10:31:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:17:53Z", "aquifer_name": null, "location_description": "Valican, junction of Slocan Rivers", "material": "SG", "subtype": null, "area": "2.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1121, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:19:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:18:06Z", "aquifer_name": null, "location_description": "Valican and Passmore", "material": "B", "subtype": null, "area": "13.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1122, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:21:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:18:18Z", "aquifer_name": null, "location_description": "Winlaw", "material": "SG", "subtype": null, "area": "2.4", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1123, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:23:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:18:31Z", "aquifer_name": null, "location_description": "Appledale", "material": "SG", "subtype": null, "area": "0.6", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1124, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:28:27Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:18:44Z", "aquifer_name": null, "location_description": "Winlaw to Lemon Creek", "material": "B", "subtype": null, "area": "18.5", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1125, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:30:50Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:18:55Z", "aquifer_name": null, "location_description": "Lemon Creek", "material": "SG", "subtype": null, "area": "5.3", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1126, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:32:23Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:19:07Z", "aquifer_name": null, "location_description": "Village of Slocan", "material": "SG", "subtype": null, "area": "2.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1127, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:34:20Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:19:26Z", "aquifer_name": null, "location_description": "Greater Nakusp Area", "material": "G", "subtype": null, "area": "24.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1128, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:36:21Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:19:38Z", "aquifer_name": null, "location_description": "Village of Nakusp", "material": "SG", "subtype": null, "area": "8.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1129, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:37:57Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:19:50Z", "aquifer_name": null, "location_description": "FairmontHot springs", "material": "B", "subtype": null, "area": "0.4", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1130, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:39:48Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:20:06Z", "aquifer_name": null, "location_description": "West of Invermere, south of Toby Creek", "material": "SG", "subtype": null, "area": "16.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1131, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:42:18Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:20:29Z", "aquifer_name": null, "location_description": "South of Froster Creek", "material": "SG", "subtype": null, "area": "5.5", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1132, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:44:51Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:20:45Z", "aquifer_name": null, "location_description": "North of Fairmont Hot springs", "material": "SG", "subtype": null, "area": "4.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1133, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:46:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:20:57Z", "aquifer_name": null, "location_description": "Old Town, on Perry Creek", "material": "SG", "subtype": null, "area": "1.0", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1134, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:48:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:21:10Z", "aquifer_name": null, "location_description": "Wycliffe, North of St.Mary River", "material": "SG", "subtype": null, "area": "1.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1135, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:52:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:21:24Z", "aquifer_name": null, "location_description": "South of Kimberly", "material": "SG", "subtype": "1a", "area": "1.2", "productivity": "M", "demand": "H", "known_water_use": "PD", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1136, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:53:55Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:21:36Z", "aquifer_name": null, "location_description": "South of Kimberly", "material": "SG", "subtype": null, "area": "2.2", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1137, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:56:14Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:21:49Z", "aquifer_name": null, "location_description": "City of Kimberly and Kimberly Highway", "material": "SG", "subtype": null, "area": "12.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1138, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:57:44Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:22:00Z", "aquifer_name": null, "location_description": "East of Kimberly", "material": "SG", "subtype": null, "area": "1.2", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1139, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T13:59:29Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:22:12Z", "aquifer_name": null, "location_description": "Canadian Rockies International Airport", "material": "SG", "subtype": null, "area": "0.5", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1140, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T14:01:06Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:22:23Z", "aquifer_name": null, "location_description": "Kimberly Highway", "material": "B", "subtype": null, "area": "3.0", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1141, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T14:03:11Z", "update_user": "PROXY_WELLS", "update_date": "2016-07-05T16:22:35Z", "aquifer_name": null, "location_description": "Kootenay and St. mary Rivers", "material": "SG", "subtype": "1a", "area": "8.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1142, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-06-08T14:05:01Z", "update_user": "PROXY_WELLS", "update_date": "2017-01-16T11:58:16Z", "aquifer_name": null, "location_description": "North of Fort Steele", "material": "SG", "subtype": "4b", "area": "16.0", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1143, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-03T11:24:52Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-03T11:30:51Z", "aquifer_name": "Not correlated at the time of interpretation", "location_description": "Insufficient info or does not correspond", "material": null, "subtype": null, "area": null, "productivity": null, "demand": null, "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2016, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1144, "fields": {"create_user": "PROXY_WELLS", "create_date": "2016-11-03T14:55:43Z", "update_user": "PROXY_WELLS", "update_date": "2016-11-03T15:15:57Z", "aquifer_name": "Hopington C", "location_description": "Hopington-Township of Langley", "material": "SG", "subtype": "4c", "area": "16.5", "productivity": "M", "demand": "H", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Glaciomarrine outwash of the Fort Langley Formation", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1145, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-06T15:40:08Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-06T15:40:08Z", "aquifer_name": null, "location_description": "northeast of Terrace", "material": "SG", "subtype": "4b", "area": "21.9", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "N", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1146, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-04-06T15:47:12Z", "update_user": "PROXY_WELLS", "update_date": "2017-04-12T15:32:05Z", "aquifer_name": null, "location_description": "Gibraltar Mine", "material": "B", "subtype": "6b", "area": "21.9", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "L", "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1147, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-05-31T16:20:22Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:51:03Z", "aquifer_name": "South Central SSI", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1148, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-06-01T14:06:33Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:51:14Z", "aquifer_name": "Greenwood", "location_description": null, "material": null, "subtype": null, "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1149, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-07-18T15:51:44Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:40:41Z", "aquifer_name": "Ashton Creek Unconfined", "location_description": "Ashton Creek", "material": "SG", "subtype": null, "area": "8.1", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Late Glacial (Including reworked preglacial) to Holocene", "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1150, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:32:22Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:40:52Z", "aquifer_name": "O'Keefe Basal", "location_description": "O'Keefe Valley and Grandview Flats", "material": "S", "subtype": "4b", "area": "17.6", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1151, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:33:23Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:03Z", "aquifer_name": "Swan Lake Unconfined", "location_description": "North of Vernon / North of Swan Lake", "material": "SG", "subtype": "4a", "area": "7.9", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1152, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:33:57Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:11Z", "aquifer_name": "Vernon Unconfined", "location_description": "Northeast of Vernon along BX Creek", "material": "SG", "subtype": "4a", "area": "21.1", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1153, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:34:30Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:21Z", "aquifer_name": "Okanagan Valley Confined", "location_description": "Lower Shuswap River Valley", "material": "S", "subtype": "4b", "area": "134.4", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1154, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:41:13Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:30Z", "aquifer_name": "Vernon Confined", "location_description": "Northeast of Vernon along BX Creek", "material": "SG", "subtype": "4b", "area": "20.0", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1155, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:43:10Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:38Z", "aquifer_name": "Deep Okanagan Valley", "location_description": "Lower Shuswap River Valley", "material": "S", "subtype": "4b", "area": "77.0", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1156, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:43:45Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:46Z", "aquifer_name": "Spallumcheen Basal Confined Aquifer", "location_description": "Lower Shuswap River Valley", "material": "S", "subtype": "4b", "area": "23.1", "productivity": "H", "demand": "L", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1157, "fields": {"create_user": "PROXY_WELLS", "create_date": "2017-08-18T13:44:32Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-04T10:41:56Z", "aquifer_name": "Hullcar Perched", "location_description": "Slopes of Hullcar Valley, near Deep Creek", "material": "G", "subtype": null, "area": "29.5", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2017, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1158, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-14T14:57:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:47:47Z", "aquifer_name": "Sugar Lake", "location_description": "Sugar Lake Road", "material": "SG", "subtype": "1b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "mixed kame, fan and modern alluvium", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1159, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-14T14:58:47Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:48:02Z", "aquifer_name": "Lower Cherryville", "location_description": "Cherryville - Shuswap", "material": "SG", "subtype": "1b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "mixed kame, fan and modern alluvium", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1160, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-14T15:01:07Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:51:48Z", "aquifer_name": "Bear Valley Perched", "location_description": "Bear Valley / Blue Springs Creek", "material": "SG", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "mixed englacialdeposits, outwash and recent fan", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1161, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-14T15:02:52Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:51:59Z", "aquifer_name": "Falkland Perched", "location_description": "Falkland Upland", "material": "G", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "basal colluvial gravels, below Till", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1162, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-03-14T15:03:53Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:52:10Z", "aquifer_name": "Cedar Hill Perched", "location_description": "Cedar Hill", "material": "G", "subtype": "4b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": "basal colluvial gravels, below Till", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1163, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-06T14:18:00Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:50:09Z", "aquifer_name": "Agate Aquifer", "location_description": null, "material": "SG", "subtype": "4b", "area": "4.9", "productivity": "H", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1164, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-06T14:21:20Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:51:51Z", "aquifer_name": "Coldwater Valley", "location_description": "Coldwater River Valley", "material": "SG", "subtype": "4b", "area": "0.8", "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1165, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-06T14:25:20Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:52:12Z", "aquifer_name": "Kingsvale", "location_description": "Coldwater River Valley", "material": "B", "subtype": "6b", "area": "7.4", "productivity": "L", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1166, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-06T14:28:40Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:51:41Z", "aquifer_name": "Paul's Basin", "location_description": "Midday Creek Valley", "material": "B", "subtype": "6b", "area": "11.0", "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": "Nicola Group Volcanics", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1167, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:35:58Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:53:57Z", "aquifer_name": "Lower Merritt", "location_description": "Lower Merritt", "material": "SG", "subtype": "4b", "area": "6.8", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1168, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:41:52Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:56:09Z", "aquifer_name": "Middle Merritt", "location_description": "Middle Merritt", "material": "SG", "subtype": "4b", "area": "13.0", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1169, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:42:52Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:57:19Z", "aquifer_name": "Joeyaska Shallow", "location_description": "Joeyaska Shallow", "material": "SG", "subtype": "4a", "area": "1.9", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1170, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:43:17Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T10:59:24Z", "aquifer_name": "Stumbles Creek Confined", "location_description": "Stumbles Creek", "material": "S", "subtype": "4b", "area": "0.7", "productivity": "M", "demand": "L", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1171, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:43:42Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T11:00:38Z", "aquifer_name": "Lower Nicola Outwash", "location_description": "Lower Nicola Outwash", "material": "SG", "subtype": "4b", "area": "6.4", "productivity": "H", "demand": "M", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1172, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:43:55Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T11:02:52Z", "aquifer_name": "Guichon Creek", "location_description": "Guichon Creek", "material": "B", "subtype": "6b", "area": "2.9", "productivity": "L", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1173, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:44:13Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T11:04:30Z", "aquifer_name": "Kwinshatin Intertill", "location_description": "Coldwater River Valley", "material": "SG", "subtype": "4b", "area": "1.8", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1174, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:44:26Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T11:06:48Z", "aquifer_name": "Stump Lake", "location_description": "northeastern shore of Stump Lake", "material": "SG", "subtype": "4b", "area": "1.5", "productivity": "M", "demand": "M", "known_water_use": "D", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1175, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-09T09:44:44Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-30T11:08:37Z", "aquifer_name": "Stump Lake Bedrock", "location_description": "north east of Stump Lake.", "material": "B", "subtype": "6b", "area": "5.1", "productivity": "L", "demand": "L", "known_water_use": "M", "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1176, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:09:01Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:52:42Z", "aquifer_name": "Fraser Canyon, Choate to Yale", "location_description": "Fraser Canyon south of Choate to Yale", "material": "SG", "subtype": "1a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1177, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:14:09Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:52:54Z", "aquifer_name": "Coquihalla Canyon", "location_description": "Coquihalla Canyon", "material": "SG", "subtype": "1b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1178, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:15:41Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:53:06Z", "aquifer_name": "Eastern Kawkawa Lake", "location_description": "Eastern Kawkawa Lake", "material": "SG", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1179, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:19:25Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:53:17Z", "aquifer_name": "Mount Ozzard, Unconsolidated", "location_description": "Western slope of Mount Ozzard", "material": "SG", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1180, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:20:45Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:53:39Z", "aquifer_name": "Tlell", "location_description": "Graham Island, Tlell", "material": "S", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1181, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:22:38Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:53:48Z", "aquifer_name": "Port Clements", "location_description": "Graham Island, Port Clements", "material": "S", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1182, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:24:14Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:54:00Z", "aquifer_name": "Masset", "location_description": "Graham Island, Village of Masset", "material": "S", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1183, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:43:36Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:54:13Z", "aquifer_name": "Haida/Lawnhill", "location_description": "Graham Island, Haida to Lawnhill", "material": "S", "subtype": "4a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1184, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:49:10Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:54:25Z", "aquifer_name": "Skidgate/Queen Charlotte", "location_description": "Graham Island, Skidegate Plateau", "material": "B", "subtype": "5a", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1185, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:50:47Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:54:35Z", "aquifer_name": "Mount Ozzard, Bedrock Southeast", "location_description": "Southeastern slope Mount Ozzard", "material": "B", "subtype": "6b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1186, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:51:50Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:54:45Z", "aquifer_name": "Mount Ozzard Bedrock West", "location_description": "Western slope Mount Ozzard", "material": "B", "subtype": "6b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1187, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:52:51Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:55:01Z", "aquifer_name": "Ucluelet Peninsula", "location_description": "Ucluelet peninsula", "material": "B", "subtype": "6b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1188, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:54:04Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:55:11Z", "aquifer_name": "Fraser Canyon, Dogwood Valley", "location_description": "Fraser Canyon, near Dogwood Valley", "material": "B", "subtype": "6b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1189, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:55:04Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:55:22Z", "aquifer_name": "Eastern Kawkawa Lake", "location_description": "Eastern Kawkawa Lake", "material": "B", "subtype": "6b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1190, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-04-24T09:55:57Z", "update_user": "PROXY_WELLS", "update_date": "2018-05-25T10:55:34Z", "aquifer_name": "Lower Coquihalla Canyon", "location_description": "Lower Coquihalla Canyon", "material": "B", "subtype": "6b", "area": null, "productivity": "M", "demand": "M", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1191, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-06-06T15:42:23Z", "update_user": "PROXY_WELLS", "update_date": "2018-06-15T14:28:13Z", "aquifer_name": "Central Kelowna Aquifer", "location_description": "Mission Creeknorth to Ellis Lake", "material": "SG", "subtype": "4b", "area": "42.4", "productivity": "H", "demand": "L", "known_water_use": null, "quality_concern": null, "litho_stratographic_unit": null, "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1192, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-07-11T13:01:11Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:10:45Z", "aquifer_name": "Aldergrove CD", "location_description": "Township of Langley", "material": "SG", "subtype": "4c", "area": null, "productivity": "M", "demand": "M", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Fort Langley Formation", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1193, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-07-11T13:12:51Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:10:53Z", "aquifer_name": "Aldergrove Quadra", "location_description": "Township of Langley and Washington State", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Quadra Sands", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1194, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-07-11T13:16:21Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:11:01Z", "aquifer_name": "Salmon River", "location_description": "Township of Langley", "material": "S", "subtype": "4c", "area": null, "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "R", "litho_stratographic_unit": "Semiahmoo or earlier", "mapping_year": 2018, "notes": null}}, {"model": "aquifers.aquifer", "pk": 1195, "fields": {"create_user": "PROXY_WELLS", "create_date": "2018-07-11T13:26:19Z", "update_user": "PROXY_WELLS", "update_date": "2018-09-18T14:11:09Z", "aquifer_name": "South of Murrayville B", "location_description": "Township of Langley", "material": "SG", "subtype": "4b", "area": null, "productivity": "M", "demand": "L", "known_water_use": "M", "quality_concern": "I", "litho_stratographic_unit": "Vashon Drift", "mapping_year": 2018, "notes": null}}, {"model": "reversion.version", "pk": 1, "fields": {"revision": 1, "object_id": "DRILL", "content_type": 26, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.activitycode\", \"pk\": \"DRILL\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Well Driller"}}, {"model": "reversion.version", "pk": 2, "fields": {"revision": 2, "object_id": "PUMP", "content_type": 26, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.activitycode\", \"pk\": \"PUMP\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Pump Installer\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3, "fields": {"revision": 3, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4, "fields": {"revision": 4, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5, "fields": {"revision": 5, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6, "fields": {"revision": 6, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 7, "fields": {"revision": 7, "object_id": "AB", "content_type": 28, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.certifyingauthoritycode\", \"pk\": \"AB\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Province of Alberta\", \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB"}}, {"model": "reversion.version", "pk": 8, "fields": {"revision": 8, "object_id": "BC", "content_type": 28, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.certifyingauthoritycode\", \"pk\": \"BC\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Province of B.C.\", \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC"}}, {"model": "reversion.version", "pk": 9, "fields": {"revision": 9, "object_id": "CGWA", "content_type": 28, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.certifyingauthoritycode\", \"pk\": \"CGWA\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Canadian Ground Water Association\", \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA"}}, {"model": "reversion.version", "pk": 10, "fields": {"revision": 10, "object_id": "N/A", "content_type": 28, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.certifyingauthoritycode\", \"pk\": \"N/A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Grand-fathered\", \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A"}}, {"model": "reversion.version", "pk": 11, "fields": {"revision": 11, "object_id": "ON", "content_type": 28, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.certifyingauthoritycode\", \"pk\": \"ON\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Province of Ontario\", \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON"}}, {"model": "reversion.version", "pk": 12, "fields": {"revision": 12, "object_id": "SK", "content_type": 28, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.certifyingauthoritycode\", \"pk\": \"SK\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Province of Saskatchewan\", \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "SK"}}, {"model": "reversion.version", "pk": 13, "fields": {"revision": 13, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 14, "fields": {"revision": 14, "object_id": "1dfd37f5-5082-497a-be4e-6facd1d4dee9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1dfd37f5-5082-497a-be4e-6facd1d4dee9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate, Class 2\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate, Class 2"}}, {"model": "reversion.version", "pk": 15, "fields": {"revision": 15, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 16, "fields": {"revision": 16, "object_id": "4a059930-265f-43f5-9dbb-c71862ccc5b5", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"4a059930-265f-43f5-9dbb-c71862ccc5b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"DRILL\", \"name\": \"Ground Water Drilling Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Well Driller Ground Water Drilling Technician Certificate"}}, {"model": "reversion.version", "pk": 17, "fields": {"revision": 17, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 18, "fields": {"revision": 18, "object_id": "55911754-e547-4ca0-aad4-29592285f55d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"55911754-e547-4ca0-aad4-29592285f55d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Earth Loop Technician, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Earth Loop Technician, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 19, "fields": {"revision": 19, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 20, "fields": {"revision": 20, "object_id": "88d5d0aa-d2aa-450a-9708-a911dce42f7f", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"88d5d0aa-d2aa-450a-9708-a911dce42f7f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"ON\", \"registries_activity\": \"PUMP\", \"name\": \"Well Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON Pump Installer Well Technician Certificate"}}, {"model": "reversion.version", "pk": 21, "fields": {"revision": 21, "object_id": "9349a159-6739-4623-9f7d-80b904b8f885", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"9349a159-6739-4623-9f7d-80b904b8f885\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"ON\", \"registries_activity\": \"DRILL\", \"name\": \"Well Technician Class 1 Drilling\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON Well Driller Well Technician Class 1 Drilling"}}, {"model": "reversion.version", "pk": 22, "fields": {"revision": 22, "object_id": "a17cc1f8-62c7-4715-93fb-b4c66986d9a7", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a17cc1f8-62c7-4715-93fb-b4c66986d9a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"SK\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Saskatchewan Journeyperson Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "SK Well Driller Water Well Driller, Saskatchewan Journeyperson Certificate"}}, {"model": "reversion.version", "pk": 23, "fields": {"revision": 23, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 24, "fields": {"revision": 24, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 25, "fields": {"revision": 25, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 26, "fields": {"revision": 26, "object_id": "e0d774bd-aba9-4a6c-9d5e-4020cfe82865", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e0d774bd-aba9-4a6c-9d5e-4020cfe82865\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"ON\", \"registries_activity\": \"DRILL\", \"name\": \"Well Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON Well Driller Well Technician Certificate"}}, {"model": "reversion.version", "pk": 27, "fields": {"revision": 27, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 28, "fields": {"revision": 28, "object_id": "0069465c-26f6-4aa3-8cf2-27da659d91bd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0069465c-26f6-4aa3-8cf2-27da659d91bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cameo Plumbing\", \"street_address\": \"Box 1181\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E0\", \"main_tel\": \"(250) 395-3535\", \"fax_tel\": \"(250) 395-2842\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cameo Plumbing"}}, {"model": "reversion.version", "pk": 29, "fields": {"revision": 29, "object_id": "008e3350-ee98-451e-bdd2-65e584b19bdd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"008e3350-ee98-451e-bdd2-65e584b19bdd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 30, "fields": {"revision": 30, "object_id": "017065ea-74c0-492a-9eda-0c43dc7755ec", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"017065ea-74c0-492a-9eda-0c43dc7755ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 834-3048\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 31, "fields": {"revision": 31, "object_id": "017c3de8-c409-416c-b64e-62fab51d6909", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"017c3de8-c409-416c-b64e-62fab51d6909\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Unique Water Works\", \"street_address\": \"469 4th Avenue\", \"city\": \"Kimberley\", \"province_state\": \"BC\", \"postal_code\": \"V1A 2R7\", \"main_tel\": \"(250) 427-6676\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Unique Water Works"}}, {"model": "reversion.version", "pk": 32, "fields": {"revision": 32, "object_id": "01b7c476-2157-439e-9b19-007e43b52ede", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01b7c476-2157-439e-9b19-007e43b52ede\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Trinity Valley Drilling\", \"street_address\": \"Box 5\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G0\", \"main_tel\": \"(250) 547-9447\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Trinity Valley Drilling"}}, {"model": "reversion.version", "pk": 33, "fields": {"revision": 33, "object_id": "01bd568f-5972-458d-b553-dc0bc83144ba", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 34, "fields": {"revision": 34, "object_id": "01e5dc80-447b-457e-882b-fde84802c6e4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01e5dc80-447b-457e-882b-fde84802c6e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kamco Installations Ltd.\", \"street_address\": \"1347 Mission Flats Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 1A9\", \"main_tel\": \"(250) 374-3934\", \"fax_tel\": \"(250) 374-1913\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kamco Installations Ltd."}}, {"model": "reversion.version", "pk": 35, "fields": {"revision": 35, "object_id": "01fedb09-f90c-45da-af49-eeda149ed446", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01fedb09-f90c-45da-af49-eeda149ed446\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alkan Water Well Drilling\", \"street_address\": \"Box 55\", \"city\": \"Tata Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0B 2H0\", \"main_tel\": \"(250) 422-3710\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alkan Water Well Drilling"}}, {"model": "reversion.version", "pk": 36, "fields": {"revision": 36, "object_id": "0212547a-cbca-483d-8e82-9b567460b03a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0212547a-cbca-483d-8e82-9b567460b03a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bridge Lake Electric Ltd.\", \"street_address\": \"7556 Mickelson Road\", \"city\": \"Lone Butte\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1X1\", \"main_tel\": \"(250) 593-4498\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bridge Lake Electric Ltd."}}, {"model": "reversion.version", "pk": 37, "fields": {"revision": 37, "object_id": "0253fef6-3961-4907-bc81-2d3d89430f3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0253fef6-3961-4907-bc81-2d3d89430f3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Waterfall Drilling\", \"street_address\": \"7000 Beaver Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E6\", \"main_tel\": \"(250) 963-3406\", \"fax_tel\": \"(250) 963-3406\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Waterfall Drilling"}}, {"model": "reversion.version", "pk": 38, "fields": {"revision": 38, "object_id": "02d2428c-1ec8-4ecd-aac6-becd8a9a93c4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"02d2428c-1ec8-4ecd-aac6-becd8a9a93c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Butch's Pump\", \"street_address\": \"6729 Hwy. 97 South\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E2\", \"main_tel\": \"(250) 395-1971\", \"fax_tel\": \"(250) 395-1997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Butch's Pump"}}, {"model": "reversion.version", "pk": 39, "fields": {"revision": 39, "object_id": "02f1bf67-c826-4921-8984-f5faedba72a8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"02f1bf67-c826-4921-8984-f5faedba72a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Westech Drilling Corp\", \"street_address\": \"13695 East Beaverly Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5A6\", \"main_tel\": \"(250) 964-8748\", \"fax_tel\": \"(250) 964-8741\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Westech Drilling Corp"}}, {"model": "reversion.version", "pk": 40, "fields": {"revision": 40, "object_id": "03c6dc8f-061c-41b2-8fd9-d5b51b253b82", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"03c6dc8f-061c-41b2-8fd9-d5b51b253b82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wolfgang's Plumbing Services\", \"street_address\": \"5258 Highway # 6, PO Box 137\", \"city\": \"Winlaw\", \"province_state\": \"BC\", \"postal_code\": \"V0G 2J0\", \"main_tel\": \"(250) 226-7320\", \"fax_tel\": \"(250) 226-7320\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wolfgang's Plumbing Services"}}, {"model": "reversion.version", "pk": 41, "fields": {"revision": 41, "object_id": "03f1fd07-3663-4b86-b5cc-5f3ce4b2714c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"03f1fd07-3663-4b86-b5cc-5f3ce4b2714c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services Ltd.\", \"street_address\": \"160-13511 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1K4\", \"main_tel\": \"(604) 214-7007\", \"fax_tel\": \"(604) 214-7017\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services Ltd."}}, {"model": "reversion.version", "pk": 42, "fields": {"revision": 42, "object_id": "04d94639-e00c-4b24-9251-accd1cc3028d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"04d94639-e00c-4b24-9251-accd1cc3028d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Zenco Hydrovac Excavation Ltd.\", \"street_address\": \"4663 Banzer Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 4H2\", \"main_tel\": \"(250) 961-8287\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Zenco Hydrovac Excavation Ltd."}}, {"model": "reversion.version", "pk": 43, "fields": {"revision": 43, "object_id": "04ed84c6-b967-40f9-8c06-667f2b1453c0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"04ed84c6-b967-40f9-8c06-667f2b1453c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 962-9041\", \"fax_tel\": \"(250) 962-9046\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 44, "fields": {"revision": 44, "object_id": "056b5bf7-6a34-4ccd-b1d3-21875994a471", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"056b5bf7-6a34-4ccd-b1d3-21875994a471\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Ayre Enterprises\", \"street_address\": \"Box 27084; 772 Goldstream Avenue\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 5S4\", \"main_tel\": \"(250) 474-5627\", \"fax_tel\": \"(250) 474-5627\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Ayre Enterprises"}}, {"model": "reversion.version", "pk": 45, "fields": {"revision": 45, "object_id": "0589bfb0-2212-42c0-8ae7-458b0c004f87", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0589bfb0-2212-42c0-8ae7-458b0c004f87\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Glen Frederick Wilson\", \"street_address\": \"210 Old Divide Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2G7\", \"main_tel\": \"(250) 539-5132\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Glen Frederick Wilson"}}, {"model": "reversion.version", "pk": 46, "fields": {"revision": 46, "object_id": "060fb1ec-8580-4066-9721-1cc73c1c1606", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"060fb1ec-8580-4066-9721-1cc73c1c1606\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kardash Plumbing Ltd.\", \"street_address\": \"Box 900\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H0\", \"main_tel\": \"(250) 344-6887\", \"fax_tel\": \"(250) 344-2854\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kardash Plumbing Ltd."}}, {"model": "reversion.version", "pk": 47, "fields": {"revision": 47, "object_id": "072e32d8-5164-44a3-bc45-e983bd5bf5b3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"072e32d8-5164-44a3-bc45-e983bd5bf5b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sea to Sky Geotechnical Drilling Ltd.\", \"street_address\": \"E2-225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 328-9547\", \"fax_tel\": \"(604) 939-5045\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sea to Sky Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 48, "fields": {"revision": 48, "object_id": "076df909-204a-4235-9ad6-4bda87dddb19", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"076df909-204a-4235-9ad6-4bda87dddb19\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"Box 12006 RPO Murrayville; 23191 Fraser Hwy\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2T2\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 49, "fields": {"revision": 49, "object_id": "08ac2f20-407a-42ec-9f9d-2c466b16eec8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"08ac2f20-407a-42ec-9f9d-2c466b16eec8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"948 Laurier Avenue\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1Y 6B1\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2519\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 50, "fields": {"revision": 50, "object_id": "08df41c9-9164-41de-80ad-69d718299283", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"08df41c9-9164-41de-80ad-69d718299283\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Well Drilling (2000) Ltd.\", \"street_address\": \"4960 Topland Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5Y2\", \"main_tel\": \"(250) 338-5113\", \"fax_tel\": \"(250) 338-5199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Well Drilling (2000) Ltd."}}, {"model": "reversion.version", "pk": 51, "fields": {"revision": 51, "object_id": "08e91407-f024-4127-9413-f9a5aa5814dc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"08e91407-f024-4127-9413-f9a5aa5814dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 52, "fields": {"revision": 52, "object_id": "096f0806-1fcc-4140-8e6c-9cb08e95d2b0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"096f0806-1fcc-4140-8e6c-9cb08e95d2b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Young's Plumbing Ltd.\", \"street_address\": \"Box 4539\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-5474\", \"fax_tel\": \"(250) 847-6074\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Young's Plumbing Ltd."}}, {"model": "reversion.version", "pk": 53, "fields": {"revision": 53, "object_id": "0acc2ac6-0fd2-46df-ba89-c28c9fba9375", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0acc2ac6-0fd2-46df-ba89-c28c9fba9375\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Omega Environmental Drilling Ltd.\", \"street_address\": \"PO Box 31620\", \"city\": \"Pitt Meadows\", \"province_state\": \"BC\", \"postal_code\": \"V3Y 2W4\", \"main_tel\": \"(604) 459-4567\", \"fax_tel\": \"(604) 459-5477\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Omega Environmental Drilling Ltd."}}, {"model": "reversion.version", "pk": 54, "fields": {"revision": 54, "object_id": "0bca96ff-9a9a-4d56-8303-6dab7af9993e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0bca96ff-9a9a-4d56-8303-6dab7af9993e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bowen Plumbing\", \"street_address\": \"Box F-11, 1231 Hillcrest Road\", \"city\": \"Bowen Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1G0\", \"main_tel\": \"(604) 947-2467\", \"fax_tel\": \"(604) 947-2534\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bowen Plumbing"}}, {"model": "reversion.version", "pk": 55, "fields": {"revision": 55, "object_id": "0d86aca7-97f8-450f-a9e0-0c21d1578f85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"PO Box 550\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J1\", \"main_tel\": \"(250) 426-0255\", \"fax_tel\": \"(250) 426-0251\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 56, "fields": {"revision": 56, "object_id": "0d8b1858-e8a4-4a42-af1b-e6f7741602ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d8b1858-e8a4-4a42-af1b-e6f7741602ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Spooner Electric Ltd.\", \"street_address\": \"3079 Squilax-Anglemont Road\", \"city\": \"Lee Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1M4\", \"main_tel\": \"(250) 679-3655\", \"fax_tel\": \"(250) 679-3655\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Spooner Electric Ltd."}}, {"model": "reversion.version", "pk": 57, "fields": {"revision": 57, "object_id": "0d9f0534-dc48-429c-ba13-04887e0c3d9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d9f0534-dc48-429c-ba13-04887e0c3d9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Smithers Well Drilling Ltd.\", \"street_address\": \"4760 Nielsen Road\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N2\", \"main_tel\": \"(250) 847-4033\", \"fax_tel\": \"(250) 847-4033\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Smithers Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 58, "fields": {"revision": 58, "object_id": "0dd51008-5afd-408f-9b3c-23179fb0322e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0dd51008-5afd-408f-9b3c-23179fb0322e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quality Water Well Service\", \"street_address\": \"6659 Topaz Rd\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1H 1N8\", \"main_tel\": \"(250) 540-2085\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quality Water Well Service"}}, {"model": "reversion.version", "pk": 59, "fields": {"revision": 59, "object_id": "0e50f20d-98a9-45e4-bd22-56581838061d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0e50f20d-98a9-45e4-bd22-56581838061d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Drilling Services Ltd.\", \"street_address\": \"Box 4827\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 2V8\", \"main_tel\": \"(250) 392-2241\", \"fax_tel\": \"(250) 392-7979\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 60, "fields": {"revision": 60, "object_id": "0ea9a4e3-7989-43d8-b35a-4bf9c3b4a289", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0ea9a4e3-7989-43d8-b35a-4bf9c3b4a289\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bertram Drilling Corp.\", \"street_address\": \"P.O. Box 100\", \"city\": \"Carbon\", \"province_state\": \"AB\", \"postal_code\": \"T0M 0L0\", \"main_tel\": \"(403) 263-8563\", \"fax_tel\": \"(403) 572-3461\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bertram Drilling Corp."}}, {"model": "reversion.version", "pk": 61, "fields": {"revision": 61, "object_id": "105d817b-b901-432e-810d-48b53f3f957b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"105d817b-b901-432e-810d-48b53f3f957b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 62, "fields": {"revision": 62, "object_id": "106b7c38-f5b2-42ee-8014-96a2a5ce018b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"106b7c38-f5b2-42ee-8014-96a2a5ce018b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Omega Environmental Drilling Ltd.\", \"street_address\": \"PO Box 31620\", \"city\": \"Pitt Meadows\", \"province_state\": \"BC\", \"postal_code\": \"V3Y 2G7\", \"main_tel\": \"(604) 459-4567\", \"fax_tel\": \"(604) 459-5477\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Omega Environmental Drilling Ltd."}}, {"model": "reversion.version", "pk": 63, "fields": {"revision": 63, "object_id": "10d15c02-d060-4e9a-ba24-687b85120e28", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"10d15c02-d060-4e9a-ba24-687b85120e28\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sea to Sky Geotechnical Drilling Ltd.\", \"street_address\": \"E2-225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604)328-9568\", \"fax_tel\": \"(604) 939-5045\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sea to Sky Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 64, "fields": {"revision": 64, "object_id": "11252abd-fea8-42c6-8c85-ebdd184cca7d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"11252abd-fea8-42c6-8c85-ebdd184cca7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ray-Mar Enterprises\", \"street_address\": \"Box 2466\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 4R4\", \"main_tel\": \"(250) 832-8367\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ray-Mar Enterprises"}}, {"model": "reversion.version", "pk": 65, "fields": {"revision": 65, "object_id": "116d07c5-a987-4034-9570-3be70d2f3a4c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"116d07c5-a987-4034-9570-3be70d2f3a4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 66, "fields": {"revision": 66, "object_id": "11b57fac-1c52-49be-84cd-a9082516c221", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"11b57fac-1c52-49be-84cd-a9082516c221\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Well Drilling Ltd.\", \"street_address\": \"48987 Chilliwack Central Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H3\", \"main_tel\": \"(604) 351-5862\", \"fax_tel\": \"(604) 794-5545\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 67, "fields": {"revision": 67, "object_id": "11c50195-9268-44f4-a8ec-1890be4cbc1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"11c50195-9268-44f4-a8ec-1890be4cbc1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5070\", \"fax_tel\": \"(250) 426-6997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 68, "fields": {"revision": 68, "object_id": "1255282c-2872-4b56-b10b-3f8b245df380", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1255282c-2872-4b56-b10b-3f8b245df380\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sun Waterwell Testing 546347 BC Ltd.\", \"street_address\": \"1581 - 16th Avenue S.E.\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2M7\", \"main_tel\": \"(250) 832-3742\", \"fax_tel\": \"(250) 832-3725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sun Waterwell Testing 546347 BC Ltd."}}, {"model": "reversion.version", "pk": 69, "fields": {"revision": 69, "object_id": "12c23cfa-e47c-409e-9599-1290516950b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"12c23cfa-e47c-409e-9599-1290516950b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Johnson's Ground Water Services\", \"street_address\": \"2041 Glenwood Drive\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 4G8\", \"main_tel\": \"(250) 851-3199\", \"fax_tel\": \"(250) 851-3199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Johnson's Ground Water Services"}}, {"model": "reversion.version", "pk": 70, "fields": {"revision": 70, "object_id": "137eafe9-165b-489f-9600-c52a123938d0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"137eafe9-165b-489f-9600-c52a123938d0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"426518 BC Ltd.\", \"street_address\": \"Box 355\", \"city\": \"Agassiz\", \"province_state\": \"BC\", \"postal_code\": \"V0M 1A0\", \"main_tel\": \"(604) 796-2988\", \"fax_tel\": \"(604) 796-8870\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "426518 BC Ltd."}}, {"model": "reversion.version", "pk": 71, "fields": {"revision": 71, "object_id": "13c86a6b-6f8c-459f-9f7e-dc8c15047f39", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"13c86a6b-6f8c-459f-9f7e-dc8c15047f39\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Conetec Investigations Ltd.\", \"street_address\": \"12140 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1J8\", \"main_tel\": \"(604) 273-4311\", \"fax_tel\": \"(604) 273-4066\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Conetec Investigations Ltd."}}, {"model": "reversion.version", "pk": 72, "fields": {"revision": 72, "object_id": "1590dfe4-f189-49ec-a7f9-4afa59c00b7c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1590dfe4-f189-49ec-a7f9-4afa59c00b7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"Plaza 33, RPO BOX 23037\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7K7\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2589\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 73, "fields": {"revision": 73, "object_id": "15ebd28d-ad65-41fc-a458-8fc194631297", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"15ebd28d-ad65-41fc-a458-8fc194631297\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canadian Quality Control Inc.\", \"street_address\": \"2924 Piper Rd\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2H8\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canadian Quality Control Inc."}}, {"model": "reversion.version", "pk": 74, "fields": {"revision": 74, "object_id": "1637ce27-f13c-4214-abda-ed81f4b39ac2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"Box 310\", \"city\": \"Barrie\", \"province_state\": \"ON\", \"postal_code\": \"L4M 4T5\", \"main_tel\": \"(705) 733-0111\", \"fax_tel\": \"(705) 721-0138\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 75, "fields": {"revision": 75, "object_id": "16470aa8-5fcf-4c23-b8f2-91d239d28d9f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"16470aa8-5fcf-4c23-b8f2-91d239d28d9f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Owen's Drilling Ltd.\", \"street_address\": \"Box 730, 541 Industrial Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J5\", \"main_tel\": \"(250) 427-2927\", \"fax_tel\": \"(250) 427-7419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Owen's Drilling Ltd."}}, {"model": "reversion.version", "pk": 76, "fields": {"revision": 76, "object_id": "1649006b-34f5-4370-836c-e50f6c496d72", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1649006b-34f5-4370-836c-e50f6c496d72\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 77, "fields": {"revision": 77, "object_id": "18623bcb-beea-4826-8077-d3e9ec6db131", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"18623bcb-beea-4826-8077-d3e9ec6db131\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dan-Gare Drilling Ltd.\", \"street_address\": \"Box 722\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B0\", \"main_tel\": \"(250) 546-3480\", \"fax_tel\": \"(250) 546-3603\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dan-Gare Drilling Ltd."}}, {"model": "reversion.version", "pk": 78, "fields": {"revision": 78, "object_id": "193cfa3c-b8ff-4ec2-a566-60deb10f3656", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"193cfa3c-b8ff-4ec2-a566-60deb10f3656\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"1025875 BC Ltd.\", \"street_address\": \"7172 Toba Street\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 5M7\", \"main_tel\": \"(604) 414-7390\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "1025875 BC Ltd."}}, {"model": "reversion.version", "pk": 79, "fields": {"revision": 79, "object_id": "19cba357-f8bb-41dd-aceb-67355a0a5468", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"19cba357-f8bb-41dd-aceb-67355a0a5468\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"K.C. Plumbing & Heathing Ltd\", \"street_address\": \"628 Birch St.\", \"city\": \"Campbell River\", \"province_state\": \"BC\", \"postal_code\": \"V9W 2t1\", \"main_tel\": \"(250) 287-7088\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "K.C. Plumbing & Heathing Ltd"}}, {"model": "reversion.version", "pk": 80, "fields": {"revision": 80, "object_id": "1a338628-7455-408d-b625-451c8f93a210", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1a338628-7455-408d-b625-451c8f93a210\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 81, "fields": {"revision": 81, "object_id": "1b9ede02-8bdd-425a-b4b2-b0da85a1f149", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Double D Drilling Ltd.\", \"street_address\": \"Box 766; 5275 Arthur Road\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4R1\", \"main_tel\": \"(250) 635-7877\", \"fax_tel\": \"(250) 635-7899\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Double D Drilling Ltd."}}, {"model": "reversion.version", "pk": 82, "fields": {"revision": 82, "object_id": "1bf5cf33-840e-4192-a79a-ad9a9a048ec0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1bf5cf33-840e-4192-a79a-ad9a9a048ec0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"Unit 150, 4611 Viking Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V2V 2K9\", \"main_tel\": \"(604) 273-5776\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 83, "fields": {"revision": 83, "object_id": "1c83cd6c-b95b-4f6c-9e66-bb55c0cb77a2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1c83cd6c-b95b-4f6c-9e66-bb55c0cb77a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Terra-Therma Drilling Ltd.\", \"street_address\": \"24950 100 Avenue\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1S3\", \"main_tel\": \"(604) 616-7241\", \"fax_tel\": \"(604) 406-1930\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Terra-Therma Drilling Ltd."}}, {"model": "reversion.version", "pk": 84, "fields": {"revision": 84, "object_id": "1fdcbd48-6955-4bf9-a334-40cffc5f961f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1fdcbd48-6955-4bf9-a334-40cffc5f961f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 85, "fields": {"revision": 85, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 86, "fields": {"revision": 86, "object_id": "2058aa3b-d7e6-40c3-8ed5-22917f859fd1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2058aa3b-d7e6-40c3-8ed5-22917f859fd1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"948 Laurier Avenue\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1Y 6B1\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2519\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 87, "fields": {"revision": 87, "object_id": "21355185-bbac-4ddc-9806-4e69de154c61", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21355185-bbac-4ddc-9806-4e69de154c61\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Summer Rain Water Delivery\", \"street_address\": \"3153 Whalley Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X7\", \"main_tel\": \"(250) 247-9136\", \"fax_tel\": \"(250) 247-0061\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Summer Rain Water Delivery"}}, {"model": "reversion.version", "pk": 88, "fields": {"revision": 88, "object_id": "21c9b72c-b698-4e11-8626-2ef0aba9e4d4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21c9b72c-b698-4e11-8626-2ef0aba9e4d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alco Drilling Services Ltd.\", \"street_address\": \"20118 52 Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 6R7\", \"main_tel\": \"(604) 534-9484\", \"fax_tel\": \"(604) 534-4968\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alco Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 89, "fields": {"revision": 89, "object_id": "21d8cf93-6032-477a-b42b-f4d95505582f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21d8cf93-6032-477a-b42b-f4d95505582f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 90, "fields": {"revision": 90, "object_id": "21e98e02-9c45-4afc-89a1-906a777e60bc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21e98e02-9c45-4afc-89a1-906a777e60bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dale's Plumbing & Heating\", \"street_address\": \"PO Box 3392 Stn Main\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5N5\", \"main_tel\": \"(250) 703-3798\", \"fax_tel\": \"(250) 334-4167\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dale's Plumbing & Heating"}}, {"model": "reversion.version", "pk": 91, "fields": {"revision": 91, "object_id": "22085e8b-8ba6-40d5-a7dc-95d1801509c5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"22085e8b-8ba6-40d5-a7dc-95d1801509c5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wisharts Water Well Drilling\", \"street_address\": \"General Delivery\", \"city\": \"Hornby Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1Z0\", \"main_tel\": \"(250) 465-5848\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wisharts Water Well Drilling"}}, {"model": "reversion.version", "pk": 92, "fields": {"revision": 92, "object_id": "233fba5d-883c-4c3d-b0ae-dac1d8553c0e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"233fba5d-883c-4c3d-b0ae-dac1d8553c0e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thompson Drilling\", \"street_address\": \"15 - 4775 Woodlane\", \"city\": \"W. Windermere\", \"province_state\": \"BC\", \"postal_code\": \"V0B 2L2\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thompson Drilling"}}, {"model": "reversion.version", "pk": 93, "fields": {"revision": 93, "object_id": "234328ee-cbdd-429c-80ee-e8c1aa03bcbd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"234328ee-cbdd-429c-80ee-e8c1aa03bcbd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Arrowsmith Water Management\", \"street_address\": \"Box 96\", \"city\": \"Errington\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1V0\", \"main_tel\": \"(250) 954-2005\", \"fax_tel\": \"(250) 954-2005\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Arrowsmith Water Management"}}, {"model": "reversion.version", "pk": 94, "fields": {"revision": 94, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 95, "fields": {"revision": 95, "object_id": "23debd72-265a-4173-a92b-28add7eb508d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23debd72-265a-4173-a92b-28add7eb508d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GDM Groundwater Inc.\", \"street_address\": \"4426 Grizzly Hill Road\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B4\", \"main_tel\": \"(250) 558-6812\", \"fax_tel\": \"(250) 546-0910\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GDM Groundwater Inc."}}, {"model": "reversion.version", "pk": 96, "fields": {"revision": 96, "object_id": "25efd251-bcf7-42df-8fbf-d31d9b18a667", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"25efd251-bcf7-42df-8fbf-d31d9b18a667\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 97, "fields": {"revision": 97, "object_id": "270fc931-79ee-4af4-9015-e30561ba5a85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"270fc931-79ee-4af4-9015-e30561ba5a85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quesnel Water Wells Ltd.\", \"street_address\": \"255 Kerouac Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 7A2\", \"main_tel\": \"(250) 747-1116\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quesnel Water Wells Ltd."}}, {"model": "reversion.version", "pk": 98, "fields": {"revision": 98, "object_id": "27aaca86-02d0-4955-b46c-d689371215a7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"27aaca86-02d0-4955-b46c-d689371215a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 99, "fields": {"revision": 99, "object_id": "27c92ab2-481d-47c6-8f2f-f426c8d867cb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"27c92ab2-481d-47c6-8f2f-f426c8d867cb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 100, "fields": {"revision": 100, "object_id": "27e0af90-be59-479b-be65-a5df55544bad", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"27e0af90-be59-479b-be65-a5df55544bad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Well Drilling Ltd.\", \"street_address\": \"3331 Alberni Highway\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y5\", \"main_tel\": \"(250) 752-9358\", \"fax_tel\": \"(250) 752-1274\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 101, "fields": {"revision": 101, "object_id": "27ec4fbd-5b06-46b0-b116-03c0584ca5eb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"27ec4fbd-5b06-46b0-b116-03c0584ca5eb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 102, "fields": {"revision": 102, "object_id": "28856eaa-91fe-41a9-a412-d312ee1687cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"28856eaa-91fe-41a9-a412-d312ee1687cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Heat Smart Geothermal Ltd.\", \"street_address\": \"3481 Playle Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 7B9\", \"main_tel\": \"(250) 426-3312\", \"fax_tel\": \"(250) 426-3307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Heat Smart Geothermal Ltd."}}, {"model": "reversion.version", "pk": 103, "fields": {"revision": 103, "object_id": "2895601b-1610-44ee-8af8-b082d498a3ee", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2895601b-1610-44ee-8af8-b082d498a3ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 104, "fields": {"revision": 104, "object_id": "28f79732-7f8f-48d9-8c7d-24330cc73ebf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"28f79732-7f8f-48d9-8c7d-24330cc73ebf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mayfair Gas & Plumbing\", \"street_address\": \"505 4th Avenue\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3H2\", \"main_tel\": \"(250) 562-8590\", \"fax_tel\": \"(250) 617-1419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mayfair Gas & Plumbing"}}, {"model": "reversion.version", "pk": 105, "fields": {"revision": 105, "object_id": "292e0ad9-b2d2-4c9b-aba9-e194f00361f1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"292e0ad9-b2d2-4c9b-aba9-e194f00361f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mayfair Gas, Plumbing and Electrical\", \"street_address\": \"505 4th Avenue\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3H2\", \"main_tel\": \"(250) 562-8590\", \"fax_tel\": \"(250) 614-1419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mayfair Gas, Plumbing and Electrical"}}, {"model": "reversion.version", "pk": 106, "fields": {"revision": 106, "object_id": "2957b1c0-3093-42e3-8a7e-09e81672cedc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2957b1c0-3093-42e3-8a7e-09e81672cedc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"Box 310\", \"city\": \"Barrie\", \"province_state\": \"ON\", \"postal_code\": \"L4M 4T5\", \"main_tel\": \"(705) 733-0111\", \"fax_tel\": \"(705) 721-0138\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 107, "fields": {"revision": 107, "object_id": "2a61e133-61e6-4759-8c63-82a66c4fb9d7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Well Drilling (2000) Ltd.\", \"street_address\": \"4960 Topland Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5Y2\", \"main_tel\": \"(250) 338-5113\", \"fax_tel\": \"(250) 338-5199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Well Drilling (2000) Ltd."}}, {"model": "reversion.version", "pk": 108, "fields": {"revision": 108, "object_id": "2bdd99b8-ee59-46bb-bd91-7e433fc6aad7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2bdd99b8-ee59-46bb-bd91-7e433fc6aad7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cullen Water Systems Inc.\", \"street_address\": \"349 Benjamin Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 6L9\", \"main_tel\": \"(250) 744-3451\", \"fax_tel\": \"(250) 479-3886\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cullen Water Systems Inc."}}, {"model": "reversion.version", "pk": 109, "fields": {"revision": 109, "object_id": "2e5077d7-02ba-47b5-a4f6-92898abc8dc1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2e5077d7-02ba-47b5-a4f6-92898abc8dc1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 110, "fields": {"revision": 110, "object_id": "2e524a25-bcfa-401b-a3db-86294408fec7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2e524a25-bcfa-401b-a3db-86294408fec7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6080\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 111, "fields": {"revision": 111, "object_id": "2ecf249d-f4c3-4a2e-aa19-5a89cd2f10df", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2ecf249d-f4c3-4a2e-aa19-5a89cd2f10df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 112, "fields": {"revision": 112, "object_id": "2fa34b8c-1266-4287-98b2-503ca9c6f3da", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2fa34b8c-1266-4287-98b2-503ca9c6f3da\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"P & P Plumbing Ltd.\", \"street_address\": \"1710 Woodbank Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9X 1M8\", \"main_tel\": \"(250) 722-2312\", \"fax_tel\": \"(250) 722-2312\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "P & P Plumbing Ltd."}}, {"model": "reversion.version", "pk": 113, "fields": {"revision": 113, "object_id": "32cac478-4f76-43f7-a690-d9af6407b88e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"32cac478-4f76-43f7-a690-d9af6407b88e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 114, "fields": {"revision": 114, "object_id": "330ae69d-e9f2-4f03-9058-96ce7df27200", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"330ae69d-e9f2-4f03-9058-96ce7df27200\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wild West Drilling\", \"street_address\": \"9782 55A Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 3X2\", \"main_tel\": \"(604) 760-1903\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wild West Drilling"}}, {"model": "reversion.version", "pk": 115, "fields": {"revision": 115, "object_id": "337332e9-d832-4384-be7f-a06b87edee06", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Delta Irrigation Ltd.\", \"street_address\": \"444 Chilcotin Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1G3\", \"main_tel\": \"(250) 372-9424\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Delta Irrigation Ltd."}}, {"model": "reversion.version", "pk": 116, "fields": {"revision": 116, "object_id": "33b46656-115e-46ce-a575-02483f71a384", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"33b46656-115e-46ce-a575-02483f71a384\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 117, "fields": {"revision": 117, "object_id": "33eeaa11-6f8a-4712-b0f7-f939d0dfd22d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"33eeaa11-6f8a-4712-b0f7-f939d0dfd22d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Enterprises Ltd.\", \"street_address\": \"PO Box 64 Squirrel Cove\", \"city\": \"Cortes Island\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1T0\", \"main_tel\": \"(250) 287-0278\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Enterprises Ltd."}}, {"model": "reversion.version", "pk": 118, "fields": {"revision": 118, "object_id": "34428b19-a11b-4ebe-b7d7-369b5f815eda", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"34428b19-a11b-4ebe-b7d7-369b5f815eda\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 962-9041\", \"fax_tel\": \"(250) 962-9046\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 119, "fields": {"revision": 119, "object_id": "35b2e466-eb94-4534-8020-5a8ca207b534", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"35b2e466-eb94-4534-8020-5a8ca207b534\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Frontier Pumps & Installations Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Frontier Pumps & Installations Ltd."}}, {"model": "reversion.version", "pk": 120, "fields": {"revision": 120, "object_id": "35f028f2-dc3f-48b6-a3f9-d0c6804eab11", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"35f028f2-dc3f-48b6-a3f9-d0c6804eab11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Osborne Electro Mechanics Ltd\", \"street_address\": \"#107-2740 Bridge Street\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8T 5C5\", \"main_tel\": \"(250) 386-3381\", \"fax_tel\": \"(250) 386-3382\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Osborne Electro Mechanics Ltd"}}, {"model": "reversion.version", "pk": 121, "fields": {"revision": 121, "object_id": "36aba397-45c6-40ac-b0af-2beaee744408", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"36aba397-45c6-40ac-b0af-2beaee744408\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tundra Environmental & Geotechnical Drilling Ltd.\", \"street_address\": \"Box 207\", \"city\": \"Stettler\", \"province_state\": \"AB\", \"postal_code\": \"T0C 2L0\", \"main_tel\": \"(403) 742-6601\", \"fax_tel\": \"(403) 742-6651\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tundra Environmental & Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 122, "fields": {"revision": 122, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 123, "fields": {"revision": 123, "object_id": "3728ef5c-2c92-4066-ad29-c3a0370aaa78", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3728ef5c-2c92-4066-ad29-c3a0370aaa78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Great Western Pump\", \"street_address\": \"5834 Main St.\", \"city\": \"Oliver\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1T9\", \"main_tel\": \"(250) 498-8484\", \"fax_tel\": \"(250) 498-4686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Great Western Pump"}}, {"model": "reversion.version", "pk": 124, "fields": {"revision": 124, "object_id": "378f8dba-2de5-4463-bc8f-e49aea28bf49", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"378f8dba-2de5-4463-bc8f-e49aea28bf49\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Albert Kaye & Sons Drilling Ltd.\", \"street_address\": \"200 Musgrave Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V5\", \"main_tel\": \"(250) 653-4757\", \"fax_tel\": \"(250) 653-4778\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Albert Kaye & Sons Drilling Ltd."}}, {"model": "reversion.version", "pk": 125, "fields": {"revision": 125, "object_id": "37ae4728-dfdb-4c2f-aec4-293fab5da8cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"37ae4728-dfdb-4c2f-aec4-293fab5da8cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(205) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 126, "fields": {"revision": 126, "object_id": "38da4cc9-638f-470b-a68f-23c52481ad99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"38da4cc9-638f-470b-a68f-23c52481ad99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Falkland Water Drilling\", \"street_address\": \"4165 Colebank Road\", \"city\": \"Falkland\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1W0\", \"main_tel\": \"(250) 379-2606\", \"fax_tel\": \"(250) 379-2606\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Falkland Water Drilling"}}, {"model": "reversion.version", "pk": 127, "fields": {"revision": 127, "object_id": "39143911-e46a-4527-9251-b1055efca181", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"39143911-e46a-4527-9251-b1055efca181\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 128, "fields": {"revision": 128, "object_id": "395a446e-3776-4256-907e-73b1439575bf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"395a446e-3776-4256-907e-73b1439575bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stuart McDonald\", \"street_address\": \"4331 Mount Lehman Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V4X 1Y1\", \"main_tel\": \"(604) 857-1472\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stuart McDonald"}}, {"model": "reversion.version", "pk": 129, "fields": {"revision": 129, "object_id": "39a61f4f-e6e8-4ee8-a24f-8523a3a864d6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"39a61f4f-e6e8-4ee8-a24f-8523a3a864d6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 130, "fields": {"revision": 130, "object_id": "3a7f0c17-e81f-40ca-a382-91f75b7305fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3a7f0c17-e81f-40ca-a382-91f75b7305fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua-Tech Pump Service\", \"street_address\": \"663 East Fern Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1M4\", \"main_tel\": \"(250) 752-0346\", \"fax_tel\": \"(250) 752-0346\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua-Tech Pump Service"}}, {"model": "reversion.version", "pk": 131, "fields": {"revision": 131, "object_id": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Utilities\", \"street_address\": \"3175 Turner Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7T9\", \"main_tel\": \"(604) 850-0441\", \"fax_tel\": \"(604) 768-9269\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Utilities"}}, {"model": "reversion.version", "pk": 132, "fields": {"revision": 132, "object_id": "3cd0dcc2-3b20-4f00-9f77-344e66b371c2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3cd0dcc2-3b20-4f00-9f77-344e66b371c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 133, "fields": {"revision": 133, "object_id": "3ce0ca6a-a057-4dec-ba92-cf864dbb3867", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ce0ca6a-a057-4dec-ba92-cf864dbb3867\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Groundforce Drilling Solutions Inc.\", \"street_address\": \"650, 910 7th Avenue SW\", \"city\": \"Calgary\", \"province_state\": \"AB\", \"postal_code\": \"T2P 3N8\", \"main_tel\": \"(403) 387-8020\", \"fax_tel\": \"(403) 514-8050\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Groundforce Drilling Solutions Inc."}}, {"model": "reversion.version", "pk": 134, "fields": {"revision": 134, "object_id": "3d1a32a1-aa71-4c28-91ea-6e75c64d4261", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3d1a32a1-aa71-4c28-91ea-6e75c64d4261\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quesnel Pump Supply & Service\", \"street_address\": \"1157 Jade Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 4E2\", \"main_tel\": \"(250) 747-3338\", \"fax_tel\": \"(250) 747-3094\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quesnel Pump Supply & Service"}}, {"model": "reversion.version", "pk": 135, "fields": {"revision": 135, "object_id": "3d29cc29-7c5e-46e3-88f8-a36a46039394", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3d29cc29-7c5e-46e3-88f8-a36a46039394\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ketek Group Inc.\", \"street_address\": \"20204 - 110 Ave NW\", \"city\": \"Edmonton \", \"province_state\": \"AB\", \"postal_code\": \"T5S 1X8\", \"main_tel\": \"(780) 447-5050\", \"fax_tel\": \"(780) 447-4912\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ketek Group Inc."}}, {"model": "reversion.version", "pk": 136, "fields": {"revision": 136, "object_id": "3e633335-9441-4da9-a386-fa641773fdca", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3e633335-9441-4da9-a386-fa641773fdca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A Tech Pumps\", \"street_address\": \"10535 Christa Place\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5E6\", \"main_tel\": \"(250) 963-8788\", \"fax_tel\": \"(250) 963-8799\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A Tech Pumps"}}, {"model": "reversion.version", "pk": 137, "fields": {"revision": 137, "object_id": "3ec3c865-2d86-426c-930e-21bf7d298216", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ec3c865-2d86-426c-930e-21bf7d298216\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"The Pump House\", \"street_address\": \"#5-241 Puntledge Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 3P9\", \"main_tel\": \"(250) 338-8737\", \"fax_tel\": \"(250) 338-7933\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "The Pump House"}}, {"model": "reversion.version", "pk": 138, "fields": {"revision": 138, "object_id": "3ece6234-92f7-4df7-bed1-7fa4ae1d2476", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ece6234-92f7-4df7-bed1-7fa4ae1d2476\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"North Central Plumbing & Heating Ltd.\", \"street_address\": \"Box 665\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-3060\", \"fax_tel\": \"(250) 847-5255\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "North Central Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 139, "fields": {"revision": 139, "object_id": "3edf07d3-838d-45d0-af9a-51b465295a7c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3edf07d3-838d-45d0-af9a-51b465295a7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kel Drilling\", \"street_address\": \"Box 25\", \"city\": \"Monte Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2M0\", \"main_tel\": \"(250) 372-1606\", \"fax_tel\": \"(250) 573-5996\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kel Drilling"}}, {"model": "reversion.version", "pk": 140, "fields": {"revision": 140, "object_id": "3f27c808-d02b-4c16-b615-8a0f5b78897b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3f27c808-d02b-4c16-b615-8a0f5b78897b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"317 - 103rd Street\", \"city\": \"Saskatoon\", \"province_state\": \"SK\", \"postal_code\": \"S7N 1Y9\", \"main_tel\": \"(306) 373-7070\", \"fax_tel\": \"(306) 373-1922\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 141, "fields": {"revision": 141, "object_id": "3f2d2972-d874-449a-8ddb-0a924c03b88a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3f2d2972-d874-449a-8ddb-0a924c03b88a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mainline Systems Inc.\", \"street_address\": \"9891 Menzies Street\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6A5\", \"main_tel\": \"(604) 793-6071\", \"fax_tel\": \"(604) 792-9299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mainline Systems Inc."}}, {"model": "reversion.version", "pk": 142, "fields": {"revision": 142, "object_id": "3f713577-6468-4ef8-b1a7-5aee6f0a2e61", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3f713577-6468-4ef8-b1a7-5aee6f0a2e61\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 143, "fields": {"revision": 143, "object_id": "3feac20a-e7ea-42f8-80f7-250fce61dc13", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3feac20a-e7ea-42f8-80f7-250fce61dc13\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 144, "fields": {"revision": 144, "object_id": "3ff83bca-12ba-40c1-9c00-e06a43961ca8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ff83bca-12ba-40c1-9c00-e06a43961ca8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Michener Plumbing & Pumps\", \"street_address\": \"736 Isabella Point Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V2\", \"main_tel\": \"(250) 653-4120\", \"fax_tel\": \"(250) 653-4120\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Michener Plumbing & Pumps"}}, {"model": "reversion.version", "pk": 145, "fields": {"revision": 145, "object_id": "40238aff-f887-4e4d-96d2-d08a6386a6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"40238aff-f887-4e4d-96d2-d08a6386a6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corley Drilling Ltd.\", \"street_address\": \"7286 Black Road\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2W5\", \"main_tel\": \"(250) 804-2632\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corley Drilling Ltd."}}, {"model": "reversion.version", "pk": 146, "fields": {"revision": 146, "object_id": "421aaac5-8de3-495c-90c7-7ee009fc73ed", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"421aaac5-8de3-495c-90c7-7ee009fc73ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Muth & Sons Ltd.\", \"street_address\": \"23985 Lougheed Highway\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1W1\", \"main_tel\": \"(604) 467-5571\", \"fax_tel\": \"(604) 467-5152\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Muth & Sons Ltd."}}, {"model": "reversion.version", "pk": 147, "fields": {"revision": 147, "object_id": "425b0658-bd67-4ffe-9ac7-ee5515cb649f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"425b0658-bd67-4ffe-9ac7-ee5515cb649f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"PSI Pump Systems Inc.\", \"street_address\": \"1843 Lynrick Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1P 1G1\", \"main_tel\": \"(250) 467-9186\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "PSI Pump Systems Inc."}}, {"model": "reversion.version", "pk": 148, "fields": {"revision": 148, "object_id": "4287eb48-5a40-4ce1-a139-dab36bdbef27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Well Drilling Ltd.\", \"street_address\": \"3331 Alberni Highway\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y5\", \"main_tel\": \"(250) 752-9358\", \"fax_tel\": \"(250) 752-1274\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 149, "fields": {"revision": 149, "object_id": "42cefcb0-48d7-4708-8e5e-11ced93365af", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"42cefcb0-48d7-4708-8e5e-11ced93365af\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 150, "fields": {"revision": 150, "object_id": "4316689f-411d-4b0a-be83-79b28b77ac0c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4316689f-411d-4b0a-be83-79b28b77ac0c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Paycore Enterprises Ltd.\", \"street_address\": \"PO Box 743\", \"city\": \"McBride\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2E0\", \"main_tel\": \"(250) 968-4452\", \"fax_tel\": \"(250) 968-4451\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Paycore Enterprises Ltd."}}, {"model": "reversion.version", "pk": 151, "fields": {"revision": 151, "object_id": "4488c2f4-d4f5-4d2e-8fec-21ee516b0998", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4488c2f4-d4f5-4d2e-8fec-21ee516b0998\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Grassroots Drilling Inc.\", \"street_address\": \"Po Box 2498\", \"city\": \"Cowichan Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1N0\", \"main_tel\": \"(250) 412-9683\", \"fax_tel\": \"(250) 389-1554\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Grassroots Drilling Inc."}}, {"model": "reversion.version", "pk": 152, "fields": {"revision": 152, "object_id": "44ca2c30-820c-4944-8345-7ccce1f3793c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"44ca2c30-820c-4944-8345-7ccce1f3793c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services Ltd.\", \"street_address\": \"3334 Sexsmith Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7S5\", \"main_tel\": \"(250) 860-6664\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services Ltd."}}, {"model": "reversion.version", "pk": 153, "fields": {"revision": 153, "object_id": "44f82d85-b3ce-4281-99ac-24fda6e391af", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"44f82d85-b3ce-4281-99ac-24fda6e391af\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"25188 - 52nd. Avenue\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 154, "fields": {"revision": 154, "object_id": "45194aed-b288-4725-87c5-33e87e41f153", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"45194aed-b288-4725-87c5-33e87e41f153\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thorman Drilling Ltd.\", \"street_address\": \"Box 986, 111 Cottonwood Road\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 6A5\", \"main_tel\": \"(250) 354-1333\", \"fax_tel\": \"(250) 354-1331\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thorman Drilling Ltd."}}, {"model": "reversion.version", "pk": 155, "fields": {"revision": 155, "object_id": "45618e5c-e5ad-4226-89c3-6d4aa5174f99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"45618e5c-e5ad-4226-89c3-6d4aa5174f99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 156, "fields": {"revision": 156, "object_id": "456498be-243b-48f7-8845-103b8d9a82a8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"456498be-243b-48f7-8845-103b8d9a82a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud's Water Wells Ltd.\", \"street_address\": \"Box 3276\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-3000\", \"fax_tel\": \"(250) 679-8423\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud's Water Wells Ltd."}}, {"model": "reversion.version", "pk": 157, "fields": {"revision": 157, "object_id": "457446e7-91da-4eaa-a427-955d1a6c773a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"457446e7-91da-4eaa-a427-955d1a6c773a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Nor-West Drilling (1998) Ltd.\", \"street_address\": \"4501-232 Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2S2\", \"main_tel\": \"(604) 534-4108\", \"fax_tel\": \"(604) 534-3389\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Nor-West Drilling (1998) Ltd."}}, {"model": "reversion.version", "pk": 158, "fields": {"revision": 158, "object_id": "45f64219-674a-42ce-92f8-e2ef29531434", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"45f64219-674a-42ce-92f8-e2ef29531434\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Barriere Backhoe Service\", \"street_address\": \"Box 82\", \"city\": \"Barriere\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1E0\", \"main_tel\": \"(250) 672-9451\", \"fax_tel\": \"(250) 672-9501\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Barriere Backhoe Service"}}, {"model": "reversion.version", "pk": 159, "fields": {"revision": 159, "object_id": "46ddbe83-10f3-478f-8c7b-db4b2864e6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 160, "fields": {"revision": 160, "object_id": "47284780-bd4b-4b12-ae47-b148d1e27574", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"47284780-bd4b-4b12-ae47-b148d1e27574\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"B.C. Aquifer Testing & Equipment\", \"street_address\": \"886 Denford Crescent\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8X 4N1\", \"main_tel\": \"(250) 748-4041\", \"fax_tel\": \"(250) 748-5775\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "B.C. Aquifer Testing & Equipment"}}, {"model": "reversion.version", "pk": 161, "fields": {"revision": 161, "object_id": "48b95e5f-dc39-4b82-bbfd-225b22eb3140", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"48b95e5f-dc39-4b82-bbfd-225b22eb3140\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9054\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 162, "fields": {"revision": 162, "object_id": "4962dc3b-9fd1-4127-ad65-4324f00ff876", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4962dc3b-9fd1-4127-ad65-4324f00ff876\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.C. Plumbing & Heating Ltd.\", \"street_address\": \"2960 McDonald Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X7\", \"main_tel\": \"(250) 247-7574\", \"fax_tel\": \"(250) 247-7574\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.C. Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 163, "fields": {"revision": 163, "object_id": "4ada55ef-fd76-4ef1-ab2b-f5c66a9d8387", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4ada55ef-fd76-4ef1-ab2b-f5c66a9d8387\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Weston Water Wells Ltd.\", \"street_address\": \"7779 Highway 24\", \"city\": \"Lone Butte\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1X2\", \"main_tel\": \"(250) 593-4307\", \"fax_tel\": \"(250) 593-4307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Weston Water Wells Ltd."}}, {"model": "reversion.version", "pk": 164, "fields": {"revision": 164, "object_id": "4aefc2c3-f875-42d1-b873-4b8ccb0b825f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4aefc2c3-f875-42d1-b873-4b8ccb0b825f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"John Reed Plumbing\", \"street_address\": \"1844 Geraldine Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9J 1Y3\", \"main_tel\": \"(250) 339-6098\", \"fax_tel\": \"(250) 339-4667\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "John Reed Plumbing"}}, {"model": "reversion.version", "pk": 165, "fields": {"revision": 165, "object_id": "4b66126c-3070-47dd-bfb5-e9543a1481d6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4b66126c-3070-47dd-bfb5-e9543a1481d6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kodiak Drilling Ltd.\", \"street_address\": \"402 Elm Street\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3W9\", \"main_tel\": \"(250) 747-4648\", \"fax_tel\": \"(250) 747-3337\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kodiak Drilling Ltd."}}, {"model": "reversion.version", "pk": 166, "fields": {"revision": 166, "object_id": "4c98c66f-a5b0-488d-bc7c-d1cedb2df5be", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4c98c66f-a5b0-488d-bc7c-d1cedb2df5be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dynamic Drilling Inc.\", \"street_address\": \"E2 - 225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 298-5943\", \"fax_tel\": \"(604) 936-7377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dynamic Drilling Inc."}}, {"model": "reversion.version", "pk": 167, "fields": {"revision": 167, "object_id": "4dee2bb3-f44d-4dfa-ae6f-0c0dd48089c7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4dee2bb3-f44d-4dfa-ae6f-0c0dd48089c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 168, "fields": {"revision": 168, "object_id": "4ed337ef-bb48-4033-8729-d498fdc88773", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4ed337ef-bb48-4033-8729-d498fdc88773\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"BWCO\", \"street_address\": \"RR#1, Site 3, Comp 29\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-5844\", \"fax_tel\": \"(250) 539-5843\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "BWCO"}}, {"model": "reversion.version", "pk": 169, "fields": {"revision": 169, "object_id": "4ed57b23-0b53-4353-8cf7-d08a17b65b50", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4ed57b23-0b53-4353-8cf7-d08a17b65b50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Klimabuild Design & Construction Ltd.\", \"street_address\": \"1605 Johnstone Creek West Road\", \"city\": \"Rock Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1Y0\", \"main_tel\": \"(250) 446-2805\", \"fax_tel\": \"(250) 446-2805\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Klimabuild Design & Construction Ltd."}}, {"model": "reversion.version", "pk": 170, "fields": {"revision": 170, "object_id": "501882cf-200b-49c6-a503-279d771abb30", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"501882cf-200b-49c6-a503-279d771abb30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"South Island Water Services\", \"street_address\": \"Box 299\", \"city\": \"Shawnigan Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2W0\", \"main_tel\": \"(250) 743-7931\", \"fax_tel\": \"(250) 743-7932\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "South Island Water Services"}}, {"model": "reversion.version", "pk": 171, "fields": {"revision": 171, "object_id": "510465f3-0e35-499d-9b57-6e60d4066a7d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"510465f3-0e35-499d-9b57-6e60d4066a7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"RGB Plumbing Specialties\", \"street_address\": \"418 Gillis Avenue\", \"city\": \"Sicamous\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2V1\", \"main_tel\": \"(250) 517-8311\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "RGB Plumbing Specialties"}}, {"model": "reversion.version", "pk": 172, "fields": {"revision": 172, "object_id": "51c9816b-a0d8-452c-aa51-728f20765ee3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"51c9816b-a0d8-452c-aa51-728f20765ee3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"RL7 Mechanical Ltd.\", \"street_address\": \"1065 Murray Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 4K8\", \"main_tel\": \"(250) 392-1742\", \"fax_tel\": \"(250) 392-6335\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "RL7 Mechanical Ltd."}}, {"model": "reversion.version", "pk": 173, "fields": {"revision": 173, "object_id": "5298ce6e-ae42-46ce-8ba1-3d2f39e828b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5298ce6e-ae42-46ce-8ba1-3d2f39e828b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"EDS Pumps & Water Treatment Ltd.\", \"street_address\": \"23184 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 534-1115\", \"fax_tel\": \"(604) 534-5522\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "EDS Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 174, "fields": {"revision": 174, "object_id": "52f87741-da1e-4fdf-9870-8153e30364c7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"52f87741-da1e-4fdf-9870-8153e30364c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"IH&S Water Management Systems\", \"street_address\": \"413 Richards Street\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 5J9\", \"main_tel\": \"(250) 352-9668\", \"fax_tel\": \"(250) 352-5060\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "IH&S Water Management Systems"}}, {"model": "reversion.version", "pk": 175, "fields": {"revision": 175, "object_id": "5320ff29-defd-41bb-bbc2-e7ba5bdb04c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5320ff29-defd-41bb-bbc2-e7ba5bdb04c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schnieder Services Ltd.\", \"street_address\": \"Box 2033\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A0\", \"main_tel\": \"(250) 567-3010\", \"fax_tel\": \"(250) 567-2595\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schnieder Services Ltd."}}, {"model": "reversion.version", "pk": 176, "fields": {"revision": 176, "object_id": "53586668-d586-44d2-8ea1-82ea79b4a596", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Highlands Irrigation Ltd.\", \"street_address\": \"1105 South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A7\", \"main_tel\": \"(250) 392-2321\", \"fax_tel\": \"(250) 392-2377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Highlands Irrigation Ltd."}}, {"model": "reversion.version", "pk": 177, "fields": {"revision": 177, "object_id": "537734d8-624a-4424-9adf-2ba271f71e6e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"537734d8-624a-4424-9adf-2ba271f71e6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J's Pumps & Plumbing\", \"street_address\": \"4050 - 50th Street NW\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 3A7\", \"main_tel\": \"(250) 832-7922\", \"fax_tel\": \"(250) 832-7699\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J's Pumps & Plumbing"}}, {"model": "reversion.version", "pk": 178, "fields": {"revision": 178, "object_id": "53cf846f-8c62-4804-9dd7-200e5aa9c2a2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53cf846f-8c62-4804-9dd7-200e5aa9c2a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Boart Longyear\", \"street_address\": \"4025 96 Avenue SE\", \"city\": \"Calgary\", \"province_state\": \"AB\", \"postal_code\": \"T2C 4T7\", \"main_tel\": \"(403) 287 1460\", \"fax_tel\": \"(403) 243 0580\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Boart Longyear"}}, {"model": "reversion.version", "pk": 179, "fields": {"revision": 179, "object_id": "5447581c-6679-48f1-ade6-06b52a816e16", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5447581c-6679-48f1-ade6-06b52a816e16\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dan-Gare Drilling Ltd.\", \"street_address\": \"Box 722\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B0\", \"main_tel\": \"(250) 546-3480\", \"fax_tel\": \"(250) 546-3603\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dan-Gare Drilling Ltd."}}, {"model": "reversion.version", "pk": 180, "fields": {"revision": 180, "object_id": "554e3de3-fbaa-4559-a848-7ef3c2ad4cbd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"554e3de3-fbaa-4559-a848-7ef3c2ad4cbd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd"}}, {"model": "reversion.version", "pk": 181, "fields": {"revision": 181, "object_id": "5583c240-5617-44da-92fd-aba90efbc81b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5583c240-5617-44da-92fd-aba90efbc81b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"G.R. Martin Contracting Ltd.\", \"street_address\": \"629 Lafortune Road\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L0\", \"main_tel\": \"(250) 709-1872\", \"fax_tel\": \"(250) 743-9065\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "G.R. Martin Contracting Ltd."}}, {"model": "reversion.version", "pk": 182, "fields": {"revision": 182, "object_id": "55efd1c4-515e-4cc1-ae24-57ceaf4ae6b3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"55efd1c4-515e-4cc1-ae24-57ceaf4ae6b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Kootenay Well Drilling\", \"street_address\": \"RR#1, 6465 Sidley Mtn Road\", \"city\": \"Bridesville\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1B0\", \"main_tel\": \"(250) 446-2195\", \"fax_tel\": \"(250) 446-2194\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Kootenay Well Drilling"}}, {"model": "reversion.version", "pk": 183, "fields": {"revision": 183, "object_id": "576a9ca8-3a12-47c1-b800-1e4947bd626a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"576a9ca8-3a12-47c1-b800-1e4947bd626a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Polaris Plumbing\", \"street_address\": \"Box 466\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2W1\", \"main_tel\": \"(250) 537-4997\", \"fax_tel\": \"(250) 537-4956\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Polaris Plumbing"}}, {"model": "reversion.version", "pk": 184, "fields": {"revision": 184, "object_id": "57847399-9f52-4e46-a334-9438e2acd7a3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"57847399-9f52-4e46-a334-9438e2acd7a3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Conetec Investigations Ltd.\", \"street_address\": \"12140 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1J8\", \"main_tel\": \"(604) 273-4311\", \"fax_tel\": \"(604) 273-4066\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Conetec Investigations Ltd."}}, {"model": "reversion.version", "pk": 185, "fields": {"revision": 185, "object_id": "57d27055-d45c-461c-8da4-8f1fea8d0559", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"57d27055-d45c-461c-8da4-8f1fea8d0559\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 186, "fields": {"revision": 186, "object_id": "585025c5-82fd-4a36-aaf7-827c67e1ee04", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"585025c5-82fd-4a36-aaf7-827c67e1ee04\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Lillooet Contracting Ltd.\", \"street_address\": \"Box 1356\", \"city\": \"Lillooet\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1V0\", \"main_tel\": \"(250) 256-7669\", \"fax_tel\": \"(250) 256-4989\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Lillooet Contracting Ltd."}}, {"model": "reversion.version", "pk": 187, "fields": {"revision": 187, "object_id": "594f5318-fa52-4415-8d55-f2f273d46264", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"594f5318-fa52-4415-8d55-f2f273d46264\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bernard Pumps\", \"street_address\": \"6157 East Purdue Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6K1\", \"main_tel\": \"(250) 964-6111\", \"fax_tel\": \"(250) 964-6111\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bernard Pumps"}}, {"model": "reversion.version", "pk": 188, "fields": {"revision": 188, "object_id": "5a21d9cb-c3bc-4805-9764-9a204561d768", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ted's Plumbing & Heating Inc.\", \"street_address\": \"23008 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 888-9625\", \"fax_tel\": \"(604) 514-1141\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ted's Plumbing & Heating Inc."}}, {"model": "reversion.version", "pk": 189, "fields": {"revision": 189, "object_id": "5a4620ab-a82e-4e9b-bd4f-eebcde93b88a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5a4620ab-a82e-4e9b-bd4f-eebcde93b88a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Camfield Drilling Services Ltd.\", \"street_address\": \"1280 - 4th Ave. South\", \"city\": \"Lethbridge\", \"province_state\": \"AB\", \"postal_code\": \"T1J 0R2\", \"main_tel\": \"(403) 328-7059\", \"fax_tel\": \"(403) 320-5177\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Camfield Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 190, "fields": {"revision": 190, "object_id": "5af3bfa0-3ea4-4d14-a503-14d28e9eb0fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5af3bfa0-3ea4-4d14-a503-14d28e9eb0fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"9205 Chilcotin Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5V3\", \"main_tel\": \"(250) 963-9429\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 191, "fields": {"revision": 191, "object_id": "5b99df30-14c8-43a8-84ac-5208e2bb8c13", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5b99df30-14c8-43a8-84ac-5208e2bb8c13\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"General Pump & Machine Inc.\", \"street_address\": \"9658 Woodlynn Road\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 0J6\", \"main_tel\": \"(604) 487-0003\", \"fax_tel\": \"(604) 487-0009\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "General Pump & Machine Inc."}}, {"model": "reversion.version", "pk": 192, "fields": {"revision": 192, "object_id": "5bb37f7c-f8af-41d5-83bb-017c402b62bc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5bb37f7c-f8af-41d5-83bb-017c402b62bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"317 - 103rd Street E\", \"city\": \"Saskatoon\", \"province_state\": \"SK\", \"postal_code\": \"S7N 1Y9\", \"main_tel\": \"(306) 373-7070\", \"fax_tel\": \"(306) 373-1922\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 193, "fields": {"revision": 193, "object_id": "5be80833-761f-455b-87e6-ecd3513deb7c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5be80833-761f-455b-87e6-ecd3513deb7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 228-5553\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 194, "fields": {"revision": 194, "object_id": "5c3862d4-3c33-4e3f-b5de-76c4ce61dfaa", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5c3862d4-3c33-4e3f-b5de-76c4ce61dfaa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Scotty's Plumbing\", \"street_address\": \"1445 Hess Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X6\", \"main_tel\": \"(250) 247-9588\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Scotty's Plumbing"}}, {"model": "reversion.version", "pk": 195, "fields": {"revision": 195, "object_id": "5c834961-2a5e-46a7-a408-d958471b363b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5c834961-2a5e-46a7-a408-d958471b363b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schibli Drilling\", \"street_address\": \"PO Box 725 17 Blue Springs Road\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G0\", \"main_tel\": \"(250) 547-6845\", \"fax_tel\": \"(250) 547-6880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schibli Drilling"}}, {"model": "reversion.version", "pk": 196, "fields": {"revision": 196, "object_id": "5dc5a813-c8ac-4396-8826-6db1f0a73874", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5dc5a813-c8ac-4396-8826-6db1f0a73874\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Clear Blue Water Systems Ltd.\", \"street_address\": \"PO Box 148, 13076-256 Road\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3737\", \"fax_tel\": \"(250) 827-3701\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Clear Blue Water Systems Ltd."}}, {"model": "reversion.version", "pk": 197, "fields": {"revision": 197, "object_id": "5e1e8f97-07da-4064-9bd2-6b9d65adb47c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5e1e8f97-07da-4064-9bd2-6b9d65adb47c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Custom Pump Services\", \"street_address\": \"3988 Richardson Road\", \"city\": \"Tappen\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2X1\", \"main_tel\": \"(250) 833-7973\", \"fax_tel\": \"(250) 835-4856\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Custom Pump Services"}}, {"model": "reversion.version", "pk": 198, "fields": {"revision": 198, "object_id": "5e375c99-81af-4095-965b-8e40f8608451", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"B.K. Woods & Water Supplies Ltd.\", \"street_address\": \"9400 Cariboo Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E1\", \"main_tel\": \"(250) 963-1411\", \"fax_tel\": \"(250) 963-3236\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "B.K. Woods & Water Supplies Ltd."}}, {"model": "reversion.version", "pk": 199, "fields": {"revision": 199, "object_id": "5f08c5b7-f3d2-453c-9ae6-765e020495f4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f08c5b7-f3d2-453c-9ae6-765e020495f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Water Products\", \"street_address\": \"420 Chilcotin Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1G3\", \"main_tel\": \"(250) 374-7909\", \"fax_tel\": \"(250) 374-7950\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Water Products"}}, {"model": "reversion.version", "pk": 200, "fields": {"revision": 200, "object_id": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 201, "fields": {"revision": 201, "object_id": "60146864-1863-47d9-bf1a-55af7e045cf2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"60146864-1863-47d9-bf1a-55af7e045cf2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Willow Hill Enterprises\", \"street_address\": \"8355 Outlook Road\", \"city\": \"Grand Forks\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1H2\", \"main_tel\": \"(250) 442-2392\", \"fax_tel\": \"(250) 442-2392\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Willow Hill Enterprises"}}, {"model": "reversion.version", "pk": 202, "fields": {"revision": 202, "object_id": "611accf3-df0d-4a1a-a812-e9b269ce45e1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"611accf3-df0d-4a1a-a812-e9b269ce45e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Downrite Drilling Ltd.\", \"street_address\": \"4346 Wilson Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 5C6\", \"main_tel\": \"(604) 823-4086\", \"fax_tel\": \"(604) 823-4086\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Downrite Drilling Ltd."}}, {"model": "reversion.version", "pk": 203, "fields": {"revision": 203, "object_id": "62ca0263-4d05-4de3-9cf8-58232531d05f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"62ca0263-4d05-4de3-9cf8-58232531d05f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Well & Pump Service Inc.\", \"street_address\": \"3695 Sage Avenue\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B2\", \"main_tel\": \"(250) 550-5553\", \"fax_tel\": \"(250) 546-2663\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Well & Pump Service Inc."}}, {"model": "reversion.version", "pk": 204, "fields": {"revision": 204, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 205, "fields": {"revision": 205, "object_id": "632d6188-6220-49a5-b5a9-5f8bb8f22b36", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"632d6188-6220-49a5-b5a9-5f8bb8f22b36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"1-740 Waddington Drive\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1T 9E9\", \"main_tel\": \"(250) 549-2393\", \"fax_tel\": \"(250) 549-3387\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 206, "fields": {"revision": 206, "object_id": "640fff69-4895-45cb-8b63-0d2a6b798f71", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"640fff69-4895-45cb-8b63-0d2a6b798f71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Terratherma Geothermal Heating Ltd.\", \"street_address\": \"Box 34\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 5P7\", \"main_tel\": \"(250) 354-0453\", \"fax_tel\": \"(250) 354-0454\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Terratherma Geothermal Heating Ltd."}}, {"model": "reversion.version", "pk": 207, "fields": {"revision": 207, "object_id": "64b55fce-6a44-42ba-930e-29f1c56f0f1d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64b55fce-6a44-42ba-930e-29f1c56f0f1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Central Ltd Partnership\", \"street_address\": \"Box 3202 1250 Dalhousie Dr.\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-5252\", \"fax_tel\": \"(250) 573-5235\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Central Ltd Partnership"}}, {"model": "reversion.version", "pk": 208, "fields": {"revision": 208, "object_id": "64d5ab3e-0e3a-46cd-9b08-411288aab043", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5ab3e-0e3a-46cd-9b08-411288aab043\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"ABC Water Systems Ltd\", \"street_address\": \"9 - 2180 South Wellington Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9X 1V8\", \"main_tel\": \"(250) 753-3333\", \"fax_tel\": \"(250) 753-3364\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "ABC Water Systems Ltd"}}, {"model": "reversion.version", "pk": 209, "fields": {"revision": 209, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 210, "fields": {"revision": 210, "object_id": "64e2223d-7a0c-44fb-b028-1a79f2595fcb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64e2223d-7a0c-44fb-b028-1a79f2595fcb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Donald Abercrombie Well Drilling\", \"street_address\": \"Box 152\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-4463\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Donald Abercrombie Well Drilling"}}, {"model": "reversion.version", "pk": 211, "fields": {"revision": 211, "object_id": "658b905b-ccb7-438b-9f58-012f565e60fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"658b905b-ccb7-438b-9f58-012f565e60fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Earth Drilling Co. Ltd.\", \"street_address\": \"P.O Box 1155 2959 Prospector Rd\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K2G0\", \"main_tel\": \"(778) 554-9987\", \"fax_tel\": \"(587) 296-3544\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Earth Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 212, "fields": {"revision": 212, "object_id": "65cecc1f-c8ed-4104-9db3-053dc623076b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"65cecc1f-c8ed-4104-9db3-053dc623076b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Robbins Drilling and Pump Ltd\", \"street_address\": \"Box 80, 1400 Green Lake Road\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-5303\", \"fax_tel\": \"(250) 497-5303\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Robbins Drilling and Pump Ltd"}}, {"model": "reversion.version", "pk": 213, "fields": {"revision": 213, "object_id": "6611bef2-d8b4-4d3e-8d6f-f4d1cff59871", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6611bef2-d8b4-4d3e-8d6f-f4d1cff59871\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Reliance Well & Water Systems\", \"street_address\": \"9828 Pelly Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H4\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Reliance Well & Water Systems"}}, {"model": "reversion.version", "pk": 214, "fields": {"revision": 214, "object_id": "66dd54d3-0412-4eb3-8763-705859b7fdad", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"66dd54d3-0412-4eb3-8763-705859b7fdad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 215, "fields": {"revision": 215, "object_id": "67a225cc-2442-4897-a8d9-d162bb7c969c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"67a225cc-2442-4897-a8d9-d162bb7c969c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D. Windecker Water Wells\", \"street_address\": \"Box 119, 7536 Westholme Road\", \"city\": \"Westholme\", \"province_state\": \"BC\", \"postal_code\": \"V0R 3C0\", \"main_tel\": \"(250) 247-9391\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D. Windecker Water Wells"}}, {"model": "reversion.version", "pk": 216, "fields": {"revision": 216, "object_id": "67b01c11-e040-42ca-82b5-1120f79593bf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"67b01c11-e040-42ca-82b5-1120f79593bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fraser Valley Pumps and Gas\", \"street_address\": \"1900 Eagle Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 3A6\", \"main_tel\": \"(604) 309-1721\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fraser Valley Pumps and Gas"}}, {"model": "reversion.version", "pk": 217, "fields": {"revision": 217, "object_id": "68e94fab-ed2c-459f-b441-eae7bc59475f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"68e94fab-ed2c-459f-b441-eae7bc59475f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 218, "fields": {"revision": 218, "object_id": "692a9c77-c8b4-4861-b7cf-943494d2969f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"692a9c77-c8b4-4861-b7cf-943494d2969f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pro Star Mechanical Technologies Ltd.\", \"street_address\": \"206-847 Dunsmuir Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9A 0A5\", \"main_tel\": \"(250) 383-4558\", \"fax_tel\": \"(250) 383-6990\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pro Star Mechanical Technologies Ltd."}}, {"model": "reversion.version", "pk": 219, "fields": {"revision": 219, "object_id": "6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Baker Plumbing & Renovations\", \"street_address\": \"1725 Westlock Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 5N8\", \"main_tel\": \"(250) 748-3890\", \"fax_tel\": \"(250) 748-0520\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Baker Plumbing & Renovations"}}, {"model": "reversion.version", "pk": 220, "fields": {"revision": 220, "object_id": "6addafe1-b8a9-46db-9cc3-11b1beadc3bb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6addafe1-b8a9-46db-9cc3-11b1beadc3bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Brent Marsden Contractor\", \"street_address\": \"4715 Scarff Road\", \"city\": \"North Pender Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 2M1\", \"main_tel\": \"(250) 629-6432\", \"fax_tel\": \"(250) 629-6452\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Brent Marsden Contractor"}}, {"model": "reversion.version", "pk": 221, "fields": {"revision": 221, "object_id": "6bf6a0a6-fe0f-4969-9006-c9c5aca5c077", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6bf6a0a6-fe0f-4969-9006-c9c5aca5c077\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Prospect Creek Resource Management\", \"street_address\": \"1149 Hillcrest Manor Estates\", \"city\": \"Strathmore\", \"province_state\": \"AB\", \"postal_code\": \"T1P 0B9\", \"main_tel\": \"(403) 934-1856\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Prospect Creek Resource Management"}}, {"model": "reversion.version", "pk": 222, "fields": {"revision": 222, "object_id": "6cc9e8c0-5058-44ac-aa18-6da48f38e49c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6cc9e8c0-5058-44ac-aa18-6da48f38e49c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 223, "fields": {"revision": 223, "object_id": "6e1ada47-6cff-4e2f-b450-e19ee070a649", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6e1ada47-6cff-4e2f-b450-e19ee070a649\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kalicum Drilling Ltd.\", \"street_address\": \"Box 355\", \"city\": \"Cassidy\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1H0\", \"main_tel\": \"(250) 245-1220\", \"fax_tel\": \"(250) 245-1290\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kalicum Drilling Ltd."}}, {"model": "reversion.version", "pk": 224, "fields": {"revision": 224, "object_id": "6efb7f98-cb94-463e-b9b7-40e702d7eb60", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6efb7f98-cb94-463e-b9b7-40e702d7eb60\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Daniel Sprinkling Plumbing & Heating Ltd\", \"street_address\": \"3211 Grafton Avenue\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W7\", \"main_tel\": \"(250) 752-6847\", \"fax_tel\": \"(250) 752-1273\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Daniel Sprinkling Plumbing & Heating Ltd"}}, {"model": "reversion.version", "pk": 225, "fields": {"revision": 225, "object_id": "6f88d1a4-55ac-4444-9c87-1452c6f0d3d8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6f88d1a4-55ac-4444-9c87-1452c6f0d3d8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Murphy and Wakefield Limited\", \"street_address\": \"Unit U 31087 Peardonville Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2T 6K4\", \"main_tel\": \"(604) 853-3321\", \"fax_tel\": \"(604) 853-3150\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Murphy and Wakefield Limited"}}, {"model": "reversion.version", "pk": 226, "fields": {"revision": 226, "object_id": "6fb236d3-fde0-4038-9b40-dd0a78370653", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6fb236d3-fde0-4038-9b40-dd0a78370653\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 227, "fields": {"revision": 227, "object_id": "70d3f2b6-d38a-4dfd-b900-2c6c5ea4a566", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"70d3f2b6-d38a-4dfd-b900-2c6c5ea4a566\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"Po. Box 189 Stn. Aldergrove\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2T8\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 228, "fields": {"revision": 228, "object_id": "71b37327-7048-49d0-b97c-234f62e8a9b7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"71b37327-7048-49d0-b97c-234f62e8a9b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Perry's Well Drilling\", \"street_address\": \"1708 197A Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 1K2\", \"main_tel\": \"(604) 534-1347\", \"fax_tel\": \"(604) 534-1358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Perry's Well Drilling"}}, {"model": "reversion.version", "pk": 229, "fields": {"revision": 229, "object_id": "721f3ef1-578a-4e21-b8ee-32b77159c487", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"721f3ef1-578a-4e21-b8ee-32b77159c487\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Jayco Plumbing Ltd.\", \"street_address\": \"Box 1955\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E0\", \"main_tel\": \"(250) 395-3488\", \"fax_tel\": \"(250) 395-4710\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Jayco Plumbing Ltd."}}, {"model": "reversion.version", "pk": 230, "fields": {"revision": 230, "object_id": "72573009-a6f6-4eb1-a6ad-897ee35333cc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"72573009-a6f6-4eb1-a6ad-897ee35333cc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stooksberry Drilling & Pumps\", \"street_address\": \"469 Nicholson Street South\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2M 3L8\", \"main_tel\": \"(250) 562-9836\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stooksberry Drilling & Pumps"}}, {"model": "reversion.version", "pk": 231, "fields": {"revision": 231, "object_id": "726ba8ab-56b4-4e8b-a1af-51ac993e41c6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"726ba8ab-56b4-4e8b-a1af-51ac993e41c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 232, "fields": {"revision": 232, "object_id": "730ac841-305e-4965-86da-b6b718378d0c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"730ac841-305e-4965-86da-b6b718378d0c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Misek Bros. Drilling\", \"street_address\": \"3805 Hillbank Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6M1\", \"main_tel\": \"(250) 743-9050\", \"fax_tel\": \"(250) 743-9027\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Misek Bros. Drilling"}}, {"model": "reversion.version", "pk": 233, "fields": {"revision": 233, "object_id": "73a38b1f-d0d7-4acc-98f7-d6a7ae67f117", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"73a38b1f-d0d7-4acc-98f7-d6a7ae67f117\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uncharted Drilling Solutions INC.\", \"street_address\": \"5488 Graves Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5A6\", \"main_tel\": \"(250)963-1474\", \"fax_tel\": \"(250)963-6646\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uncharted Drilling Solutions INC."}}, {"model": "reversion.version", "pk": 234, "fields": {"revision": 234, "object_id": "743f6b1a-af52-4b40-b296-35f7522fdd9b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"743f6b1a-af52-4b40-b296-35f7522fdd9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Waterwell Drilling Inc\", \"street_address\": \"#12 - 2095 Boucherie Road\", \"city\": \"Westbank\", \"province_state\": \"BC\", \"postal_code\": \"V4T 1Z4\", \"main_tel\": \"(250) 212-9698\", \"fax_tel\": \"(250) 754-0061\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Waterwell Drilling Inc"}}, {"model": "reversion.version", "pk": 235, "fields": {"revision": 235, "object_id": "749c59f2-a04e-4417-a814-36c433f3f8b5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"749c59f2-a04e-4417-a814-36c433f3f8b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4944 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 236, "fields": {"revision": 236, "object_id": "74c14fca-770d-4b9c-b338-69a4be9038c8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"74c14fca-770d-4b9c-b338-69a4be9038c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kicking Horse Water Services\", \"street_address\": \"PO Box 4039, 895 McAlister Road\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1A0\", \"main_tel\": \"(250) 344-1272\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kicking Horse Water Services"}}, {"model": "reversion.version", "pk": 237, "fields": {"revision": 237, "object_id": "750ef95d-0a1f-471f-bd5e-cfff6e04a04d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"750ef95d-0a1f-471f-bd5e-cfff6e04a04d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ellen Eyre\", \"street_address\": \"1114 - 14th Street\", \"city\": \"Canmore\", \"province_state\": \"AB\", \"postal_code\": \"T1W 1V7\", \"main_tel\": \"(403) 477-3309\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ellen Eyre"}}, {"model": "reversion.version", "pk": 238, "fields": {"revision": 238, "object_id": "754665c7-c07d-42fe-a759-763d026c309e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"754665c7-c07d-42fe-a759-763d026c309e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R & S Drilling Ltd\", \"street_address\": \"2360 Baily Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 5B9\", \"main_tel\": \"(250) 989-4473\", \"fax_tel\": \"(250) 989-4473\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R & S Drilling Ltd"}}, {"model": "reversion.version", "pk": 239, "fields": {"revision": 239, "object_id": "757184ec-f5d6-49eb-973f-2ee24ed3a452", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"757184ec-f5d6-49eb-973f-2ee24ed3a452\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wayne Johnson Electric\", \"street_address\": \"Box 45\", \"city\": \"Jaffray\", \"province_state\": \"BC\", \"postal_code\": \"V0B 1T0\", \"main_tel\": \"(250) 429-3438\", \"fax_tel\": \"(250) 429-3022\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wayne Johnson Electric"}}, {"model": "reversion.version", "pk": 240, "fields": {"revision": 240, "object_id": "75a144d3-196f-49d7-83e0-f00e57a0117b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"AJ Pumps & Water Treatment Ltd.\", \"street_address\": \"46170 Airport Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 1A5\", \"main_tel\": \"(604) 795-2568\", \"fax_tel\": \"(604) 795-2561\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "AJ Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 241, "fields": {"revision": 241, "object_id": "76f7a428-169b-4abd-9c9c-725cdc8e53dc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"76f7a428-169b-4abd-9c9c-725cdc8e53dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Streamline Plumbing Ltd.\", \"street_address\": \"1650 Fulford Ganges Road\", \"city\": \"Saltspring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2A8\", \"main_tel\": \"(250) 653-2026\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Streamline Plumbing Ltd."}}, {"model": "reversion.version", "pk": 242, "fields": {"revision": 242, "object_id": "779b8ba7-3bcc-47d6-914f-1dd54e2b36c9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"779b8ba7-3bcc-47d6-914f-1dd54e2b36c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alpine Plumbing & Heating\", \"street_address\": \"Box 2984\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-2820\", \"fax_tel\": \"(250) 847-4250\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alpine Plumbing & Heating"}}, {"model": "reversion.version", "pk": 243, "fields": {"revision": 243, "object_id": "7a000aa1-1787-4a49-8fec-78f6cc398a3c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7a000aa1-1787-4a49-8fec-78f6cc398a3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Insitu Contractors Inc.\", \"street_address\": \"150 Stevenson Street, South\", \"city\": \"Guelph\", \"province_state\": \"ON\", \"postal_code\": \"N1E 5N7\", \"main_tel\": \"(519) 763-0700\", \"fax_tel\": \"(519) 763-6684\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Insitu Contractors Inc."}}, {"model": "reversion.version", "pk": 244, "fields": {"revision": 244, "object_id": "7a319709-f9d0-4480-9bf7-1c90b327d3f2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 951-0556\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 245, "fields": {"revision": 245, "object_id": "7ac88783-73c9-4590-8359-5937c1ca9b62", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7ac88783-73c9-4590-8359-5937c1ca9b62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua North Plumbing Ltd.\", \"street_address\": \"Box 836\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-3858\", \"fax_tel\": \"(250) 847-3932\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua North Plumbing Ltd."}}, {"model": "reversion.version", "pk": 246, "fields": {"revision": 246, "object_id": "7af636c4-093f-4a61-af58-3a3bc8ddc62c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7af636c4-093f-4a61-af58-3a3bc8ddc62c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Downrite Drilling Ltd.\", \"street_address\": \"4346 Wilson Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 5C6\", \"main_tel\": \"(604) 823-4086\", \"fax_tel\": \"(604) 823-4086\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Downrite Drilling Ltd."}}, {"model": "reversion.version", "pk": 247, "fields": {"revision": 247, "object_id": "7b1817ac-466b-4d64-98ff-01c49db0ef43", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7b1817ac-466b-4d64-98ff-01c49db0ef43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kamloops Water Wells\", \"street_address\": \"623 Holt Street\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2B 5G2\", \"main_tel\": \"(250) 376-9483\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kamloops Water Wells"}}, {"model": "reversion.version", "pk": 248, "fields": {"revision": 248, "object_id": "7b3a5273-376b-424f-87c4-70292099e48e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7b3a5273-376b-424f-87c4-70292099e48e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"McCormick Heating & Plumbing Ltd.\", \"street_address\": \"Box 735\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 5R4\", \"main_tel\": \"(250) 354-4223\", \"fax_tel\": \"(250) 354-1454\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "McCormick Heating & Plumbing Ltd."}}, {"model": "reversion.version", "pk": 249, "fields": {"revision": 249, "object_id": "7b722345-5c9c-48a7-bdbc-062b6468cb7f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7b722345-5c9c-48a7-bdbc-062b6468cb7f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Suretech Systems & Solutions Inc.\", \"street_address\": \"41-4305 LakeIse Avenue\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 1N5\", \"main_tel\": \"(250) 635-7410\", \"fax_tel\": \"(250) 635-5551\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Suretech Systems & Solutions Inc."}}, {"model": "reversion.version", "pk": 250, "fields": {"revision": 250, "object_id": "7cb4fc6c-fb9f-4120-8376-b4c5b67f4d4c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7cb4fc6c-fb9f-4120-8376-b4c5b67f4d4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 251, "fields": {"revision": 251, "object_id": "7dd039bc-cdd3-449f-a4f0-67066403f645", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7dd039bc-cdd3-449f-a4f0-67066403f645\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Independent Pump & Mechanical Ltd.\", \"street_address\": \"PO Box 390\", \"city\": \"Shawnigan Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2W0\", \"main_tel\": \"(250) 743-3075\", \"fax_tel\": \"(250) 743-3075\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Independent Pump & Mechanical Ltd."}}, {"model": "reversion.version", "pk": 252, "fields": {"revision": 252, "object_id": "7de7653f-5c56-45d5-9fab-aead864d5dbc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7de7653f-5c56-45d5-9fab-aead864d5dbc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Full Metal Drilling Inc.\", \"street_address\": \"5215 16th Avenue\", \"city\": \"Edson\", \"province_state\": \"AB\", \"postal_code\": \"T7E 1H1\", \"main_tel\": \"(780) 728-7148\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Full Metal Drilling Inc."}}, {"model": "reversion.version", "pk": 253, "fields": {"revision": 253, "object_id": "7de950f0-ef33-4b1c-9491-326e2b020914", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7de950f0-ef33-4b1c-9491-326e2b020914\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 254, "fields": {"revision": 254, "object_id": "7e0069c2-f36e-463a-8246-8f1d3e228445", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"DD & D Drillers Ltd. (Triple D Drillers)\", \"street_address\": \"3886 Balsum Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 1Z8\", \"main_tel\": \"(250) 962-9030\", \"fax_tel\": \"(250) 962-9030\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "DD & D Drillers Ltd. (Triple D Drillers)"}}, {"model": "reversion.version", "pk": 255, "fields": {"revision": 255, "object_id": "7eb426d3-c956-49c6-8bbb-03b25bb4cda9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7eb426d3-c956-49c6-8bbb-03b25bb4cda9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hillside Pumps & Water Treatment Ltd.\", \"street_address\": \"1613A South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A8\", \"main_tel\": \"(250) 392-7876\", \"fax_tel\": \"(250) 392-6290\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hillside Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 256, "fields": {"revision": 256, "object_id": "7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ingram Well & Pump Service\", \"street_address\": \"PO Box 4520\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3J8\", \"main_tel\": \"(250) 249-5292\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ingram Well & Pump Service"}}, {"model": "reversion.version", "pk": 257, "fields": {"revision": 257, "object_id": "7f695553-79e1-4e0b-96ee-2a4d028306c5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7f695553-79e1-4e0b-96ee-2a4d028306c5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Queen Charlotte Well Drilling\", \"street_address\": \"Box 1579\", \"city\": \"Queen Charlotte\", \"province_state\": \"BC\", \"postal_code\": \"V0T 1S1\", \"main_tel\": \"(250) 559-4586\", \"fax_tel\": \"(250) 559-4586\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Queen Charlotte Well Drilling"}}, {"model": "reversion.version", "pk": 258, "fields": {"revision": 258, "object_id": "7fb4208f-2797-443c-a9df-ad85e3d62320", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7fb4208f-2797-443c-a9df-ad85e3d62320\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Earthsmart Solutions Ltd.\", \"street_address\": \"4165 Eld Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1V4\", \"main_tel\": \"(250) 586-5555\", \"fax_tel\": \"(250) 586-5555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Earthsmart Solutions Ltd."}}, {"model": "reversion.version", "pk": 259, "fields": {"revision": 259, "object_id": "7fcafbbd-52b6-496b-802e-deedfb9ed114", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7fcafbbd-52b6-496b-802e-deedfb9ed114\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Morrill's Water Well Drilling Ltd.\", \"street_address\": \"Site 422, Box 2, Comp 3, RR2\", \"city\": \"Drayton Valley\", \"province_state\": \"AB\", \"postal_code\": \"T7A 2A2\", \"main_tel\": \"(780) 542-5089\", \"fax_tel\": \"(780)-542-7696\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Morrill's Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 260, "fields": {"revision": 260, "object_id": "806c6739-24aa-4715-8315-fb898ca13338", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"806c6739-24aa-4715-8315-fb898ca13338\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Clean Water Treatment Ltd.\", \"street_address\": \"460 Austad Lane\", \"city\": \"Trail\", \"province_state\": \"BC\", \"postal_code\": \"V1R 3K6\", \"main_tel\": \"(250) 368-9402\", \"fax_tel\": \"(250) 368-9407\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Clean Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 261, "fields": {"revision": 261, "object_id": "8177af22-939b-4109-9505-715973bda4e4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8177af22-939b-4109-9505-715973bda4e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 262, "fields": {"revision": 262, "object_id": "81b2e3d0-913a-4826-8ab9-8b4cca96bdd0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"81b2e3d0-913a-4826-8ab9-8b4cca96bdd0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pumpco\", \"street_address\": \"12196 210th Street\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2X 8C7\", \"main_tel\": \"(604) 715-8440\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pumpco"}}, {"model": "reversion.version", "pk": 263, "fields": {"revision": 263, "object_id": "82b57f3c-a644-4bd5-acf1-1596ac7fdb46", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82b57f3c-a644-4bd5-acf1-1596ac7fdb46\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 264, "fields": {"revision": 264, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 265, "fields": {"revision": 265, "object_id": "832b7c3c-3114-4c08-bdce-24a4b4bd7357", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"832b7c3c-3114-4c08-bdce-24a4b4bd7357\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Maci Service & Repair\", \"street_address\": \"1090 Smithers Road\", \"city\": \"Parksville\", \"province_state\": \"BC\", \"postal_code\": \"V9P 2C2\", \"main_tel\": \"(250) 248-4423\", \"fax_tel\": \"(250) 248-4471\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Maci Service & Repair"}}, {"model": "reversion.version", "pk": 266, "fields": {"revision": 266, "object_id": "832f2fe0-fc16-4a1e-977f-089c7a0288cf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"832f2fe0-fc16-4a1e-977f-089c7a0288cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gulf Island Pumps\", \"street_address\": \"RR#1, Site 1, Comp 22\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2222\", \"fax_tel\": \"(250) 539-2222\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gulf Island Pumps"}}, {"model": "reversion.version", "pk": 267, "fields": {"revision": 267, "object_id": "83bfd150-3e6b-48d5-b91a-5d9c0a892581", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"83bfd150-3e6b-48d5-b91a-5d9c0a892581\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Advanced Industrial Group Inc.\", \"street_address\": \"650 - 3rd Street\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3C4\", \"main_tel\": \"(250) 564-7599\", \"fax_tel\": \"(250) 564-1246\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Advanced Industrial Group Inc."}}, {"model": "reversion.version", "pk": 268, "fields": {"revision": 268, "object_id": "843cf620-2e30-4c30-8b76-736f042b354b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"843cf620-2e30-4c30-8b76-736f042b354b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GPM Water Services\", \"street_address\": \"835 Sherbrooke Avenue\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2B 1V9\", \"main_tel\": \"(250) 376-9266\", \"fax_tel\": \"(250) 376-9266\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GPM Water Services"}}, {"model": "reversion.version", "pk": 269, "fields": {"revision": 269, "object_id": "845e5120-8ac5-4b9b-a988-faa55ccc774d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"845e5120-8ac5-4b9b-a988-faa55ccc774d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Insitu Contractors Inc.\", \"street_address\": \"48 Dawson Road\", \"city\": \"Guelph\", \"province_state\": \"ON\", \"postal_code\": \"N1H 5V1\", \"main_tel\": \"(519) 763-0700\", \"fax_tel\": \"(519) 763-6684\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Insitu Contractors Inc."}}, {"model": "reversion.version", "pk": 270, "fields": {"revision": 270, "object_id": "85057b7c-410a-4312-ab17-d4c68e32e0b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"85057b7c-410a-4312-ab17-d4c68e32e0b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Steel Mechanical Ltd.\", \"street_address\": \"2974 208 Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2C3\", \"main_tel\": \"(778) 878-5708\", \"fax_tel\": \"(604) 888-4536\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Steel Mechanical Ltd."}}, {"model": "reversion.version", "pk": 271, "fields": {"revision": 271, "object_id": "854e79d2-abaf-4d69-b1ac-17fe992539f5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"854e79d2-abaf-4d69-b1ac-17fe992539f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 272, "fields": {"revision": 272, "object_id": "8556ca58-3be5-4a21-97a4-31ab515a45be", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8556ca58-3be5-4a21-97a4-31ab515a45be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hartl Water Well Drilling & Service Ltd.\", \"street_address\": \"5420 RR 275\", \"city\": \"Sturgeon County\", \"province_state\": \"AB\", \"postal_code\": \"T8R 1Y9\", \"main_tel\": \"(780) 999-6257\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hartl Water Well Drilling & Service Ltd."}}, {"model": "reversion.version", "pk": 273, "fields": {"revision": 273, "object_id": "85b4d949-a72a-4eb1-8683-11e5ee2c9d01", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"85b4d949-a72a-4eb1-8683-11e5ee2c9d01\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geoenergy Solutions Inc.\", \"street_address\": \"10472 Islington Avenue, Unit 1\", \"city\": \"Kleinburg\", \"province_state\": \"ON\", \"postal_code\": \"l0J 1C0\", \"main_tel\": \"(905) 951-6723\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geoenergy Solutions Inc."}}, {"model": "reversion.version", "pk": 274, "fields": {"revision": 274, "object_id": "867b441f-a916-4156-b89d-ade89b4e7914", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"867b441f-a916-4156-b89d-ade89b4e7914\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"On Track Drilling Inc.\", \"street_address\": \"23795 Dewdney Trunk Rd\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V4R 1W2\", \"main_tel\": \"(604) 523-1200\", \"fax_tel\": \"(604) 523-1201\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "On Track Drilling Inc."}}, {"model": "reversion.version", "pk": 275, "fields": {"revision": 275, "object_id": "869832f5-3e75-4dde-b872-8c56b537bb6d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"869832f5-3e75-4dde-b872-8c56b537bb6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cowichan Valley Water Wells\", \"street_address\": \"#1-2955 Jacob Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W4\", \"main_tel\": \"(250) 748-6749\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cowichan Valley Water Wells"}}, {"model": "reversion.version", "pk": 276, "fields": {"revision": 276, "object_id": "86a95cfa-217b-419a-9528-24c62148979c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Langley Water Wells Ltd.\", \"street_address\": \"21416 32nd. Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2E7\", \"main_tel\": \"(604) 534-5675\", \"fax_tel\": \"(604) 534-9762\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Langley Water Wells Ltd."}}, {"model": "reversion.version", "pk": 277, "fields": {"revision": 277, "object_id": "86bf5e90-c420-4d8d-9576-f2e3778ed764", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86bf5e90-c420-4d8d-9576-f2e3778ed764\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Weatherall Service Ltd.\", \"street_address\": \"902-N 9th Street\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H2\", \"main_tel\": \"(250) 344-2962\", \"fax_tel\": \"(250) 344-7372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Weatherall Service Ltd."}}, {"model": "reversion.version", "pk": 278, "fields": {"revision": 278, "object_id": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 279, "fields": {"revision": 279, "object_id": "871b93eb-24cf-4951-8ce1-a431b8215959", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"871b93eb-24cf-4951-8ce1-a431b8215959\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Myram Drilling\", \"street_address\": \"Box 146\", \"city\": \"Cremona\", \"province_state\": \"AB\", \"postal_code\": \"T0M 0R0\", \"main_tel\": \"(403) 637-2113\", \"fax_tel\": \"(403) 637-8698\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Myram Drilling"}}, {"model": "reversion.version", "pk": 280, "fields": {"revision": 280, "object_id": "87907bae-06ec-4cf7-b570-0781457f8fcb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"87907bae-06ec-4cf7-b570-0781457f8fcb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Owen's Drilling Ltd.\", \"street_address\": \"Box 730, 541 Industrial Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J5\", \"main_tel\": \"(250) 426-2455\", \"fax_tel\": \"(250) 427-7419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Owen's Drilling Ltd."}}, {"model": "reversion.version", "pk": 281, "fields": {"revision": 281, "object_id": "87c27fb7-3e84-48f1-8d44-a33d2e48f9fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"87c27fb7-3e84-48f1-8d44-a33d2e48f9fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Paul's Pump and Treatment\", \"street_address\": \"4132 St. Catherines Drive\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L3\", \"main_tel\": \"(250) 510-7006\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Paul's Pump and Treatment"}}, {"model": "reversion.version", "pk": 282, "fields": {"revision": 282, "object_id": "87fbaa49-97c9-49bd-b7a8-ca2de6f4db54", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"87fbaa49-97c9-49bd-b7a8-ca2de6f4db54\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.J. Roberts\", \"street_address\": \"44969 Watson Road\", \"city\": \"Sardis\", \"province_state\": \"BC\", \"postal_code\": \"V2R 2Y3\", \"main_tel\": \"(604) 316-0925\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.J. Roberts"}}, {"model": "reversion.version", "pk": 283, "fields": {"revision": 283, "object_id": "88e4ee3f-3a41-4cb5-bc63-10f3e27401f5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"88e4ee3f-3a41-4cb5-bc63-10f3e27401f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Abacus Drilling\", \"street_address\": \"Box 304\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L0\", \"main_tel\": \"(250) 743-1301\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Abacus Drilling"}}, {"model": "reversion.version", "pk": 284, "fields": {"revision": 284, "object_id": "89a6f386-7e5a-4a94-b570-edcc4c6701c6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"89a6f386-7e5a-4a94-b570-edcc4c6701c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"PIRT Pump & Pipe\", \"street_address\": \"Box 369\", \"city\": \"Burns Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1E0\", \"main_tel\": \"(250) 692-6019\", \"fax_tel\": \"(250) 692-3012\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "PIRT Pump & Pipe"}}, {"model": "reversion.version", "pk": 285, "fields": {"revision": 285, "object_id": "8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud Henning Drilling & Consulting\", \"street_address\": \"1321 Ellison Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 5M8\", \"main_tel\": \"(250) 747-8629\", \"fax_tel\": \"(205) 747-8675\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud Henning Drilling & Consulting"}}, {"model": "reversion.version", "pk": 286, "fields": {"revision": 286, "object_id": "8bbc1420-1347-4de3-bd7a-4ac61bdbd01f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8bbc1420-1347-4de3-bd7a-4ac61bdbd01f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Central Ltd. Partnership\", \"street_address\": \"2264 Ojibway Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1P1\", \"main_tel\": \"(250) 573-5252\", \"fax_tel\": \"(250) 573-5235\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Central Ltd. Partnership"}}, {"model": "reversion.version", "pk": 287, "fields": {"revision": 287, "object_id": "8bde7b03-475f-4c19-b60b-7f12e3cf2d65", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8bde7b03-475f-4c19-b60b-7f12e3cf2d65\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"McCabe Plumbing\", \"street_address\": \"854 Chapman Road\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L0\", \"main_tel\": \"(250) 701-1628\", \"fax_tel\": \"(250) 743-0755\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "McCabe Plumbing"}}, {"model": "reversion.version", "pk": 288, "fields": {"revision": 288, "object_id": "8c16777e-86b8-44ef-854e-d24822b3e7cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8c16777e-86b8-44ef-854e-d24822b3e7cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Soil Sampling Inc.\", \"street_address\": \"Box C-23\", \"city\": \"Bowen Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1G0\", \"main_tel\": \"(604) 947-7677\", \"fax_tel\": \"(250) 947-9500\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Soil Sampling Inc."}}, {"model": "reversion.version", "pk": 289, "fields": {"revision": 289, "object_id": "8cbb399c-13b6-49e1-ae7d-8174b4264055", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8cbb399c-13b6-49e1-ae7d-8174b4264055\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wellmaster Pumps & Water Systems Ltd.\", \"street_address\": \"7983 Simpson Road\", \"city\": \"Saanichton\", \"province_state\": \"BC\", \"postal_code\": \"V8M 2H3\", \"main_tel\": \"(250) 656-7474\", \"fax_tel\": \"(250) 652-7915\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wellmaster Pumps & Water Systems Ltd."}}, {"model": "reversion.version", "pk": 290, "fields": {"revision": 290, "object_id": "8cbd02b7-bdc6-42e4-81ed-52ac6801ee4c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8cbd02b7-bdc6-42e4-81ed-52ac6801ee4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R & S Drilling Ltd.\", \"street_address\": \"2360 Baily Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 5B9\", \"main_tel\": \"(250) 989-4473\", \"fax_tel\": \"(250) 989-4473\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R & S Drilling Ltd."}}, {"model": "reversion.version", "pk": 291, "fields": {"revision": 291, "object_id": "8d82cacb-e1d6-4e09-8c01-99342eb5642c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8d82cacb-e1d6-4e09-8c01-99342eb5642c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Martech Motor Winding\", \"street_address\": \"1700 Woodland Drive\", \"city\": \"Castlegar\", \"province_state\": \"BC\", \"postal_code\": \"V1N 4J4\", \"main_tel\": \"(250) 365-2102\", \"fax_tel\": \"(250) 304-7531\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Martech Motor Winding"}}, {"model": "reversion.version", "pk": 292, "fields": {"revision": 292, "object_id": "8d92d5bc-1335-41ab-bbac-2bb63c936794", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Value Contracting\", \"street_address\": \"Box 256 1612 Highway 97 S\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-8284\", \"fax_tel\": \"(250) 497-6533\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Value Contracting"}}, {"model": "reversion.version", "pk": 293, "fields": {"revision": 293, "object_id": "8e629ec8-6272-498c-8d29-786a9a162650", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8e629ec8-6272-498c-8d29-786a9a162650\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"PO Box 550\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J1\", \"main_tel\": \"(250) 426-0255\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 294, "fields": {"revision": 294, "object_id": "8e6b1237-f739-4f0c-877d-9d533d9a0770", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8e6b1237-f739-4f0c-877d-9d533d9a0770\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 295, "fields": {"revision": 295, "object_id": "8e7a1d2c-9c3f-496d-b0eb-4c705e407d31", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8e7a1d2c-9c3f-496d-b0eb-4c705e407d31\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Four-Cea Services Ltd.\", \"street_address\": \"Po Box 431 Harriet Bay\", \"city\": \"Quadra Island\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1H0\", \"main_tel\": \"(250) 203-2040\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Four-Cea Services Ltd."}}, {"model": "reversion.version", "pk": 296, "fields": {"revision": 296, "object_id": "8f07c2dd-9b19-46c6-bd00-1af271d5242c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8f07c2dd-9b19-46c6-bd00-1af271d5242c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wangler Drilling Ltd.\", \"street_address\": \"7938 Cambie Road\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2Y6\", \"main_tel\": \"(250) 832-3264\", \"fax_tel\": \"(250) 832-0563\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wangler Drilling Ltd."}}, {"model": "reversion.version", "pk": 297, "fields": {"revision": 297, "object_id": "8fa406c8-6ec0-4889-b478-26edfd1f3dbe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8fa406c8-6ec0-4889-b478-26edfd1f3dbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tundra Environmental & Geotechnical Drilling Ltd.\", \"street_address\": \"Box 207\", \"city\": \"Stettler\", \"province_state\": \"AB\", \"postal_code\": \"T0C 2L0\", \"main_tel\": \"(403) 742-6601\", \"fax_tel\": \"(403) 742-6651\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tundra Environmental & Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 298, "fields": {"revision": 298, "object_id": "8fd9376b-6d5a-4915-8cfb-d13f213b6f89", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8fd9376b-6d5a-4915-8cfb-d13f213b6f89\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Good Earth Drilling Services Ltd.\", \"street_address\": \"Site 12 Box 17 RR1\", \"city\": \"Airdrie\", \"province_state\": \"AB\", \"postal_code\": \"T4B 2A3\", \"main_tel\": \"(403) 912-1947\", \"fax_tel\": \"(403) 945-3429\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Good Earth Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 299, "fields": {"revision": 299, "object_id": "905eb772-1ef5-45cd-8916-4608561d852f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"905eb772-1ef5-45cd-8916-4608561d852f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Great West Drilling Ltd.\", \"street_address\": \"4250 118 Ave SE\", \"city\": \"Calgary\", \"province_state\": \"AB\", \"postal_code\": \"T2Z 4A4\", \"main_tel\": \"(403) 252-3325\", \"fax_tel\": \"(403) 258-4495\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Great West Drilling Ltd."}}, {"model": "reversion.version", "pk": 300, "fields": {"revision": 300, "object_id": "90f98635-a7c2-4d4c-af74-42fac2a8ce0b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"90f98635-a7c2-4d4c-af74-42fac2a8ce0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Arts Plumbing & Heating Ltd.\", \"street_address\": \"6896 Doumont Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9T 6G9\", \"main_tel\": \"(250) 350-2606\", \"fax_tel\": \"(250) 390-2635\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Arts Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 301, "fields": {"revision": 301, "object_id": "911e74d3-eee8-48e1-92a5-a1ea4d58c4fd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"911e74d3-eee8-48e1-92a5-a1ea4d58c4fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Garth's Plumbing & Heating\", \"street_address\": \"6456 Harrop Procter Road\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 6R1\", \"main_tel\": \"(250) 229-4050\", \"fax_tel\": \"(250) 229-4056\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Garth's Plumbing & Heating"}}, {"model": "reversion.version", "pk": 302, "fields": {"revision": 302, "object_id": "915276cd-8273-4586-8fad-10cc194c1ebf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"915276cd-8273-4586-8fad-10cc194c1ebf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Vortex Pump & Water Services Ltd.\", \"street_address\": \"RR#1, Site 32, Comp 9\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-6157\", \"fax_tel\": \"(250) 497-6257\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Vortex Pump & Water Services Ltd."}}, {"model": "reversion.version", "pk": 303, "fields": {"revision": 303, "object_id": "91576fc7-0a2e-4d84-867a-49435d61133e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5213\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 304, "fields": {"revision": 304, "object_id": "91fdb13b-becc-4074-b68c-ff1c0b93f7e3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"91fdb13b-becc-4074-b68c-ff1c0b93f7e3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wild West Water Wells & Pump Service\", \"street_address\": \"1063 Simmons Road\", \"city\": \"Creston\", \"province_state\": \"BC\", \"postal_code\": \"V0B 1G7\", \"main_tel\": \"(250) 428-0137\", \"fax_tel\": \"(250) 428-0139\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wild West Water Wells & Pump Service"}}, {"model": "reversion.version", "pk": 305, "fields": {"revision": 305, "object_id": "925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Weston Water Wells Ltd.\", \"street_address\": \"7779 Highway 24\", \"city\": \"Lone Butte\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1X2\", \"main_tel\": \"(250) 593-4307\", \"fax_tel\": \"(250) 593-4307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Weston Water Wells Ltd."}}, {"model": "reversion.version", "pk": 306, "fields": {"revision": 306, "object_id": "92722612-db88-481d-9f73-70a41092f9f4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"92722612-db88-481d-9f73-70a41092f9f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quadsons Water Systems\", \"street_address\": \"25745 - 102nd. Avenue\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1K5\", \"main_tel\": \"(604) 462-8341\", \"fax_tel\": \"(604) 462-8374\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quadsons Water Systems"}}, {"model": "reversion.version", "pk": 307, "fields": {"revision": 307, "object_id": "949fbd4b-adab-49c5-b011-e36aaa4f85b9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"949fbd4b-adab-49c5-b011-e36aaa4f85b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 308, "fields": {"revision": 308, "object_id": "94cb6b2c-898c-41ac-bfcd-58122781bb34", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"94cb6b2c-898c-41ac-bfcd-58122781bb34\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 309, "fields": {"revision": 309, "object_id": "950ee7b6-de1c-4192-9ce4-108e9b200689", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"950ee7b6-de1c-4192-9ce4-108e9b200689\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cyclone Drilling Ltd.\", \"street_address\": \"2915 McAllister Road\", \"city\": \"Westbank\", \"province_state\": \"BC\", \"postal_code\": \"V4T 1G8\", \"main_tel\": \"(250) 768-7462\", \"fax_tel\": \"(250) 768-5424\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cyclone Drilling Ltd."}}, {"model": "reversion.version", "pk": 310, "fields": {"revision": 310, "object_id": "952b6309-93ee-4fc9-b8ef-0bbb792a2568", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"952b6309-93ee-4fc9-b8ef-0bbb792a2568\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Northwind Drilling and Pump Sales\", \"street_address\": \"Box 284\", \"city\": \"Watson Lake\", \"province_state\": \"YT\", \"postal_code\": \"Y0A 1C0\", \"main_tel\": \"(867) 536-2009\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Northwind Drilling and Pump Sales"}}, {"model": "reversion.version", "pk": 311, "fields": {"revision": 311, "object_id": "9566764c-517e-4cf2-a4d3-7e2ddcc5f83f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9566764c-517e-4cf2-a4d3-7e2ddcc5f83f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mountain View Electric Ltd.\", \"street_address\": \"1009 Belvedere Street; Box 467\", \"city\": \"Enderby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1V0\", \"main_tel\": \"(250) 838-6455\", \"fax_tel\": \"(250) 838-6732\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mountain View Electric Ltd."}}, {"model": "reversion.version", "pk": 312, "fields": {"revision": 312, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 313, "fields": {"revision": 313, "object_id": "967bc31f-bd82-4b67-a99f-0bef1cbbf4b7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"967bc31f-bd82-4b67-a99f-0bef1cbbf4b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Valley Pumps & Repairs Ltd.\", \"street_address\": \"33712 Best Avenue\", \"city\": \"Mission\", \"province_state\": \"BC\", \"postal_code\": \"V2V 6Z9\", \"main_tel\": \"(604) 820-6374\", \"fax_tel\": \"(604) 820-6374\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Valley Pumps & Repairs Ltd."}}, {"model": "reversion.version", "pk": 314, "fields": {"revision": 314, "object_id": "96bd8b01-be90-4fc7-b1ce-b395f8c39dc2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"96bd8b01-be90-4fc7-b1ce-b395f8c39dc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Butch's Pump\", \"street_address\": \"6729 Highway 97 South\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E2\", \"main_tel\": \"(250) 395-1971\", \"fax_tel\": \"(250) 395-1997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Butch's Pump"}}, {"model": "reversion.version", "pk": 315, "fields": {"revision": 315, "object_id": "9912321b-a4c4-4b12-9435-ad33e58f9d50", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9912321b-a4c4-4b12-9435-ad33e58f9d50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Twilight Spas & Pump Supply\", \"street_address\": \"4704 Keith Avenue\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4K1\", \"main_tel\": \"(250) 638-0947\", \"fax_tel\": \"(250) 638-0948\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Twilight Spas & Pump Supply"}}, {"model": "reversion.version", "pk": 316, "fields": {"revision": 316, "object_id": "99633948-b722-4f7b-87ef-c58d87a1f1a0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"99633948-b722-4f7b-87ef-c58d87a1f1a0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pender Island Plumbing & Heating Ltd.\", \"street_address\": \"9858 Castle Road\", \"city\": \"Pender Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 2M3\", \"main_tel\": \"(250) 629-3781\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pender Island Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 317, "fields": {"revision": 317, "object_id": "9aec04ae-dd27-4471-b5cc-792fb31c4498", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9aec04ae-dd27-4471-b5cc-792fb31c4498\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tri-K Drilling Ltd.\", \"street_address\": \"3047 Glen Lake Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 4B3\", \"main_tel\": \"(250) 478-5064\", \"fax_tel\": \"(250) 478-2749\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tri-K Drilling Ltd."}}, {"model": "reversion.version", "pk": 318, "fields": {"revision": 318, "object_id": "9b029df8-c250-4a55-bc02-acded4aa55b9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9b029df8-c250-4a55-bc02-acded4aa55b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 319, "fields": {"revision": 319, "object_id": "9bc2b1a9-f566-4b01-b7f6-cd8c9921b1bf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9bc2b1a9-f566-4b01-b7f6-cd8c9921b1bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 320, "fields": {"revision": 320, "object_id": "9c021994-53a1-42ad-8036-e74b8077a0e6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9c021994-53a1-42ad-8036-e74b8077a0e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"3L's Water Systems Ltd.\", \"street_address\": \"Box 414\", \"city\": \"Ituna\", \"province_state\": \"SK\", \"postal_code\": \"S0A 1N0\", \"main_tel\": \"(306) 795-2620\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "3L's Water Systems Ltd."}}, {"model": "reversion.version", "pk": 321, "fields": {"revision": 321, "object_id": "9c2ea8cc-ea9a-4bdc-a532-7c3cc7f0b39a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9c2ea8cc-ea9a-4bdc-a532-7c3cc7f0b39a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Moberg Drilling\", \"street_address\": \"Box 1635\", \"city\": \"Fort St. James\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1P0\", \"main_tel\": \"(250) 640-6155\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Moberg Drilling"}}, {"model": "reversion.version", "pk": 322, "fields": {"revision": 322, "object_id": "9cd2586c-9352-4eda-9b1f-83aafa9dafb2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9cd2586c-9352-4eda-9b1f-83aafa9dafb2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 323, "fields": {"revision": 323, "object_id": "9cda4aab-ddbb-47a8-98af-8c878870fb62", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9cda4aab-ddbb-47a8-98af-8c878870fb62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"McGill's Well Service\", \"street_address\": \"Box 1229\", \"city\": \"Cumberland\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1S0\", \"main_tel\": \"(250) 338-1661\", \"fax_tel\": \"(250) 336-2199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "McGill's Well Service"}}, {"model": "reversion.version", "pk": 324, "fields": {"revision": 324, "object_id": "9e15f5ed-4d5d-4c86-b597-f75b92f9655c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9e15f5ed-4d5d-4c86-b597-f75b92f9655c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ban K Water Well Services Ltd.\", \"street_address\": \"50025 Range Road 244\", \"city\": \"Leduc County\", \"province_state\": \"AB\", \"postal_code\": \"T4X 0N8\", \"main_tel\": \"(780) 986-6556\", \"fax_tel\": \"(780) 986-2677\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ban K Water Well Services Ltd."}}, {"model": "reversion.version", "pk": 325, "fields": {"revision": 325, "object_id": "9f2699c8-50ae-4cf8-9012-7a63277a3b30", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9f2699c8-50ae-4cf8-9012-7a63277a3b30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Moore's Well & Pump Servive Ltd.\", \"street_address\": \"45 Shuswap River Drive\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G6\", \"main_tel\": \"(250) 545-1045\", \"fax_tel\": \"(250) 547-9686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Moore's Well & Pump Servive Ltd."}}, {"model": "reversion.version", "pk": 326, "fields": {"revision": 326, "object_id": "a14f35d7-6d7e-420c-b2f5-be46e12b172c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a14f35d7-6d7e-420c-b2f5-be46e12b172c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Silver Valley Plumbing & Mechanical Ltd.\", \"street_address\": \"Box 21025, Maple Ridge Square\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2X 1P7\", \"main_tel\": \"(604) 467-8854\", \"fax_tel\": \"(604) 467-8854\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Silver Valley Plumbing & Mechanical Ltd."}}, {"model": "reversion.version", "pk": 327, "fields": {"revision": 327, "object_id": "a26e2b2e-ba3f-4e60-9d24-e25d217ea086", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a26e2b2e-ba3f-4e60-9d24-e25d217ea086\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"LC Holman Plumbing Services Ltd.\", \"street_address\": \"2715 Mountain Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6N3\", \"main_tel\": \"(250) 748-2351\", \"fax_tel\": \"(250) 748-8333\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "LC Holman Plumbing Services Ltd."}}, {"model": "reversion.version", "pk": 328, "fields": {"revision": 328, "object_id": "a2b50fcf-5302-48ef-b944-358016d41e70", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a2b50fcf-5302-48ef-b944-358016d41e70\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 329, "fields": {"revision": 329, "object_id": "a3288001-496e-4c5f-8eb4-72a5f148f1b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a3288001-496e-4c5f-8eb4-72a5f148f1b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Nanaimo Pump & Motor (2005) Ltd.\", \"street_address\": \"2445 Marlborough Drive\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9S 3J6\", \"main_tel\": \"(250) 668-2395\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Nanaimo Pump & Motor (2005) Ltd."}}, {"model": "reversion.version", "pk": 330, "fields": {"revision": 330, "object_id": "a4d38502-f52b-4e97-a920-9aef8409a447", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a4d38502-f52b-4e97-a920-9aef8409a447\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe Water Services\", \"street_address\": \"1541 Winchester Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y2\", \"main_tel\": \"(250) 752-4986\", \"fax_tel\": \"(250) 248-0830\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe Water Services"}}, {"model": "reversion.version", "pk": 331, "fields": {"revision": 331, "object_id": "a5868d04-8caf-4c91-bea0-46bee7510148", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a5868d04-8caf-4c91-bea0-46bee7510148\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 332, "fields": {"revision": 332, "object_id": "a5e8b50f-11cd-496d-a5bf-5cf8247b7d75", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a5e8b50f-11cd-496d-a5bf-5cf8247b7d75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Nelsen Plumbing\", \"street_address\": \"5852 Mason Road\", \"city\": \"Sechelt\", \"province_state\": \"BC\", \"postal_code\": \"V0N 3A8\", \"main_tel\": \"(604) 885-9754\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Nelsen Plumbing"}}, {"model": "reversion.version", "pk": 333, "fields": {"revision": 333, "object_id": "a61c2d3b-b0ad-4369-a016-3edfc162da99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a61c2d3b-b0ad-4369-a016-3edfc162da99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alliance Drilling\", \"street_address\": \"2985 Lakewood Place\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 6B1\", \"main_tel\": \"(250) 391-6107\", \"fax_tel\": \"(250) 391-6108\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alliance Drilling"}}, {"model": "reversion.version", "pk": 334, "fields": {"revision": 334, "object_id": "a63433ff-a660-4f93-9dda-4bb8e97f53d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a63433ff-a660-4f93-9dda-4bb8e97f53d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thomson Plumbing\", \"street_address\": \"Bag 9000, Suite 320\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 1S3\", \"main_tel\": \"(250) 832-5558\", \"fax_tel\": \"(250) 832-8699\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thomson Plumbing"}}, {"model": "reversion.version", "pk": 335, "fields": {"revision": 335, "object_id": "a6bee814-4824-4000-b4bf-991c575b43f0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a6bee814-4824-4000-b4bf-991c575b43f0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 336, "fields": {"revision": 336, "object_id": "a75cb95a-9d25-42c3-bb1b-0bc6c5fb6af2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a75cb95a-9d25-42c3-bb1b-0bc6c5fb6af2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 337, "fields": {"revision": 337, "object_id": "a85715cf-c963-4a54-8554-2127b4ad2ceb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a85715cf-c963-4a54-8554-2127b4ad2ceb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 3A1\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 338, "fields": {"revision": 338, "object_id": "a8879454-1d36-48a5-8456-8a7475f43591", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a8879454-1d36-48a5-8456-8a7475f43591\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Westbay Mechanical Ltd.\", \"street_address\": \"584 Ledsham Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 1J8\", \"main_tel\": \"(250) 478-8532\", \"fax_tel\": \"(250) 478-8964\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Westbay Mechanical Ltd."}}, {"model": "reversion.version", "pk": 339, "fields": {"revision": 339, "object_id": "a93ac922-af9f-4671-a247-5e325a36ce9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a93ac922-af9f-4671-a247-5e325a36ce9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gregg Drilling and Testing Canada Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"1-844-848-8684\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gregg Drilling and Testing Canada Ltd."}}, {"model": "reversion.version", "pk": 340, "fields": {"revision": 340, "object_id": "a9f3d658-3317-42c9-a72f-f00f631c6cc5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a9f3d658-3317-42c9-a72f-f00f631c6cc5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mo-Co Services\", \"street_address\": \"449 Mountain St.\", \"city\": \"Hinton\", \"province_state\": \"AB\", \"postal_code\": \"T7V 1K1\", \"main_tel\": \"(780) 817-4652\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mo-Co Services"}}, {"model": "reversion.version", "pk": 341, "fields": {"revision": 341, "object_id": "ab08861d-a0cf-4aea-a7d8-daa3d1f71fe9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ab08861d-a0cf-4aea-a7d8-daa3d1f71fe9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ross Pitt Plumbing\", \"street_address\": \"4211 Clubhouse Drive\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9T 4H8\", \"main_tel\": \"(250) 758-5655\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ross Pitt Plumbing"}}, {"model": "reversion.version", "pk": 342, "fields": {"revision": 342, "object_id": "ab6b92b1-d3ec-4ca7-b00e-b06943f126e0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ab6b92b1-d3ec-4ca7-b00e-b06943f126e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Source Drilling Ltd.\", \"street_address\": \"2307-39th Avenue\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1T 3B3\", \"main_tel\": \"(250) 275-0920\", \"fax_tel\": \"(250) 275-0921\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 343, "fields": {"revision": 343, "object_id": "ac586108-9272-44ee-aa8b-3e24beb9081e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ac586108-9272-44ee-aa8b-3e24beb9081e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"Plaza 33 RPO Box 23037\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7K7\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2589\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 344, "fields": {"revision": 344, "object_id": "af363d77-5256-4b81-8a88-e81056e0dfb8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"af363d77-5256-4b81-8a88-e81056e0dfb8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Triple S Service\", \"street_address\": \"Box 51\", \"city\": \"Anahim Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0L 1C0\", \"main_tel\": \"(250) 742-3773\", \"fax_tel\": \"(250) 742-3272\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Triple S Service"}}, {"model": "reversion.version", "pk": 345, "fields": {"revision": 345, "object_id": "af880b62-28a5-4001-a6e9-ca742b5731f2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"af880b62-28a5-4001-a6e9-ca742b5731f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Enterprises\", \"street_address\": \"PO Box 64 Squirrel Cove\", \"city\": \"Cortes Island\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1T0\", \"main_tel\": \"(250) 287-0278\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Enterprises"}}, {"model": "reversion.version", "pk": 346, "fields": {"revision": 346, "object_id": "afe8a94c-7352-4400-a293-849e56a18161", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"afe8a94c-7352-4400-a293-849e56a18161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Lewis G. Jones\", \"street_address\": \"45 Highland Drive\", \"city\": \"Burns Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1E1\", \"main_tel\": \"(250) 692-3553\", \"fax_tel\": \"(604) 692-3553\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Lewis G. Jones"}}, {"model": "reversion.version", "pk": 347, "fields": {"revision": 347, "object_id": "b02ed7f5-304a-40ac-be85-c63e3e6b3a26", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b02ed7f5-304a-40ac-be85-c63e3e6b3a26\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 348, "fields": {"revision": 348, "object_id": "b1c02a23-6a65-4e00-a327-b80cca992c1f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"Po. Box 189 Stn. Aldergrove\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 349, "fields": {"revision": 349, "object_id": "b39dc3e8-dad0-4a96-9fca-3c75dafc54b4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b39dc3e8-dad0-4a96-9fca-3c75dafc54b4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 350, "fields": {"revision": 350, "object_id": "b405fd40-35f5-4ff6-b570-4559dfaca861", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Robbins Drilling and Pump Ltd\", \"street_address\": \"Box 80, 1400 Green Lake Road\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-5303\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Robbins Drilling and Pump Ltd"}}, {"model": "reversion.version", "pk": 351, "fields": {"revision": 351, "object_id": "b43728b0-670a-4533-b038-3f12d4a7d9c8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b43728b0-670a-4533-b038-3f12d4a7d9c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Clear Blue Water Systems Ltd.\", \"street_address\": \"PO Box 148\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3737\", \"fax_tel\": \"(250) 827-3701\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Clear Blue Water Systems Ltd."}}, {"model": "reversion.version", "pk": 352, "fields": {"revision": 352, "object_id": "b45c1fe3-eb21-44b3-bc7d-03017f57838e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"Box 12006 RPO Murrayville; 23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 353, "fields": {"revision": 353, "object_id": "b64b45c3-76a0-440b-9378-2d8420438367", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b64b45c3-76a0-440b-9378-2d8420438367\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 354, "fields": {"revision": 354, "object_id": "b654742d-d3f4-48c5-a15c-7f467854fbc2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b654742d-d3f4-48c5-a15c-7f467854fbc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Marty's Plumbing\", \"street_address\": \"1813 Northfield Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9S 3B4\", \"main_tel\": \"(250) 741-4091\", \"fax_tel\": \"(250) 756-3049\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Marty's Plumbing"}}, {"model": "reversion.version", "pk": 355, "fields": {"revision": 355, "object_id": "b746436e-5b4c-4657-8e91-b11775c66110", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b746436e-5b4c-4657-8e91-b11775c66110\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Emco Corporation\", \"street_address\": \"1075 Henry Eng Place\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 6B2\", \"main_tel\": \"(250) 391-3050\", \"fax_tel\": \"(250) 475-6201\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Emco Corporation"}}, {"model": "reversion.version", "pk": 356, "fields": {"revision": 356, "object_id": "b749874e-9bd4-40c3-a0cf-fa2b58e75142", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b749874e-9bd4-40c3-a0cf-fa2b58e75142\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 357, "fields": {"revision": 357, "object_id": "b7e99e1f-a04f-47d0-82de-43274b27ff18", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b7e99e1f-a04f-47d0-82de-43274b27ff18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gopher Water Wells\", \"street_address\": \"Box 738\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-4367\", \"fax_tel\": \"(250) 398-6741\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gopher Water Wells"}}, {"model": "reversion.version", "pk": 358, "fields": {"revision": 358, "object_id": "b8422301-1ea9-4f96-bb25-40482b0a7574", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b8422301-1ea9-4f96-bb25-40482b0a7574\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 228-5553\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 359, "fields": {"revision": 359, "object_id": "b844c836-2309-489a-9443-5eb56097e77a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sea to Sky Geotechnical Drilling Ltd.\", \"street_address\": \"E2-225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 328-9568\", \"fax_tel\": \"(604) 939-5045\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sea to Sky Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 360, "fields": {"revision": 360, "object_id": "b8a2bf25-db9b-496d-9dd7-37a224016b68", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b8a2bf25-db9b-496d-9dd7-37a224016b68\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Joe The Plumber\", \"street_address\": \"PO Box 2483, 60 - 1400 12th Street North\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H1\", \"main_tel\": \"(250) 939-8584\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Joe The Plumber"}}, {"model": "reversion.version", "pk": 361, "fields": {"revision": 361, "object_id": "ba26826d-fd25-4c9d-92df-5660c256748b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ba26826d-fd25-4c9d-92df-5660c256748b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"The Pump Guy\", \"street_address\": \"Site 21, Comp 5; 620 Montague Road\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2393\", \"fax_tel\": \"(250) 539-5824\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "The Pump Guy"}}, {"model": "reversion.version", "pk": 362, "fields": {"revision": 362, "object_id": "bc95f097-6f98-4cfa-a353-e63f45a65c74", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bc95f097-6f98-4cfa-a353-e63f45a65c74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ingram Drilling Co. (1990) Ltd.\", \"street_address\": \"PO Box 4520\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3J8\", \"main_tel\": \"(250) 249-5292\", \"fax_tel\": \"(778) 414-9112\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ingram Drilling Co. (1990) Ltd."}}, {"model": "reversion.version", "pk": 363, "fields": {"revision": 363, "object_id": "bd45dbd7-834d-4a83-8c69-0136e78c5e16", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bd45dbd7-834d-4a83-8c69-0136e78c5e16\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 364, "fields": {"revision": 364, "object_id": "bde36b15-1b37-42c0-a510-4beb91141d1d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bde36b15-1b37-42c0-a510-4beb91141d1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cyclone Drilling Ltd.\", \"street_address\": \"2915 McAllister Road\", \"city\": \"Westbank\", \"province_state\": \"BC\", \"postal_code\": \"V4T 1G8\", \"main_tel\": \"(250) 768-7462\", \"fax_tel\": \"(250) 768-5424\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cyclone Drilling Ltd."}}, {"model": "reversion.version", "pk": 365, "fields": {"revision": 365, "object_id": "be5af669-279a-4f1a-aeca-bb71c9a7de8a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"be5af669-279a-4f1a-aeca-bb71c9a7de8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bernard Drilling\", \"street_address\": \"7160 Beaver Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E6\", \"main_tel\": \"(250) 963-9233\", \"fax_tel\": \"(250) 963-9233\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bernard Drilling"}}, {"model": "reversion.version", "pk": 366, "fields": {"revision": 366, "object_id": "beb4d625-ea19-4baf-94f1-73a95ba64369", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"beb4d625-ea19-4baf-94f1-73a95ba64369\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rockson's Plumbing & Heating Service Ltd.\", \"street_address\": \"3084 - 200th Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 8C8\", \"main_tel\": \"(604) 532-1216\", \"fax_tel\": \"(604) 532-1281\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rockson's Plumbing & Heating Service Ltd."}}, {"model": "reversion.version", "pk": 367, "fields": {"revision": 367, "object_id": "bf286f49-ca89-49c5-a9cf-62c2077c9ad5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bf286f49-ca89-49c5-a9cf-62c2077c9ad5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"Unit 150, 4611 Viking Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V2V 2K9\", \"main_tel\": \"(604) 273-5776\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 368, "fields": {"revision": 368, "object_id": "bf767aec-6c24-4e41-ada9-e264e160fb94", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bf767aec-6c24-4e41-ada9-e264e160fb94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hotearth Energy Systems\", \"street_address\": \"3560 Hallberg Road\", \"city\": \"Ladysmith\", \"province_state\": \"BC\", \"postal_code\": \"V9G 1L4\", \"main_tel\": \"(250) 245-5702\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hotearth Energy Systems"}}, {"model": "reversion.version", "pk": 369, "fields": {"revision": 369, "object_id": "bf94a8fb-f497-46a0-999d-0df85fbbf1a5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bf94a8fb-f497-46a0-999d-0df85fbbf1a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Pumps & Supplies\", \"street_address\": \"684 McCallum Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8A2\", \"main_tel\": \"(604) 302-1301\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Pumps & Supplies"}}, {"model": "reversion.version", "pk": 370, "fields": {"revision": 370, "object_id": "bfeec089-e2bd-4828-b18f-eed4f16d86ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 228-5553\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 371, "fields": {"revision": 371, "object_id": "c00887da-c892-43fd-99ea-d450d59467d3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c00887da-c892-43fd-99ea-d450d59467d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"Plaza 33 PO Box 23037\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7K7\", \"main_tel\": \"(778)753-2778\", \"fax_tel\": \"(778) 753-2779\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 372, "fields": {"revision": 372, "object_id": "c0f479ff-03b0-407f-a831-f3cdbf78f39d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c0f479ff-03b0-407f-a831-f3cdbf78f39d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 373, "fields": {"revision": 373, "object_id": "c15aba4f-49ed-451d-a38d-0c0f3103fd78", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c15aba4f-49ed-451d-a38d-0c0f3103fd78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.C.'s Waterworks Ltd.\", \"street_address\": \"Box 1866, 139 East 1st. Street\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A0\", \"main_tel\": \"(250) 567-5888\", \"fax_tel\": \"(250) 567-5885\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.C.'s Waterworks Ltd."}}, {"model": "reversion.version", "pk": 374, "fields": {"revision": 374, "object_id": "c345fb2e-8fa8-4250-956f-f04c907ba403", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c345fb2e-8fa8-4250-956f-f04c907ba403\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kootenay Well Service\", \"street_address\": \"714 Wycliffe Park Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1L 7C3\", \"main_tel\": \"(250) 489-1179\", \"fax_tel\": \"(250) 489-1379\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kootenay Well Service"}}, {"model": "reversion.version", "pk": 375, "fields": {"revision": 375, "object_id": "c4376219-711c-47bf-a890-00f8faec2587", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c4376219-711c-47bf-a890-00f8faec2587\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pepin Enterprises\", \"street_address\": \"25323 - 12th. Avenue\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 3N2\", \"main_tel\": \"(604) 856-8908\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pepin Enterprises"}}, {"model": "reversion.version", "pk": 376, "fields": {"revision": 376, "object_id": "c49516b4-8408-442f-a123-d919141f32f1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c49516b4-8408-442f-a123-d919141f32f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dewdney Enterprises Ltd.\", \"street_address\": \"35007 B Lougheed Hwy\", \"city\": \"Mission\", \"province_state\": \"BC\", \"postal_code\": \"V2V 6T1\", \"main_tel\": \"(604) 826-1771\", \"fax_tel\": \"(604) 820-9458\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dewdney Enterprises Ltd."}}, {"model": "reversion.version", "pk": 377, "fields": {"revision": 377, "object_id": "c623cf47-4fa1-4eb1-8caa-351625c8ff22", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c623cf47-4fa1-4eb1-8caa-351625c8ff22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Municipal Utilities Central Ltd.\", \"street_address\": \"Cell: (306) 531-7821\", \"city\": \"Craven\", \"province_state\": \"SK\", \"postal_code\": null, \"main_tel\": \"(306) 249-2959\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Municipal Utilities Central Ltd."}}, {"model": "reversion.version", "pk": 378, "fields": {"revision": 378, "object_id": "c701408f-ce39-477b-aad5-4805854e2a43", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c701408f-ce39-477b-aad5-4805854e2a43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Vanderkemp Sales & Service Ltd.\", \"street_address\": \"RR#1 - 7408 Hwy 101\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 4Z2\", \"main_tel\": \"(604) 485-9774\", \"fax_tel\": \"(604) 485-9717\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Vanderkemp Sales & Service Ltd."}}, {"model": "reversion.version", "pk": 379, "fields": {"revision": 379, "object_id": "c76e8fe3-0bd6-4f1f-9d05-f3667a4b3527", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c76e8fe3-0bd6-4f1f-9d05-f3667a4b3527\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqueduct Plumbing & Gas Fitting Ltd.\", \"street_address\": \"727-700 Ramage Close\", \"city\": \"Red Deer\", \"province_state\": \"AB\", \"postal_code\": \"T4P 3X8\", \"main_tel\": \"(403) 877-2230\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqueduct Plumbing & Gas Fitting Ltd."}}, {"model": "reversion.version", "pk": 380, "fields": {"revision": 380, "object_id": "c773e014-ad50-445c-8998-861f463b2a1e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c773e014-ad50-445c-8998-861f463b2a1e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"The Last Drop Water Systems\", \"street_address\": \"Box 635\", \"city\": \"Quathiaski Cove\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1N0\", \"main_tel\": \"(250) 285-3415\", \"fax_tel\": \"(250) 285-2893\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "The Last Drop Water Systems"}}, {"model": "reversion.version", "pk": 381, "fields": {"revision": 381, "object_id": "c7e17543-1e10-4ff1-afcf-cdfb93e21e20", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Albert Kaye & Sons Drilling Ltd.\", \"street_address\": \"200 Musgrave Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V5\", \"main_tel\": \"(250) 653-4757\", \"fax_tel\": \"(250) 653-4778\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Albert Kaye & Sons Drilling Ltd."}}, {"model": "reversion.version", "pk": 382, "fields": {"revision": 382, "object_id": "c7e79ef0-dcd7-4832-abc1-20d8548a3d74", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7e79ef0-dcd7-4832-abc1-20d8548a3d74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rob's Pump's 2000 Ltd.\", \"street_address\": \"2175 Blackwater Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 7C3\", \"main_tel\": \"(250) 992-5100\", \"fax_tel\": \"(250) 249-0255\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rob's Pump's 2000 Ltd."}}, {"model": "reversion.version", "pk": 383, "fields": {"revision": 383, "object_id": "c7f5c75f-4296-4e09-8243-71f3660541eb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7f5c75f-4296-4e09-8243-71f3660541eb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 384, "fields": {"revision": 384, "object_id": "c8177f21-a3fe-4034-b3cc-81acc8c6fa73", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c8177f21-a3fe-4034-b3cc-81acc8c6fa73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Savage Plumbing & Heating Ltd.\", \"street_address\": \"Box 741, 2330 Caughlin Road\", \"city\": \"Fruitvale\", \"province_state\": \"BC\", \"postal_code\": \"V0G 1L0\", \"main_tel\": \"(250) 367-9632\", \"fax_tel\": \"(250) 367-9622\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Savage Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 385, "fields": {"revision": 385, "object_id": "c8e718b1-1baa-4d1a-b49b-daa6bce8fddf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c8e718b1-1baa-4d1a-b49b-daa6bce8fddf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"10955 Buckhorn Lake Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6A9\", \"main_tel\": \"(250) 963-5651\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 386, "fields": {"revision": 386, "object_id": "c8eb928a-9250-4730-b984-9d5d89618c97", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c8eb928a-9250-4730-b984-9d5d89618c97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Central Interior Pumps Ltd.\", \"street_address\": \"PO Box 8448, Yellowhead Highway\", \"city\": \"Heffley Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1Z2\", \"main_tel\": \"(250) 578-7829\", \"fax_tel\": \"(250) 578-7863\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Central Interior Pumps Ltd."}}, {"model": "reversion.version", "pk": 387, "fields": {"revision": 387, "object_id": "c9742253-9924-40fa-8660-413742a47597", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c9742253-9924-40fa-8660-413742a47597\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Plateau Plumbing Heating & Gas\", \"street_address\": \"#3 Bear Cat Road\", \"city\": \"Royston\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2V0\", \"main_tel\": \"(250) 334-4988\", \"fax_tel\": \"(250) 334-4928\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Plateau Plumbing Heating & Gas"}}, {"model": "reversion.version", "pk": 388, "fields": {"revision": 388, "object_id": "c9da900f-f9bd-47b3-84de-75ab8ccd5e22", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c9da900f-f9bd-47b3-84de-75ab8ccd5e22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Boart Longyear\", \"street_address\": \"7067 194 B Street\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 5Z3\", \"main_tel\": \"(604) 831-7727\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Boart Longyear"}}, {"model": "reversion.version", "pk": 389, "fields": {"revision": 389, "object_id": "ca8ae50a-3523-4ed8-b303-e17207615d90", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ca8ae50a-3523-4ed8-b303-e17207615d90\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Crosby Plumbing and Aqua Service\", \"street_address\": \"14948 Braeside Road\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A2\", \"main_tel\": \"(250) 567-4127\", \"fax_tel\": \"(250) 567-5307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Crosby Plumbing and Aqua Service"}}, {"model": "reversion.version", "pk": 390, "fields": {"revision": 390, "object_id": "cac4bea2-1d19-4c01-9e5b-aebe32132a2b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cac4bea2-1d19-4c01-9e5b-aebe32132a2b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hopper Water Well Drilling Ltd.\", \"street_address\": \"16201 - 92 Street\", \"city\": \"Grand Prairie\", \"province_state\": \"AB\", \"postal_code\": \"T8V 2N8\", \"main_tel\": \"(780) 832-2400\", \"fax_tel\": \"(780) 538-9686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hopper Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 391, "fields": {"revision": 391, "object_id": "cb0fd36f-ee14-41d1-a721-16c03300decf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cb0fd36f-ee14-41d1-a721-16c03300decf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Well Drilling Ltd.\", \"street_address\": \"48987 Chilliwack Central Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H3\", \"main_tel\": \"(604) 794-5544\", \"fax_tel\": \"(604) 794-5545\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 392, "fields": {"revision": 392, "object_id": "cb3a5b70-bf72-4b6f-9f1b-f7fc975c12b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cb3a5b70-bf72-4b6f-9f1b-f7fc975c12b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 393, "fields": {"revision": 393, "object_id": "cbaa90d0-500f-4144-82f8-3d014556abb4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cbaa90d0-500f-4144-82f8-3d014556abb4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Jacob's Water Wells\", \"street_address\": \"Box 143; 15436 Bell Sub. Road 657\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3417\", \"fax_tel\": \"(250) 827-3417\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Jacob's Water Wells"}}, {"model": "reversion.version", "pk": 394, "fields": {"revision": 394, "object_id": "cc935960-ab63-4bc7-a6fb-87910aa14f5c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cc935960-ab63-4bc7-a6fb-87910aa14f5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 395, "fields": {"revision": 395, "object_id": "cdaca7cd-26f6-4d56-8894-b73ec8508036", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cdaca7cd-26f6-4d56-8894-b73ec8508036\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Integrity Drilling Inc.\", \"street_address\": \"6634 Highway 97A\", \"city\": \"Enderby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1V3\", \"main_tel\": \"(250) 833-2111\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Integrity Drilling Inc."}}, {"model": "reversion.version", "pk": 396, "fields": {"revision": 396, "object_id": "ce35efb2-c061-4e8c-af87-84bca40de1b4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ce35efb2-c061-4e8c-af87-84bca40de1b4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 397, "fields": {"revision": 397, "object_id": "cef8807e-51d8-4f16-ad48-bfb5287324cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cef8807e-51d8-4f16-ad48-bfb5287324cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stewart Drilling Ltd.\", \"street_address\": \"2041 14th Street S.W.\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 1L6\", \"main_tel\": \"(2500 832-4722\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stewart Drilling Ltd."}}, {"model": "reversion.version", "pk": 398, "fields": {"revision": 398, "object_id": "cf43d025-af77-436f-8b1b-e556d58fab45", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cf43d025-af77-436f-8b1b-e556d58fab45\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"(250) 962-9041\", \"fax_tel\": \"(250) 962-9046\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 399, "fields": {"revision": 399, "object_id": "d030bb92-e2db-4466-9514-abdb204fe8ad", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Valley H2O Well and Pump Service Ltd.\", \"street_address\": \"Box 895\", \"city\": \"Invermere\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1K0\", \"main_tel\": \"(250) 342-9466\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Valley H2O Well and Pump Service Ltd."}}, {"model": "reversion.version", "pk": 400, "fields": {"revision": 400, "object_id": "d16f6db7-a0ef-4b62-b338-f98fc667cbdc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d16f6db7-a0ef-4b62-b338-f98fc667cbdc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mearl's Machine Works Ltd.\", \"street_address\": \"1146 Richter Street\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1Y 2K7\", \"main_tel\": \"(250) 763-0109\", \"fax_tel\": \"(250) 763-5894\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mearl's Machine Works Ltd."}}, {"model": "reversion.version", "pk": 401, "fields": {"revision": 401, "object_id": "d1a18162-7452-499c-9e4d-fbb4db94aa5c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d1a18162-7452-499c-9e4d-fbb4db94aa5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud's Water Wells Ltd.\", \"street_address\": \"Box 3276\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(205) 573-3000\", \"fax_tel\": \"(250) 679-8423\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud's Water Wells Ltd."}}, {"model": "reversion.version", "pk": 402, "fields": {"revision": 402, "object_id": "d2991cc6-6cbe-40ac-966f-9ba3c2e826e0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d2991cc6-6cbe-40ac-966f-9ba3c2e826e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Big Al's Wells\", \"street_address\": \"Box 36\", \"city\": \"Big Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0L 1G0\", \"main_tel\": \"(250) 243-2346\", \"fax_tel\": \"(250) 243-2346\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Big Al's Wells"}}, {"model": "reversion.version", "pk": 403, "fields": {"revision": 403, "object_id": "d3cf5c40-7ab4-4b85-98f3-5c4d2c617f59", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d3cf5c40-7ab4-4b85-98f3-5c4d2c617f59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Drilling Services Ltd.\", \"street_address\": \"Box 4827\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 2V8\", \"main_tel\": \"(250) 392-2241\", \"fax_tel\": \"(250) 392-7979\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 404, "fields": {"revision": 404, "object_id": "d4087520-5586-43b0-9c30-3929a044b5aa", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d4087520-5586-43b0-9c30-3929a044b5aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gabriola Waterworks\", \"street_address\": \"915 Horseshoe Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X3\", \"main_tel\": \"(250) 247-8263\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gabriola Waterworks"}}, {"model": "reversion.version", "pk": 405, "fields": {"revision": 405, "object_id": "d41a11c9-c402-46f6-8db1-8967cb064fbe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d41a11c9-c402-46f6-8db1-8967cb064fbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 406, "fields": {"revision": 406, "object_id": "d5784d95-16a1-4d81-9ca4-2e4d9f3007c0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d5784d95-16a1-4d81-9ca4-2e4d9f3007c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"City of Kamloops\", \"street_address\": \"955 Concordia Way\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6V3\", \"main_tel\": \"(250) 828-3461\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "City of Kamloops"}}, {"model": "reversion.version", "pk": 407, "fields": {"revision": 407, "object_id": "d69509e0-37c6-43e1-ad0a-dd143874d795", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d69509e0-37c6-43e1-ad0a-dd143874d795\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 408, "fields": {"revision": 408, "object_id": "d76f6112-3f54-41f9-a7c5-46ccb1e331cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d76f6112-3f54-41f9-a7c5-46ccb1e331cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Vancouver Island Pump Service\", \"street_address\": \"3447 Island Highway West\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 2B7\", \"main_tel\": \"(250) 202-7494\", \"fax_tel\": \"(250) 923-5068\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Vancouver Island Pump Service"}}, {"model": "reversion.version", "pk": 409, "fields": {"revision": 409, "object_id": "d774d222-3ac1-4b9e-8207-ee66b54d6bdb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d774d222-3ac1-4b9e-8207-ee66b54d6bdb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"ABC Water Systems Ltd.\", \"street_address\": \"9 - 2180 South Wellington Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9X 1V8\", \"main_tel\": \"(250) 753-3333\", \"fax_tel\": \"(250) 753-3364\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "ABC Water Systems Ltd."}}, {"model": "reversion.version", "pk": 410, "fields": {"revision": 410, "object_id": "d8fcef10-e3ef-4f64-b306-3f64165db205", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d8fcef10-e3ef-4f64-b306-3f64165db205\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"7062 Hidden Valley Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 6X4\", \"main_tel\": \"(250) 426-5070\", \"fax_tel\": \"(250) 426-6997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 411, "fields": {"revision": 411, "object_id": "d9dbdc1b-7c24-49d3-a014-eb9562077eb9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d9dbdc1b-7c24-49d3-a014-eb9562077eb9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Carbon Mountain Drilling\", \"street_address\": \"Box 6383\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H8\", \"main_tel\": \"(250) 785-3598\", \"fax_tel\": \"(250) 785-9106\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Carbon Mountain Drilling"}}, {"model": "reversion.version", "pk": 412, "fields": {"revision": 412, "object_id": "d9e6c593-dee2-4b9c-bbdc-a10d872f570d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d9e6c593-dee2-4b9c-bbdc-a10d872f570d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Industrial Drillers Ltd.\", \"street_address\": \"16950 Hart Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5T1\", \"main_tel\": \"(250) 971-2422\", \"fax_tel\": \"(250) 971-2207\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Industrial Drillers Ltd."}}, {"model": "reversion.version", "pk": 413, "fields": {"revision": 413, "object_id": "d9efd570-71e5-4b03-af4d-58014fc1891e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d9efd570-71e5-4b03-af4d-58014fc1891e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Boomer Enterprises\", \"street_address\": \"S70 C16 RR2\", \"city\": \"Rock Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1Y0\", \"main_tel\": \"(250) 446-2520\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Boomer Enterprises"}}, {"model": "reversion.version", "pk": 414, "fields": {"revision": 414, "object_id": "dabd57fd-0c4e-472f-9846-f398172b3a94", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dabd57fd-0c4e-472f-9846-f398172b3a94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"10955 Buckhorn Lake Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6A9\", \"main_tel\": \"(250) 963-5651\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 415, "fields": {"revision": 415, "object_id": "dadf5f94-9427-4453-bd91-073b00a5213f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dadf5f94-9427-4453-bd91-073b00a5213f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fixology Repair Solutions\", \"street_address\": \"3653 Luxmoore Rd\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1W 4C7\", \"main_tel\": \"(250) 300-4738\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fixology Repair Solutions"}}, {"model": "reversion.version", "pk": 416, "fields": {"revision": 416, "object_id": "daeaa7af-d442-43a8-a049-3b77e2e4e24a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"daeaa7af-d442-43a8-a049-3b77e2e4e24a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Peters Well Drilling Ltd.\", \"street_address\": \"44160 Yale Road West\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 3Z9\", \"main_tel\": \"(604) 819-9355\", \"fax_tel\": \"(604) 792-6886\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Peters Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 417, "fields": {"revision": 417, "object_id": "db193fd3-8306-4446-b4e2-759a2a59a61f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db193fd3-8306-4446-b4e2-759a2a59a61f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe Well & Water Services\", \"street_address\": \"1541 Winchester Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y2\", \"main_tel\": \"(250) 752-4986\", \"fax_tel\": \"(250) 248-0830\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe Well & Water Services"}}, {"model": "reversion.version", "pk": 418, "fields": {"revision": 418, "object_id": "db6e8ab4-c6ea-4945-a7a7-6d95e85dd44f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db6e8ab4-c6ea-4945-a7a7-6d95e85dd44f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ministry of Agriculture\", \"street_address\": \"441 Columbia Street\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 2T3\", \"main_tel\": \"(250) 828-4514\", \"fax_tel\": \"(250) 828-4154\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ministry of Agriculture"}}, {"model": "reversion.version", "pk": 419, "fields": {"revision": 419, "object_id": "db93004d-4d4d-4120-80c4-4af0b6568050", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db93004d-4d4d-4120-80c4-4af0b6568050\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Y & R Water Sales & Services Inc.\", \"street_address\": \"Box 488 7708 Donaldson Drive\", \"city\": \"Grand Forks\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1H0\", \"main_tel\": \"(250) 442-5537\", \"fax_tel\": \"(250) 442-5547\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Y & R Water Sales & Services Inc."}}, {"model": "reversion.version", "pk": 420, "fields": {"revision": 420, "object_id": "dc23ff3a-c698-41ec-8f00-2862324dd048", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dc23ff3a-c698-41ec-8f00-2862324dd048\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 421, "fields": {"revision": 421, "object_id": "dc2b5154-723a-407c-b6cf-87e26f21868b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dc2b5154-723a-407c-b6cf-87e26f21868b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 422, "fields": {"revision": 422, "object_id": "dc62455c-650d-4e06-84be-0d0d8b94f517", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dc62455c-650d-4e06-84be-0d0d8b94f517\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Central Ltd. Partnership\", \"street_address\": \"Box 3202 1250 Dalhousie Dr.\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-5252\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Central Ltd. Partnership"}}, {"model": "reversion.version", "pk": 423, "fields": {"revision": 423, "object_id": "dca6898c-1633-4908-bf8b-c6c70e247b71", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dca6898c-1633-4908-bf8b-c6c70e247b71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 424, "fields": {"revision": 424, "object_id": "dcccca3e-0f56-4635-967c-597cd7b10b67", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dcccca3e-0f56-4635-967c-597cd7b10b67\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schibli Drilling\", \"street_address\": \"PO Box 725 17 Blue Springs Road\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G1\", \"main_tel\": \"(250) 547-9796\", \"fax_tel\": \"(250) 547-9725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schibli Drilling"}}, {"model": "reversion.version", "pk": 425, "fields": {"revision": 425, "object_id": "dd8d0b72-e8c9-471a-97d3-acd5da9f358d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dd8d0b72-e8c9-471a-97d3-acd5da9f358d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wild West Water Wells & Pump Service\", \"street_address\": \"1063 Simmons Road\", \"city\": \"Creston\", \"province_state\": \"BC\", \"postal_code\": \"V0B 1G7\", \"main_tel\": \"(250) 428-0137\", \"fax_tel\": \"(403) 912-7898\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wild West Water Wells & Pump Service"}}, {"model": "reversion.version", "pk": 426, "fields": {"revision": 426, "object_id": "ddf6ceb6-0852-44cd-a7f7-d94c46635a76", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ddf6ceb6-0852-44cd-a7f7-d94c46635a76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Carl Mellings Plumbing\", \"street_address\": \"4925 Conifer Way\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6J3\", \"main_tel\": \"(250) 748-3328\", \"fax_tel\": \"(250) 748-3358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Carl Mellings Plumbing"}}, {"model": "reversion.version", "pk": 427, "fields": {"revision": 427, "object_id": "df0f7c09-dded-458b-8a93-fe85b2370d14", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"df0f7c09-dded-458b-8a93-fe85b2370d14\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wallace Control Systems Corp.\", \"street_address\": \"65 Regina Avenue\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 1J2\", \"main_tel\": \"(250) 590-5501\", \"fax_tel\": \"(250) 590-5593\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wallace Control Systems Corp."}}, {"model": "reversion.version", "pk": 428, "fields": {"revision": 428, "object_id": "df87b7ec-ad77-4432-b6b1-6975ba926151", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"df87b7ec-ad77-4432-b6b1-6975ba926151\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canadian Western Mechanical Ltd.\", \"street_address\": \"884 Front Street\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 5Y3\", \"main_tel\": \"(250) 992-9807\", \"fax_tel\": \"(250) 992-9012\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canadian Western Mechanical Ltd."}}, {"model": "reversion.version", "pk": 429, "fields": {"revision": 429, "object_id": "e03c10e1-0a88-45b9-9545-03f8d1ac2061", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e03c10e1-0a88-45b9-9545-03f8d1ac2061\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tri-City Pumps & Power (2007) Ltd.\", \"street_address\": \"3583 South Slocan Village Road\", \"city\": \"Bonnington\", \"province_state\": \"BC\", \"postal_code\": \"V0G 2G3\", \"main_tel\": \"(250) 359-7166\", \"fax_tel\": \"(250) 359-7167\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tri-City Pumps & Power (2007) Ltd."}}, {"model": "reversion.version", "pk": 430, "fields": {"revision": 430, "object_id": "e0a6c3cf-7296-409a-a51c-a23c74f6c126", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0a6c3cf-7296-409a-a51c-a23c74f6c126\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Jacob's Water Wells\", \"street_address\": \"15436 Bell Sub. Road; Box 143\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3417\", \"fax_tel\": \"(250) 827-3417\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Jacob's Water Wells"}}, {"model": "reversion.version", "pk": 431, "fields": {"revision": 431, "object_id": "e0cb504a-8d8d-4764-a297-091e1e23870f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0cb504a-8d8d-4764-a297-091e1e23870f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 432, "fields": {"revision": 432, "object_id": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 433, "fields": {"revision": 433, "object_id": "e11b6781-167c-499f-824a-dffa1173ac59", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e11b6781-167c-499f-824a-dffa1173ac59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 434, "fields": {"revision": 434, "object_id": "e1219888-852c-456d-ab58-ea5917d5b782", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e1219888-852c-456d-ab58-ea5917d5b782\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Van Isle Water Service Ltd.\", \"street_address\": \"461 Dupplin Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 1B8\", \"main_tel\": \"(250) 383-7145\", \"fax_tel\": \"(250) 385-1216\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Van Isle Water Service Ltd."}}, {"model": "reversion.version", "pk": 435, "fields": {"revision": 435, "object_id": "e1468377-8147-4f82-a9e7-6a9d877aff5a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e1468377-8147-4f82-a9e7-6a9d877aff5a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canwest Well Drilling Ltd.\", \"street_address\": \"4606 Bowness Avenue\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 3S1\", \"main_tel\": \"(604) 485-4250\", \"fax_tel\": \"(604) 485-7630\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canwest Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 436, "fields": {"revision": 436, "object_id": "e3512ffd-f5aa-4757-bccd-592e9ecc7600", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Owen's Drilling Ltd.\", \"street_address\": \"Box 730, 541 Industrial Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J5\", \"main_tel\": \"(250) 426-2455\", \"fax_tel\": \"(250) 427-7419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Owen's Drilling Ltd."}}, {"model": "reversion.version", "pk": 437, "fields": {"revision": 437, "object_id": "e44840c0-fd41-42dd-b75e-243cf31f6844", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e44840c0-fd41-42dd-b75e-243cf31f6844\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5070\", \"fax_tel\": \"(250) 426-6997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 438, "fields": {"revision": 438, "object_id": "e4f3a7f5-a2e5-48ec-a55e-10b6b9a7ddd6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e4f3a7f5-a2e5-48ec-a55e-10b6b9a7ddd6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cronin Well Consulting Services\", \"street_address\": \"3076 Glendale Place\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7H1\", \"main_tel\": \"(604) 308-3165\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cronin Well Consulting Services"}}, {"model": "reversion.version", "pk": 439, "fields": {"revision": 439, "object_id": "e501fe14-d4a2-4579-96f6-66ebd9056742", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e501fe14-d4a2-4579-96f6-66ebd9056742\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dynamic Drilling Inc.\", \"street_address\": \"E2 - 225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 298-5943\", \"fax_tel\": \"(604) 936-7377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dynamic Drilling Inc."}}, {"model": "reversion.version", "pk": 440, "fields": {"revision": 440, "object_id": "e51471f9-1581-458f-8da5-64ebfea44397", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e51471f9-1581-458f-8da5-64ebfea44397\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Greg McRae Electric\", \"street_address\": \"RR#1\", \"city\": \"New Denver\", \"province_state\": \"BC\", \"postal_code\": \"V0G 1S0\", \"main_tel\": \"(250) 358-2623\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Greg McRae Electric"}}, {"model": "reversion.version", "pk": 441, "fields": {"revision": 441, "object_id": "e56ab542-a414-4de6-be90-f82d7065cad8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Well Drilling Ltd.\", \"street_address\": \"48987 Chilliwack Central Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H3\", \"main_tel\": \"(604) 794-5544\", \"fax_tel\": \"(604) 794-5545\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 442, "fields": {"revision": 442, "object_id": "e6902332-38d1-4048-ac87-4c8d886b2f9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e6902332-38d1-4048-ac87-4c8d886b2f9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gerry Hawkes Plumbing Ltd.\", \"street_address\": \"4660 Hillbank Road\", \"city\": \"Cowichan Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1N1\", \"main_tel\": \"(205) 748-0502\", \"fax_tel\": \"(250) 746-7917\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gerry Hawkes Plumbing Ltd."}}, {"model": "reversion.version", "pk": 443, "fields": {"revision": 443, "object_id": "e71f1293-033c-4449-a0a0-486096c0cd97", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e71f1293-033c-4449-a0a0-486096c0cd97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Langley Water Wells Ltd.\", \"street_address\": \"21416 32nd. Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2E7\", \"main_tel\": \"(604) 534-5675\", \"fax_tel\": \"(604) 534-9762\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Langley Water Wells Ltd."}}, {"model": "reversion.version", "pk": 444, "fields": {"revision": 444, "object_id": "e73b0d14-7527-4f4a-a5f4-29a71215cb3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dynamic Drilling Inc.\", \"street_address\": \"E2 - 225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 298-5943\", \"fax_tel\": \"(604) 936-7377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dynamic Drilling Inc."}}, {"model": "reversion.version", "pk": 445, "fields": {"revision": 445, "object_id": "e75724aa-1659-4bcb-9501-d15b54bb4b45", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e75724aa-1659-4bcb-9501-d15b54bb4b45\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services\", \"street_address\": \"3334 Sexsmith Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7S5\", \"main_tel\": \"(250) 765-2210\", \"fax_tel\": \"(250) 765-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services"}}, {"model": "reversion.version", "pk": 446, "fields": {"revision": 446, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 447, "fields": {"revision": 447, "object_id": "e8319f06-833d-4486-9d91-3f1cc5ca657b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e8319f06-833d-4486-9d91-3f1cc5ca657b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D. Borrill Electric\", \"street_address\": \"Box 1049\", \"city\": \"Barriere\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1E0\", \"main_tel\": \"(250) 672-9852\", \"fax_tel\": \"(250) 672-9853\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D. Borrill Electric"}}, {"model": "reversion.version", "pk": 448, "fields": {"revision": 448, "object_id": "e8f75bff-ad4f-461d-8f07-369ab120bb1b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e8f75bff-ad4f-461d-8f07-369ab120bb1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Big Country Pumps\", \"street_address\": \"Box 252, 2942 Kengin Road\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-3521\", \"fax_tel\": \"(250) 296-4703\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Big Country Pumps"}}, {"model": "reversion.version", "pk": 449, "fields": {"revision": 449, "object_id": "e9341701-7389-465a-ab44-8d331b6b2928", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9341701-7389-465a-ab44-8d331b6b2928\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Abercrombie Drilling\", \"street_address\": \"2405 Bush Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 4V9\", \"main_tel\": \"(250) 398-5315\", \"fax_tel\": \"(250) 398-5315\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Abercrombie Drilling"}}, {"model": "reversion.version", "pk": 450, "fields": {"revision": 450, "object_id": "e94b3f7f-abd3-440c-ab72-bca562cfeedf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e94b3f7f-abd3-440c-ab72-bca562cfeedf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5070\", \"fax_tel\": \"(250) 426-6997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 451, "fields": {"revision": 451, "object_id": "e9a3778c-0bc6-400c-a582-5a72f910f763", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Pump Service Ltd.\", \"street_address\": \"1139A Industrial Road #3\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 5E3\", \"main_tel\": \"(250) 426-4069\", \"fax_tel\": \"(250) 426-8425\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Pump Service Ltd."}}, {"model": "reversion.version", "pk": 452, "fields": {"revision": 452, "object_id": "e9c90a4e-f381-4f19-bfb4-33948c918072", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9c90a4e-f381-4f19-bfb4-33948c918072\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"North Cove Marine\", \"street_address\": \"Box 4-8\", \"city\": \"Thetis Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2Y0\", \"main_tel\": \"(250) 252-0144\", \"fax_tel\": \"(250) 246-2187\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "North Cove Marine"}}, {"model": "reversion.version", "pk": 453, "fields": {"revision": 453, "object_id": "e9ccfb88-a4ee-4e86-b85d-f701c1e5b8be", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9ccfb88-a4ee-4e86-b85d-f701c1e5b8be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Double D Drilling Ltd.\", \"street_address\": \"Box 766; 5275 Arthur Road\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4R1\", \"main_tel\": \"(250) 635-7877\", \"fax_tel\": \"(250) 635-7899\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Double D Drilling Ltd."}}, {"model": "reversion.version", "pk": 454, "fields": {"revision": 454, "object_id": "ea126b47-438d-4e2a-befc-76d77727544d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ea126b47-438d-4e2a-befc-76d77727544d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 455, "fields": {"revision": 455, "object_id": "ec39dbb1-c5a4-4567-b32c-fbf40231fc6e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Conetec Investigations Ltd.\", \"street_address\": \"12140 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1J8\", \"main_tel\": \"(604) 273-4311\", \"fax_tel\": \"(604) 273-4066\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Conetec Investigations Ltd."}}, {"model": "reversion.version", "pk": 456, "fields": {"revision": 456, "object_id": "ecdc289e-ff77-45ef-b1e4-6ef3dcda8940", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ecdc289e-ff77-45ef-b1e4-6ef3dcda8940\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"Po. Box 189 Stn. Aldergrove\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 457, "fields": {"revision": 457, "object_id": "ee03b1e3-a273-472b-8bd1-4f9de6d9488a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ee03b1e3-a273-472b-8bd1-4f9de6d9488a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Torry and Sons Plumbing & Heating Ltd.\", \"street_address\": \"731- 30th Street\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 7S7\", \"main_tel\": \"(250) 338-8865\", \"fax_tel\": \"(250) 338-8305\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Torry and Sons Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 458, "fields": {"revision": 458, "object_id": "eea40379-5510-4925-8b8f-bc640af1485c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"eea40379-5510-4925-8b8f-bc640af1485c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 459, "fields": {"revision": 459, "object_id": "f00f644f-6517-4069-bc45-72e2fbd60db5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f00f644f-6517-4069-bc45-72e2fbd60db5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 460, "fields": {"revision": 460, "object_id": "f1d1b9bd-1ca6-4f99-8fc1-273701feba27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f1d1b9bd-1ca6-4f99-8fc1-273701feba27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schibli Drilling\", \"street_address\": \"17 Blue Springs Road\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G1\", \"main_tel\": \"(250) 547-9796\", \"fax_tel\": \"(250) 547-9725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schibli Drilling"}}, {"model": "reversion.version", "pk": 461, "fields": {"revision": 461, "object_id": "f387c5b5-43c8-4bd5-b67f-4ef961b307c9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f387c5b5-43c8-4bd5-b67f-4ef961b307c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"G. Doran & Sons Plumbing & Heating Ltd.\", \"street_address\": \"PO Box 24\", \"city\": \"Mill Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2P0\", \"main_tel\": \"(250) 743-5493\", \"fax_tel\": \"(250) 733-2358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "G. Doran & Sons Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 462, "fields": {"revision": 462, "object_id": "f43e6842-3925-47b2-a279-7d2ada3bd429", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f43e6842-3925-47b2-a279-7d2ada3bd429\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Morrill's Water Well Drilling Ltd.\", \"street_address\": \"Site 422, Box 2, Comp 3, RR2\", \"city\": \"Drayton Valley\", \"province_state\": \"AB\", \"postal_code\": \"T7A 2A2\", \"main_tel\": \"(780) 542-5089\", \"fax_tel\": \"(780)-542-7696\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Morrill's Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 463, "fields": {"revision": 463, "object_id": "f4426285-d3d8-4a7e-8f26-5b044fe9a01c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f4426285-d3d8-4a7e-8f26-5b044fe9a01c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Blaeberry Valley Plumbing Ltd.\", \"street_address\": \"Box 69\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H0\", \"main_tel\": \"(250) 344-7209\", \"fax_tel\": \"(250) 344-7209\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Blaeberry Valley Plumbing Ltd."}}, {"model": "reversion.version", "pk": 464, "fields": {"revision": 464, "object_id": "f4605d57-b2e0-4656-bd06-50abfcaf6495", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f4605d57-b2e0-4656-bd06-50abfcaf6495\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Monashee Aquifer Testing\", \"street_address\": \"Box 752\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G0\", \"main_tel\": \"(250) 547-6845\", \"fax_tel\": \"(250) 547-6880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Monashee Aquifer Testing"}}, {"model": "reversion.version", "pk": 465, "fields": {"revision": 465, "object_id": "f464b624-a7b6-46c7-85a3-682cbc0ece33", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f464b624-a7b6-46c7-85a3-682cbc0ece33\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Geothermal Ltd.\", \"street_address\": \"36 Highway 97B\", \"city\": \"Enderby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1V3\", \"main_tel\": \"(250) 833-6126\", \"fax_tel\": \"(250) 838-0809\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Geothermal Ltd."}}, {"model": "reversion.version", "pk": 466, "fields": {"revision": 466, "object_id": "f5c48e7d-a093-47e5-a447-84c1eb6fcc5e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f5c48e7d-a093-47e5-a447-84c1eb6fcc5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tri-K Drilling Ltd.\", \"street_address\": \"3047 Glen Lake Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 4B3\", \"main_tel\": \"(250) 478-5064\", \"fax_tel\": \"(250) 478-2749\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tri-K Drilling Ltd."}}, {"model": "reversion.version", "pk": 467, "fields": {"revision": 467, "object_id": "f604b33f-5682-4a4c-8877-9912b36f7a3e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f604b33f-5682-4a4c-8877-9912b36f7a3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services\", \"street_address\": \"160-13511 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1K4\", \"main_tel\": \"(604) 214-7007\", \"fax_tel\": \"(604) 214-7017\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services"}}, {"model": "reversion.version", "pk": 468, "fields": {"revision": 468, "object_id": "f6f7f9f0-9ae7-4d38-836f-b6bca0a55849", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f6f7f9f0-9ae7-4d38-836f-b6bca0a55849\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Camfield Drilling Svcs. & G. Bland Consulting\", \"street_address\": \"1280 4th Ave. South\", \"city\": \"Lethbridge\", \"province_state\": \"AB\", \"postal_code\": \"T1J 0R2\", \"main_tel\": \"(403) 308-3827\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Camfield Drilling Svcs. & G. Bland Consulting"}}, {"model": "reversion.version", "pk": 469, "fields": {"revision": 469, "object_id": "f74a98d5-f04f-479e-9214-724773dac01a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f74a98d5-f04f-479e-9214-724773dac01a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Tech Services\", \"street_address\": \"5806 Farmers Drive\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1P 1A3\", \"main_tel\": \"(250) 765-4730\", \"fax_tel\": \"(250) 765-5801\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Tech Services"}}, {"model": "reversion.version", "pk": 470, "fields": {"revision": 470, "object_id": "f84510b9-7024-4dd3-a960-fcc9c4860e25", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f84510b9-7024-4dd3-a960-fcc9c4860e25\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canadian Quality Control inc.\", \"street_address\": \"2924 Piper Rd\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2H8\", \"main_tel\": \"778-340-9281\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canadian Quality Control inc."}}, {"model": "reversion.version", "pk": 471, "fields": {"revision": 471, "object_id": "f9b3177d-b70a-4279-aafb-af5101ff5dd9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f9b3177d-b70a-4279-aafb-af5101ff5dd9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"2153 25th Street South\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 6Y9\", \"main_tel\": \"(250) 426-0522\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 472, "fields": {"revision": 472, "object_id": "f9db27a1-2614-4e86-8710-e8b3fa232e63", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f9db27a1-2614-4e86-8710-e8b3fa232e63\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hopper Water Well Drilling Ltd.\", \"street_address\": \"16201 - 92 Street\", \"city\": \"Grand Prairie\", \"province_state\": \"AB\", \"postal_code\": \"T8V 2N8\", \"main_tel\": \"(780) 832-2400\", \"fax_tel\": \"(780) 538-9686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hopper Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 473, "fields": {"revision": 473, "object_id": "fa277082-4bbe-4729-8109-9919b2af5e8c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fa277082-4bbe-4729-8109-9919b2af5e8c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"C & A Plumbing & Heating Ltd\", \"street_address\": \"PO Box 1185\", \"city\": \"Houston\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1Z0\", \"main_tel\": \"(250) 845-2240\", \"fax_tel\": \"(250) 845-2604\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "C & A Plumbing & Heating Ltd"}}, {"model": "reversion.version", "pk": 474, "fields": {"revision": 474, "object_id": "fb19a62f-2cfc-44c6-851a-8ccc2c4ff3ff", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fb19a62f-2cfc-44c6-851a-8ccc2c4ff3ff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"1-740 Waddington Drive\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1T 9E9\", \"main_tel\": \"(250) 549-2393\", \"fax_tel\": \"(250) 549-3387\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 475, "fields": {"revision": 475, "object_id": "fbbee79b-8936-4860-9e6d-ce612bfd5c9b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fbbee79b-8936-4860-9e6d-ce612bfd5c9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dave's Bobcat Service\", \"street_address\": \"700 Georgia View Road\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2833\", \"fax_tel\": \"(250) 539-2833\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dave's Bobcat Service"}}, {"model": "reversion.version", "pk": 476, "fields": {"revision": 476, "object_id": "fc0362f4-dc04-4027-a6cd-c570d9e6629e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fc0362f4-dc04-4027-a6cd-c570d9e6629e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Town & Country Plumbing and Heating\", \"street_address\": \"Box 1049\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A0\", \"main_tel\": \"(250) 567-2971\", \"fax_tel\": \"(250) 567-2971\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Town & Country Plumbing and Heating"}}, {"model": "reversion.version", "pk": 477, "fields": {"revision": 477, "object_id": "fc1d143f-9ce8-40b5-ba79-811e955ea6e9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fc1d143f-9ce8-40b5-ba79-811e955ea6e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sun Waterwell Testing 546347 BC Ltd.\", \"street_address\": \"1581 16th Avenue S.E.\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2M7\", \"main_tel\": \"(250) 832-3742\", \"fax_tel\": \"(250) 832-3725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sun Waterwell Testing 546347 BC Ltd."}}, {"model": "reversion.version", "pk": 478, "fields": {"revision": 478, "object_id": "fc9ca319-ab37-46de-8656-e2bdc705bc4d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fc9ca319-ab37-46de-8656-e2bdc705bc4d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alliance Drilling\", \"street_address\": \"377 Crystal View Terrace\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 5S5\", \"main_tel\": \"(250) 391-6107\", \"fax_tel\": \"(250) 391-6108\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alliance Drilling"}}, {"model": "reversion.version", "pk": 479, "fields": {"revision": 479, "object_id": "fd1d3cd4-4684-464a-9989-391b33d2edfb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fd1d3cd4-4684-464a-9989-391b33d2edfb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 480, "fields": {"revision": 480, "object_id": "fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aaron Drilling\", \"street_address\": \"Box 28, Site 9, RR 1\", \"city\": \"Dewinton\", \"province_state\": \"AB\", \"postal_code\": \"T0L 0X0\", \"main_tel\": \"(403) 938-4961\", \"fax_tel\": \"(403) 938-3324\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aaron Drilling"}}, {"model": "reversion.version", "pk": 481, "fields": {"revision": 481, "object_id": "fe10a4b5-0fb7-411f-8fcb-e9a8b79149f5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe10a4b5-0fb7-411f-8fcb-e9a8b79149f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Southern Gulf Island Electric Ltd.\", \"street_address\": \"#35 3031 Williams Road\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V7E 1H9\", \"main_tel\": \"(250) 539-5859\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Southern Gulf Island Electric Ltd."}}, {"model": "reversion.version", "pk": 482, "fields": {"revision": 482, "object_id": "fe115afa-22d7-4976-8520-6ee16151c1f3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe115afa-22d7-4976-8520-6ee16151c1f3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6080\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 483, "fields": {"revision": 483, "object_id": "fe78f13e-24f3-451e-971a-a992cf901fdc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe78f13e-24f3-451e-971a-a992cf901fdc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Insitu Contractors Inc\", \"street_address\": \"48 Dawson Road\", \"city\": \"Guelph\", \"province_state\": \"ON\", \"postal_code\": \"N1H 5V1\", \"main_tel\": \"(519) 763-0700\", \"fax_tel\": \"(519) 763-6684\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Insitu Contractors Inc"}}, {"model": "reversion.version", "pk": 484, "fields": {"revision": 484, "object_id": "fe84a61a-7201-4ec6-ba35-a012542caf03", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe84a61a-7201-4ec6-ba35-a012542caf03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.W. Griffiths Ltd.\", \"street_address\": \"251 Government Street\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 1A6\", \"main_tel\": \"(250) 746-4534\", \"fax_tel\": \"(250) 748-8991\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.W. Griffiths Ltd."}}, {"model": "reversion.version", "pk": 485, "fields": {"revision": 485, "object_id": "fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Industrial Drillers Ltd.\", \"street_address\": \"16950 Hart Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5T1\", \"main_tel\": \"(250) 971-2422\", \"fax_tel\": \"(250) 971-2207\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Industrial Drillers Ltd."}}, {"model": "reversion.version", "pk": 486, "fields": {"revision": 486, "object_id": "ff4413e5-2732-44c1-a1ef-7d789940b3d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ff4413e5-2732-44c1-a1ef-7d789940b3d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Diverse Drilling Ltd.\", \"street_address\": \"Box 141\", \"city\": \"Bonanza\", \"province_state\": \"AB\", \"postal_code\": \"T0H 0K0\", \"main_tel\": \"(780) 353-2203\", \"fax_tel\": \"(780) 353-2208\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Diverse Drilling Ltd."}}, {"model": "reversion.version", "pk": 487, "fields": {"revision": 487, "object_id": "ff5fdbce-83ab-44ad-b8cc-4fc385c46f6f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ff5fdbce-83ab-44ad-b8cc-4fc385c46f6f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Suncoast Waterworks & Suncoast Pool and Spa\", \"street_address\": \"#8 5824 Sechelt Inlet Rd\", \"city\": \"Sechelt\", \"province_state\": \"BC\", \"postal_code\": \"V0N 3A3\", \"main_tel\": \"(604) 885-6127\", \"fax_tel\": \"(604) 648-9621\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Suncoast Waterworks & Suncoast Pool and Spa"}}, {"model": "reversion.version", "pk": 488, "fields": {"revision": 488, "object_id": "ff8a6226-06fa-4edb-b512-9efa0bc18cbd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ff8a6226-06fa-4edb-b512-9efa0bc18cbd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"City of Prince George\", \"street_address\": \"505 - 4th Avenue\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3H2\", \"main_tel\": \"(250) 561-7600\", \"fax_tel\": \"(250) 561-7519\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "City of Prince George"}}, {"model": "reversion.version", "pk": 489, "fields": {"revision": 489, "object_id": "00539ff4-c5aa-4e6c-9980-d1e5876a504e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"00539ff4-c5aa-4e6c-9980-d1e5876a504e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Woods\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Woods"}}, {"model": "reversion.version", "pk": 490, "fields": {"revision": 490, "object_id": "007293c3-37f7-402a-96fb-697eab3fab36", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"007293c3-37f7-402a-96fb-697eab3fab36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Justin\", \"surname\": \"Faasse\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Justin Faasse"}}, {"model": "reversion.version", "pk": 491, "fields": {"revision": 491, "object_id": "00bb67d0-359c-45c8-84b7-1ad60b24728b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"00bb67d0-359c-45c8-84b7-1ad60b24728b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darrin\", \"surname\": \"Grafton\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darrin Grafton"}}, {"model": "reversion.version", "pk": 492, "fields": {"revision": 492, "object_id": "01627627-8a6c-4130-a3fe-43005d225f6d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"01627627-8a6c-4130-a3fe-43005d225f6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Lamont\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Lamont"}}, {"model": "reversion.version", "pk": 493, "fields": {"revision": 493, "object_id": "01c69ede-3723-4941-a126-11ed51e9d63f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"01c69ede-3723-4941-a126-11ed51e9d63f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Luciano\", \"surname\": \"Brancato\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Luciano Brancato"}}, {"model": "reversion.version", "pk": 494, "fields": {"revision": 494, "object_id": "01cce4bf-18e6-423a-9b97-8dc7bc5e26de", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"01cce4bf-18e6-423a-9b97-8dc7bc5e26de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Traer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Traer"}}, {"model": "reversion.version", "pk": 495, "fields": {"revision": 495, "object_id": "01d6acb5-4300-455f-a0c6-d2c764e012d4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"01d6acb5-4300-455f-a0c6-d2c764e012d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"Anderson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan Anderson"}}, {"model": "reversion.version", "pk": 496, "fields": {"revision": 496, "object_id": "020d08cc-9635-4e0e-8769-85cdec84bb1b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"020d08cc-9635-4e0e-8769-85cdec84bb1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bernard\", \"surname\": \"Hopper\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bernard Hopper"}}, {"model": "reversion.version", "pk": 497, "fields": {"revision": 497, "object_id": "038743bd-f955-42f8-9d76-71204564ada3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"038743bd-f955-42f8-9d76-71204564ada3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rick\", \"surname\": \"Friedel\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rick Friedel"}}, {"model": "reversion.version", "pk": 498, "fields": {"revision": 498, "object_id": "0395f3c9-ec55-4a2a-8d86-1434600f1471", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0395f3c9-ec55-4a2a-8d86-1434600f1471\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Monte\", \"surname\": \"Ayre\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Monte Ayre"}}, {"model": "reversion.version", "pk": 499, "fields": {"revision": 499, "object_id": "04095839-0cc0-4023-ae57-17110b6fa4da", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"04095839-0cc0-4023-ae57-17110b6fa4da\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rick\", \"surname\": \"Morritt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rick Morritt"}}, {"model": "reversion.version", "pk": 500, "fields": {"revision": 500, "object_id": "05678190-895d-4bf2-8bf1-cedf611420e9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"05678190-895d-4bf2-8bf1-cedf611420e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Van Esch\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Van Esch"}}, {"model": "reversion.version", "pk": 501, "fields": {"revision": 501, "object_id": "0576404f-807e-4e93-b7ed-93c94d19d938", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0576404f-807e-4e93-b7ed-93c94d19d938\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lorne\", \"surname\": \"Bernard\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lorne Bernard"}}, {"model": "reversion.version", "pk": 502, "fields": {"revision": 502, "object_id": "057dfb07-d8ba-4f3f-bac4-a0c82cc12347", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"057dfb07-d8ba-4f3f-bac4-a0c82cc12347\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Logan\", \"surname\": \"Flett\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Logan Flett"}}, {"model": "reversion.version", "pk": 503, "fields": {"revision": 503, "object_id": "05c2a674-b889-46dd-95f2-5d1fe96d6e87", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"05c2a674-b889-46dd-95f2-5d1fe96d6e87\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Reed\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Reed"}}, {"model": "reversion.version", "pk": 504, "fields": {"revision": 504, "object_id": "060d7343-f2c7-4707-86bc-1caab97c49a7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"060d7343-f2c7-4707-86bc-1caab97c49a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lewis\", \"surname\": \"Jones\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lewis Jones"}}, {"model": "reversion.version", "pk": 505, "fields": {"revision": 505, "object_id": "06182653-b0b3-491e-b58d-3688794f8a86", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"06182653-b0b3-491e-b58d-3688794f8a86\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Sian\", \"surname\": \"Mallett\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Sian Mallett"}}, {"model": "reversion.version", "pk": 506, "fields": {"revision": 506, "object_id": "06366eb8-7037-4580-9eee-1e212975aa30", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"06366eb8-7037-4580-9eee-1e212975aa30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert D.\", \"surname\": \"Faasse\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert D. Faasse"}}, {"model": "reversion.version", "pk": 507, "fields": {"revision": 507, "object_id": "064a95be-0a10-4f82-bb50-80e78521cc82", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"064a95be-0a10-4f82-bb50-80e78521cc82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Josef\", \"surname\": \"Hartl\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Josef Hartl"}}, {"model": "reversion.version", "pk": 508, "fields": {"revision": 508, "object_id": "065f85b5-f327-46ce-a928-2cb157687ee6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"065f85b5-f327-46ce-a928-2cb157687ee6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Henry\", \"surname\": \"Taylor\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Henry Taylor"}}, {"model": "reversion.version", "pk": 509, "fields": {"revision": 509, "object_id": "0746fe32-cd9c-40b8-ba6a-4d79cf53427c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0746fe32-cd9c-40b8-ba6a-4d79cf53427c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Vanderkemp\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Vanderkemp"}}, {"model": "reversion.version", "pk": 510, "fields": {"revision": 510, "object_id": "078ea11f-9b0a-44d2-8d44-b7342a3f6ae2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"078ea11f-9b0a-44d2-8d44-b7342a3f6ae2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Hank\", \"surname\": \"Unrau\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Hank Unrau"}}, {"model": "reversion.version", "pk": 511, "fields": {"revision": 511, "object_id": "085d70f7-bba2-4215-9875-4217167c2c79", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"085d70f7-bba2-4215-9875-4217167c2c79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andrew\", \"surname\": \"Petersen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andrew Petersen"}}, {"model": "reversion.version", "pk": 512, "fields": {"revision": 512, "object_id": "086e2e60-e861-4cf6-890a-12d625baba33", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"086e2e60-e861-4cf6-890a-12d625baba33\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Farina\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Farina"}}, {"model": "reversion.version", "pk": 513, "fields": {"revision": 513, "object_id": "08a6dd4d-d09a-4ff3-a7f1-646a3052f969", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"08a6dd4d-d09a-4ff3-a7f1-646a3052f969\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jerry\", \"surname\": \"LaBrie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jerry LaBrie"}}, {"model": "reversion.version", "pk": 514, "fields": {"revision": 514, "object_id": "08cb0953-bd0c-4b81-8580-59b2057f32a8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"08cb0953-bd0c-4b81-8580-59b2057f32a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bruce\", \"surname\": \"Haynes\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bruce Haynes"}}, {"model": "reversion.version", "pk": 515, "fields": {"revision": 515, "object_id": "08e0cb8b-6651-4c81-9362-2ea44ba43f18", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"08e0cb8b-6651-4c81-9362-2ea44ba43f18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Slade\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Slade"}}, {"model": "reversion.version", "pk": 516, "fields": {"revision": 516, "object_id": "090bc97e-2782-467b-911e-4eeab9fdec3d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"090bc97e-2782-467b-911e-4eeab9fdec3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Tom\", \"surname\": \"Fyfe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Tom Fyfe"}}, {"model": "reversion.version", "pk": 517, "fields": {"revision": 517, "object_id": "0a02fb00-edc2-424d-b838-97f3f0ffb747", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0a02fb00-edc2-424d-b838-97f3f0ffb747\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Patrick\", \"surname\": \"Doorn\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Patrick Doorn"}}, {"model": "reversion.version", "pk": 518, "fields": {"revision": 518, "object_id": "0a945ebb-0c86-461a-9a54-ab5cd4cf53e8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0a945ebb-0c86-461a-9a54-ab5cd4cf53e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chuck\", \"surname\": \"Hagan\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chuck Hagan"}}, {"model": "reversion.version", "pk": 519, "fields": {"revision": 519, "object_id": "0ac1e04a-ce14-436e-8be4-9a7ef563b653", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0ac1e04a-ce14-436e-8be4-9a7ef563b653\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Cameron\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Cameron"}}, {"model": "reversion.version", "pk": 520, "fields": {"revision": 520, "object_id": "0befc3f5-14c4-42d9-8893-f8efd4275a3a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0befc3f5-14c4-42d9-8893-f8efd4275a3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Fred\", \"surname\": \"Cudlipp\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Fred Cudlipp"}}, {"model": "reversion.version", "pk": 521, "fields": {"revision": 521, "object_id": "0bf4b190-5f80-4161-afba-9013f683d7aa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0bf4b190-5f80-4161-afba-9013f683d7aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Glen\", \"surname\": \"Furey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Glen Furey"}}, {"model": "reversion.version", "pk": 522, "fields": {"revision": 522, "object_id": "0c023913-70a0-4a98-a999-17c117b410e0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0c023913-70a0-4a98-a999-17c117b410e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Brousseau\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Brousseau"}}, {"model": "reversion.version", "pk": 523, "fields": {"revision": 523, "object_id": "0ceb7849-d58b-4945-8bd9-a0de6c60e5c0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0ceb7849-d58b-4945-8bd9-a0de6c60e5c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Travis\", \"surname\": \"Maier\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Travis Maier"}}, {"model": "reversion.version", "pk": 524, "fields": {"revision": 524, "object_id": "0cf5d245-5185-48e3-9606-89311b5f694e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0cf5d245-5185-48e3-9606-89311b5f694e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Ward\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Ward"}}, {"model": "reversion.version", "pk": 525, "fields": {"revision": 525, "object_id": "0d046036-2d64-47a7-971c-240b3695b5c8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0d046036-2d64-47a7-971c-240b3695b5c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"McDonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John McDonald"}}, {"model": "reversion.version", "pk": 526, "fields": {"revision": 526, "object_id": "0e7b8596-dea2-4e64-b032-bba50e152cad", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0e7b8596-dea2-4e64-b032-bba50e152cad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Meier\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Meier"}}, {"model": "reversion.version", "pk": 527, "fields": {"revision": 527, "object_id": "0e7d6f67-d12b-41ef-943d-85b624612165", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"0e7d6f67-d12b-41ef-943d-85b624612165\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Aaron\", \"surname\": \"Goeson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Aaron Goeson"}}, {"model": "reversion.version", "pk": 528, "fields": {"revision": 528, "object_id": "1095f64b-6836-4b2a-a1a9-308542667551", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1095f64b-6836-4b2a-a1a9-308542667551\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wesley\", \"surname\": \"Mulvin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wesley Mulvin"}}, {"model": "reversion.version", "pk": 529, "fields": {"revision": 529, "object_id": "10965b64-c5c4-4760-a5d8-f1dd9a81a291", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"10965b64-c5c4-4760-a5d8-f1dd9a81a291\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Krushen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Krushen"}}, {"model": "reversion.version", "pk": 530, "fields": {"revision": 530, "object_id": "128566fd-f348-47f9-bc65-3ae0c0b4b53a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"128566fd-f348-47f9-bc65-3ae0c0b4b53a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Russ\", \"surname\": \"Batyi\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Russ Batyi"}}, {"model": "reversion.version", "pk": 531, "fields": {"revision": 531, "object_id": "12e11737-9c7d-4591-ab9c-4c37f1d38e28", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"12e11737-9c7d-4591-ab9c-4c37f1d38e28\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Otto\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Otto"}}, {"model": "reversion.version", "pk": 532, "fields": {"revision": 532, "object_id": "138e448d-6a48-49cf-832f-846ea95c5c08", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"138e448d-6a48-49cf-832f-846ea95c5c08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Patrick\", \"surname\": \"Price\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Patrick Price"}}, {"model": "reversion.version", "pk": 533, "fields": {"revision": 533, "object_id": "13feb07a-b191-442a-8f2d-abbfa6b2f426", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"13feb07a-b191-442a-8f2d-abbfa6b2f426\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Vandal\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Vandal"}}, {"model": "reversion.version", "pk": 534, "fields": {"revision": 534, "object_id": "149277aa-1810-473c-9336-431ff7000c88", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"149277aa-1810-473c-9336-431ff7000c88\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jim\", \"surname\": \"Murdock\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jim Murdock"}}, {"model": "reversion.version", "pk": 535, "fields": {"revision": 535, "object_id": "149aa037-ef2a-4392-a793-d21e74a912f5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"149aa037-ef2a-4392-a793-d21e74a912f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wayne\", \"surname\": \"Dunn\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wayne Dunn"}}, {"model": "reversion.version", "pk": 536, "fields": {"revision": 536, "object_id": "14dd07a9-22b7-4d0a-a187-3d6e85a89c53", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"14dd07a9-22b7-4d0a-a187-3d6e85a89c53\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Garfield\", \"surname\": \"Bland\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Garfield Bland"}}, {"model": "reversion.version", "pk": 537, "fields": {"revision": 537, "object_id": "155c9e12-020a-4fda-ac4f-7200b349acc0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"155c9e12-020a-4fda-ac4f-7200b349acc0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"Grossler\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas Grossler"}}, {"model": "reversion.version", "pk": 538, "fields": {"revision": 538, "object_id": "163253cc-907c-49b0-a649-616ae4f0f8ad", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"163253cc-907c-49b0-a649-616ae4f0f8ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Matthew\", \"surname\": \"Spooner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Matthew Spooner"}}, {"model": "reversion.version", "pk": 539, "fields": {"revision": 539, "object_id": "172c81ac-14c0-438d-98b4-45630fe04988", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"172c81ac-14c0-438d-98b4-45630fe04988\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kelvin\", \"surname\": \"Marte\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kelvin Marte"}}, {"model": "reversion.version", "pk": 540, "fields": {"revision": 540, "object_id": "17f5d700-7a18-45ca-984d-d859c09e3b4d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"17f5d700-7a18-45ca-984d-d859c09e3b4d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Thomas\", \"surname\": \"Curial\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Thomas Curial"}}, {"model": "reversion.version", "pk": 541, "fields": {"revision": 541, "object_id": "18888462-fb05-4dbb-b157-572b4e8ea814", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"18888462-fb05-4dbb-b157-572b4e8ea814\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Donald\", \"surname\": \"Abercrombie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Donald Abercrombie"}}, {"model": "reversion.version", "pk": 542, "fields": {"revision": 542, "object_id": "18a627bb-62e7-407a-8731-777693c39062", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"18a627bb-62e7-407a-8731-777693c39062\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Donald\", \"surname\": \"Romses\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Donald Romses"}}, {"model": "reversion.version", "pk": 543, "fields": {"revision": 543, "object_id": "1986b832-63bd-4669-a2af-cea012ae040e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1986b832-63bd-4669-a2af-cea012ae040e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard (Dick)\", \"surname\": \"Ford\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard (Dick) Ford"}}, {"model": "reversion.version", "pk": 544, "fields": {"revision": 544, "object_id": "19be35f8-e027-472d-bb97-f5d70fa02b62", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"19be35f8-e027-472d-bb97-f5d70fa02b62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Merv\", \"surname\": \"Porteous\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Merv Porteous"}}, {"model": "reversion.version", "pk": 545, "fields": {"revision": 545, "object_id": "1a42325f-f55c-4e11-b48e-0e406ada8312", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1a42325f-f55c-4e11-b48e-0e406ada8312\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chris\", \"surname\": \"Davies\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chris Davies"}}, {"model": "reversion.version", "pk": 546, "fields": {"revision": 546, "object_id": "1ae6944d-aca9-4cd8-b8de-ae6a717b4117", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1ae6944d-aca9-4cd8-b8de-ae6a717b4117\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mark\", \"surname\": \"Loftus\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mark Loftus"}}, {"model": "reversion.version", "pk": 547, "fields": {"revision": 547, "object_id": "1ba48c4c-2de3-440b-be2c-0a5f9f6e4471", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1ba48c4c-2de3-440b-be2c-0a5f9f6e4471\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Laverne\", \"surname\": \"Sharp\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Laverne Sharp"}}, {"model": "reversion.version", "pk": 548, "fields": {"revision": 548, "object_id": "1cb92d8c-a9aa-4290-9575-7951a225664a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1cb92d8c-a9aa-4290-9575-7951a225664a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kevin\", \"surname\": \"Silvestri\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kevin Silvestri"}}, {"model": "reversion.version", "pk": 549, "fields": {"revision": 549, "object_id": "1cc32a16-1631-4f61-8782-35e6f26aac85", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1cc32a16-1631-4f61-8782-35e6f26aac85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Jarratt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Jarratt"}}, {"model": "reversion.version", "pk": 550, "fields": {"revision": 550, "object_id": "1d8c4da1-3d00-45db-b034-855007e32f6e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1d8c4da1-3d00-45db-b034-855007e32f6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Chamberlayne\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Chamberlayne"}}, {"model": "reversion.version", "pk": 551, "fields": {"revision": 551, "object_id": "1dd440ef-c84c-4ee3-a107-c3096368d812", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1dd440ef-c84c-4ee3-a107-c3096368d812\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ian\", \"surname\": \"McGill\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ian McGill"}}, {"model": "reversion.version", "pk": 552, "fields": {"revision": 552, "object_id": "1de618d7-9a22-4dfe-ae31-c16e86f7da8c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1de618d7-9a22-4dfe-ae31-c16e86f7da8c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Riley\", \"surname\": \"Pearson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Riley Pearson"}}, {"model": "reversion.version", "pk": 553, "fields": {"revision": 553, "object_id": "1e564444-92bd-4802-8d25-3bf96809ff94", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1e564444-92bd-4802-8d25-3bf96809ff94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Garthwaite\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Garthwaite"}}, {"model": "reversion.version", "pk": 554, "fields": {"revision": 554, "object_id": "1f2ee20f-f4dc-4886-a803-2cfcd7859923", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1f2ee20f-f4dc-4886-a803-2cfcd7859923\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Parkinson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Parkinson"}}, {"model": "reversion.version", "pk": 555, "fields": {"revision": 555, "object_id": "1f4b4a58-72ae-4a33-94ab-ea4875231fbe", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1f4b4a58-72ae-4a33-94ab-ea4875231fbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jonathan\", \"surname\": \"Gilbert\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jonathan Gilbert"}}, {"model": "reversion.version", "pk": 556, "fields": {"revision": 556, "object_id": "1ff3cf1f-a1a8-425d-b587-fb3c418b0aff", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"1ff3cf1f-a1a8-425d-b587-fb3c418b0aff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Charles\", \"surname\": \"Reitsma\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Charles Reitsma"}}, {"model": "reversion.version", "pk": 557, "fields": {"revision": 557, "object_id": "2059b47e-89e5-4f08-b98b-99f58f38aeac", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2059b47e-89e5-4f08-b98b-99f58f38aeac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ronald\", \"surname\": \"James\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ronald James"}}, {"model": "reversion.version", "pk": 558, "fields": {"revision": 558, "object_id": "20f25c99-676e-4d00-8963-bb77d90e469a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"20f25c99-676e-4d00-8963-bb77d90e469a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Tim\", \"surname\": \"Martin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Tim Martin"}}, {"model": "reversion.version", "pk": 559, "fields": {"revision": 559, "object_id": "213411cd-758c-45f5-b089-2c81a1d7d07a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"213411cd-758c-45f5-b089-2c81a1d7d07a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"Prohl\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas Prohl"}}, {"model": "reversion.version", "pk": 560, "fields": {"revision": 560, "object_id": "2148beea-d5f7-4802-811a-a3f4e8ccd718", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2148beea-d5f7-4802-811a-a3f4e8ccd718\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chris\", \"surname\": \"Barling\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chris Barling"}}, {"model": "reversion.version", "pk": 561, "fields": {"revision": 561, "object_id": "2197ab26-b252-45ea-b776-127e8dbbd33f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2197ab26-b252-45ea-b776-127e8dbbd33f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jim\", \"surname\": \"Skiba\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jim Skiba"}}, {"model": "reversion.version", "pk": 562, "fields": {"revision": 562, "object_id": "219f297c-5da7-41d1-8e30-5983658022e9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"219f297c-5da7-41d1-8e30-5983658022e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"George\", \"surname\": \"Gottschall\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "George Gottschall"}}, {"model": "reversion.version", "pk": 563, "fields": {"revision": 563, "object_id": "22c27ac8-890a-48aa-98e5-69a7bc13b8fc", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"22c27ac8-890a-48aa-98e5-69a7bc13b8fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ben\", \"surname\": \"Dixon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ben Dixon"}}, {"model": "reversion.version", "pk": 564, "fields": {"revision": 564, "object_id": "234cd139-4808-4d67-9642-234e89ed4c47", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"234cd139-4808-4d67-9642-234e89ed4c47\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kelly\", \"surname\": \"Sorenson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kelly Sorenson"}}, {"model": "reversion.version", "pk": 565, "fields": {"revision": 565, "object_id": "259c3b9a-5dbe-4a4c-97d0-0375e737879b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"259c3b9a-5dbe-4a4c-97d0-0375e737879b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jason\", \"surname\": \"Schmidt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jason Schmidt"}}, {"model": "reversion.version", "pk": 566, "fields": {"revision": 566, "object_id": "263248be-9401-41b8-8d81-e919b99138e1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"263248be-9401-41b8-8d81-e919b99138e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Brown\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Brown"}}, {"model": "reversion.version", "pk": 567, "fields": {"revision": 567, "object_id": "263de7d5-9151-466a-ac75-6a64622267db", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"263de7d5-9151-466a-ac75-6a64622267db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kirk\", \"surname\": \"Domino\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kirk Domino"}}, {"model": "reversion.version", "pk": 568, "fields": {"revision": 568, "object_id": "266bc925-b365-4279-8f47-143246215676", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"266bc925-b365-4279-8f47-143246215676\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brennan\", \"surname\": \"McMahon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brennan McMahon"}}, {"model": "reversion.version", "pk": 569, "fields": {"revision": 569, "object_id": "268daf60-b6c4-4d20-a85c-0e6860597b38", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"268daf60-b6c4-4d20-a85c-0e6860597b38\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Craig\", \"surname\": \"Spooner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Craig Spooner"}}, {"model": "reversion.version", "pk": 570, "fields": {"revision": 570, "object_id": "26f75544-8ac7-493d-98e8-6b44d576e9b0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"26f75544-8ac7-493d-98e8-6b44d576e9b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Carl\", \"surname\": \"Mellings\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Carl Mellings"}}, {"model": "reversion.version", "pk": 571, "fields": {"revision": 571, "object_id": "2728b074-d9d5-4bc2-bc82-3b3124f2f365", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2728b074-d9d5-4bc2-bc82-3b3124f2f365\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Jones\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Jones"}}, {"model": "reversion.version", "pk": 572, "fields": {"revision": 572, "object_id": "27ccc24f-1b1a-436f-ba35-799b8e712478", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"27ccc24f-1b1a-436f-ba35-799b8e712478\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Alan\", \"surname\": \"Holmstrup\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Alan Holmstrup"}}, {"model": "reversion.version", "pk": 573, "fields": {"revision": 573, "object_id": "280b9848-a3f4-4434-a3ea-75588c0cc20f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"280b9848-a3f4-4434-a3ea-75588c0cc20f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cheryl\", \"surname\": \"Faasse\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cheryl Faasse"}}, {"model": "reversion.version", "pk": 574, "fields": {"revision": 574, "object_id": "2865f2fc-7ce5-486e-a8e4-5cce33f55bab", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2865f2fc-7ce5-486e-a8e4-5cce33f55bab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Julian (Brad)\", \"surname\": \"Lockett\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Julian (Brad) Lockett"}}, {"model": "reversion.version", "pk": 575, "fields": {"revision": 575, "object_id": "287e166d-be09-4f50-9f5d-be3b2ea29a0d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"287e166d-be09-4f50-9f5d-be3b2ea29a0d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Peck\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Peck"}}, {"model": "reversion.version", "pk": 576, "fields": {"revision": 576, "object_id": "289d196a-bdab-4078-8312-eee9058deedf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"289d196a-bdab-4078-8312-eee9058deedf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Donald\", \"surname\": \"Stober\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Donald Stober"}}, {"model": "reversion.version", "pk": 577, "fields": {"revision": 577, "object_id": "28c34298-1a99-4c0e-b13e-3420a37736a9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"28c34298-1a99-4c0e-b13e-3420a37736a9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ken\", \"surname\": \"Smithson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ken Smithson"}}, {"model": "reversion.version", "pk": 578, "fields": {"revision": 578, "object_id": "28ca6564-74cf-482e-9881-523f11da9ad6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"28ca6564-74cf-482e-9881-523f11da9ad6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Shane\", \"surname\": \"Black\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Shane Black"}}, {"model": "reversion.version", "pk": 579, "fields": {"revision": 579, "object_id": "290e6246-1197-4271-be0a-f6d66cc6ffb1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"290e6246-1197-4271-be0a-f6d66cc6ffb1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"March\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David March"}}, {"model": "reversion.version", "pk": 580, "fields": {"revision": 580, "object_id": "291b44d4-078a-4429-b4d0-8eaff623cf08", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"291b44d4-078a-4429-b4d0-8eaff623cf08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andrew\", \"surname\": \"Wannop\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andrew Wannop"}}, {"model": "reversion.version", "pk": 581, "fields": {"revision": 581, "object_id": "291d9b46-a7bd-455a-a923-0c6193cde190", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"291d9b46-a7bd-455a-a923-0c6193cde190\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Lauckner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Lauckner"}}, {"model": "reversion.version", "pk": 582, "fields": {"revision": 582, "object_id": "2971db1a-3d39-4c43-b6b7-411a03fa5be2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2971db1a-3d39-4c43-b6b7-411a03fa5be2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Mankowski\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Mankowski"}}, {"model": "reversion.version", "pk": 583, "fields": {"revision": 583, "object_id": "297239ce-ad82-4512-85cb-37976e65e6c1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"297239ce-ad82-4512-85cb-37976e65e6c1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ken\", \"surname\": \"Slade\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ken Slade"}}, {"model": "reversion.version", "pk": 584, "fields": {"revision": 584, "object_id": "29a58c5c-f128-4ac3-9b71-150bd7a495fa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"29a58c5c-f128-4ac3-9b71-150bd7a495fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brent\", \"surname\": \"Eisner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brent Eisner"}}, {"model": "reversion.version", "pk": 585, "fields": {"revision": 585, "object_id": "2a20ce56-7710-4cb4-af72-92e27ea41d81", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2a20ce56-7710-4cb4-af72-92e27ea41d81\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Empey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Empey"}}, {"model": "reversion.version", "pk": 586, "fields": {"revision": 586, "object_id": "2a3f81e3-c462-4961-a89e-858130ff08e0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2a3f81e3-c462-4961-a89e-858130ff08e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Doug\", \"surname\": \"Robinson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Doug Robinson"}}, {"model": "reversion.version", "pk": 587, "fields": {"revision": 587, "object_id": "2a533bc2-8b8d-4ac5-807e-8d5bf0aad087", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2a533bc2-8b8d-4ac5-807e-8d5bf0aad087\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kelly\", \"surname\": \"Desjardins\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kelly Desjardins"}}, {"model": "reversion.version", "pk": 588, "fields": {"revision": 588, "object_id": "2ac52e75-45bf-405f-ba91-4d1986399747", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2ac52e75-45bf-405f-ba91-4d1986399747\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brad\", \"surname\": \"Doran\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brad Doran"}}, {"model": "reversion.version", "pk": 589, "fields": {"revision": 589, "object_id": "2adb4457-3c29-48e1-a5b2-216fd9be4293", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2adb4457-3c29-48e1-a5b2-216fd9be4293\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mark\", \"surname\": \"MacNeil\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mark MacNeil"}}, {"model": "reversion.version", "pk": 590, "fields": {"revision": 590, "object_id": "2bc17f1f-0272-4648-8339-591ac04318a6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2bc17f1f-0272-4648-8339-591ac04318a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darrell\", \"surname\": \"Netrefa\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darrell Netrefa"}}, {"model": "reversion.version", "pk": 591, "fields": {"revision": 591, "object_id": "2d970b96-4d67-4c94-84f0-37a59e20fb3c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2d970b96-4d67-4c94-84f0-37a59e20fb3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jeff\", \"surname\": \"Townsend\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jeff Townsend"}}, {"model": "reversion.version", "pk": 592, "fields": {"revision": 592, "object_id": "2dafcd84-f6bc-41d4-878a-46a2ef792a3e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2dafcd84-f6bc-41d4-878a-46a2ef792a3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Sean\", \"surname\": \"McDonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Sean McDonald"}}, {"model": "reversion.version", "pk": 593, "fields": {"revision": 593, "object_id": "2dc785a0-a3b6-4e9f-9c8a-ad709118425d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2dc785a0-a3b6-4e9f-9c8a-ad709118425d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brandon\", \"surname\": \"Paulson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brandon Paulson"}}, {"model": "reversion.version", "pk": 594, "fields": {"revision": 594, "object_id": "2ec8580f-848a-4a94-86c1-355dc3a7192c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2ec8580f-848a-4a94-86c1-355dc3a7192c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"MacDonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert MacDonald"}}, {"model": "reversion.version", "pk": 595, "fields": {"revision": 595, "object_id": "2edc15fc-e546-4588-9388-0fe43bcc5a40", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2edc15fc-e546-4588-9388-0fe43bcc5a40\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Duane\", \"surname\": \"Bochek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Duane Bochek"}}, {"model": "reversion.version", "pk": 596, "fields": {"revision": 596, "object_id": "2f1a76a4-ac68-4308-b1d1-a77a05e2b49b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"2f1a76a4-ac68-4308-b1d1-a77a05e2b49b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Scott\", \"surname\": \"Grimshaw\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Scott Grimshaw"}}, {"model": "reversion.version", "pk": 597, "fields": {"revision": 597, "object_id": "31177f12-5558-46ac-bfb9-e79e7a4698f5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"31177f12-5558-46ac-bfb9-e79e7a4698f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Lypkie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Lypkie"}}, {"model": "reversion.version", "pk": 598, "fields": {"revision": 598, "object_id": "31ca12f9-be18-458f-80a8-6810965ca336", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"31ca12f9-be18-458f-80a8-6810965ca336\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gordon\", \"surname\": \"Young\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gordon Young"}}, {"model": "reversion.version", "pk": 599, "fields": {"revision": 599, "object_id": "31d0cfb5-8c8b-443d-aff6-e5335d3708bd", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"31d0cfb5-8c8b-443d-aff6-e5335d3708bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Alan\", \"surname\": \"Reid\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Alan Reid"}}, {"model": "reversion.version", "pk": 600, "fields": {"revision": 600, "object_id": "323bf8f1-4d9c-4ed5-bfe6-61f8198c5a53", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"323bf8f1-4d9c-4ed5-bfe6-61f8198c5a53\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Todd\", \"surname\": \"Carter\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Todd Carter"}}, {"model": "reversion.version", "pk": 601, "fields": {"revision": 601, "object_id": "32d4fc15-cf49-45de-9ada-6389187893bb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"32d4fc15-cf49-45de-9ada-6389187893bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randy\", \"surname\": \"Woods\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randy Woods"}}, {"model": "reversion.version", "pk": 602, "fields": {"revision": 602, "object_id": "32eb4017-299e-403a-8f4b-3c06e992793d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"32eb4017-299e-403a-8f4b-3c06e992793d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Craig\", \"surname\": \"Wynn\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Craig Wynn"}}, {"model": "reversion.version", "pk": 603, "fields": {"revision": 603, "object_id": "33be1f04-5457-4fd0-ba62-44e98e526e56", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"33be1f04-5457-4fd0-ba62-44e98e526e56\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Harry\", \"surname\": \"Caldwell\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Harry Caldwell"}}, {"model": "reversion.version", "pk": 604, "fields": {"revision": 604, "object_id": "341e8007-18c2-40eb-9518-1933ef23aef9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"341e8007-18c2-40eb-9518-1933ef23aef9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Al\", \"surname\": \"Schaeffer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Al Schaeffer"}}, {"model": "reversion.version", "pk": 605, "fields": {"revision": 605, "object_id": "344c93db-9ede-4a95-8da8-267d8da4ee82", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"344c93db-9ede-4a95-8da8-267d8da4ee82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Raymond\", \"surname\": \"Robertson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Raymond Robertson"}}, {"model": "reversion.version", "pk": 606, "fields": {"revision": 606, "object_id": "34af2ce6-9eca-4e36-935f-349c200c676e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"34af2ce6-9eca-4e36-935f-349c200c676e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William\", \"surname\": \"Ripley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William Ripley"}}, {"model": "reversion.version", "pk": 607, "fields": {"revision": 607, "object_id": "34e95fe6-a765-49ac-b3b4-0d19b11df99c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"34e95fe6-a765-49ac-b3b4-0d19b11df99c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gerald\", \"surname\": \"Thomson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gerald Thomson"}}, {"model": "reversion.version", "pk": 608, "fields": {"revision": 608, "object_id": "3538a827-9f7c-46de-a1e8-7a071f1d27ef", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3538a827-9f7c-46de-a1e8-7a071f1d27ef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randall\", \"surname\": \"Smithson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randall Smithson"}}, {"model": "reversion.version", "pk": 609, "fields": {"revision": 609, "object_id": "362a9b05-0439-410e-939d-59ca6e1f9983", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"362a9b05-0439-410e-939d-59ca6e1f9983\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mark\", \"surname\": \"Webb\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mark Webb"}}, {"model": "reversion.version", "pk": 610, "fields": {"revision": 610, "object_id": "370be88a-a2ee-4d30-8613-257aff851d5b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"370be88a-a2ee-4d30-8613-257aff851d5b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Toews\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Toews"}}, {"model": "reversion.version", "pk": 611, "fields": {"revision": 611, "object_id": "37e2dc18-3094-4055-8da6-1a71037b6c01", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"37e2dc18-3094-4055-8da6-1a71037b6c01\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Garth\", \"surname\": \"Ballance\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Garth Ballance"}}, {"model": "reversion.version", "pk": 612, "fields": {"revision": 612, "object_id": "37f33d46-c555-43d9-9cbb-15303f4bb93c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"37f33d46-c555-43d9-9cbb-15303f4bb93c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Gribbon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Gribbon"}}, {"model": "reversion.version", "pk": 613, "fields": {"revision": 613, "object_id": "37fa76e5-63a1-4e36-98f6-20330d1d9b2d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"37fa76e5-63a1-4e36-98f6-20330d1d9b2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Keldon\", \"surname\": \"Ehalt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Keldon Ehalt"}}, {"model": "reversion.version", "pk": 614, "fields": {"revision": 614, "object_id": "386f1c9a-a5a8-40b0-bbb0-497b3fcb365e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"386f1c9a-a5a8-40b0-bbb0-497b3fcb365e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"Speer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan Speer"}}, {"model": "reversion.version", "pk": 615, "fields": {"revision": 615, "object_id": "388c43c8-fb2b-4ede-bf62-fe57fd4c1c41", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"388c43c8-fb2b-4ede-bf62-fe57fd4c1c41\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randy\", \"surname\": \"Post\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randy Post"}}, {"model": "reversion.version", "pk": 616, "fields": {"revision": 616, "object_id": "397b6da0-75a9-492b-aca0-fdd8d44bfd66", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"397b6da0-75a9-492b-aca0-fdd8d44bfd66\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gary\", \"surname\": \"Davidson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gary Davidson"}}, {"model": "reversion.version", "pk": 617, "fields": {"revision": 617, "object_id": "39a194f7-9cd5-445f-9d71-f6b02fab22a4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"39a194f7-9cd5-445f-9d71-f6b02fab22a4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chris\", \"surname\": \"Quinlan\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chris Quinlan"}}, {"model": "reversion.version", "pk": 618, "fields": {"revision": 618, "object_id": "3a46a964-0012-4321-a941-120cf7b0c814", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3a46a964-0012-4321-a941-120cf7b0c814\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Cadeau\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Cadeau"}}, {"model": "reversion.version", "pk": 619, "fields": {"revision": 619, "object_id": "3a6a6ff4-93dc-4190-a6b3-abbe4ccf21ef", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3a6a6ff4-93dc-4190-a6b3-abbe4ccf21ef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brian\", \"surname\": \"Strachan\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brian Strachan"}}, {"model": "reversion.version", "pk": 620, "fields": {"revision": 620, "object_id": "3a9828ea-ab84-46c3-b230-67ca4da9c3d3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3a9828ea-ab84-46c3-b230-67ca4da9c3d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jerry\", \"surname\": \"Jones\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jerry Jones"}}, {"model": "reversion.version", "pk": 621, "fields": {"revision": 621, "object_id": "3addec39-f680-41d5-910a-e62a340dcd4a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3addec39-f680-41d5-910a-e62a340dcd4a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dan\", \"surname\": \"Foley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dan Foley"}}, {"model": "reversion.version", "pk": 622, "fields": {"revision": 622, "object_id": "3ba2cbf5-a154-434f-8f09-ba6336508942", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3ba2cbf5-a154-434f-8f09-ba6336508942\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bill\", \"surname\": \"McIvor\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bill McIvor"}}, {"model": "reversion.version", "pk": 623, "fields": {"revision": 623, "object_id": "3c13028a-182d-4fe9-88ee-41dd11330459", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3c13028a-182d-4fe9-88ee-41dd11330459\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gordon\", \"surname\": \"Griffiths\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gordon Griffiths"}}, {"model": "reversion.version", "pk": 624, "fields": {"revision": 624, "object_id": "3cc610a7-90a4-4d5c-9d16-cf52e1ab3c03", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3cc610a7-90a4-4d5c-9d16-cf52e1ab3c03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daniel\", \"surname\": \"St. Laurent\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daniel St. Laurent"}}, {"model": "reversion.version", "pk": 625, "fields": {"revision": 625, "object_id": "3d65825a-580b-4dbc-b707-7534c9f7e1db", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3d65825a-580b-4dbc-b707-7534c9f7e1db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"Gardiner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan Gardiner"}}, {"model": "reversion.version", "pk": 626, "fields": {"revision": 626, "object_id": "3e4da2d2-8a11-4959-95e0-c4895a0a35e8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3e4da2d2-8a11-4959-95e0-c4895a0a35e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kim\", \"surname\": \"Hardy\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kim Hardy"}}, {"model": "reversion.version", "pk": 627, "fields": {"revision": 627, "object_id": "3e5b1e24-ad7f-43ae-aa91-8ba07aaf0e06", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3e5b1e24-ad7f-43ae-aa91-8ba07aaf0e06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Duane\", \"surname\": \"Bentley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Duane Bentley"}}, {"model": "reversion.version", "pk": 628, "fields": {"revision": 628, "object_id": "3e829a20-d167-4f0b-8b9d-1ec1cc44ef3f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3e829a20-d167-4f0b-8b9d-1ec1cc44ef3f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Magee\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Magee"}}, {"model": "reversion.version", "pk": 629, "fields": {"revision": 629, "object_id": "3f395ddb-c9b6-4a02-bc6e-06abd5a67e07", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3f395ddb-c9b6-4a02-bc6e-06abd5a67e07\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Patrick\", \"surname\": \"Mayne\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Patrick Mayne"}}, {"model": "reversion.version", "pk": 630, "fields": {"revision": 630, "object_id": "3f5c5195-a61f-4fa0-8704-7ed0e13e2a63", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3f5c5195-a61f-4fa0-8704-7ed0e13e2a63\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Martin\", \"surname\": \"Weflen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Martin Weflen"}}, {"model": "reversion.version", "pk": 631, "fields": {"revision": 631, "object_id": "3f855745-1baa-4769-b115-fa1491d7b4a0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"3f855745-1baa-4769-b115-fa1491d7b4a0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wolfgang\", \"surname\": \"Teiner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wolfgang Teiner"}}, {"model": "reversion.version", "pk": 632, "fields": {"revision": 632, "object_id": "41eed482-9df2-43ae-b6f5-541099b8e3ca", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"41eed482-9df2-43ae-b6f5-541099b8e3ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"Samis\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan Samis"}}, {"model": "reversion.version", "pk": 633, "fields": {"revision": 633, "object_id": "428e3cd1-3dd9-4ce8-8e38-87acfeb34a1d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"428e3cd1-3dd9-4ce8-8e38-87acfeb34a1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Epp\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Epp"}}, {"model": "reversion.version", "pk": 634, "fields": {"revision": 634, "object_id": "42e863bc-2dac-4e01-8bba-87c6f113710d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"42e863bc-2dac-4e01-8bba-87c6f113710d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andre\", \"surname\": \"Bentley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andre Bentley"}}, {"model": "reversion.version", "pk": 635, "fields": {"revision": 635, "object_id": "435e4697-3bdd-460d-a6b7-1033b75d7efd", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"435e4697-3bdd-460d-a6b7-1033b75d7efd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gilbert\", \"surname\": \"Dubois\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gilbert Dubois"}}, {"model": "reversion.version", "pk": 636, "fields": {"revision": 636, "object_id": "44780408-a469-47b1-8d00-8eb985b10435", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"44780408-a469-47b1-8d00-8eb985b10435\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jeffrey\", \"surname\": \"Bochek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jeffrey Bochek"}}, {"model": "reversion.version", "pk": 637, "fields": {"revision": 637, "object_id": "44c46668-9644-46d4-8a04-572d5ed49431", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"44c46668-9644-46d4-8a04-572d5ed49431\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Cullen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Cullen"}}, {"model": "reversion.version", "pk": 638, "fields": {"revision": 638, "object_id": "4524e880-f842-4fb8-bec9-f02b9ae88806", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4524e880-f842-4fb8-bec9-f02b9ae88806\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kevin\", \"surname\": \"Mintz\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kevin Mintz"}}, {"model": "reversion.version", "pk": 639, "fields": {"revision": 639, "object_id": "45d013c9-125b-4d80-a200-420941a4fcbf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"45d013c9-125b-4d80-a200-420941a4fcbf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Genereux\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Genereux"}}, {"model": "reversion.version", "pk": 640, "fields": {"revision": 640, "object_id": "46b97baa-76aa-482c-8d00-14adfb7a53e1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"46b97baa-76aa-482c-8d00-14adfb7a53e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Evenson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Evenson"}}, {"model": "reversion.version", "pk": 641, "fields": {"revision": 641, "object_id": "46dafc83-a6c9-4654-a07e-5a4e2018e6ab", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"46dafc83-a6c9-4654-a07e-5a4e2018e6ab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Craig\", \"surname\": \"Macadam\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Craig Macadam"}}, {"model": "reversion.version", "pk": 642, "fields": {"revision": 642, "object_id": "47209ab8-918a-4908-9036-f4d45d13ac4c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"47209ab8-918a-4908-9036-f4d45d13ac4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Glen\", \"surname\": \"Francoeur\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Glen Francoeur"}}, {"model": "reversion.version", "pk": 643, "fields": {"revision": 643, "object_id": "473384c5-0d37-4709-9652-6185176b06a6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"473384c5-0d37-4709-9652-6185176b06a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Muth\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Muth"}}, {"model": "reversion.version", "pk": 644, "fields": {"revision": 644, "object_id": "47d048d6-c8ae-46ad-8ec6-1da792d60ae3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"47d048d6-c8ae-46ad-8ec6-1da792d60ae3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chance\", \"surname\": \"L'Heureux\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chance L'Heureux"}}, {"model": "reversion.version", "pk": 645, "fields": {"revision": 645, "object_id": "48006657-e4b0-4164-afbb-ae9d112caa09", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"48006657-e4b0-4164-afbb-ae9d112caa09\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darrin\", \"surname\": \"Parnell\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darrin Parnell"}}, {"model": "reversion.version", "pk": 646, "fields": {"revision": 646, "object_id": "486f65ad-08e0-49e8-a061-62b28b5381cb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"486f65ad-08e0-49e8-a061-62b28b5381cb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rob\", \"surname\": \"Grey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rob Grey"}}, {"model": "reversion.version", "pk": 647, "fields": {"revision": 647, "object_id": "48e18242-bbc6-4601-a40b-0111f08ec3a2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"48e18242-bbc6-4601-a40b-0111f08ec3a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Cronin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Cronin"}}, {"model": "reversion.version", "pk": 648, "fields": {"revision": 648, "object_id": "49272c88-bec9-4950-a869-60525f451d6a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"49272c88-bec9-4950-a869-60525f451d6a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"McConkey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas McConkey"}}, {"model": "reversion.version", "pk": 649, "fields": {"revision": 649, "object_id": "494a07b4-c27f-4b28-b118-c87b36cf56bc", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"494a07b4-c27f-4b28-b118-c87b36cf56bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gray\", \"surname\": \"Buchanan\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gray Buchanan"}}, {"model": "reversion.version", "pk": 650, "fields": {"revision": 650, "object_id": "4acdc1a4-d44c-44fa-ac98-d7200b33e79c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4acdc1a4-d44c-44fa-ac98-d7200b33e79c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ronald\", \"surname\": \"Nelson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ronald Nelson"}}, {"model": "reversion.version", "pk": 651, "fields": {"revision": 651, "object_id": "4b1bd459-996e-4f8b-a287-2c051eb080a5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4b1bd459-996e-4f8b-a287-2c051eb080a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kelly\", \"surname\": \"Pelletier\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kelly Pelletier"}}, {"model": "reversion.version", "pk": 652, "fields": {"revision": 652, "object_id": "4b9cef2e-2dda-4364-90d4-c4e29df75e1c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4b9cef2e-2dda-4364-90d4-c4e29df75e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brent\", \"surname\": \"Marsden\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brent Marsden"}}, {"model": "reversion.version", "pk": 653, "fields": {"revision": 653, "object_id": "4bd8a9d6-f651-457e-bf6a-6cac4d588abe", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4bd8a9d6-f651-457e-bf6a-6cac4d588abe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Allan\", \"surname\": \"Jacobson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Allan Jacobson"}}, {"model": "reversion.version", "pk": 654, "fields": {"revision": 654, "object_id": "4bd8ea89-17c9-4dca-abff-f4727563696f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4bd8ea89-17c9-4dca-abff-f4727563696f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Shawn\", \"surname\": \"Slade\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Shawn Slade"}}, {"model": "reversion.version", "pk": 655, "fields": {"revision": 655, "object_id": "4c5a526d-7f8a-4128-938e-e3e426fbf749", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4c5a526d-7f8a-4128-938e-e3e426fbf749\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Janczukowski\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Janczukowski"}}, {"model": "reversion.version", "pk": 656, "fields": {"revision": 656, "object_id": "4d052048-3f37-4136-9e50-d85c0d5e739b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4d052048-3f37-4136-9e50-d85c0d5e739b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Aaron\", \"surname\": \"Muir\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Aaron Muir"}}, {"model": "reversion.version", "pk": 657, "fields": {"revision": 657, "object_id": "4d82c684-c8f0-482d-96ca-c4e418862877", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4d82c684-c8f0-482d-96ca-c4e418862877\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Malcolm\", \"surname\": \"Johnston\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Malcolm Johnston"}}, {"model": "reversion.version", "pk": 658, "fields": {"revision": 658, "object_id": "4f4fd3ee-9363-42d5-a669-65d7a1bf5844", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"4f4fd3ee-9363-42d5-a669-65d7a1bf5844\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Glen\", \"surname\": \"Wilson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Glen Wilson"}}, {"model": "reversion.version", "pk": 659, "fields": {"revision": 659, "object_id": "518edfd5-d459-437a-b94a-803029de406f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"518edfd5-d459-437a-b94a-803029de406f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Bourk\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Bourk"}}, {"model": "reversion.version", "pk": 660, "fields": {"revision": 660, "object_id": "51943106-d32a-4a75-8131-86be74ca9321", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"51943106-d32a-4a75-8131-86be74ca9321\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Laurence\", \"surname\": \"Desilets\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Laurence Desilets"}}, {"model": "reversion.version", "pk": 661, "fields": {"revision": 661, "object_id": "520d3c86-79c4-41a4-875c-780c650256cf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"520d3c86-79c4-41a4-875c-780c650256cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Smallwood\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Smallwood"}}, {"model": "reversion.version", "pk": 662, "fields": {"revision": 662, "object_id": "526fc489-7140-4644-9b18-dcb03cc9a1bb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"526fc489-7140-4644-9b18-dcb03cc9a1bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Joe\", \"surname\": \"MacKenzie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Joe MacKenzie"}}, {"model": "reversion.version", "pk": 663, "fields": {"revision": 663, "object_id": "52785544-fd93-46d3-8a57-377d3c745a03", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"52785544-fd93-46d3-8a57-377d3c745a03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Tim\", \"surname\": \"Broere\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Tim Broere"}}, {"model": "reversion.version", "pk": 664, "fields": {"revision": 664, "object_id": "5280f8ab-7397-4890-b0a5-a9634d3eec74", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5280f8ab-7397-4890-b0a5-a9634d3eec74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Bleich\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Bleich"}}, {"model": "reversion.version", "pk": 665, "fields": {"revision": 665, "object_id": "52a58f28-e2df-4153-8dda-680cd0f9f792", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"52a58f28-e2df-4153-8dda-680cd0f9f792\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gerry\", \"surname\": \"Hawkes\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gerry Hawkes"}}, {"model": "reversion.version", "pk": 666, "fields": {"revision": 666, "object_id": "52c29f4f-ca22-448c-b83a-24176d111e5f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"52c29f4f-ca22-448c-b83a-24176d111e5f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Schroeder\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Schroeder"}}, {"model": "reversion.version", "pk": 667, "fields": {"revision": 667, "object_id": "52ebc345-0240-4474-b886-98b0a71fe7d8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"52ebc345-0240-4474-b886-98b0a71fe7d8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Justin\", \"surname\": \"Horsman\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Justin Horsman"}}, {"model": "reversion.version", "pk": 668, "fields": {"revision": 668, "object_id": "54770a38-7b9e-4626-9fb5-53eb49d1d6e2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"54770a38-7b9e-4626-9fb5-53eb49d1d6e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andrew\", \"surname\": \"Thompson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andrew Thompson"}}, {"model": "reversion.version", "pk": 669, "fields": {"revision": 669, "object_id": "5482b32a-58c9-4fa7-bea5-84e9dcbd4407", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5482b32a-58c9-4fa7-bea5-84e9dcbd4407\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Charles\", \"surname\": \"Rogers\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Charles Rogers"}}, {"model": "reversion.version", "pk": 670, "fields": {"revision": 670, "object_id": "54ad2c7d-18e7-46dc-9a99-bf9fc8211ab3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"54ad2c7d-18e7-46dc-9a99-bf9fc8211ab3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Pat\", \"surname\": \"Kelly\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Pat Kelly"}}, {"model": "reversion.version", "pk": 671, "fields": {"revision": 671, "object_id": "55e9eff3-4f7f-41a8-99c5-ca1b30fddb87", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"55e9eff3-4f7f-41a8-99c5-ca1b30fddb87\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Parker\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Parker"}}, {"model": "reversion.version", "pk": 672, "fields": {"revision": 672, "object_id": "56bd6b97-a41a-4389-b1b6-9178de6fb5b1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"56bd6b97-a41a-4389-b1b6-9178de6fb5b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Joe\", \"surname\": \"Carter\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Joe Carter"}}, {"model": "reversion.version", "pk": 673, "fields": {"revision": 673, "object_id": "56d5a245-d0b5-43d2-b9c3-5a6c52ab5b6b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"56d5a245-d0b5-43d2-b9c3-5a6c52ab5b6b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Greg\", \"surname\": \"Steveson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Greg Steveson"}}, {"model": "reversion.version", "pk": 674, "fields": {"revision": 674, "object_id": "583410d9-c374-46af-b04b-85bc48d52c1d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"583410d9-c374-46af-b04b-85bc48d52c1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William\", \"surname\": \"Fitzgerald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William Fitzgerald"}}, {"model": "reversion.version", "pk": 675, "fields": {"revision": 675, "object_id": "5860d4b7-ab0b-43bd-b8dd-b62837b0e863", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5860d4b7-ab0b-43bd-b8dd-b62837b0e863\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dale\", \"surname\": \"Lamont\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dale Lamont"}}, {"model": "reversion.version", "pk": 676, "fields": {"revision": 676, "object_id": "591e2572-0260-48cf-91e8-e0dc258e0c91", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"591e2572-0260-48cf-91e8-e0dc258e0c91\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dean\", \"surname\": \"Chiuppi\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dean Chiuppi"}}, {"model": "reversion.version", "pk": 677, "fields": {"revision": 677, "object_id": "5a82ac1e-8aed-49d2-8a1f-419b78542fa5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5a82ac1e-8aed-49d2-8a1f-419b78542fa5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darryl\", \"surname\": \"Tolhurst\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darryl Tolhurst"}}, {"model": "reversion.version", "pk": 678, "fields": {"revision": 678, "object_id": "5a92e629-59e2-47e9-bde3-1fb1b9d44ceb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5a92e629-59e2-47e9-bde3-1fb1b9d44ceb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Steve\", \"surname\": \"Markle\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Steve Markle"}}, {"model": "reversion.version", "pk": 679, "fields": {"revision": 679, "object_id": "5a961406-31e5-4273-a002-83e95413ef8f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5a961406-31e5-4273-a002-83e95413ef8f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ron\", \"surname\": \"Crosby\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ron Crosby"}}, {"model": "reversion.version", "pk": 680, "fields": {"revision": 680, "object_id": "5aad4fcd-ecb0-4dfe-adc1-ed3c0f2509f1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5aad4fcd-ecb0-4dfe-adc1-ed3c0f2509f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bernard\", \"surname\": \"Strijak\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bernard Strijak"}}, {"model": "reversion.version", "pk": 681, "fields": {"revision": 681, "object_id": "5ae7147c-7201-4d16-a0a0-17e38ea4c6b2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5ae7147c-7201-4d16-a0a0-17e38ea4c6b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Garry\", \"surname\": \"Lougheed\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Garry Lougheed"}}, {"model": "reversion.version", "pk": 682, "fields": {"revision": 682, "object_id": "5b59ff11-98f4-4a22-bef0-c606c9972227", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5b59ff11-98f4-4a22-bef0-c606c9972227\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jerry\", \"surname\": \"Opper\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jerry Opper"}}, {"model": "reversion.version", "pk": 683, "fields": {"revision": 683, "object_id": "5b9d2870-eb91-4675-a4b9-e06579ebe382", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5b9d2870-eb91-4675-a4b9-e06579ebe382\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Roger\", \"surname\": \"Blenkarn\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Roger Blenkarn"}}, {"model": "reversion.version", "pk": 684, "fields": {"revision": 684, "object_id": "5bb84f49-155d-4969-ad86-e7de0927a3c6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5bb84f49-155d-4969-ad86-e7de0927a3c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Albert\", \"surname\": \"Kaye\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Albert Kaye"}}, {"model": "reversion.version", "pk": 685, "fields": {"revision": 685, "object_id": "5c97c162-14f3-4886-99ae-921183d3dbe7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5c97c162-14f3-4886-99ae-921183d3dbe7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Anthony\", \"surname\": \"Kaye\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Anthony Kaye"}}, {"model": "reversion.version", "pk": 686, "fields": {"revision": 686, "object_id": "5ccbb066-78e5-4497-a86c-232ae55ee760", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5ccbb066-78e5-4497-a86c-232ae55ee760\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"Borrill\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas Borrill"}}, {"model": "reversion.version", "pk": 687, "fields": {"revision": 687, "object_id": "5cf819bd-80a5-46cd-90c6-e38f46992d04", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5cf819bd-80a5-46cd-90c6-e38f46992d04\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brent\", \"surname\": \"Stadel\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brent Stadel"}}, {"model": "reversion.version", "pk": 688, "fields": {"revision": 688, "object_id": "5d3e5991-5c9f-4d2f-aabb-b1f1cd57d485", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5d3e5991-5c9f-4d2f-aabb-b1f1cd57d485\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ron\", \"surname\": \"Kalicum\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ron Kalicum"}}, {"model": "reversion.version", "pk": 689, "fields": {"revision": 689, "object_id": "5e55eef7-dc94-479e-b08d-4f0dae3face4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5e55eef7-dc94-479e-b08d-4f0dae3face4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jody\", \"surname\": \"Lambert\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jody Lambert"}}, {"model": "reversion.version", "pk": 690, "fields": {"revision": 690, "object_id": "5ebed0fe-4351-4e8a-863e-16a2d7afa38f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5ebed0fe-4351-4e8a-863e-16a2d7afa38f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Phinney\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Phinney"}}, {"model": "reversion.version", "pk": 691, "fields": {"revision": 691, "object_id": "5f1fc7f6-c1d8-476f-a4e9-57c5d83e5d81", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5f1fc7f6-c1d8-476f-a4e9-57c5d83e5d81\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Holiove\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Holiove"}}, {"model": "reversion.version", "pk": 692, "fields": {"revision": 692, "object_id": "5f4b448b-c673-4890-bd8c-83c38d8e0894", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"5f4b448b-c673-4890-bd8c-83c38d8e0894\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Franks\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Franks"}}, {"model": "reversion.version", "pk": 693, "fields": {"revision": 693, "object_id": "602573b8-5cc5-45b5-834e-7ab3ebd35506", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"602573b8-5cc5-45b5-834e-7ab3ebd35506\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Joel\", \"surname\": \"Gillin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Joel Gillin"}}, {"model": "reversion.version", "pk": 694, "fields": {"revision": 694, "object_id": "612b9ccf-5f46-4cfb-a669-c8fc941010b2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"612b9ccf-5f46-4cfb-a669-c8fc941010b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Cherry\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Cherry"}}, {"model": "reversion.version", "pk": 695, "fields": {"revision": 695, "object_id": "6139ce66-2721-46ab-83a4-29e71fb0f3ac", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6139ce66-2721-46ab-83a4-29e71fb0f3ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Gough\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Gough"}}, {"model": "reversion.version", "pk": 696, "fields": {"revision": 696, "object_id": "631be46c-ee6a-4102-829e-8bce9d8da616", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"631be46c-ee6a-4102-829e-8bce9d8da616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ethan\", \"surname\": \"Martin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ethan Martin"}}, {"model": "reversion.version", "pk": 697, "fields": {"revision": 697, "object_id": "632adcc6-5aa4-469c-bead-b5d4c8602a18", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"632adcc6-5aa4-469c-bead-b5d4c8602a18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Trevor\", \"surname\": \"Krenbrink\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Trevor Krenbrink"}}, {"model": "reversion.version", "pk": 698, "fields": {"revision": 698, "object_id": "632cad2a-4d3a-47b1-951a-cfb9e5802db4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"632cad2a-4d3a-47b1-951a-cfb9e5802db4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jeff\", \"surname\": \"Peppler\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jeff Peppler"}}, {"model": "reversion.version", "pk": 699, "fields": {"revision": 699, "object_id": "63e8db45-59bd-46d6-92ac-301717b8c7aa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"63e8db45-59bd-46d6-92ac-301717b8c7aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Nesbit\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Nesbit"}}, {"model": "reversion.version", "pk": 700, "fields": {"revision": 700, "object_id": "6406ccc3-2065-4d34-9056-a5b7e8ddde35", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6406ccc3-2065-4d34-9056-a5b7e8ddde35\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wolfgang\", \"surname\": \"Scheuer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wolfgang Scheuer"}}, {"model": "reversion.version", "pk": 701, "fields": {"revision": 701, "object_id": "651c0f88-3888-41c3-8e0d-6884c2de7f2d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"651c0f88-3888-41c3-8e0d-6884c2de7f2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randy\", \"surname\": \"Creamer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randy Creamer"}}, {"model": "reversion.version", "pk": 702, "fields": {"revision": 702, "object_id": "65f894f3-8f38-4e7c-85a9-d49234537372", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"65f894f3-8f38-4e7c-85a9-d49234537372\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gregory\", \"surname\": \"Sound\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gregory Sound"}}, {"model": "reversion.version", "pk": 703, "fields": {"revision": 703, "object_id": "67342807-b1f8-41a4-8f59-0f801acd0ca8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"67342807-b1f8-41a4-8f59-0f801acd0ca8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dennis\", \"surname\": \"Thompson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dennis Thompson"}}, {"model": "reversion.version", "pk": 704, "fields": {"revision": 704, "object_id": "67575c92-f5b7-4d6d-a360-66a876655560", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"67575c92-f5b7-4d6d-a360-66a876655560\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ed\", \"surname\": \"Fulop\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ed Fulop"}}, {"model": "reversion.version", "pk": 705, "fields": {"revision": 705, "object_id": "67721ff9-5fc6-4b56-9372-5eccfe7b153b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"67721ff9-5fc6-4b56-9372-5eccfe7b153b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Steven\", \"surname\": \"Winthrope\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Steven Winthrope"}}, {"model": "reversion.version", "pk": 706, "fields": {"revision": 706, "object_id": "67add1be-92c0-46b2-b334-34d8f239ac2b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"67add1be-92c0-46b2-b334-34d8f239ac2b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jacob\", \"surname\": \"Peters\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jacob Peters"}}, {"model": "reversion.version", "pk": 707, "fields": {"revision": 707, "object_id": "6811597c-80f1-4e81-ab40-23327e3935f6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6811597c-80f1-4e81-ab40-23327e3935f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Jackson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Jackson"}}, {"model": "reversion.version", "pk": 708, "fields": {"revision": 708, "object_id": "681510fe-aa59-437e-9e29-5a15f25ed27a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"681510fe-aa59-437e-9e29-5a15f25ed27a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Alfred\", \"surname\": \"Pepin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Alfred Pepin"}}, {"model": "reversion.version", "pk": 709, "fields": {"revision": 709, "object_id": "685af1a8-dbd5-48e1-bdcf-72323709f110", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"685af1a8-dbd5-48e1-bdcf-72323709f110\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darin\", \"surname\": \"Kashmark\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darin Kashmark"}}, {"model": "reversion.version", "pk": 710, "fields": {"revision": 710, "object_id": "6882217f-b346-4421-8261-09611ac771dd", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6882217f-b346-4421-8261-09611ac771dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Stanvick\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Stanvick"}}, {"model": "reversion.version", "pk": 711, "fields": {"revision": 711, "object_id": "69059385-7871-4c71-9cc8-c9a3d9fe9b83", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"69059385-7871-4c71-9cc8-c9a3d9fe9b83\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cecil\", \"surname\": \"Myram\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cecil Myram"}}, {"model": "reversion.version", "pk": 712, "fields": {"revision": 712, "object_id": "695039c7-f8cc-44d9-a1a4-101bbb0dd00e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"695039c7-f8cc-44d9-a1a4-101bbb0dd00e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andy\", \"surname\": \"Van Esch\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andy Van Esch"}}, {"model": "reversion.version", "pk": 713, "fields": {"revision": 713, "object_id": "6960aca1-92df-4ca7-8d27-679e28e95e0d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6960aca1-92df-4ca7-8d27-679e28e95e0d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William J.S.\", \"surname\": \"Williams\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William J.S. Williams"}}, {"model": "reversion.version", "pk": 714, "fields": {"revision": 714, "object_id": "696c9fdc-9a25-4348-8898-c54aaa04099b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"696c9fdc-9a25-4348-8898-c54aaa04099b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Barry\", \"surname\": \"Waardenburg\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Barry Waardenburg"}}, {"model": "reversion.version", "pk": 715, "fields": {"revision": 715, "object_id": "69763fdb-e72d-441e-b904-a650e0a1c142", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"69763fdb-e72d-441e-b904-a650e0a1c142\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ernest\", \"surname\": \"Hunter\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ernest Hunter"}}, {"model": "reversion.version", "pk": 716, "fields": {"revision": 716, "object_id": "69b65e7d-d4fe-46e0-a948-5e0b482b0838", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"69b65e7d-d4fe-46e0-a948-5e0b482b0838\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Garth\", \"surname\": \"Nye\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Garth Nye"}}, {"model": "reversion.version", "pk": 717, "fields": {"revision": 717, "object_id": "69d86393-7e6d-4b86-a1e3-d2af08e77abf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"69d86393-7e6d-4b86-a1e3-d2af08e77abf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chris\", \"surname\": \"Tremblay\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chris Tremblay"}}, {"model": "reversion.version", "pk": 718, "fields": {"revision": 718, "object_id": "6a4e83a2-a446-408a-984a-b00afde71088", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6a4e83a2-a446-408a-984a-b00afde71088\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kevin\", \"surname\": \"Mews\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kevin Mews"}}, {"model": "reversion.version", "pk": 719, "fields": {"revision": 719, "object_id": "6a704eba-8497-4682-8c4a-a4bb52dfae17", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6a704eba-8497-4682-8c4a-a4bb52dfae17\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gil\", \"surname\": \"Weston\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gil Weston"}}, {"model": "reversion.version", "pk": 720, "fields": {"revision": 720, "object_id": "6a926473-1df4-4c08-8c3a-2f628e412890", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6a926473-1df4-4c08-8c3a-2f628e412890\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"James\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan James"}}, {"model": "reversion.version", "pk": 721, "fields": {"revision": 721, "object_id": "6ade5c6b-69ba-4fc9-8371-e9e75a0fdf1a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6ade5c6b-69ba-4fc9-8371-e9e75a0fdf1a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Makenzie\", \"surname\": \"Ingram\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Makenzie Ingram"}}, {"model": "reversion.version", "pk": 722, "fields": {"revision": 722, "object_id": "6b29f63f-f3e3-4c46-bbb3-874e58cb80e2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6b29f63f-f3e3-4c46-bbb3-874e58cb80e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Wishart\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Wishart"}}, {"model": "reversion.version", "pk": 723, "fields": {"revision": 723, "object_id": "6b3e9423-55c1-4893-9fd1-0b893c6d1f62", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6b3e9423-55c1-4893-9fd1-0b893c6d1f62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jamie\", \"surname\": \"O'Neil\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jamie O'Neil"}}, {"model": "reversion.version", "pk": 724, "fields": {"revision": 724, "object_id": "6bdf7dc4-4329-4aba-92ca-4095b862fd83", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6bdf7dc4-4329-4aba-92ca-4095b862fd83\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gordon\", \"surname\": \"Horbay\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gordon Horbay"}}, {"model": "reversion.version", "pk": 725, "fields": {"revision": 725, "object_id": "6c168dc6-a7af-4893-96e4-537941053379", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6c168dc6-a7af-4893-96e4-537941053379\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Greg\", \"surname\": \"Sleasman\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Greg Sleasman"}}, {"model": "reversion.version", "pk": 726, "fields": {"revision": 726, "object_id": "6c2b4814-3222-4af7-b62f-e416ee44937d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6c2b4814-3222-4af7-b62f-e416ee44937d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Matthew\", \"surname\": \"Randall\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Matthew Randall"}}, {"model": "reversion.version", "pk": 727, "fields": {"revision": 727, "object_id": "6c97ffb3-02db-444d-a416-0df28b9f533a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6c97ffb3-02db-444d-a416-0df28b9f533a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Diggle\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Diggle"}}, {"model": "reversion.version", "pk": 728, "fields": {"revision": 728, "object_id": "6d887d38-ee1f-43d8-8f69-ff65ca55bcad", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6d887d38-ee1f-43d8-8f69-ff65ca55bcad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Troy\", \"surname\": \"Bumford\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Troy Bumford"}}, {"model": "reversion.version", "pk": 729, "fields": {"revision": 729, "object_id": "6de28d4a-7aa4-4b49-96e6-f719e4cd6e92", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6de28d4a-7aa4-4b49-96e6-f719e4cd6e92\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Harvey\", \"surname\": \"Bombardier\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Harvey Bombardier"}}, {"model": "reversion.version", "pk": 730, "fields": {"revision": 730, "object_id": "6de9f17e-3bd1-4951-89cb-d657bfa715ad", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6de9f17e-3bd1-4951-89cb-d657bfa715ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Owen\", \"surname\": \"Barrett\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Owen Barrett"}}, {"model": "reversion.version", "pk": 731, "fields": {"revision": 731, "object_id": "6e5294f7-6e3e-4cdf-8291-6793a58834aa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6e5294f7-6e3e-4cdf-8291-6793a58834aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daniel\", \"surname\": \"Windecker\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daniel Windecker"}}, {"model": "reversion.version", "pk": 732, "fields": {"revision": 732, "object_id": "6ed5db05-e756-4952-8b39-06c95985e964", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6ed5db05-e756-4952-8b39-06c95985e964\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dale\", \"surname\": \"Bystrom\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dale Bystrom"}}, {"model": "reversion.version", "pk": 733, "fields": {"revision": 733, "object_id": "6ee4ef67-7a6d-4808-8bdf-11a6a0114059", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6ee4ef67-7a6d-4808-8bdf-11a6a0114059\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bruce\", \"surname\": \"Grey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bruce Grey"}}, {"model": "reversion.version", "pk": 734, "fields": {"revision": 734, "object_id": "6fdf51f8-8a77-4339-a5d8-2c72450a6430", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"6fdf51f8-8a77-4339-a5d8-2c72450a6430\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kenneth\", \"surname\": \"Krenbrink\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kenneth Krenbrink"}}, {"model": "reversion.version", "pk": 735, "fields": {"revision": 735, "object_id": "717d16fe-271c-4014-ae78-860ed56df2ca", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"717d16fe-271c-4014-ae78-860ed56df2ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Doug\", \"surname\": \"Lemal\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Doug Lemal"}}, {"model": "reversion.version", "pk": 736, "fields": {"revision": 736, "object_id": "71c62125-a0b6-4d9f-be09-f6802d3e48d7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"71c62125-a0b6-4d9f-be09-f6802d3e48d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jacob\", \"surname\": \"Ongman\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jacob Ongman"}}, {"model": "reversion.version", "pk": 737, "fields": {"revision": 737, "object_id": "71d3339e-d601-4be7-8f5e-fa7fd0fd656c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"71d3339e-d601-4be7-8f5e-fa7fd0fd656c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ross\", \"surname\": \"Pitt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ross Pitt"}}, {"model": "reversion.version", "pk": 738, "fields": {"revision": 738, "object_id": "71d41e4b-a009-4033-9941-9d01545c800e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"71d41e4b-a009-4033-9941-9d01545c800e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Don\", \"surname\": \"Pederson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Don Pederson"}}, {"model": "reversion.version", "pk": 739, "fields": {"revision": 739, "object_id": "71d50cfc-6d3c-43cb-a5ed-15eefeea1ff7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"71d50cfc-6d3c-43cb-a5ed-15eefeea1ff7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Walter\", \"surname\": \"Nobes\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Walter Nobes"}}, {"model": "reversion.version", "pk": 740, "fields": {"revision": 740, "object_id": "729535d5-d407-4f1b-b55b-dace81657dd4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"729535d5-d407-4f1b-b55b-dace81657dd4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gunnar\", \"surname\": \"Kristensen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gunnar Kristensen"}}, {"model": "reversion.version", "pk": 741, "fields": {"revision": 741, "object_id": "72d468d9-8986-4527-9a43-a64343eee3b8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"72d468d9-8986-4527-9a43-a64343eee3b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Scott\", \"surname\": \"Burrows\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Scott Burrows"}}, {"model": "reversion.version", "pk": 742, "fields": {"revision": 742, "object_id": "730df5d3-d427-4b4e-9cb2-b18ed6a7ea14", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"730df5d3-d427-4b4e-9cb2-b18ed6a7ea14\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bill\", \"surname\": \"Teichroeb\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bill Teichroeb"}}, {"model": "reversion.version", "pk": 743, "fields": {"revision": 743, "object_id": "732808b1-2026-4278-aa1f-c7a62467e0e6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"732808b1-2026-4278-aa1f-c7a62467e0e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Gerlach\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Gerlach"}}, {"model": "reversion.version", "pk": 744, "fields": {"revision": 744, "object_id": "733701a4-9f00-45d7-9e2f-4d4cbe948f3e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"733701a4-9f00-45d7-9e2f-4d4cbe948f3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Merkel\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Merkel"}}, {"model": "reversion.version", "pk": 745, "fields": {"revision": 745, "object_id": "73768746-e466-475e-979d-aebaa115a7f7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"73768746-e466-475e-979d-aebaa115a7f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randolph\", \"surname\": \"Mann\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randolph Mann"}}, {"model": "reversion.version", "pk": 746, "fields": {"revision": 746, "object_id": "73ca9dc0-522f-42e0-b4c2-bf29eefb2bfb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"73ca9dc0-522f-42e0-b4c2-bf29eefb2bfb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Harry\", \"surname\": \"Oussoren\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Harry Oussoren"}}, {"model": "reversion.version", "pk": 747, "fields": {"revision": 747, "object_id": "750d1aa4-ef75-4357-967c-68f6c1a4ff04", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"750d1aa4-ef75-4357-967c-68f6c1a4ff04\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Sean\", \"surname\": \"Shingler\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Sean Shingler"}}, {"model": "reversion.version", "pk": 748, "fields": {"revision": 748, "object_id": "75596b29-1c9d-4943-9fd8-6bb7f8cac8f4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"75596b29-1c9d-4943-9fd8-6bb7f8cac8f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Kuyek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Kuyek"}}, {"model": "reversion.version", "pk": 749, "fields": {"revision": 749, "object_id": "76d48dde-fe8e-415e-9b59-544a024dae3e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"76d48dde-fe8e-415e-9b59-544a024dae3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wayne\", \"surname\": \"Beil\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wayne Beil"}}, {"model": "reversion.version", "pk": 750, "fields": {"revision": 750, "object_id": "76fd6738-50e1-4ad1-844f-166e87799d63", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"76fd6738-50e1-4ad1-844f-166e87799d63\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Saul\", \"surname\": \"Hock\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Saul Hock"}}, {"model": "reversion.version", "pk": 751, "fields": {"revision": 751, "object_id": "77bb2be7-3293-477a-8049-4038bda1dc60", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"77bb2be7-3293-477a-8049-4038bda1dc60\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Henry\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Henry"}}, {"model": "reversion.version", "pk": 752, "fields": {"revision": 752, "object_id": "781ac826-93d8-44d0-86eb-5855237228ae", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"781ac826-93d8-44d0-86eb-5855237228ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Timothy\", \"surname\": \"Oster\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Timothy Oster"}}, {"model": "reversion.version", "pk": 753, "fields": {"revision": 753, "object_id": "7849417b-11b1-4e94-bd9d-598bf126abb5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7849417b-11b1-4e94-bd9d-598bf126abb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Blake\", \"surname\": \"Jarvis\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Blake Jarvis"}}, {"model": "reversion.version", "pk": 754, "fields": {"revision": 754, "object_id": "78603aa2-2f43-4351-bd6c-0a4124389eb9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"78603aa2-2f43-4351-bd6c-0a4124389eb9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"McDonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas McDonald"}}, {"model": "reversion.version", "pk": 755, "fields": {"revision": 755, "object_id": "790dafe7-2a80-485a-807d-aa58b9cecbda", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"790dafe7-2a80-485a-807d-aa58b9cecbda\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William\", \"surname\": \"Williams\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William Williams"}}, {"model": "reversion.version", "pk": 756, "fields": {"revision": 756, "object_id": "7936efad-e663-4a38-b43f-84250c277bd9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7936efad-e663-4a38-b43f-84250c277bd9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Steve\", \"surname\": \"Vlchek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Steve Vlchek"}}, {"model": "reversion.version", "pk": 757, "fields": {"revision": 757, "object_id": "7a25eac9-ec93-40e0-8fc3-eaf79488a8f5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7a25eac9-ec93-40e0-8fc3-eaf79488a8f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Clarence\", \"surname\": \"Moberg\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Clarence Moberg"}}, {"model": "reversion.version", "pk": 758, "fields": {"revision": 758, "object_id": "7adaddf2-f928-4b5a-8802-05513a86c6c0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7adaddf2-f928-4b5a-8802-05513a86c6c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cody\", \"surname\": \"Schneider\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cody Schneider"}}, {"model": "reversion.version", "pk": 759, "fields": {"revision": 759, "object_id": "7b3d3e8e-e83a-443c-8358-a55b232ee778", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7b3d3e8e-e83a-443c-8358-a55b232ee778\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bryan\", \"surname\": \"Kashmark\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bryan Kashmark"}}, {"model": "reversion.version", "pk": 760, "fields": {"revision": 760, "object_id": "7b6f9a16-eeae-4454-94dd-8419aa1b345c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7b6f9a16-eeae-4454-94dd-8419aa1b345c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Barry\", \"surname\": \"Windecker\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Barry Windecker"}}, {"model": "reversion.version", "pk": 761, "fields": {"revision": 761, "object_id": "7c0e0141-1c0e-4ff9-a2ad-babf3c888b50", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7c0e0141-1c0e-4ff9-a2ad-babf3c888b50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Benson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Benson"}}, {"model": "reversion.version", "pk": 762, "fields": {"revision": 762, "object_id": "7c228921-4aeb-4f2d-b735-e84818c94b7d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7c228921-4aeb-4f2d-b735-e84818c94b7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gary\", \"surname\": \"Moore\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gary Moore"}}, {"model": "reversion.version", "pk": 763, "fields": {"revision": 763, "object_id": "7c5e91a0-2c3c-4d55-adbd-818817592551", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7c5e91a0-2c3c-4d55-adbd-818817592551\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gary\", \"surname\": \"Traer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gary Traer"}}, {"model": "reversion.version", "pk": 764, "fields": {"revision": 764, "object_id": "7c7a9300-e75c-4a9c-bef2-3b7b2b74f95a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7c7a9300-e75c-4a9c-bef2-3b7b2b74f95a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gary\", \"surname\": \"Wilkins\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gary Wilkins"}}, {"model": "reversion.version", "pk": 765, "fields": {"revision": 765, "object_id": "7cb89fae-4b04-42a9-abc2-b6e290ee6ada", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7cb89fae-4b04-42a9-abc2-b6e290ee6ada\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Clayton\", \"surname\": \"Riehl\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Clayton Riehl"}}, {"model": "reversion.version", "pk": 766, "fields": {"revision": 766, "object_id": "7d3e0b68-29b4-46ae-9276-2f695cb39dd4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7d3e0b68-29b4-46ae-9276-2f695cb39dd4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Denis\", \"surname\": \"Caron\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Denis Caron"}}, {"model": "reversion.version", "pk": 767, "fields": {"revision": 767, "object_id": "7d81acde-d32a-4148-819a-0aaf5e6ecad1", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7d81acde-d32a-4148-819a-0aaf5e6ecad1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brent\", \"surname\": \"Seymour\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brent Seymour"}}, {"model": "reversion.version", "pk": 768, "fields": {"revision": 768, "object_id": "7da570a5-6fd0-4a0d-ad57-717fc37a558e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7da570a5-6fd0-4a0d-ad57-717fc37a558e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Sterling\", \"surname\": \"Harrison\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Sterling Harrison"}}, {"model": "reversion.version", "pk": 769, "fields": {"revision": 769, "object_id": "7dd0e13c-bbb0-475a-9b1c-6aa3ff3cdd99", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7dd0e13c-bbb0-475a-9b1c-6aa3ff3cdd99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mitch\", \"surname\": \"Forster\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mitch Forster"}}, {"model": "reversion.version", "pk": 770, "fields": {"revision": 770, "object_id": "7e515a32-ee06-42a8-8275-5390bbfb90d2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7e515a32-ee06-42a8-8275-5390bbfb90d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Martin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Martin"}}, {"model": "reversion.version", "pk": 771, "fields": {"revision": 771, "object_id": "7ff3ec00-f2d9-424f-8fbb-7c3b7f287de6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7ff3ec00-f2d9-424f-8fbb-7c3b7f287de6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Tim\", \"surname\": \"Warden\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Tim Warden"}}, {"model": "reversion.version", "pk": 772, "fields": {"revision": 772, "object_id": "8026ce88-f72a-4ff5-acd9-69acefb080de", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8026ce88-f72a-4ff5-acd9-69acefb080de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Shane\", \"surname\": \"Ramsey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Shane Ramsey"}}, {"model": "reversion.version", "pk": 773, "fields": {"revision": 773, "object_id": "8056f036-5f10-4c91-a1b1-6cf43b67302d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8056f036-5f10-4c91-a1b1-6cf43b67302d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ronald\", \"surname\": \"Gowe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ronald Gowe"}}, {"model": "reversion.version", "pk": 774, "fields": {"revision": 774, "object_id": "80623cdf-3582-4fcc-9957-c25ca02e712b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"80623cdf-3582-4fcc-9957-c25ca02e712b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rob\", \"surname\": \"Moon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rob Moon"}}, {"model": "reversion.version", "pk": 775, "fields": {"revision": 775, "object_id": "80727687-a595-41f1-a0cc-ff11e289dc9b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"80727687-a595-41f1-a0cc-ff11e289dc9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chris\", \"surname\": \"Lanting\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chris Lanting"}}, {"model": "reversion.version", "pk": 776, "fields": {"revision": 776, "object_id": "8094c271-ee9a-4549-91c0-5608a3cbd2ac", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8094c271-ee9a-4549-91c0-5608a3cbd2ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Harden\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Harden"}}, {"model": "reversion.version", "pk": 777, "fields": {"revision": 777, "object_id": "80b7fe72-f3e2-436e-b6d9-fae2cdea6195", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"80b7fe72-f3e2-436e-b6d9-fae2cdea6195\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cory\", \"surname\": \"Dobson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cory Dobson"}}, {"model": "reversion.version", "pk": 778, "fields": {"revision": 778, "object_id": "80c34bd7-88b4-4dc5-8a01-89fb595780b9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"80c34bd7-88b4-4dc5-8a01-89fb595780b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Scott\", \"surname\": \"Steward\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Scott Steward"}}, {"model": "reversion.version", "pk": 779, "fields": {"revision": 779, "object_id": "8129785e-5f05-4568-b772-efc7c4290c09", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8129785e-5f05-4568-b772-efc7c4290c09\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William\", \"surname\": \"Richard\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William Richard"}}, {"model": "reversion.version", "pk": 780, "fields": {"revision": 780, "object_id": "81cadfdf-1dde-47ba-96f8-437199b8ed96", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"81cadfdf-1dde-47ba-96f8-437199b8ed96\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bruce\", \"surname\": \"Stewart\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bruce Stewart"}}, {"model": "reversion.version", "pk": 781, "fields": {"revision": 781, "object_id": "822311e2-b1b9-4fa8-adad-14fee6d086a2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"822311e2-b1b9-4fa8-adad-14fee6d086a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ibrahim\", \"surname\": \"Kurtoglu\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ibrahim Kurtoglu"}}, {"model": "reversion.version", "pk": 782, "fields": {"revision": 782, "object_id": "823150f0-a2d4-4d76-9fa3-0a0fca6be27b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"823150f0-a2d4-4d76-9fa3-0a0fca6be27b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Alain\", \"surname\": \"Jacques\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Alain Jacques"}}, {"model": "reversion.version", "pk": 783, "fields": {"revision": 783, "object_id": "823fdadf-610b-4233-8e49-de51d229305d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"823fdadf-610b-4233-8e49-de51d229305d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Harry\", \"surname\": \"Mason\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Harry Mason"}}, {"model": "reversion.version", "pk": 784, "fields": {"revision": 784, "object_id": "82aa69b9-07b4-4dd5-a385-e975baed9b2f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"82aa69b9-07b4-4dd5-a385-e975baed9b2f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Trevor\", \"surname\": \"Lornson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Trevor Lornson"}}, {"model": "reversion.version", "pk": 785, "fields": {"revision": 785, "object_id": "832a35d2-2b7c-4a21-abca-c2e56a060489", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"832a35d2-2b7c-4a21-abca-c2e56a060489\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Max\", \"surname\": \"Schibli\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Max Schibli"}}, {"model": "reversion.version", "pk": 786, "fields": {"revision": 786, "object_id": "83b07431-0eab-4359-92f6-1e29ff890b55", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"83b07431-0eab-4359-92f6-1e29ff890b55\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Coates\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Coates"}}, {"model": "reversion.version", "pk": 787, "fields": {"revision": 787, "object_id": "83bbf4b4-53aa-4cfa-9c9e-ec7635ad92aa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"83bbf4b4-53aa-4cfa-9c9e-ec7635ad92aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jared\", \"surname\": \"Szeles\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jared Szeles"}}, {"model": "reversion.version", "pk": 788, "fields": {"revision": 788, "object_id": "8501e520-34de-4b12-bf7e-d5e89ad77f27", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8501e520-34de-4b12-bf7e-d5e89ad77f27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darren\", \"surname\": \"Mitchell\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darren Mitchell"}}, {"model": "reversion.version", "pk": 789, "fields": {"revision": 789, "object_id": "852ae2c5-7d37-4be9-9ff6-e8c6e3cc5cef", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"852ae2c5-7d37-4be9-9ff6-e8c6e3cc5cef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William John\", \"surname\": \"Williams\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William John Williams"}}, {"model": "reversion.version", "pk": 790, "fields": {"revision": 790, "object_id": "85b4d0ae-3481-46e7-a1ca-7bd02db38e3c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"85b4d0ae-3481-46e7-a1ca-7bd02db38e3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gary\", \"surname\": \"Hungle\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gary Hungle"}}, {"model": "reversion.version", "pk": 791, "fields": {"revision": 791, "object_id": "8690bc63-c878-43fb-851d-ab48a130707c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8690bc63-c878-43fb-851d-ab48a130707c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Stacy\", \"surname\": \"Savage\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Stacy Savage"}}, {"model": "reversion.version", "pk": 792, "fields": {"revision": 792, "object_id": "8808718e-5492-4f4c-8ae5-b73d9d96e880", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8808718e-5492-4f4c-8ae5-b73d9d96e880\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"MacRae\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan MacRae"}}, {"model": "reversion.version", "pk": 793, "fields": {"revision": 793, "object_id": "88affdf1-3183-48fb-830e-5dabe0277e8e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"88affdf1-3183-48fb-830e-5dabe0277e8e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Timothy\", \"surname\": \"Hoechsmann\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Timothy Hoechsmann"}}, {"model": "reversion.version", "pk": 794, "fields": {"revision": 794, "object_id": "89479552-15a2-4e21-b1ec-3909875cdde6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"89479552-15a2-4e21-b1ec-3909875cdde6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dallas\", \"surname\": \"Barlow\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dallas Barlow"}}, {"model": "reversion.version", "pk": 795, "fields": {"revision": 795, "object_id": "89831c1d-a0b1-49af-a296-4c546ccb405a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"89831c1d-a0b1-49af-a296-4c546ccb405a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Albert\", \"surname\": \"Oostenbrink\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Albert Oostenbrink"}}, {"model": "reversion.version", "pk": 796, "fields": {"revision": 796, "object_id": "89fe417f-2ccc-4fbd-ae7c-bca29456986b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"89fe417f-2ccc-4fbd-ae7c-bca29456986b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lloyd\", \"surname\": \"Ingram\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lloyd Ingram"}}, {"model": "reversion.version", "pk": 797, "fields": {"revision": 797, "object_id": "8ab96c56-0e5b-4024-adf2-87fd1ea6ab96", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8ab96c56-0e5b-4024-adf2-87fd1ea6ab96\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Pascal\", \"surname\": \"Fillion\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Pascal Fillion"}}, {"model": "reversion.version", "pk": 798, "fields": {"revision": 798, "object_id": "8c03c629-1a7d-44b2-a1fc-cdcc64ea5c2a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8c03c629-1a7d-44b2-a1fc-cdcc64ea5c2a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Carl\", \"surname\": \"MacKenzie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Carl MacKenzie"}}, {"model": "reversion.version", "pk": 799, "fields": {"revision": 799, "object_id": "8c7c359c-b4a9-481f-8c1e-9dcb8c882588", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8c7c359c-b4a9-481f-8c1e-9dcb8c882588\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Leo\", \"surname\": \"Weatherall\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Leo Weatherall"}}, {"model": "reversion.version", "pk": 800, "fields": {"revision": 800, "object_id": "8cb4f684-cf9d-48a1-ae0c-8cb2a9c5f889", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8cb4f684-cf9d-48a1-ae0c-8cb2a9c5f889\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Floyd (Bob)\", \"surname\": \"Wangler\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Floyd (Bob) Wangler"}}, {"model": "reversion.version", "pk": 801, "fields": {"revision": 801, "object_id": "8cf8daf6-d2ec-4a25-956c-7cd5170506e6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8cf8daf6-d2ec-4a25-956c-7cd5170506e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randy\", \"surname\": \"MacDonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randy MacDonald"}}, {"model": "reversion.version", "pk": 802, "fields": {"revision": 802, "object_id": "8d043630-e504-4dbb-a0a3-05bafbfc0408", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8d043630-e504-4dbb-a0a3-05bafbfc0408\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daniel\", \"surname\": \"Osborne\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daniel Osborne"}}, {"model": "reversion.version", "pk": 803, "fields": {"revision": 803, "object_id": "8db54ef6-aab6-4958-a258-dc2a3e62450e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8db54ef6-aab6-4958-a258-dc2a3e62450e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brian\", \"surname\": \"Czelenski\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brian Czelenski"}}, {"model": "reversion.version", "pk": 804, "fields": {"revision": 804, "object_id": "8e7ce4d9-5505-4308-8397-2526a9d8e179", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8e7ce4d9-5505-4308-8397-2526a9d8e179\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Philip\", \"surname\": \"Shaw\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Philip Shaw"}}, {"model": "reversion.version", "pk": 805, "fields": {"revision": 805, "object_id": "8fa34429-9d6e-4aae-9edb-1ea7086f933f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"8fa34429-9d6e-4aae-9edb-1ea7086f933f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jerry\", \"surname\": \"Weston\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jerry Weston"}}, {"model": "reversion.version", "pk": 806, "fields": {"revision": 806, "object_id": "9022b6a8-3b5a-4ece-855e-b573d785843f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9022b6a8-3b5a-4ece-855e-b573d785843f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rudy\", \"surname\": \"Tritt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rudy Tritt"}}, {"model": "reversion.version", "pk": 807, "fields": {"revision": 807, "object_id": "9134d5b5-1d7e-444e-ae42-3f78f3e59c78", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9134d5b5-1d7e-444e-ae42-3f78f3e59c78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daryl\", \"surname\": \"Smith\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daryl Smith"}}, {"model": "reversion.version", "pk": 808, "fields": {"revision": 808, "object_id": "92048a10-e6a7-4b19-8873-5763dc75eee9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"92048a10-e6a7-4b19-8873-5763dc75eee9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rusty\", \"surname\": \"Stooksberry\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rusty Stooksberry"}}, {"model": "reversion.version", "pk": 809, "fields": {"revision": 809, "object_id": "925319c3-6c1a-40f9-b123-14cd38dd41fa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"925319c3-6c1a-40f9-b123-14cd38dd41fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Geoff\", \"surname\": \"Danieluk\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Geoff Danieluk"}}, {"model": "reversion.version", "pk": 810, "fields": {"revision": 810, "object_id": "92904b5c-ff2c-45f8-aa3a-eb7d54b3cfcf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"92904b5c-ff2c-45f8-aa3a-eb7d54b3cfcf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Krenbrink\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Krenbrink"}}, {"model": "reversion.version", "pk": 811, "fields": {"revision": 811, "object_id": "933ca562-11ed-49ca-ac00-d81d8031320a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"933ca562-11ed-49ca-ac00-d81d8031320a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Stuart\", \"surname\": \"McDonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Stuart McDonald"}}, {"model": "reversion.version", "pk": 812, "fields": {"revision": 812, "object_id": "9356ed4e-0d06-461e-98e8-b0029b4a757f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9356ed4e-0d06-461e-98e8-b0029b4a757f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Romain\", \"surname\": \"Hoet\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Romain Hoet"}}, {"model": "reversion.version", "pk": 813, "fields": {"revision": 813, "object_id": "93b08949-9a2a-43d9-b27d-69eb570e010f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"93b08949-9a2a-43d9-b27d-69eb570e010f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Robinson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Robinson"}}, {"model": "reversion.version", "pk": 814, "fields": {"revision": 814, "object_id": "94652521-bba7-43fa-a422-41d13f8672d3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"94652521-bba7-43fa-a422-41d13f8672d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gerard\", \"surname\": \"Bourdin\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gerard Bourdin"}}, {"model": "reversion.version", "pk": 815, "fields": {"revision": 815, "object_id": "9588ab73-06b2-4752-87e5-c74d94de5c8b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9588ab73-06b2-4752-87e5-c74d94de5c8b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Milne\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Milne"}}, {"model": "reversion.version", "pk": 816, "fields": {"revision": 816, "object_id": "96061132-77c6-40cb-8c15-20128e8e5321", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"96061132-77c6-40cb-8c15-20128e8e5321\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gary\", \"surname\": \"Yeo\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gary Yeo"}}, {"model": "reversion.version", "pk": 817, "fields": {"revision": 817, "object_id": "96d8eeea-8c94-4560-bcb3-150ebef6110a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"96d8eeea-8c94-4560-bcb3-150ebef6110a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Reginald\", \"surname\": \"McInnes\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Reginald McInnes"}}, {"model": "reversion.version", "pk": 818, "fields": {"revision": 818, "object_id": "97bd0eca-6cec-4373-a803-61f8a39852c8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"97bd0eca-6cec-4373-a803-61f8a39852c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Sam\", \"surname\": \"Rockson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Sam Rockson"}}, {"model": "reversion.version", "pk": 819, "fields": {"revision": 819, "object_id": "97cc565b-a85c-4c45-85e6-679384bab63b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"97cc565b-a85c-4c45-85e6-679384bab63b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gregory\", \"surname\": \"English\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gregory English"}}, {"model": "reversion.version", "pk": 820, "fields": {"revision": 820, "object_id": "9843e57a-8ec6-48fd-8c9e-e456906c3f79", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9843e57a-8ec6-48fd-8c9e-e456906c3f79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Arlyn\", \"surname\": \"Burfoot\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Arlyn Burfoot"}}, {"model": "reversion.version", "pk": 821, "fields": {"revision": 821, "object_id": "98633418-bb96-4bd6-95f6-8bff5b900e1e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"98633418-bb96-4bd6-95f6-8bff5b900e1e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Geoff\", \"surname\": \"Doran\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Geoff Doran"}}, {"model": "reversion.version", "pk": 822, "fields": {"revision": 822, "object_id": "98cb827b-20f6-4f08-8f18-99171a69c761", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"98cb827b-20f6-4f08-8f18-99171a69c761\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bruce\", \"surname\": \"Jorgensen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bruce Jorgensen"}}, {"model": "reversion.version", "pk": 823, "fields": {"revision": 823, "object_id": "998e92cc-9b9e-4784-bcf9-1693ae8c1706", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"998e92cc-9b9e-4784-bcf9-1693ae8c1706\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bill\", \"surname\": \"Ivens\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bill Ivens"}}, {"model": "reversion.version", "pk": 824, "fields": {"revision": 824, "object_id": "99a9880d-0b7b-465b-a00e-3145c1c2af18", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"99a9880d-0b7b-465b-a00e-3145c1c2af18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Hawksworth\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Hawksworth"}}, {"model": "reversion.version", "pk": 825, "fields": {"revision": 825, "object_id": "9a49868b-a5ab-4606-ac1c-8f28ab9118f8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9a49868b-a5ab-4606-ac1c-8f28ab9118f8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Stober\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Stober"}}, {"model": "reversion.version", "pk": 826, "fields": {"revision": 826, "object_id": "9a49ffa7-a408-4f4f-a26f-03f72a37ca8b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9a49ffa7-a408-4f4f-a26f-03f72a37ca8b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Will\", \"surname\": \"Reinarz\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Will Reinarz"}}, {"model": "reversion.version", "pk": 827, "fields": {"revision": 827, "object_id": "9a5bd8c7-fe9d-43c0-9010-ef647a1d1b5d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9a5bd8c7-fe9d-43c0-9010-ef647a1d1b5d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lyle\", \"surname\": \"Yeo\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lyle Yeo"}}, {"model": "reversion.version", "pk": 828, "fields": {"revision": 828, "object_id": "9a9974e2-e49a-4688-a2a7-0723aaf5d4bb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9a9974e2-e49a-4688-a2a7-0723aaf5d4bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Young\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Young"}}, {"model": "reversion.version", "pk": 829, "fields": {"revision": 829, "object_id": "9ba669ad-317b-4ccf-8d06-c69676facd0b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9ba669ad-317b-4ccf-8d06-c69676facd0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Neggers\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Neggers"}}, {"model": "reversion.version", "pk": 830, "fields": {"revision": 830, "object_id": "9c7e15e9-74ee-4e95-8a00-30196e9f2f14", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9c7e15e9-74ee-4e95-8a00-30196e9f2f14\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Mellis\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Mellis"}}, {"model": "reversion.version", "pk": 831, "fields": {"revision": 831, "object_id": "9ccbeb23-e211-4afe-b58a-060475beecca", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9ccbeb23-e211-4afe-b58a-060475beecca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Duncan\", \"surname\": \"Haines\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Duncan Haines"}}, {"model": "reversion.version", "pk": 832, "fields": {"revision": 832, "object_id": "9cdefbf3-57c5-4c85-9790-dcd04d17bed0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9cdefbf3-57c5-4c85-9790-dcd04d17bed0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rene\", \"surname\": \"Bernard\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rene Bernard"}}, {"model": "reversion.version", "pk": 833, "fields": {"revision": 833, "object_id": "9e7292ac-313e-4ed4-9469-df707ff650e2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9e7292ac-313e-4ed4-9469-df707ff650e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Schwartz\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Schwartz"}}, {"model": "reversion.version", "pk": 834, "fields": {"revision": 834, "object_id": "9f0a01b2-a44a-4069-bca0-dabeaecc25e9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"9f0a01b2-a44a-4069-bca0-dabeaecc25e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jim\", \"surname\": \"Croken\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jim Croken"}}, {"model": "reversion.version", "pk": 835, "fields": {"revision": 835, "object_id": "a040be57-9e11-407a-a38f-2d8be91ce20a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a040be57-9e11-407a-a38f-2d8be91ce20a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kris\", \"surname\": \"Schindel\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kris Schindel"}}, {"model": "reversion.version", "pk": 836, "fields": {"revision": 836, "object_id": "a0483c45-7b3f-41c3-b10a-7c93af7e6caa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a0483c45-7b3f-41c3-b10a-7c93af7e6caa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Sharp\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Sharp"}}, {"model": "reversion.version", "pk": 837, "fields": {"revision": 837, "object_id": "a0679090-6b53-4a8e-9fc4-1c5e6160f4d9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a0679090-6b53-4a8e-9fc4-1c5e6160f4d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Donald\", \"surname\": \"Lenard\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Donald Lenard"}}, {"model": "reversion.version", "pk": 838, "fields": {"revision": 838, "object_id": "a1234690-4484-4f9a-976e-18382c81510e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a1234690-4484-4f9a-976e-18382c81510e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kurt\", \"surname\": \"Vlchek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kurt Vlchek"}}, {"model": "reversion.version", "pk": 839, "fields": {"revision": 839, "object_id": "a1402cca-53ff-4f59-a195-fa5162e3e93b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a1402cca-53ff-4f59-a195-fa5162e3e93b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bradley\", \"surname\": \"Dwyer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bradley Dwyer"}}, {"model": "reversion.version", "pk": 840, "fields": {"revision": 840, "object_id": "a1f4ee43-47e3-4f27-b236-b025c86d6d36", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a1f4ee43-47e3-4f27-b236-b025c86d6d36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daniel\", \"surname\": \"Isert\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daniel Isert"}}, {"model": "reversion.version", "pk": 841, "fields": {"revision": 841, "object_id": "a22a0a5c-de92-466c-8bbc-49d5b45a220c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a22a0a5c-de92-466c-8bbc-49d5b45a220c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Moore\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Moore"}}, {"model": "reversion.version", "pk": 842, "fields": {"revision": 842, "object_id": "a23c4eef-43d4-4b07-a1c7-366e932f9649", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a23c4eef-43d4-4b07-a1c7-366e932f9649\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Greg\", \"surname\": \"Boulton\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Greg Boulton"}}, {"model": "reversion.version", "pk": 843, "fields": {"revision": 843, "object_id": "a41d722f-42f3-4597-a9d6-38b5bbec7a84", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a41d722f-42f3-4597-a9d6-38b5bbec7a84\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Philip\", \"surname\": \"Reeves\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Philip Reeves"}}, {"model": "reversion.version", "pk": 844, "fields": {"revision": 844, "object_id": "a4b38fcb-ce95-4c56-8932-19679c565096", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a4b38fcb-ce95-4c56-8932-19679c565096\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andy\", \"surname\": \"McCabe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andy McCabe"}}, {"model": "reversion.version", "pk": 845, "fields": {"revision": 845, "object_id": "a5118d76-fead-4265-8acd-7895ff0c764c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a5118d76-fead-4265-8acd-7895ff0c764c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Curtis\", \"surname\": \"Vanlerberg\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Curtis Vanlerberg"}}, {"model": "reversion.version", "pk": 846, "fields": {"revision": 846, "object_id": "a5823bf1-5985-41bb-8c0e-b12879d46262", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a5823bf1-5985-41bb-8c0e-b12879d46262\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Moon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Moon"}}, {"model": "reversion.version", "pk": 847, "fields": {"revision": 847, "object_id": "a58dac20-c818-4e44-89dd-db6455b9da13", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a58dac20-c818-4e44-89dd-db6455b9da13\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Walter\", \"surname\": \"Dodd\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Walter Dodd"}}, {"model": "reversion.version", "pk": 848, "fields": {"revision": 848, "object_id": "a5f315a0-4547-497d-b118-55ee1daa39ad", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a5f315a0-4547-497d-b118-55ee1daa39ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"George\", \"surname\": \"Paterson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "George Paterson"}}, {"model": "reversion.version", "pk": 849, "fields": {"revision": 849, "object_id": "a66cd7bd-5256-4caf-842c-0cfe7429d229", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a66cd7bd-5256-4caf-842c-0cfe7429d229\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rolf\", \"surname\": \"Mai\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rolf Mai"}}, {"model": "reversion.version", "pk": 850, "fields": {"revision": 850, "object_id": "a7874cad-fb7f-4134-bf5f-942aec2e7083", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a7874cad-fb7f-4134-bf5f-942aec2e7083\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Terry\", \"surname\": \"Sovdi\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Terry Sovdi"}}, {"model": "reversion.version", "pk": 851, "fields": {"revision": 851, "object_id": "a87cbc86-e15c-455c-95b4-06b69a5910a5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a87cbc86-e15c-455c-95b4-06b69a5910a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Joshua\", \"surname\": \"Douma\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Joshua Douma"}}, {"model": "reversion.version", "pk": 852, "fields": {"revision": 852, "object_id": "a8b3919e-fe7e-48e7-964f-d756d5f70e19", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"a8b3919e-fe7e-48e7-964f-d756d5f70e19\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jay\", \"surname\": \"Jaundrew\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jay Jaundrew"}}, {"model": "reversion.version", "pk": 853, "fields": {"revision": 853, "object_id": "aa9c6133-7a7f-433c-8830-4af3e16c0c86", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"aa9c6133-7a7f-433c-8830-4af3e16c0c86\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Neale\", \"surname\": \"Lajeunesse\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Neale Lajeunesse"}}, {"model": "reversion.version", "pk": 854, "fields": {"revision": 854, "object_id": "aab61210-ff71-4e7b-a24b-8e21d3b9e1cf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"aab61210-ff71-4e7b-a24b-8e21d3b9e1cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Travis\", \"surname\": \"Schryvers\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Travis Schryvers"}}, {"model": "reversion.version", "pk": 855, "fields": {"revision": 855, "object_id": "abe4e829-fd0d-4a51-b672-63eb55240489", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"abe4e829-fd0d-4a51-b672-63eb55240489\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bryan\", \"surname\": \"Palsson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bryan Palsson"}}, {"model": "reversion.version", "pk": 856, "fields": {"revision": 856, "object_id": "ac05b009-39f1-48d1-952b-307f61ad96db", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ac05b009-39f1-48d1-952b-307f61ad96db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Phillip\", \"surname\": \"Buelow\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Phillip Buelow"}}, {"model": "reversion.version", "pk": 857, "fields": {"revision": 857, "object_id": "ad549ed2-2a97-4a92-8acc-0539746c3cb5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ad549ed2-2a97-4a92-8acc-0539746c3cb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Ricketts\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Ricketts"}}, {"model": "reversion.version", "pk": 858, "fields": {"revision": 858, "object_id": "ad687efe-a1ca-487d-a5ef-4d99eda25948", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ad687efe-a1ca-487d-a5ef-4d99eda25948\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Nick\", \"surname\": \"Skinner\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Nick Skinner"}}, {"model": "reversion.version", "pk": 859, "fields": {"revision": 859, "object_id": "ada16416-5cbe-48a2-b6bb-77513fd6a457", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ada16416-5cbe-48a2-b6bb-77513fd6a457\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ron\", \"surname\": \"Janzen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ron Janzen"}}, {"model": "reversion.version", "pk": 860, "fields": {"revision": 860, "object_id": "ae12c3a2-06af-4f92-8719-e6609112b90a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ae12c3a2-06af-4f92-8719-e6609112b90a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Edwin\", \"surname\": \"Schneider\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Edwin Schneider"}}, {"model": "reversion.version", "pk": 861, "fields": {"revision": 861, "object_id": "ae2423d4-f245-42e5-a45c-87d9f0d10fb2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ae2423d4-f245-42e5-a45c-87d9f0d10fb2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Roy\", \"surname\": \"Yeo\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Roy Yeo"}}, {"model": "reversion.version", "pk": 862, "fields": {"revision": 862, "object_id": "ae82b775-17ce-4fab-a6aa-d517517f3cfb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ae82b775-17ce-4fab-a6aa-d517517f3cfb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Allan\", \"surname\": \"Stewart\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Allan Stewart"}}, {"model": "reversion.version", "pk": 863, "fields": {"revision": 863, "object_id": "aeda30cd-3853-4143-8e6e-c5f4689c4942", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"aeda30cd-3853-4143-8e6e-c5f4689c4942\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jim\", \"surname\": \"Clark\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jim Clark"}}, {"model": "reversion.version", "pk": 864, "fields": {"revision": 864, "object_id": "afb9e024-6eec-4a6d-aaff-4d9611389893", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"afb9e024-6eec-4a6d-aaff-4d9611389893\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darrell\", \"surname\": \"Wangler\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darrell Wangler"}}, {"model": "reversion.version", "pk": 865, "fields": {"revision": 865, "object_id": "b0542a22-e62f-44a4-8cd6-2e2832f174c9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b0542a22-e62f-44a4-8cd6-2e2832f174c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wayne\", \"surname\": \"Philps\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wayne Philps"}}, {"model": "reversion.version", "pk": 866, "fields": {"revision": 866, "object_id": "b0b61a89-ebba-449e-9646-79d258509870", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b0b61a89-ebba-449e-9646-79d258509870\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Franz\", \"surname\": \"Bergendahl\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Franz Bergendahl"}}, {"model": "reversion.version", "pk": 867, "fields": {"revision": 867, "object_id": "b229242c-a176-412d-9819-ea8bf288b602", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b229242c-a176-412d-9819-ea8bf288b602\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gordon\", \"surname\": \"Sharp\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gordon Sharp"}}, {"model": "reversion.version", "pk": 868, "fields": {"revision": 868, "object_id": "b2381293-d9ed-4964-911f-bee70fc9027b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b2381293-d9ed-4964-911f-bee70fc9027b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darcy\", \"surname\": \"Stead\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darcy Stead"}}, {"model": "reversion.version", "pk": 869, "fields": {"revision": 869, "object_id": "b2b46ff4-1ea2-4d2a-b179-9e15a2c3d520", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b2b46ff4-1ea2-4d2a-b179-9e15a2c3d520\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Keith\", \"surname\": \"Robbins\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Keith Robbins"}}, {"model": "reversion.version", "pk": 870, "fields": {"revision": 870, "object_id": "b3bfa299-bd16-4aa2-9359-15679b1d2f3d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b3bfa299-bd16-4aa2-9359-15679b1d2f3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robin\", \"surname\": \"Johnson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robin Johnson"}}, {"model": "reversion.version", "pk": 871, "fields": {"revision": 871, "object_id": "b3e69424-4179-48f0-8c68-a6cb01f7727b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b3e69424-4179-48f0-8c68-a6cb01f7727b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William\", \"surname\": \"Schwartz\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William Schwartz"}}, {"model": "reversion.version", "pk": 872, "fields": {"revision": 872, "object_id": "b4538be2-8977-4c27-b632-a72522a12613", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b4538be2-8977-4c27-b632-a72522a12613\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Arnold\", \"surname\": \"Smithson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Arnold Smithson"}}, {"model": "reversion.version", "pk": 873, "fields": {"revision": 873, "object_id": "b5298440-240b-4372-a2c2-80165ce76350", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b5298440-240b-4372-a2c2-80165ce76350\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Doug\", \"surname\": \"Unrau\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Doug Unrau"}}, {"model": "reversion.version", "pk": 874, "fields": {"revision": 874, "object_id": "b5729fb8-aa12-417e-b6d9-9e9ebb181aff", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b5729fb8-aa12-417e-b6d9-9e9ebb181aff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kelly\", \"surname\": \"McGarry\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kelly McGarry"}}, {"model": "reversion.version", "pk": 875, "fields": {"revision": 875, "object_id": "b5a297c5-b769-432b-9476-54bfaf0a38d4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b5a297c5-b769-432b-9476-54bfaf0a38d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Derek\", \"surname\": \"Tomlinson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Derek Tomlinson"}}, {"model": "reversion.version", "pk": 876, "fields": {"revision": 876, "object_id": "b5e8a02e-25d9-4df5-8dbe-1d8cfe747b7f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b5e8a02e-25d9-4df5-8dbe-1d8cfe747b7f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Art\", \"surname\": \"Barr\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Art Barr"}}, {"model": "reversion.version", "pk": 877, "fields": {"revision": 877, "object_id": "b6af898d-c140-41c9-8527-d9b52159ed28", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b6af898d-c140-41c9-8527-d9b52159ed28\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Arthur\", \"surname\": \"Bernard\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Arthur Bernard"}}, {"model": "reversion.version", "pk": 878, "fields": {"revision": 878, "object_id": "b6d47e6b-391f-43d2-a29d-cf48bc0ab81c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b6d47e6b-391f-43d2-a29d-cf48bc0ab81c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rick G.\", \"surname\": \"France\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rick G. France"}}, {"model": "reversion.version", "pk": 879, "fields": {"revision": 879, "object_id": "b7a9acde-62a6-4368-9cf9-1b7bc27cd649", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b7a9acde-62a6-4368-9cf9-1b7bc27cd649\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Clarence\", \"surname\": \"Rolleman\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Clarence Rolleman"}}, {"model": "reversion.version", "pk": 880, "fields": {"revision": 880, "object_id": "b7c42b5d-a8c8-4114-9ecd-8f9bb946452a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b7c42b5d-a8c8-4114-9ecd-8f9bb946452a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cass\", \"surname\": \"Currie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cass Currie"}}, {"model": "reversion.version", "pk": 881, "fields": {"revision": 881, "object_id": "b7e3149f-2e81-4101-bcad-f1fcfed4e437", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b7e3149f-2e81-4101-bcad-f1fcfed4e437\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jason\", \"surname\": \"Peterson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jason Peterson"}}, {"model": "reversion.version", "pk": 882, "fields": {"revision": 882, "object_id": "b8e6da68-3c4e-4253-a990-3b98ae333e71", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b8e6da68-3c4e-4253-a990-3b98ae333e71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Marshall\", \"surname\": \"Greenwell\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Marshall Greenwell"}}, {"model": "reversion.version", "pk": 883, "fields": {"revision": 883, "object_id": "b96d12a8-a154-4664-9b1c-48a2a844dfb2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b96d12a8-a154-4664-9b1c-48a2a844dfb2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Hank\", \"surname\": \"Pakos\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Hank Pakos"}}, {"model": "reversion.version", "pk": 884, "fields": {"revision": 884, "object_id": "b9e82778-f5ab-44f9-b7e0-4dff32508fc2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"b9e82778-f5ab-44f9-b7e0-4dff32508fc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Philip\", \"surname\": \"Faasse\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Philip Faasse"}}, {"model": "reversion.version", "pk": 885, "fields": {"revision": 885, "object_id": "ba362edd-e1ce-4eb3-b307-8a37f00de9cc", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ba362edd-e1ce-4eb3-b307-8a37f00de9cc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ronald\", \"surname\": \"Abercrombie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ronald Abercrombie"}}, {"model": "reversion.version", "pk": 886, "fields": {"revision": 886, "object_id": "bbba4deb-57cb-445c-bdf7-c9c60324cf81", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bbba4deb-57cb-445c-bdf7-c9c60324cf81\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Andy\", \"surname\": \"Beam\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Andy Beam"}}, {"model": "reversion.version", "pk": 887, "fields": {"revision": 887, "object_id": "bc4f8fd3-5acf-438b-b46d-a696e3388f97", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bc4f8fd3-5acf-438b-b46d-a696e3388f97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Rosenburg\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Rosenburg"}}, {"model": "reversion.version", "pk": 888, "fields": {"revision": 888, "object_id": "bce25dbd-826b-4cc9-95c0-e61a9e84a053", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bce25dbd-826b-4cc9-95c0-e61a9e84a053\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Matthew\", \"surname\": \"Chapman\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Matthew Chapman"}}, {"model": "reversion.version", "pk": 889, "fields": {"revision": 889, "object_id": "bdae2c95-a4e6-40ec-ae5f-a0bd8616f7ec", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bdae2c95-a4e6-40ec-ae5f-a0bd8616f7ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Simon\", \"surname\": \"Wolford\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Simon Wolford"}}, {"model": "reversion.version", "pk": 890, "fields": {"revision": 890, "object_id": "be036870-a41c-43f3-b351-15fb41f8c182", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"be036870-a41c-43f3-b351-15fb41f8c182\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ronald\", \"surname\": \"Gehring\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ronald Gehring"}}, {"model": "reversion.version", "pk": 891, "fields": {"revision": 891, "object_id": "be7d9307-2d05-4bf4-b552-23241b16430d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"be7d9307-2d05-4bf4-b552-23241b16430d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Tor\", \"surname\": \"Berg\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Tor Berg"}}, {"model": "reversion.version", "pk": 892, "fields": {"revision": 892, "object_id": "be9a25a4-79fc-4574-8f57-76f65a9885a6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"be9a25a4-79fc-4574-8f57-76f65a9885a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Misek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Misek"}}, {"model": "reversion.version", "pk": 893, "fields": {"revision": 893, "object_id": "beab08ec-f620-4cb3-8771-237d3046259b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"beab08ec-f620-4cb3-8771-237d3046259b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Walter\", \"surname\": \"Howe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Walter Howe"}}, {"model": "reversion.version", "pk": 894, "fields": {"revision": 894, "object_id": "bed6b98d-56cf-4a80-8278-d8f41bbe72b6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bed6b98d-56cf-4a80-8278-d8f41bbe72b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Alistair\", \"surname\": \"Wilson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Alistair Wilson"}}, {"model": "reversion.version", "pk": 895, "fields": {"revision": 895, "object_id": "bf21510b-2a3e-4e3c-b930-8dbba956cd08", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bf21510b-2a3e-4e3c-b930-8dbba956cd08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dylan\", \"surname\": \"Kelly\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dylan Kelly"}}, {"model": "reversion.version", "pk": 896, "fields": {"revision": 896, "object_id": "bf5fbc5c-9b12-4310-be5d-d20b6cce6f6d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bf5fbc5c-9b12-4310-be5d-d20b6cce6f6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Stephen\", \"surname\": \"Shewchuck\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Stephen Shewchuck"}}, {"model": "reversion.version", "pk": 897, "fields": {"revision": 897, "object_id": "bfa64c6c-8615-48aa-a972-4de0af304547", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bfa64c6c-8615-48aa-a972-4de0af304547\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randy\", \"surname\": \"Lamb\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randy Lamb"}}, {"model": "reversion.version", "pk": 898, "fields": {"revision": 898, "object_id": "bfc862a6-93f8-455c-934b-f06817ef827f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"bfc862a6-93f8-455c-934b-f06817ef827f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Brindley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Brindley"}}, {"model": "reversion.version", "pk": 899, "fields": {"revision": 899, "object_id": "c0efa5a7-5e08-4fe0-9e27-d365f9691639", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c0efa5a7-5e08-4fe0-9e27-d365f9691639\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ray\", \"surname\": \"Hehn\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ray Hehn"}}, {"model": "reversion.version", "pk": 900, "fields": {"revision": 900, "object_id": "c15c0bae-7dfd-4710-a7a5-b079209906ed", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c15c0bae-7dfd-4710-a7a5-b079209906ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"L'Henaff\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John L'Henaff"}}, {"model": "reversion.version", "pk": 901, "fields": {"revision": 901, "object_id": "c15ef3ea-2154-4176-86e5-70fc20fd959a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c15ef3ea-2154-4176-86e5-70fc20fd959a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Stanley\", \"surname\": \"Woodford\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Stanley Woodford"}}, {"model": "reversion.version", "pk": 902, "fields": {"revision": 902, "object_id": "c2dc239e-fffd-4ce6-bd16-fb5da642b10a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c2dc239e-fffd-4ce6-bd16-fb5da642b10a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Corley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Corley"}}, {"model": "reversion.version", "pk": 903, "fields": {"revision": 903, "object_id": "c2df6de9-948f-4a0c-b8a6-242f8d2340e0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c2df6de9-948f-4a0c-b8a6-242f8d2340e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Garth\", \"surname\": \"Wallace\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Garth Wallace"}}, {"model": "reversion.version", "pk": 904, "fields": {"revision": 904, "object_id": "c44b2f61-ffea-460b-9cae-53e7145210ac", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c44b2f61-ffea-460b-9cae-53e7145210ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lorne\", \"surname\": \"Fuller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lorne Fuller"}}, {"model": "reversion.version", "pk": 905, "fields": {"revision": 905, "object_id": "c4e0f611-d051-479f-90c4-19fc9b65ce94", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c4e0f611-d051-479f-90c4-19fc9b65ce94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Donkun\", \"surname\": \"Caron\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Donkun Caron"}}, {"model": "reversion.version", "pk": 906, "fields": {"revision": 906, "object_id": "c6d9c83b-a5ac-47cb-ba04-b6d1fe60437d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c6d9c83b-a5ac-47cb-ba04-b6d1fe60437d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Antony\", \"surname\": \"Kruger\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Antony Kruger"}}, {"model": "reversion.version", "pk": 907, "fields": {"revision": 907, "object_id": "c7bb2a7a-384e-4105-9799-60079f57785b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c7bb2a7a-384e-4105-9799-60079f57785b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wayne\", \"surname\": \"Johnson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wayne Johnson"}}, {"model": "reversion.version", "pk": 908, "fields": {"revision": 908, "object_id": "c7dc8a3f-563b-414e-92d2-db8ce6b05ae3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c7dc8a3f-563b-414e-92d2-db8ce6b05ae3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"Watt\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas Watt"}}, {"model": "reversion.version", "pk": 909, "fields": {"revision": 909, "object_id": "c7ed6930-cc3e-4f06-9378-0f56f4aa314c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c7ed6930-cc3e-4f06-9378-0f56f4aa314c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Don\", \"surname\": \"McMullen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Don McMullen"}}, {"model": "reversion.version", "pk": 910, "fields": {"revision": 910, "object_id": "c8610820-4852-44e7-96cd-e6677a5b417d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c8610820-4852-44e7-96cd-e6677a5b417d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jeffrey\", \"surname\": \"Peppler\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jeffrey Peppler"}}, {"model": "reversion.version", "pk": 911, "fields": {"revision": 911, "object_id": "c8d3c978-873f-477d-b3be-2c327ec1cba6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c8d3c978-873f-477d-b3be-2c327ec1cba6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Hall\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Hall"}}, {"model": "reversion.version", "pk": 912, "fields": {"revision": 912, "object_id": "c8ec66df-f1ef-48c8-9c8e-8b5b1678de52", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c8ec66df-f1ef-48c8-9c8e-8b5b1678de52\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jerry\", \"surname\": \"Heal\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jerry Heal"}}, {"model": "reversion.version", "pk": 913, "fields": {"revision": 913, "object_id": "c91d6692-94dd-4065-8efb-a198da2e3507", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c91d6692-94dd-4065-8efb-a198da2e3507\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Bastiannsen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Bastiannsen"}}, {"model": "reversion.version", "pk": 914, "fields": {"revision": 914, "object_id": "c9c855bc-1561-40c8-83ed-84f69a9c2eae", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"c9c855bc-1561-40c8-83ed-84f69a9c2eae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Larry\", \"surname\": \"Field\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Larry Field"}}, {"model": "reversion.version", "pk": 915, "fields": {"revision": 915, "object_id": "ca735d5d-72a5-4004-98d4-62e2b82848a6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ca735d5d-72a5-4004-98d4-62e2b82848a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lloyd\", \"surname\": \"Riehl\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lloyd Riehl"}}, {"model": "reversion.version", "pk": 916, "fields": {"revision": 916, "object_id": "ca894801-2b49-48ff-865c-fb70bd84340a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ca894801-2b49-48ff-865c-fb70bd84340a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Shawn\", \"surname\": \"Stone\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Shawn Stone"}}, {"model": "reversion.version", "pk": 917, "fields": {"revision": 917, "object_id": "cb69800f-8acf-4653-b29e-f04b422115ee", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"cb69800f-8acf-4653-b29e-f04b422115ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Bombardier\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Bombardier"}}, {"model": "reversion.version", "pk": 918, "fields": {"revision": 918, "object_id": "cbacd513-c904-451f-bafc-6d6b2599277c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"cbacd513-c904-451f-bafc-6d6b2599277c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Bolan\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Bolan"}}, {"model": "reversion.version", "pk": 919, "fields": {"revision": 919, "object_id": "cd5190a1-2989-4891-8370-b0c7bdbf0266", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"cd5190a1-2989-4891-8370-b0c7bdbf0266\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mike\", \"surname\": \"Pearce\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mike Pearce"}}, {"model": "reversion.version", "pk": 920, "fields": {"revision": 920, "object_id": "cd8c8cc8-efca-4178-9a02-a539bb35168e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"cd8c8cc8-efca-4178-9a02-a539bb35168e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dale\", \"surname\": \"VanDam\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dale VanDam"}}, {"model": "reversion.version", "pk": 921, "fields": {"revision": 921, "object_id": "ce12f22c-43a2-44bd-ab61-8bffc1278be4", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ce12f22c-43a2-44bd-ab61-8bffc1278be4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Blaine\", \"surname\": \"Matuga\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Blaine Matuga"}}, {"model": "reversion.version", "pk": 922, "fields": {"revision": 922, "object_id": "ce511bb0-6225-4331-8099-20b8aba20a8a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ce511bb0-6225-4331-8099-20b8aba20a8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gregory\", \"surname\": \"Carlos\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gregory Carlos"}}, {"model": "reversion.version", "pk": 923, "fields": {"revision": 923, "object_id": "cf7f59da-3a25-4af6-8b40-4ac454854e92", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"cf7f59da-3a25-4af6-8b40-4ac454854e92\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Vern\", \"surname\": \"Winger\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Vern Winger"}}, {"model": "reversion.version", "pk": 924, "fields": {"revision": 924, "object_id": "d00568bd-614b-43f6-818b-4a1ed71f6565", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d00568bd-614b-43f6-818b-4a1ed71f6565\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ian\", \"surname\": \"Macdonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ian Macdonald"}}, {"model": "reversion.version", "pk": 925, "fields": {"revision": 925, "object_id": "d09673e0-9b4a-4685-af0b-af05941037b8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d09673e0-9b4a-4685-af0b-af05941037b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Neal\", \"surname\": \"TeBrinke\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Neal TeBrinke"}}, {"model": "reversion.version", "pk": 926, "fields": {"revision": 926, "object_id": "d0b3ff55-32a2-4c99-867a-df95c7db4548", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d0b3ff55-32a2-4c99-867a-df95c7db4548\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Darryl\", \"surname\": \"Bates\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Darryl Bates"}}, {"model": "reversion.version", "pk": 927, "fields": {"revision": 927, "object_id": "d0ba6bc5-8658-40af-9aad-011b6050854c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d0ba6bc5-8658-40af-9aad-011b6050854c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"James\", \"surname\": \"Fyfe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "James Fyfe"}}, {"model": "reversion.version", "pk": 928, "fields": {"revision": 928, "object_id": "d0f2a237-e322-4b99-a413-c7f77c2a403b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d0f2a237-e322-4b99-a413-c7f77c2a403b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"George\", \"surname\": \"Olmr\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "George Olmr"}}, {"model": "reversion.version", "pk": 929, "fields": {"revision": 929, "object_id": "d0f31db3-9d4e-4171-a67e-e508ba376698", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d0f31db3-9d4e-4171-a67e-e508ba376698\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Clinton\", \"surname\": \"Mallach\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Clinton Mallach"}}, {"model": "reversion.version", "pk": 930, "fields": {"revision": 930, "object_id": "d2a7449e-7389-4549-8965-86f788409c75", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d2a7449e-7389-4549-8965-86f788409c75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ken\", \"surname\": \"McKellar\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ken McKellar"}}, {"model": "reversion.version", "pk": 931, "fields": {"revision": 931, "object_id": "d36d11cf-ffe2-4d9f-b362-a015b19d6229", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d36d11cf-ffe2-4d9f-b362-a015b19d6229\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Bourget\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Bourget"}}, {"model": "reversion.version", "pk": 932, "fields": {"revision": 932, "object_id": "d3873098-0b93-447e-8158-8d1e284d7082", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d3873098-0b93-447e-8158-8d1e284d7082\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Croft\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Croft"}}, {"model": "reversion.version", "pk": 933, "fields": {"revision": 933, "object_id": "d3eaa029-ea8b-4b96-9b3f-aba5f0419169", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d3eaa029-ea8b-4b96-9b3f-aba5f0419169\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Marcus\", \"surname\": \"Schlick\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Marcus Schlick"}}, {"model": "reversion.version", "pk": 934, "fields": {"revision": 934, "object_id": "d3fb3c4b-bbc1-4cef-a80b-857879a8d962", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d3fb3c4b-bbc1-4cef-a80b-857879a8d962\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gerald\", \"surname\": \"Niblow\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gerald Niblow"}}, {"model": "reversion.version", "pk": 935, "fields": {"revision": 935, "object_id": "d506b902-3547-47b5-822c-99babbf5b121", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d506b902-3547-47b5-822c-99babbf5b121\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Norm\", \"surname\": \"Coffey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Norm Coffey"}}, {"model": "reversion.version", "pk": 936, "fields": {"revision": 936, "object_id": "d54e8020-ff0b-4c7b-8d84-6b45fb21b72c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d54e8020-ff0b-4c7b-8d84-6b45fb21b72c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Slade\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Slade"}}, {"model": "reversion.version", "pk": 937, "fields": {"revision": 937, "object_id": "d686af85-1994-498e-a2fe-73437ac84d29", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d686af85-1994-498e-a2fe-73437ac84d29\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Roy\", \"surname\": \"Fallon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Roy Fallon"}}, {"model": "reversion.version", "pk": 938, "fields": {"revision": 938, "object_id": "d6cd00de-284f-46aa-a6a1-ee458d56a1ec", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d6cd00de-284f-46aa-a6a1-ee458d56a1ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brian\", \"surname\": \"Widdows\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brian Widdows"}}, {"model": "reversion.version", "pk": 939, "fields": {"revision": 939, "object_id": "d6dca31d-c5cc-4fa2-98d4-a530572755f2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d6dca31d-c5cc-4fa2-98d4-a530572755f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Glen\", \"surname\": \"Fyfe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Glen Fyfe"}}, {"model": "reversion.version", "pk": 940, "fields": {"revision": 940, "object_id": "d6edde50-89fd-4f47-89ae-9fffc0d3aaf0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d6edde50-89fd-4f47-89ae-9fffc0d3aaf0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Keith\", \"surname\": \"Jestico\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Keith Jestico"}}, {"model": "reversion.version", "pk": 941, "fields": {"revision": 941, "object_id": "d81b5bc9-ef42-45a4-8e59-423fdda2024c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d81b5bc9-ef42-45a4-8e59-423fdda2024c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cameron\", \"surname\": \"Wiebe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cameron Wiebe"}}, {"model": "reversion.version", "pk": 942, "fields": {"revision": 942, "object_id": "d84bb8af-dc43-458e-9481-0b855808e35c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d84bb8af-dc43-458e-9481-0b855808e35c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Nick\", \"surname\": \"Fairney\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Nick Fairney"}}, {"model": "reversion.version", "pk": 943, "fields": {"revision": 943, "object_id": "d8e66003-1db2-47c4-b237-5e700723bf9e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d8e66003-1db2-47c4-b237-5e700723bf9e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Rob\", \"surname\": \"Crampton\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Rob Crampton"}}, {"model": "reversion.version", "pk": 944, "fields": {"revision": 944, "object_id": "d9a7182d-5cbc-4135-a329-1d571c3073dc", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d9a7182d-5cbc-4135-a329-1d571c3073dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Anderson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Anderson"}}, {"model": "reversion.version", "pk": 945, "fields": {"revision": 945, "object_id": "d9f8894e-406e-4e3d-909a-1c2b264a88a5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"d9f8894e-406e-4e3d-909a-1c2b264a88a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daniel\", \"surname\": \"Nadeau\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daniel Nadeau"}}, {"model": "reversion.version", "pk": 946, "fields": {"revision": 946, "object_id": "daed7f3d-c5bd-46a6-a059-ce82055d23f3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"daed7f3d-c5bd-46a6-a059-ce82055d23f3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wayne\", \"surname\": \"Michener\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wayne Michener"}}, {"model": "reversion.version", "pk": 947, "fields": {"revision": 947, "object_id": "db9b6929-c571-4bd5-86f9-495c932805a0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"db9b6929-c571-4bd5-86f9-495c932805a0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bruce\", \"surname\": \"Heathcote\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bruce Heathcote"}}, {"model": "reversion.version", "pk": 948, "fields": {"revision": 948, "object_id": "dbd8c0e2-9e6a-40ea-b1eb-cb6aeacdbb4d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dbd8c0e2-9e6a-40ea-b1eb-cb6aeacdbb4d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kenneth\", \"surname\": \"Banks\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kenneth Banks"}}, {"model": "reversion.version", "pk": 949, "fields": {"revision": 949, "object_id": "dc25a061-cc98-4ceb-ae8f-70875fefe2d9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dc25a061-cc98-4ceb-ae8f-70875fefe2d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Hockridge\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Hockridge"}}, {"model": "reversion.version", "pk": 950, "fields": {"revision": 950, "object_id": "dc311f9c-72f3-4396-8cc1-9eb58018ee9b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dc311f9c-72f3-4396-8cc1-9eb58018ee9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Mark\", \"surname\": \"Mitchell\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Mark Mitchell"}}, {"model": "reversion.version", "pk": 951, "fields": {"revision": 951, "object_id": "dc7c9f47-16d6-4bb6-b072-13d029281558", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dc7c9f47-16d6-4bb6-b072-13d029281558\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Guy\", \"surname\": \"Steinborn\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Guy Steinborn"}}, {"model": "reversion.version", "pk": 952, "fields": {"revision": 952, "object_id": "dd186bf9-c745-4d89-835c-cef20534b9bb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dd186bf9-c745-4d89-835c-cef20534b9bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lucas\", \"surname\": \"MacEwan\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lucas MacEwan"}}, {"model": "reversion.version", "pk": 953, "fields": {"revision": 953, "object_id": "de3b44ef-d718-43cb-bc87-3f8b753ce058", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"de3b44ef-d718-43cb-bc87-3f8b753ce058\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brad\", \"surname\": \"Neuls\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brad Neuls"}}, {"model": "reversion.version", "pk": 954, "fields": {"revision": 954, "object_id": "de3d3d0e-8163-4d22-82b9-a8bab3e6fe83", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"de3d3d0e-8163-4d22-82b9-a8bab3e6fe83\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jim\", \"surname\": \"Desjarlais\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jim Desjarlais"}}, {"model": "reversion.version", "pk": 955, "fields": {"revision": 955, "object_id": "dedd7221-ce4b-4c09-ac89-60a3e20cda2a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dedd7221-ce4b-4c09-ac89-60a3e20cda2a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Travis\", \"surname\": \"Johnson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Travis Johnson"}}, {"model": "reversion.version", "pk": 956, "fields": {"revision": 956, "object_id": "df3917e1-2a32-4f0d-85d4-fee90d1edb23", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"df3917e1-2a32-4f0d-85d4-fee90d1edb23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Laurin\", \"surname\": \"Macdonald\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Laurin Macdonald"}}, {"model": "reversion.version", "pk": 957, "fields": {"revision": 957, "object_id": "dfb40b74-ee60-4736-af8a-39558edc4380", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dfb40b74-ee60-4736-af8a-39558edc4380\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kelly\", \"surname\": \"Rosehill\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kelly Rosehill"}}, {"model": "reversion.version", "pk": 958, "fields": {"revision": 958, "object_id": "dfc46de5-8ce8-4d1c-a3df-248442915a2d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"dfc46de5-8ce8-4d1c-a3df-248442915a2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Anthony\", \"surname\": \"Kohlhauser\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Anthony Kohlhauser"}}, {"model": "reversion.version", "pk": 959, "fields": {"revision": 959, "object_id": "e04001e2-1f8c-41ee-9901-dc79de6b93bb", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e04001e2-1f8c-41ee-9901-dc79de6b93bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jon\", \"surname\": \"Williams\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jon Williams"}}, {"model": "reversion.version", "pk": 960, "fields": {"revision": 960, "object_id": "e05501d9-cf22-49ae-bfe4-f901c14c5812", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e05501d9-cf22-49ae-bfe4-f901c14c5812\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Don\", \"surname\": \"Bombardier\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Don Bombardier"}}, {"model": "reversion.version", "pk": 961, "fields": {"revision": 961, "object_id": "e08d3916-c673-4189-889f-708bbc4bb024", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e08d3916-c673-4189-889f-708bbc4bb024\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Daniel\", \"surname\": \"Sprinkling\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Daniel Sprinkling"}}, {"model": "reversion.version", "pk": 962, "fields": {"revision": 962, "object_id": "e11c66cd-c2c6-4298-9c2c-0001a393d3b7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e11c66cd-c2c6-4298-9c2c-0001a393d3b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Schibli\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Schibli"}}, {"model": "reversion.version", "pk": 963, "fields": {"revision": 963, "object_id": "e12f04ec-7c04-4c03-bf53-40c32f68a7c9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e12f04ec-7c04-4c03-bf53-40c32f68a7c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Greg\", \"surname\": \"Anderson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Greg Anderson"}}, {"model": "reversion.version", "pk": 964, "fields": {"revision": 964, "object_id": "e198e5da-5292-438f-9689-2e72053e6613", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e198e5da-5292-438f-9689-2e72053e6613\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Vlchek\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Vlchek"}}, {"model": "reversion.version", "pk": 965, "fields": {"revision": 965, "object_id": "e250b1ce-27e4-465f-9cc4-71d6cd90ca4e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e250b1ce-27e4-465f-9cc4-71d6cd90ca4e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Miles\", \"surname\": \"Hock\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Miles Hock"}}, {"model": "reversion.version", "pk": 966, "fields": {"revision": 966, "object_id": "e2bbf764-12d1-4657-b8f8-95a0facf1209", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e2bbf764-12d1-4657-b8f8-95a0facf1209\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randal\", \"surname\": \"Pruden\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randal Pruden"}}, {"model": "reversion.version", "pk": 967, "fields": {"revision": 967, "object_id": "e3fe29b4-1b00-4890-9b1b-816318f51dab", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e3fe29b4-1b00-4890-9b1b-816318f51dab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Cory\", \"surname\": \"Gillis\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Cory Gillis"}}, {"model": "reversion.version", "pk": 968, "fields": {"revision": 968, "object_id": "e42922b0-c09c-4f91-a8e6-1f4761639549", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e42922b0-c09c-4f91-a8e6-1f4761639549\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lauren\", \"surname\": \"Holman\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lauren Holman"}}, {"model": "reversion.version", "pk": 969, "fields": {"revision": 969, "object_id": "e4e4c8e7-fa0a-4f97-93b0-1662a31f2b73", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e4e4c8e7-fa0a-4f97-93b0-1662a31f2b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Yemm\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Yemm"}}, {"model": "reversion.version", "pk": 970, "fields": {"revision": 970, "object_id": "e55b291c-02a7-40de-a2db-7a774f5aa94b", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e55b291c-02a7-40de-a2db-7a774f5aa94b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Roberts\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Roberts"}}, {"model": "reversion.version", "pk": 971, "fields": {"revision": 971, "object_id": "e628c1eb-5282-4f10-984e-33ac810f5f55", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e628c1eb-5282-4f10-984e-33ac810f5f55\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Wayne\", \"surname\": \"Morrill\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Wayne Morrill"}}, {"model": "reversion.version", "pk": 972, "fields": {"revision": 972, "object_id": "e6f94c68-f736-416e-b48d-55de07236475", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e6f94c68-f736-416e-b48d-55de07236475\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dennis\", \"surname\": \"Pelzer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dennis Pelzer"}}, {"model": "reversion.version", "pk": 973, "fields": {"revision": 973, "object_id": "e7284719-bc72-4734-bcbf-f16fc0868656", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e7284719-bc72-4734-bcbf-f16fc0868656\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dan\", \"surname\": \"Evans\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dan Evans"}}, {"model": "reversion.version", "pk": 974, "fields": {"revision": 974, "object_id": "e7bc1b4d-cdf5-4187-ba3b-ea87d78f66e8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e7bc1b4d-cdf5-4187-ba3b-ea87d78f66e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Stuart\", \"surname\": \"McCormick\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Stuart McCormick"}}, {"model": "reversion.version", "pk": 975, "fields": {"revision": 975, "object_id": "e8117ed3-9c24-47a8-b5a3-e691ce12d2c8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e8117ed3-9c24-47a8-b5a3-e691ce12d2c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Craig\", \"surname\": \"Barfett\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Craig Barfett"}}, {"model": "reversion.version", "pk": 976, "fields": {"revision": 976, "object_id": "e84ac77d-2580-4975-827d-98cda03a540c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e84ac77d-2580-4975-827d-98cda03a540c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kurtis\", \"surname\": \"Rentz\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kurtis Rentz"}}, {"model": "reversion.version", "pk": 977, "fields": {"revision": 977, "object_id": "e8a1f4fb-04c1-4cb7-b743-ea2d94ed7552", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e8a1f4fb-04c1-4cb7-b743-ea2d94ed7552\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Don\", \"surname\": \"Ritchey\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Don Ritchey"}}, {"model": "reversion.version", "pk": 978, "fields": {"revision": 978, "object_id": "e8a96245-714d-483a-83bb-75f8aa61ffc8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e8a96245-714d-483a-83bb-75f8aa61ffc8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Matthew\", \"surname\": \"Miller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Matthew Miller"}}, {"model": "reversion.version", "pk": 979, "fields": {"revision": 979, "object_id": "e8f6d387-cce1-48cd-91f3-9e4f8aad6060", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e8f6d387-cce1-48cd-91f3-9e4f8aad6060\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Derek\", \"surname\": \"Oakley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Derek Oakley"}}, {"model": "reversion.version", "pk": 980, "fields": {"revision": 980, "object_id": "e90b2c23-4153-47aa-9e21-ed160db93e2d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e90b2c23-4153-47aa-9e21-ed160db93e2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Barry\", \"surname\": \"Duch\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Barry Duch"}}, {"model": "reversion.version", "pk": 981, "fields": {"revision": 981, "object_id": "e97a26f5-bb17-4456-8817-2d4b96d1a38a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e97a26f5-bb17-4456-8817-2d4b96d1a38a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Scott\", \"surname\": \"Madden\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Scott Madden"}}, {"model": "reversion.version", "pk": 982, "fields": {"revision": 982, "object_id": "e991aa01-e6c3-4c25-b68d-1a1f70d72281", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"e991aa01-e6c3-4c25-b68d-1a1f70d72281\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ernest\", \"surname\": \"Wipf\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ernest Wipf"}}, {"model": "reversion.version", "pk": 983, "fields": {"revision": 983, "object_id": "ea6085a2-07cd-46f4-8ccb-59430422b483", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ea6085a2-07cd-46f4-8ccb-59430422b483\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ryan\", \"surname\": \"Naka\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ryan Naka"}}, {"model": "reversion.version", "pk": 984, "fields": {"revision": 984, "object_id": "ebe4cf3e-9151-4fc5-bf93-59ce7a1cb4d7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ebe4cf3e-9151-4fc5-bf93-59ce7a1cb4d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Brennan\", \"surname\": \"Dyck\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Brennan Dyck"}}, {"model": "reversion.version", "pk": 985, "fields": {"revision": 985, "object_id": "ecc4ba26-dbeb-4993-ab89-ed5beab9c6d5", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ecc4ba26-dbeb-4993-ab89-ed5beab9c6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Slade\", \"surname\": \"Wheatley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Slade Wheatley"}}, {"model": "reversion.version", "pk": 986, "fields": {"revision": 986, "object_id": "ed4adde4-9aae-4efa-9040-2e50cdd6250a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ed4adde4-9aae-4efa-9040-2e50cdd6250a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Paul\", \"surname\": \"Breadon\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Paul Breadon"}}, {"model": "reversion.version", "pk": 987, "fields": {"revision": 987, "object_id": "ed8e2c79-d233-488f-8a82-def294bd1680", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ed8e2c79-d233-488f-8a82-def294bd1680\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Watts\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Watts"}}, {"model": "reversion.version", "pk": 988, "fields": {"revision": 988, "object_id": "ee6d4a9f-8754-4432-a3be-77fac8eed4e7", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ee6d4a9f-8754-4432-a3be-77fac8eed4e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"George\", \"surname\": \"Lewis\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "George Lewis"}}, {"model": "reversion.version", "pk": 989, "fields": {"revision": 989, "object_id": "ee8d37c5-cca9-4514-9b6f-d38962694bc0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ee8d37c5-cca9-4514-9b6f-d38962694bc0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kevin\", \"surname\": \"Craig\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kevin Craig"}}, {"model": "reversion.version", "pk": 990, "fields": {"revision": 990, "object_id": "eea5a18b-7e0e-4f9c-bd8e-af88002d3c04", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"eea5a18b-7e0e-4f9c-bd8e-af88002d3c04\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Randall\", \"surname\": \"Kashmark\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Randall Kashmark"}}, {"model": "reversion.version", "pk": 991, "fields": {"revision": 991, "object_id": "ef9966a7-5cb3-4f22-a92c-8d8f1f279407", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ef9966a7-5cb3-4f22-a92c-8d8f1f279407\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Caldwell\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Caldwell"}}, {"model": "reversion.version", "pk": 992, "fields": {"revision": 992, "object_id": "f01c283a-34b3-4646-891b-304b85e93d46", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f01c283a-34b3-4646-891b-304b85e93d46\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Christopher\", \"surname\": \"Bauer\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Christopher Bauer"}}, {"model": "reversion.version", "pk": 993, "fields": {"revision": 993, "object_id": "f1088682-a7ad-4231-a2b2-4b04f74f6027", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f1088682-a7ad-4231-a2b2-4b04f74f6027\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Lyndon\", \"surname\": \"Stinson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Lyndon Stinson"}}, {"model": "reversion.version", "pk": 994, "fields": {"revision": 994, "object_id": "f117f307-612f-417d-83b3-3803e9271ddc", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f117f307-612f-417d-83b3-3803e9271ddc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Kenneth\", \"surname\": \"Fyfe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Kenneth Fyfe"}}, {"model": "reversion.version", "pk": 995, "fields": {"revision": 995, "object_id": "f13d7c90-9b1c-4964-b56a-a5ad88d96416", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f13d7c90-9b1c-4964-b56a-a5ad88d96416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Calvin\", \"surname\": \"Slade\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Calvin Slade"}}, {"model": "reversion.version", "pk": 996, "fields": {"revision": 996, "object_id": "f26ea5af-5d37-4f3a-a575-f40e92a91ddd", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f26ea5af-5d37-4f3a-a575-f40e92a91ddd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Richard\", \"surname\": \"Reid\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Richard Reid"}}, {"model": "reversion.version", "pk": 997, "fields": {"revision": 997, "object_id": "f38bb55e-a028-40cb-885a-86b9ef193ac0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f38bb55e-a028-40cb-885a-86b9ef193ac0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"William\", \"surname\": \"Wiebe\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "William Wiebe"}}, {"model": "reversion.version", "pk": 998, "fields": {"revision": 998, "object_id": "f3afc869-7b44-491f-983f-743aa13dcb96", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f3afc869-7b44-491f-983f-743aa13dcb96\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Strate\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Strate"}}, {"model": "reversion.version", "pk": 999, "fields": {"revision": 999, "object_id": "f3e428b5-3a49-4249-b3cc-92142592ced8", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f3e428b5-3a49-4249-b3cc-92142592ced8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Reg\", \"surname\": \"Ayre\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Reg Ayre"}}, {"model": "reversion.version", "pk": 1000, "fields": {"revision": 1000, "object_id": "f44d2774-1b86-45fc-b8a8-3285065aa5ad", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f44d2774-1b86-45fc-b8a8-3285065aa5ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Steven\", \"surname\": \"MacLean\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Steven MacLean"}}, {"model": "reversion.version", "pk": 1001, "fields": {"revision": 1001, "object_id": "f453dff7-df4c-47b3-a725-2c7792509cbe", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f453dff7-df4c-47b3-a725-2c7792509cbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Larry\", \"surname\": \"Le Francois\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Larry Le Francois"}}, {"model": "reversion.version", "pk": 1002, "fields": {"revision": 1002, "object_id": "f4b850ea-e78b-4aee-96a0-68b15a7eab7a", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f4b850ea-e78b-4aee-96a0-68b15a7eab7a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Stephen\", \"surname\": \"Wipf\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Stephen Wipf"}}, {"model": "reversion.version", "pk": 1003, "fields": {"revision": 1003, "object_id": "f513abb9-c645-4b58-868a-7a926b1849e9", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f513abb9-c645-4b58-868a-7a926b1849e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ian\", \"surname\": \"Baker\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ian Baker"}}, {"model": "reversion.version", "pk": 1004, "fields": {"revision": 1004, "object_id": "f51f00ec-98e9-4734-bc54-3eb13f6470de", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f51f00ec-98e9-4734-bc54-3eb13f6470de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Gordon\", \"surname\": \"Gibbons\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Gordon Gibbons"}}, {"model": "reversion.version", "pk": 1005, "fields": {"revision": 1005, "object_id": "f5c04e29-e9f5-4c02-a475-e24f0d42ff22", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f5c04e29-e9f5-4c02-a475-e24f0d42ff22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Joey\", \"surname\": \"Widaiko\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Joey Widaiko"}}, {"model": "reversion.version", "pk": 1006, "fields": {"revision": 1006, "object_id": "f5d2c748-3858-43de-869a-c1e6af4dc5a3", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f5d2c748-3858-43de-869a-c1e6af4dc5a3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Garry\", \"surname\": \"Melnichuk\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Garry Melnichuk"}}, {"model": "reversion.version", "pk": 1007, "fields": {"revision": 1007, "object_id": "f5e78eb0-b4b0-4bff-aeb8-b55f0ce4cee6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f5e78eb0-b4b0-4bff-aeb8-b55f0ce4cee6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Trevor\", \"surname\": \"Gobert\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Trevor Gobert"}}, {"model": "reversion.version", "pk": 1008, "fields": {"revision": 1008, "object_id": "f653dafd-5395-473b-9123-a062253aee25", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f653dafd-5395-473b-9123-a062253aee25\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Pearce\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Pearce"}}, {"model": "reversion.version", "pk": 1009, "fields": {"revision": 1009, "object_id": "f68702d2-afb1-41fc-b351-51caf348088f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f68702d2-afb1-41fc-b351-51caf348088f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Chad\", \"surname\": \"Brown\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Chad Brown"}}, {"model": "reversion.version", "pk": 1010, "fields": {"revision": 1010, "object_id": "f689af68-b11a-4a07-9a21-65a4f296cf00", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f689af68-b11a-4a07-9a21-65a4f296cf00\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Art\", \"surname\": \"Klassen\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Art Klassen"}}, {"model": "reversion.version", "pk": 1011, "fields": {"revision": 1011, "object_id": "f735ed9c-a746-4c6a-8a5f-4c21e91082e0", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f735ed9c-a746-4c6a-8a5f-4c21e91082e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Faasse\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Faasse"}}, {"model": "reversion.version", "pk": 1012, "fields": {"revision": 1012, "object_id": "f89e5b7b-a253-49e8-a061-01c381cbdbed", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f89e5b7b-a253-49e8-a061-01c381cbdbed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dale\", \"surname\": \"Kvisle\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dale Kvisle"}}, {"model": "reversion.version", "pk": 1013, "fields": {"revision": 1013, "object_id": "f8af4efb-4588-4f1f-b27c-38f2768943aa", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f8af4efb-4588-4f1f-b27c-38f2768943aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Peter\", \"surname\": \"Kardash\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Peter Kardash"}}, {"model": "reversion.version", "pk": 1014, "fields": {"revision": 1014, "object_id": "f8b4391f-7236-4171-9a5d-934fde8892e6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f8b4391f-7236-4171-9a5d-934fde8892e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Larry\", \"surname\": \"Crawford\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Larry Crawford"}}, {"model": "reversion.version", "pk": 1015, "fields": {"revision": 1015, "object_id": "f8c9cb44-36d0-4aa2-836b-d8626679a6dd", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f8c9cb44-36d0-4aa2-836b-d8626679a6dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dennis\", \"surname\": \"Abercrombie\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dennis Abercrombie"}}, {"model": "reversion.version", "pk": 1016, "fields": {"revision": 1016, "object_id": "f948f9b9-9831-444a-9e87-8903699c5a9e", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f948f9b9-9831-444a-9e87-8903699c5a9e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dave\", \"surname\": \"Smith\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dave Smith"}}, {"model": "reversion.version", "pk": 1017, "fields": {"revision": 1017, "object_id": "f9a53432-4123-41f3-88fd-f62170c3ae5c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"f9a53432-4123-41f3-88fd-f62170c3ae5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Dennis\", \"surname\": \"Prosser\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Dennis Prosser"}}, {"model": "reversion.version", "pk": 1018, "fields": {"revision": 1018, "object_id": "fa0cbadd-c65f-4672-b648-495f14e7897f", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fa0cbadd-c65f-4672-b648-495f14e7897f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ian\", \"surname\": \"Brown\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ian Brown"}}, {"model": "reversion.version", "pk": 1019, "fields": {"revision": 1019, "object_id": "fa17ec30-4811-4373-84b4-63ef3d0e3592", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fa17ec30-4811-4373-84b4-63ef3d0e3592\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Paisley\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Paisley"}}, {"model": "reversion.version", "pk": 1020, "fields": {"revision": 1020, "object_id": "fa7b46e6-8ad0-4429-af26-f170ff39ebb6", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fa7b46e6-8ad0-4429-af26-f170ff39ebb6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Ray\", \"surname\": \"Jestico\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Ray Jestico"}}, {"model": "reversion.version", "pk": 1021, "fields": {"revision": 1021, "object_id": "fab27278-34dc-4560-8780-8bc298c7772d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fab27278-34dc-4560-8780-8bc298c7772d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Jason\", \"surname\": \"Halyk\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Jason Halyk"}}, {"model": "reversion.version", "pk": 1022, "fields": {"revision": 1022, "object_id": "fb98f574-d3a4-4e8e-95ef-bcfda1847721", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fb98f574-d3a4-4e8e-95ef-bcfda1847721\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"John\", \"surname\": \"Wallace\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "John Wallace"}}, {"model": "reversion.version", "pk": 1023, "fields": {"revision": 1023, "object_id": "fcca8c4f-44cc-412d-b866-36cc12815f26", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fcca8c4f-44cc-412d-b866-36cc12815f26\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Walter\", \"surname\": \"Perry\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Walter Perry"}}, {"model": "reversion.version", "pk": 1024, "fields": {"revision": 1024, "object_id": "fd2cfcea-720c-4173-99c5-5b6d36796d2d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fd2cfcea-720c-4173-99c5-5b6d36796d2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Shaun\", \"surname\": \"Nuttall\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Shaun Nuttall"}}, {"model": "reversion.version", "pk": 1025, "fields": {"revision": 1025, "object_id": "fd593f7a-8efa-41e5-9d69-eef71ae9ef76", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fd593f7a-8efa-41e5-9d69-eef71ae9ef76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Greg\", \"surname\": \"McRae\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Greg McRae"}}, {"model": "reversion.version", "pk": 1026, "fields": {"revision": 1026, "object_id": "fda05379-1bce-4dd6-bab2-2ba05368e95d", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fda05379-1bce-4dd6-bab2-2ba05368e95d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"David\", \"surname\": \"Wasstrom\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "David Wasstrom"}}, {"model": "reversion.version", "pk": 1027, "fields": {"revision": 1027, "object_id": "fdf44026-6922-4749-b3d7-26cddf31c0cc", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fdf44026-6922-4749-b3d7-26cddf31c0cc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Douglas\", \"surname\": \"Stanvick\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Douglas Stanvick"}}, {"model": "reversion.version", "pk": 1028, "fields": {"revision": 1028, "object_id": "fe2739e7-6148-4f73-8693-9dab671da5e2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fe2739e7-6148-4f73-8693-9dab671da5e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Derek\", \"surname\": \"McGladdery\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Derek McGladdery"}}, {"model": "reversion.version", "pk": 1029, "fields": {"revision": 1029, "object_id": "fec3db3c-1100-4c87-aa4a-8dff93fd7e99", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fec3db3c-1100-4c87-aa4a-8dff93fd7e99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bernard\", \"surname\": \"Henning\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bernard Henning"}}, {"model": "reversion.version", "pk": 1030, "fields": {"revision": 1030, "object_id": "fefe7c04-fca4-4f42-b11e-40184022bd02", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"fefe7c04-fca4-4f42-b11e-40184022bd02\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Robert\", \"surname\": \"Yemm\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Robert Yemm"}}, {"model": "reversion.version", "pk": 1031, "fields": {"revision": 1031, "object_id": "ff0c575c-9eb0-4692-b23b-6bc8ed142fcf", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ff0c575c-9eb0-4692-b23b-6bc8ed142fcf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Michael\", \"surname\": \"Tedford\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Michael Tedford"}}, {"model": "reversion.version", "pk": 1032, "fields": {"revision": 1032, "object_id": "ff7269ac-a8aa-4c31-b907-a7f0214b5004", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"ff7269ac-a8aa-4c31-b907-a7f0214b5004\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"first_name\": \"Bill\", \"surname\": \"Tuytel\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "Bill Tuytel"}}, {"model": "reversion.version", "pk": 1033, "fields": {"revision": 1033, "object_id": "0cbac383-d61a-4c32-92af-0f9e56d72fc5", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"0cbac383-d61a-4c32-92af-0f9e56d72fc5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"CLOS\", \"subactivity\": \"GEOXCHG\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "CLOS"}}, {"model": "reversion.version", "pk": 1034, "fields": {"revision": 1034, "object_id": "2f734bc6-5e0e-4ce7-859e-54b56b24d2fd", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"2f734bc6-5e0e-4ce7-859e-54b56b24d2fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"GEO\", \"subactivity\": \"GEOTECH\", \"display_order\": 6, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "GEO"}}, {"model": "reversion.version", "pk": 1035, "fields": {"revision": 1035, "object_id": "2f8677d8-5c03-4ebd-8814-aeb7acad4426", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"2f8677d8-5c03-4ebd-8814-aeb7acad4426\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"PUMP\", \"subactivity\": \"PUMPINST\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "PUMP"}}, {"model": "reversion.version", "pk": 1036, "fields": {"revision": 1036, "object_id": "36690d31-434d-49f7-8f85-ba4b791c9fdd", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"36690d31-434d-49f7-8f85-ba4b791c9fdd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"MON\", \"subactivity\": \"GEOTECH\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "MON"}}, {"model": "reversion.version", "pk": 1037, "fields": {"revision": 1037, "object_id": "4b70337d-457f-4437-9c62-5a13da1f04db", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"4b70337d-457f-4437-9c62-5a13da1f04db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"GEO\", \"subactivity\": \"WATER\", \"display_order\": 12, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "GEO"}}, {"model": "reversion.version", "pk": 1038, "fields": {"revision": 1038, "object_id": "5e1d7db5-a11c-405e-ab0d-c7da5c83a094", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"5e1d7db5-a11c-405e-ab0d-c7da5c83a094\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"DEWAT\", \"subactivity\": \"WATER\", \"display_order\": 8, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "DEWAT"}}, {"model": "reversion.version", "pk": 1039, "fields": {"revision": 1039, "object_id": "68ff6d7f-69bd-4022-ac1a-f8f14b32585d", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"68ff6d7f-69bd-4022-ac1a-f8f14b32585d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"REM\", \"subactivity\": \"WATER\", \"display_order\": 10, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "REM"}}, {"model": "reversion.version", "pk": 1040, "fields": {"revision": 1040, "object_id": "8f632fff-6bf9-4a63-80de-dcafce98f5db", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"8f632fff-6bf9-4a63-80de-dcafce98f5db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"RECH\", \"subactivity\": \"WATER\", \"display_order\": 6, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "RECH"}}, {"model": "reversion.version", "pk": 1041, "fields": {"revision": 1041, "object_id": "a2a5ef32-fde2-4a70-ac46-bd2ccfad54c9", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"a2a5ef32-fde2-4a70-ac46-bd2ccfad54c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"REM\", \"subactivity\": \"GEOTECH\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "REM"}}, {"model": "reversion.version", "pk": 1042, "fields": {"revision": 1042, "object_id": "d78f29fc-cc8a-40e8-a80b-b3b4e0e4dc82", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"d78f29fc-cc8a-40e8-a80b-b3b4e0e4dc82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"MON\", \"subactivity\": \"WATER\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "MON"}}, {"model": "reversion.version", "pk": 1043, "fields": {"revision": 1043, "object_id": "f95920cf-92c9-4e8f-bcc3-b360ff1f857c", "content_type": 33, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.qualification\", \"pk\": \"f95920cf-92c9-4e8f-bcc3-b360ff1f857c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"well_class\": \"WAT\", \"subactivity\": \"WATER\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "WAT"}}, {"model": "reversion.version", "pk": 1044, "fields": {"revision": 1044, "object_id": "NMEET", "content_type": 34, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesremovalreason\", \"pk\": \"NMEET\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Fails to meet a requirement for registration\", \"display_order\": 1, \"effective_date\": \"2018-06-11\", \"expired_date\": null}}]", "object_repr": "Fails to meet a requirement for registration"}}, {"model": "reversion.version", "pk": 1045, "fields": {"revision": 1045, "object_id": "FAILTM", "content_type": 34, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesremovalreason\", \"pk\": \"FAILTM\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Fails to maintain a requirement for registration\", \"display_order\": 1, \"effective_date\": \"2018-06-11\", \"expired_date\": null}}]", "object_repr": "Fails to maintain a requirement for registration"}}, {"model": "reversion.version", "pk": 1046, "fields": {"revision": 1046, "object_id": "NLACT", "content_type": 34, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesremovalreason\", \"pk\": \"NLACT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"No longer actively working in Canada\", \"display_order\": 1, \"effective_date\": \"2018-06-11\", \"expired_date\": null}}]", "object_repr": "No longer actively working in Canada"}}, {"model": "reversion.version", "pk": 1047, "fields": {"revision": 1047, "object_id": "001ead05-44fd-42f2-a452-7170f2477a41", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"001ead05-44fd-42f2-a452-7170f2477a41\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8ab96c56-0e5b-4024-adf2-87fd1ea6ab96\", \"organization\": null, \"registration_no\": \"WPI 06103006\"}}]", "object_repr": "Pascal Fillion - Pump Installer"}}, {"model": "reversion.version", "pk": 1048, "fields": {"revision": 1048, "object_id": "00744bf8-8c84-4fe2-aad7-d617b39f90bc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"00744bf8-8c84-4fe2-aad7-d617b39f90bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"67342807-b1f8-41a4-8f59-0f801acd0ca8\", \"organization\": \"233fba5d-883c-4c3d-b0ae-dac1d8553c0e\", \"registration_no\": \"WPI 05020801\"}}]", "object_repr": "Dennis Thompson - Pump Installer"}}, {"model": "reversion.version", "pk": 1049, "fields": {"revision": 1048, "object_id": "233fba5d-883c-4c3d-b0ae-dac1d8553c0e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"233fba5d-883c-4c3d-b0ae-dac1d8553c0e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thompson Drilling\", \"street_address\": \"15 - 4775 Woodlane\", \"city\": \"W. Windermere\", \"province_state\": \"BC\", \"postal_code\": \"V0B 2L2\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thompson Drilling"}}, {"model": "reversion.version", "pk": 1050, "fields": {"revision": 1049, "object_id": "009942e2-8069-4886-a747-8947832186b2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"009942e2-8069-4886-a747-8947832186b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"234cd139-4808-4d67-9642-234e89ed4c47\", \"organization\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"registration_no\": \"WPI 05052903\"}}]", "object_repr": "Kelly Sorenson - Pump Installer"}}, {"model": "reversion.version", "pk": 1051, "fields": {"revision": 1049, "object_id": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 1052, "fields": {"revision": 1050, "object_id": "01263d8a-a212-487c-8dd0-89a9a0da3105", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"01263d8a-a212-487c-8dd0-89a9a0da3105\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"1f4b4a58-72ae-4a33-94ab-ea4875231fbe\", \"organization\": \"7fcafbbd-52b6-496b-802e-deedfb9ed114\", \"registration_no\": \"WD 11011101\"}}]", "object_repr": "Jonathan Gilbert - Well Driller"}}, {"model": "reversion.version", "pk": 1053, "fields": {"revision": 1050, "object_id": "7fcafbbd-52b6-496b-802e-deedfb9ed114", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7fcafbbd-52b6-496b-802e-deedfb9ed114\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Morrill's Water Well Drilling Ltd.\", \"street_address\": \"Site 422, Box 2, Comp 3, RR2\", \"city\": \"Drayton Valley\", \"province_state\": \"AB\", \"postal_code\": \"T7A 2A2\", \"main_tel\": \"(780) 542-5089\", \"fax_tel\": \"(780)-542-7696\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Morrill's Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1054, "fields": {"revision": 1051, "object_id": "0128970c-4170-4e9c-869e-ac0d798bd3ff", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0128970c-4170-4e9c-869e-ac0d798bd3ff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"69b65e7d-d4fe-46e0-a948-5e0b482b0838\", \"organization\": \"e1219888-852c-456d-ab58-ea5917d5b782\", \"registration_no\": \"WPI 06102504\"}}]", "object_repr": "Garth Nye - Pump Installer"}}, {"model": "reversion.version", "pk": 1055, "fields": {"revision": 1051, "object_id": "e1219888-852c-456d-ab58-ea5917d5b782", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e1219888-852c-456d-ab58-ea5917d5b782\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Van Isle Water Service Ltd.\", \"street_address\": \"461 Dupplin Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 1B8\", \"main_tel\": \"(250) 383-7145\", \"fax_tel\": \"(250) 385-1216\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Van Isle Water Service Ltd."}}, {"model": "reversion.version", "pk": 1056, "fields": {"revision": 1052, "object_id": "01893320-4045-4532-bf8d-615ee739e5e5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"01893320-4045-4532-bf8d-615ee739e5e5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"1d8c4da1-3d00-45db-b034-855007e32f6e\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 06100502\"}}]", "object_repr": "Dave Chamberlayne - Well Driller"}}, {"model": "reversion.version", "pk": 1057, "fields": {"revision": 1052, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1058, "fields": {"revision": 1053, "object_id": "019daf7d-5d01-4641-ba0d-7540b0a5c64c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"019daf7d-5d01-4641-ba0d-7540b0a5c64c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"4b1bd459-996e-4f8b-a287-2c051eb080a5\", \"organization\": \"64b55fce-6a44-42ba-930e-29f1c56f0f1d\", \"registration_no\": \"WD 07051701\"}}]", "object_repr": "Kelly Pelletier - Well Driller"}}, {"model": "reversion.version", "pk": 1059, "fields": {"revision": 1053, "object_id": "64b55fce-6a44-42ba-930e-29f1c56f0f1d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64b55fce-6a44-42ba-930e-29f1c56f0f1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Central Ltd Partnership\", \"street_address\": \"Box 3202 1250 Dalhousie Dr.\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-5252\", \"fax_tel\": \"(250) 573-5235\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Central Ltd Partnership"}}, {"model": "reversion.version", "pk": 1060, "fields": {"revision": 1054, "object_id": "01fef64c-9d6f-465a-8f0d-33a9eaded25a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"01fef64c-9d6f-465a-8f0d-33a9eaded25a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"060d7343-f2c7-4707-86bc-1caab97c49a7\", \"organization\": \"afe8a94c-7352-4400-a293-849e56a18161\", \"registration_no\": \"WD 06102302\"}}]", "object_repr": "Lewis Jones - Well Driller"}}, {"model": "reversion.version", "pk": 1061, "fields": {"revision": 1054, "object_id": "afe8a94c-7352-4400-a293-849e56a18161", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"afe8a94c-7352-4400-a293-849e56a18161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Lewis G. Jones\", \"street_address\": \"45 Highland Drive\", \"city\": \"Burns Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1E1\", \"main_tel\": \"(250) 692-3553\", \"fax_tel\": \"(604) 692-3553\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Lewis G. Jones"}}, {"model": "reversion.version", "pk": 1062, "fields": {"revision": 1055, "object_id": "02d2098e-6d81-4370-85f4-1f77e27dcf31", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"02d2098e-6d81-4370-85f4-1f77e27dcf31\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"78603aa2-2f43-4351-bd6c-0a4124389eb9\", \"organization\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"registration_no\": \"WPI 06101807\"}}]", "object_repr": "Douglas McDonald - Pump Installer"}}, {"model": "reversion.version", "pk": 1063, "fields": {"revision": 1055, "object_id": "2a61e133-61e6-4759-8c63-82a66c4fb9d7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Well Drilling (2000) Ltd.\", \"street_address\": \"4960 Topland Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5Y2\", \"main_tel\": \"(250) 338-5113\", \"fax_tel\": \"(250) 338-5199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Well Drilling (2000) Ltd."}}, {"model": "reversion.version", "pk": 1064, "fields": {"revision": 1056, "object_id": "036f0c6b-02dc-4f1b-a65e-305e5adb47e5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"036f0c6b-02dc-4f1b-a65e-305e5adb47e5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8cb4f684-cf9d-48a1-ae0c-8cb2a9c5f889\", \"organization\": \"8f07c2dd-9b19-46c6-bd00-1af271d5242c\", \"registration_no\": \"WD 05110203\"}}]", "object_repr": "Floyd (Bob) Wangler - Well Driller"}}, {"model": "reversion.version", "pk": 1065, "fields": {"revision": 1056, "object_id": "8f07c2dd-9b19-46c6-bd00-1af271d5242c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8f07c2dd-9b19-46c6-bd00-1af271d5242c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wangler Drilling Ltd.\", \"street_address\": \"7938 Cambie Road\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2Y6\", \"main_tel\": \"(250) 832-3264\", \"fax_tel\": \"(250) 832-0563\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wangler Drilling Ltd."}}, {"model": "reversion.version", "pk": 1066, "fields": {"revision": 1057, "object_id": "03c08164-1007-49f1-8ed0-1fbb9db3879c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"03c08164-1007-49f1-8ed0-1fbb9db3879c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7b6f9a16-eeae-4454-94dd-8419aa1b345c\", \"organization\": \"7f695553-79e1-4e0b-96ee-2a4d028306c5\", \"registration_no\": \"WD 06100504\"}}]", "object_repr": "Barry Windecker - Well Driller"}}, {"model": "reversion.version", "pk": 1067, "fields": {"revision": 1057, "object_id": "7f695553-79e1-4e0b-96ee-2a4d028306c5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7f695553-79e1-4e0b-96ee-2a4d028306c5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Queen Charlotte Well Drilling\", \"street_address\": \"Box 1579\", \"city\": \"Queen Charlotte\", \"province_state\": \"BC\", \"postal_code\": \"V0T 1S1\", \"main_tel\": \"(250) 559-4586\", \"fax_tel\": \"(250) 559-4586\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Queen Charlotte Well Drilling"}}, {"model": "reversion.version", "pk": 1068, "fields": {"revision": 1058, "object_id": "0462ab68-b2d5-4b0c-820d-58963534d6c4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0462ab68-b2d5-4b0c-820d-58963534d6c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"cd5190a1-2989-4891-8370-b0c7bdbf0266\", \"organization\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"registration_no\": \"WPI 05080802\"}}]", "object_repr": "Mike Pearce - Pump Installer"}}, {"model": "reversion.version", "pk": 1069, "fields": {"revision": 1058, "object_id": "8d92d5bc-1335-41ab-bbac-2bb63c936794", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Value Contracting\", \"street_address\": \"Box 256 1612 Highway 97 S\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-8284\", \"fax_tel\": \"(250) 497-6533\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Value Contracting"}}, {"model": "reversion.version", "pk": 1070, "fields": {"revision": 1059, "object_id": "055091c6-dda1-4210-a70d-e64e6f2e7abf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"055091c6-dda1-4210-a70d-e64e6f2e7abf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"386f1c9a-a5a8-40b0-bbb0-497b3fcb365e\", \"organization\": \"8d82cacb-e1d6-4e09-8c01-99342eb5642c\", \"registration_no\": \"WPI 18041701\"}}]", "object_repr": "Ryan Speer - Pump Installer"}}, {"model": "reversion.version", "pk": 1071, "fields": {"revision": 1059, "object_id": "8d82cacb-e1d6-4e09-8c01-99342eb5642c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8d82cacb-e1d6-4e09-8c01-99342eb5642c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Martech Motor Winding\", \"street_address\": \"1700 Woodland Drive\", \"city\": \"Castlegar\", \"province_state\": \"BC\", \"postal_code\": \"V1N 4J4\", \"main_tel\": \"(250) 365-2102\", \"fax_tel\": \"(250) 304-7531\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Martech Motor Winding"}}, {"model": "reversion.version", "pk": 1072, "fields": {"revision": 1060, "object_id": "059d1ec2-0359-4873-9998-5be382cab92a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"059d1ec2-0359-4873-9998-5be382cab92a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d2a7449e-7389-4549-8965-86f788409c75\", \"organization\": null, \"registration_no\": \"WPI 08081801\"}}]", "object_repr": "Ken McKellar - Pump Installer"}}, {"model": "reversion.version", "pk": 1073, "fields": {"revision": 1061, "object_id": "068507ec-badb-43c6-9841-6cdd4557a60c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"068507ec-badb-43c6-9841-6cdd4557a60c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"76fd6738-50e1-4ad1-844f-166e87799d63\", \"organization\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"registration_no\": \"WPI 06052901\"}}]", "object_repr": "Saul Hock - Pump Installer"}}, {"model": "reversion.version", "pk": 1074, "fields": {"revision": 1061, "object_id": "b45c1fe3-eb21-44b3-bc7d-03017f57838e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"Box 12006 RPO Murrayville; 23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 1075, "fields": {"revision": 1062, "object_id": "069bd590-ad85-4855-93c5-d22c23b92046", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"069bd590-ad85-4855-93c5-d22c23b92046\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"832a35d2-2b7c-4a21-abca-c2e56a060489\", \"organization\": \"f4605d57-b2e0-4656-bd06-50abfcaf6495\", \"registration_no\": \"WPI 05102905\"}}]", "object_repr": "Max Schibli - Pump Installer"}}, {"model": "reversion.version", "pk": 1076, "fields": {"revision": 1062, "object_id": "f4605d57-b2e0-4656-bd06-50abfcaf6495", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f4605d57-b2e0-4656-bd06-50abfcaf6495\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Monashee Aquifer Testing\", \"street_address\": \"Box 752\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G0\", \"main_tel\": \"(250) 547-6845\", \"fax_tel\": \"(250) 547-6880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Monashee Aquifer Testing"}}, {"model": "reversion.version", "pk": 1077, "fields": {"revision": 1063, "object_id": "07ccd1b2-a0bb-40de-b622-509e901f6f8e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"07ccd1b2-a0bb-40de-b622-509e901f6f8e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ebe4cf3e-9151-4fc5-bf93-59ce7a1cb4d7\", \"organization\": \"4316689f-411d-4b0a-be83-79b28b77ac0c\", \"registration_no\": \"WD 17060901\"}}]", "object_repr": "Brennan Dyck - Well Driller"}}, {"model": "reversion.version", "pk": 1078, "fields": {"revision": 1063, "object_id": "4316689f-411d-4b0a-be83-79b28b77ac0c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4316689f-411d-4b0a-be83-79b28b77ac0c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Paycore Enterprises Ltd.\", \"street_address\": \"PO Box 743\", \"city\": \"McBride\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2E0\", \"main_tel\": \"(250) 968-4452\", \"fax_tel\": \"(250) 968-4451\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Paycore Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1079, "fields": {"revision": 1064, "object_id": "084803bc-6aac-4bc5-a839-447f73377599", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"084803bc-6aac-4bc5-a839-447f73377599\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"28ca6564-74cf-482e-9881-523f11da9ad6\", \"organization\": \"7dd039bc-cdd3-449f-a4f0-67066403f645\", \"registration_no\": \"WPI 05121301\"}}]", "object_repr": "Shane Black - Pump Installer"}}, {"model": "reversion.version", "pk": 1080, "fields": {"revision": 1064, "object_id": "7dd039bc-cdd3-449f-a4f0-67066403f645", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7dd039bc-cdd3-449f-a4f0-67066403f645\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Independent Pump & Mechanical Ltd.\", \"street_address\": \"PO Box 390\", \"city\": \"Shawnigan Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2W0\", \"main_tel\": \"(250) 743-3075\", \"fax_tel\": \"(250) 743-3075\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Independent Pump & Mechanical Ltd."}}, {"model": "reversion.version", "pk": 1081, "fields": {"revision": 1065, "object_id": "08b0ab1d-ca14-47ee-84f4-6dfe17ae8401", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"08b0ab1d-ca14-47ee-84f4-6dfe17ae8401\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d686af85-1994-498e-a2fe-73437ac84d29\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101307\"}}]", "object_repr": "Roy Fallon - Well Driller"}}, {"model": "reversion.version", "pk": 1082, "fields": {"revision": 1065, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1083, "fields": {"revision": 1066, "object_id": "0c1b5c39-ea83-4505-8a9b-a11d0a2dac59", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0c1b5c39-ea83-4505-8a9b-a11d0a2dac59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"730df5d3-d427-4b4e-9cb2-b18ed6a7ea14\", \"organization\": \"fc0362f4-dc04-4027-a6cd-c570d9e6629e\", \"registration_no\": \"WPI 05110804\"}}]", "object_repr": "Bill Teichroeb - Pump Installer"}}, {"model": "reversion.version", "pk": 1084, "fields": {"revision": 1066, "object_id": "fc0362f4-dc04-4027-a6cd-c570d9e6629e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fc0362f4-dc04-4027-a6cd-c570d9e6629e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Town & Country Plumbing and Heating\", \"street_address\": \"Box 1049\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A0\", \"main_tel\": \"(250) 567-2971\", \"fax_tel\": \"(250) 567-2971\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Town & Country Plumbing and Heating"}}, {"model": "reversion.version", "pk": 1085, "fields": {"revision": 1067, "object_id": "0cab9d71-4217-4203-b2e9-e81d27f5799b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0cab9d71-4217-4203-b2e9-e81d27f5799b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c8ec66df-f1ef-48c8-9c8e-8b5b1678de52\", \"organization\": null, \"registration_no\": \"WD 05011404\"}}]", "object_repr": "Jerry Heal - Well Driller"}}, {"model": "reversion.version", "pk": 1086, "fields": {"revision": 1068, "object_id": "0cb97728-189c-4184-8a75-915f2da211f4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0cb97728-189c-4184-8a75-915f2da211f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"cb69800f-8acf-4653-b29e-f04b422115ee\", \"organization\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"registration_no\": \"WD 07091901\"}}]", "object_repr": "Mike Bombardier - Well Driller"}}, {"model": "reversion.version", "pk": 1087, "fields": {"revision": 1068, "object_id": "91576fc7-0a2e-4d84-867a-49435d61133e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5213\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 1088, "fields": {"revision": 1069, "object_id": "0ce1c89f-33e4-4f1d-bf22-0d01943936d3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0ce1c89f-33e4-4f1d-bf22-0d01943936d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8e7ce4d9-5505-4308-8397-2526a9d8e179\", \"organization\": \"6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec\", \"registration_no\": \"WPI 06100611\"}}]", "object_repr": "Philip Shaw - Pump Installer"}}, {"model": "reversion.version", "pk": 1089, "fields": {"revision": 1069, "object_id": "6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Baker Plumbing & Renovations\", \"street_address\": \"1725 Westlock Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 5N8\", \"main_tel\": \"(250) 748-3890\", \"fax_tel\": \"(250) 748-0520\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Baker Plumbing & Renovations"}}, {"model": "reversion.version", "pk": 1090, "fields": {"revision": 1070, "object_id": "0cf7b6f8-8677-48c0-83e4-910c5b5be93c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0cf7b6f8-8677-48c0-83e4-910c5b5be93c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"48e18242-bbc6-4601-a40b-0111f08ec3a2\", \"organization\": \"e4f3a7f5-a2e5-48ec-a55e-10b6b9a7ddd6\", \"registration_no\": \"WD 05011401\"}}]", "object_repr": "Richard Cronin - Well Driller"}}, {"model": "reversion.version", "pk": 1091, "fields": {"revision": 1070, "object_id": "e4f3a7f5-a2e5-48ec-a55e-10b6b9a7ddd6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e4f3a7f5-a2e5-48ec-a55e-10b6b9a7ddd6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cronin Well Consulting Services\", \"street_address\": \"3076 Glendale Place\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7H1\", \"main_tel\": \"(604) 308-3165\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cronin Well Consulting Services"}}, {"model": "reversion.version", "pk": 1092, "fields": {"revision": 1071, "object_id": "0d3d3c80-648e-47af-a7e4-f0c0975f35a8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0d3d3c80-648e-47af-a7e4-f0c0975f35a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b6af898d-c140-41c9-8527-d9b52159ed28\", \"organization\": \"594f5318-fa52-4415-8d55-f2f273d46264\", \"registration_no\": \"WPI 05112301\"}}]", "object_repr": "Arthur Bernard - Pump Installer"}}, {"model": "reversion.version", "pk": 1093, "fields": {"revision": 1071, "object_id": "594f5318-fa52-4415-8d55-f2f273d46264", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"594f5318-fa52-4415-8d55-f2f273d46264\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bernard Pumps\", \"street_address\": \"6157 East Purdue Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6K1\", \"main_tel\": \"(250) 964-6111\", \"fax_tel\": \"(250) 964-6111\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bernard Pumps"}}, {"model": "reversion.version", "pk": 1094, "fields": {"revision": 1072, "object_id": "0d485503-0ea7-48b3-95c4-d12ae5f674ac", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0d485503-0ea7-48b3-95c4-d12ae5f674ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"48006657-e4b0-4164-afbb-ae9d112caa09\", \"organization\": \"d8fcef10-e3ef-4f64-b306-3f64165db205\", \"registration_no\": \"WPI 05100501\"}}]", "object_repr": "Darrin Parnell - Pump Installer"}}, {"model": "reversion.version", "pk": 1095, "fields": {"revision": 1072, "object_id": "d8fcef10-e3ef-4f64-b306-3f64165db205", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d8fcef10-e3ef-4f64-b306-3f64165db205\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"7062 Hidden Valley Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 6X4\", \"main_tel\": \"(250) 426-5070\", \"fax_tel\": \"(250) 426-6997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 1096, "fields": {"revision": 1073, "object_id": "0dfe97b7-03a9-4208-b454-7761e97324f7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0dfe97b7-03a9-4208-b454-7761e97324f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"1de618d7-9a22-4dfe-ae31-c16e86f7da8c\", \"organization\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"registration_no\": \"WD 14032001\"}}]", "object_repr": "Riley Pearson - Well Driller"}}, {"model": "reversion.version", "pk": 1097, "fields": {"revision": 1073, "object_id": "46ddbe83-10f3-478f-8c7b-db4b2864e6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 1098, "fields": {"revision": 1074, "object_id": "0e6029cf-f54c-429b-9086-494743ebc08d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0e6029cf-f54c-429b-9086-494743ebc08d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"93b08949-9a2a-43d9-b27d-69eb570e010f\", \"organization\": \"87c27fb7-3e84-48f1-8d44-a33d2e48f9fe\", \"registration_no\": \"WPI 05011402\"}}]", "object_repr": "Paul Robinson - Pump Installer"}}, {"model": "reversion.version", "pk": 1099, "fields": {"revision": 1074, "object_id": "87c27fb7-3e84-48f1-8d44-a33d2e48f9fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"87c27fb7-3e84-48f1-8d44-a33d2e48f9fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Paul's Pump and Treatment\", \"street_address\": \"4132 St. Catherines Drive\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L3\", \"main_tel\": \"(250) 510-7006\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Paul's Pump and Treatment"}}, {"model": "reversion.version", "pk": 1100, "fields": {"revision": 1075, "object_id": "0e69baae-ac99-40e4-9f8f-059ec7c617cf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0e69baae-ac99-40e4-9f8f-059ec7c617cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7adaddf2-f928-4b5a-8802-05513a86c6c0\", \"organization\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"registration_no\": \"WPI 17121401\"}}]", "object_repr": "Cody Schneider - Pump Installer"}}, {"model": "reversion.version", "pk": 1101, "fields": {"revision": 1075, "object_id": "75a144d3-196f-49d7-83e0-f00e57a0117b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"AJ Pumps & Water Treatment Ltd.\", \"street_address\": \"46170 Airport Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 1A5\", \"main_tel\": \"(604) 795-2568\", \"fax_tel\": \"(604) 795-2561\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "AJ Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1102, "fields": {"revision": 1076, "object_id": "0f878294-67af-4c01-bfaf-2ef8b7ce1cfb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0f878294-67af-4c01-bfaf-2ef8b7ce1cfb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5a82ac1e-8aed-49d2-8a1f-419b78542fa5\", \"organization\": \"df87b7ec-ad77-4432-b6b1-6975ba926151\", \"registration_no\": \"WPI 11111401\"}}]", "object_repr": "Darryl Tolhurst - Pump Installer"}}, {"model": "reversion.version", "pk": 1103, "fields": {"revision": 1076, "object_id": "df87b7ec-ad77-4432-b6b1-6975ba926151", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"df87b7ec-ad77-4432-b6b1-6975ba926151\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canadian Western Mechanical Ltd.\", \"street_address\": \"884 Front Street\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 5Y3\", \"main_tel\": \"(250) 992-9807\", \"fax_tel\": \"(250) 992-9012\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canadian Western Mechanical Ltd."}}, {"model": "reversion.version", "pk": 1104, "fields": {"revision": 1077, "object_id": "0f91492c-4c5f-47fe-97fb-d720df0ec76f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"0f91492c-4c5f-47fe-97fb-d720df0ec76f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"92048a10-e6a7-4b19-8873-5763dc75eee9\", \"organization\": \"72573009-a6f6-4eb1-a6ad-897ee35333cc\", \"registration_no\": \"WPI 06101801\"}}]", "object_repr": "Rusty Stooksberry - Pump Installer"}}, {"model": "reversion.version", "pk": 1105, "fields": {"revision": 1077, "object_id": "72573009-a6f6-4eb1-a6ad-897ee35333cc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"72573009-a6f6-4eb1-a6ad-897ee35333cc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stooksberry Drilling & Pumps\", \"street_address\": \"469 Nicholson Street South\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2M 3L8\", \"main_tel\": \"(250) 562-9836\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stooksberry Drilling & Pumps"}}, {"model": "reversion.version", "pk": 1106, "fields": {"revision": 1078, "object_id": "103df769-88d5-450f-a3c8-434e38587620", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"103df769-88d5-450f-a3c8-434e38587620\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e3fe29b4-1b00-4890-9b1b-816318f51dab\", \"organization\": \"cac4bea2-1d19-4c01-9e5b-aebe32132a2b\", \"registration_no\": \"WD 09051901\"}}]", "object_repr": "Cory Gillis - Well Driller"}}, {"model": "reversion.version", "pk": 1107, "fields": {"revision": 1078, "object_id": "cac4bea2-1d19-4c01-9e5b-aebe32132a2b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cac4bea2-1d19-4c01-9e5b-aebe32132a2b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hopper Water Well Drilling Ltd.\", \"street_address\": \"16201 - 92 Street\", \"city\": \"Grand Prairie\", \"province_state\": \"AB\", \"postal_code\": \"T8V 2N8\", \"main_tel\": \"(780) 832-2400\", \"fax_tel\": \"(780) 538-9686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hopper Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1108, "fields": {"revision": 1079, "object_id": "118f0346-2a7c-47ea-8fa7-7a99d0c2f284", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"118f0346-2a7c-47ea-8fa7-7a99d0c2f284\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ac05b009-39f1-48d1-952b-307f61ad96db\", \"organization\": \"0ea9a4e3-7989-43d8-b35a-4bf9c3b4a289\", \"registration_no\": \"WD 15092101\"}}]", "object_repr": "Phillip Buelow - Well Driller"}}, {"model": "reversion.version", "pk": 1109, "fields": {"revision": 1079, "object_id": "0ea9a4e3-7989-43d8-b35a-4bf9c3b4a289", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0ea9a4e3-7989-43d8-b35a-4bf9c3b4a289\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bertram Drilling Corp.\", \"street_address\": \"P.O. Box 100\", \"city\": \"Carbon\", \"province_state\": \"AB\", \"postal_code\": \"T0M 0L0\", \"main_tel\": \"(403) 263-8563\", \"fax_tel\": \"(403) 572-3461\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bertram Drilling Corp."}}, {"model": "reversion.version", "pk": 1110, "fields": {"revision": 1080, "object_id": "11e35c0f-6607-477e-b477-4460ce587587", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"11e35c0f-6607-477e-b477-4460ce587587\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"33be1f04-5457-4fd0-ba62-44e98e526e56\", \"organization\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"registration_no\": \"WD 05052904\"}}]", "object_repr": "Harry Caldwell - Well Driller"}}, {"model": "reversion.version", "pk": 1111, "fields": {"revision": 1080, "object_id": "e3512ffd-f5aa-4757-bccd-592e9ecc7600", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Owen's Drilling Ltd.\", \"street_address\": \"Box 730, 541 Industrial Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J5\", \"main_tel\": \"(250) 426-2455\", \"fax_tel\": \"(250) 427-7419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Owen's Drilling Ltd."}}, {"model": "reversion.version", "pk": 1112, "fields": {"revision": 1081, "object_id": "12766a5d-8c77-47e3-bab4-dd7d6ce92d1d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"12766a5d-8c77-47e3-bab4-dd7d6ce92d1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"486f65ad-08e0-49e8-a061-62b28b5381cb\", \"organization\": \"e8f75bff-ad4f-461d-8f07-369ab120bb1b\", \"registration_no\": \"WPI 05092703\"}}]", "object_repr": "Rob Grey - Pump Installer"}}, {"model": "reversion.version", "pk": 1113, "fields": {"revision": 1081, "object_id": "e8f75bff-ad4f-461d-8f07-369ab120bb1b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e8f75bff-ad4f-461d-8f07-369ab120bb1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Big Country Pumps\", \"street_address\": \"Box 252, 2942 Kengin Road\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-3521\", \"fax_tel\": \"(250) 296-4703\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Big Country Pumps"}}, {"model": "reversion.version", "pk": 1114, "fields": {"revision": 1082, "object_id": "1320058c-23d8-4dc0-a4af-3d456dfa89f7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1320058c-23d8-4dc0-a4af-3d456dfa89f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a23c4eef-43d4-4b07-a1c7-366e932f9649\", \"organization\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"registration_no\": \"WPI 05092701\"}}]", "object_repr": "Greg Boulton - Pump Installer"}}, {"model": "reversion.version", "pk": 1115, "fields": {"revision": 1082, "object_id": "0d86aca7-97f8-450f-a9e0-0c21d1578f85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"PO Box 550\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J1\", \"main_tel\": \"(250) 426-0255\", \"fax_tel\": \"(250) 426-0251\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 1116, "fields": {"revision": 1083, "object_id": "132827b8-dfe7-459f-b6af-607fadc6c34c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"132827b8-dfe7-459f-b6af-607fadc6c34c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"259c3b9a-5dbe-4a4c-97d0-0375e737879b\", \"organization\": \"a61c2d3b-b0ad-4369-a016-3edfc162da99\", \"registration_no\": \"WD 05111901\"}}]", "object_repr": "Jason Schmidt - Well Driller"}}, {"model": "reversion.version", "pk": 1117, "fields": {"revision": 1083, "object_id": "a61c2d3b-b0ad-4369-a016-3edfc162da99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a61c2d3b-b0ad-4369-a016-3edfc162da99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alliance Drilling\", \"street_address\": \"2985 Lakewood Place\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 6B1\", \"main_tel\": \"(250) 391-6107\", \"fax_tel\": \"(250) 391-6108\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alliance Drilling"}}, {"model": "reversion.version", "pk": 1118, "fields": {"revision": 1084, "object_id": "13575a06-bf5e-4546-b03e-9d96cd18a51d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"13575a06-bf5e-4546-b03e-9d96cd18a51d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fd2cfcea-720c-4173-99c5-5b6d36796d2d\", \"organization\": \"ff5fdbce-83ab-44ad-b8cc-4fc385c46f6f\", \"registration_no\": \"WPI 06091802\"}}]", "object_repr": "Shaun Nuttall - Pump Installer"}}, {"model": "reversion.version", "pk": 1119, "fields": {"revision": 1084, "object_id": "ff5fdbce-83ab-44ad-b8cc-4fc385c46f6f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ff5fdbce-83ab-44ad-b8cc-4fc385c46f6f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Suncoast Waterworks & Suncoast Pool and Spa\", \"street_address\": \"#8 5824 Sechelt Inlet Rd\", \"city\": \"Sechelt\", \"province_state\": \"BC\", \"postal_code\": \"V0N 3A3\", \"main_tel\": \"(604) 885-6127\", \"fax_tel\": \"(604) 648-9621\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Suncoast Waterworks & Suncoast Pool and Spa"}}, {"model": "reversion.version", "pk": 1120, "fields": {"revision": 1085, "object_id": "138b90cf-b6ba-43b8-82cb-cc26bbd7116a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"138b90cf-b6ba-43b8-82cb-cc26bbd7116a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"dbd8c0e2-9e6a-40ea-b1eb-cb6aeacdbb4d\", \"organization\": \"9e15f5ed-4d5d-4c86-b597-f75b92f9655c\", \"registration_no\": \"WD 16021502\"}}]", "object_repr": "Kenneth Banks - Well Driller"}}, {"model": "reversion.version", "pk": 1121, "fields": {"revision": 1085, "object_id": "9e15f5ed-4d5d-4c86-b597-f75b92f9655c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9e15f5ed-4d5d-4c86-b597-f75b92f9655c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ban K Water Well Services Ltd.\", \"street_address\": \"50025 Range Road 244\", \"city\": \"Leduc County\", \"province_state\": \"AB\", \"postal_code\": \"T4X 0N8\", \"main_tel\": \"(780) 986-6556\", \"fax_tel\": \"(780) 986-2677\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ban K Water Well Services Ltd."}}, {"model": "reversion.version", "pk": 1122, "fields": {"revision": 1086, "object_id": "13cd2a52-4312-4329-8502-a0defcf1b6d3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"13cd2a52-4312-4329-8502-a0defcf1b6d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fdf44026-6922-4749-b3d7-26cddf31c0cc\", \"organization\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"registration_no\": \"WD 06032801\"}}]", "object_repr": "Douglas Stanvick - Well Driller"}}, {"model": "reversion.version", "pk": 1123, "fields": {"revision": 1086, "object_id": "1b9ede02-8bdd-425a-b4b2-b0da85a1f149", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Double D Drilling Ltd.\", \"street_address\": \"Box 766; 5275 Arthur Road\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4R1\", \"main_tel\": \"(250) 635-7877\", \"fax_tel\": \"(250) 635-7899\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Double D Drilling Ltd."}}, {"model": "reversion.version", "pk": 1124, "fields": {"revision": 1087, "object_id": "14c0a113-35a7-40e1-ac46-943a2e26cb17", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"14c0a113-35a7-40e1-ac46-943a2e26cb17\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"17f5d700-7a18-45ca-984d-d859c09e3b4d\", \"organization\": \"8e7a1d2c-9c3f-496d-b0eb-4c705e407d31\", \"registration_no\": \"WPI 06100604\"}}]", "object_repr": "Thomas Curial - Pump Installer"}}, {"model": "reversion.version", "pk": 1125, "fields": {"revision": 1087, "object_id": "8e7a1d2c-9c3f-496d-b0eb-4c705e407d31", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8e7a1d2c-9c3f-496d-b0eb-4c705e407d31\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Four-Cea Services Ltd.\", \"street_address\": \"Po Box 431 Harriet Bay\", \"city\": \"Quadra Island\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1H0\", \"main_tel\": \"(250) 203-2040\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Four-Cea Services Ltd."}}, {"model": "reversion.version", "pk": 1126, "fields": {"revision": 1088, "object_id": "1651d08a-658e-401b-93ba-551d3e761b6d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1651d08a-658e-401b-93ba-551d3e761b6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"138e448d-6a48-49cf-832f-846ea95c5c08\", \"organization\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"registration_no\": \"WPI 06040703\"}}]", "object_repr": "Patrick Price - Pump Installer"}}, {"model": "reversion.version", "pk": 1127, "fields": {"revision": 1088, "object_id": "b45c1fe3-eb21-44b3-bc7d-03017f57838e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"Box 12006 RPO Murrayville; 23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 1128, "fields": {"revision": 1089, "object_id": "16d366d0-a1f2-4fab-89ac-566429ffb8b2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"16d366d0-a1f2-4fab-89ac-566429ffb8b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a1234690-4484-4f9a-976e-18382c81510e\", \"organization\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"registration_no\": \"WD 05111704\"}}]", "object_repr": "Kurt Vlchek - Well Driller"}}, {"model": "reversion.version", "pk": 1129, "fields": {"revision": 1089, "object_id": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1130, "fields": {"revision": 1090, "object_id": "186b0433-fe72-4b5c-bdd9-d510a1d04cb6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"186b0433-fe72-4b5c-bdd9-d510a1d04cb6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2059b47e-89e5-4f08-b98b-99f58f38aeac\", \"organization\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"registration_no\": \"WPI 05110203\"}}]", "object_repr": "Ronald James - Pump Installer"}}, {"model": "reversion.version", "pk": 1131, "fields": {"revision": 1090, "object_id": "e9a3778c-0bc6-400c-a582-5a72f910f763", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Pump Service Ltd.\", \"street_address\": \"1139A Industrial Road #3\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 5E3\", \"main_tel\": \"(250) 426-4069\", \"fax_tel\": \"(250) 426-8425\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Pump Service Ltd."}}, {"model": "reversion.version", "pk": 1132, "fields": {"revision": 1091, "object_id": "193903b5-2821-43bd-b99d-119dcf1c8b80", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"193903b5-2821-43bd-b99d-119dcf1c8b80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2971db1a-3d39-4c43-b6b7-411a03fa5be2\", \"organization\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"registration_no\": \"WPI 06022601\"}}]", "object_repr": "John Mankowski - Pump Installer"}}, {"model": "reversion.version", "pk": 1133, "fields": {"revision": 1091, "object_id": "86a95cfa-217b-419a-9528-24c62148979c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Langley Water Wells Ltd.\", \"street_address\": \"21416 32nd. Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2E7\", \"main_tel\": \"(604) 534-5675\", \"fax_tel\": \"(604) 534-9762\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Langley Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1134, "fields": {"revision": 1092, "object_id": "1961ddde-48d7-433d-a18a-5aee0dd47a13", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1961ddde-48d7-433d-a18a-5aee0dd47a13\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f453dff7-df4c-47b3-a725-2c7792509cbe\", \"organization\": \"83bfd150-3e6b-48d5-b91a-5d9c0a892581\", \"registration_no\": \"WPI 06112001\"}}]", "object_repr": "Larry Le Francois - Pump Installer"}}, {"model": "reversion.version", "pk": 1135, "fields": {"revision": 1092, "object_id": "83bfd150-3e6b-48d5-b91a-5d9c0a892581", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"83bfd150-3e6b-48d5-b91a-5d9c0a892581\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Advanced Industrial Group Inc.\", \"street_address\": \"650 - 3rd Street\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3C4\", \"main_tel\": \"(250) 564-7599\", \"fax_tel\": \"(250) 564-1246\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Advanced Industrial Group Inc."}}, {"model": "reversion.version", "pk": 1136, "fields": {"revision": 1093, "object_id": "196c0c79-f6a5-4ee8-aefe-4c85ff192f2b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"196c0c79-f6a5-4ee8-aefe-4c85ff192f2b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7cb89fae-4b04-42a9-abc2-b6e290ee6ada\", \"organization\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"registration_no\": \"WPI 05032902\"}}]", "object_repr": "Clayton Riehl - Pump Installer"}}, {"model": "reversion.version", "pk": 1137, "fields": {"revision": 1093, "object_id": "fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Industrial Drillers Ltd.\", \"street_address\": \"16950 Hart Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5T1\", \"main_tel\": \"(250) 971-2422\", \"fax_tel\": \"(250) 971-2207\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Industrial Drillers Ltd."}}, {"model": "reversion.version", "pk": 1138, "fields": {"revision": 1094, "object_id": "1a0d5e15-9816-4983-872b-19b7b6421b1b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1a0d5e15-9816-4983-872b-19b7b6421b1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1ba48c4c-2de3-440b-be2c-0a5f9f6e4471\", \"organization\": null, \"registration_no\": \"WPI 06102707\"}}]", "object_repr": "Laverne Sharp - Pump Installer"}}, {"model": "reversion.version", "pk": 1139, "fields": {"revision": 1095, "object_id": "1c1a5b1f-1abd-49f6-a390-5f879039696a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1c1a5b1f-1abd-49f6-a390-5f879039696a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"3e829a20-d167-4f0b-8b9d-1ec1cc44ef3f\", \"organization\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"registration_no\": \"WD 06103003\"}}]", "object_repr": "Robert Magee - Well Driller"}}, {"model": "reversion.version", "pk": 1140, "fields": {"revision": 1095, "object_id": "1637ce27-f13c-4214-abda-ed81f4b39ac2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"Box 310\", \"city\": \"Barrie\", \"province_state\": \"ON\", \"postal_code\": \"L4M 4T5\", \"main_tel\": \"(705) 733-0111\", \"fax_tel\": \"(705) 721-0138\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1141, "fields": {"revision": 1096, "object_id": "1c4a697c-dc5d-4808-9120-b5f51c76dcab", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1c4a697c-dc5d-4808-9120-b5f51c76dcab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f8c9cb44-36d0-4aa2-836b-d8626679a6dd\", \"organization\": \"e9341701-7389-465a-ab44-8d331b6b2928\", \"registration_no\": \"WD 05052906\"}}]", "object_repr": "Dennis Abercrombie - Well Driller"}}, {"model": "reversion.version", "pk": 1142, "fields": {"revision": 1096, "object_id": "e9341701-7389-465a-ab44-8d331b6b2928", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9341701-7389-465a-ab44-8d331b6b2928\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Abercrombie Drilling\", \"street_address\": \"2405 Bush Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 4V9\", \"main_tel\": \"(250) 398-5315\", \"fax_tel\": \"(250) 398-5315\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Abercrombie Drilling"}}, {"model": "reversion.version", "pk": 1143, "fields": {"revision": 1097, "object_id": "1c9c1909-569c-4794-83ca-7f0a4a235b98", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1c9c1909-569c-4794-83ca-7f0a4a235b98\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d9a7182d-5cbc-4135-a329-1d571c3073dc\", \"organization\": \"e1468377-8147-4f82-a9e7-6a9d877aff5a\", \"registration_no\": \"WD 06061501\"}}]", "object_repr": "Paul Anderson - Well Driller"}}, {"model": "reversion.version", "pk": 1144, "fields": {"revision": 1097, "object_id": "e1468377-8147-4f82-a9e7-6a9d877aff5a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e1468377-8147-4f82-a9e7-6a9d877aff5a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canwest Well Drilling Ltd.\", \"street_address\": \"4606 Bowness Avenue\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 3S1\", \"main_tel\": \"(604) 485-4250\", \"fax_tel\": \"(604) 485-7630\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canwest Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1145, "fields": {"revision": 1098, "object_id": "1ca87039-c58c-42f7-bc0e-38160ec88831", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1ca87039-c58c-42f7-bc0e-38160ec88831\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ca735d5d-72a5-4004-98d4-62e2b82848a6\", \"organization\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"registration_no\": \"WD 05032901\"}}]", "object_repr": "Lloyd Riehl - Well Driller"}}, {"model": "reversion.version", "pk": 1146, "fields": {"revision": 1098, "object_id": "fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Industrial Drillers Ltd.\", \"street_address\": \"16950 Hart Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5T1\", \"main_tel\": \"(250) 971-2422\", \"fax_tel\": \"(250) 971-2207\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Industrial Drillers Ltd."}}, {"model": "reversion.version", "pk": 1147, "fields": {"revision": 1099, "object_id": "1cb2803f-b77f-4f40-8334-afb2768df6dd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1cb2803f-b77f-4f40-8334-afb2768df6dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"4acdc1a4-d44c-44fa-ac98-d7200b33e79c\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WPI 05050301\"}}]", "object_repr": "Ronald Nelson - Pump Installer"}}, {"model": "reversion.version", "pk": 1148, "fields": {"revision": 1099, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1149, "fields": {"revision": 1100, "object_id": "1d31c8d7-7689-4e45-a241-d5c92eda276c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1d31c8d7-7689-4e45-a241-d5c92eda276c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"56bd6b97-a41a-4389-b1b6-9178de6fb5b1\", \"organization\": \"b8a2bf25-db9b-496d-9dd7-37a224016b68\", \"registration_no\": \"WPI 09040801\"}}]", "object_repr": "Joe Carter - Pump Installer"}}, {"model": "reversion.version", "pk": 1150, "fields": {"revision": 1100, "object_id": "b8a2bf25-db9b-496d-9dd7-37a224016b68", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b8a2bf25-db9b-496d-9dd7-37a224016b68\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Joe The Plumber\", \"street_address\": \"PO Box 2483, 60 - 1400 12th Street North\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H1\", \"main_tel\": \"(250) 939-8584\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Joe The Plumber"}}, {"model": "reversion.version", "pk": 1151, "fields": {"revision": 1101, "object_id": "1dccb43e-e582-4229-9cce-fcdde6872638", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1dccb43e-e582-4229-9cce-fcdde6872638\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"bdae2c95-a4e6-40ec-ae5f-a0bd8616f7ec\", \"organization\": \"d9dbdc1b-7c24-49d3-a014-eb9562077eb9\", \"registration_no\": \"WD 05052902\"}}]", "object_repr": "Simon Wolford - Well Driller"}}, {"model": "reversion.version", "pk": 1152, "fields": {"revision": 1101, "object_id": "d9dbdc1b-7c24-49d3-a014-eb9562077eb9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d9dbdc1b-7c24-49d3-a014-eb9562077eb9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Carbon Mountain Drilling\", \"street_address\": \"Box 6383\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H8\", \"main_tel\": \"(250) 785-3598\", \"fax_tel\": \"(250) 785-9106\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Carbon Mountain Drilling"}}, {"model": "reversion.version", "pk": 1153, "fields": {"revision": 1102, "object_id": "1e1df047-ff79-4ed0-8539-10e7e40e7349", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1e1df047-ff79-4ed0-8539-10e7e40e7349\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f8c9cb44-36d0-4aa2-836b-d8626679a6dd\", \"organization\": \"e9341701-7389-465a-ab44-8d331b6b2928\", \"registration_no\": \"WPI 06102701\"}}]", "object_repr": "Dennis Abercrombie - Pump Installer"}}, {"model": "reversion.version", "pk": 1154, "fields": {"revision": 1102, "object_id": "e9341701-7389-465a-ab44-8d331b6b2928", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9341701-7389-465a-ab44-8d331b6b2928\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Abercrombie Drilling\", \"street_address\": \"2405 Bush Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 4V9\", \"main_tel\": \"(250) 398-5315\", \"fax_tel\": \"(250) 398-5315\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Abercrombie Drilling"}}, {"model": "reversion.version", "pk": 1155, "fields": {"revision": 1103, "object_id": "1e45cb12-82fa-4e4e-8262-82503e9fc1e7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1e45cb12-82fa-4e4e-8262-82503e9fc1e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"473384c5-0d37-4709-9652-6185176b06a6\", \"organization\": \"421aaac5-8de3-495c-90c7-7ee009fc73ed\", \"registration_no\": \"WPI 06101603\"}}]", "object_repr": "David Muth - Pump Installer"}}, {"model": "reversion.version", "pk": 1156, "fields": {"revision": 1103, "object_id": "421aaac5-8de3-495c-90c7-7ee009fc73ed", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"421aaac5-8de3-495c-90c7-7ee009fc73ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Muth & Sons Ltd.\", \"street_address\": \"23985 Lougheed Highway\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1W1\", \"main_tel\": \"(604) 467-5571\", \"fax_tel\": \"(604) 467-5152\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Muth & Sons Ltd."}}, {"model": "reversion.version", "pk": 1157, "fields": {"revision": 1104, "object_id": "1e473954-bd2d-429c-a9ae-841cc84e13a2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1e473954-bd2d-429c-a9ae-841cc84e13a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"3ba2cbf5-a154-434f-8f09-ba6336508942\", \"organization\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"registration_no\": \"WD 06072501\"}}]", "object_repr": "Bill McIvor - Well Driller"}}, {"model": "reversion.version", "pk": 1158, "fields": {"revision": 1104, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 1159, "fields": {"revision": 1105, "object_id": "1f0e109a-00cd-4687-ae81-f3b677459915", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1f0e109a-00cd-4687-ae81-f3b677459915\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"52785544-fd93-46d3-8a57-377d3c745a03\", \"organization\": \"5f08c5b7-f3d2-453c-9ae6-765e020495f4\", \"registration_no\": \"WPI 05030802\"}}]", "object_repr": "Tim Broere - Pump Installer"}}, {"model": "reversion.version", "pk": 1160, "fields": {"revision": 1105, "object_id": "5f08c5b7-f3d2-453c-9ae6-765e020495f4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f08c5b7-f3d2-453c-9ae6-765e020495f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Water Products\", \"street_address\": \"420 Chilcotin Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1G3\", \"main_tel\": \"(250) 374-7909\", \"fax_tel\": \"(250) 374-7950\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Water Products"}}, {"model": "reversion.version", "pk": 1161, "fields": {"revision": 1106, "object_id": "1fbca652-c9a0-4873-ac5d-e58988016355", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1fbca652-c9a0-4873-ac5d-e58988016355\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"dfc46de5-8ce8-4d1c-a3df-248442915a2d\", \"organization\": \"270fc931-79ee-4af4-9015-e30561ba5a85\", \"registration_no\": \"WD 06090602\"}}]", "object_repr": "Anthony Kohlhauser - Well Driller"}}, {"model": "reversion.version", "pk": 1162, "fields": {"revision": 1106, "object_id": "270fc931-79ee-4af4-9015-e30561ba5a85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"270fc931-79ee-4af4-9015-e30561ba5a85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quesnel Water Wells Ltd.\", \"street_address\": \"255 Kerouac Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 7A2\", \"main_tel\": \"(250) 747-1116\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quesnel Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1163, "fields": {"revision": 1107, "object_id": "1fbd1f43-159d-45a1-a925-32a270f66212", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"1fbd1f43-159d-45a1-a925-32a270f66212\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"34e95fe6-a765-49ac-b3b4-0d19b11df99c\", \"organization\": \"a63433ff-a660-4f93-9dda-4bb8e97f53d5\", \"registration_no\": \"WPI 05102903\"}}]", "object_repr": "Gerald Thomson - Pump Installer"}}, {"model": "reversion.version", "pk": 1164, "fields": {"revision": 1107, "object_id": "a63433ff-a660-4f93-9dda-4bb8e97f53d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a63433ff-a660-4f93-9dda-4bb8e97f53d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thomson Plumbing\", \"street_address\": \"Bag 9000, Suite 320\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 1S3\", \"main_tel\": \"(250) 832-5558\", \"fax_tel\": \"(250) 832-8699\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thomson Plumbing"}}, {"model": "reversion.version", "pk": 1165, "fields": {"revision": 1108, "object_id": "200013a0-2b3d-40ed-9d5d-36cc787e80b8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"200013a0-2b3d-40ed-9d5d-36cc787e80b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ff0c575c-9eb0-4692-b23b-6bc8ed142fcf\", \"organization\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"registration_no\": \"WD 05062305\"}}]", "object_repr": "Michael Tedford - Well Driller"}}, {"model": "reversion.version", "pk": 1166, "fields": {"revision": 1108, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 1167, "fields": {"revision": 1109, "object_id": "20ca3db9-812d-4ddb-94e3-cc15c408d751", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"20ca3db9-812d-4ddb-94e3-cc15c408d751\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"038743bd-f955-42f8-9d76-71204564ada3\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 05052908\"}}]", "object_repr": "Rick Friedel - Well Driller"}}, {"model": "reversion.version", "pk": 1168, "fields": {"revision": 1109, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1169, "fields": {"revision": 1110, "object_id": "2128857d-cb8f-44c6-aae6-0ab08012e54a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2128857d-cb8f-44c6-aae6-0ab08012e54a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"632adcc6-5aa4-469c-bead-b5d4c8602a18\", \"organization\": null, \"registration_no\": \"WD 06022605\"}}]", "object_repr": "Trevor Krenbrink - Well Driller"}}, {"model": "reversion.version", "pk": 1170, "fields": {"revision": 1111, "object_id": "213d6cac-05b9-45af-b9de-c8c9dd683e36", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"213d6cac-05b9-45af-b9de-c8c9dd683e36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6811597c-80f1-4e81-ab40-23327e3935f6\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 06103105\"}}]", "object_repr": "John Jackson - Well Driller"}}, {"model": "reversion.version", "pk": 1171, "fields": {"revision": 1111, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1172, "fields": {"revision": 1112, "object_id": "22043ec4-7189-46df-841f-1ac0f1a822cf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"22043ec4-7189-46df-841f-1ac0f1a822cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8c7c359c-b4a9-481f-8c1e-9dcb8c882588\", \"organization\": \"86bf5e90-c420-4d8d-9576-f2e3778ed764\", \"registration_no\": \"WPI 05102801\"}}]", "object_repr": "Leo Weatherall - Pump Installer"}}, {"model": "reversion.version", "pk": 1173, "fields": {"revision": 1112, "object_id": "86bf5e90-c420-4d8d-9576-f2e3778ed764", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86bf5e90-c420-4d8d-9576-f2e3778ed764\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Weatherall Service Ltd.\", \"street_address\": \"902-N 9th Street\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H2\", \"main_tel\": \"(250) 344-2962\", \"fax_tel\": \"(250) 344-7372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Weatherall Service Ltd."}}, {"model": "reversion.version", "pk": 1174, "fields": {"revision": 1113, "object_id": "220d9771-15a7-4b14-8a69-4e62d52fc5b8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"220d9771-15a7-4b14-8a69-4e62d52fc5b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3a9828ea-ab84-46c3-b230-67ca4da9c3d3\", \"organization\": \"537734d8-624a-4424-9adf-2ba271f71e6e\", \"registration_no\": \"WPI 05120201\"}}]", "object_repr": "Jerry Jones - Pump Installer"}}, {"model": "reversion.version", "pk": 1175, "fields": {"revision": 1113, "object_id": "537734d8-624a-4424-9adf-2ba271f71e6e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"537734d8-624a-4424-9adf-2ba271f71e6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J's Pumps & Plumbing\", \"street_address\": \"4050 - 50th Street NW\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 3A7\", \"main_tel\": \"(250) 832-7922\", \"fax_tel\": \"(250) 832-7699\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J's Pumps & Plumbing"}}, {"model": "reversion.version", "pk": 1176, "fields": {"revision": 1114, "object_id": "2352686a-02d4-4239-a64f-21bf4777543a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2352686a-02d4-4239-a64f-21bf4777543a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9a5bd8c7-fe9d-43c0-9010-ef647a1d1b5d\", \"organization\": \"dabd57fd-0c4e-472f-9846-f398172b3a94\", \"registration_no\": \"WD 05121301\"}}]", "object_repr": "Lyle Yeo - Well Driller"}}, {"model": "reversion.version", "pk": 1177, "fields": {"revision": 1114, "object_id": "dabd57fd-0c4e-472f-9846-f398172b3a94", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dabd57fd-0c4e-472f-9846-f398172b3a94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"10955 Buckhorn Lake Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6A9\", \"main_tel\": \"(250) 963-5651\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1178, "fields": {"revision": 1115, "object_id": "237f1196-2cb0-4d02-acd7-d7e5bdee3ec3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"237f1196-2cb0-4d02-acd7-d7e5bdee3ec3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7936efad-e663-4a38-b43f-84250c277bd9\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 05062306\"}}]", "object_repr": "Steve Vlchek - Well Driller"}}, {"model": "reversion.version", "pk": 1179, "fields": {"revision": 1115, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1180, "fields": {"revision": 1116, "object_id": "238196c4-2b5d-4910-aa69-021454bcee5c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"238196c4-2b5d-4910-aa69-021454bcee5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e628c1eb-5282-4f10-984e-33ac810f5f55\", \"organization\": \"7fcafbbd-52b6-496b-802e-deedfb9ed114\", \"registration_no\": \"WD 11042701\"}}]", "object_repr": "Wayne Morrill - Well Driller"}}, {"model": "reversion.version", "pk": 1181, "fields": {"revision": 1116, "object_id": "7fcafbbd-52b6-496b-802e-deedfb9ed114", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7fcafbbd-52b6-496b-802e-deedfb9ed114\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Morrill's Water Well Drilling Ltd.\", \"street_address\": \"Site 422, Box 2, Comp 3, RR2\", \"city\": \"Drayton Valley\", \"province_state\": \"AB\", \"postal_code\": \"T7A 2A2\", \"main_tel\": \"(780) 542-5089\", \"fax_tel\": \"(780)-542-7696\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Morrill's Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1182, "fields": {"revision": 1117, "object_id": "243d5ed0-745a-4832-879a-276e8ef8ea03", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"243d5ed0-745a-4832-879a-276e8ef8ea03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6c168dc6-a7af-4893-96e4-537941053379\", \"organization\": \"1c83cd6c-b95b-4f6c-9e66-bb55c0cb77a2\", \"registration_no\": \"WD 09050601\"}}]", "object_repr": "Greg Sleasman - Well Driller"}}, {"model": "reversion.version", "pk": 1183, "fields": {"revision": 1117, "object_id": "1c83cd6c-b95b-4f6c-9e66-bb55c0cb77a2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1c83cd6c-b95b-4f6c-9e66-bb55c0cb77a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Terra-Therma Drilling Ltd.\", \"street_address\": \"24950 100 Avenue\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1S3\", \"main_tel\": \"(604) 616-7241\", \"fax_tel\": \"(604) 406-1930\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Terra-Therma Drilling Ltd."}}, {"model": "reversion.version", "pk": 1184, "fields": {"revision": 1118, "object_id": "248b32d4-7ff2-420c-a244-545597e63dcc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"248b32d4-7ff2-420c-a244-545597e63dcc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"08cb0953-bd0c-4b81-8580-59b2057f32a8\", \"organization\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"registration_no\": \"WD 15110601\"}}]", "object_repr": "Bruce Haynes - Well Driller"}}, {"model": "reversion.version", "pk": 1185, "fields": {"revision": 1118, "object_id": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 1186, "fields": {"revision": 1119, "object_id": "2668ead0-8a86-4582-82ba-1d92c07ef155", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2668ead0-8a86-4582-82ba-1d92c07ef155\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d0ba6bc5-8658-40af-9aad-011b6050854c\", \"organization\": \"a4d38502-f52b-4e97-a920-9aef8409a447\", \"registration_no\": \"WD 05101401\"}}]", "object_repr": "James Fyfe - Well Driller"}}, {"model": "reversion.version", "pk": 1187, "fields": {"revision": 1119, "object_id": "a4d38502-f52b-4e97-a920-9aef8409a447", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a4d38502-f52b-4e97-a920-9aef8409a447\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe Water Services\", \"street_address\": \"1541 Winchester Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y2\", \"main_tel\": \"(250) 752-4986\", \"fax_tel\": \"(250) 248-0830\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe Water Services"}}, {"model": "reversion.version", "pk": 1188, "fields": {"revision": 1120, "object_id": "266cbbc4-d70f-4312-b9ba-8bba25f41956", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"266cbbc4-d70f-4312-b9ba-8bba25f41956\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"52c29f4f-ca22-448c-b83a-24176d111e5f\", \"organization\": \"0d9f0534-dc48-429c-ba13-04887e0c3d9a\", \"registration_no\": \"WPI 06091601\"}}]", "object_repr": "David Schroeder - Pump Installer"}}, {"model": "reversion.version", "pk": 1189, "fields": {"revision": 1120, "object_id": "0d9f0534-dc48-429c-ba13-04887e0c3d9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d9f0534-dc48-429c-ba13-04887e0c3d9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Smithers Well Drilling Ltd.\", \"street_address\": \"4760 Nielsen Road\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N2\", \"main_tel\": \"(250) 847-4033\", \"fax_tel\": \"(250) 847-4033\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Smithers Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1190, "fields": {"revision": 1121, "object_id": "2712176f-159f-4616-8372-ab6da2788ceb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2712176f-159f-4616-8372-ab6da2788ceb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"96d8eeea-8c94-4560-bcb3-150ebef6110a\", \"organization\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"registration_no\": \"WPI 05082401\"}}]", "object_repr": "Reginald McInnes - Pump Installer"}}, {"model": "reversion.version", "pk": 1191, "fields": {"revision": 1121, "object_id": "e9a3778c-0bc6-400c-a582-5a72f910f763", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Pump Service Ltd.\", \"street_address\": \"1139A Industrial Road #3\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 5E3\", \"main_tel\": \"(250) 426-4069\", \"fax_tel\": \"(250) 426-8425\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Pump Service Ltd."}}, {"model": "reversion.version", "pk": 1192, "fields": {"revision": 1122, "object_id": "273be606-c12d-4904-b326-bf2abf805fc2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"273be606-c12d-4904-b326-bf2abf805fc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ce12f22c-43a2-44bd-ab61-8bffc1278be4\", \"organization\": \"c8eb928a-9250-4730-b984-9d5d89618c97\", \"registration_no\": \"WPI 06020601\"}}]", "object_repr": "Blaine Matuga - Pump Installer"}}, {"model": "reversion.version", "pk": 1193, "fields": {"revision": 1122, "object_id": "c8eb928a-9250-4730-b984-9d5d89618c97", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c8eb928a-9250-4730-b984-9d5d89618c97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Central Interior Pumps Ltd.\", \"street_address\": \"PO Box 8448, Yellowhead Highway\", \"city\": \"Heffley Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1Z2\", \"main_tel\": \"(250) 578-7829\", \"fax_tel\": \"(250) 578-7863\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Central Interior Pumps Ltd."}}, {"model": "reversion.version", "pk": 1194, "fields": {"revision": 1123, "object_id": "2772cbcc-2827-4de5-b927-c6b8e6ed191c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2772cbcc-2827-4de5-b927-c6b8e6ed191c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5f1fc7f6-c1d8-476f-a4e9-57c5d83e5d81\", \"organization\": \"96bd8b01-be90-4fc7-b1ce-b395f8c39dc2\", \"registration_no\": \"WD 06022603\"}}]", "object_repr": "Robert Holiove - Well Driller"}}, {"model": "reversion.version", "pk": 1195, "fields": {"revision": 1123, "object_id": "96bd8b01-be90-4fc7-b1ce-b395f8c39dc2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"96bd8b01-be90-4fc7-b1ce-b395f8c39dc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Butch's Pump\", \"street_address\": \"6729 Highway 97 South\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E2\", \"main_tel\": \"(250) 395-1971\", \"fax_tel\": \"(250) 395-1997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Butch's Pump"}}, {"model": "reversion.version", "pk": 1196, "fields": {"revision": 1124, "object_id": "27a95ea8-8f83-41fd-bd97-541fb18a4ecc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"27a95ea8-8f83-41fd-bd97-541fb18a4ecc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f13d7c90-9b1c-4964-b56a-a5ad88d96416\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WPI 06051101\"}}]", "object_repr": "Calvin Slade - Pump Installer"}}, {"model": "reversion.version", "pk": 1197, "fields": {"revision": 1124, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1198, "fields": {"revision": 1125, "object_id": "2837bca7-578f-47cc-ab8f-7813d521f3e8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2837bca7-578f-47cc-ab8f-7813d521f3e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"291b44d4-078a-4429-b4d0-8eaff623cf08\", \"organization\": \"425b0658-bd67-4ffe-9ac7-ee5515cb649f\", \"registration_no\": \"WPI 08012902\"}}]", "object_repr": "Andrew Wannop - Pump Installer"}}, {"model": "reversion.version", "pk": 1199, "fields": {"revision": 1125, "object_id": "425b0658-bd67-4ffe-9ac7-ee5515cb649f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"425b0658-bd67-4ffe-9ac7-ee5515cb649f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"PSI Pump Systems Inc.\", \"street_address\": \"1843 Lynrick Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1P 1G1\", \"main_tel\": \"(250) 467-9186\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "PSI Pump Systems Inc."}}, {"model": "reversion.version", "pk": 1200, "fields": {"revision": 1126, "object_id": "28c4ae7a-410a-4098-9ae6-2d04d7fd2e82", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"28c4ae7a-410a-4098-9ae6-2d04d7fd2e82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"631be46c-ee6a-4102-829e-8bce9d8da616\", \"organization\": \"04d94639-e00c-4b24-9251-accd1cc3028d\", \"registration_no\": \"WD 17082401\"}}]", "object_repr": "Ethan Martin - Well Driller"}}, {"model": "reversion.version", "pk": 1201, "fields": {"revision": 1126, "object_id": "04d94639-e00c-4b24-9251-accd1cc3028d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"04d94639-e00c-4b24-9251-accd1cc3028d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Zenco Hydrovac Excavation Ltd.\", \"street_address\": \"4663 Banzer Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 4H2\", \"main_tel\": \"(250) 961-8287\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Zenco Hydrovac Excavation Ltd."}}, {"model": "reversion.version", "pk": 1202, "fields": {"revision": 1127, "object_id": "294ac173-aab7-4b5a-bd5f-ed5d092e5ef2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"294ac173-aab7-4b5a-bd5f-ed5d092e5ef2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d0f31db3-9d4e-4171-a67e-e508ba376698\", \"organization\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"registration_no\": \"WPI 16061401\"}}]", "object_repr": "Clinton Mallach - Pump Installer"}}, {"model": "reversion.version", "pk": 1203, "fields": {"revision": 1127, "object_id": "d030bb92-e2db-4466-9514-abdb204fe8ad", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Valley H2O Well and Pump Service Ltd.\", \"street_address\": \"Box 895\", \"city\": \"Invermere\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1K0\", \"main_tel\": \"(250) 342-9466\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Valley H2O Well and Pump Service Ltd."}}, {"model": "reversion.version", "pk": 1204, "fields": {"revision": 1128, "object_id": "29519eb9-114d-4a8b-acfe-f6e9d9720b7e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"29519eb9-114d-4a8b-acfe-f6e9d9720b7e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fcca8c4f-44cc-412d-b866-36cc12815f26\", \"organization\": \"71b37327-7048-49d0-b97c-234f62e8a9b7\", \"registration_no\": \"WD 05100502\"}}]", "object_repr": "Walter Perry - Well Driller"}}, {"model": "reversion.version", "pk": 1205, "fields": {"revision": 1128, "object_id": "71b37327-7048-49d0-b97c-234f62e8a9b7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"71b37327-7048-49d0-b97c-234f62e8a9b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Perry's Well Drilling\", \"street_address\": \"1708 197A Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 1K2\", \"main_tel\": \"(604) 534-1347\", \"fax_tel\": \"(604) 534-1358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Perry's Well Drilling"}}, {"model": "reversion.version", "pk": 1206, "fields": {"revision": 1129, "object_id": "2957083a-bbb5-4b86-b7da-e077d36ceb11", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2957083a-bbb5-4b86-b7da-e077d36ceb11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3c13028a-182d-4fe9-88ee-41dd11330459\", \"organization\": \"fe84a61a-7201-4ec6-ba35-a012542caf03\", \"registration_no\": \"WPI 06091101\"}}]", "object_repr": "Gordon Griffiths - Pump Installer"}}, {"model": "reversion.version", "pk": 1207, "fields": {"revision": 1129, "object_id": "fe84a61a-7201-4ec6-ba35-a012542caf03", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe84a61a-7201-4ec6-ba35-a012542caf03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.W. Griffiths Ltd.\", \"street_address\": \"251 Government Street\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 1A6\", \"main_tel\": \"(250) 746-4534\", \"fax_tel\": \"(250) 748-8991\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.W. Griffiths Ltd."}}, {"model": "reversion.version", "pk": 1208, "fields": {"revision": 1130, "object_id": "29e98a18-640c-4069-a1cc-7eae53b3d9ea", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"29e98a18-640c-4069-a1cc-7eae53b3d9ea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e8a96245-714d-483a-83bb-75f8aa61ffc8\", \"organization\": null, \"registration_no\": \"WPI 17042403\"}}]", "object_repr": "Matthew Miller - Pump Installer"}}, {"model": "reversion.version", "pk": 1209, "fields": {"revision": 1131, "object_id": "2bd1031b-69cb-416d-81ad-405b5c9bb57d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2bd1031b-69cb-416d-81ad-405b5c9bb57d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"37f33d46-c555-43d9-9cbb-15303f4bb93c\", \"organization\": \"5c3862d4-3c33-4e3f-b5de-76c4ce61dfaa\", \"registration_no\": \"WPI 05110202\"}}]", "object_repr": "Robert Gribbon - Pump Installer"}}, {"model": "reversion.version", "pk": 1210, "fields": {"revision": 1131, "object_id": "5c3862d4-3c33-4e3f-b5de-76c4ce61dfaa", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5c3862d4-3c33-4e3f-b5de-76c4ce61dfaa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Scotty's Plumbing\", \"street_address\": \"1445 Hess Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X6\", \"main_tel\": \"(250) 247-9588\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Scotty's Plumbing"}}, {"model": "reversion.version", "pk": 1211, "fields": {"revision": 1132, "object_id": "2c0ea940-8bba-4ef0-a4d5-44dcc4b749b0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2c0ea940-8bba-4ef0-a4d5-44dcc4b749b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"46b97baa-76aa-482c-8d00-14adfb7a53e1\", \"organization\": \"3728ef5c-2c92-4066-ad29-c3a0370aaa78\", \"registration_no\": \"WPI 04121702\"}}]", "object_repr": "David Evenson - Pump Installer"}}, {"model": "reversion.version", "pk": 1212, "fields": {"revision": 1132, "object_id": "3728ef5c-2c92-4066-ad29-c3a0370aaa78", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3728ef5c-2c92-4066-ad29-c3a0370aaa78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Great Western Pump\", \"street_address\": \"5834 Main St.\", \"city\": \"Oliver\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1T9\", \"main_tel\": \"(250) 498-8484\", \"fax_tel\": \"(250) 498-4686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Great Western Pump"}}, {"model": "reversion.version", "pk": 1213, "fields": {"revision": 1133, "object_id": "2c17e7b3-5c01-4301-8529-c52907c7eccf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2c17e7b3-5c01-4301-8529-c52907c7eccf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"822311e2-b1b9-4fa8-adad-14fee6d086a2\", \"organization\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"registration_no\": \"WD 11052001\"}}]", "object_repr": "Ibrahim Kurtoglu - Well Driller"}}, {"model": "reversion.version", "pk": 1214, "fields": {"revision": 1133, "object_id": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 1215, "fields": {"revision": 1134, "object_id": "2ca670aa-0a52-4c60-bf27-ed12146c0842", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2ca670aa-0a52-4c60-bf27-ed12146c0842\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f51f00ec-98e9-4734-bc54-3eb13f6470de\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 05110202\"}}]", "object_repr": "Gordon Gibbons - Well Driller"}}, {"model": "reversion.version", "pk": 1216, "fields": {"revision": 1134, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1217, "fields": {"revision": 1135, "object_id": "2d42435d-53a1-4016-bd82-5f925c183fb8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2d42435d-53a1-4016-bd82-5f925c183fb8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a58dac20-c818-4e44-89dd-db6455b9da13\", \"organization\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"registration_no\": \"WD 06101302\"}}]", "object_repr": "Walter Dodd - Well Driller"}}, {"model": "reversion.version", "pk": 1218, "fields": {"revision": 1135, "object_id": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 1219, "fields": {"revision": 1136, "object_id": "2e07a868-fe08-4770-97c5-14f376ba0370", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2e07a868-fe08-4770-97c5-14f376ba0370\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2197ab26-b252-45ea-b776-127e8dbbd33f\", \"organization\": \"c7e79ef0-dcd7-4832-abc1-20d8548a3d74\", \"registration_no\": \"WPI 06012505\"}}]", "object_repr": "Jim Skiba - Pump Installer"}}, {"model": "reversion.version", "pk": 1220, "fields": {"revision": 1136, "object_id": "c7e79ef0-dcd7-4832-abc1-20d8548a3d74", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7e79ef0-dcd7-4832-abc1-20d8548a3d74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rob's Pump's 2000 Ltd.\", \"street_address\": \"2175 Blackwater Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 7C3\", \"main_tel\": \"(250) 992-5100\", \"fax_tel\": \"(250) 249-0255\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rob's Pump's 2000 Ltd."}}, {"model": "reversion.version", "pk": 1221, "fields": {"revision": 1137, "object_id": "2ec57971-496e-48ef-9f5a-a35adc8be90a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"2ec57971-496e-48ef-9f5a-a35adc8be90a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f68702d2-afb1-41fc-b351-51caf348088f\", \"organization\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"registration_no\": \"WD 06091601\"}}]", "object_repr": "Chad Brown - Well Driller"}}, {"model": "reversion.version", "pk": 1222, "fields": {"revision": 1137, "object_id": "b844c836-2309-489a-9443-5eb56097e77a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sea to Sky Geotechnical Drilling Ltd.\", \"street_address\": \"E2-225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 328-9568\", \"fax_tel\": \"(604) 939-5045\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sea to Sky Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 1223, "fields": {"revision": 1138, "object_id": "32097004-8f9b-4f62-a6e5-b37ca0494aec", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"32097004-8f9b-4f62-a6e5-b37ca0494aec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"602573b8-5cc5-45b5-834e-7ab3ebd35506\", \"organization\": null, \"registration_no\": \"WD 06090601\"}}]", "object_repr": "Joel Gillin - Well Driller"}}, {"model": "reversion.version", "pk": 1224, "fields": {"revision": 1139, "object_id": "320e9fc4-5292-472f-8e52-7cc36aa93053", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"320e9fc4-5292-472f-8e52-7cc36aa93053\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0395f3c9-ec55-4a2a-8d86-1434600f1471\", \"organization\": \"056b5bf7-6a34-4ccd-b1d3-21875994a471\", \"registration_no\": \"WPI 06032803\"}}]", "object_repr": "Monte Ayre - Pump Installer"}}, {"model": "reversion.version", "pk": 1225, "fields": {"revision": 1139, "object_id": "056b5bf7-6a34-4ccd-b1d3-21875994a471", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"056b5bf7-6a34-4ccd-b1d3-21875994a471\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Ayre Enterprises\", \"street_address\": \"Box 27084; 772 Goldstream Avenue\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 5S4\", \"main_tel\": \"(250) 474-5627\", \"fax_tel\": \"(250) 474-5627\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Ayre Enterprises"}}, {"model": "reversion.version", "pk": 1226, "fields": {"revision": 1140, "object_id": "3258f235-9c6b-49c7-80bd-138a3ecca6c2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3258f235-9c6b-49c7-80bd-138a3ecca6c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"213411cd-758c-45f5-b089-2c81a1d7d07a\", \"organization\": \"60146864-1863-47d9-bf1a-55af7e045cf2\", \"registration_no\": \"WPI 05102902\"}}]", "object_repr": "Douglas Prohl - Pump Installer"}}, {"model": "reversion.version", "pk": 1227, "fields": {"revision": 1140, "object_id": "60146864-1863-47d9-bf1a-55af7e045cf2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"60146864-1863-47d9-bf1a-55af7e045cf2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Willow Hill Enterprises\", \"street_address\": \"8355 Outlook Road\", \"city\": \"Grand Forks\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1H2\", \"main_tel\": \"(250) 442-2392\", \"fax_tel\": \"(250) 442-2392\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Willow Hill Enterprises"}}, {"model": "reversion.version", "pk": 1228, "fields": {"revision": 1141, "object_id": "32ba06b9-8119-4109-80bb-28a56efa5d1a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"32ba06b9-8119-4109-80bb-28a56efa5d1a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a1402cca-53ff-4f59-a195-fa5162e3e93b\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 16020901\"}}]", "object_repr": "Bradley Dwyer - Well Driller"}}, {"model": "reversion.version", "pk": 1229, "fields": {"revision": 1141, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1230, "fields": {"revision": 1142, "object_id": "333444ad-5540-45ab-be44-e0f71efb1dfd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"333444ad-5540-45ab-be44-e0f71efb1dfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fb98f574-d3a4-4e8e-95ef-bcfda1847721\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101312\"}}]", "object_repr": "John Wallace - Well Driller"}}, {"model": "reversion.version", "pk": 1231, "fields": {"revision": 1142, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1232, "fields": {"revision": 1143, "object_id": "338c46da-7c4e-4297-a8c2-58f028091729", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"338c46da-7c4e-4297-a8c2-58f028091729\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f13d7c90-9b1c-4964-b56a-a5ad88d96416\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121405\"}}]", "object_repr": "Calvin Slade - Well Driller"}}, {"model": "reversion.version", "pk": 1233, "fields": {"revision": 1143, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1234, "fields": {"revision": 1144, "object_id": "339ccb1b-3034-42d4-b4ac-bea5b07cd5ca", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"339ccb1b-3034-42d4-b4ac-bea5b07cd5ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a0679090-6b53-4a8e-9fc4-1c5e6160f4d9\", \"organization\": \"3f27c808-d02b-4c16-b615-8a0f5b78897b\", \"registration_no\": \"WD 06102001\"}}]", "object_repr": "Donald Lenard - Well Driller"}}, {"model": "reversion.version", "pk": 1235, "fields": {"revision": 1144, "object_id": "3f27c808-d02b-4c16-b615-8a0f5b78897b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3f27c808-d02b-4c16-b615-8a0f5b78897b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"317 - 103rd Street\", \"city\": \"Saskatoon\", \"province_state\": \"SK\", \"postal_code\": \"S7N 1Y9\", \"main_tel\": \"(306) 373-7070\", \"fax_tel\": \"(306) 373-1922\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1236, "fields": {"revision": 1145, "object_id": "340de73b-8348-4cf8-a3dd-df7b61fb272c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"340de73b-8348-4cf8-a3dd-df7b61fb272c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a66cd7bd-5256-4caf-842c-0cfe7429d229\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 06101803\"}}]", "object_repr": "Rolf Mai - Well Driller"}}, {"model": "reversion.version", "pk": 1237, "fields": {"revision": 1145, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1238, "fields": {"revision": 1146, "object_id": "35a36648-b789-4f32-a0b8-ede1e624d744", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"35a36648-b789-4f32-a0b8-ede1e624d744\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"77bb2be7-3293-477a-8049-4038bda1dc60\", \"organization\": \"330ae69d-e9f2-4f03-9058-96ce7df27200\", \"registration_no\": \"WD 06040701\"}}]", "object_repr": "James Henry - Well Driller"}}, {"model": "reversion.version", "pk": 1239, "fields": {"revision": 1146, "object_id": "330ae69d-e9f2-4f03-9058-96ce7df27200", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"330ae69d-e9f2-4f03-9058-96ce7df27200\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wild West Drilling\", \"street_address\": \"9782 55A Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 3X2\", \"main_tel\": \"(604) 760-1903\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wild West Drilling"}}, {"model": "reversion.version", "pk": 1240, "fields": {"revision": 1147, "object_id": "35ab739e-0970-4a66-a26e-8a641d082eb0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"35ab739e-0970-4a66-a26e-8a641d082eb0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c91d6692-94dd-4065-8efb-a198da2e3507\", \"organization\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"registration_no\": \"WPI 05033101\"}}]", "object_repr": "Richard Bastiannsen - Pump Installer"}}, {"model": "reversion.version", "pk": 1241, "fields": {"revision": 1147, "object_id": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Utilities\", \"street_address\": \"3175 Turner Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7T9\", \"main_tel\": \"(604) 850-0441\", \"fax_tel\": \"(604) 768-9269\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Utilities"}}, {"model": "reversion.version", "pk": 1242, "fields": {"revision": 1148, "object_id": "36237d32-33cd-43ff-afbd-b0c67d6a7a71", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"36237d32-33cd-43ff-afbd-b0c67d6a7a71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c7dc8a3f-563b-414e-92d2-db8ce6b05ae3\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121402\"}}]", "object_repr": "Douglas Watt - Well Driller"}}, {"model": "reversion.version", "pk": 1243, "fields": {"revision": 1148, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1244, "fields": {"revision": 1149, "object_id": "362ec95e-e55f-45f7-9a15-ce8588ed22c1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"362ec95e-e55f-45f7-9a15-ce8588ed22c1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"823fdadf-610b-4233-8e49-de51d229305d\", \"organization\": \"967bc31f-bd82-4b67-a99f-0bef1cbbf4b7\", \"registration_no\": \"WPI 06051601\"}}]", "object_repr": "Harry Mason - Pump Installer"}}, {"model": "reversion.version", "pk": 1245, "fields": {"revision": 1149, "object_id": "967bc31f-bd82-4b67-a99f-0bef1cbbf4b7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"967bc31f-bd82-4b67-a99f-0bef1cbbf4b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Valley Pumps & Repairs Ltd.\", \"street_address\": \"33712 Best Avenue\", \"city\": \"Mission\", \"province_state\": \"BC\", \"postal_code\": \"V2V 6Z9\", \"main_tel\": \"(604) 820-6374\", \"fax_tel\": \"(604) 820-6374\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Valley Pumps & Repairs Ltd."}}, {"model": "reversion.version", "pk": 1246, "fields": {"revision": 1150, "object_id": "3697794d-b389-4381-826d-d1ec07009da9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3697794d-b389-4381-826d-d1ec07009da9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b96d12a8-a154-4664-9b1c-48a2a844dfb2\", \"organization\": null, \"registration_no\": \"WPI 04121002\"}}]", "object_repr": "Hank Pakos - Pump Installer"}}, {"model": "reversion.version", "pk": 1247, "fields": {"revision": 1151, "object_id": "36a5f9b7-ada6-4302-954c-3e3af65daa59", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"36a5f9b7-ada6-4302-954c-3e3af65daa59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"27ccc24f-1b1a-436f-ba35-799b8e712478\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 05041504\"}}]", "object_repr": "Alan Holmstrup - Well Driller"}}, {"model": "reversion.version", "pk": 1248, "fields": {"revision": 1151, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1249, "fields": {"revision": 1152, "object_id": "36d2ce33-c44d-4d34-976a-e4d0600db365", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"36d2ce33-c44d-4d34-976a-e4d0600db365\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"df3917e1-2a32-4f0d-85d4-fee90d1edb23\", \"organization\": \"0bca96ff-9a9a-4d56-8303-6dab7af9993e\", \"registration_no\": \"WPI 06102503\"}}]", "object_repr": "Laurin Macdonald - Pump Installer"}}, {"model": "reversion.version", "pk": 1250, "fields": {"revision": 1152, "object_id": "0bca96ff-9a9a-4d56-8303-6dab7af9993e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0bca96ff-9a9a-4d56-8303-6dab7af9993e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bowen Plumbing\", \"street_address\": \"Box F-11, 1231 Hillcrest Road\", \"city\": \"Bowen Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1G0\", \"main_tel\": \"(604) 947-2467\", \"fax_tel\": \"(604) 947-2534\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bowen Plumbing"}}, {"model": "reversion.version", "pk": 1251, "fields": {"revision": 1153, "object_id": "371b1542-16fe-48ad-a275-9847c479b312", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"371b1542-16fe-48ad-a275-9847c479b312\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1986b832-63bd-4669-a2af-cea012ae040e\", \"organization\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"registration_no\": \"WPI 06073101\"}}]", "object_repr": "Richard (Dick) Ford - Pump Installer"}}, {"model": "reversion.version", "pk": 1252, "fields": {"revision": 1153, "object_id": "53586668-d586-44d2-8ea1-82ea79b4a596", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Highlands Irrigation Ltd.\", \"street_address\": \"1105 South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A7\", \"main_tel\": \"(250) 392-2321\", \"fax_tel\": \"(250) 392-2377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Highlands Irrigation Ltd."}}, {"model": "reversion.version", "pk": 1253, "fields": {"revision": 1154, "object_id": "3725bec0-e294-4657-a407-a537e0de7d4c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3725bec0-e294-4657-a407-a537e0de7d4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ad687efe-a1ca-487d-a5ef-4d99eda25948\", \"organization\": \"7de7653f-5c56-45d5-9fab-aead864d5dbc\", \"registration_no\": \"WD 13060301\"}}]", "object_repr": "Nick Skinner - Well Driller"}}, {"model": "reversion.version", "pk": 1254, "fields": {"revision": 1154, "object_id": "7de7653f-5c56-45d5-9fab-aead864d5dbc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7de7653f-5c56-45d5-9fab-aead864d5dbc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Full Metal Drilling Inc.\", \"street_address\": \"5215 16th Avenue\", \"city\": \"Edson\", \"province_state\": \"AB\", \"postal_code\": \"T7E 1H1\", \"main_tel\": \"(780) 728-7148\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Full Metal Drilling Inc."}}, {"model": "reversion.version", "pk": 1255, "fields": {"revision": 1155, "object_id": "372bdf8c-c598-4c99-b504-3f81fd3f723a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"372bdf8c-c598-4c99-b504-3f81fd3f723a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8690bc63-c878-43fb-851d-ab48a130707c\", \"organization\": \"c8177f21-a3fe-4034-b3cc-81acc8c6fa73\", \"registration_no\": \"WPI 06101811\"}}]", "object_repr": "Stacy Savage - Pump Installer"}}, {"model": "reversion.version", "pk": 1256, "fields": {"revision": 1155, "object_id": "c8177f21-a3fe-4034-b3cc-81acc8c6fa73", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c8177f21-a3fe-4034-b3cc-81acc8c6fa73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Savage Plumbing & Heating Ltd.\", \"street_address\": \"Box 741, 2330 Caughlin Road\", \"city\": \"Fruitvale\", \"province_state\": \"BC\", \"postal_code\": \"V0G 1L0\", \"main_tel\": \"(250) 367-9632\", \"fax_tel\": \"(250) 367-9622\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Savage Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 1257, "fields": {"revision": 1156, "object_id": "381f49cb-4929-4e92-a045-fb179388e18b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"381f49cb-4929-4e92-a045-fb179388e18b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"602573b8-5cc5-45b5-834e-7ab3ebd35506\", \"organization\": null, \"registration_no\": \"WPI 06090601\"}}]", "object_repr": "Joel Gillin - Pump Installer"}}, {"model": "reversion.version", "pk": 1258, "fields": {"revision": 1157, "object_id": "382e5ef8-0fb3-4e6b-af88-d82d93e408ad", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"382e5ef8-0fb3-4e6b-af88-d82d93e408ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f689af68-b11a-4a07-9a21-65a4f296cf00\", \"organization\": \"90f98635-a7c2-4d4c-af74-42fac2a8ce0b\", \"registration_no\": \"WPI 06091102\"}}]", "object_repr": "Art Klassen - Pump Installer"}}, {"model": "reversion.version", "pk": 1259, "fields": {"revision": 1157, "object_id": "90f98635-a7c2-4d4c-af74-42fac2a8ce0b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"90f98635-a7c2-4d4c-af74-42fac2a8ce0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Arts Plumbing & Heating Ltd.\", \"street_address\": \"6896 Doumont Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9T 6G9\", \"main_tel\": \"(250) 350-2606\", \"fax_tel\": \"(250) 390-2635\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Arts Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 1260, "fields": {"revision": 1158, "object_id": "383bf6a0-a202-4dfa-a502-cb7c778d6758", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"383bf6a0-a202-4dfa-a502-cb7c778d6758\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3cc610a7-90a4-4d5c-9d16-cf52e1ab3c03\", \"organization\": null, \"registration_no\": \"WPI 11100601\"}}]", "object_repr": "Daniel St. Laurent - Pump Installer"}}, {"model": "reversion.version", "pk": 1261, "fields": {"revision": 1159, "object_id": "3859f0cf-6443-4f22-96af-8c00f121f1b8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3859f0cf-6443-4f22-96af-8c00f121f1b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c6d9c83b-a5ac-47cb-ba04-b6d1fe60437d\", \"organization\": \"81b2e3d0-913a-4826-8ab9-8b4cca96bdd0\", \"registration_no\": \"WPI 06090604\"}}]", "object_repr": "Antony Kruger - Pump Installer"}}, {"model": "reversion.version", "pk": 1262, "fields": {"revision": 1159, "object_id": "81b2e3d0-913a-4826-8ab9-8b4cca96bdd0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"81b2e3d0-913a-4826-8ab9-8b4cca96bdd0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pumpco\", \"street_address\": \"12196 210th Street\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2X 8C7\", \"main_tel\": \"(604) 715-8440\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pumpco"}}, {"model": "reversion.version", "pk": 1263, "fields": {"revision": 1160, "object_id": "38836ef8-f159-4422-a4c1-64b6c75efcdb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"38836ef8-f159-4422-a4c1-64b6c75efcdb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b5a297c5-b769-432b-9476-54bfaf0a38d4\", \"organization\": \"bf767aec-6c24-4e41-ada9-e264e160fb94\", \"registration_no\": \"WPI 05101102\"}}]", "object_repr": "Derek Tomlinson - Pump Installer"}}, {"model": "reversion.version", "pk": 1264, "fields": {"revision": 1160, "object_id": "bf767aec-6c24-4e41-ada9-e264e160fb94", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bf767aec-6c24-4e41-ada9-e264e160fb94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hotearth Energy Systems\", \"street_address\": \"3560 Hallberg Road\", \"city\": \"Ladysmith\", \"province_state\": \"BC\", \"postal_code\": \"V9G 1L4\", \"main_tel\": \"(250) 245-5702\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hotearth Energy Systems"}}, {"model": "reversion.version", "pk": 1265, "fields": {"revision": 1161, "object_id": "38d3fe66-520f-4525-8ea7-e1ccb113a516", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"38d3fe66-520f-4525-8ea7-e1ccb113a516\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5bb84f49-155d-4969-ad86-e7de0927a3c6\", \"organization\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"registration_no\": \"WD 06101805\"}}]", "object_repr": "Albert Kaye - Well Driller"}}, {"model": "reversion.version", "pk": 1266, "fields": {"revision": 1161, "object_id": "c7e17543-1e10-4ff1-afcf-cdfb93e21e20", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Albert Kaye & Sons Drilling Ltd.\", \"street_address\": \"200 Musgrave Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V5\", \"main_tel\": \"(250) 653-4757\", \"fax_tel\": \"(250) 653-4778\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Albert Kaye & Sons Drilling Ltd."}}, {"model": "reversion.version", "pk": 1267, "fields": {"revision": 1162, "object_id": "38f2d9c2-f30b-4fe6-845e-432f97222f46", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"38f2d9c2-f30b-4fe6-845e-432f97222f46\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e4e4c8e7-fa0a-4f97-93b0-1662a31f2b73\", \"organization\": \"db93004d-4d4d-4120-80c4-4af0b6568050\", \"registration_no\": \"WPI 08102101\"}}]", "object_repr": "Richard Yemm - Pump Installer"}}, {"model": "reversion.version", "pk": 1268, "fields": {"revision": 1162, "object_id": "db93004d-4d4d-4120-80c4-4af0b6568050", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db93004d-4d4d-4120-80c4-4af0b6568050\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Y & R Water Sales & Services Inc.\", \"street_address\": \"Box 488 7708 Donaldson Drive\", \"city\": \"Grand Forks\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1H0\", \"main_tel\": \"(250) 442-5537\", \"fax_tel\": \"(250) 442-5547\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Y & R Water Sales & Services Inc."}}, {"model": "reversion.version", "pk": 1269, "fields": {"revision": 1163, "object_id": "39068332-353a-48f0-ac03-bb150eeeb497", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"39068332-353a-48f0-ac03-bb150eeeb497\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"163253cc-907c-49b0-a649-616ae4f0f8ad\", \"organization\": \"0d8b1858-e8a4-4a42-af1b-e6f7741602ac\", \"registration_no\": \"WPI 11020203\"}}]", "object_repr": "Matthew Spooner - Pump Installer"}}, {"model": "reversion.version", "pk": 1270, "fields": {"revision": 1163, "object_id": "0d8b1858-e8a4-4a42-af1b-e6f7741602ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d8b1858-e8a4-4a42-af1b-e6f7741602ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Spooner Electric Ltd.\", \"street_address\": \"3079 Squilax-Anglemont Road\", \"city\": \"Lee Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1M4\", \"main_tel\": \"(250) 679-3655\", \"fax_tel\": \"(250) 679-3655\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Spooner Electric Ltd."}}, {"model": "reversion.version", "pk": 1271, "fields": {"revision": 1164, "object_id": "397c4165-9089-4da2-946c-6fdc6aff3a33", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"397c4165-9089-4da2-946c-6fdc6aff3a33\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1cc32a16-1631-4f61-8782-35e6f26aac85\", \"organization\": null, \"registration_no\": \"WPI 05022401\"}}]", "object_repr": "Peter Jarratt - Pump Installer"}}, {"model": "reversion.version", "pk": 1272, "fields": {"revision": 1165, "object_id": "399479d7-e267-45e2-893d-feab880ae047", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"399479d7-e267-45e2-893d-feab880ae047\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"685af1a8-dbd5-48e1-bdcf-72323709f110\", \"organization\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"registration_no\": \"WPI 04121501\"}}]", "object_repr": "Darin Kashmark - Pump Installer"}}, {"model": "reversion.version", "pk": 1273, "fields": {"revision": 1165, "object_id": "5e375c99-81af-4095-965b-8e40f8608451", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"B.K. Woods & Water Supplies Ltd.\", \"street_address\": \"9400 Cariboo Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E1\", \"main_tel\": \"(250) 963-1411\", \"fax_tel\": \"(250) 963-3236\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "B.K. Woods & Water Supplies Ltd."}}, {"model": "reversion.version", "pk": 1274, "fields": {"revision": 1166, "object_id": "3a1de42a-4ecc-42c4-a4d6-528eae60d453", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3a1de42a-4ecc-42c4-a4d6-528eae60d453\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e6f94c68-f736-416e-b48d-55de07236475\", \"organization\": \"779b8ba7-3bcc-47d6-914f-1dd54e2b36c9\", \"registration_no\": \"WPI 06060203\"}}]", "object_repr": "Dennis Pelzer - Pump Installer"}}, {"model": "reversion.version", "pk": 1275, "fields": {"revision": 1166, "object_id": "779b8ba7-3bcc-47d6-914f-1dd54e2b36c9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"779b8ba7-3bcc-47d6-914f-1dd54e2b36c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alpine Plumbing & Heating\", \"street_address\": \"Box 2984\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-2820\", \"fax_tel\": \"(250) 847-4250\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alpine Plumbing & Heating"}}, {"model": "reversion.version", "pk": 1276, "fields": {"revision": 1167, "object_id": "3a85e825-a3ef-49ef-8e72-b8faff5670df", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3a85e825-a3ef-49ef-8e72-b8faff5670df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d8e66003-1db2-47c4-b237-5e700723bf9e\", \"organization\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"registration_no\": \"WD 05062301\"}}]", "object_repr": "Rob Crampton - Well Driller"}}, {"model": "reversion.version", "pk": 1277, "fields": {"revision": 1167, "object_id": "b405fd40-35f5-4ff6-b570-4559dfaca861", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Robbins Drilling and Pump Ltd\", \"street_address\": \"Box 80, 1400 Green Lake Road\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-5303\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Robbins Drilling and Pump Ltd"}}, {"model": "reversion.version", "pk": 1278, "fields": {"revision": 1168, "object_id": "3b2c3c73-528f-43be-9313-b6e67918f0a7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3b2c3c73-528f-43be-9313-b6e67918f0a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"bf5fbc5c-9b12-4310-be5d-d20b6cce6f6d\", \"organization\": \"0acc2ac6-0fd2-46df-ba89-c28c9fba9375\", \"registration_no\": \"WD 18011001\"}}]", "object_repr": "Stephen Shewchuck - Well Driller"}}, {"model": "reversion.version", "pk": 1279, "fields": {"revision": 1168, "object_id": "0acc2ac6-0fd2-46df-ba89-c28c9fba9375", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0acc2ac6-0fd2-46df-ba89-c28c9fba9375\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Omega Environmental Drilling Ltd.\", \"street_address\": \"PO Box 31620\", \"city\": \"Pitt Meadows\", \"province_state\": \"BC\", \"postal_code\": \"V3Y 2W4\", \"main_tel\": \"(604) 459-4567\", \"fax_tel\": \"(604) 459-5477\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Omega Environmental Drilling Ltd."}}, {"model": "reversion.version", "pk": 1280, "fields": {"revision": 1169, "object_id": "3b57ec05-99b4-45c7-8021-1bf026fc5c68", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3b57ec05-99b4-45c7-8021-1bf026fc5c68\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3e5b1e24-ad7f-43ae-aa91-8ba07aaf0e06\", \"organization\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"registration_no\": \"WPI 06103102\"}}]", "object_repr": "Duane Bentley - Pump Installer"}}, {"model": "reversion.version", "pk": 1281, "fields": {"revision": 1169, "object_id": "1637ce27-f13c-4214-abda-ed81f4b39ac2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"Box 310\", \"city\": \"Barrie\", \"province_state\": \"ON\", \"postal_code\": \"L4M 4T5\", \"main_tel\": \"(705) 733-0111\", \"fax_tel\": \"(705) 721-0138\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1282, "fields": {"revision": 1170, "object_id": "3bad844e-4453-4db2-a677-d35ab667a4c0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3bad844e-4453-4db2-a677-d35ab667a4c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"933ca562-11ed-49ca-ac00-d81d8031320a\", \"organization\": \"395a446e-3776-4256-907e-73b1439575bf\", \"registration_no\": \"WPI 05021404\"}}]", "object_repr": "Stuart McDonald - Pump Installer"}}, {"model": "reversion.version", "pk": 1283, "fields": {"revision": 1170, "object_id": "395a446e-3776-4256-907e-73b1439575bf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"395a446e-3776-4256-907e-73b1439575bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stuart McDonald\", \"street_address\": \"4331 Mount Lehman Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V4X 1Y1\", \"main_tel\": \"(604) 857-1472\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stuart McDonald"}}, {"model": "reversion.version", "pk": 1284, "fields": {"revision": 1171, "object_id": "3bb00cdd-11df-4016-8b4e-0817174c41fb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3bb00cdd-11df-4016-8b4e-0817174c41fb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"aeda30cd-3853-4143-8e6e-c5f4689c4942\", \"organization\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"registration_no\": \"WD 05011403\"}}]", "object_repr": "Jim Clark - Well Driller"}}, {"model": "reversion.version", "pk": 1285, "fields": {"revision": 1171, "object_id": "e56ab542-a414-4de6-be90-f82d7065cad8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Well Drilling Ltd.\", \"street_address\": \"48987 Chilliwack Central Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H3\", \"main_tel\": \"(604) 794-5544\", \"fax_tel\": \"(604) 794-5545\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1286, "fields": {"revision": 1172, "object_id": "3c6a214f-53e2-423c-9283-0d36d413ceca", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3c6a214f-53e2-423c-9283-0d36d413ceca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b229242c-a176-412d-9819-ea8bf288b602\", \"organization\": null, \"registration_no\": \"WPI 06102708\"}}]", "object_repr": "Gordon Sharp - Pump Installer"}}, {"model": "reversion.version", "pk": 1287, "fields": {"revision": 1173, "object_id": "3cfb2f8c-c455-469f-ac56-2dc9d9affbaf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3cfb2f8c-c455-469f-ac56-2dc9d9affbaf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"31ca12f9-be18-458f-80a8-6810965ca336\", \"organization\": \"096f0806-1fcc-4140-8e6c-9cb08e95d2b0\", \"registration_no\": \"WPI 06100614\"}}]", "object_repr": "Gordon Young - Pump Installer"}}, {"model": "reversion.version", "pk": 1288, "fields": {"revision": 1173, "object_id": "096f0806-1fcc-4140-8e6c-9cb08e95d2b0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"096f0806-1fcc-4140-8e6c-9cb08e95d2b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Young's Plumbing Ltd.\", \"street_address\": \"Box 4539\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-5474\", \"fax_tel\": \"(250) 847-6074\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Young's Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1289, "fields": {"revision": 1174, "object_id": "3d9cdb11-e66a-4990-a8a5-c3d9250d6c79", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3d9cdb11-e66a-4990-a8a5-c3d9250d6c79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5d3e5991-5c9f-4d2f-aabb-b1f1cd57d485\", \"organization\": \"6e1ada47-6cff-4e2f-b450-e19ee070a649\", \"registration_no\": \"WD 05101101\"}}]", "object_repr": "Ron Kalicum - Well Driller"}}, {"model": "reversion.version", "pk": 1290, "fields": {"revision": 1174, "object_id": "6e1ada47-6cff-4e2f-b450-e19ee070a649", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6e1ada47-6cff-4e2f-b450-e19ee070a649\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kalicum Drilling Ltd.\", \"street_address\": \"Box 355\", \"city\": \"Cassidy\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1H0\", \"main_tel\": \"(250) 245-1220\", \"fax_tel\": \"(250) 245-1290\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kalicum Drilling Ltd."}}, {"model": "reversion.version", "pk": 1291, "fields": {"revision": 1175, "object_id": "3dba7cce-fff1-4f95-b578-ad7fd13bc34f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3dba7cce-fff1-4f95-b578-ad7fd13bc34f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f8b4391f-7236-4171-9a5d-934fde8892e6\", \"organization\": \"234328ee-cbdd-429c-80ee-e8c1aa03bcbd\", \"registration_no\": \"WPI 12013101\"}}]", "object_repr": "Larry Crawford - Pump Installer"}}, {"model": "reversion.version", "pk": 1292, "fields": {"revision": 1175, "object_id": "234328ee-cbdd-429c-80ee-e8c1aa03bcbd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"234328ee-cbdd-429c-80ee-e8c1aa03bcbd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Arrowsmith Water Management\", \"street_address\": \"Box 96\", \"city\": \"Errington\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1V0\", \"main_tel\": \"(250) 954-2005\", \"fax_tel\": \"(250) 954-2005\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Arrowsmith Water Management"}}, {"model": "reversion.version", "pk": 1293, "fields": {"revision": 1176, "object_id": "3f047bfe-2d0a-4c81-8e60-88d5b3a6d52d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3f047bfe-2d0a-4c81-8e60-88d5b3a6d52d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a040be57-9e11-407a-a38f-2d8be91ce20a\", \"organization\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"registration_no\": \"WD 14032002\"}}]", "object_repr": "Kris Schindel - Well Driller"}}, {"model": "reversion.version", "pk": 1294, "fields": {"revision": 1176, "object_id": "46ddbe83-10f3-478f-8c7b-db4b2864e6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 1295, "fields": {"revision": 1177, "object_id": "3f196ab1-8493-4f2c-bdeb-edaaacf33584", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3f196ab1-8493-4f2c-bdeb-edaaacf33584\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a7874cad-fb7f-4134-bf5f-942aec2e7083\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06103008\"}}]", "object_repr": "Terry Sovdi - Well Driller"}}, {"model": "reversion.version", "pk": 1296, "fields": {"revision": 1177, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1297, "fields": {"revision": 1178, "object_id": "3f1b48f3-99a6-4028-af62-1716ad45d573", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3f1b48f3-99a6-4028-af62-1716ad45d573\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e8117ed3-9c24-47a8-b5a3-e691ce12d2c8\", \"organization\": \"6cc9e8c0-5058-44ac-aa18-6da48f38e49c\", \"registration_no\": \"WPI 10102601\"}}]", "object_repr": "Craig Barfett - Pump Installer"}}, {"model": "reversion.version", "pk": 1298, "fields": {"revision": 1178, "object_id": "6cc9e8c0-5058-44ac-aa18-6da48f38e49c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6cc9e8c0-5058-44ac-aa18-6da48f38e49c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1299, "fields": {"revision": 1179, "object_id": "3f439fda-9623-486b-b576-b257db7d7bf4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3f439fda-9623-486b-b576-b257db7d7bf4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"39a194f7-9cd5-445f-9d71-f6b02fab22a4\", \"organization\": \"fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27\", \"registration_no\": \"WD 10100601\"}}]", "object_repr": "Chris Quinlan - Well Driller"}}, {"model": "reversion.version", "pk": 1300, "fields": {"revision": 1179, "object_id": "fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aaron Drilling\", \"street_address\": \"Box 28, Site 9, RR 1\", \"city\": \"Dewinton\", \"province_state\": \"AB\", \"postal_code\": \"T0L 0X0\", \"main_tel\": \"(403) 938-4961\", \"fax_tel\": \"(403) 938-3324\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aaron Drilling"}}, {"model": "reversion.version", "pk": 1301, "fields": {"revision": 1180, "object_id": "3fd08156-4448-4f55-965e-1e80d552aa51", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"3fd08156-4448-4f55-965e-1e80d552aa51\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7d81acde-d32a-4148-819a-0aaf5e6ecad1\", \"organization\": \"e75724aa-1659-4bcb-9501-d15b54bb4b45\", \"registration_no\": \"WD 05092802\"}}]", "object_repr": "Brent Seymour - Well Driller"}}, {"model": "reversion.version", "pk": 1302, "fields": {"revision": 1180, "object_id": "e75724aa-1659-4bcb-9501-d15b54bb4b45", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e75724aa-1659-4bcb-9501-d15b54bb4b45\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services\", \"street_address\": \"3334 Sexsmith Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7S5\", \"main_tel\": \"(250) 765-2210\", \"fax_tel\": \"(250) 765-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services"}}, {"model": "reversion.version", "pk": 1303, "fields": {"revision": 1181, "object_id": "404b69a6-283f-4ad7-a011-f646223c3edd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"404b69a6-283f-4ad7-a011-f646223c3edd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"526fc489-7140-4644-9b18-dcb03cc9a1bb\", \"organization\": \"867b441f-a916-4156-b89d-ade89b4e7914\", \"registration_no\": \"WD 05112302\"}}]", "object_repr": "Joe MacKenzie - Well Driller"}}, {"model": "reversion.version", "pk": 1304, "fields": {"revision": 1181, "object_id": "867b441f-a916-4156-b89d-ade89b4e7914", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"867b441f-a916-4156-b89d-ade89b4e7914\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"On Track Drilling Inc.\", \"street_address\": \"23795 Dewdney Trunk Rd\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V4R 1W2\", \"main_tel\": \"(604) 523-1200\", \"fax_tel\": \"(604) 523-1201\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "On Track Drilling Inc."}}, {"model": "reversion.version", "pk": 1305, "fields": {"revision": 1182, "object_id": "42030fd4-50e0-4140-95f0-0c5af1146ad5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"42030fd4-50e0-4140-95f0-0c5af1146ad5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f89e5b7b-a253-49e8-a061-01c381cbdbed\", \"organization\": \"21e98e02-9c45-4afc-89a1-906a777e60bc\", \"registration_no\": \"WPI 06090703\"}}]", "object_repr": "Dale Kvisle - Pump Installer"}}, {"model": "reversion.version", "pk": 1306, "fields": {"revision": 1182, "object_id": "21e98e02-9c45-4afc-89a1-906a777e60bc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21e98e02-9c45-4afc-89a1-906a777e60bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dale's Plumbing & Heating\", \"street_address\": \"PO Box 3392 Stn Main\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5N5\", \"main_tel\": \"(250) 703-3798\", \"fax_tel\": \"(250) 334-4167\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dale's Plumbing & Heating"}}, {"model": "reversion.version", "pk": 1307, "fields": {"revision": 1183, "object_id": "43163655-7125-408d-9a35-53e20842c9fb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"43163655-7125-408d-9a35-53e20842c9fb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"89831c1d-a0b1-49af-a296-4c546ccb405a\", \"organization\": \"daeaa7af-d442-43a8-a049-3b77e2e4e24a\", \"registration_no\": \"WPI 11020201\"}}]", "object_repr": "Albert Oostenbrink - Pump Installer"}}, {"model": "reversion.version", "pk": 1308, "fields": {"revision": 1183, "object_id": "daeaa7af-d442-43a8-a049-3b77e2e4e24a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"daeaa7af-d442-43a8-a049-3b77e2e4e24a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Peters Well Drilling Ltd.\", \"street_address\": \"44160 Yale Road West\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 3Z9\", \"main_tel\": \"(604) 819-9355\", \"fax_tel\": \"(604) 792-6886\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Peters Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1309, "fields": {"revision": 1184, "object_id": "43367549-ce46-48c6-9e79-af380d2d5c4e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"43367549-ce46-48c6-9e79-af380d2d5c4e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"75596b29-1c9d-4943-9fd8-6bb7f8cac8f4\", \"organization\": \"0212547a-cbca-483d-8e82-9b567460b03a\", \"registration_no\": \"WPI 13030701\"}}]", "object_repr": "Dave Kuyek - Pump Installer"}}, {"model": "reversion.version", "pk": 1310, "fields": {"revision": 1184, "object_id": "0212547a-cbca-483d-8e82-9b567460b03a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0212547a-cbca-483d-8e82-9b567460b03a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bridge Lake Electric Ltd.\", \"street_address\": \"7556 Mickelson Road\", \"city\": \"Lone Butte\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1X1\", \"main_tel\": \"(250) 593-4498\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bridge Lake Electric Ltd."}}, {"model": "reversion.version", "pk": 1311, "fields": {"revision": 1185, "object_id": "436e24e3-34d1-4c89-abab-0e1414ed32a4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"436e24e3-34d1-4c89-abab-0e1414ed32a4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b2381293-d9ed-4964-911f-bee70fc9027b\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 05062304\"}}]", "object_repr": "Darcy Stead - Well Driller"}}, {"model": "reversion.version", "pk": 1312, "fields": {"revision": 1185, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1313, "fields": {"revision": 1186, "object_id": "43ebd7da-5a0b-4b35-aabf-5c5eadc484a5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"43ebd7da-5a0b-4b35-aabf-5c5eadc484a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9843e57a-8ec6-48fd-8c9e-e456906c3f79\", \"organization\": \"721f3ef1-578a-4e21-b8ee-32b77159c487\", \"registration_no\": \"WPI 13061901\"}}]", "object_repr": "Arlyn Burfoot - Pump Installer"}}, {"model": "reversion.version", "pk": 1314, "fields": {"revision": 1186, "object_id": "721f3ef1-578a-4e21-b8ee-32b77159c487", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"721f3ef1-578a-4e21-b8ee-32b77159c487\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Jayco Plumbing Ltd.\", \"street_address\": \"Box 1955\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E0\", \"main_tel\": \"(250) 395-3488\", \"fax_tel\": \"(250) 395-4710\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Jayco Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1315, "fields": {"revision": 1187, "object_id": "445ad606-b9c8-4c45-8842-e1e8eafa7c05", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"445ad606-b9c8-4c45-8842-e1e8eafa7c05\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a5f315a0-4547-497d-b118-55ee1daa39ad\", \"organization\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"registration_no\": \"WD 05100501\"}}]", "object_repr": "George Paterson - Well Driller"}}, {"model": "reversion.version", "pk": 1316, "fields": {"revision": 1187, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 1317, "fields": {"revision": 1188, "object_id": "44a2527f-7f8f-4f9b-a168-1375953a2d82", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"44a2527f-7f8f-4f9b-a168-1375953a2d82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3f5c5195-a61f-4fa0-8704-7ed0e13e2a63\", \"organization\": \"b654742d-d3f4-48c5-a15c-7f467854fbc2\", \"registration_no\": \"WPI 06102505\"}}]", "object_repr": "Martin Weflen - Pump Installer"}}, {"model": "reversion.version", "pk": 1318, "fields": {"revision": 1188, "object_id": "b654742d-d3f4-48c5-a15c-7f467854fbc2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b654742d-d3f4-48c5-a15c-7f467854fbc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Marty's Plumbing\", \"street_address\": \"1813 Northfield Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9S 3B4\", \"main_tel\": \"(250) 741-4091\", \"fax_tel\": \"(250) 756-3049\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Marty's Plumbing"}}, {"model": "reversion.version", "pk": 1319, "fields": {"revision": 1189, "object_id": "44b6be8c-0c09-41fb-8f4b-65c7041132bf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"44b6be8c-0c09-41fb-8f4b-65c7041132bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"44780408-a469-47b1-8d00-8eb985b10435\", \"organization\": \"456498be-243b-48f7-8845-103b8d9a82a8\", \"registration_no\": \"WD 06100501\"}}]", "object_repr": "Jeffrey Bochek - Well Driller"}}, {"model": "reversion.version", "pk": 1320, "fields": {"revision": 1189, "object_id": "456498be-243b-48f7-8845-103b8d9a82a8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"456498be-243b-48f7-8845-103b8d9a82a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud's Water Wells Ltd.\", \"street_address\": \"Box 3276\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-3000\", \"fax_tel\": \"(250) 679-8423\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud's Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1321, "fields": {"revision": 1190, "object_id": "46df5644-a0d1-4735-9f7d-281d65af8607", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"46df5644-a0d1-4735-9f7d-281d65af8607\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"32eb4017-299e-403a-8f4b-3c06e992793d\", \"organization\": \"b43728b0-670a-4533-b038-3f12d4a7d9c8\", \"registration_no\": \"WD 16111601\"}}]", "object_repr": "Craig Wynn - Well Driller"}}, {"model": "reversion.version", "pk": 1322, "fields": {"revision": 1190, "object_id": "b43728b0-670a-4533-b038-3f12d4a7d9c8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b43728b0-670a-4533-b038-3f12d4a7d9c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Clear Blue Water Systems Ltd.\", \"street_address\": \"PO Box 148\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3737\", \"fax_tel\": \"(250) 827-3701\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Clear Blue Water Systems Ltd."}}, {"model": "reversion.version", "pk": 1323, "fields": {"revision": 1191, "object_id": "46f089d2-f74e-45d6-a716-d15c7ccbb707", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"46f089d2-f74e-45d6-a716-d15c7ccbb707\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0e7b8596-dea2-4e64-b032-bba50e152cad\", \"organization\": \"421aaac5-8de3-495c-90c7-7ee009fc73ed\", \"registration_no\": \"WPI 06101808\"}}]", "object_repr": "Michael Meier - Pump Installer"}}, {"model": "reversion.version", "pk": 1324, "fields": {"revision": 1191, "object_id": "421aaac5-8de3-495c-90c7-7ee009fc73ed", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"421aaac5-8de3-495c-90c7-7ee009fc73ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Muth & Sons Ltd.\", \"street_address\": \"23985 Lougheed Highway\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1W1\", \"main_tel\": \"(604) 467-5571\", \"fax_tel\": \"(604) 467-5152\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Muth & Sons Ltd."}}, {"model": "reversion.version", "pk": 1325, "fields": {"revision": 1192, "object_id": "46fe3dfb-16f7-4028-985c-dee8a6af3eb5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"46fe3dfb-16f7-4028-985c-dee8a6af3eb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d506b902-3547-47b5-822c-99babbf5b121\", \"organization\": \"915276cd-8273-4586-8fad-10cc194c1ebf\", \"registration_no\": \"WPI 05121302\"}}]", "object_repr": "Norm Coffey - Pump Installer"}}, {"model": "reversion.version", "pk": 1326, "fields": {"revision": 1192, "object_id": "915276cd-8273-4586-8fad-10cc194c1ebf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"915276cd-8273-4586-8fad-10cc194c1ebf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Vortex Pump & Water Services Ltd.\", \"street_address\": \"RR#1, Site 32, Comp 9\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-6157\", \"fax_tel\": \"(250) 497-6257\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Vortex Pump & Water Services Ltd."}}, {"model": "reversion.version", "pk": 1327, "fields": {"revision": 1193, "object_id": "473bff11-a064-48a5-b3c0-ce7726d7c0dc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"473bff11-a064-48a5-b3c0-ce7726d7c0dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7c7a9300-e75c-4a9c-bef2-3b7b2b74f95a\", \"organization\": null, \"registration_no\": \"WPI 06103012\"}}]", "object_repr": "Gary Wilkins - Pump Installer"}}, {"model": "reversion.version", "pk": 1328, "fields": {"revision": 1194, "object_id": "47aa05d7-0398-400d-8cce-059980afff8d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"47aa05d7-0398-400d-8cce-059980afff8d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"790dafe7-2a80-485a-807d-aa58b9cecbda\", \"organization\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"registration_no\": \"WD 05081901\"}}]", "object_repr": "William Williams - Well Driller"}}, {"model": "reversion.version", "pk": 1329, "fields": {"revision": 1194, "object_id": "bfeec089-e2bd-4828-b18f-eed4f16d86ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 228-5553\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1330, "fields": {"revision": 1195, "object_id": "4867fc80-7fb9-4193-9ba4-bcb5d6db2b97", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4867fc80-7fb9-4193-9ba4-bcb5d6db2b97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b6d47e6b-391f-43d2-a29d-cf48bc0ab81c\", \"organization\": \"c345fb2e-8fa8-4250-956f-f04c907ba403\", \"registration_no\": \"WD 08100701\"}}]", "object_repr": "Rick G. France - Well Driller"}}, {"model": "reversion.version", "pk": 1331, "fields": {"revision": 1195, "object_id": "c345fb2e-8fa8-4250-956f-f04c907ba403", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c345fb2e-8fa8-4250-956f-f04c907ba403\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kootenay Well Service\", \"street_address\": \"714 Wycliffe Park Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1L 7C3\", \"main_tel\": \"(250) 489-1179\", \"fax_tel\": \"(250) 489-1379\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kootenay Well Service"}}, {"model": "reversion.version", "pk": 1332, "fields": {"revision": 1196, "object_id": "4889d754-b015-4cd5-afeb-f2db0dfc849d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4889d754-b015-4cd5-afeb-f2db0dfc849d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ca735d5d-72a5-4004-98d4-62e2b82848a6\", \"organization\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"registration_no\": \"WPI 05032901\"}}]", "object_repr": "Lloyd Riehl - Pump Installer"}}, {"model": "reversion.version", "pk": 1333, "fields": {"revision": 1196, "object_id": "fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Industrial Drillers Ltd.\", \"street_address\": \"16950 Hart Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5T1\", \"main_tel\": \"(250) 971-2422\", \"fax_tel\": \"(250) 971-2207\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Industrial Drillers Ltd."}}, {"model": "reversion.version", "pk": 1334, "fields": {"revision": 1197, "object_id": "48fc9477-1bec-44d4-aef5-9cc11d5ec336", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"48fc9477-1bec-44d4-aef5-9cc11d5ec336\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e7284719-bc72-4734-bcbf-f16fc0868656\", \"organization\": \"0dd51008-5afd-408f-9b3c-23179fb0322e\", \"registration_no\": \"WPI 10110101\"}}]", "object_repr": "Dan Evans - Pump Installer"}}, {"model": "reversion.version", "pk": 1335, "fields": {"revision": 1197, "object_id": "0dd51008-5afd-408f-9b3c-23179fb0322e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0dd51008-5afd-408f-9b3c-23179fb0322e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quality Water Well Service\", \"street_address\": \"6659 Topaz Rd\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1H 1N8\", \"main_tel\": \"(250) 540-2085\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quality Water Well Service"}}, {"model": "reversion.version", "pk": 1336, "fields": {"revision": 1198, "object_id": "4939f381-6b36-43b7-8e83-d48bb3c13f50", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4939f381-6b36-43b7-8e83-d48bb3c13f50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"4f4fd3ee-9363-42d5-a669-65d7a1bf5844\", \"organization\": \"0589bfb0-2212-42c0-8ae7-458b0c004f87\", \"registration_no\": \"WPI 06103110\"}}]", "object_repr": "Glen Wilson - Pump Installer"}}, {"model": "reversion.version", "pk": 1337, "fields": {"revision": 1198, "object_id": "0589bfb0-2212-42c0-8ae7-458b0c004f87", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0589bfb0-2212-42c0-8ae7-458b0c004f87\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Glen Frederick Wilson\", \"street_address\": \"210 Old Divide Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2G7\", \"main_tel\": \"(250) 539-5132\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Glen Frederick Wilson"}}, {"model": "reversion.version", "pk": 1338, "fields": {"revision": 1199, "object_id": "49714287-fef5-4d83-aa21-d309f6f8caaf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"49714287-fef5-4d83-aa21-d309f6f8caaf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"518edfd5-d459-437a-b94a-803029de406f\", \"organization\": \"1255282c-2872-4b56-b10b-3f8b245df380\", \"registration_no\": \"WPI 05030801\"}}]", "object_repr": "John Bourk - Pump Installer"}}, {"model": "reversion.version", "pk": 1339, "fields": {"revision": 1199, "object_id": "1255282c-2872-4b56-b10b-3f8b245df380", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1255282c-2872-4b56-b10b-3f8b245df380\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sun Waterwell Testing 546347 BC Ltd.\", \"street_address\": \"1581 - 16th Avenue S.E.\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2M7\", \"main_tel\": \"(250) 832-3742\", \"fax_tel\": \"(250) 832-3725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sun Waterwell Testing 546347 BC Ltd."}}, {"model": "reversion.version", "pk": 1340, "fields": {"revision": 1200, "object_id": "49c91f6c-6cb1-4f5f-aa5e-8cfa0f18e765", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"49c91f6c-6cb1-4f5f-aa5e-8cfa0f18e765\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"341e8007-18c2-40eb-9518-1933ef23aef9\", \"organization\": null, \"registration_no\": \"WPI 06022606\"}}]", "object_repr": "Al Schaeffer - Pump Installer"}}, {"model": "reversion.version", "pk": 1341, "fields": {"revision": 1201, "object_id": "4a4a61dd-a44d-4395-8686-1eb8fe434459", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4a4a61dd-a44d-4395-8686-1eb8fe434459\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7a25eac9-ec93-40e0-8fc3-eaf79488a8f5\", \"organization\": \"9c2ea8cc-ea9a-4bdc-a532-7c3cc7f0b39a\", \"registration_no\": \"WD 06103107\"}}]", "object_repr": "Clarence Moberg - Well Driller"}}, {"model": "reversion.version", "pk": 1342, "fields": {"revision": 1201, "object_id": "9c2ea8cc-ea9a-4bdc-a532-7c3cc7f0b39a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9c2ea8cc-ea9a-4bdc-a532-7c3cc7f0b39a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Moberg Drilling\", \"street_address\": \"Box 1635\", \"city\": \"Fort St. James\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1P0\", \"main_tel\": \"(250) 640-6155\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Moberg Drilling"}}, {"model": "reversion.version", "pk": 1343, "fields": {"revision": 1202, "object_id": "4a65e1c7-a6c1-4b67-8ae2-abf604dbe7b0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4a65e1c7-a6c1-4b67-8ae2-abf604dbe7b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c15c0bae-7dfd-4710-a7a5-b079209906ed\", \"organization\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"registration_no\": \"WD 06011003\"}}]", "object_repr": "John L'Henaff - Well Driller"}}, {"model": "reversion.version", "pk": 1344, "fields": {"revision": 1202, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 1345, "fields": {"revision": 1203, "object_id": "4b8d6657-0833-4b50-9494-8960d1a85c7e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4b8d6657-0833-4b50-9494-8960d1a85c7e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"00bb67d0-359c-45c8-84b7-1ad60b24728b\", \"organization\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"registration_no\": \"WD 06052901\"}}]", "object_repr": "Darrin Grafton - Well Driller"}}, {"model": "reversion.version", "pk": 1346, "fields": {"revision": 1203, "object_id": "2a61e133-61e6-4759-8c63-82a66c4fb9d7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Well Drilling (2000) Ltd.\", \"street_address\": \"4960 Topland Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5Y2\", \"main_tel\": \"(250) 338-5113\", \"fax_tel\": \"(250) 338-5199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Well Drilling (2000) Ltd."}}, {"model": "reversion.version", "pk": 1347, "fields": {"revision": 1204, "object_id": "4bdf54e7-697d-4f5a-8089-6b9444523e3d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4bdf54e7-697d-4f5a-8089-6b9444523e3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"750d1aa4-ef75-4357-967c-68f6c1a4ff04\", \"organization\": \"3e633335-9441-4da9-a386-fa641773fdca\", \"registration_no\": \"WPI 11050301\"}}]", "object_repr": "Sean Shingler - Pump Installer"}}, {"model": "reversion.version", "pk": 1348, "fields": {"revision": 1204, "object_id": "3e633335-9441-4da9-a386-fa641773fdca", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3e633335-9441-4da9-a386-fa641773fdca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A Tech Pumps\", \"street_address\": \"10535 Christa Place\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5E6\", \"main_tel\": \"(250) 963-8788\", \"fax_tel\": \"(250) 963-8799\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A Tech Pumps"}}, {"model": "reversion.version", "pk": 1349, "fields": {"revision": 1205, "object_id": "4cfc10fa-e282-4a64-bc39-c090c2924805", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4cfc10fa-e282-4a64-bc39-c090c2924805\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5860d4b7-ab0b-43bd-b8dd-b62837b0e863\", \"organization\": \"3a7f0c17-e81f-40ca-a382-91f75b7305fe\", \"registration_no\": \"WPI 06012503\"}}]", "object_repr": "Dale Lamont - Pump Installer"}}, {"model": "reversion.version", "pk": 1350, "fields": {"revision": 1205, "object_id": "3a7f0c17-e81f-40ca-a382-91f75b7305fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3a7f0c17-e81f-40ca-a382-91f75b7305fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua-Tech Pump Service\", \"street_address\": \"663 East Fern Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1M4\", \"main_tel\": \"(250) 752-0346\", \"fax_tel\": \"(250) 752-0346\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua-Tech Pump Service"}}, {"model": "reversion.version", "pk": 1351, "fields": {"revision": 1206, "object_id": "4e753044-4cba-4447-951f-e37d5327c41f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4e753044-4cba-4447-951f-e37d5327c41f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"cd8c8cc8-efca-4178-9a02-a539bb35168e\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 06100505\"}}]", "object_repr": "Dale VanDam - Well Driller"}}, {"model": "reversion.version", "pk": 1352, "fields": {"revision": 1206, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1353, "fields": {"revision": 1207, "object_id": "4e7a2e25-bd12-4978-a1be-10979948d9e5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4e7a2e25-bd12-4978-a1be-10979948d9e5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0746fe32-cd9c-40b8-ba6a-4d79cf53427c\", \"organization\": \"c701408f-ce39-477b-aad5-4805854e2a43\", \"registration_no\": \"WPI 06091301\"}}]", "object_repr": "John Vanderkemp - Pump Installer"}}, {"model": "reversion.version", "pk": 1354, "fields": {"revision": 1207, "object_id": "c701408f-ce39-477b-aad5-4805854e2a43", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c701408f-ce39-477b-aad5-4805854e2a43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Vanderkemp Sales & Service Ltd.\", \"street_address\": \"RR#1 - 7408 Hwy 101\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 4Z2\", \"main_tel\": \"(604) 485-9774\", \"fax_tel\": \"(604) 485-9717\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Vanderkemp Sales & Service Ltd."}}, {"model": "reversion.version", "pk": 1355, "fields": {"revision": 1208, "object_id": "4e7d924f-b17c-461f-8a1e-e73028595984", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4e7d924f-b17c-461f-8a1e-e73028595984\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"85b4d0ae-3481-46e7-a1ca-7bd02db38e3c\", \"organization\": \"501882cf-200b-49c6-a503-279d771abb30\", \"registration_no\": \"WPI 06032805\"}}]", "object_repr": "Gary Hungle - Pump Installer"}}, {"model": "reversion.version", "pk": 1356, "fields": {"revision": 1208, "object_id": "501882cf-200b-49c6-a503-279d771abb30", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"501882cf-200b-49c6-a503-279d771abb30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"South Island Water Services\", \"street_address\": \"Box 299\", \"city\": \"Shawnigan Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2W0\", \"main_tel\": \"(250) 743-7931\", \"fax_tel\": \"(250) 743-7932\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "South Island Water Services"}}, {"model": "reversion.version", "pk": 1357, "fields": {"revision": 1209, "object_id": "4e98c4be-9a6d-4af5-8ceb-026e650e9694", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4e98c4be-9a6d-4af5-8ceb-026e650e9694\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"08a6dd4d-d09a-4ff3-a7f1-646a3052f969\", \"organization\": \"7b1817ac-466b-4d64-98ff-01c49db0ef43\", \"registration_no\": \"WD 06072401\"}}]", "object_repr": "Jerry LaBrie - Well Driller"}}, {"model": "reversion.version", "pk": 1358, "fields": {"revision": 1209, "object_id": "7b1817ac-466b-4d64-98ff-01c49db0ef43", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7b1817ac-466b-4d64-98ff-01c49db0ef43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kamloops Water Wells\", \"street_address\": \"623 Holt Street\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2B 5G2\", \"main_tel\": \"(250) 376-9483\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kamloops Water Wells"}}, {"model": "reversion.version", "pk": 1359, "fields": {"revision": 1210, "object_id": "4f00590a-41e9-4f7b-a4ec-b0b7e0d97978", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4f00590a-41e9-4f7b-a4ec-b0b7e0d97978\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d6dca31d-c5cc-4fa2-98d4-a530572755f2\", \"organization\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"registration_no\": \"WD 06101301\"}}]", "object_repr": "Glen Fyfe - Well Driller"}}, {"model": "reversion.version", "pk": 1360, "fields": {"revision": 1210, "object_id": "4287eb48-5a40-4ce1-a139-dab36bdbef27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Well Drilling Ltd.\", \"street_address\": \"3331 Alberni Highway\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y5\", \"main_tel\": \"(250) 752-9358\", \"fax_tel\": \"(250) 752-1274\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1361, "fields": {"revision": 1211, "object_id": "4f7321b0-97e3-4ebd-8e9d-0f11d561f525", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"4f7321b0-97e3-4ebd-8e9d-0f11d561f525\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"0ac1e04a-ce14-436e-8be4-9a7ef563b653\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 11110201\"}}]", "object_repr": "John Cameron - Well Driller"}}, {"model": "reversion.version", "pk": 1362, "fields": {"revision": 1211, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1363, "fields": {"revision": 1212, "object_id": "508af7ac-5bd0-48c9-adaa-dffa30832eb4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"508af7ac-5bd0-48c9-adaa-dffa30832eb4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5ccbb066-78e5-4497-a86c-232ae55ee760\", \"organization\": \"e8319f06-833d-4486-9d91-3f1cc5ca657b\", \"registration_no\": \"WPI 06102401\"}}]", "object_repr": "Douglas Borrill - Pump Installer"}}, {"model": "reversion.version", "pk": 1364, "fields": {"revision": 1212, "object_id": "e8319f06-833d-4486-9d91-3f1cc5ca657b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e8319f06-833d-4486-9d91-3f1cc5ca657b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D. Borrill Electric\", \"street_address\": \"Box 1049\", \"city\": \"Barriere\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1E0\", \"main_tel\": \"(250) 672-9852\", \"fax_tel\": \"(250) 672-9853\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D. Borrill Electric"}}, {"model": "reversion.version", "pk": 1365, "fields": {"revision": 1213, "object_id": "50a8bb50-58e7-47be-a7fa-6949fb99200f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"50a8bb50-58e7-47be-a7fa-6949fb99200f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1095f64b-6836-4b2a-a1a9-308542667551\", \"organization\": \"fe10a4b5-0fb7-411f-8fcb-e9a8b79149f5\", \"registration_no\": \"WPI 13042401\"}}]", "object_repr": "Wesley Mulvin - Pump Installer"}}, {"model": "reversion.version", "pk": 1366, "fields": {"revision": 1213, "object_id": "fe10a4b5-0fb7-411f-8fcb-e9a8b79149f5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe10a4b5-0fb7-411f-8fcb-e9a8b79149f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Southern Gulf Island Electric Ltd.\", \"street_address\": \"#35 3031 Williams Road\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V7E 1H9\", \"main_tel\": \"(250) 539-5859\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Southern Gulf Island Electric Ltd."}}, {"model": "reversion.version", "pk": 1367, "fields": {"revision": 1214, "object_id": "50f6b009-bf1d-4cee-afa6-b4e1d918ce27", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"50f6b009-bf1d-4cee-afa6-b4e1d918ce27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"73ca9dc0-522f-42e0-b4c2-bf29eefb2bfb\", \"organization\": \"845e5120-8ac5-4b9b-a988-faa55ccc774d\", \"registration_no\": \"WD 11111401\"}}]", "object_repr": "Harry Oussoren - Well Driller"}}, {"model": "reversion.version", "pk": 1368, "fields": {"revision": 1214, "object_id": "845e5120-8ac5-4b9b-a988-faa55ccc774d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"845e5120-8ac5-4b9b-a988-faa55ccc774d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Insitu Contractors Inc.\", \"street_address\": \"48 Dawson Road\", \"city\": \"Guelph\", \"province_state\": \"ON\", \"postal_code\": \"N1H 5V1\", \"main_tel\": \"(519) 763-0700\", \"fax_tel\": \"(519) 763-6684\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Insitu Contractors Inc."}}, {"model": "reversion.version", "pk": 1369, "fields": {"revision": 1215, "object_id": "51c83b04-bf88-461a-8792-3ce433d62a72", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"51c83b04-bf88-461a-8792-3ce433d62a72\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d6cd00de-284f-46aa-a6a1-ee458d56a1ec\", \"organization\": \"4ed337ef-bb48-4033-8729-d498fdc88773\", \"registration_no\": \"WPI 05101103\"}}]", "object_repr": "Brian Widdows - Pump Installer"}}, {"model": "reversion.version", "pk": 1370, "fields": {"revision": 1215, "object_id": "4ed337ef-bb48-4033-8729-d498fdc88773", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4ed337ef-bb48-4033-8729-d498fdc88773\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"BWCO\", \"street_address\": \"RR#1, Site 3, Comp 29\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-5844\", \"fax_tel\": \"(250) 539-5843\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "BWCO"}}, {"model": "reversion.version", "pk": 1371, "fields": {"revision": 1216, "object_id": "52740c7b-b06a-44ad-85fc-1700624a9e7b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"52740c7b-b06a-44ad-85fc-1700624a9e7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"323bf8f1-4d9c-4ed5-bfe6-61f8198c5a53\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WPI 09021001\"}}]", "object_repr": "Todd Carter - Pump Installer"}}, {"model": "reversion.version", "pk": 1372, "fields": {"revision": 1216, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1373, "fields": {"revision": 1217, "object_id": "528d10eb-c15b-4fc4-b3a2-5030910e19c4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"528d10eb-c15b-4fc4-b3a2-5030910e19c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0a945ebb-0c86-461a-9a54-ab5cd4cf53e8\", \"organization\": \"832f2fe0-fc16-4a1e-977f-089c7a0288cf\", \"registration_no\": \"WPI 05090701\"}}]", "object_repr": "Chuck Hagan - Pump Installer"}}, {"model": "reversion.version", "pk": 1374, "fields": {"revision": 1217, "object_id": "832f2fe0-fc16-4a1e-977f-089c7a0288cf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"832f2fe0-fc16-4a1e-977f-089c7a0288cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gulf Island Pumps\", \"street_address\": \"RR#1, Site 1, Comp 22\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2222\", \"fax_tel\": \"(250) 539-2222\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gulf Island Pumps"}}, {"model": "reversion.version", "pk": 1375, "fields": {"revision": 1218, "object_id": "52a90bb8-337e-432a-9b9f-76cdbad83bec", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"52a90bb8-337e-432a-9b9f-76cdbad83bec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8cf8daf6-d2ec-4a25-956c-7cd5170506e6\", \"organization\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"registration_no\": \"WPI 05090702\"}}]", "object_repr": "Randy MacDonald - Pump Installer"}}, {"model": "reversion.version", "pk": 1376, "fields": {"revision": 1218, "object_id": "e9a3778c-0bc6-400c-a582-5a72f910f763", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Pump Service Ltd.\", \"street_address\": \"1139A Industrial Road #3\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 5E3\", \"main_tel\": \"(250) 426-4069\", \"fax_tel\": \"(250) 426-8425\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Pump Service Ltd."}}, {"model": "reversion.version", "pk": 1377, "fields": {"revision": 1219, "object_id": "52c3cc91-2b35-4ba1-a31c-d19b4797f270", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"52c3cc91-2b35-4ba1-a31c-d19b4797f270\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c8ec66df-f1ef-48c8-9c8e-8b5b1678de52\", \"organization\": null, \"registration_no\": \"WPI 05011404\"}}]", "object_repr": "Jerry Heal - Pump Installer"}}, {"model": "reversion.version", "pk": 1378, "fields": {"revision": 1220, "object_id": "53033840-8565-4a85-a4d1-faf75e9037c7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"53033840-8565-4a85-a4d1-faf75e9037c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ed4adde4-9aae-4efa-9040-2e50cdd6250a\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06102301\"}}]", "object_repr": "Paul Breadon - Well Driller"}}, {"model": "reversion.version", "pk": 1379, "fields": {"revision": 1220, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1380, "fields": {"revision": 1221, "object_id": "532de9fd-1ff1-4ce8-81f8-7d150bb9a11f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"532de9fd-1ff1-4ce8-81f8-7d150bb9a11f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"88affdf1-3183-48fb-830e-5dabe0277e8e\", \"organization\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"registration_no\": \"WD 08050501\"}}]", "object_repr": "Timothy Hoechsmann - Well Driller"}}, {"model": "reversion.version", "pk": 1381, "fields": {"revision": 1221, "object_id": "e3512ffd-f5aa-4757-bccd-592e9ecc7600", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Owen's Drilling Ltd.\", \"street_address\": \"Box 730, 541 Industrial Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J5\", \"main_tel\": \"(250) 426-2455\", \"fax_tel\": \"(250) 427-7419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Owen's Drilling Ltd."}}, {"model": "reversion.version", "pk": 1382, "fields": {"revision": 1222, "object_id": "535e602f-fd6f-43a8-a54c-933038132530", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"535e602f-fd6f-43a8-a54c-933038132530\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"67575c92-f5b7-4d6d-a360-66a876655560\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101308\"}}]", "object_repr": "Ed Fulop - Well Driller"}}, {"model": "reversion.version", "pk": 1383, "fields": {"revision": 1222, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1384, "fields": {"revision": 1223, "object_id": "53e57470-bf5c-4a41-9b5e-32f9a1086e7b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"53e57470-bf5c-4a41-9b5e-32f9a1086e7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7dd0e13c-bbb0-475a-9b1c-6aa3ff3cdd99\", \"organization\": \"35b2e466-eb94-4534-8020-5a8ca207b534\", \"registration_no\": \"WPI 06101901\"}}]", "object_repr": "Mitch Forster - Pump Installer"}}, {"model": "reversion.version", "pk": 1385, "fields": {"revision": 1223, "object_id": "35b2e466-eb94-4534-8020-5a8ca207b534", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"35b2e466-eb94-4534-8020-5a8ca207b534\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Frontier Pumps & Installations Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Frontier Pumps & Installations Ltd."}}, {"model": "reversion.version", "pk": 1386, "fields": {"revision": 1224, "object_id": "54763e20-8805-4eec-b7e2-a88917d20012", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"54763e20-8805-4eec-b7e2-a88917d20012\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"4bd8a9d6-f651-457e-bf6a-6cac4d588abe\", \"organization\": \"01fedb09-f90c-45da-af49-eeda149ed446\", \"registration_no\": \"WD 05081601\"}}]", "object_repr": "Allan Jacobson - Well Driller"}}, {"model": "reversion.version", "pk": 1387, "fields": {"revision": 1224, "object_id": "01fedb09-f90c-45da-af49-eeda149ed446", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01fedb09-f90c-45da-af49-eeda149ed446\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alkan Water Well Drilling\", \"street_address\": \"Box 55\", \"city\": \"Tata Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0B 2H0\", \"main_tel\": \"(250) 422-3710\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alkan Water Well Drilling"}}, {"model": "reversion.version", "pk": 1388, "fields": {"revision": 1225, "object_id": "54ba45af-3130-41db-a405-7a5004314389", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"54ba45af-3130-41db-a405-7a5004314389\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7ff3ec00-f2d9-424f-8fbb-7c3b7f287de6\", \"organization\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"registration_no\": \"WPI 05052901\"}}]", "object_repr": "Tim Warden - Pump Installer"}}, {"model": "reversion.version", "pk": 1389, "fields": {"revision": 1225, "object_id": "337332e9-d832-4384-be7f-a06b87edee06", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Delta Irrigation Ltd.\", \"street_address\": \"444 Chilcotin Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1G3\", \"main_tel\": \"(250) 372-9424\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Delta Irrigation Ltd."}}, {"model": "reversion.version", "pk": 1390, "fields": {"revision": 1226, "object_id": "5547c092-0e79-40d3-b095-a93f62c96220", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5547c092-0e79-40d3-b095-a93f62c96220\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"00bb67d0-359c-45c8-84b7-1ad60b24728b\", \"organization\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"registration_no\": \"WPI 06060201\"}}]", "object_repr": "Darrin Grafton - Pump Installer"}}, {"model": "reversion.version", "pk": 1391, "fields": {"revision": 1226, "object_id": "2a61e133-61e6-4759-8c63-82a66c4fb9d7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Well Drilling (2000) Ltd.\", \"street_address\": \"4960 Topland Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5Y2\", \"main_tel\": \"(250) 338-5113\", \"fax_tel\": \"(250) 338-5199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Well Drilling (2000) Ltd."}}, {"model": "reversion.version", "pk": 1392, "fields": {"revision": 1227, "object_id": "55f6e36b-5c69-4ea6-9dc0-953860a60c0e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"55f6e36b-5c69-4ea6-9dc0-953860a60c0e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6c2b4814-3222-4af7-b62f-e416ee44937d\", \"organization\": \"dd8d0b72-e8c9-471a-97d3-acd5da9f358d\", \"registration_no\": \"WD 17081801\"}}]", "object_repr": "Matthew Randall - Well Driller"}}, {"model": "reversion.version", "pk": 1393, "fields": {"revision": 1227, "object_id": "dd8d0b72-e8c9-471a-97d3-acd5da9f358d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dd8d0b72-e8c9-471a-97d3-acd5da9f358d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wild West Water Wells & Pump Service\", \"street_address\": \"1063 Simmons Road\", \"city\": \"Creston\", \"province_state\": \"BC\", \"postal_code\": \"V0B 1G7\", \"main_tel\": \"(250) 428-0137\", \"fax_tel\": \"(403) 912-7898\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wild West Water Wells & Pump Service"}}, {"model": "reversion.version", "pk": 1394, "fields": {"revision": 1228, "object_id": "563ac9c6-14ef-43cc-a4dc-c05a4a57f3d2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"563ac9c6-14ef-43cc-a4dc-c05a4a57f3d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"eea5a18b-7e0e-4f9c-bd8e-af88002d3c04\", \"organization\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"registration_no\": \"WPI 05030101\"}}]", "object_repr": "Randall Kashmark - Pump Installer"}}, {"model": "reversion.version", "pk": 1395, "fields": {"revision": 1228, "object_id": "5e375c99-81af-4095-965b-8e40f8608451", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"B.K. Woods & Water Supplies Ltd.\", \"street_address\": \"9400 Cariboo Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E1\", \"main_tel\": \"(250) 963-1411\", \"fax_tel\": \"(250) 963-3236\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "B.K. Woods & Water Supplies Ltd."}}, {"model": "reversion.version", "pk": 1396, "fields": {"revision": 1229, "object_id": "5682c2d3-0d9e-4e3a-afb9-4a45cfe0e4fd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5682c2d3-0d9e-4e3a-afb9-4a45cfe0e4fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"94652521-bba7-43fa-a422-41d13f8672d3\", \"organization\": \"76f7a428-169b-4abd-9c9c-725cdc8e53dc\", \"registration_no\": \"WPI 06020101\"}}]", "object_repr": "Gerard Bourdin - Pump Installer"}}, {"model": "reversion.version", "pk": 1397, "fields": {"revision": 1229, "object_id": "76f7a428-169b-4abd-9c9c-725cdc8e53dc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"76f7a428-169b-4abd-9c9c-725cdc8e53dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Streamline Plumbing Ltd.\", \"street_address\": \"1650 Fulford Ganges Road\", \"city\": \"Saltspring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2A8\", \"main_tel\": \"(250) 653-2026\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Streamline Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1398, "fields": {"revision": 1230, "object_id": "569b64a9-e45b-41ec-a4bd-b6651dd503e6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"569b64a9-e45b-41ec-a4bd-b6651dd503e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"3d65825a-580b-4dbc-b707-7534c9f7e1db\", \"organization\": \"743f6b1a-af52-4b40-b296-35f7522fdd9b\", \"registration_no\": \"WD 10102601\"}}]", "object_repr": "Ryan Gardiner - Well Driller"}}, {"model": "reversion.version", "pk": 1399, "fields": {"revision": 1230, "object_id": "743f6b1a-af52-4b40-b296-35f7522fdd9b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"743f6b1a-af52-4b40-b296-35f7522fdd9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Waterwell Drilling Inc\", \"street_address\": \"#12 - 2095 Boucherie Road\", \"city\": \"Westbank\", \"province_state\": \"BC\", \"postal_code\": \"V4T 1Z4\", \"main_tel\": \"(250) 212-9698\", \"fax_tel\": \"(250) 754-0061\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Waterwell Drilling Inc"}}, {"model": "reversion.version", "pk": 1400, "fields": {"revision": 1231, "object_id": "56bb7b48-8a4a-4509-8511-af0ebef5ab3a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"56bb7b48-8a4a-4509-8511-af0ebef5ab3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"47d048d6-c8ae-46ad-8ec6-1da792d60ae3\", \"organization\": \"f4426285-d3d8-4a7e-8f26-5b044fe9a01c\", \"registration_no\": \"WPI 06103009\"}}]", "object_repr": "Chance L'Heureux - Pump Installer"}}, {"model": "reversion.version", "pk": 1401, "fields": {"revision": 1231, "object_id": "f4426285-d3d8-4a7e-8f26-5b044fe9a01c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f4426285-d3d8-4a7e-8f26-5b044fe9a01c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Blaeberry Valley Plumbing Ltd.\", \"street_address\": \"Box 69\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H0\", \"main_tel\": \"(250) 344-7209\", \"fax_tel\": \"(250) 344-7209\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Blaeberry Valley Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1402, "fields": {"revision": 1232, "object_id": "5705bb0a-375e-4685-8e35-82cf91b9a0c0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5705bb0a-375e-4685-8e35-82cf91b9a0c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"268daf60-b6c4-4d20-a85c-0e6860597b38\", \"organization\": \"0d8b1858-e8a4-4a42-af1b-e6f7741602ac\", \"registration_no\": \"WPI 11020202\"}}]", "object_repr": "Craig Spooner - Pump Installer"}}, {"model": "reversion.version", "pk": 1403, "fields": {"revision": 1232, "object_id": "0d8b1858-e8a4-4a42-af1b-e6f7741602ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d8b1858-e8a4-4a42-af1b-e6f7741602ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Spooner Electric Ltd.\", \"street_address\": \"3079 Squilax-Anglemont Road\", \"city\": \"Lee Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1M4\", \"main_tel\": \"(250) 679-3655\", \"fax_tel\": \"(250) 679-3655\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Spooner Electric Ltd."}}, {"model": "reversion.version", "pk": 1404, "fields": {"revision": 1233, "object_id": "570e5a76-4eb0-4398-a981-b1699121b05d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"570e5a76-4eb0-4398-a981-b1699121b05d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8808718e-5492-4f4c-8ae5-b73d9d96e880\", \"organization\": \"3d29cc29-7c5e-46e3-88f8-a36a46039394\", \"registration_no\": \"WPI 18010801\"}}]", "object_repr": "Ryan MacRae - Pump Installer"}}, {"model": "reversion.version", "pk": 1405, "fields": {"revision": 1233, "object_id": "3d29cc29-7c5e-46e3-88f8-a36a46039394", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3d29cc29-7c5e-46e3-88f8-a36a46039394\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ketek Group Inc.\", \"street_address\": \"20204 - 110 Ave NW\", \"city\": \"Edmonton \", \"province_state\": \"AB\", \"postal_code\": \"T5S 1X8\", \"main_tel\": \"(780) 447-5050\", \"fax_tel\": \"(780) 447-4912\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ketek Group Inc."}}, {"model": "reversion.version", "pk": 1406, "fields": {"revision": 1234, "object_id": "573995fb-ac17-4b8a-97e1-7940389cbaa1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"573995fb-ac17-4b8a-97e1-7940389cbaa1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6d887d38-ee1f-43d8-8f69-ff65ca55bcad\", \"organization\": \"c623cf47-4fa1-4eb1-8caa-351625c8ff22\", \"registration_no\": \"WD 06103101\"}}]", "object_repr": "Troy Bumford - Well Driller"}}, {"model": "reversion.version", "pk": 1407, "fields": {"revision": 1234, "object_id": "c623cf47-4fa1-4eb1-8caa-351625c8ff22", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c623cf47-4fa1-4eb1-8caa-351625c8ff22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Municipal Utilities Central Ltd.\", \"street_address\": \"Cell: (306) 531-7821\", \"city\": \"Craven\", \"province_state\": \"SK\", \"postal_code\": null, \"main_tel\": \"(306) 249-2959\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Municipal Utilities Central Ltd."}}, {"model": "reversion.version", "pk": 1408, "fields": {"revision": 1235, "object_id": "5753bd73-42f6-40e7-a2c5-fa7d937307ea", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5753bd73-42f6-40e7-a2c5-fa7d937307ea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5ebed0fe-4351-4e8a-863e-16a2d7afa38f\", \"organization\": \"4962dc3b-9fd1-4127-ad65-4324f00ff876\", \"registration_no\": \"WPI 06103106\"}}]", "object_repr": "Peter Phinney - Pump Installer"}}, {"model": "reversion.version", "pk": 1409, "fields": {"revision": 1235, "object_id": "4962dc3b-9fd1-4127-ad65-4324f00ff876", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4962dc3b-9fd1-4127-ad65-4324f00ff876\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.C. Plumbing & Heating Ltd.\", \"street_address\": \"2960 McDonald Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X7\", \"main_tel\": \"(250) 247-7574\", \"fax_tel\": \"(250) 247-7574\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.C. Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 1410, "fields": {"revision": 1236, "object_id": "5795d911-f762-4224-86d3-cc0793147de5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5795d911-f762-4224-86d3-cc0793147de5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e04001e2-1f8c-41ee-9901-dc79de6b93bb\", \"organization\": \"d774d222-3ac1-4b9e-8207-ee66b54d6bdb\", \"registration_no\": \"WPI 05110805\"}}]", "object_repr": "Jon Williams - Pump Installer"}}, {"model": "reversion.version", "pk": 1411, "fields": {"revision": 1236, "object_id": "d774d222-3ac1-4b9e-8207-ee66b54d6bdb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d774d222-3ac1-4b9e-8207-ee66b54d6bdb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"ABC Water Systems Ltd.\", \"street_address\": \"9 - 2180 South Wellington Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9X 1V8\", \"main_tel\": \"(250) 753-3333\", \"fax_tel\": \"(250) 753-3364\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "ABC Water Systems Ltd."}}, {"model": "reversion.version", "pk": 1412, "fields": {"revision": 1237, "object_id": "57fe1507-2a5b-4e9b-b802-2a4eb9a13e79", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"57fe1507-2a5b-4e9b-b802-2a4eb9a13e79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d00568bd-614b-43f6-818b-4a1ed71f6565\", \"organization\": \"3ec3c865-2d86-426c-930e-21bf7d298216\", \"registration_no\": \"WPI 12032601\"}}]", "object_repr": "Ian Macdonald - Pump Installer"}}, {"model": "reversion.version", "pk": 1413, "fields": {"revision": 1237, "object_id": "3ec3c865-2d86-426c-930e-21bf7d298216", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ec3c865-2d86-426c-930e-21bf7d298216\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"The Pump House\", \"street_address\": \"#5-241 Puntledge Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 3P9\", \"main_tel\": \"(250) 338-8737\", \"fax_tel\": \"(250) 338-7933\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "The Pump House"}}, {"model": "reversion.version", "pk": 1414, "fields": {"revision": 1238, "object_id": "57ff647b-a321-4459-98b5-b637c0430719", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"57ff647b-a321-4459-98b5-b637c0430719\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"149277aa-1810-473c-9336-431ff7000c88\", \"organization\": \"554e3de3-fbaa-4559-a848-7ef3c2ad4cbd\", \"registration_no\": \"WD 06090605\"}}]", "object_repr": "Jim Murdock - Well Driller"}}, {"model": "reversion.version", "pk": 1415, "fields": {"revision": 1238, "object_id": "554e3de3-fbaa-4559-a848-7ef3c2ad4cbd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"554e3de3-fbaa-4559-a848-7ef3c2ad4cbd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd"}}, {"model": "reversion.version", "pk": 1416, "fields": {"revision": 1239, "object_id": "581dffed-be13-4a15-80b9-fab83aa39bee", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"581dffed-be13-4a15-80b9-fab83aa39bee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"19be35f8-e027-472d-bb97-f5d70fa02b62\", \"organization\": \"35b2e466-eb94-4534-8020-5a8ca207b534\", \"registration_no\": \"WPI 06042802\"}}]", "object_repr": "Merv Porteous - Pump Installer"}}, {"model": "reversion.version", "pk": 1417, "fields": {"revision": 1239, "object_id": "35b2e466-eb94-4534-8020-5a8ca207b534", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"35b2e466-eb94-4534-8020-5a8ca207b534\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Frontier Pumps & Installations Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Frontier Pumps & Installations Ltd."}}, {"model": "reversion.version", "pk": 1418, "fields": {"revision": 1240, "object_id": "58996b1d-86e4-4f86-99e8-0ea1d09bfac2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"58996b1d-86e4-4f86-99e8-0ea1d09bfac2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"05c2a674-b889-46dd-95f2-5d1fe96d6e87\", \"organization\": \"4aefc2c3-f875-42d1-b873-4b8ccb0b825f\", \"registration_no\": \"WPI 06103107\"}}]", "object_repr": "John Reed - Pump Installer"}}, {"model": "reversion.version", "pk": 1419, "fields": {"revision": 1240, "object_id": "4aefc2c3-f875-42d1-b873-4b8ccb0b825f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4aefc2c3-f875-42d1-b873-4b8ccb0b825f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"John Reed Plumbing\", \"street_address\": \"1844 Geraldine Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9J 1Y3\", \"main_tel\": \"(250) 339-6098\", \"fax_tel\": \"(250) 339-4667\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "John Reed Plumbing"}}, {"model": "reversion.version", "pk": 1420, "fields": {"revision": 1241, "object_id": "58ec93a2-47d8-40a5-a5c1-73dd75f2370a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"58ec93a2-47d8-40a5-a5c1-73dd75f2370a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"3538a827-9f7c-46de-a1e8-7a071f1d27ef\", \"organization\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"registration_no\": \"WD 06022608\"}}]", "object_repr": "Randall Smithson - Well Driller"}}, {"model": "reversion.version", "pk": 1421, "fields": {"revision": 1241, "object_id": "01bd568f-5972-458d-b553-dc0bc83144ba", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 1422, "fields": {"revision": 1242, "object_id": "59302955-228a-4c6a-9144-93b7e47c8bf3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"59302955-228a-4c6a-9144-93b7e47c8bf3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6c97ffb3-02db-444d-a416-0df28b9f533a\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101305\"}}]", "object_repr": "Richard Diggle - Well Driller"}}, {"model": "reversion.version", "pk": 1423, "fields": {"revision": 1242, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1424, "fields": {"revision": 1243, "object_id": "59d67d57-3d57-45f8-a147-53c68e0ae298", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"59d67d57-3d57-45f8-a147-53c68e0ae298\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"370be88a-a2ee-4d30-8613-257aff851d5b\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WPI 12052502\"}}]", "object_repr": "Paul Toews - Pump Installer"}}, {"model": "reversion.version", "pk": 1425, "fields": {"revision": 1243, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1426, "fields": {"revision": 1244, "object_id": "59e5808f-29be-499f-be6b-880d85f71086", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"59e5808f-29be-499f-be6b-880d85f71086\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d3fb3c4b-bbc1-4cef-a80b-857879a8d962\", \"organization\": null, \"registration_no\": \"WPI 06102706\"}}]", "object_repr": "Gerald Niblow - Pump Installer"}}, {"model": "reversion.version", "pk": 1427, "fields": {"revision": 1245, "object_id": "5a34a051-05d0-4762-8ef7-943e49df6596", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5a34a051-05d0-4762-8ef7-943e49df6596\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"06366eb8-7037-4580-9eee-1e212975aa30\", \"organization\": \"2058aa3b-d7e6-40c3-8ed5-22917f859fd1\", \"registration_no\": \"WD 06103104\"}}]", "object_repr": "Robert D. Faasse - Well Driller"}}, {"model": "reversion.version", "pk": 1428, "fields": {"revision": 1245, "object_id": "2058aa3b-d7e6-40c3-8ed5-22917f859fd1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2058aa3b-d7e6-40c3-8ed5-22917f859fd1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"948 Laurier Avenue\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1Y 6B1\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2519\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 1429, "fields": {"revision": 1246, "object_id": "5b224240-76cc-47dc-b157-10bf4da82e02", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5b224240-76cc-47dc-b157-10bf4da82e02\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6a704eba-8497-4682-8c4a-a4bb52dfae17\", \"organization\": \"925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce\", \"registration_no\": \"WD 05030802\"}}]", "object_repr": "Gil Weston - Well Driller"}}, {"model": "reversion.version", "pk": 1430, "fields": {"revision": 1246, "object_id": "925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Weston Water Wells Ltd.\", \"street_address\": \"7779 Highway 24\", \"city\": \"Lone Butte\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1X2\", \"main_tel\": \"(250) 593-4307\", \"fax_tel\": \"(250) 593-4307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Weston Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1431, "fields": {"revision": 1247, "object_id": "5c585476-2734-47b1-ae9e-79489f6044b3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5c585476-2734-47b1-ae9e-79489f6044b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7e515a32-ee06-42a8-8275-5390bbfb90d2\", \"organization\": \"5583c240-5617-44da-92fd-aba90efbc81b\", \"registration_no\": \"WPI 06091201\"}}]", "object_repr": "David Martin - Pump Installer"}}, {"model": "reversion.version", "pk": 1432, "fields": {"revision": 1247, "object_id": "5583c240-5617-44da-92fd-aba90efbc81b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5583c240-5617-44da-92fd-aba90efbc81b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"G.R. Martin Contracting Ltd.\", \"street_address\": \"629 Lafortune Road\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L0\", \"main_tel\": \"(250) 709-1872\", \"fax_tel\": \"(250) 743-9065\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "G.R. Martin Contracting Ltd."}}, {"model": "reversion.version", "pk": 1433, "fields": {"revision": 1248, "object_id": "5ceae28c-07fe-44cc-8425-7811667f0c6d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5ceae28c-07fe-44cc-8425-7811667f0c6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ea6085a2-07cd-46f4-8ccb-59430422b483\", \"organization\": null, \"registration_no\": \"WPI 06041401\"}}]", "object_repr": "Ryan Naka - Pump Installer"}}, {"model": "reversion.version", "pk": 1434, "fields": {"revision": 1249, "object_id": "5d6c27ee-633e-45da-ae22-95f9e6439cab", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5d6c27ee-633e-45da-ae22-95f9e6439cab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2148beea-d5f7-4802-811a-a3f4e8ccd718\", \"organization\": \"dd8d0b72-e8c9-471a-97d3-acd5da9f358d\", \"registration_no\": \"WD 09032301\"}}]", "object_repr": "Chris Barling - Well Driller"}}, {"model": "reversion.version", "pk": 1435, "fields": {"revision": 1249, "object_id": "dd8d0b72-e8c9-471a-97d3-acd5da9f358d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dd8d0b72-e8c9-471a-97d3-acd5da9f358d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wild West Water Wells & Pump Service\", \"street_address\": \"1063 Simmons Road\", \"city\": \"Creston\", \"province_state\": \"BC\", \"postal_code\": \"V0B 1G7\", \"main_tel\": \"(250) 428-0137\", \"fax_tel\": \"(403) 912-7898\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wild West Water Wells & Pump Service"}}, {"model": "reversion.version", "pk": 1436, "fields": {"revision": 1250, "object_id": "5d867f86-549f-41c4-97da-1af15cf687c4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5d867f86-549f-41c4-97da-1af15cf687c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f4b850ea-e78b-4aee-96a0-68b15a7eab7a\", \"organization\": \"8fd9376b-6d5a-4915-8cfb-d13f213b6f89\", \"registration_no\": \"WD 15052601\"}}]", "object_repr": "Stephen Wipf - Well Driller"}}, {"model": "reversion.version", "pk": 1437, "fields": {"revision": 1250, "object_id": "8fd9376b-6d5a-4915-8cfb-d13f213b6f89", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8fd9376b-6d5a-4915-8cfb-d13f213b6f89\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Good Earth Drilling Services Ltd.\", \"street_address\": \"Site 12 Box 17 RR1\", \"city\": \"Airdrie\", \"province_state\": \"AB\", \"postal_code\": \"T4B 2A3\", \"main_tel\": \"(403) 912-1947\", \"fax_tel\": \"(403) 945-3429\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Good Earth Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1438, "fields": {"revision": 1251, "object_id": "5da05a22-9eb1-4208-b81e-bf9fa9c0c70e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5da05a22-9eb1-4208-b81e-bf9fa9c0c70e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ad549ed2-2a97-4a92-8acc-0539746c3cb5\", \"organization\": \"ff8a6226-06fa-4edb-b512-9efa0bc18cbd\", \"registration_no\": \"WPI 06103108\"}}]", "object_repr": "James Ricketts - Pump Installer"}}, {"model": "reversion.version", "pk": 1439, "fields": {"revision": 1251, "object_id": "ff8a6226-06fa-4edb-b512-9efa0bc18cbd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ff8a6226-06fa-4edb-b512-9efa0bc18cbd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"City of Prince George\", \"street_address\": \"505 - 4th Avenue\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3H2\", \"main_tel\": \"(250) 561-7600\", \"fax_tel\": \"(250) 561-7519\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "City of Prince George"}}, {"model": "reversion.version", "pk": 1440, "fields": {"revision": 1252, "object_id": "5dd15c8e-8a64-46f6-8ec9-63715e855b3f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5dd15c8e-8a64-46f6-8ec9-63715e855b3f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"090bc97e-2782-467b-911e-4eeab9fdec3d\", \"organization\": \"af880b62-28a5-4001-a6e9-ca742b5731f2\", \"registration_no\": \"WPI 06101601\"}}]", "object_repr": "Tom Fyfe - Pump Installer"}}, {"model": "reversion.version", "pk": 1441, "fields": {"revision": 1252, "object_id": "af880b62-28a5-4001-a6e9-ca742b5731f2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"af880b62-28a5-4001-a6e9-ca742b5731f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Enterprises\", \"street_address\": \"PO Box 64 Squirrel Cove\", \"city\": \"Cortes Island\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1T0\", \"main_tel\": \"(250) 287-0278\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Enterprises"}}, {"model": "reversion.version", "pk": 1442, "fields": {"revision": 1253, "object_id": "5de3c96a-4994-4ce4-a817-f877dbe90896", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5de3c96a-4994-4ce4-a817-f877dbe90896\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5a92e629-59e2-47e9-bde3-1fb1b9d44ceb\", \"organization\": \"67b01c11-e040-42ca-82b5-1120f79593bf\", \"registration_no\": \"WPI 05022503\"}}]", "object_repr": "Steve Markle - Pump Installer"}}, {"model": "reversion.version", "pk": 1443, "fields": {"revision": 1253, "object_id": "67b01c11-e040-42ca-82b5-1120f79593bf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"67b01c11-e040-42ca-82b5-1120f79593bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fraser Valley Pumps and Gas\", \"street_address\": \"1900 Eagle Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 3A6\", \"main_tel\": \"(604) 309-1721\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fraser Valley Pumps and Gas"}}, {"model": "reversion.version", "pk": 1444, "fields": {"revision": 1254, "object_id": "5e3585a8-3e90-47c8-8703-dcfec4cbd3d9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5e3585a8-3e90-47c8-8703-dcfec4cbd3d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c7ed6930-cc3e-4f06-9378-0f56f4aa314c\", \"organization\": \"28f79732-7f8f-48d9-8c7d-24330cc73ebf\", \"registration_no\": \"WPI 06102705\"}}]", "object_repr": "Don McMullen - Pump Installer"}}, {"model": "reversion.version", "pk": 1445, "fields": {"revision": 1254, "object_id": "28f79732-7f8f-48d9-8c7d-24330cc73ebf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"28f79732-7f8f-48d9-8c7d-24330cc73ebf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mayfair Gas & Plumbing\", \"street_address\": \"505 4th Avenue\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3H2\", \"main_tel\": \"(250) 562-8590\", \"fax_tel\": \"(250) 617-1419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mayfair Gas & Plumbing"}}, {"model": "reversion.version", "pk": 1446, "fields": {"revision": 1255, "object_id": "5e946a02-a1d8-44cf-8622-9e6bb81e25d5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5e946a02-a1d8-44cf-8622-9e6bb81e25d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6d887d38-ee1f-43d8-8f69-ff65ca55bcad\", \"organization\": \"c623cf47-4fa1-4eb1-8caa-351625c8ff22\", \"registration_no\": \"WPI 06101813\"}}]", "object_repr": "Troy Bumford - Pump Installer"}}, {"model": "reversion.version", "pk": 1447, "fields": {"revision": 1255, "object_id": "c623cf47-4fa1-4eb1-8caa-351625c8ff22", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c623cf47-4fa1-4eb1-8caa-351625c8ff22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Municipal Utilities Central Ltd.\", \"street_address\": \"Cell: (306) 531-7821\", \"city\": \"Craven\", \"province_state\": \"SK\", \"postal_code\": null, \"main_tel\": \"(306) 249-2959\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Municipal Utilities Central Ltd."}}, {"model": "reversion.version", "pk": 1448, "fields": {"revision": 1256, "object_id": "5ed14598-9d66-491f-a91f-76db80311859", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5ed14598-9d66-491f-a91f-76db80311859\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6960aca1-92df-4ca7-8d27-679e28e95e0d\", \"organization\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"registration_no\": \"WPI 09050702\"}}]", "object_repr": "William J.S. Williams - Pump Installer"}}, {"model": "reversion.version", "pk": 1449, "fields": {"revision": 1256, "object_id": "7a319709-f9d0-4480-9bf7-1c90b327d3f2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 951-0556\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1450, "fields": {"revision": 1257, "object_id": "5f516168-4ccb-4a0f-8ac5-6b09f6ca409a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5f516168-4ccb-4a0f-8ac5-6b09f6ca409a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"dedd7221-ce4b-4c09-ac89-60a3e20cda2a\", \"organization\": null, \"registration_no\": \"WD 06041901\"}}]", "object_repr": "Travis Johnson - Well Driller"}}, {"model": "reversion.version", "pk": 1451, "fields": {"revision": 1258, "object_id": "5f6b45ef-5eb5-4e51-88f3-e2c442ed9006", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5f6b45ef-5eb5-4e51-88f3-e2c442ed9006\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"56d5a245-d0b5-43d2-b9c3-5a6c52ab5b6b\", \"organization\": null, \"registration_no\": \"WPI 12052501\"}}]", "object_repr": "Greg Steveson - Pump Installer"}}, {"model": "reversion.version", "pk": 1452, "fields": {"revision": 1259, "object_id": "5fd1d660-ee90-4bc2-8603-ef027d29f02a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5fd1d660-ee90-4bc2-8603-ef027d29f02a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"80c34bd7-88b4-4dc5-8a01-89fb595780b9\", \"organization\": \"ac586108-9272-44ee-aa8b-3e24beb9081e\", \"registration_no\": \"WD 08121001\"}}]", "object_repr": "Scott Steward - Well Driller"}}, {"model": "reversion.version", "pk": 1453, "fields": {"revision": 1259, "object_id": "ac586108-9272-44ee-aa8b-3e24beb9081e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ac586108-9272-44ee-aa8b-3e24beb9081e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"Plaza 33 RPO Box 23037\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7K7\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2589\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 1454, "fields": {"revision": 1260, "object_id": "60ecd879-a21f-4d80-ae6f-b3329b876bb7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"60ecd879-a21f-4d80-ae6f-b3329b876bb7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2f1a76a4-ac68-4308-b1d1-a77a05e2b49b\", \"organization\": \"640fff69-4895-45cb-8b63-0d2a6b798f71\", \"registration_no\": \"WPI 06103007\"}}]", "object_repr": "Scott Grimshaw - Pump Installer"}}, {"model": "reversion.version", "pk": 1455, "fields": {"revision": 1260, "object_id": "640fff69-4895-45cb-8b63-0d2a6b798f71", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"640fff69-4895-45cb-8b63-0d2a6b798f71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Terratherma Geothermal Heating Ltd.\", \"street_address\": \"Box 34\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 5P7\", \"main_tel\": \"(250) 354-0453\", \"fax_tel\": \"(250) 354-0454\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Terratherma Geothermal Heating Ltd."}}, {"model": "reversion.version", "pk": 1456, "fields": {"revision": 1261, "object_id": "613901e8-6d84-43e0-b2b4-117058bd679e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"613901e8-6d84-43e0-b2b4-117058bd679e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2bc17f1f-0272-4648-8339-591ac04318a6\", \"organization\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"registration_no\": \"WPI 05120206\"}}]", "object_repr": "Darrell Netrefa - Pump Installer"}}, {"model": "reversion.version", "pk": 1457, "fields": {"revision": 1261, "object_id": "7e0069c2-f36e-463a-8246-8f1d3e228445", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"DD & D Drillers Ltd. (Triple D Drillers)\", \"street_address\": \"3886 Balsum Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 1Z8\", \"main_tel\": \"(250) 962-9030\", \"fax_tel\": \"(250) 962-9030\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "DD & D Drillers Ltd. (Triple D Drillers)"}}, {"model": "reversion.version", "pk": 1458, "fields": {"revision": 1262, "object_id": "619d9d7b-ca38-4465-b9e6-2ae9c967c66c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"619d9d7b-ca38-4465-b9e6-2ae9c967c66c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"090bc97e-2782-467b-911e-4eeab9fdec3d\", \"organization\": \"33eeaa11-6f8a-4712-b0f7-f939d0dfd22d\", \"registration_no\": \"WD 06101601\"}}]", "object_repr": "Tom Fyfe - Well Driller"}}, {"model": "reversion.version", "pk": 1459, "fields": {"revision": 1262, "object_id": "33eeaa11-6f8a-4712-b0f7-f939d0dfd22d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"33eeaa11-6f8a-4712-b0f7-f939d0dfd22d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Enterprises Ltd.\", \"street_address\": \"PO Box 64 Squirrel Cove\", \"city\": \"Cortes Island\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1T0\", \"main_tel\": \"(250) 287-0278\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1460, "fields": {"revision": 1263, "object_id": "61a62600-3bc0-44d4-b902-349f259acd99", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"61a62600-3bc0-44d4-b902-349f259acd99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d9f8894e-406e-4e3d-909a-1c2b264a88a5\", \"organization\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"registration_no\": \"WPI 06022605\"}}]", "object_repr": "Daniel Nadeau - Pump Installer"}}, {"model": "reversion.version", "pk": 1461, "fields": {"revision": 1263, "object_id": "337332e9-d832-4384-be7f-a06b87edee06", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Delta Irrigation Ltd.\", \"street_address\": \"444 Chilcotin Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1G3\", \"main_tel\": \"(250) 372-9424\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Delta Irrigation Ltd."}}, {"model": "reversion.version", "pk": 1462, "fields": {"revision": 1264, "object_id": "61e6c6c0-63ae-41e2-9f58-6569d0fe7e58", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"61e6c6c0-63ae-41e2-9f58-6569d0fe7e58\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"bce25dbd-826b-4cc9-95c0-e61a9e84a053\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 12022103\"}}]", "object_repr": "Matthew Chapman - Well Driller"}}, {"model": "reversion.version", "pk": 1463, "fields": {"revision": 1264, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1464, "fields": {"revision": 1265, "object_id": "624305f6-2bd5-46ca-a0c7-43d959c82e7a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"624305f6-2bd5-46ca-a0c7-43d959c82e7a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"be036870-a41c-43f3-b351-15fb41f8c182\", \"organization\": \"92722612-db88-481d-9f73-70a41092f9f4\", \"registration_no\": \"WPI 05021001\"}}]", "object_repr": "Ronald Gehring - Pump Installer"}}, {"model": "reversion.version", "pk": 1465, "fields": {"revision": 1265, "object_id": "92722612-db88-481d-9f73-70a41092f9f4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"92722612-db88-481d-9f73-70a41092f9f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quadsons Water Systems\", \"street_address\": \"25745 - 102nd. Avenue\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2W 1K5\", \"main_tel\": \"(604) 462-8341\", \"fax_tel\": \"(604) 462-8374\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quadsons Water Systems"}}, {"model": "reversion.version", "pk": 1466, "fields": {"revision": 1266, "object_id": "626d4ab3-5fb5-4ad1-a07c-fa0969362d4d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"626d4ab3-5fb5-4ad1-a07c-fa0969362d4d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b7e3149f-2e81-4101-bcad-f1fcfed4e437\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06103006\"}}]", "object_repr": "Jason Peterson - Well Driller"}}, {"model": "reversion.version", "pk": 1467, "fields": {"revision": 1266, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1468, "fields": {"revision": 1267, "object_id": "62c508aa-6d3d-4c10-b818-060d455c86ae", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"62c508aa-6d3d-4c10-b818-060d455c86ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c15ef3ea-2154-4176-86e5-70fc20fd959a\", \"organization\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"registration_no\": \"WD 05052907\"}}]", "object_repr": "Stanley Woodford - Well Driller"}}, {"model": "reversion.version", "pk": 1469, "fields": {"revision": 1267, "object_id": "91576fc7-0a2e-4d84-867a-49435d61133e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5213\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 1470, "fields": {"revision": 1268, "object_id": "6376d13d-7b24-43dc-98d9-3b641aeeebef", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6376d13d-7b24-43dc-98d9-3b641aeeebef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"01c69ede-3723-4941-a126-11ed51e9d63f\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 05041302\"}}]", "object_repr": "Luciano Brancato - Well Driller"}}, {"model": "reversion.version", "pk": 1471, "fields": {"revision": 1268, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1472, "fields": {"revision": 1269, "object_id": "63d33221-578a-447d-84c1-28fa8aaf2c0f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"63d33221-578a-447d-84c1-28fa8aaf2c0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fda05379-1bce-4dd6-bab2-2ba05368e95d\", \"organization\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"registration_no\": \"WD 06102502\"}}]", "object_repr": "David Wasstrom - Well Driller"}}, {"model": "reversion.version", "pk": 1473, "fields": {"revision": 1269, "object_id": "7e0069c2-f36e-463a-8246-8f1d3e228445", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"DD & D Drillers Ltd. (Triple D Drillers)\", \"street_address\": \"3886 Balsum Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 1Z8\", \"main_tel\": \"(250) 962-9030\", \"fax_tel\": \"(250) 962-9030\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "DD & D Drillers Ltd. (Triple D Drillers)"}}, {"model": "reversion.version", "pk": 1474, "fields": {"revision": 1270, "object_id": "645c50a1-38d9-4cb3-bf75-20d51cf37f4d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"645c50a1-38d9-4cb3-bf75-20d51cf37f4d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"4acdc1a4-d44c-44fa-ac98-d7200b33e79c\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WD 12062101\"}}]", "object_repr": "Ronald Nelson - Well Driller"}}, {"model": "reversion.version", "pk": 1475, "fields": {"revision": 1270, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1476, "fields": {"revision": 1271, "object_id": "64689170-8c1a-4667-bdd0-fe0088d34752", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"64689170-8c1a-4667-bdd0-fe0088d34752\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"29a58c5c-f128-4ac3-9b71-150bd7a495fa\", \"organization\": \"e03c10e1-0a88-45b9-9545-03f8d1ac2061\", \"registration_no\": \"WPI 09052001\"}}]", "object_repr": "Brent Eisner - Pump Installer"}}, {"model": "reversion.version", "pk": 1477, "fields": {"revision": 1271, "object_id": "e03c10e1-0a88-45b9-9545-03f8d1ac2061", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e03c10e1-0a88-45b9-9545-03f8d1ac2061\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tri-City Pumps & Power (2007) Ltd.\", \"street_address\": \"3583 South Slocan Village Road\", \"city\": \"Bonnington\", \"province_state\": \"BC\", \"postal_code\": \"V0G 2G3\", \"main_tel\": \"(250) 359-7166\", \"fax_tel\": \"(250) 359-7167\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tri-City Pumps & Power (2007) Ltd."}}, {"model": "reversion.version", "pk": 1478, "fields": {"revision": 1272, "object_id": "64940e1b-5091-40db-9818-77295ba7e2b1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"64940e1b-5091-40db-9818-77295ba7e2b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5d3e5991-5c9f-4d2f-aabb-b1f1cd57d485\", \"organization\": \"6e1ada47-6cff-4e2f-b450-e19ee070a649\", \"registration_no\": \"WPI 05101101\"}}]", "object_repr": "Ron Kalicum - Pump Installer"}}, {"model": "reversion.version", "pk": 1479, "fields": {"revision": 1272, "object_id": "6e1ada47-6cff-4e2f-b450-e19ee070a649", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6e1ada47-6cff-4e2f-b450-e19ee070a649\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kalicum Drilling Ltd.\", \"street_address\": \"Box 355\", \"city\": \"Cassidy\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1H0\", \"main_tel\": \"(250) 245-1220\", \"fax_tel\": \"(250) 245-1290\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kalicum Drilling Ltd."}}, {"model": "reversion.version", "pk": 1480, "fields": {"revision": 1273, "object_id": "64c052c1-7ef0-4d87-a3dc-51ab65802c12", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"64c052c1-7ef0-4d87-a3dc-51ab65802c12\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"18888462-fb05-4dbb-b157-572b4e8ea814\", \"organization\": \"64e2223d-7a0c-44fb-b028-1a79f2595fcb\", \"registration_no\": \"WD 06101802\"}}]", "object_repr": "Donald Abercrombie - Well Driller"}}, {"model": "reversion.version", "pk": 1481, "fields": {"revision": 1273, "object_id": "64e2223d-7a0c-44fb-b028-1a79f2595fcb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64e2223d-7a0c-44fb-b028-1a79f2595fcb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Donald Abercrombie Well Drilling\", \"street_address\": \"Box 152\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-4463\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Donald Abercrombie Well Drilling"}}, {"model": "reversion.version", "pk": 1482, "fields": {"revision": 1274, "object_id": "65913fa0-f10a-47ba-90f7-1bf6ced2814e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"65913fa0-f10a-47ba-90f7-1bf6ced2814e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f26ea5af-5d37-4f3a-a575-f40e92a91ddd\", \"organization\": \"0acc2ac6-0fd2-46df-ba89-c28c9fba9375\", \"registration_no\": \"WD 06100503\"}}]", "object_repr": "Richard Reid - Well Driller"}}, {"model": "reversion.version", "pk": 1483, "fields": {"revision": 1274, "object_id": "0acc2ac6-0fd2-46df-ba89-c28c9fba9375", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0acc2ac6-0fd2-46df-ba89-c28c9fba9375\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Omega Environmental Drilling Ltd.\", \"street_address\": \"PO Box 31620\", \"city\": \"Pitt Meadows\", \"province_state\": \"BC\", \"postal_code\": \"V3Y 2W4\", \"main_tel\": \"(604) 459-4567\", \"fax_tel\": \"(604) 459-5477\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Omega Environmental Drilling Ltd."}}, {"model": "reversion.version", "pk": 1484, "fields": {"revision": 1275, "object_id": "663e062c-ae86-4a6e-88c8-635b578cfa24", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"663e062c-ae86-4a6e-88c8-635b578cfa24\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"065f85b5-f327-46ce-a928-2cb157687ee6\", \"organization\": \"6611bef2-d8b4-4d3e-8d6f-f4d1cff59871\", \"registration_no\": \"WD 06090603\"}}]", "object_repr": "Henry Taylor - Well Driller"}}, {"model": "reversion.version", "pk": 1485, "fields": {"revision": 1275, "object_id": "6611bef2-d8b4-4d3e-8d6f-f4d1cff59871", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6611bef2-d8b4-4d3e-8d6f-f4d1cff59871\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Reliance Well & Water Systems\", \"street_address\": \"9828 Pelly Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H4\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Reliance Well & Water Systems"}}, {"model": "reversion.version", "pk": 1486, "fields": {"revision": 1276, "object_id": "670e7ec7-0207-48bb-9bd2-ba9152d574ca", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"670e7ec7-0207-48bb-9bd2-ba9152d574ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fefe7c04-fca4-4f42-b11e-40184022bd02\", \"organization\": null, \"registration_no\": \"WPI 09052002\"}}]", "object_repr": "Robert Yemm - Pump Installer"}}, {"model": "reversion.version", "pk": 1487, "fields": {"revision": 1277, "object_id": "676e537f-92f6-4c53-8c95-04b26698616d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"676e537f-92f6-4c53-8c95-04b26698616d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"925319c3-6c1a-40f9-b123-14cd38dd41fa\", \"organization\": \"db193fd3-8306-4446-b4e2-759a2a59a61f\", \"registration_no\": \"WPI 13022101\"}}]", "object_repr": "Geoff Danieluk - Pump Installer"}}, {"model": "reversion.version", "pk": 1488, "fields": {"revision": 1277, "object_id": "db193fd3-8306-4446-b4e2-759a2a59a61f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db193fd3-8306-4446-b4e2-759a2a59a61f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe Well & Water Services\", \"street_address\": \"1541 Winchester Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y2\", \"main_tel\": \"(250) 752-4986\", \"fax_tel\": \"(250) 248-0830\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe Well & Water Services"}}, {"model": "reversion.version", "pk": 1489, "fields": {"revision": 1278, "object_id": "677db48e-cdac-4ba8-8c8b-31681b5bb973", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"677db48e-cdac-4ba8-8c8b-31681b5bb973\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7b3d3e8e-e83a-443c-8358-a55b232ee778\", \"organization\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"registration_no\": \"WPI 05022103\"}}]", "object_repr": "Bryan Kashmark - Pump Installer"}}, {"model": "reversion.version", "pk": 1490, "fields": {"revision": 1278, "object_id": "5e375c99-81af-4095-965b-8e40f8608451", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5e375c99-81af-4095-965b-8e40f8608451\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"B.K. Woods & Water Supplies Ltd.\", \"street_address\": \"9400 Cariboo Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E1\", \"main_tel\": \"(250) 963-1411\", \"fax_tel\": \"(250) 963-3236\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "B.K. Woods & Water Supplies Ltd."}}, {"model": "reversion.version", "pk": 1491, "fields": {"revision": 1279, "object_id": "678ccab1-eebc-46ae-89d5-c015539b1109", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"678ccab1-eebc-46ae-89d5-c015539b1109\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"12e11737-9c7d-4591-ab9c-4c37f1d38e28\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101311\"}}]", "object_repr": "Dave Otto - Well Driller"}}, {"model": "reversion.version", "pk": 1492, "fields": {"revision": 1279, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1493, "fields": {"revision": 1280, "object_id": "686f780f-fe15-4764-a225-2d19f26cc5db", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"686f780f-fe15-4764-a225-2d19f26cc5db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"dfb40b74-ee60-4736-af8a-39558edc4380\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 06022609\"}}]", "object_repr": "Kelly Rosehill - Well Driller"}}, {"model": "reversion.version", "pk": 1494, "fields": {"revision": 1280, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1495, "fields": {"revision": 1281, "object_id": "68c7f908-47c2-400c-ae4a-49d2e675ccb1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"68c7f908-47c2-400c-ae4a-49d2e675ccb1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"be9a25a4-79fc-4574-8f57-76f65a9885a6\", \"organization\": \"730ac841-305e-4965-86da-b6b718378d0c\", \"registration_no\": \"WPI 06012504\"}}]", "object_repr": "Peter Misek - Pump Installer"}}, {"model": "reversion.version", "pk": 1496, "fields": {"revision": 1281, "object_id": "730ac841-305e-4965-86da-b6b718378d0c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"730ac841-305e-4965-86da-b6b718378d0c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Misek Bros. Drilling\", \"street_address\": \"3805 Hillbank Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6M1\", \"main_tel\": \"(250) 743-9050\", \"fax_tel\": \"(250) 743-9027\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Misek Bros. Drilling"}}, {"model": "reversion.version", "pk": 1497, "fields": {"revision": 1282, "object_id": "6918ff6b-5a6f-4ea3-9c27-6917cac2434d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6918ff6b-5a6f-4ea3-9c27-6917cac2434d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"696c9fdc-9a25-4348-8898-c54aaa04099b\", \"organization\": \"6f88d1a4-55ac-4444-9c87-1452c6f0d3d8\", \"registration_no\": \"WPI 05021405\"}}]", "object_repr": "Barry Waardenburg - Pump Installer"}}, {"model": "reversion.version", "pk": 1498, "fields": {"revision": 1282, "object_id": "6f88d1a4-55ac-4444-9c87-1452c6f0d3d8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6f88d1a4-55ac-4444-9c87-1452c6f0d3d8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Murphy and Wakefield Limited\", \"street_address\": \"Unit U 31087 Peardonville Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2T 6K4\", \"main_tel\": \"(604) 853-3321\", \"fax_tel\": \"(604) 853-3150\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Murphy and Wakefield Limited"}}, {"model": "reversion.version", "pk": 1499, "fields": {"revision": 1283, "object_id": "6a7caf24-4d97-4bd8-b775-0c65f01b0464", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6a7caf24-4d97-4bd8-b775-0c65f01b0464\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f44d2774-1b86-45fc-b8a8-3285065aa5ad\", \"organization\": \"3d1a32a1-aa71-4c28-91ea-6e75c64d4261\", \"registration_no\": \"WPI 05111703\"}}]", "object_repr": "Steven MacLean - Pump Installer"}}, {"model": "reversion.version", "pk": 1500, "fields": {"revision": 1283, "object_id": "3d1a32a1-aa71-4c28-91ea-6e75c64d4261", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3d1a32a1-aa71-4c28-91ea-6e75c64d4261\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quesnel Pump Supply & Service\", \"street_address\": \"1157 Jade Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 4E2\", \"main_tel\": \"(250) 747-3338\", \"fax_tel\": \"(250) 747-3094\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quesnel Pump Supply & Service"}}, {"model": "reversion.version", "pk": 1501, "fields": {"revision": 1284, "object_id": "6ace1a50-e98b-41d7-a75e-2591a08e1f8f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6ace1a50-e98b-41d7-a75e-2591a08e1f8f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d36d11cf-ffe2-4d9f-b362-a015b19d6229\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121406\"}}]", "object_repr": "Richard Bourget - Well Driller"}}, {"model": "reversion.version", "pk": 1502, "fields": {"revision": 1284, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1503, "fields": {"revision": 1285, "object_id": "6bcb902f-6488-44b5-8231-84349bfad7d7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6bcb902f-6488-44b5-8231-84349bfad7d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"89479552-15a2-4e21-b1ec-3909875cdde6\", \"organization\": \"02f1bf67-c826-4921-8984-f5faedba72a8\", \"registration_no\": \"WD 05110801\"}}]", "object_repr": "Dallas Barlow - Well Driller"}}, {"model": "reversion.version", "pk": 1504, "fields": {"revision": 1285, "object_id": "02f1bf67-c826-4921-8984-f5faedba72a8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"02f1bf67-c826-4921-8984-f5faedba72a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Westech Drilling Corp\", \"street_address\": \"13695 East Beaverly Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5A6\", \"main_tel\": \"(250) 964-8748\", \"fax_tel\": \"(250) 964-8741\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Westech Drilling Corp"}}, {"model": "reversion.version", "pk": 1505, "fields": {"revision": 1286, "object_id": "6bd7e483-85d3-4072-8ed8-aec16fbc2de5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6bd7e483-85d3-4072-8ed8-aec16fbc2de5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a0679090-6b53-4a8e-9fc4-1c5e6160f4d9\", \"organization\": \"3f27c808-d02b-4c16-b615-8a0f5b78897b\", \"registration_no\": \"WPI 06102001\"}}]", "object_repr": "Donald Lenard - Pump Installer"}}, {"model": "reversion.version", "pk": 1506, "fields": {"revision": 1286, "object_id": "3f27c808-d02b-4c16-b615-8a0f5b78897b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3f27c808-d02b-4c16-b615-8a0f5b78897b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"317 - 103rd Street\", \"city\": \"Saskatoon\", \"province_state\": \"SK\", \"postal_code\": \"S7N 1Y9\", \"main_tel\": \"(306) 373-7070\", \"fax_tel\": \"(306) 373-1922\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1507, "fields": {"revision": 1287, "object_id": "6c50bdf6-ae1a-40b5-85e2-9d022fbc54fa", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6c50bdf6-ae1a-40b5-85e2-9d022fbc54fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2dc785a0-a3b6-4e9f-9c8a-ad709118425d\", \"organization\": \"21c9b72c-b698-4e11-8626-2ef0aba9e4d4\", \"registration_no\": \"WD 10090802\"}}]", "object_repr": "Brandon Paulson - Well Driller"}}, {"model": "reversion.version", "pk": 1508, "fields": {"revision": 1287, "object_id": "21c9b72c-b698-4e11-8626-2ef0aba9e4d4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21c9b72c-b698-4e11-8626-2ef0aba9e4d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alco Drilling Services Ltd.\", \"street_address\": \"20118 52 Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 6R7\", \"main_tel\": \"(604) 534-9484\", \"fax_tel\": \"(604) 534-4968\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alco Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1509, "fields": {"revision": 1288, "object_id": "6d336ed7-449a-49e7-b54e-af15392ed144", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6d336ed7-449a-49e7-b54e-af15392ed144\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"280b9848-a3f4-4434-a3ea-75588c0cc20f\", \"organization\": \"2058aa3b-d7e6-40c3-8ed5-22917f859fd1\", \"registration_no\": \"WD 06103103\"}}]", "object_repr": "Cheryl Faasse - Well Driller"}}, {"model": "reversion.version", "pk": 1510, "fields": {"revision": 1288, "object_id": "2058aa3b-d7e6-40c3-8ed5-22917f859fd1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2058aa3b-d7e6-40c3-8ed5-22917f859fd1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"948 Laurier Avenue\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1Y 6B1\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2519\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 1511, "fields": {"revision": 1289, "object_id": "6d388c4a-d66e-4cfc-8bba-dabda1f8d2b8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6d388c4a-d66e-4cfc-8bba-dabda1f8d2b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"32d4fc15-cf49-45de-9ada-6389187893bb\", \"organization\": \"f74a98d5-f04f-479e-9214-724773dac01a\", \"registration_no\": \"WPI 05110206\"}}]", "object_repr": "Randy Woods - Pump Installer"}}, {"model": "reversion.version", "pk": 1512, "fields": {"revision": 1289, "object_id": "f74a98d5-f04f-479e-9214-724773dac01a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f74a98d5-f04f-479e-9214-724773dac01a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Tech Services\", \"street_address\": \"5806 Farmers Drive\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1P 1A3\", \"main_tel\": \"(250) 765-4730\", \"fax_tel\": \"(250) 765-5801\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Tech Services"}}, {"model": "reversion.version", "pk": 1513, "fields": {"revision": 1290, "object_id": "6d3ffe0c-60ea-42ef-8bab-82c822f3f8d6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6d3ffe0c-60ea-42ef-8bab-82c822f3f8d6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"54770a38-7b9e-4626-9fb5-53eb49d1d6e2\", \"organization\": \"8c16777e-86b8-44ef-854e-d24822b3e7cd\", \"registration_no\": \"WD 06090607\"}}]", "object_repr": "Andrew Thompson - Well Driller"}}, {"model": "reversion.version", "pk": 1514, "fields": {"revision": 1290, "object_id": "8c16777e-86b8-44ef-854e-d24822b3e7cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8c16777e-86b8-44ef-854e-d24822b3e7cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Soil Sampling Inc.\", \"street_address\": \"Box C-23\", \"city\": \"Bowen Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1G0\", \"main_tel\": \"(604) 947-7677\", \"fax_tel\": \"(250) 947-9500\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Soil Sampling Inc."}}, {"model": "reversion.version", "pk": 1515, "fields": {"revision": 1291, "object_id": "6dd046f9-1ec3-42d3-85e5-700d3bb89b1c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6dd046f9-1ec3-42d3-85e5-700d3bb89b1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a87cbc86-e15c-455c-95b4-06b69a5910a5\", \"organization\": \"7a000aa1-1787-4a49-8fec-78f6cc398a3c\", \"registration_no\": \"WPI 11100501\"}}]", "object_repr": "Joshua Douma - Pump Installer"}}, {"model": "reversion.version", "pk": 1516, "fields": {"revision": 1291, "object_id": "7a000aa1-1787-4a49-8fec-78f6cc398a3c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7a000aa1-1787-4a49-8fec-78f6cc398a3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Insitu Contractors Inc.\", \"street_address\": \"150 Stevenson Street, South\", \"city\": \"Guelph\", \"province_state\": \"ON\", \"postal_code\": \"N1E 5N7\", \"main_tel\": \"(519) 763-0700\", \"fax_tel\": \"(519) 763-6684\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Insitu Contractors Inc."}}, {"model": "reversion.version", "pk": 1517, "fields": {"revision": 1292, "object_id": "6f62592e-3179-4960-8f7d-68866a9900b0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6f62592e-3179-4960-8f7d-68866a9900b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d0f2a237-e322-4b99-a413-c7f77c2a403b\", \"organization\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"registration_no\": \"WD 06070601\"}}]", "object_repr": "George Olmr - Well Driller"}}, {"model": "reversion.version", "pk": 1518, "fields": {"revision": 1292, "object_id": "86a95cfa-217b-419a-9528-24c62148979c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Langley Water Wells Ltd.\", \"street_address\": \"21416 32nd. Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2E7\", \"main_tel\": \"(604) 534-5675\", \"fax_tel\": \"(604) 534-9762\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Langley Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1519, "fields": {"revision": 1293, "object_id": "6fb735f1-702c-44c1-b5df-be93aa63d998", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6fb735f1-702c-44c1-b5df-be93aa63d998\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b5e8a02e-25d9-4df5-8dbe-1d8cfe747b7f\", \"organization\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"registration_no\": \"WPI 06071301\"}}]", "object_repr": "Art Barr - Pump Installer"}}, {"model": "reversion.version", "pk": 1520, "fields": {"revision": 1293, "object_id": "53586668-d586-44d2-8ea1-82ea79b4a596", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Highlands Irrigation Ltd.\", \"street_address\": \"1105 South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A7\", \"main_tel\": \"(250) 392-2321\", \"fax_tel\": \"(250) 392-2377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Highlands Irrigation Ltd."}}, {"model": "reversion.version", "pk": 1521, "fields": {"revision": 1294, "object_id": "6fe3bbd4-c659-4feb-a787-3e68f42eb652", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"6fe3bbd4-c659-4feb-a787-3e68f42eb652\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"0d046036-2d64-47a7-971c-240b3695b5c8\", \"organization\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"registration_no\": \"WD 04110301\"}}]", "object_repr": "John McDonald - Well Driller"}}, {"model": "reversion.version", "pk": 1522, "fields": {"revision": 1294, "object_id": "e56ab542-a414-4de6-be90-f82d7065cad8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Well Drilling Ltd.\", \"street_address\": \"48987 Chilliwack Central Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H3\", \"main_tel\": \"(604) 794-5544\", \"fax_tel\": \"(604) 794-5545\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1523, "fields": {"revision": 1295, "object_id": "702da908-55ea-485e-ae4a-977911677a0d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"702da908-55ea-485e-ae4a-977911677a0d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2971db1a-3d39-4c43-b6b7-411a03fa5be2\", \"organization\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"registration_no\": \"WD 06022601\"}}]", "object_repr": "John Mankowski - Well Driller"}}, {"model": "reversion.version", "pk": 1524, "fields": {"revision": 1295, "object_id": "86a95cfa-217b-419a-9528-24c62148979c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Langley Water Wells Ltd.\", \"street_address\": \"21416 32nd. Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2E7\", \"main_tel\": \"(604) 534-5675\", \"fax_tel\": \"(604) 534-9762\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Langley Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1525, "fields": {"revision": 1296, "object_id": "715296ee-fb70-4fd8-a9ff-5610461021fa", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"715296ee-fb70-4fd8-a9ff-5610461021fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"32eb4017-299e-403a-8f4b-3c06e992793d\", \"organization\": \"5dc5a813-c8ac-4396-8826-6db1f0a73874\", \"registration_no\": \"WPI 15071601\"}}]", "object_repr": "Craig Wynn - Pump Installer"}}, {"model": "reversion.version", "pk": 1526, "fields": {"revision": 1296, "object_id": "5dc5a813-c8ac-4396-8826-6db1f0a73874", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5dc5a813-c8ac-4396-8826-6db1f0a73874\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Clear Blue Water Systems Ltd.\", \"street_address\": \"PO Box 148, 13076-256 Road\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3737\", \"fax_tel\": \"(250) 827-3701\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Clear Blue Water Systems Ltd."}}, {"model": "reversion.version", "pk": 1527, "fields": {"revision": 1297, "object_id": "716b037f-5e42-4319-a679-c6c8eb325ca1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"716b037f-5e42-4319-a679-c6c8eb325ca1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e8f6d387-cce1-48cd-91f3-9e4f8aad6060\", \"organization\": \"dadf5f94-9427-4453-bd91-073b00a5213f\", \"registration_no\": \"WPI 06101809\"}}]", "object_repr": "Derek Oakley - Pump Installer"}}, {"model": "reversion.version", "pk": 1528, "fields": {"revision": 1297, "object_id": "dadf5f94-9427-4453-bd91-073b00a5213f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dadf5f94-9427-4453-bd91-073b00a5213f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fixology Repair Solutions\", \"street_address\": \"3653 Luxmoore Rd\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1W 4C7\", \"main_tel\": \"(250) 300-4738\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fixology Repair Solutions"}}, {"model": "reversion.version", "pk": 1529, "fields": {"revision": 1298, "object_id": "7182d932-4c0a-4542-875a-cfebc80d4198", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7182d932-4c0a-4542-875a-cfebc80d4198\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9ccbeb23-e211-4afe-b58a-060475beecca\", \"organization\": \"e1219888-852c-456d-ab58-ea5917d5b782\", \"registration_no\": \"WPI 06100607\"}}]", "object_repr": "Duncan Haines - Pump Installer"}}, {"model": "reversion.version", "pk": 1530, "fields": {"revision": 1298, "object_id": "e1219888-852c-456d-ab58-ea5917d5b782", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e1219888-852c-456d-ab58-ea5917d5b782\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Van Isle Water Service Ltd.\", \"street_address\": \"461 Dupplin Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 1B8\", \"main_tel\": \"(250) 383-7145\", \"fax_tel\": \"(250) 385-1216\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Van Isle Water Service Ltd."}}, {"model": "reversion.version", "pk": 1531, "fields": {"revision": 1299, "object_id": "71d134dd-fb8d-4258-bc6c-4979283a3f1d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"71d134dd-fb8d-4258-bc6c-4979283a3f1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"18a627bb-62e7-407a-8731-777693c39062\", \"organization\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"registration_no\": \"WD 06090701\"}}]", "object_repr": "Donald Romses - Well Driller"}}, {"model": "reversion.version", "pk": 1532, "fields": {"revision": 1299, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 1533, "fields": {"revision": 1300, "object_id": "7252fa7f-8e90-4767-8522-dd1e8a50c18f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7252fa7f-8e90-4767-8522-dd1e8a50c18f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e97a26f5-bb17-4456-8817-2d4b96d1a38a\", \"organization\": \"53cf846f-8c62-4804-9dd7-200e5aa9c2a2\", \"registration_no\": \"WD 18012301\"}}]", "object_repr": "Scott Madden - Well Driller"}}, {"model": "reversion.version", "pk": 1534, "fields": {"revision": 1300, "object_id": "53cf846f-8c62-4804-9dd7-200e5aa9c2a2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53cf846f-8c62-4804-9dd7-200e5aa9c2a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Boart Longyear\", \"street_address\": \"4025 96 Avenue SE\", \"city\": \"Calgary\", \"province_state\": \"AB\", \"postal_code\": \"T2C 4T7\", \"main_tel\": \"(403) 287 1460\", \"fax_tel\": \"(403) 243 0580\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Boart Longyear"}}, {"model": "reversion.version", "pk": 1535, "fields": {"revision": 1301, "object_id": "7253bbec-264b-494e-835b-445ec36f08f7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7253bbec-264b-494e-835b-445ec36f08f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2a3f81e3-c462-4961-a89e-858130ff08e0\", \"organization\": \"85057b7c-410a-4312-ab17-d4c68e32e0b6\", \"registration_no\": \"WPI 12012501\"}}]", "object_repr": "Doug Robinson - Pump Installer"}}, {"model": "reversion.version", "pk": 1536, "fields": {"revision": 1301, "object_id": "85057b7c-410a-4312-ab17-d4c68e32e0b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"85057b7c-410a-4312-ab17-d4c68e32e0b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R. Steel Mechanical Ltd.\", \"street_address\": \"2974 208 Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2C3\", \"main_tel\": \"(778) 878-5708\", \"fax_tel\": \"(604) 888-4536\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R. Steel Mechanical Ltd."}}, {"model": "reversion.version", "pk": 1537, "fields": {"revision": 1302, "object_id": "72eed8d9-65b7-4493-9b6d-42a29b5c9e66", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"72eed8d9-65b7-4493-9b6d-42a29b5c9e66\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"08e0cb8b-6651-4c81-9362-2ea44ba43f18\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121404\"}}]", "object_repr": "David Slade - Well Driller"}}, {"model": "reversion.version", "pk": 1538, "fields": {"revision": 1302, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1539, "fields": {"revision": 1303, "object_id": "7371883e-e5d0-4c55-aa15-04c5209b6a19", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7371883e-e5d0-4c55-aa15-04c5209b6a19\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b7c42b5d-a8c8-4114-9ecd-8f9bb946452a\", \"organization\": \"749c59f2-a04e-4417-a814-36c433f3f8b5\", \"registration_no\": \"WD 16021501\"}}]", "object_repr": "Cass Currie - Well Driller"}}, {"model": "reversion.version", "pk": 1540, "fields": {"revision": 1303, "object_id": "749c59f2-a04e-4417-a814-36c433f3f8b5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"749c59f2-a04e-4417-a814-36c433f3f8b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4944 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1541, "fields": {"revision": 1304, "object_id": "749c5cb4-32cf-47bb-bc9b-f256d69e57c9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"749c5cb4-32cf-47bb-bc9b-f256d69e57c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f8af4efb-4588-4f1f-b27c-38f2768943aa\", \"organization\": \"060fb1ec-8580-4066-9721-1cc73c1c1606\", \"registration_no\": \"WPI 06103008\"}}]", "object_repr": "Peter Kardash - Pump Installer"}}, {"model": "reversion.version", "pk": 1542, "fields": {"revision": 1304, "object_id": "060fb1ec-8580-4066-9721-1cc73c1c1606", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"060fb1ec-8580-4066-9721-1cc73c1c1606\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kardash Plumbing Ltd.\", \"street_address\": \"Box 900\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H0\", \"main_tel\": \"(250) 344-6887\", \"fax_tel\": \"(250) 344-2854\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kardash Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1543, "fields": {"revision": 1305, "object_id": "74dfcccd-5ebe-4c54-8da7-c9ae808aed48", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"74dfcccd-5ebe-4c54-8da7-c9ae808aed48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6882217f-b346-4421-8261-09611ac771dd\", \"organization\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"registration_no\": \"WD 06032802\"}}]", "object_repr": "Robert Stanvick - Well Driller"}}, {"model": "reversion.version", "pk": 1544, "fields": {"revision": 1305, "object_id": "1b9ede02-8bdd-425a-b4b2-b0da85a1f149", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Double D Drilling Ltd.\", \"street_address\": \"Box 766; 5275 Arthur Road\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4R1\", \"main_tel\": \"(250) 635-7877\", \"fax_tel\": \"(250) 635-7899\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Double D Drilling Ltd."}}, {"model": "reversion.version", "pk": 1545, "fields": {"revision": 1306, "object_id": "750133dc-389e-40b7-85c7-1087fd8fdd5e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"750133dc-389e-40b7-85c7-1087fd8fdd5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b5729fb8-aa12-417e-b6d9-9e9ebb181aff\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 05041303\"}}]", "object_repr": "Kelly McGarry - Well Driller"}}, {"model": "reversion.version", "pk": 1546, "fields": {"revision": 1306, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1547, "fields": {"revision": 1307, "object_id": "757636ea-877e-465c-914a-d87a09f61da2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"757636ea-877e-465c-914a-d87a09f61da2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"4524e880-f842-4fb8-bec9-f02b9ae88806\", \"organization\": null, \"registration_no\": \"WPI 08040202\"}}]", "object_repr": "Kevin Mintz - Pump Installer"}}, {"model": "reversion.version", "pk": 1548, "fields": {"revision": 1308, "object_id": "75c84008-910b-4351-9b80-a15906d0b479", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"75c84008-910b-4351-9b80-a15906d0b479\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0c023913-70a0-4a98-a999-17c117b410e0\", \"organization\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"registration_no\": \"WPI 05111701\"}}]", "object_repr": "Robert Brousseau - Pump Installer"}}, {"model": "reversion.version", "pk": 1549, "fields": {"revision": 1308, "object_id": "75a144d3-196f-49d7-83e0-f00e57a0117b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"AJ Pumps & Water Treatment Ltd.\", \"street_address\": \"46170 Airport Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 1A5\", \"main_tel\": \"(604) 795-2568\", \"fax_tel\": \"(604) 795-2561\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "AJ Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1550, "fields": {"revision": 1309, "object_id": "7608e662-24eb-4bd8-9aca-ec09fe7ba55a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7608e662-24eb-4bd8-9aca-ec09fe7ba55a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"39a194f7-9cd5-445f-9d71-f6b02fab22a4\", \"organization\": \"fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27\", \"registration_no\": \"WPI 10110802\"}}]", "object_repr": "Chris Quinlan - Pump Installer"}}, {"model": "reversion.version", "pk": 1551, "fields": {"revision": 1309, "object_id": "fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fd6c4cee-6fe3-4ce4-97dc-f0ed76ca6b27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aaron Drilling\", \"street_address\": \"Box 28, Site 9, RR 1\", \"city\": \"Dewinton\", \"province_state\": \"AB\", \"postal_code\": \"T0L 0X0\", \"main_tel\": \"(403) 938-4961\", \"fax_tel\": \"(403) 938-3324\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aaron Drilling"}}, {"model": "reversion.version", "pk": 1552, "fields": {"revision": 1310, "object_id": "76e0946b-8e92-4a13-8a4d-72f0c464ce52", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"76e0946b-8e92-4a13-8a4d-72f0c464ce52\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"71d50cfc-6d3c-43cb-a5ed-15eefeea1ff7\", \"organization\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"registration_no\": \"WD 06103004\"}}]", "object_repr": "Walter Nobes - Well Driller"}}, {"model": "reversion.version", "pk": 1553, "fields": {"revision": 1310, "object_id": "1637ce27-f13c-4214-abda-ed81f4b39ac2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"Box 310\", \"city\": \"Barrie\", \"province_state\": \"ON\", \"postal_code\": \"L4M 4T5\", \"main_tel\": \"(705) 733-0111\", \"fax_tel\": \"(705) 721-0138\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1554, "fields": {"revision": 1311, "object_id": "76fab44b-dc5d-4a89-8f3b-da6fa6e1cfc7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"76fab44b-dc5d-4a89-8f3b-da6fa6e1cfc7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c2df6de9-948f-4a0c-b8a6-242f8d2340e0\", \"organization\": \"df0f7c09-dded-458b-8a93-fe85b2370d14\", \"registration_no\": \"WPI 06101102\"}}]", "object_repr": "Garth Wallace - Pump Installer"}}, {"model": "reversion.version", "pk": 1555, "fields": {"revision": 1311, "object_id": "df0f7c09-dded-458b-8a93-fe85b2370d14", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"df0f7c09-dded-458b-8a93-fe85b2370d14\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wallace Control Systems Corp.\", \"street_address\": \"65 Regina Avenue\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 1J2\", \"main_tel\": \"(250) 590-5501\", \"fax_tel\": \"(250) 590-5593\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wallace Control Systems Corp."}}, {"model": "reversion.version", "pk": 1556, "fields": {"revision": 1312, "object_id": "774506f4-782d-4bb1-b354-930ce382a535", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"774506f4-782d-4bb1-b354-930ce382a535\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c7bb2a7a-384e-4105-9799-60079f57785b\", \"organization\": \"757184ec-f5d6-49eb-973f-2ee24ed3a452\", \"registration_no\": \"WPI 06042401\"}}]", "object_repr": "Wayne Johnson - Pump Installer"}}, {"model": "reversion.version", "pk": 1557, "fields": {"revision": 1312, "object_id": "757184ec-f5d6-49eb-973f-2ee24ed3a452", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"757184ec-f5d6-49eb-973f-2ee24ed3a452\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wayne Johnson Electric\", \"street_address\": \"Box 45\", \"city\": \"Jaffray\", \"province_state\": \"BC\", \"postal_code\": \"V0B 1T0\", \"main_tel\": \"(250) 429-3438\", \"fax_tel\": \"(250) 429-3022\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wayne Johnson Electric"}}, {"model": "reversion.version", "pk": 1558, "fields": {"revision": 1313, "object_id": "77d1e652-61e5-4cee-b4df-e133fe206cbe", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"77d1e652-61e5-4cee-b4df-e133fe206cbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e250b1ce-27e4-465f-9cc4-71d6cd90ca4e\", \"organization\": \"94cb6b2c-898c-41ac-bfcd-58122781bb34\", \"registration_no\": \"WD 06103002\"}}]", "object_repr": "Miles Hock - Well Driller"}}, {"model": "reversion.version", "pk": 1559, "fields": {"revision": 1313, "object_id": "94cb6b2c-898c-41ac-bfcd-58122781bb34", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"94cb6b2c-898c-41ac-bfcd-58122781bb34\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 1560, "fields": {"revision": 1314, "object_id": "78121cae-0b0c-4294-81ca-69fbe4ab091e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"78121cae-0b0c-4294-81ca-69fbe4ab091e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"086e2e60-e861-4cf6-890a-12d625baba33\", \"organization\": \"01e5dc80-447b-457e-882b-fde84802c6e4\", \"registration_no\": \"WPI 06061502\"}}]", "object_repr": "Michael Farina - Pump Installer"}}, {"model": "reversion.version", "pk": 1561, "fields": {"revision": 1314, "object_id": "01e5dc80-447b-457e-882b-fde84802c6e4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01e5dc80-447b-457e-882b-fde84802c6e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kamco Installations Ltd.\", \"street_address\": \"1347 Mission Flats Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 1A9\", \"main_tel\": \"(250) 374-3934\", \"fax_tel\": \"(250) 374-1913\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kamco Installations Ltd."}}, {"model": "reversion.version", "pk": 1562, "fields": {"revision": 1315, "object_id": "7855f881-b8e1-43f5-bc36-bbc239b15ef7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7855f881-b8e1-43f5-bc36-bbc239b15ef7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6e5294f7-6e3e-4cdf-8291-6793a58834aa\", \"organization\": \"67a225cc-2442-4897-a8d9-d162bb7c969c\", \"registration_no\": \"WD 05062307\"}}]", "object_repr": "Daniel Windecker - Well Driller"}}, {"model": "reversion.version", "pk": 1563, "fields": {"revision": 1315, "object_id": "67a225cc-2442-4897-a8d9-d162bb7c969c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"67a225cc-2442-4897-a8d9-d162bb7c969c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D. Windecker Water Wells\", \"street_address\": \"Box 119, 7536 Westholme Road\", \"city\": \"Westholme\", \"province_state\": \"BC\", \"postal_code\": \"V0R 3C0\", \"main_tel\": \"(250) 247-9391\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D. Windecker Water Wells"}}, {"model": "reversion.version", "pk": 1564, "fields": {"revision": 1316, "object_id": "790b68de-553a-4bfe-b0d2-92d1b5ba1626", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"790b68de-553a-4bfe-b0d2-92d1b5ba1626\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"69d86393-7e6d-4b86-a1e3-d2af08e77abf\", \"organization\": \"c76e8fe3-0bd6-4f1f-9d05-f3667a4b3527\", \"registration_no\": \"WPI 17011801\"}}]", "object_repr": "Chris Tremblay - Pump Installer"}}, {"model": "reversion.version", "pk": 1565, "fields": {"revision": 1316, "object_id": "c76e8fe3-0bd6-4f1f-9d05-f3667a4b3527", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c76e8fe3-0bd6-4f1f-9d05-f3667a4b3527\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqueduct Plumbing & Gas Fitting Ltd.\", \"street_address\": \"727-700 Ramage Close\", \"city\": \"Red Deer\", \"province_state\": \"AB\", \"postal_code\": \"T4P 3X8\", \"main_tel\": \"(403) 877-2230\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqueduct Plumbing & Gas Fitting Ltd."}}, {"model": "reversion.version", "pk": 1566, "fields": {"revision": 1317, "object_id": "794558fb-27ff-476a-a94f-4892b76083bd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"794558fb-27ff-476a-a94f-4892b76083bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e198e5da-5292-438f-9689-2e72053e6613\", \"organization\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"registration_no\": \"WPI 05012501\"}}]", "object_repr": "John Vlchek - Pump Installer"}}, {"model": "reversion.version", "pk": 1567, "fields": {"revision": 1317, "object_id": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1568, "fields": {"revision": 1318, "object_id": "794b40f5-ad10-4594-9ac3-e410fa43271c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"794b40f5-ad10-4594-9ac3-e410fa43271c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"34af2ce6-9eca-4e36-935f-349c200c676e\", \"organization\": \"832f2fe0-fc16-4a1e-977f-089c7a0288cf\", \"registration_no\": \"WPI 06032809\"}}]", "object_repr": "William Ripley - Pump Installer"}}, {"model": "reversion.version", "pk": 1569, "fields": {"revision": 1318, "object_id": "832f2fe0-fc16-4a1e-977f-089c7a0288cf", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"832f2fe0-fc16-4a1e-977f-089c7a0288cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gulf Island Pumps\", \"street_address\": \"RR#1, Site 1, Comp 22\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2222\", \"fax_tel\": \"(250) 539-2222\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gulf Island Pumps"}}, {"model": "reversion.version", "pk": 1570, "fields": {"revision": 1319, "object_id": "797d56c3-e0d7-4799-8fa6-086c5c1a750f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"797d56c3-e0d7-4799-8fa6-086c5c1a750f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"13feb07a-b191-442a-8f2d-abbfa6b2f426\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 06011004\"}}]", "object_repr": "Dave Vandal - Well Driller"}}, {"model": "reversion.version", "pk": 1571, "fields": {"revision": 1319, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1572, "fields": {"revision": 1320, "object_id": "79965169-9640-4dd7-8074-24532c92cfa0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"79965169-9640-4dd7-8074-24532c92cfa0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9ba669ad-317b-4ccf-8d06-c69676facd0b\", \"organization\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"registration_no\": \"WD 05032904\"}}]", "object_repr": "Paul Neggers - Well Driller"}}, {"model": "reversion.version", "pk": 1573, "fields": {"revision": 1320, "object_id": "bfeec089-e2bd-4828-b18f-eed4f16d86ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 228-5553\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1574, "fields": {"revision": 1321, "object_id": "7a153dff-9629-4a79-9fd3-0aa32f7066e4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7a153dff-9629-4a79-9fd3-0aa32f7066e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"823150f0-a2d4-4d76-9fa3-0a0fca6be27b\", \"organization\": null, \"registration_no\": \"WPI 12011201\"}}]", "object_repr": "Alain Jacques - Pump Installer"}}, {"model": "reversion.version", "pk": 1575, "fields": {"revision": 1322, "object_id": "7a46c5d8-d4ca-47bd-b713-31dab8a1bf71", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7a46c5d8-d4ca-47bd-b713-31dab8a1bf71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"1ae6944d-aca9-4cd8-b8de-ae6a717b4117\", \"organization\": \"658b905b-ccb7-438b-9f58-012f565e60fe\", \"registration_no\": \"WD 17053101\"}}]", "object_repr": "Mark Loftus - Well Driller"}}, {"model": "reversion.version", "pk": 1576, "fields": {"revision": 1322, "object_id": "658b905b-ccb7-438b-9f58-012f565e60fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"658b905b-ccb7-438b-9f58-012f565e60fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Earth Drilling Co. Ltd.\", \"street_address\": \"P.O Box 1155 2959 Prospector Rd\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K2G0\", \"main_tel\": \"(778) 554-9987\", \"fax_tel\": \"(587) 296-3544\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Earth Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1577, "fields": {"revision": 1323, "object_id": "7b1dc746-8187-40af-9da7-1fbb55e1fc6f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7b1dc746-8187-40af-9da7-1fbb55e1fc6f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"31d0cfb5-8c8b-443d-aff6-e5335d3708bd\", \"organization\": \"d2991cc6-6cbe-40ac-966f-9ba3c2e826e0\", \"registration_no\": \"WD 06032805\"}}]", "object_repr": "Alan Reid - Well Driller"}}, {"model": "reversion.version", "pk": 1578, "fields": {"revision": 1323, "object_id": "d2991cc6-6cbe-40ac-966f-9ba3c2e826e0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d2991cc6-6cbe-40ac-966f-9ba3c2e826e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Big Al's Wells\", \"street_address\": \"Box 36\", \"city\": \"Big Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0L 1G0\", \"main_tel\": \"(250) 243-2346\", \"fax_tel\": \"(250) 243-2346\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Big Al's Wells"}}, {"model": "reversion.version", "pk": 1579, "fields": {"revision": 1324, "object_id": "7b4baf50-1e99-49b4-a8c7-f23a8ca069fc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7b4baf50-1e99-49b4-a8c7-f23a8ca069fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7cb89fae-4b04-42a9-abc2-b6e290ee6ada\", \"organization\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"registration_no\": \"WD 05032902\"}}]", "object_repr": "Clayton Riehl - Well Driller"}}, {"model": "reversion.version", "pk": 1580, "fields": {"revision": 1324, "object_id": "fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe8ee3c0-765f-4ba5-8cdc-333ea8d94b99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Industrial Drillers Ltd.\", \"street_address\": \"16950 Hart Highway\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5T1\", \"main_tel\": \"(250) 971-2422\", \"fax_tel\": \"(250) 971-2207\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Industrial Drillers Ltd."}}, {"model": "reversion.version", "pk": 1581, "fields": {"revision": 1325, "object_id": "7b96c8d0-1a41-4f0b-b1fa-fa7b4ae256f3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7b96c8d0-1a41-4f0b-b1fa-fa7b4ae256f3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d0b3ff55-32a2-4c99-867a-df95c7db4548\", \"organization\": \"ff4413e5-2732-44c1-a1ef-7d789940b3d5\", \"registration_no\": \"WD 05120201\"}}]", "object_repr": "Darryl Bates - Well Driller"}}, {"model": "reversion.version", "pk": 1582, "fields": {"revision": 1325, "object_id": "ff4413e5-2732-44c1-a1ef-7d789940b3d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ff4413e5-2732-44c1-a1ef-7d789940b3d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Diverse Drilling Ltd.\", \"street_address\": \"Box 141\", \"city\": \"Bonanza\", \"province_state\": \"AB\", \"postal_code\": \"T0H 0K0\", \"main_tel\": \"(780) 353-2203\", \"fax_tel\": \"(780) 353-2208\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Diverse Drilling Ltd."}}, {"model": "reversion.version", "pk": 1583, "fields": {"revision": 1326, "object_id": "7bdddd58-e057-4a4b-90ff-66c561dcaf82", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7bdddd58-e057-4a4b-90ff-66c561dcaf82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"89fe417f-2ccc-4fbd-ae7c-bca29456986b\", \"organization\": \"bc95f097-6f98-4cfa-a353-e63f45a65c74\", \"registration_no\": \"WD 06011002\"}}]", "object_repr": "Lloyd Ingram - Well Driller"}}, {"model": "reversion.version", "pk": 1584, "fields": {"revision": 1326, "object_id": "bc95f097-6f98-4cfa-a353-e63f45a65c74", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bc95f097-6f98-4cfa-a353-e63f45a65c74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ingram Drilling Co. (1990) Ltd.\", \"street_address\": \"PO Box 4520\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3J8\", \"main_tel\": \"(250) 249-5292\", \"fax_tel\": \"(778) 414-9112\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ingram Drilling Co. (1990) Ltd."}}, {"model": "reversion.version", "pk": 1585, "fields": {"revision": 1327, "object_id": "7c77105f-b445-4826-8cf5-b3051861e399", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7c77105f-b445-4826-8cf5-b3051861e399\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"bbba4deb-57cb-445c-bdf7-c9c60324cf81\", \"organization\": \"64d5ab3e-0e3a-46cd-9b08-411288aab043\", \"registration_no\": \"WPI 11091201\"}}]", "object_repr": "Andy Beam - Pump Installer"}}, {"model": "reversion.version", "pk": 1586, "fields": {"revision": 1327, "object_id": "64d5ab3e-0e3a-46cd-9b08-411288aab043", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5ab3e-0e3a-46cd-9b08-411288aab043\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"ABC Water Systems Ltd\", \"street_address\": \"9 - 2180 South Wellington Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9X 1V8\", \"main_tel\": \"(250) 753-3333\", \"fax_tel\": \"(250) 753-3364\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "ABC Water Systems Ltd"}}, {"model": "reversion.version", "pk": 1587, "fields": {"revision": 1328, "object_id": "7cb6a689-e97a-479c-a44c-1e1feeba51a0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7cb6a689-e97a-479c-a44c-1e1feeba51a0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ae12c3a2-06af-4f92-8719-e6609112b90a\", \"organization\": \"5320ff29-defd-41bb-bbc2-e7ba5bdb04c3\", \"registration_no\": \"WPI 06103109\"}}]", "object_repr": "Edwin Schneider - Pump Installer"}}, {"model": "reversion.version", "pk": 1588, "fields": {"revision": 1328, "object_id": "5320ff29-defd-41bb-bbc2-e7ba5bdb04c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5320ff29-defd-41bb-bbc2-e7ba5bdb04c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schnieder Services Ltd.\", \"street_address\": \"Box 2033\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A0\", \"main_tel\": \"(250) 567-3010\", \"fax_tel\": \"(250) 567-2595\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schnieder Services Ltd."}}, {"model": "reversion.version", "pk": 1589, "fields": {"revision": 1329, "object_id": "7cb7c1ad-41c3-4688-9b1d-5149cc2a5c0f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7cb7c1ad-41c3-4688-9b1d-5149cc2a5c0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5aad4fcd-ecb0-4dfe-adc1-ed3c0f2509f1\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 06060501\"}}]", "object_repr": "Bernard Strijak - Well Driller"}}, {"model": "reversion.version", "pk": 1590, "fields": {"revision": 1329, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1591, "fields": {"revision": 1330, "object_id": "7ce85fdc-a857-41b2-9c24-21e98e1f2f43", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7ce85fdc-a857-41b2-9c24-21e98e1f2f43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"69059385-7871-4c71-9cc8-c9a3d9fe9b83\", \"organization\": \"871b93eb-24cf-4951-8ce1-a431b8215959\", \"registration_no\": \"WD 15010601\"}}]", "object_repr": "Cecil Myram - Well Driller"}}, {"model": "reversion.version", "pk": 1592, "fields": {"revision": 1330, "object_id": "871b93eb-24cf-4951-8ce1-a431b8215959", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"871b93eb-24cf-4951-8ce1-a431b8215959\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Myram Drilling\", \"street_address\": \"Box 146\", \"city\": \"Cremona\", \"province_state\": \"AB\", \"postal_code\": \"T0M 0R0\", \"main_tel\": \"(403) 637-2113\", \"fax_tel\": \"(403) 637-8698\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Myram Drilling"}}, {"model": "reversion.version", "pk": 1593, "fields": {"revision": 1331, "object_id": "7d2ec4b0-f9b6-481b-8e55-128c6fc86cb3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7d2ec4b0-f9b6-481b-8e55-128c6fc86cb3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e05501d9-cf22-49ae-bfe4-f901c14c5812\", \"organization\": \"8bbc1420-1347-4de3-bd7a-4ac61bdbd01f\", \"registration_no\": \"WD 06030601\"}}]", "object_repr": "Don Bombardier - Well Driller"}}, {"model": "reversion.version", "pk": 1594, "fields": {"revision": 1331, "object_id": "8bbc1420-1347-4de3-bd7a-4ac61bdbd01f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8bbc1420-1347-4de3-bd7a-4ac61bdbd01f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Central Ltd. Partnership\", \"street_address\": \"2264 Ojibway Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1P1\", \"main_tel\": \"(250) 573-5252\", \"fax_tel\": \"(250) 573-5235\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Central Ltd. Partnership"}}, {"model": "reversion.version", "pk": 1595, "fields": {"revision": 1332, "object_id": "7dc4db28-4122-44b9-8c4c-4744b60cd8f4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7dc4db28-4122-44b9-8c4c-4744b60cd8f4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f1088682-a7ad-4231-a2b2-4b04f74f6027\", \"organization\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"registration_no\": \"WD 14032003\"}}]", "object_repr": "Lyndon Stinson - Well Driller"}}, {"model": "reversion.version", "pk": 1596, "fields": {"revision": 1332, "object_id": "46ddbe83-10f3-478f-8c7b-db4b2864e6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 1597, "fields": {"revision": 1333, "object_id": "7e13c9db-f033-4073-9ebc-6f803a18bd30", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7e13c9db-f033-4073-9ebc-6f803a18bd30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"263248be-9401-41b8-8d81-e919b99138e1\", \"organization\": \"b7e99e1f-a04f-47d0-82de-43274b27ff18\", \"registration_no\": \"WD 05022501\"}}]", "object_repr": "Mike Brown - Well Driller"}}, {"model": "reversion.version", "pk": 1598, "fields": {"revision": 1333, "object_id": "b7e99e1f-a04f-47d0-82de-43274b27ff18", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b7e99e1f-a04f-47d0-82de-43274b27ff18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gopher Water Wells\", \"street_address\": \"Box 738\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-4367\", \"fax_tel\": \"(250) 398-6741\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gopher Water Wells"}}, {"model": "reversion.version", "pk": 1599, "fields": {"revision": 1334, "object_id": "7e6b82a7-367c-4292-be7a-4c7e92ae9c0f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7e6b82a7-367c-4292-be7a-4c7e92ae9c0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1a42325f-f55c-4e11-b48e-0e406ada8312\", \"organization\": \"12c23cfa-e47c-409e-9599-1290516950b1\", \"registration_no\": \"WPI 15021301\"}}]", "object_repr": "Chris Davies - Pump Installer"}}, {"model": "reversion.version", "pk": 1600, "fields": {"revision": 1334, "object_id": "12c23cfa-e47c-409e-9599-1290516950b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"12c23cfa-e47c-409e-9599-1290516950b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Johnson's Ground Water Services\", \"street_address\": \"2041 Glenwood Drive\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 4G8\", \"main_tel\": \"(250) 851-3199\", \"fax_tel\": \"(250) 851-3199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Johnson's Ground Water Services"}}, {"model": "reversion.version", "pk": 1601, "fields": {"revision": 1335, "object_id": "7e6e3f50-2b75-40ae-859b-408dafeae50a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7e6e3f50-2b75-40ae-859b-408dafeae50a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"4bd8a9d6-f651-457e-bf6a-6cac4d588abe\", \"organization\": \"01fedb09-f90c-45da-af49-eeda149ed446\", \"registration_no\": \"WPI 05081501\"}}]", "object_repr": "Allan Jacobson - Pump Installer"}}, {"model": "reversion.version", "pk": 1602, "fields": {"revision": 1335, "object_id": "01fedb09-f90c-45da-af49-eeda149ed446", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01fedb09-f90c-45da-af49-eeda149ed446\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alkan Water Well Drilling\", \"street_address\": \"Box 55\", \"city\": \"Tata Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0B 2H0\", \"main_tel\": \"(250) 422-3710\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alkan Water Well Drilling"}}, {"model": "reversion.version", "pk": 1603, "fields": {"revision": 1336, "object_id": "7e79a319-be09-4bfa-b22d-8798808fba04", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7e79a319-be09-4bfa-b22d-8798808fba04\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9e7292ac-313e-4ed4-9469-df707ff650e2\", \"organization\": \"73a38b1f-d0d7-4acc-98f7-d6a7ae67f117\", \"registration_no\": \"WD 16120701\"}}]", "object_repr": "Dave Schwartz - Well Driller"}}, {"model": "reversion.version", "pk": 1604, "fields": {"revision": 1336, "object_id": "73a38b1f-d0d7-4acc-98f7-d6a7ae67f117", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"73a38b1f-d0d7-4acc-98f7-d6a7ae67f117\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uncharted Drilling Solutions INC.\", \"street_address\": \"5488 Graves Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5A6\", \"main_tel\": \"(250)963-1474\", \"fax_tel\": \"(250)963-6646\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uncharted Drilling Solutions INC."}}, {"model": "reversion.version", "pk": 1605, "fields": {"revision": 1337, "object_id": "7f70f1f3-e206-40fe-adfe-7466537e8084", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7f70f1f3-e206-40fe-adfe-7466537e8084\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"263248be-9401-41b8-8d81-e919b99138e1\", \"organization\": \"b7e99e1f-a04f-47d0-82de-43274b27ff18\", \"registration_no\": \"WPI 05111702\"}}]", "object_repr": "Mike Brown - Pump Installer"}}, {"model": "reversion.version", "pk": 1606, "fields": {"revision": 1337, "object_id": "b7e99e1f-a04f-47d0-82de-43274b27ff18", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b7e99e1f-a04f-47d0-82de-43274b27ff18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gopher Water Wells\", \"street_address\": \"Box 738\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-4367\", \"fax_tel\": \"(250) 398-6741\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gopher Water Wells"}}, {"model": "reversion.version", "pk": 1607, "fields": {"revision": 1338, "object_id": "7fe22d8d-32cf-487c-8ebf-136e931b654f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7fe22d8d-32cf-487c-8ebf-136e931b654f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6de28d4a-7aa4-4b49-96e6-f719e4cd6e92\", \"organization\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"registration_no\": \"WD 06101101\"}}]", "object_repr": "Harvey Bombardier - Well Driller"}}, {"model": "reversion.version", "pk": 1608, "fields": {"revision": 1338, "object_id": "91576fc7-0a2e-4d84-867a-49435d61133e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5213\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 1609, "fields": {"revision": 1339, "object_id": "7feeb12f-b87e-4b20-8679-4242400f0713", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7feeb12f-b87e-4b20-8679-4242400f0713\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"007293c3-37f7-402a-96fb-697eab3fab36\", \"organization\": \"1590dfe4-f189-49ec-a7f9-4afa59c00b7c\", \"registration_no\": \"WD 11071401\"}}]", "object_repr": "Justin Faasse - Well Driller"}}, {"model": "reversion.version", "pk": 1610, "fields": {"revision": 1339, "object_id": "1590dfe4-f189-49ec-a7f9-4afa59c00b7c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1590dfe4-f189-49ec-a7f9-4afa59c00b7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"Plaza 33, RPO BOX 23037\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7K7\", \"main_tel\": \"(250) 762-2519\", \"fax_tel\": \"(250) 762-2589\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 1611, "fields": {"revision": 1340, "object_id": "7ffa67a5-e1eb-4af9-aede-e2aefa839e8d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"7ffa67a5-e1eb-4af9-aede-e2aefa839e8d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"dc311f9c-72f3-4396-8cc1-9eb58018ee9b\", \"organization\": \"0069465c-26f6-4aa3-8cf2-27da659d91bd\", \"registration_no\": \"WPI 06100608\"}}]", "object_repr": "Mark Mitchell - Pump Installer"}}, {"model": "reversion.version", "pk": 1612, "fields": {"revision": 1340, "object_id": "0069465c-26f6-4aa3-8cf2-27da659d91bd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0069465c-26f6-4aa3-8cf2-27da659d91bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cameo Plumbing\", \"street_address\": \"Box 1181\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E0\", \"main_tel\": \"(250) 395-3535\", \"fax_tel\": \"(250) 395-2842\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cameo Plumbing"}}, {"model": "reversion.version", "pk": 1613, "fields": {"revision": 1341, "object_id": "801f9da2-3c73-48a5-9e9e-91463d720c6e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"801f9da2-3c73-48a5-9e9e-91463d720c6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e198e5da-5292-438f-9689-2e72053e6613\", \"organization\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"registration_no\": \"WD 05012501\"}}]", "object_repr": "John Vlchek - Well Driller"}}, {"model": "reversion.version", "pk": 1614, "fields": {"revision": 1341, "object_id": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1615, "fields": {"revision": 1342, "object_id": "8035aad5-198c-49ff-a863-6f50654aaf57", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8035aad5-198c-49ff-a863-6f50654aaf57\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"583410d9-c374-46af-b04b-85bc48d52c1d\", \"organization\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"registration_no\": \"WD 06032803\"}}]", "object_repr": "William Fitzgerald - Well Driller"}}, {"model": "reversion.version", "pk": 1616, "fields": {"revision": 1342, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 1617, "fields": {"revision": 1343, "object_id": "808676e0-506f-4c60-9f91-26b65664de17", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"808676e0-506f-4c60-9f91-26b65664de17\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6ed5db05-e756-4952-8b39-06c95985e964\", \"organization\": \"ee03b1e3-a273-472b-8bd1-4f9de6d9488a\", \"registration_no\": \"WPI 06012501\"}}]", "object_repr": "Dale Bystrom - Pump Installer"}}, {"model": "reversion.version", "pk": 1618, "fields": {"revision": 1343, "object_id": "ee03b1e3-a273-472b-8bd1-4f9de6d9488a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ee03b1e3-a273-472b-8bd1-4f9de6d9488a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Torry and Sons Plumbing & Heating Ltd.\", \"street_address\": \"731- 30th Street\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 7S7\", \"main_tel\": \"(250) 338-8865\", \"fax_tel\": \"(250) 338-8305\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Torry and Sons Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 1619, "fields": {"revision": 1344, "object_id": "80e7f8ad-d613-46d8-b373-b9fd87cc18c5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"80e7f8ad-d613-46d8-b373-b9fd87cc18c5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fec3db3c-1100-4c87-aa4a-8dff93fd7e99\", \"organization\": \"8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd\", \"registration_no\": \"WD 06103001\"}}]", "object_repr": "Bernard Henning - Well Driller"}}, {"model": "reversion.version", "pk": 1620, "fields": {"revision": 1344, "object_id": "8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud Henning Drilling & Consulting\", \"street_address\": \"1321 Ellison Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 5M8\", \"main_tel\": \"(250) 747-8629\", \"fax_tel\": \"(205) 747-8675\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud Henning Drilling & Consulting"}}, {"model": "reversion.version", "pk": 1621, "fields": {"revision": 1345, "object_id": "81a3e4be-7a29-41ad-8ca2-be79fcfeebab", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"81a3e4be-7a29-41ad-8ca2-be79fcfeebab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e8a1f4fb-04c1-4cb7-b743-ea2d94ed7552\", \"organization\": \"7b722345-5c9c-48a7-bdbc-062b6468cb7f\", \"registration_no\": \"WPI 06100610\"}}]", "object_repr": "Don Ritchey - Pump Installer"}}, {"model": "reversion.version", "pk": 1622, "fields": {"revision": 1345, "object_id": "7b722345-5c9c-48a7-bdbc-062b6468cb7f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7b722345-5c9c-48a7-bdbc-062b6468cb7f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Suretech Systems & Solutions Inc.\", \"street_address\": \"41-4305 LakeIse Avenue\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 1N5\", \"main_tel\": \"(250) 635-7410\", \"fax_tel\": \"(250) 635-5551\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Suretech Systems & Solutions Inc."}}, {"model": "reversion.version", "pk": 1623, "fields": {"revision": 1346, "object_id": "82b29c30-51fa-45a5-8c95-8da3f6c580d8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"82b29c30-51fa-45a5-8c95-8da3f6c580d8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1e564444-92bd-4802-8d25-3bf96809ff94\", \"organization\": \"8cbb399c-13b6-49e1-ae7d-8174b4264055\", \"registration_no\": \"WPI 05022102\"}}]", "object_repr": "Michael Garthwaite - Pump Installer"}}, {"model": "reversion.version", "pk": 1624, "fields": {"revision": 1346, "object_id": "8cbb399c-13b6-49e1-ae7d-8174b4264055", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8cbb399c-13b6-49e1-ae7d-8174b4264055\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wellmaster Pumps & Water Systems Ltd.\", \"street_address\": \"7983 Simpson Road\", \"city\": \"Saanichton\", \"province_state\": \"BC\", \"postal_code\": \"V8M 2H3\", \"main_tel\": \"(250) 656-7474\", \"fax_tel\": \"(250) 652-7915\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wellmaster Pumps & Water Systems Ltd."}}, {"model": "reversion.version", "pk": 1625, "fields": {"revision": 1347, "object_id": "83553c33-696c-49c3-a1fe-1840ff468ae5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"83553c33-696c-49c3-a1fe-1840ff468ae5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"78603aa2-2f43-4351-bd6c-0a4124389eb9\", \"organization\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"registration_no\": \"WD 06080402\"}}]", "object_repr": "Douglas McDonald - Well Driller"}}, {"model": "reversion.version", "pk": 1626, "fields": {"revision": 1347, "object_id": "2a61e133-61e6-4759-8c63-82a66c4fb9d7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2a61e133-61e6-4759-8c63-82a66c4fb9d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Well Drilling (2000) Ltd.\", \"street_address\": \"4960 Topland Road\", \"city\": \"Courtenay\", \"province_state\": \"BC\", \"postal_code\": \"V9N 5Y2\", \"main_tel\": \"(250) 338-5113\", \"fax_tel\": \"(250) 338-5199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Well Drilling (2000) Ltd."}}, {"model": "reversion.version", "pk": 1627, "fields": {"revision": 1348, "object_id": "8359999c-d349-4c42-8590-fb7f52f83e51", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8359999c-d349-4c42-8590-fb7f52f83e51\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"06182653-b0b3-491e-b58d-3688794f8a86\", \"organization\": null, \"registration_no\": \"WPI 13052201\"}}]", "object_repr": "Sian Mallett - Pump Installer"}}, {"model": "reversion.version", "pk": 1628, "fields": {"revision": 1349, "object_id": "838375df-fedd-4a1b-be1a-c118580ae654", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"838375df-fedd-4a1b-be1a-c118580ae654\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"63e8db45-59bd-46d6-92ac-301717b8c7aa\", \"organization\": null, \"registration_no\": \"WPI 05052902\"}}]", "object_repr": "Mike Nesbit - Pump Installer"}}, {"model": "reversion.version", "pk": 1629, "fields": {"revision": 1350, "object_id": "83f87e7d-3e3b-4d27-968a-baec9b5f1e24", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"83f87e7d-3e3b-4d27-968a-baec9b5f1e24\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"31177f12-5558-46ac-bfb9-e79e7a4698f5\", \"organization\": \"cac4bea2-1d19-4c01-9e5b-aebe32132a2b\", \"registration_no\": \"WD 06102702\"}}]", "object_repr": "John Lypkie - Well Driller"}}, {"model": "reversion.version", "pk": 1630, "fields": {"revision": 1350, "object_id": "cac4bea2-1d19-4c01-9e5b-aebe32132a2b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cac4bea2-1d19-4c01-9e5b-aebe32132a2b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hopper Water Well Drilling Ltd.\", \"street_address\": \"16201 - 92 Street\", \"city\": \"Grand Prairie\", \"province_state\": \"AB\", \"postal_code\": \"T8V 2N8\", \"main_tel\": \"(780) 832-2400\", \"fax_tel\": \"(780) 538-9686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hopper Water Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1631, "fields": {"revision": 1351, "object_id": "847d53ab-c540-4d02-96fc-f6a584e90126", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"847d53ab-c540-4d02-96fc-f6a584e90126\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"263de7d5-9151-466a-ac75-6a64622267db\", \"organization\": \"a3288001-496e-4c5f-8eb4-72a5f148f1b6\", \"registration_no\": \"WPI 07091901\"}}]", "object_repr": "Kirk Domino - Pump Installer"}}, {"model": "reversion.version", "pk": 1632, "fields": {"revision": 1351, "object_id": "a3288001-496e-4c5f-8eb4-72a5f148f1b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a3288001-496e-4c5f-8eb4-72a5f148f1b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Nanaimo Pump & Motor (2005) Ltd.\", \"street_address\": \"2445 Marlborough Drive\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9S 3J6\", \"main_tel\": \"(250) 668-2395\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Nanaimo Pump & Motor (2005) Ltd."}}, {"model": "reversion.version", "pk": 1633, "fields": {"revision": 1352, "object_id": "84a37988-2955-4354-91d9-9ab2425c3673", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"84a37988-2955-4354-91d9-9ab2425c3673\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f3e428b5-3a49-4249-b3cc-92142592ced8\", \"organization\": null, \"registration_no\": \"WPI 06032804\"}}]", "object_repr": "Reg Ayre - Pump Installer"}}, {"model": "reversion.version", "pk": 1634, "fields": {"revision": 1353, "object_id": "84c1b7dd-80a1-47e4-8b5b-ad004bc42da2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"84c1b7dd-80a1-47e4-8b5b-ad004bc42da2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e12f04ec-7c04-4c03-bf53-40c32f68a7c9\", \"organization\": \"d16f6db7-a0ef-4b62-b338-f98fc667cbdc\", \"registration_no\": \"WPI 05011405\"}}]", "object_repr": "Greg Anderson - Pump Installer"}}, {"model": "reversion.version", "pk": 1635, "fields": {"revision": 1353, "object_id": "d16f6db7-a0ef-4b62-b338-f98fc667cbdc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d16f6db7-a0ef-4b62-b338-f98fc667cbdc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mearl's Machine Works Ltd.\", \"street_address\": \"1146 Richter Street\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1Y 2K7\", \"main_tel\": \"(250) 763-0109\", \"fax_tel\": \"(250) 763-5894\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mearl's Machine Works Ltd."}}, {"model": "reversion.version", "pk": 1636, "fields": {"revision": 1354, "object_id": "85806bac-53d1-492c-9d14-e46ea9d78cea", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"85806bac-53d1-492c-9d14-e46ea9d78cea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"04095839-0cc0-4023-ae57-17110b6fa4da\", \"organization\": null, \"registration_no\": \"WPI 06103104\"}}]", "object_repr": "Rick Morritt - Pump Installer"}}, {"model": "reversion.version", "pk": 1637, "fields": {"revision": 1355, "object_id": "85a5b9d0-782e-430c-97b6-2fab5449073b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"85a5b9d0-782e-430c-97b6-2fab5449073b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2d970b96-4d67-4c94-84f0-37a59e20fb3c\", \"organization\": null, \"registration_no\": \"WPI 13052202\"}}]", "object_repr": "Jeff Townsend - Pump Installer"}}, {"model": "reversion.version", "pk": 1638, "fields": {"revision": 1356, "object_id": "86ec7467-5e4e-4be5-a87c-c483c8cc7db6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"86ec7467-5e4e-4be5-a87c-c483c8cc7db6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"aa9c6133-7a7f-433c-8830-4af3e16c0c86\", \"organization\": \"d5784d95-16a1-4d81-9ca4-2e4d9f3007c0\", \"registration_no\": \"WPI 15052901\"}}]", "object_repr": "Neale Lajeunesse - Pump Installer"}}, {"model": "reversion.version", "pk": 1639, "fields": {"revision": 1356, "object_id": "d5784d95-16a1-4d81-9ca4-2e4d9f3007c0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d5784d95-16a1-4d81-9ca4-2e4d9f3007c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"City of Kamloops\", \"street_address\": \"955 Concordia Way\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6V3\", \"main_tel\": \"(250) 828-3461\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "City of Kamloops"}}, {"model": "reversion.version", "pk": 1640, "fields": {"revision": 1357, "object_id": "873708ab-a437-40a0-b054-e391f1e70103", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"873708ab-a437-40a0-b054-e391f1e70103\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"695039c7-f8cc-44d9-a1a4-101bbb0dd00e\", \"organization\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"registration_no\": \"WPI 05110204\"}}]", "object_repr": "Andy Van Esch - Pump Installer"}}, {"model": "reversion.version", "pk": 1641, "fields": {"revision": 1357, "object_id": "75a144d3-196f-49d7-83e0-f00e57a0117b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"AJ Pumps & Water Treatment Ltd.\", \"street_address\": \"46170 Airport Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 1A5\", \"main_tel\": \"(604) 795-2568\", \"fax_tel\": \"(604) 795-2561\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "AJ Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1642, "fields": {"revision": 1358, "object_id": "8807d9ed-cec3-412a-98dd-618f7eafbe91", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8807d9ed-cec3-412a-98dd-618f7eafbe91\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5cf819bd-80a5-46cd-90c6-e38f46992d04\", \"organization\": \"94cb6b2c-898c-41ac-bfcd-58122781bb34\", \"registration_no\": \"WPI 06101302\"}}]", "object_repr": "Brent Stadel - Pump Installer"}}, {"model": "reversion.version", "pk": 1643, "fields": {"revision": 1358, "object_id": "94cb6b2c-898c-41ac-bfcd-58122781bb34", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"94cb6b2c-898c-41ac-bfcd-58122781bb34\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 1644, "fields": {"revision": 1359, "object_id": "885459c4-acc6-45d4-baff-7e6f43e0c086", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"885459c4-acc6-45d4-baff-7e6f43e0c086\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d3873098-0b93-447e-8158-8d1e284d7082\", \"organization\": \"5e1e8f97-07da-4064-9bd2-6b9d65adb47c\", \"registration_no\": \"WPI 06103004\"}}]", "object_repr": "Richard Croft - Pump Installer"}}, {"model": "reversion.version", "pk": 1645, "fields": {"revision": 1359, "object_id": "5e1e8f97-07da-4064-9bd2-6b9d65adb47c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5e1e8f97-07da-4064-9bd2-6b9d65adb47c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Custom Pump Services\", \"street_address\": \"3988 Richardson Road\", \"city\": \"Tappen\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2X1\", \"main_tel\": \"(250) 833-7973\", \"fax_tel\": \"(250) 835-4856\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Custom Pump Services"}}, {"model": "reversion.version", "pk": 1646, "fields": {"revision": 1360, "object_id": "88c98d96-4909-464b-9d97-fd89056d2f9f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"88c98d96-4909-464b-9d97-fd89056d2f9f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"dc25a061-cc98-4ceb-ae8f-70875fefe2d9\", \"organization\": \"b746436e-5b4c-4657-8e91-b11775c66110\", \"registration_no\": \"WPI 06102703\"}}]", "object_repr": "Robert Hockridge - Pump Installer"}}, {"model": "reversion.version", "pk": 1647, "fields": {"revision": 1360, "object_id": "b746436e-5b4c-4657-8e91-b11775c66110", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b746436e-5b4c-4657-8e91-b11775c66110\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Emco Corporation\", \"street_address\": \"1075 Henry Eng Place\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 6B2\", \"main_tel\": \"(250) 391-3050\", \"fax_tel\": \"(250) 475-6201\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Emco Corporation"}}, {"model": "reversion.version", "pk": 1648, "fields": {"revision": 1361, "object_id": "89333a3e-500f-4843-b2c7-5b16e81189d2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"89333a3e-500f-4843-b2c7-5b16e81189d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c2dc239e-fffd-4ce6-bd16-fb5da642b10a\", \"organization\": \"40238aff-f887-4e4d-96d2-d08a6386a6d5\", \"registration_no\": \"WD 05110802\"}}]", "object_repr": "Peter Corley - Well Driller"}}, {"model": "reversion.version", "pk": 1649, "fields": {"revision": 1361, "object_id": "40238aff-f887-4e4d-96d2-d08a6386a6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"40238aff-f887-4e4d-96d2-d08a6386a6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corley Drilling Ltd.\", \"street_address\": \"7286 Black Road\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2W5\", \"main_tel\": \"(250) 804-2632\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corley Drilling Ltd."}}, {"model": "reversion.version", "pk": 1650, "fields": {"revision": 1362, "object_id": "8999ddf0-8ec4-403a-beb0-c800b15ba775", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8999ddf0-8ec4-403a-beb0-c800b15ba775\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f3afc869-7b44-491f-983f-743aa13dcb96\", \"organization\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"registration_no\": \"WPI 06011002\"}}]", "object_repr": "Robert Strate - Pump Installer"}}, {"model": "reversion.version", "pk": 1651, "fields": {"revision": 1362, "object_id": "337332e9-d832-4384-be7f-a06b87edee06", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"337332e9-d832-4384-be7f-a06b87edee06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Delta Irrigation Ltd.\", \"street_address\": \"444 Chilcotin Road\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2H 1G3\", \"main_tel\": \"(250) 372-9424\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Delta Irrigation Ltd."}}, {"model": "reversion.version", "pk": 1652, "fields": {"revision": 1363, "object_id": "8aaac0b3-10bb-45d8-acfe-fa7ee8d79770", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8aaac0b3-10bb-45d8-acfe-fa7ee8d79770\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"518edfd5-d459-437a-b94a-803029de406f\", \"organization\": \"fc1d143f-9ce8-40b5-ba79-811e955ea6e9\", \"registration_no\": \"WD 05030801\"}}]", "object_repr": "John Bourk - Well Driller"}}, {"model": "reversion.version", "pk": 1653, "fields": {"revision": 1363, "object_id": "fc1d143f-9ce8-40b5-ba79-811e955ea6e9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fc1d143f-9ce8-40b5-ba79-811e955ea6e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sun Waterwell Testing 546347 BC Ltd.\", \"street_address\": \"1581 16th Avenue S.E.\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 2M7\", \"main_tel\": \"(250) 832-3742\", \"fax_tel\": \"(250) 832-3725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sun Waterwell Testing 546347 BC Ltd."}}, {"model": "reversion.version", "pk": 1654, "fields": {"revision": 1364, "object_id": "8b70836d-45e5-4263-817d-5f67181c7206", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8b70836d-45e5-4263-817d-5f67181c7206\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2728b074-d9d5-4bc2-bc82-3b3124f2f365\", \"organization\": \"bf94a8fb-f497-46a0-999d-0df85fbbf1a5\", \"registration_no\": \"WPI 05042201\"}}]", "object_repr": "Mike Jones - Pump Installer"}}, {"model": "reversion.version", "pk": 1655, "fields": {"revision": 1364, "object_id": "bf94a8fb-f497-46a0-999d-0df85fbbf1a5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bf94a8fb-f497-46a0-999d-0df85fbbf1a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Pumps & Supplies\", \"street_address\": \"684 McCallum Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8A2\", \"main_tel\": \"(604) 302-1301\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Pumps & Supplies"}}, {"model": "reversion.version", "pk": 1656, "fields": {"revision": 1365, "object_id": "8b711353-2a66-46b7-ac0d-c804b1fc1e83", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8b711353-2a66-46b7-ac0d-c804b1fc1e83\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"72d468d9-8986-4527-9a43-a64343eee3b8\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121407\"}}]", "object_repr": "Scott Burrows - Well Driller"}}, {"model": "reversion.version", "pk": 1657, "fields": {"revision": 1365, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1658, "fields": {"revision": 1366, "object_id": "8c8e69f1-7ea9-455f-b641-5bfa95cf8973", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8c8e69f1-7ea9-455f-b641-5bfa95cf8973\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"612b9ccf-5f46-4cfb-a669-c8fc941010b2\", \"organization\": \"52f87741-da1e-4fdf-9870-8153e30364c7\", \"registration_no\": \"WPI 05101701\"}}]", "object_repr": "David Cherry - Pump Installer"}}, {"model": "reversion.version", "pk": 1659, "fields": {"revision": 1366, "object_id": "52f87741-da1e-4fdf-9870-8153e30364c7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"52f87741-da1e-4fdf-9870-8153e30364c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"IH&S Water Management Systems\", \"street_address\": \"413 Richards Street\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 5J9\", \"main_tel\": \"(250) 352-9668\", \"fax_tel\": \"(250) 352-5060\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "IH&S Water Management Systems"}}, {"model": "reversion.version", "pk": 1660, "fields": {"revision": 1367, "object_id": "8c94ab27-6d8e-4b49-8dc0-ef092f2c9278", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8c94ab27-6d8e-4b49-8dc0-ef092f2c9278\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"83b07431-0eab-4359-92f6-1e29ff890b55\", \"organization\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"registration_no\": \"WD 05111702\"}}]", "object_repr": "Robert Coates - Well Driller"}}, {"model": "reversion.version", "pk": 1661, "fields": {"revision": 1367, "object_id": "ec39dbb1-c5a4-4567-b32c-fbf40231fc6e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Conetec Investigations Ltd.\", \"street_address\": \"12140 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1J8\", \"main_tel\": \"(604) 273-4311\", \"fax_tel\": \"(604) 273-4066\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Conetec Investigations Ltd."}}, {"model": "reversion.version", "pk": 1662, "fields": {"revision": 1368, "object_id": "8cc77d35-4da1-4c69-863c-90f5832c3cc3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8cc77d35-4da1-4c69-863c-90f5832c3cc3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6406ccc3-2065-4d34-9056-a5b7e8ddde35\", \"organization\": \"692a9c77-c8b4-4861-b7cf-943494d2969f\", \"registration_no\": \"WPI 05082402\"}}]", "object_repr": "Wolfgang Scheuer - Pump Installer"}}, {"model": "reversion.version", "pk": 1663, "fields": {"revision": 1368, "object_id": "692a9c77-c8b4-4861-b7cf-943494d2969f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"692a9c77-c8b4-4861-b7cf-943494d2969f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pro Star Mechanical Technologies Ltd.\", \"street_address\": \"206-847 Dunsmuir Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9A 0A5\", \"main_tel\": \"(250) 383-4558\", \"fax_tel\": \"(250) 383-6990\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pro Star Mechanical Technologies Ltd."}}, {"model": "reversion.version", "pk": 1664, "fields": {"revision": 1369, "object_id": "8ce1a872-1462-4bfc-9fc1-5f6e96561a35", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8ce1a872-1462-4bfc-9fc1-5f6e96561a35\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"48006657-e4b0-4164-afbb-ae9d112caa09\", \"organization\": \"f9b3177d-b70a-4279-aafb-af5101ff5dd9\", \"registration_no\": \"WD 05021401\"}}]", "object_repr": "Darrin Parnell - Well Driller"}}, {"model": "reversion.version", "pk": 1665, "fields": {"revision": 1369, "object_id": "f9b3177d-b70a-4279-aafb-af5101ff5dd9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f9b3177d-b70a-4279-aafb-af5101ff5dd9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"2153 25th Street South\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 6Y9\", \"main_tel\": \"(250) 426-0522\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 1666, "fields": {"revision": 1370, "object_id": "8d34090f-523c-4168-a8d9-a11ed7bb1232", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8d34090f-523c-4168-a8d9-a11ed7bb1232\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d54e8020-ff0b-4c7b-8d84-6b45fb21b72c\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121403\"}}]", "object_repr": "Paul Slade - Well Driller"}}, {"model": "reversion.version", "pk": 1667, "fields": {"revision": 1370, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1668, "fields": {"revision": 1371, "object_id": "8d6fe9aa-3613-42df-ad87-e71292d972c2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8d6fe9aa-3613-42df-ad87-e71292d972c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f01c283a-34b3-4646-891b-304b85e93d46\", \"organization\": \"1bf5cf33-840e-4192-a79a-ad9a9a048ec0\", \"registration_no\": \"WD 16082201\"}}]", "object_repr": "Christopher Bauer - Well Driller"}}, {"model": "reversion.version", "pk": 1669, "fields": {"revision": 1371, "object_id": "1bf5cf33-840e-4192-a79a-ad9a9a048ec0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1bf5cf33-840e-4192-a79a-ad9a9a048ec0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"Unit 150, 4611 Viking Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V2V 2K9\", \"main_tel\": \"(604) 273-5776\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 1670, "fields": {"revision": 1372, "object_id": "8da20afd-1043-41f6-b57f-999193824f50", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8da20afd-1043-41f6-b57f-999193824f50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2adb4457-3c29-48e1-a5b2-216fd9be4293\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 16042701\"}}]", "object_repr": "Mark MacNeil - Well Driller"}}, {"model": "reversion.version", "pk": 1671, "fields": {"revision": 1372, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1672, "fields": {"revision": 1373, "object_id": "8e39a016-3bf8-4f3e-8b57-37c30eac811e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8e39a016-3bf8-4f3e-8b57-37c30eac811e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"20f25c99-676e-4d00-8963-bb77d90e469a\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WPI 10110801\"}}]", "object_repr": "Tim Martin - Pump Installer"}}, {"model": "reversion.version", "pk": 1673, "fields": {"revision": 1373, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1674, "fields": {"revision": 1374, "object_id": "8e878171-79ac-4c89-ab28-182e30f3d048", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8e878171-79ac-4c89-ab28-182e30f3d048\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"99a9880d-0b7b-465b-a00e-3145c1c2af18\", \"organization\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"registration_no\": \"WD 06102003\"}}]", "object_repr": "Robert Hawksworth - Well Driller"}}, {"model": "reversion.version", "pk": 1675, "fields": {"revision": 1374, "object_id": "e73b0d14-7527-4f4a-a5f4-29a71215cb3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dynamic Drilling Inc.\", \"street_address\": \"E2 - 225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 298-5943\", \"fax_tel\": \"(604) 936-7377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dynamic Drilling Inc."}}, {"model": "reversion.version", "pk": 1676, "fields": {"revision": 1375, "object_id": "8e9ad741-cf13-4eac-b6b9-b56d55dad35f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8e9ad741-cf13-4eac-b6b9-b56d55dad35f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b3bfa299-bd16-4aa2-9359-15679b1d2f3d\", \"organization\": \"12c23cfa-e47c-409e-9599-1290516950b1\", \"registration_no\": \"WPI 06102704\"}}]", "object_repr": "Robin Johnson - Pump Installer"}}, {"model": "reversion.version", "pk": 1677, "fields": {"revision": 1375, "object_id": "12c23cfa-e47c-409e-9599-1290516950b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"12c23cfa-e47c-409e-9599-1290516950b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Johnson's Ground Water Services\", \"street_address\": \"2041 Glenwood Drive\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 4G8\", \"main_tel\": \"(250) 851-3199\", \"fax_tel\": \"(250) 851-3199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Johnson's Ground Water Services"}}, {"model": "reversion.version", "pk": 1678, "fields": {"revision": 1376, "object_id": "8f227db3-5117-45ff-af16-0b42447de2c9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8f227db3-5117-45ff-af16-0b42447de2c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8db54ef6-aab6-4958-a258-dc2a3e62450e\", \"organization\": null, \"registration_no\": \"WPI 18010802\"}}]", "object_repr": "Brian Czelenski - Pump Installer"}}, {"model": "reversion.version", "pk": 1679, "fields": {"revision": 1377, "object_id": "8f349eb7-ee8b-4fa2-9c40-3901119c354f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8f349eb7-ee8b-4fa2-9c40-3901119c354f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"83bbf4b4-53aa-4cfa-9c9e-ec7635ad92aa\", \"organization\": \"806c6739-24aa-4715-8315-fb898ca13338\", \"registration_no\": \"WPI 06100612\"}}]", "object_repr": "Jared Szeles - Pump Installer"}}, {"model": "reversion.version", "pk": 1680, "fields": {"revision": 1377, "object_id": "806c6739-24aa-4715-8315-fb898ca13338", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"806c6739-24aa-4715-8315-fb898ca13338\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Clean Water Treatment Ltd.\", \"street_address\": \"460 Austad Lane\", \"city\": \"Trail\", \"province_state\": \"BC\", \"postal_code\": \"V1R 3K6\", \"main_tel\": \"(250) 368-9402\", \"fax_tel\": \"(250) 368-9407\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Clean Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1681, "fields": {"revision": 1378, "object_id": "8f504182-63d2-44c6-ac01-0bfca2ccea73", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8f504182-63d2-44c6-ac01-0bfca2ccea73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"76fd6738-50e1-4ad1-844f-166e87799d63\", \"organization\": \"076df909-204a-4235-9ad6-4bda87dddb19\", \"registration_no\": \"WD 06070501\"}}]", "object_repr": "Saul Hock - Well Driller"}}, {"model": "reversion.version", "pk": 1682, "fields": {"revision": 1378, "object_id": "076df909-204a-4235-9ad6-4bda87dddb19", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"076df909-204a-4235-9ad6-4bda87dddb19\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"Box 12006 RPO Murrayville; 23191 Fraser Hwy\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2T2\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 1683, "fields": {"revision": 1379, "object_id": "8f67edf6-5fd5-4c6a-8f9d-bb86d5e393de", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"8f67edf6-5fd5-4c6a-8f9d-bb86d5e393de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"4d82c684-c8f0-482d-96ca-c4e418862877\", \"organization\": \"9f2699c8-50ae-4cf8-9012-7a63277a3b30\", \"registration_no\": \"WPI 06032807\"}}]", "object_repr": "Malcolm Johnston - Pump Installer"}}, {"model": "reversion.version", "pk": 1684, "fields": {"revision": 1379, "object_id": "9f2699c8-50ae-4cf8-9012-7a63277a3b30", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9f2699c8-50ae-4cf8-9012-7a63277a3b30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Moore's Well & Pump Servive Ltd.\", \"street_address\": \"45 Shuswap River Drive\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G6\", \"main_tel\": \"(250) 545-1045\", \"fax_tel\": \"(250) 547-9686\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Moore's Well & Pump Servive Ltd."}}, {"model": "reversion.version", "pk": 1685, "fields": {"revision": 1380, "object_id": "902dd3bf-e4c6-4207-9bd7-c3be0e660a2c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"902dd3bf-e4c6-4207-9bd7-c3be0e660a2c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"76d48dde-fe8e-415e-9b59-544a024dae3e\", \"organization\": \"5b99df30-14c8-43a8-84ac-5208e2bb8c13\", \"registration_no\": \"WPI 06102702\"}}]", "object_repr": "Wayne Beil - Pump Installer"}}, {"model": "reversion.version", "pk": 1686, "fields": {"revision": 1380, "object_id": "5b99df30-14c8-43a8-84ac-5208e2bb8c13", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5b99df30-14c8-43a8-84ac-5208e2bb8c13\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"General Pump & Machine Inc.\", \"street_address\": \"9658 Woodlynn Road\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 0J6\", \"main_tel\": \"(604) 487-0003\", \"fax_tel\": \"(604) 487-0009\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "General Pump & Machine Inc."}}, {"model": "reversion.version", "pk": 1687, "fields": {"revision": 1381, "object_id": "9056e85a-a9b3-499d-b2a2-81aa67f7b4ee", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9056e85a-a9b3-499d-b2a2-81aa67f7b4ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"733701a4-9f00-45d7-9e2f-4d4cbe948f3e\", \"organization\": \"2fa34b8c-1266-4287-98b2-503ca9c6f3da\", \"registration_no\": \"WPI 06090704\"}}]", "object_repr": "Paul Merkel - Pump Installer"}}, {"model": "reversion.version", "pk": 1688, "fields": {"revision": 1381, "object_id": "2fa34b8c-1266-4287-98b2-503ca9c6f3da", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2fa34b8c-1266-4287-98b2-503ca9c6f3da\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"P & P Plumbing Ltd.\", \"street_address\": \"1710 Woodbank Road\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9X 1M8\", \"main_tel\": \"(250) 722-2312\", \"fax_tel\": \"(250) 722-2312\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "P & P Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1689, "fields": {"revision": 1382, "object_id": "90c7e102-3af5-4e21-ac18-664b62622b8a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"90c7e102-3af5-4e21-ac18-664b62622b8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ef9966a7-5cb3-4f22-a92c-8d8f1f279407\", \"organization\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"registration_no\": \"WD 05052905\"}}]", "object_repr": "Michael Caldwell - Well Driller"}}, {"model": "reversion.version", "pk": 1690, "fields": {"revision": 1382, "object_id": "e3512ffd-f5aa-4757-bccd-592e9ecc7600", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e3512ffd-f5aa-4757-bccd-592e9ecc7600\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Owen's Drilling Ltd.\", \"street_address\": \"Box 730, 541 Industrial Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J5\", \"main_tel\": \"(250) 426-2455\", \"fax_tel\": \"(250) 427-7419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Owen's Drilling Ltd."}}, {"model": "reversion.version", "pk": 1691, "fields": {"revision": 1383, "object_id": "90f29f9e-2baa-4650-abb0-999bcf85134e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"90f29f9e-2baa-4650-abb0-999bcf85134e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b8e6da68-3c4e-4253-a990-3b98ae333e71\", \"organization\": \"a5e8b50f-11cd-496d-a5bf-5cf8247b7d75\", \"registration_no\": \"WPI 06112801\"}}]", "object_repr": "Marshall Greenwell - Pump Installer"}}, {"model": "reversion.version", "pk": 1692, "fields": {"revision": 1383, "object_id": "a5e8b50f-11cd-496d-a5bf-5cf8247b7d75", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a5e8b50f-11cd-496d-a5bf-5cf8247b7d75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Nelsen Plumbing\", \"street_address\": \"5852 Mason Road\", \"city\": \"Sechelt\", \"province_state\": \"BC\", \"postal_code\": \"V0N 3A8\", \"main_tel\": \"(604) 885-9754\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Nelsen Plumbing"}}, {"model": "reversion.version", "pk": 1693, "fields": {"revision": 1384, "object_id": "91709315-6c75-4bd6-bad7-0c9ba05db68b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"91709315-6c75-4bd6-bad7-0c9ba05db68b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0befc3f5-14c4-42d9-8893-f8efd4275a3a\", \"organization\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"registration_no\": \"WPI 06061501\"}}]", "object_repr": "Fred Cudlipp - Pump Installer"}}, {"model": "reversion.version", "pk": 1694, "fields": {"revision": 1384, "object_id": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Utilities\", \"street_address\": \"3175 Turner Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7T9\", \"main_tel\": \"(604) 850-0441\", \"fax_tel\": \"(604) 768-9269\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Utilities"}}, {"model": "reversion.version", "pk": 1695, "fields": {"revision": 1385, "object_id": "91817bbb-c414-462e-b469-c5e033864654", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"91817bbb-c414-462e-b469-c5e033864654\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d0ba6bc5-8658-40af-9aad-011b6050854c\", \"organization\": \"db193fd3-8306-4446-b4e2-759a2a59a61f\", \"registration_no\": \"WPI 05101401\"}}]", "object_repr": "James Fyfe - Pump Installer"}}, {"model": "reversion.version", "pk": 1696, "fields": {"revision": 1385, "object_id": "db193fd3-8306-4446-b4e2-759a2a59a61f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db193fd3-8306-4446-b4e2-759a2a59a61f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe Well & Water Services\", \"street_address\": \"1541 Winchester Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y2\", \"main_tel\": \"(250) 752-4986\", \"fax_tel\": \"(250) 248-0830\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe Well & Water Services"}}, {"model": "reversion.version", "pk": 1697, "fields": {"revision": 1386, "object_id": "91b1859d-c6cf-4120-81aa-bc81079c1378", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"91b1859d-c6cf-4120-81aa-bc81079c1378\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5280f8ab-7397-4890-b0a5-a9634d3eec74\", \"organization\": \"dabd57fd-0c4e-472f-9846-f398172b3a94\", \"registration_no\": \"WD 06011001\"}}]", "object_repr": "Richard Bleich - Well Driller"}}, {"model": "reversion.version", "pk": 1698, "fields": {"revision": 1386, "object_id": "dabd57fd-0c4e-472f-9846-f398172b3a94", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dabd57fd-0c4e-472f-9846-f398172b3a94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"10955 Buckhorn Lake Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6A9\", \"main_tel\": \"(250) 963-5651\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1699, "fields": {"revision": 1387, "object_id": "91c0133d-cabf-45b1-a73a-a43bc245cb0b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"91c0133d-cabf-45b1-a73a-a43bc245cb0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ada16416-5cbe-48a2-b6bb-77513fd6a457\", \"organization\": \"28856eaa-91fe-41a9-a412-d312ee1687cd\", \"registration_no\": \"WPI 08062001\"}}]", "object_repr": "Ron Janzen - Pump Installer"}}, {"model": "reversion.version", "pk": 1700, "fields": {"revision": 1387, "object_id": "28856eaa-91fe-41a9-a412-d312ee1687cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"28856eaa-91fe-41a9-a412-d312ee1687cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Heat Smart Geothermal Ltd.\", \"street_address\": \"3481 Playle Road\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 7B9\", \"main_tel\": \"(250) 426-3312\", \"fax_tel\": \"(250) 426-3307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Heat Smart Geothermal Ltd."}}, {"model": "reversion.version", "pk": 1701, "fields": {"revision": 1388, "object_id": "927426dd-eef1-4031-ad9d-00525676f385", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"927426dd-eef1-4031-ad9d-00525676f385\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"397b6da0-75a9-492b-aca0-fdd8d44bfd66\", \"organization\": \"99633948-b722-4f7b-87ef-c58d87a1f1a0\", \"registration_no\": \"WPI 06102501\"}}]", "object_repr": "Gary Davidson - Pump Installer"}}, {"model": "reversion.version", "pk": 1702, "fields": {"revision": 1388, "object_id": "99633948-b722-4f7b-87ef-c58d87a1f1a0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"99633948-b722-4f7b-87ef-c58d87a1f1a0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pender Island Plumbing & Heating Ltd.\", \"street_address\": \"9858 Castle Road\", \"city\": \"Pender Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 2M3\", \"main_tel\": \"(250) 629-3781\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pender Island Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 1703, "fields": {"revision": 1389, "object_id": "928d4247-0b8b-4272-9308-ec0fb4ca0e23", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"928d4247-0b8b-4272-9308-ec0fb4ca0e23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2865f2fc-7ce5-486e-a8e4-5cce33f55bab\", \"organization\": \"ba26826d-fd25-4c9d-92df-5660c256748b\", \"registration_no\": \"WPI 06040702\"}}]", "object_repr": "Julian (Brad) Lockett - Pump Installer"}}, {"model": "reversion.version", "pk": 1704, "fields": {"revision": 1389, "object_id": "ba26826d-fd25-4c9d-92df-5660c256748b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ba26826d-fd25-4c9d-92df-5660c256748b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"The Pump Guy\", \"street_address\": \"Site 21, Comp 5; 620 Montague Road\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2393\", \"fax_tel\": \"(250) 539-5824\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "The Pump Guy"}}, {"model": "reversion.version", "pk": 1705, "fields": {"revision": 1390, "object_id": "933f1cc5-53ca-4b0c-8c3a-f30240e91ecb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"933f1cc5-53ca-4b0c-8c3a-f30240e91ecb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"681510fe-aa59-437e-9e29-5a15f25ed27a\", \"organization\": \"c4376219-711c-47bf-a890-00f8faec2587\", \"registration_no\": \"WD 06042502\"}}]", "object_repr": "Alfred Pepin - Well Driller"}}, {"model": "reversion.version", "pk": 1706, "fields": {"revision": 1390, "object_id": "c4376219-711c-47bf-a890-00f8faec2587", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c4376219-711c-47bf-a890-00f8faec2587\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Pepin Enterprises\", \"street_address\": \"25323 - 12th. Avenue\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 3N2\", \"main_tel\": \"(604) 856-8908\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Pepin Enterprises"}}, {"model": "reversion.version", "pk": 1707, "fields": {"revision": 1391, "object_id": "934e20aa-bd05-4ff8-b26b-63b6933a1447", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"934e20aa-bd05-4ff8-b26b-63b6933a1447\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"97bd0eca-6cec-4373-a803-61f8a39852c8\", \"organization\": \"beb4d625-ea19-4baf-94f1-73a95ba64369\", \"registration_no\": \"WPI 05112101\"}}]", "object_repr": "Sam Rockson - Pump Installer"}}, {"model": "reversion.version", "pk": 1708, "fields": {"revision": 1391, "object_id": "beb4d625-ea19-4baf-94f1-73a95ba64369", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"beb4d625-ea19-4baf-94f1-73a95ba64369\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rockson's Plumbing & Heating Service Ltd.\", \"street_address\": \"3084 - 200th Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 8C8\", \"main_tel\": \"(604) 532-1216\", \"fax_tel\": \"(604) 532-1281\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rockson's Plumbing & Heating Service Ltd."}}, {"model": "reversion.version", "pk": 1709, "fields": {"revision": 1392, "object_id": "9352f16d-fb74-4462-aebb-cb658be71137", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9352f16d-fb74-4462-aebb-cb658be71137\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9022b6a8-3b5a-4ece-855e-b573d785843f\", \"organization\": \"51c9816b-a0d8-452c-aa51-728f20765ee3\", \"registration_no\": \"WPI 12022101\"}}]", "object_repr": "Rudy Tritt - Pump Installer"}}, {"model": "reversion.version", "pk": 1710, "fields": {"revision": 1392, "object_id": "51c9816b-a0d8-452c-aa51-728f20765ee3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"51c9816b-a0d8-452c-aa51-728f20765ee3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"RL7 Mechanical Ltd.\", \"street_address\": \"1065 Murray Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 4K8\", \"main_tel\": \"(250) 392-1742\", \"fax_tel\": \"(250) 392-6335\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "RL7 Mechanical Ltd."}}, {"model": "reversion.version", "pk": 1711, "fields": {"revision": 1393, "object_id": "94c0f65e-2ee7-4fc6-8028-bc97218d6f49", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"94c0f65e-2ee7-4fc6-8028-bc97218d6f49\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5c97c162-14f3-4886-99ae-921183d3dbe7\", \"organization\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"registration_no\": \"WD 06102601\"}}]", "object_repr": "Anthony Kaye - Well Driller"}}, {"model": "reversion.version", "pk": 1712, "fields": {"revision": 1393, "object_id": "c7e17543-1e10-4ff1-afcf-cdfb93e21e20", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Albert Kaye & Sons Drilling Ltd.\", \"street_address\": \"200 Musgrave Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V5\", \"main_tel\": \"(250) 653-4757\", \"fax_tel\": \"(250) 653-4778\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Albert Kaye & Sons Drilling Ltd."}}, {"model": "reversion.version", "pk": 1713, "fields": {"revision": 1394, "object_id": "94d03a08-9a7c-4d9b-b7bb-d103bc2aed0e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"94d03a08-9a7c-4d9b-b7bb-d103bc2aed0e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e11c66cd-c2c6-4298-9c2c-0001a393d3b7\", \"organization\": \"f1d1b9bd-1ca6-4f99-8fc1-273701feba27\", \"registration_no\": \"WPI 05102901\"}}]", "object_repr": "David Schibli - Pump Installer"}}, {"model": "reversion.version", "pk": 1714, "fields": {"revision": 1394, "object_id": "f1d1b9bd-1ca6-4f99-8fc1-273701feba27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f1d1b9bd-1ca6-4f99-8fc1-273701feba27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schibli Drilling\", \"street_address\": \"17 Blue Springs Road\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G1\", \"main_tel\": \"(250) 547-9796\", \"fax_tel\": \"(250) 547-9725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schibli Drilling"}}, {"model": "reversion.version", "pk": 1715, "fields": {"revision": 1395, "object_id": "94f8d756-5fdd-4fc9-81d4-04fe4bc71cd0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"94f8d756-5fdd-4fc9-81d4-04fe4bc71cd0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f948f9b9-9831-444a-9e87-8903699c5a9e\", \"organization\": null, \"registration_no\": \"WPI 07100201\"}}]", "object_repr": "Dave Smith - Pump Installer"}}, {"model": "reversion.version", "pk": 1716, "fields": {"revision": 1396, "object_id": "956ab3ef-4c78-4495-817e-b9890b87e040", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"956ab3ef-4c78-4495-817e-b9890b87e040\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"289d196a-bdab-4078-8312-eee9058deedf\", \"organization\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"registration_no\": \"WPI 05021402\"}}]", "object_repr": "Donald Stober - Pump Installer"}}, {"model": "reversion.version", "pk": 1717, "fields": {"revision": 1396, "object_id": "d030bb92-e2db-4466-9514-abdb204fe8ad", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Valley H2O Well and Pump Service Ltd.\", \"street_address\": \"Box 895\", \"city\": \"Invermere\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1K0\", \"main_tel\": \"(250) 342-9466\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Valley H2O Well and Pump Service Ltd."}}, {"model": "reversion.version", "pk": 1718, "fields": {"revision": 1397, "object_id": "9612bb64-4509-4452-8fc8-359f6c84d53d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9612bb64-4509-4452-8fc8-359f6c84d53d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6fdf51f8-8a77-4339-a5d8-2c72450a6430\", \"organization\": \"9aec04ae-dd27-4471-b5cc-792fb31c4498\", \"registration_no\": \"WD 06011201\"}}]", "object_repr": "Kenneth Krenbrink - Well Driller"}}, {"model": "reversion.version", "pk": 1719, "fields": {"revision": 1397, "object_id": "9aec04ae-dd27-4471-b5cc-792fb31c4498", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9aec04ae-dd27-4471-b5cc-792fb31c4498\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tri-K Drilling Ltd.\", \"street_address\": \"3047 Glen Lake Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 4B3\", \"main_tel\": \"(250) 478-5064\", \"fax_tel\": \"(250) 478-2749\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tri-K Drilling Ltd."}}, {"model": "reversion.version", "pk": 1720, "fields": {"revision": 1398, "object_id": "96805b89-e47b-465d-8a6d-26823d2d37b2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"96805b89-e47b-465d-8a6d-26823d2d37b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d6dca31d-c5cc-4fa2-98d4-a530572755f2\", \"organization\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"registration_no\": \"WPI 06101301\"}}]", "object_repr": "Glen Fyfe - Pump Installer"}}, {"model": "reversion.version", "pk": 1721, "fields": {"revision": 1398, "object_id": "4287eb48-5a40-4ce1-a139-dab36bdbef27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Well Drilling Ltd.\", \"street_address\": \"3331 Alberni Highway\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y5\", \"main_tel\": \"(250) 752-9358\", \"fax_tel\": \"(250) 752-1274\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1722, "fields": {"revision": 1399, "object_id": "96a7d4fa-5a22-488d-9e63-b0904b4b7556", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"96a7d4fa-5a22-488d-9e63-b0904b4b7556\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b5a297c5-b769-432b-9476-54bfaf0a38d4\", \"organization\": \"bf767aec-6c24-4e41-ada9-e264e160fb94\", \"registration_no\": \"WD 05101102\"}}]", "object_repr": "Derek Tomlinson - Well Driller"}}, {"model": "reversion.version", "pk": 1723, "fields": {"revision": 1399, "object_id": "bf767aec-6c24-4e41-ada9-e264e160fb94", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bf767aec-6c24-4e41-ada9-e264e160fb94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hotearth Energy Systems\", \"street_address\": \"3560 Hallberg Road\", \"city\": \"Ladysmith\", \"province_state\": \"BC\", \"postal_code\": \"V9G 1L4\", \"main_tel\": \"(250) 245-5702\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hotearth Energy Systems"}}, {"model": "reversion.version", "pk": 1724, "fields": {"revision": 1400, "object_id": "96bd16c7-7646-4552-ae2e-441c78eb70b9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"96bd16c7-7646-4552-ae2e-441c78eb70b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"065f85b5-f327-46ce-a928-2cb157687ee6\", \"organization\": \"6611bef2-d8b4-4d3e-8d6f-f4d1cff59871\", \"registration_no\": \"WPI 06090603\"}}]", "object_repr": "Henry Taylor - Pump Installer"}}, {"model": "reversion.version", "pk": 1725, "fields": {"revision": 1400, "object_id": "6611bef2-d8b4-4d3e-8d6f-f4d1cff59871", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6611bef2-d8b4-4d3e-8d6f-f4d1cff59871\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Reliance Well & Water Systems\", \"street_address\": \"9828 Pelly Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H4\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Reliance Well & Water Systems"}}, {"model": "reversion.version", "pk": 1726, "fields": {"revision": 1401, "object_id": "97edce28-ed3b-4629-9f7e-6cb4d8408aa8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"97edce28-ed3b-4629-9f7e-6cb4d8408aa8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"057dfb07-d8ba-4f3f-bac4-a0c82cc12347\", \"organization\": \"18623bcb-beea-4826-8077-d3e9ec6db131\", \"registration_no\": \"WD 08042501\"}}]", "object_repr": "Logan Flett - Well Driller"}}, {"model": "reversion.version", "pk": 1727, "fields": {"revision": 1401, "object_id": "18623bcb-beea-4826-8077-d3e9ec6db131", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"18623bcb-beea-4826-8077-d3e9ec6db131\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dan-Gare Drilling Ltd.\", \"street_address\": \"Box 722\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B0\", \"main_tel\": \"(250) 546-3480\", \"fax_tel\": \"(250) 546-3603\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dan-Gare Drilling Ltd."}}, {"model": "reversion.version", "pk": 1728, "fields": {"revision": 1402, "object_id": "98f69f57-5a3d-4cc2-b062-5d0f63e33cd3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"98f69f57-5a3d-4cc2-b062-5d0f63e33cd3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"de3d3d0e-8163-4d22-82b9-a8bab3e6fe83\", \"organization\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"registration_no\": \"WPI 06100605\"}}]", "object_repr": "Jim Desjarlais - Pump Installer"}}, {"model": "reversion.version", "pk": 1729, "fields": {"revision": 1402, "object_id": "5a21d9cb-c3bc-4805-9764-9a204561d768", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ted's Plumbing & Heating Inc.\", \"street_address\": \"23008 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 888-9625\", \"fax_tel\": \"(604) 514-1141\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ted's Plumbing & Heating Inc."}}, {"model": "reversion.version", "pk": 1730, "fields": {"revision": 1403, "object_id": "9972cfee-53a2-4306-839f-b9e6949879a6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9972cfee-53a2-4306-839f-b9e6949879a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"96061132-77c6-40cb-8c15-20128e8e5321\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 05041503\"}}]", "object_repr": "Gary Yeo - Well Driller"}}, {"model": "reversion.version", "pk": 1731, "fields": {"revision": 1403, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1732, "fields": {"revision": 1404, "object_id": "99772c19-ba11-4676-8e20-95cf9fb050fd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"99772c19-ba11-4676-8e20-95cf9fb050fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a41d722f-42f3-4597-a9d6-38b5bbec7a84\", \"organization\": null, \"registration_no\": \"WD 09042301\"}}]", "object_repr": "Philip Reeves - Well Driller"}}, {"model": "reversion.version", "pk": 1733, "fields": {"revision": 1405, "object_id": "9a526bd6-d5c0-4f7e-972a-f00576653a6a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9a526bd6-d5c0-4f7e-972a-f00576653a6a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"44c46668-9644-46d4-8a04-572d5ed49431\", \"organization\": \"2bdd99b8-ee59-46bb-bd91-7e433fc6aad7\", \"registration_no\": \"WPI 05042202\"}}]", "object_repr": "Michael Cullen - Pump Installer"}}, {"model": "reversion.version", "pk": 1734, "fields": {"revision": 1405, "object_id": "2bdd99b8-ee59-46bb-bd91-7e433fc6aad7", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"2bdd99b8-ee59-46bb-bd91-7e433fc6aad7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cullen Water Systems Inc.\", \"street_address\": \"349 Benjamin Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8Z 6L9\", \"main_tel\": \"(250) 744-3451\", \"fax_tel\": \"(250) 479-3886\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cullen Water Systems Inc."}}, {"model": "reversion.version", "pk": 1735, "fields": {"revision": 1406, "object_id": "9a99e73b-4b57-40b2-99c3-58696c9f6a3c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9a99e73b-4b57-40b2-99c3-58696c9f6a3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c4e0f611-d051-479f-90c4-19fc9b65ce94\", \"organization\": \"f84510b9-7024-4dd3-a960-fcc9c4860e25\", \"registration_no\": \"WD 17050101\"}}]", "object_repr": "Donkun Caron - Well Driller"}}, {"model": "reversion.version", "pk": 1736, "fields": {"revision": 1406, "object_id": "f84510b9-7024-4dd3-a960-fcc9c4860e25", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f84510b9-7024-4dd3-a960-fcc9c4860e25\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canadian Quality Control inc.\", \"street_address\": \"2924 Piper Rd\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2H8\", \"main_tel\": \"778-340-9281\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canadian Quality Control inc."}}, {"model": "reversion.version", "pk": 1737, "fields": {"revision": 1407, "object_id": "9aa6c6d9-2296-4424-98b0-0b54c249da47", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9aa6c6d9-2296-4424-98b0-0b54c249da47\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5482b32a-58c9-4fa7-bea5-84e9dcbd4407\", \"organization\": null, \"registration_no\": \"WPI 05042203\"}}]", "object_repr": "Charles Rogers - Pump Installer"}}, {"model": "reversion.version", "pk": 1738, "fields": {"revision": 1408, "object_id": "9aae7e49-155d-48b3-ac48-890fdfcfe12e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9aae7e49-155d-48b3-ac48-890fdfcfe12e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"89831c1d-a0b1-49af-a296-4c546ccb405a\", \"organization\": \"daeaa7af-d442-43a8-a049-3b77e2e4e24a\", \"registration_no\": \"WD 08101501\"}}]", "object_repr": "Albert Oostenbrink - Well Driller"}}, {"model": "reversion.version", "pk": 1739, "fields": {"revision": 1408, "object_id": "daeaa7af-d442-43a8-a049-3b77e2e4e24a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"daeaa7af-d442-43a8-a049-3b77e2e4e24a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Peters Well Drilling Ltd.\", \"street_address\": \"44160 Yale Road West\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 3Z9\", \"main_tel\": \"(604) 819-9355\", \"fax_tel\": \"(604) 792-6886\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Peters Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1740, "fields": {"revision": 1409, "object_id": "9abd3191-4796-44b4-8b59-799a1ab2ef46", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9abd3191-4796-44b4-8b59-799a1ab2ef46\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9a9974e2-e49a-4688-a2a7-0723aaf5d4bb\", \"organization\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"registration_no\": \"WD 14112601\"}}]", "object_repr": "John Young - Well Driller"}}, {"model": "reversion.version", "pk": 1741, "fields": {"revision": 1409, "object_id": "46ddbe83-10f3-478f-8c7b-db4b2864e6d5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"46ddbe83-10f3-478f-8c7b-db4b2864e6d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alken Basin Drilling Ltd.\", \"street_address\": \"Box 47\", \"city\": \"Bentley\", \"province_state\": \"AB\", \"postal_code\": \"T0C 0J0\", \"main_tel\": \"(403) 748-4340\", \"fax_tel\": \"(403) 748-2880\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alken Basin Drilling Ltd."}}, {"model": "reversion.version", "pk": 1742, "fields": {"revision": 1410, "object_id": "9b20d14d-bb7b-43fe-81e7-216b8b201a7c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9b20d14d-bb7b-43fe-81e7-216b8b201a7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6ee4ef67-7a6d-4808-8bdf-11a6a0114059\", \"organization\": \"e8f75bff-ad4f-461d-8f07-369ab120bb1b\", \"registration_no\": \"WPI 05092702\"}}]", "object_repr": "Bruce Grey - Pump Installer"}}, {"model": "reversion.version", "pk": 1743, "fields": {"revision": 1410, "object_id": "e8f75bff-ad4f-461d-8f07-369ab120bb1b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e8f75bff-ad4f-461d-8f07-369ab120bb1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Big Country Pumps\", \"street_address\": \"Box 252, 2942 Kengin Road\", \"city\": \"150 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2G0\", \"main_tel\": \"(250) 296-3521\", \"fax_tel\": \"(250) 296-4703\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Big Country Pumps"}}, {"model": "reversion.version", "pk": 1744, "fields": {"revision": 1411, "object_id": "9b4d4855-6e93-420d-88c2-8feb0433bf29", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9b4d4855-6e93-420d-88c2-8feb0433bf29\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"49272c88-bec9-4950-a869-60525f451d6a\", \"organization\": null, \"registration_no\": \"WD 16081001\"}}]", "object_repr": "Douglas McConkey - Well Driller"}}, {"model": "reversion.version", "pk": 1745, "fields": {"revision": 1412, "object_id": "9bae0b0c-ddd0-4969-999c-c513039222fa", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9bae0b0c-ddd0-4969-999c-c513039222fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b3e69424-4179-48f0-8c68-a6cb01f7727b\", \"organization\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"registration_no\": \"WD 06102303\"}}]", "object_repr": "William Schwartz - Well Driller"}}, {"model": "reversion.version", "pk": 1746, "fields": {"revision": 1412, "object_id": "e73b0d14-7527-4f4a-a5f4-29a71215cb3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dynamic Drilling Inc.\", \"street_address\": \"E2 - 225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 298-5943\", \"fax_tel\": \"(604) 936-7377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dynamic Drilling Inc."}}, {"model": "reversion.version", "pk": 1747, "fields": {"revision": 1413, "object_id": "9bbcf487-5370-48e7-8aeb-89fc8233dffb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9bbcf487-5370-48e7-8aeb-89fc8233dffb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1ff3cf1f-a1a8-425d-b587-fb3c418b0aff\", \"organization\": \"fa277082-4bbe-4729-8109-9919b2af5e8c\", \"registration_no\": \"WPI 06100609\"}}]", "object_repr": "Charles Reitsma - Pump Installer"}}, {"model": "reversion.version", "pk": 1748, "fields": {"revision": 1413, "object_id": "fa277082-4bbe-4729-8109-9919b2af5e8c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fa277082-4bbe-4729-8109-9919b2af5e8c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"C & A Plumbing & Heating Ltd\", \"street_address\": \"PO Box 1185\", \"city\": \"Houston\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1Z0\", \"main_tel\": \"(250) 845-2240\", \"fax_tel\": \"(250) 845-2604\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "C & A Plumbing & Heating Ltd"}}, {"model": "reversion.version", "pk": 1749, "fields": {"revision": 1414, "object_id": "9cb33182-e7a6-494d-a745-69220cb67120", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9cb33182-e7a6-494d-a745-69220cb67120\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fab27278-34dc-4560-8780-8bc298c7772d\", \"organization\": \"44ca2c30-820c-4944-8345-7ccce1f3793c\", \"registration_no\": \"WD 06062101\"}}]", "object_repr": "Jason Halyk - Well Driller"}}, {"model": "reversion.version", "pk": 1750, "fields": {"revision": 1414, "object_id": "44ca2c30-820c-4944-8345-7ccce1f3793c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"44ca2c30-820c-4944-8345-7ccce1f3793c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services Ltd.\", \"street_address\": \"3334 Sexsmith Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7S5\", \"main_tel\": \"(250) 860-6664\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services Ltd."}}, {"model": "reversion.version", "pk": 1751, "fields": {"revision": 1415, "object_id": "9db2f8a3-9461-42d6-bed9-3d8c1a9780c8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9db2f8a3-9461-42d6-bed9-3d8c1a9780c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"41eed482-9df2-43ae-b6f5-541099b8e3ca\", \"organization\": \"632d6188-6220-49a5-b5a9-5f8bb8f22b36\", \"registration_no\": \"WD 05110201\"}}]", "object_repr": "Ryan Samis - Well Driller"}}, {"model": "reversion.version", "pk": 1752, "fields": {"revision": 1415, "object_id": "632d6188-6220-49a5-b5a9-5f8bb8f22b36", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"632d6188-6220-49a5-b5a9-5f8bb8f22b36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"1-740 Waddington Drive\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1T 9E9\", \"main_tel\": \"(250) 549-2393\", \"fax_tel\": \"(250) 549-3387\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1753, "fields": {"revision": 1416, "object_id": "9df1d3dc-6ee8-4add-b4af-a5d400d9df90", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9df1d3dc-6ee8-4add-b4af-a5d400d9df90\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"37fa76e5-63a1-4e36-98f6-20330d1d9b2d\", \"organization\": \"750ef95d-0a1f-471f-bd5e-cfff6e04a04d\", \"registration_no\": \"WD 17090601\"}}]", "object_repr": "Keldon Ehalt - Well Driller"}}, {"model": "reversion.version", "pk": 1754, "fields": {"revision": 1416, "object_id": "750ef95d-0a1f-471f-bd5e-cfff6e04a04d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"750ef95d-0a1f-471f-bd5e-cfff6e04a04d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ellen Eyre\", \"street_address\": \"1114 - 14th Street\", \"city\": \"Canmore\", \"province_state\": \"AB\", \"postal_code\": \"T1W 1V7\", \"main_tel\": \"(403) 477-3309\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ellen Eyre"}}, {"model": "reversion.version", "pk": 1755, "fields": {"revision": 1417, "object_id": "9e226453-a9eb-481b-8c5e-6af25120fd2d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9e226453-a9eb-481b-8c5e-6af25120fd2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"717d16fe-271c-4014-ae78-860ed56df2ca\", \"organization\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"registration_no\": \"WD 05022101\"}}]", "object_repr": "Doug Lemal - Well Driller"}}, {"model": "reversion.version", "pk": 1756, "fields": {"revision": 1417, "object_id": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1757, "fields": {"revision": 1418, "object_id": "9e5e6288-240b-4d04-90a5-6b6006a33b43", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9e5e6288-240b-4d04-90a5-6b6006a33b43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1dd440ef-c84c-4ee3-a107-c3096368d812\", \"organization\": \"9cda4aab-ddbb-47a8-98af-8c878870fb62\", \"registration_no\": \"WPI 05081601\"}}]", "object_repr": "Ian McGill - Pump Installer"}}, {"model": "reversion.version", "pk": 1758, "fields": {"revision": 1418, "object_id": "9cda4aab-ddbb-47a8-98af-8c878870fb62", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9cda4aab-ddbb-47a8-98af-8c878870fb62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"McGill's Well Service\", \"street_address\": \"Box 1229\", \"city\": \"Cumberland\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1S0\", \"main_tel\": \"(250) 338-1661\", \"fax_tel\": \"(250) 336-2199\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "McGill's Well Service"}}, {"model": "reversion.version", "pk": 1759, "fields": {"revision": 1419, "object_id": "9eb789de-bdc6-4949-8de5-399bc8fd0bee", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9eb789de-bdc6-4949-8de5-399bc8fd0bee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ee6d4a9f-8754-4432-a3be-77fac8eed4e7\", \"organization\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"registration_no\": \"WPI 06101805\"}}]", "object_repr": "George Lewis - Pump Installer"}}, {"model": "reversion.version", "pk": 1760, "fields": {"revision": 1419, "object_id": "5a21d9cb-c3bc-4805-9764-9a204561d768", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ted's Plumbing & Heating Inc.\", \"street_address\": \"23008 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 888-9625\", \"fax_tel\": \"(604) 514-1141\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ted's Plumbing & Heating Inc."}}, {"model": "reversion.version", "pk": 1761, "fields": {"revision": 1420, "object_id": "9f94a481-3901-4c87-95b8-e01060c57633", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"9f94a481-3901-4c87-95b8-e01060c57633\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"81cadfdf-1dde-47ba-96f8-437199b8ed96\", \"organization\": \"cef8807e-51d8-4f16-ad48-bfb5287324cd\", \"registration_no\": \"WD 05081501\"}}]", "object_repr": "Bruce Stewart - Well Driller"}}, {"model": "reversion.version", "pk": 1762, "fields": {"revision": 1420, "object_id": "cef8807e-51d8-4f16-ad48-bfb5287324cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cef8807e-51d8-4f16-ad48-bfb5287324cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stewart Drilling Ltd.\", \"street_address\": \"2041 14th Street S.W.\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 1L6\", \"main_tel\": \"(2500 832-4722\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stewart Drilling Ltd."}}, {"model": "reversion.version", "pk": 1763, "fields": {"revision": 1421, "object_id": "a03629de-f417-4d49-a402-a7afe49d4558", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a03629de-f417-4d49-a402-a7afe49d4558\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8501e520-34de-4b12-bf7e-d5e89ad77f27\", \"organization\": null, \"registration_no\": \"WPI 05082201\"}}]", "object_repr": "Darren Mitchell - Pump Installer"}}, {"model": "reversion.version", "pk": 1764, "fields": {"revision": 1422, "object_id": "a0401b08-ab89-4425-9bec-5269f420d07b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a0401b08-ab89-4425-9bec-5269f420d07b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"05678190-895d-4bf2-8bf1-cedf611420e9\", \"organization\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"registration_no\": \"WPI 05060601\"}}]", "object_repr": "John Van Esch - Pump Installer"}}, {"model": "reversion.version", "pk": 1765, "fields": {"revision": 1422, "object_id": "75a144d3-196f-49d7-83e0-f00e57a0117b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"75a144d3-196f-49d7-83e0-f00e57a0117b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"AJ Pumps & Water Treatment Ltd.\", \"street_address\": \"46170 Airport Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 1A5\", \"main_tel\": \"(604) 795-2568\", \"fax_tel\": \"(604) 795-2561\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "AJ Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1766, "fields": {"revision": 1423, "object_id": "a0ca1894-e686-4c86-ab75-d53d4e841816", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a0ca1894-e686-4c86-ab75-d53d4e841816\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9356ed4e-0d06-461e-98e8-b0029b4a757f\", \"organization\": null, \"registration_no\": \"WPI 13092601\"}}]", "object_repr": "Romain Hoet - Pump Installer"}}, {"model": "reversion.version", "pk": 1767, "fields": {"revision": 1424, "object_id": "a1412182-4373-4562-83ff-f7d0cceb1050", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a1412182-4373-4562-83ff-f7d0cceb1050\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"80b7fe72-f3e2-436e-b6d9-fae2cdea6195\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 06091301\"}}]", "object_repr": "Cory Dobson - Well Driller"}}, {"model": "reversion.version", "pk": 1768, "fields": {"revision": 1424, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1769, "fields": {"revision": 1425, "object_id": "a1b1dd78-a98d-4d87-840d-e5b9ff298ab0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a1b1dd78-a98d-4d87-840d-e5b9ff298ab0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6a926473-1df4-4c08-8c3a-2f628e412890\", \"organization\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"registration_no\": \"WPI 05082501\"}}]", "object_repr": "Ryan James - Pump Installer"}}, {"model": "reversion.version", "pk": 1770, "fields": {"revision": 1425, "object_id": "e9a3778c-0bc6-400c-a582-5a72f910f763", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Pump Service Ltd.\", \"street_address\": \"1139A Industrial Road #3\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 5E3\", \"main_tel\": \"(250) 426-4069\", \"fax_tel\": \"(250) 426-8425\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Pump Service Ltd."}}, {"model": "reversion.version", "pk": 1771, "fields": {"revision": 1426, "object_id": "a28c31a7-3341-451b-806f-8c318925cc9d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a28c31a7-3341-451b-806f-8c318925cc9d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6b3e9423-55c1-4893-9fd1-0b893c6d1f62\", \"organization\": \"5298ce6e-ae42-46ce-8ba1-3d2f39e828b6\", \"registration_no\": \"WPI 05071101\"}}]", "object_repr": "Jamie O'Neil - Pump Installer"}}, {"model": "reversion.version", "pk": 1772, "fields": {"revision": 1426, "object_id": "5298ce6e-ae42-46ce-8ba1-3d2f39e828b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5298ce6e-ae42-46ce-8ba1-3d2f39e828b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"EDS Pumps & Water Treatment Ltd.\", \"street_address\": \"23184 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 534-1115\", \"fax_tel\": \"(604) 534-5522\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "EDS Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1773, "fields": {"revision": 1427, "object_id": "a298c140-0cc7-4db4-bdb8-0040ca69e308", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a298c140-0cc7-4db4-bdb8-0040ca69e308\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3a6a6ff4-93dc-4190-a6b3-abbe4ccf21ef\", \"organization\": \"d4087520-5586-43b0-9c30-3929a044b5aa\", \"registration_no\": \"WPI 06041201\"}}]", "object_repr": "Brian Strachan - Pump Installer"}}, {"model": "reversion.version", "pk": 1774, "fields": {"revision": 1427, "object_id": "d4087520-5586-43b0-9c30-3929a044b5aa", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d4087520-5586-43b0-9c30-3929a044b5aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gabriola Waterworks\", \"street_address\": \"915 Horseshoe Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X3\", \"main_tel\": \"(250) 247-8263\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gabriola Waterworks"}}, {"model": "reversion.version", "pk": 1775, "fields": {"revision": 1428, "object_id": "a303cbb4-917f-4d32-8c49-518ee3197a62", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a303cbb4-917f-4d32-8c49-518ee3197a62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"219f297c-5da7-41d1-8e30-5983658022e9\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06103009\"}}]", "object_repr": "George Gottschall - Well Driller"}}, {"model": "reversion.version", "pk": 1776, "fields": {"revision": 1428, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1777, "fields": {"revision": 1429, "object_id": "a31afd6f-bca3-4c12-b7f4-ae6a97368b06", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a31afd6f-bca3-4c12-b7f4-ae6a97368b06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"651c0f88-3888-41c3-8e0d-6884c2de7f2d\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 05081502\"}}]", "object_repr": "Randy Creamer - Well Driller"}}, {"model": "reversion.version", "pk": 1778, "fields": {"revision": 1429, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1779, "fields": {"revision": 1430, "object_id": "a328f564-2398-4f6e-8df1-e8d3a81f6893", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a328f564-2398-4f6e-8df1-e8d3a81f6893\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e991aa01-e6c3-4c25-b68d-1a1f70d72281\", \"organization\": \"8fa406c8-6ec0-4889-b478-26edfd1f3dbe\", \"registration_no\": \"WD 17060902\"}}]", "object_repr": "Ernest Wipf - Well Driller"}}, {"model": "reversion.version", "pk": 1780, "fields": {"revision": 1430, "object_id": "8fa406c8-6ec0-4889-b478-26edfd1f3dbe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8fa406c8-6ec0-4889-b478-26edfd1f3dbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tundra Environmental & Geotechnical Drilling Ltd.\", \"street_address\": \"Box 207\", \"city\": \"Stettler\", \"province_state\": \"AB\", \"postal_code\": \"T0C 2L0\", \"main_tel\": \"(403) 742-6601\", \"fax_tel\": \"(403) 742-6651\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tundra Environmental & Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 1781, "fields": {"revision": 1431, "object_id": "a3349e30-2952-42fa-8664-9d642635ba6e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a3349e30-2952-42fa-8664-9d642635ba6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c0efa5a7-5e08-4fe0-9e27-d365f9691639\", \"organization\": \"c49516b4-8408-442f-a123-d919141f32f1\", \"registration_no\": \"WPI 06090702\"}}]", "object_repr": "Ray Hehn - Pump Installer"}}, {"model": "reversion.version", "pk": 1782, "fields": {"revision": 1431, "object_id": "c49516b4-8408-442f-a123-d919141f32f1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c49516b4-8408-442f-a123-d919141f32f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dewdney Enterprises Ltd.\", \"street_address\": \"35007 B Lougheed Hwy\", \"city\": \"Mission\", \"province_state\": \"BC\", \"postal_code\": \"V2V 6T1\", \"main_tel\": \"(604) 826-1771\", \"fax_tel\": \"(604) 820-9458\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dewdney Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1783, "fields": {"revision": 1432, "object_id": "a3eadf9c-78e3-41bd-a90e-76c4be8da126", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a3eadf9c-78e3-41bd-a90e-76c4be8da126\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"388c43c8-fb2b-4ede-bf62-fe57fd4c1c41\", \"organization\": \"6bf6a0a6-fe0f-4969-9006-c9c5aca5c077\", \"registration_no\": \"WD 15092501\"}}]", "object_repr": "Randy Post - Well Driller"}}, {"model": "reversion.version", "pk": 1784, "fields": {"revision": 1432, "object_id": "6bf6a0a6-fe0f-4969-9006-c9c5aca5c077", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6bf6a0a6-fe0f-4969-9006-c9c5aca5c077\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Prospect Creek Resource Management\", \"street_address\": \"1149 Hillcrest Manor Estates\", \"city\": \"Strathmore\", \"province_state\": \"AB\", \"postal_code\": \"T1P 0B9\", \"main_tel\": \"(403) 934-1856\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Prospect Creek Resource Management"}}, {"model": "reversion.version", "pk": 1785, "fields": {"revision": 1433, "object_id": "a3f79ba8-503d-49a1-8abd-100be3c3f300", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a3f79ba8-503d-49a1-8abd-100be3c3f300\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e90b2c23-4153-47aa-9e21-ed160db93e2d\", \"organization\": \"a8879454-1d36-48a5-8456-8a7475f43591\", \"registration_no\": \"WPI 06070601\"}}]", "object_repr": "Barry Duch - Pump Installer"}}, {"model": "reversion.version", "pk": 1786, "fields": {"revision": 1433, "object_id": "a8879454-1d36-48a5-8456-8a7475f43591", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a8879454-1d36-48a5-8456-8a7475f43591\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Westbay Mechanical Ltd.\", \"street_address\": \"584 Ledsham Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 1J8\", \"main_tel\": \"(250) 478-8532\", \"fax_tel\": \"(250) 478-8964\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Westbay Mechanical Ltd."}}, {"model": "reversion.version", "pk": 1787, "fields": {"revision": 1434, "object_id": "a4281f58-21d2-4c3e-8fee-c7a58f0c0c58", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a4281f58-21d2-4c3e-8fee-c7a58f0c0c58\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9134d5b5-1d7e-444e-ae42-3f78f3e59c78\", \"organization\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"registration_no\": \"WD 11042001\"}}]", "object_repr": "Daryl Smith - Well Driller"}}, {"model": "reversion.version", "pk": 1788, "fields": {"revision": 1434, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 1789, "fields": {"revision": 1435, "object_id": "a48f4199-d1d3-4bf6-b2af-1b422c7d9b3d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a48f4199-d1d3-4bf6-b2af-1b422c7d9b3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9cdefbf3-57c5-4c85-9790-dcd04d17bed0\", \"organization\": \"be5af669-279a-4f1a-aeca-bb71c9a7de8a\", \"registration_no\": \"WPI 05120202\"}}]", "object_repr": "Rene Bernard - Pump Installer"}}, {"model": "reversion.version", "pk": 1790, "fields": {"revision": 1435, "object_id": "be5af669-279a-4f1a-aeca-bb71c9a7de8a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"be5af669-279a-4f1a-aeca-bb71c9a7de8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bernard Drilling\", \"street_address\": \"7160 Beaver Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E6\", \"main_tel\": \"(250) 963-9233\", \"fax_tel\": \"(250) 963-9233\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bernard Drilling"}}, {"model": "reversion.version", "pk": 1791, "fields": {"revision": 1436, "object_id": "a4a429ed-f1cf-4c76-89b2-9b9db86de9bb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a4a429ed-f1cf-4c76-89b2-9b9db86de9bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"832a35d2-2b7c-4a21-abca-c2e56a060489\", \"organization\": \"dcccca3e-0f56-4635-967c-597cd7b10b67\", \"registration_no\": \"WD 05112301\"}}]", "object_repr": "Max Schibli - Well Driller"}}, {"model": "reversion.version", "pk": 1792, "fields": {"revision": 1436, "object_id": "dcccca3e-0f56-4635-967c-597cd7b10b67", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dcccca3e-0f56-4635-967c-597cd7b10b67\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schibli Drilling\", \"street_address\": \"PO Box 725 17 Blue Springs Road\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G1\", \"main_tel\": \"(250) 547-9796\", \"fax_tel\": \"(250) 547-9725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schibli Drilling"}}, {"model": "reversion.version", "pk": 1793, "fields": {"revision": 1437, "object_id": "a4beb47f-24b1-432b-83ce-53dfa5d77437", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a4beb47f-24b1-432b-83ce-53dfa5d77437\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a5823bf1-5985-41bb-8c0e-b12879d46262\", \"organization\": \"c15aba4f-49ed-451d-a38d-0c0f3103fd78\", \"registration_no\": \"WPI 05020802\"}}]", "object_repr": "James Moon - Pump Installer"}}, {"model": "reversion.version", "pk": 1794, "fields": {"revision": 1437, "object_id": "c15aba4f-49ed-451d-a38d-0c0f3103fd78", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c15aba4f-49ed-451d-a38d-0c0f3103fd78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.C.'s Waterworks Ltd.\", \"street_address\": \"Box 1866, 139 East 1st. Street\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A0\", \"main_tel\": \"(250) 567-5888\", \"fax_tel\": \"(250) 567-5885\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.C.'s Waterworks Ltd."}}, {"model": "reversion.version", "pk": 1795, "fields": {"revision": 1438, "object_id": "a5450948-d814-4231-90b9-bce97f25a2f8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a5450948-d814-4231-90b9-bce97f25a2f8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8129785e-5f05-4568-b772-efc7c4290c09\", \"organization\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"registration_no\": \"WD 05030803\"}}]", "object_repr": "William Richard - Well Driller"}}, {"model": "reversion.version", "pk": 1796, "fields": {"revision": 1438, "object_id": "e56ab542-a414-4de6-be90-f82d7065cad8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e56ab542-a414-4de6-be90-f82d7065cad8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"A & H Well Drilling Ltd.\", \"street_address\": \"48987 Chilliwack Central Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6H3\", \"main_tel\": \"(604) 794-5544\", \"fax_tel\": \"(604) 794-5545\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "A & H Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1797, "fields": {"revision": 1439, "object_id": "a599224d-5b5a-4fc3-af04-f924d4ff8539", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a599224d-5b5a-4fc3-af04-f924d4ff8539\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9588ab73-06b2-4752-87e5-c74d94de5c8b\", \"organization\": \"c773e014-ad50-445c-8998-861f463b2a1e\", \"registration_no\": \"WPI 07062101\"}}]", "object_repr": "Richard Milne - Pump Installer"}}, {"model": "reversion.version", "pk": 1798, "fields": {"revision": 1439, "object_id": "c773e014-ad50-445c-8998-861f463b2a1e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c773e014-ad50-445c-8998-861f463b2a1e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"The Last Drop Water Systems\", \"street_address\": \"Box 635\", \"city\": \"Quathiaski Cove\", \"province_state\": \"BC\", \"postal_code\": \"V0P 1N0\", \"main_tel\": \"(250) 285-3415\", \"fax_tel\": \"(250) 285-2893\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "The Last Drop Water Systems"}}, {"model": "reversion.version", "pk": 1799, "fields": {"revision": 1440, "object_id": "a5d040e4-a830-4280-b306-e17f2aafa4c0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a5d040e4-a830-4280-b306-e17f2aafa4c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f38bb55e-a028-40cb-885a-86b9ef193ac0\", \"organization\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"registration_no\": \"WD 05052901\"}}]", "object_repr": "William Wiebe - Well Driller"}}, {"model": "reversion.version", "pk": 1800, "fields": {"revision": 1440, "object_id": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 1801, "fields": {"revision": 1441, "object_id": "a5fefc51-b131-40c5-b781-b91ecec02402", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a5fefc51-b131-40c5-b781-b91ecec02402\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"290e6246-1197-4271-be0a-f6d66cc6ffb1\", \"organization\": \"d9efd570-71e5-4b03-af4d-58014fc1891e\", \"registration_no\": \"WPI 06101806\"}}]", "object_repr": "David March - Pump Installer"}}, {"model": "reversion.version", "pk": 1802, "fields": {"revision": 1441, "object_id": "d9efd570-71e5-4b03-af4d-58014fc1891e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d9efd570-71e5-4b03-af4d-58014fc1891e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Boomer Enterprises\", \"street_address\": \"S70 C16 RR2\", \"city\": \"Rock Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1Y0\", \"main_tel\": \"(250) 446-2520\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Boomer Enterprises"}}, {"model": "reversion.version", "pk": 1803, "fields": {"revision": 1442, "object_id": "a68169a2-838d-4147-b476-57d53b089efb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a68169a2-838d-4147-b476-57d53b089efb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"717d16fe-271c-4014-ae78-860ed56df2ca\", \"organization\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"registration_no\": \"WPI 05022101\"}}]", "object_repr": "Doug Lemal - Pump Installer"}}, {"model": "reversion.version", "pk": 1804, "fields": {"revision": 1442, "object_id": "5f2d8185-ff0c-4992-bc3c-e312653cf724", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5f2d8185-ff0c-4992-bc3c-e312653cf724\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cariboo Water Wells Ltd.\", \"street_address\": \"Box 2265\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2J8\", \"main_tel\": \"(250) 564-2525\", \"fax_tel\": \"(250) 563-4372\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cariboo Water Wells Ltd."}}, {"model": "reversion.version", "pk": 1805, "fields": {"revision": 1443, "object_id": "a6cb61b2-25f9-4796-984d-76fce735731a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a6cb61b2-25f9-4796-984d-76fce735731a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fdf44026-6922-4749-b3d7-26cddf31c0cc\", \"organization\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"registration_no\": \"WPI 06032801\"}}]", "object_repr": "Douglas Stanvick - Pump Installer"}}, {"model": "reversion.version", "pk": 1806, "fields": {"revision": 1443, "object_id": "1b9ede02-8bdd-425a-b4b2-b0da85a1f149", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Double D Drilling Ltd.\", \"street_address\": \"Box 766; 5275 Arthur Road\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4R1\", \"main_tel\": \"(250) 635-7877\", \"fax_tel\": \"(250) 635-7899\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Double D Drilling Ltd."}}, {"model": "reversion.version", "pk": 1807, "fields": {"revision": 1444, "object_id": "a6ebe8cc-f90b-4f7c-b377-77b710896828", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a6ebe8cc-f90b-4f7c-b377-77b710896828\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"dc7c9f47-16d6-4bb6-b072-13d029281558\", \"organization\": \"f4426285-d3d8-4a7e-8f26-5b044fe9a01c\", \"registration_no\": \"WPI 06102303\"}}]", "object_repr": "Guy Steinborn - Pump Installer"}}, {"model": "reversion.version", "pk": 1808, "fields": {"revision": 1444, "object_id": "f4426285-d3d8-4a7e-8f26-5b044fe9a01c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f4426285-d3d8-4a7e-8f26-5b044fe9a01c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Blaeberry Valley Plumbing Ltd.\", \"street_address\": \"Box 69\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1H0\", \"main_tel\": \"(250) 344-7209\", \"fax_tel\": \"(250) 344-7209\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Blaeberry Valley Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1809, "fields": {"revision": 1445, "object_id": "a737d01d-6080-4ee4-adee-8a4918334964", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a737d01d-6080-4ee4-adee-8a4918334964\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8056f036-5f10-4c91-a1b1-6cf43b67302d\", \"organization\": \"9912321b-a4c4-4b12-9435-ad33e58f9d50\", \"registration_no\": \"WPI 06101902\"}}]", "object_repr": "Ronald Gowe - Pump Installer"}}, {"model": "reversion.version", "pk": 1810, "fields": {"revision": 1445, "object_id": "9912321b-a4c4-4b12-9435-ad33e58f9d50", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9912321b-a4c4-4b12-9435-ad33e58f9d50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Twilight Spas & Pump Supply\", \"street_address\": \"4704 Keith Avenue\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4K1\", \"main_tel\": \"(250) 638-0947\", \"fax_tel\": \"(250) 638-0948\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Twilight Spas & Pump Supply"}}, {"model": "reversion.version", "pk": 1811, "fields": {"revision": 1446, "object_id": "a83120ee-6e5f-4596-b5ac-51d1a85c8045", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a83120ee-6e5f-4596-b5ac-51d1a85c8045\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"149aa037-ef2a-4392-a793-d21e74a912f5\", \"organization\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"registration_no\": \"WPI 06103005\"}}]", "object_repr": "Wayne Dunn - Pump Installer"}}, {"model": "reversion.version", "pk": 1812, "fields": {"revision": 1446, "object_id": "1637ce27-f13c-4214-abda-ed81f4b39ac2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1637ce27-f13c-4214-abda-ed81f4b39ac2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"Box 310\", \"city\": \"Barrie\", \"province_state\": \"ON\", \"postal_code\": \"L4M 4T5\", \"main_tel\": \"(705) 733-0111\", \"fax_tel\": \"(705) 721-0138\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1813, "fields": {"revision": 1447, "object_id": "a8b6c219-e740-4434-a073-f23c84a13856", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a8b6c219-e740-4434-a073-f23c84a13856\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"172c81ac-14c0-438d-98b4-45630fe04988\", \"organization\": \"3edf07d3-838d-45d0-af9a-51b465295a7c\", \"registration_no\": \"WD 06041902\"}}]", "object_repr": "Kelvin Marte - Well Driller"}}, {"model": "reversion.version", "pk": 1814, "fields": {"revision": 1447, "object_id": "3edf07d3-838d-45d0-af9a-51b465295a7c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3edf07d3-838d-45d0-af9a-51b465295a7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kel Drilling\", \"street_address\": \"Box 25\", \"city\": \"Monte Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2M0\", \"main_tel\": \"(250) 372-1606\", \"fax_tel\": \"(250) 573-5996\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kel Drilling"}}, {"model": "reversion.version", "pk": 1815, "fields": {"revision": 1448, "object_id": "a96f8e25-1885-4bc8-aebd-c210539a0b42", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"a96f8e25-1885-4bc8-aebd-c210539a0b42\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"52c29f4f-ca22-448c-b83a-24176d111e5f\", \"organization\": \"0d9f0534-dc48-429c-ba13-04887e0c3d9a\", \"registration_no\": \"WD 06092601\"}}]", "object_repr": "David Schroeder - Well Driller"}}, {"model": "reversion.version", "pk": 1816, "fields": {"revision": 1448, "object_id": "0d9f0534-dc48-429c-ba13-04887e0c3d9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d9f0534-dc48-429c-ba13-04887e0c3d9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Smithers Well Drilling Ltd.\", \"street_address\": \"4760 Nielsen Road\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N2\", \"main_tel\": \"(250) 847-4033\", \"fax_tel\": \"(250) 847-4033\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Smithers Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1817, "fields": {"revision": 1449, "object_id": "aa3b40af-9de9-4801-8b2f-2916123ff0ef", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"aa3b40af-9de9-4801-8b2f-2916123ff0ef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"362a9b05-0439-410e-939d-59ca6e1f9983\", \"organization\": \"950ee7b6-de1c-4192-9ce4-108e9b200689\", \"registration_no\": \"WD 10101301\"}}]", "object_repr": "Mark Webb - Well Driller"}}, {"model": "reversion.version", "pk": 1818, "fields": {"revision": 1449, "object_id": "950ee7b6-de1c-4192-9ce4-108e9b200689", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"950ee7b6-de1c-4192-9ce4-108e9b200689\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cyclone Drilling Ltd.\", \"street_address\": \"2915 McAllister Road\", \"city\": \"Westbank\", \"province_state\": \"BC\", \"postal_code\": \"V4T 1G8\", \"main_tel\": \"(250) 768-7462\", \"fax_tel\": \"(250) 768-5424\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cyclone Drilling Ltd."}}, {"model": "reversion.version", "pk": 1819, "fields": {"revision": 1450, "object_id": "aa64101d-a6b5-4991-9360-02693e351e5c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"aa64101d-a6b5-4991-9360-02693e351e5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"71d3339e-d601-4be7-8f5e-fa7fd0fd656c\", \"organization\": \"ab08861d-a0cf-4aea-a7d8-daa3d1f71fe9\", \"registration_no\": \"WPI 05111704\"}}]", "object_repr": "Ross Pitt - Pump Installer"}}, {"model": "reversion.version", "pk": 1820, "fields": {"revision": 1450, "object_id": "ab08861d-a0cf-4aea-a7d8-daa3d1f71fe9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ab08861d-a0cf-4aea-a7d8-daa3d1f71fe9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ross Pitt Plumbing\", \"street_address\": \"4211 Clubhouse Drive\", \"city\": \"Nanaimo\", \"province_state\": \"BC\", \"postal_code\": \"V9T 4H8\", \"main_tel\": \"(250) 758-5655\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ross Pitt Plumbing"}}, {"model": "reversion.version", "pk": 1821, "fields": {"revision": 1451, "object_id": "abe546a2-b739-48f9-aca0-9b96d14591d5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"abe546a2-b739-48f9-aca0-9b96d14591d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7c0e0141-1c0e-4ff9-a2ad-babf3c888b50\", \"organization\": \"905eb772-1ef5-45cd-8916-4608561d852f\", \"registration_no\": \"WD 17061901\"}}]", "object_repr": "James Benson - Well Driller"}}, {"model": "reversion.version", "pk": 1822, "fields": {"revision": 1451, "object_id": "905eb772-1ef5-45cd-8916-4608561d852f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"905eb772-1ef5-45cd-8916-4608561d852f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Great West Drilling Ltd.\", \"street_address\": \"4250 118 Ave SE\", \"city\": \"Calgary\", \"province_state\": \"AB\", \"postal_code\": \"T2Z 4A4\", \"main_tel\": \"(403) 252-3325\", \"fax_tel\": \"(403) 258-4495\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Great West Drilling Ltd."}}, {"model": "reversion.version", "pk": 1823, "fields": {"revision": 1452, "object_id": "ac6660ed-56fe-4faa-9f93-b6d0bfd19518", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ac6660ed-56fe-4faa-9f93-b6d0bfd19518\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"de3b44ef-d718-43cb-bc87-3f8b753ce058\", \"organization\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"registration_no\": \"WD 06101804\"}}]", "object_repr": "Brad Neuls - Well Driller"}}, {"model": "reversion.version", "pk": 1824, "fields": {"revision": 1452, "object_id": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 1825, "fields": {"revision": 1453, "object_id": "ac8404d3-2bd0-4dd1-97ff-15728a7f9578", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ac8404d3-2bd0-4dd1-97ff-15728a7f9578\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b2b46ff4-1ea2-4d2a-b179-9e15a2c3d520\", \"organization\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"registration_no\": \"WPI 06101810\"}}]", "object_repr": "Keith Robbins - Pump Installer"}}, {"model": "reversion.version", "pk": 1826, "fields": {"revision": 1453, "object_id": "b405fd40-35f5-4ff6-b570-4559dfaca861", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Robbins Drilling and Pump Ltd\", \"street_address\": \"Box 80, 1400 Green Lake Road\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-5303\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Robbins Drilling and Pump Ltd"}}, {"model": "reversion.version", "pk": 1827, "fields": {"revision": 1454, "object_id": "ac90e427-efc2-47c0-8231-d5b294dfc102", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ac90e427-efc2-47c0-8231-d5b294dfc102\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a0483c45-7b3f-41c3-b10a-7c93af7e6caa\", \"organization\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"registration_no\": \"WD 05110804\"}}]", "object_repr": "James Sharp - Well Driller"}}, {"model": "reversion.version", "pk": 1828, "fields": {"revision": 1454, "object_id": "ec39dbb1-c5a4-4567-b32c-fbf40231fc6e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Conetec Investigations Ltd.\", \"street_address\": \"12140 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1J8\", \"main_tel\": \"(604) 273-4311\", \"fax_tel\": \"(604) 273-4066\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Conetec Investigations Ltd."}}, {"model": "reversion.version", "pk": 1829, "fields": {"revision": 1455, "object_id": "acce3f2c-acf3-4690-b6f5-ddd2ac6b5b36", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"acce3f2c-acf3-4690-b6f5-ddd2ac6b5b36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f513abb9-c645-4b58-868a-7a926b1849e9\", \"organization\": \"6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec\", \"registration_no\": \"WPI 06100603\"}}]", "object_repr": "Ian Baker - Pump Installer"}}, {"model": "reversion.version", "pk": 1830, "fields": {"revision": 1455, "object_id": "6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6a6a80a5-9175-4ed0-af28-a4f8c1d9a0ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Baker Plumbing & Renovations\", \"street_address\": \"1725 Westlock Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 5N8\", \"main_tel\": \"(250) 748-3890\", \"fax_tel\": \"(250) 748-0520\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Baker Plumbing & Renovations"}}, {"model": "reversion.version", "pk": 1831, "fields": {"revision": 1456, "object_id": "acd5d1cb-5bdd-4c70-993c-b03a30e96947", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"acd5d1cb-5bdd-4c70-993c-b03a30e96947\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9a49ffa7-a408-4f4f-a26f-03f72a37ca8b\", \"organization\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"registration_no\": \"WD 16050501\"}}]", "object_repr": "Will Reinarz - Well Driller"}}, {"model": "reversion.version", "pk": 1832, "fields": {"revision": 1456, "object_id": "91576fc7-0a2e-4d84-867a-49435d61133e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"91576fc7-0a2e-4d84-867a-49435d61133e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Ltd.\", \"street_address\": \"PO Box 436\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4H9\", \"main_tel\": \"(250) 426-5213\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Ltd."}}, {"model": "reversion.version", "pk": 1833, "fields": {"revision": 1457, "object_id": "adb43b01-2019-466f-b776-605ddb2a3417", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"adb43b01-2019-466f-b776-605ddb2a3417\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"67721ff9-5fc6-4b56-9372-5eccfe7b153b\", \"organization\": \"3ece6234-92f7-4df7-bed1-7fa4ae1d2476\", \"registration_no\": \"WPI 05072201\"}}]", "object_repr": "Steven Winthrope - Pump Installer"}}, {"model": "reversion.version", "pk": 1834, "fields": {"revision": 1457, "object_id": "3ece6234-92f7-4df7-bed1-7fa4ae1d2476", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ece6234-92f7-4df7-bed1-7fa4ae1d2476\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"North Central Plumbing & Heating Ltd.\", \"street_address\": \"Box 665\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-3060\", \"fax_tel\": \"(250) 847-5255\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "North Central Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 1835, "fields": {"revision": 1458, "object_id": "af475bf2-da79-4920-b85b-6d78efaac414", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"af475bf2-da79-4920-b85b-6d78efaac414\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a22a0a5c-de92-466c-8bbc-49d5b45a220c\", \"organization\": \"a9f3d658-3317-42c9-a72f-f00f631c6cc5\", \"registration_no\": \"WD 17061201\"}}]", "object_repr": "Michael Moore - Well Driller"}}, {"model": "reversion.version", "pk": 1836, "fields": {"revision": 1458, "object_id": "a9f3d658-3317-42c9-a72f-f00f631c6cc5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a9f3d658-3317-42c9-a72f-f00f631c6cc5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mo-Co Services\", \"street_address\": \"449 Mountain St.\", \"city\": \"Hinton\", \"province_state\": \"AB\", \"postal_code\": \"T7V 1K1\", \"main_tel\": \"(780) 817-4652\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mo-Co Services"}}, {"model": "reversion.version", "pk": 1837, "fields": {"revision": 1459, "object_id": "af62b059-3f2d-4a30-8257-63bf5a73827d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"af62b059-3f2d-4a30-8257-63bf5a73827d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"c44b2f61-ffea-460b-9cae-53e7145210ac\", \"organization\": \"9c021994-53a1-42ad-8036-e74b8077a0e6\", \"registration_no\": \"WPI 05062301\"}}]", "object_repr": "Lorne Fuller - Pump Installer"}}, {"model": "reversion.version", "pk": 1838, "fields": {"revision": 1459, "object_id": "9c021994-53a1-42ad-8036-e74b8077a0e6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9c021994-53a1-42ad-8036-e74b8077a0e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"3L's Water Systems Ltd.\", \"street_address\": \"Box 414\", \"city\": \"Ituna\", \"province_state\": \"SK\", \"postal_code\": \"S0A 1N0\", \"main_tel\": \"(306) 795-2620\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "3L's Water Systems Ltd."}}, {"model": "reversion.version", "pk": 1839, "fields": {"revision": 1460, "object_id": "afa2b466-7e52-4747-962a-21ee1f259bd7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"afa2b466-7e52-4747-962a-21ee1f259bd7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"494a07b4-c27f-4b28-b118-c87b36cf56bc\", \"organization\": \"9aec04ae-dd27-4471-b5cc-792fb31c4498\", \"registration_no\": \"WD 06012501\"}}]", "object_repr": "Gray Buchanan - Well Driller"}}, {"model": "reversion.version", "pk": 1840, "fields": {"revision": 1460, "object_id": "9aec04ae-dd27-4471-b5cc-792fb31c4498", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9aec04ae-dd27-4471-b5cc-792fb31c4498\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tri-K Drilling Ltd.\", \"street_address\": \"3047 Glen Lake Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 4B3\", \"main_tel\": \"(250) 478-5064\", \"fax_tel\": \"(250) 478-2749\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tri-K Drilling Ltd."}}, {"model": "reversion.version", "pk": 1841, "fields": {"revision": 1461, "object_id": "afc8ddf7-7394-431d-8265-2c74fcbd59ca", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"afc8ddf7-7394-431d-8265-2c74fcbd59ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"47209ab8-918a-4908-9036-f4d45d13ac4c\", \"organization\": \"843cf620-2e30-4c30-8b76-736f042b354b\", \"registration_no\": \"WPI 05101201\"}}]", "object_repr": "Glen Francoeur - Pump Installer"}}, {"model": "reversion.version", "pk": 1842, "fields": {"revision": 1461, "object_id": "843cf620-2e30-4c30-8b76-736f042b354b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"843cf620-2e30-4c30-8b76-736f042b354b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GPM Water Services\", \"street_address\": \"835 Sherbrooke Avenue\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2B 1V9\", \"main_tel\": \"(250) 376-9266\", \"fax_tel\": \"(250) 376-9266\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GPM Water Services"}}, {"model": "reversion.version", "pk": 1843, "fields": {"revision": 1462, "object_id": "b073b902-29bb-4481-a7d6-a1a0c891e52a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b073b902-29bb-4481-a7d6-a1a0c891e52a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"10965b64-c5c4-4760-a5d8-f1dd9a81a291\", \"organization\": \"017c3de8-c409-416c-b64e-62fab51d6909\", \"registration_no\": \"WPI 05100301\"}}]", "object_repr": "Michael Krushen - Pump Installer"}}, {"model": "reversion.version", "pk": 1844, "fields": {"revision": 1462, "object_id": "017c3de8-c409-416c-b64e-62fab51d6909", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"017c3de8-c409-416c-b64e-62fab51d6909\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Unique Water Works\", \"street_address\": \"469 4th Avenue\", \"city\": \"Kimberley\", \"province_state\": \"BC\", \"postal_code\": \"V1A 2R7\", \"main_tel\": \"(250) 427-6676\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Unique Water Works"}}, {"model": "reversion.version", "pk": 1845, "fields": {"revision": 1463, "object_id": "b08a88d1-3f92-4d94-bbca-4add9ec9a394", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b08a88d1-3f92-4d94-bbca-4add9ec9a394\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"bfa64c6c-8615-48aa-a972-4de0af304547\", \"organization\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"registration_no\": \"WD 05091301\"}}]", "object_repr": "Randy Lamb - Well Driller"}}, {"model": "reversion.version", "pk": 1846, "fields": {"revision": 1463, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 1847, "fields": {"revision": 1464, "object_id": "b0da0e52-c031-45aa-a57d-4440daac5cb8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b0da0e52-c031-45aa-a57d-4440daac5cb8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3f855745-1baa-4769-b115-fa1491d7b4a0\", \"organization\": \"03c6dc8f-061c-41b2-8fd9-d5b51b253b82\", \"registration_no\": \"WPI 06100613\"}}]", "object_repr": "Wolfgang Teiner - Pump Installer"}}, {"model": "reversion.version", "pk": 1848, "fields": {"revision": 1464, "object_id": "03c6dc8f-061c-41b2-8fd9-d5b51b253b82", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"03c6dc8f-061c-41b2-8fd9-d5b51b253b82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wolfgang's Plumbing Services\", \"street_address\": \"5258 Highway # 6, PO Box 137\", \"city\": \"Winlaw\", \"province_state\": \"BC\", \"postal_code\": \"V0G 2J0\", \"main_tel\": \"(250) 226-7320\", \"fax_tel\": \"(250) 226-7320\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wolfgang's Plumbing Services"}}, {"model": "reversion.version", "pk": 1849, "fields": {"revision": 1465, "object_id": "b19fadb6-550a-4143-84a1-9144abafd60e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b19fadb6-550a-4143-84a1-9144abafd60e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ae2423d4-f245-42e5-a45c-87d9f0d10fb2\", \"organization\": \"5af3bfa0-3ea4-4d14-a503-14d28e9eb0fe\", \"registration_no\": \"WD 06100604\"}}]", "object_repr": "Roy Yeo - Well Driller"}}, {"model": "reversion.version", "pk": 1850, "fields": {"revision": 1465, "object_id": "5af3bfa0-3ea4-4d14-a503-14d28e9eb0fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5af3bfa0-3ea4-4d14-a503-14d28e9eb0fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"9205 Chilcotin Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5V3\", \"main_tel\": \"(250) 963-9429\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 1851, "fields": {"revision": 1466, "object_id": "b20a9d8f-4fbc-491d-a3a1-9cf954aeae2e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b20a9d8f-4fbc-491d-a3a1-9cf954aeae2e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"22c27ac8-890a-48aa-98e5-69a7bc13b8fc\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101306\"}}]", "object_repr": "Ben Dixon - Well Driller"}}, {"model": "reversion.version", "pk": 1852, "fields": {"revision": 1466, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1853, "fields": {"revision": 1467, "object_id": "b251ef0f-0a66-4087-a790-9a1923732941", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b251ef0f-0a66-4087-a790-9a1923732941\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"14dd07a9-22b7-4d0a-a187-3d6e85a89c53\", \"organization\": \"5a4620ab-a82e-4e9b-bd4f-eebcde93b88a\", \"registration_no\": \"WPI 05011401\"}}]", "object_repr": "Garfield Bland - Pump Installer"}}, {"model": "reversion.version", "pk": 1854, "fields": {"revision": 1467, "object_id": "5a4620ab-a82e-4e9b-bd4f-eebcde93b88a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5a4620ab-a82e-4e9b-bd4f-eebcde93b88a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Camfield Drilling Services Ltd.\", \"street_address\": \"1280 - 4th Ave. South\", \"city\": \"Lethbridge\", \"province_state\": \"AB\", \"postal_code\": \"T1J 0R2\", \"main_tel\": \"(403) 328-7059\", \"fax_tel\": \"(403) 320-5177\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Camfield Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1855, "fields": {"revision": 1468, "object_id": "b2a6d684-5eb7-4eb2-8f12-f969ec25bfc4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b2a6d684-5eb7-4eb2-8f12-f969ec25bfc4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3addec39-f680-41d5-910a-e62a340dcd4a\", \"organization\": \"21355185-bbac-4ddc-9806-4e69de154c61\", \"registration_no\": \"WPI 06012502\"}}]", "object_repr": "Dan Foley - Pump Installer"}}, {"model": "reversion.version", "pk": 1856, "fields": {"revision": 1468, "object_id": "21355185-bbac-4ddc-9806-4e69de154c61", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"21355185-bbac-4ddc-9806-4e69de154c61\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Summer Rain Water Delivery\", \"street_address\": \"3153 Whalley Road\", \"city\": \"Gabriola Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1X7\", \"main_tel\": \"(250) 247-9136\", \"fax_tel\": \"(250) 247-0061\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Summer Rain Water Delivery"}}, {"model": "reversion.version", "pk": 1857, "fields": {"revision": 1469, "object_id": "b31bba88-4c8e-4cf2-a0f1-f6cf2bce4995", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b31bba88-4c8e-4cf2-a0f1-f6cf2bce4995\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a8b3919e-fe7e-48e7-964f-d756d5f70e19\", \"organization\": \"47284780-bd4b-4b12-ae47-b148d1e27574\", \"registration_no\": \"WPI 04121001\"}}]", "object_repr": "Jay Jaundrew - Pump Installer"}}, {"model": "reversion.version", "pk": 1858, "fields": {"revision": 1469, "object_id": "47284780-bd4b-4b12-ae47-b148d1e27574", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"47284780-bd4b-4b12-ae47-b148d1e27574\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"B.C. Aquifer Testing & Equipment\", \"street_address\": \"886 Denford Crescent\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8X 4N1\", \"main_tel\": \"(250) 748-4041\", \"fax_tel\": \"(250) 748-5775\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "B.C. Aquifer Testing & Equipment"}}, {"model": "reversion.version", "pk": 1859, "fields": {"revision": 1470, "object_id": "b31d6f07-2ebb-4d22-bc94-c4e1ec514ee2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b31d6f07-2ebb-4d22-bc94-c4e1ec514ee2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"428e3cd1-3dd9-4ce8-8e38-87acfeb34a1d\", \"organization\": \"7eb426d3-c956-49c6-8bbb-03b25bb4cda9\", \"registration_no\": \"WPI 05030803\"}}]", "object_repr": "Peter Epp - Pump Installer"}}, {"model": "reversion.version", "pk": 1860, "fields": {"revision": 1470, "object_id": "7eb426d3-c956-49c6-8bbb-03b25bb4cda9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7eb426d3-c956-49c6-8bbb-03b25bb4cda9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hillside Pumps & Water Treatment Ltd.\", \"street_address\": \"1613A South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A8\", \"main_tel\": \"(250) 392-7876\", \"fax_tel\": \"(250) 392-6290\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hillside Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1861, "fields": {"revision": 1471, "object_id": "b3ba6677-7c13-4c1f-a57d-2c0dc227a352", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b3ba6677-7c13-4c1f-a57d-2c0dc227a352\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"0cf5d245-5185-48e3-9606-89311b5f694e\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101313\"}}]", "object_repr": "Dave Ward - Well Driller"}}, {"model": "reversion.version", "pk": 1862, "fields": {"revision": 1471, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1863, "fields": {"revision": 1472, "object_id": "b3ca92e5-997e-402c-8ae2-d83a3816d320", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b3ca92e5-997e-402c-8ae2-d83a3816d320\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b9e82778-f5ab-44f9-b7e0-4dff32508fc2\", \"organization\": \"c00887da-c892-43fd-99ea-d450d59467d3\", \"registration_no\": \"WD 10090801\"}}]", "object_repr": "Philip Faasse - Well Driller"}}, {"model": "reversion.version", "pk": 1864, "fields": {"revision": 1472, "object_id": "c00887da-c892-43fd-99ea-d450d59467d3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c00887da-c892-43fd-99ea-d450d59467d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ground Source Drilling Ltd.\", \"street_address\": \"Plaza 33 PO Box 23037\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 7K7\", \"main_tel\": \"(778)753-2778\", \"fax_tel\": \"(778) 753-2779\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ground Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 1865, "fields": {"revision": 1473, "object_id": "b4170f23-379f-4d8d-a923-02a86f6c4099", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b4170f23-379f-4d8d-a923-02a86f6c4099\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"92904b5c-ff2c-45f8-aa3a-eb7d54b3cfcf\", \"organization\": null, \"registration_no\": \"WD 06103106\"}}]", "object_repr": "James Krenbrink - Well Driller"}}, {"model": "reversion.version", "pk": 1866, "fields": {"revision": 1474, "object_id": "b4313d51-4936-49ff-b3c7-c9d347658be7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b4313d51-4936-49ff-b3c7-c9d347658be7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"632cad2a-4d3a-47b1-951a-cfb9e5802db4\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WPI 06090606\"}}]", "object_repr": "Jeff Peppler - Pump Installer"}}, {"model": "reversion.version", "pk": 1867, "fields": {"revision": 1474, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1868, "fields": {"revision": 1475, "object_id": "b4498c92-4e8f-427e-959f-224e7b8265df", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b4498c92-4e8f-427e-959f-224e7b8265df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e2bbf764-12d1-4657-b8f8-95a0facf1209\", \"organization\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"registration_no\": \"WD 05041502\"}}]", "object_repr": "Randal Pruden - Well Driller"}}, {"model": "reversion.version", "pk": 1869, "fields": {"revision": 1475, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 1870, "fields": {"revision": 1476, "object_id": "b52c43dd-80a1-448f-a607-ea86b4d7285f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b52c43dd-80a1-448f-a607-ea86b4d7285f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6b29f63f-f3e3-4c46-bbb3-874e58cb80e2\", \"organization\": \"22085e8b-8ba6-40d5-a7dc-95d1801509c5\", \"registration_no\": \"WD 06091302\"}}]", "object_repr": "David Wishart - Well Driller"}}, {"model": "reversion.version", "pk": 1871, "fields": {"revision": 1476, "object_id": "22085e8b-8ba6-40d5-a7dc-95d1801509c5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"22085e8b-8ba6-40d5-a7dc-95d1801509c5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wisharts Water Well Drilling\", \"street_address\": \"General Delivery\", \"city\": \"Hornby Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1Z0\", \"main_tel\": \"(250) 465-5848\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wisharts Water Well Drilling"}}, {"model": "reversion.version", "pk": 1872, "fields": {"revision": 1477, "object_id": "b637494a-ad78-4944-8500-ecd4c9b2c449", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b637494a-ad78-4944-8500-ecd4c9b2c449\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ee8d37c5-cca9-4514-9b6f-d38962694bc0\", \"organization\": \"19cba357-f8bb-41dd-aceb-67355a0a5468\", \"registration_no\": \"WPI 06090701\"}}]", "object_repr": "Kevin Craig - Pump Installer"}}, {"model": "reversion.version", "pk": 1873, "fields": {"revision": 1477, "object_id": "19cba357-f8bb-41dd-aceb-67355a0a5468", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"19cba357-f8bb-41dd-aceb-67355a0a5468\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"K.C. Plumbing & Heathing Ltd\", \"street_address\": \"628 Birch St.\", \"city\": \"Campbell River\", \"province_state\": \"BC\", \"postal_code\": \"V9W 2t1\", \"main_tel\": \"(250) 287-7088\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "K.C. Plumbing & Heathing Ltd"}}, {"model": "reversion.version", "pk": 1874, "fields": {"revision": 1478, "object_id": "b657c8f4-053e-4c92-85a9-6e79e8e552d1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b657c8f4-053e-4c92-85a9-6e79e8e552d1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f5c04e29-e9f5-4c02-a475-e24f0d42ff22\", \"organization\": \"3ce0ca6a-a057-4dec-ba92-cf864dbb3867\", \"registration_no\": \"WD 11103101\"}}]", "object_repr": "Joey Widaiko - Well Driller"}}, {"model": "reversion.version", "pk": 1875, "fields": {"revision": 1478, "object_id": "3ce0ca6a-a057-4dec-ba92-cf864dbb3867", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ce0ca6a-a057-4dec-ba92-cf864dbb3867\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Groundforce Drilling Solutions Inc.\", \"street_address\": \"650, 910 7th Avenue SW\", \"city\": \"Calgary\", \"province_state\": \"AB\", \"postal_code\": \"T2P 3N8\", \"main_tel\": \"(403) 387-8020\", \"fax_tel\": \"(403) 514-8050\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Groundforce Drilling Solutions Inc."}}, {"model": "reversion.version", "pk": 1876, "fields": {"revision": 1479, "object_id": "b69f71fa-6a01-4f4e-bc29-1dbd76f412e9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b69f71fa-6a01-4f4e-bc29-1dbd76f412e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f653dafd-5395-473b-9123-a062253aee25\", \"organization\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"registration_no\": \"WPI 05071301\"}}]", "object_repr": "Robert Pearce - Pump Installer"}}, {"model": "reversion.version", "pk": 1877, "fields": {"revision": 1479, "object_id": "8d92d5bc-1335-41ab-bbac-2bb63c936794", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Value Contracting\", \"street_address\": \"Box 256 1612 Highway 97 S\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-8284\", \"fax_tel\": \"(250) 497-6533\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Value Contracting"}}, {"model": "reversion.version", "pk": 1878, "fields": {"revision": 1480, "object_id": "b78d354f-5a6b-4bb7-80ed-ab0d5def9fcc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b78d354f-5a6b-4bb7-80ed-ab0d5def9fcc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5bb84f49-155d-4969-ad86-e7de0927a3c6\", \"organization\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"registration_no\": \"WPI 06103101\"}}]", "object_repr": "Albert Kaye - Pump Installer"}}, {"model": "reversion.version", "pk": 1879, "fields": {"revision": 1480, "object_id": "c7e17543-1e10-4ff1-afcf-cdfb93e21e20", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c7e17543-1e10-4ff1-afcf-cdfb93e21e20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Albert Kaye & Sons Drilling Ltd.\", \"street_address\": \"200 Musgrave Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V5\", \"main_tel\": \"(250) 653-4757\", \"fax_tel\": \"(250) 653-4778\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Albert Kaye & Sons Drilling Ltd."}}, {"model": "reversion.version", "pk": 1880, "fields": {"revision": 1481, "object_id": "b7999ea0-bc30-446f-9cc6-b55305341e8c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b7999ea0-bc30-446f-9cc6-b55305341e8c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5a961406-31e5-4273-a002-83e95413ef8f\", \"organization\": \"ca8ae50a-3523-4ed8-b303-e17207615d90\", \"registration_no\": \"WPI 05032903\"}}]", "object_repr": "Ron Crosby - Pump Installer"}}, {"model": "reversion.version", "pk": 1881, "fields": {"revision": 1481, "object_id": "ca8ae50a-3523-4ed8-b303-e17207615d90", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ca8ae50a-3523-4ed8-b303-e17207615d90\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Crosby Plumbing and Aqua Service\", \"street_address\": \"14948 Braeside Road\", \"city\": \"Vanderhoof\", \"province_state\": \"BC\", \"postal_code\": \"V0J 3A2\", \"main_tel\": \"(250) 567-4127\", \"fax_tel\": \"(250) 567-5307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Crosby Plumbing and Aqua Service"}}, {"model": "reversion.version", "pk": 1882, "fields": {"revision": 1482, "object_id": "b86bae2e-333e-41ce-a123-b6b82b804699", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b86bae2e-333e-41ce-a123-b6b82b804699\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e55b291c-02a7-40de-a2db-7a774f5aa94b\", \"organization\": \"87fbaa49-97c9-49bd-b7a8-ca2de6f4db54\", \"registration_no\": \"WD 05092801\"}}]", "object_repr": "Dave Roberts - Well Driller"}}, {"model": "reversion.version", "pk": 1883, "fields": {"revision": 1482, "object_id": "87fbaa49-97c9-49bd-b7a8-ca2de6f4db54", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"87fbaa49-97c9-49bd-b7a8-ca2de6f4db54\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.J. Roberts\", \"street_address\": \"44969 Watson Road\", \"city\": \"Sardis\", \"province_state\": \"BC\", \"postal_code\": \"V2R 2Y3\", \"main_tel\": \"(604) 316-0925\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.J. Roberts"}}, {"model": "reversion.version", "pk": 1884, "fields": {"revision": 1483, "object_id": "b89773ee-597a-43d8-8285-e71a4d2782a5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b89773ee-597a-43d8-8285-e71a4d2782a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2ec8580f-848a-4a94-86c1-355dc3a7192c\", \"organization\": \"832b7c3c-3114-4c08-bdce-24a4b4bd7357\", \"registration_no\": \"WPI 06011001\"}}]", "object_repr": "Robert MacDonald - Pump Installer"}}, {"model": "reversion.version", "pk": 1885, "fields": {"revision": 1483, "object_id": "832b7c3c-3114-4c08-bdce-24a4b4bd7357", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"832b7c3c-3114-4c08-bdce-24a4b4bd7357\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Maci Service & Repair\", \"street_address\": \"1090 Smithers Road\", \"city\": \"Parksville\", \"province_state\": \"BC\", \"postal_code\": \"V9P 2C2\", \"main_tel\": \"(250) 248-4423\", \"fax_tel\": \"(250) 248-4471\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Maci Service & Repair"}}, {"model": "reversion.version", "pk": 1886, "fields": {"revision": 1484, "object_id": "b92480e3-caa2-4c86-a884-f19bdfde5f0f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b92480e3-caa2-4c86-a884-f19bdfde5f0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0ceb7849-d58b-4945-8bd9-a0de6c60e5c0\", \"organization\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"registration_no\": \"WPI 09050701\"}}]", "object_repr": "Travis Maier - Pump Installer"}}, {"model": "reversion.version", "pk": 1887, "fields": {"revision": 1484, "object_id": "7a319709-f9d0-4480-9bf7-1c90b327d3f2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 951-0556\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1888, "fields": {"revision": 1485, "object_id": "b925f556-5a94-42dc-b658-9f63894067f6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b925f556-5a94-42dc-b658-9f63894067f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"4d052048-3f37-4136-9e50-d85c0d5e739b\", \"organization\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"registration_no\": \"WD 05111703\"}}]", "object_repr": "Aaron Muir - Well Driller"}}, {"model": "reversion.version", "pk": 1889, "fields": {"revision": 1485, "object_id": "ec39dbb1-c5a4-4567-b32c-fbf40231fc6e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ec39dbb1-c5a4-4567-b32c-fbf40231fc6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Conetec Investigations Ltd.\", \"street_address\": \"12140 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1J8\", \"main_tel\": \"(604) 273-4311\", \"fax_tel\": \"(604) 273-4066\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Conetec Investigations Ltd."}}, {"model": "reversion.version", "pk": 1890, "fields": {"revision": 1486, "object_id": "b9bf5533-5eed-4081-ab24-ac2c73bfcae3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b9bf5533-5eed-4081-ab24-ac2c73bfcae3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f5e78eb0-b4b0-4bff-aeb8-b55f0ce4cee6\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 06080401\"}}]", "object_repr": "Trevor Gobert - Well Driller"}}, {"model": "reversion.version", "pk": 1891, "fields": {"revision": 1486, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1892, "fields": {"revision": 1487, "object_id": "b9fd0852-4ad4-4cce-9082-4362edfc8c3e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"b9fd0852-4ad4-4cce-9082-4362edfc8c3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"297239ce-ad82-4512-85cb-37976e65e6c1\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 04121401\"}}]", "object_repr": "Ken Slade - Well Driller"}}, {"model": "reversion.version", "pk": 1893, "fields": {"revision": 1487, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 1894, "fields": {"revision": 1488, "object_id": "bafd81e8-9857-417b-af6d-715a4ddd4920", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bafd81e8-9857-417b-af6d-715a4ddd4920\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b0542a22-e62f-44a4-8cd6-2e2832f174c9\", \"organization\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"registration_no\": \"WD 06070502\"}}]", "object_repr": "Wayne Philps - Well Driller"}}, {"model": "reversion.version", "pk": 1895, "fields": {"revision": 1488, "object_id": "b1c02a23-6a65-4e00-a327-b80cca992c1f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"Po. Box 189 Stn. Aldergrove\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 1896, "fields": {"revision": 1489, "object_id": "bb034429-1ad2-43c9-b56f-e1154efbf3c4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bb034429-1ad2-43c9-b56f-e1154efbf3c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"bed6b98d-56cf-4a80-8278-d8f41bbe72b6\", \"organization\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"registration_no\": \"WPI 16121901\"}}]", "object_repr": "Alistair Wilson - Pump Installer"}}, {"model": "reversion.version", "pk": 1897, "fields": {"revision": 1489, "object_id": "8d92d5bc-1335-41ab-bbac-2bb63c936794", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8d92d5bc-1335-41ab-bbac-2bb63c936794\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Value Contracting\", \"street_address\": \"Box 256 1612 Highway 97 S\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-8284\", \"fax_tel\": \"(250) 497-6533\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Value Contracting"}}, {"model": "reversion.version", "pk": 1898, "fields": {"revision": 1490, "object_id": "bb895353-c658-4e6b-b019-dc387ac2b6f6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bb895353-c658-4e6b-b019-dc387ac2b6f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7849417b-11b1-4e94-bd9d-598bf126abb5\", \"organization\": null, \"registration_no\": \"WPI 05081602\"}}]", "object_repr": "Blake Jarvis - Pump Installer"}}, {"model": "reversion.version", "pk": 1899, "fields": {"revision": 1491, "object_id": "bb9a7840-468c-4fdf-be74-4824c0591ef5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bb9a7840-468c-4fdf-be74-4824c0591ef5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"3a46a964-0012-4321-a941-120cf7b0c814\", \"organization\": \"a93ac922-af9f-4671-a247-5e325a36ce9a\", \"registration_no\": \"WD 05111701\"}}]", "object_repr": "Mike Cadeau - Well Driller"}}, {"model": "reversion.version", "pk": 1900, "fields": {"revision": 1491, "object_id": "a93ac922-af9f-4671-a247-5e325a36ce9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a93ac922-af9f-4671-a247-5e325a36ce9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gregg Drilling and Testing Canada Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 5B7\", \"main_tel\": \"1-844-848-8684\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gregg Drilling and Testing Canada Ltd."}}, {"model": "reversion.version", "pk": 1901, "fields": {"revision": 1492, "object_id": "bba47bec-2d89-4e06-9796-9cef587e48aa", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bba47bec-2d89-4e06-9796-9cef587e48aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"55e9eff3-4f7f-41a8-99c5-ca1b30fddb87\", \"organization\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"registration_no\": \"WD 05051901\"}}]", "object_repr": "Robert Parker - Well Driller"}}, {"model": "reversion.version", "pk": 1902, "fields": {"revision": 1492, "object_id": "bfeec089-e2bd-4828-b18f-eed4f16d86ac", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"bfeec089-e2bd-4828-b18f-eed4f16d86ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 228-5553\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1903, "fields": {"revision": 1493, "object_id": "bc03d121-1c3f-4b67-88a1-540a94dc66a6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bc03d121-1c3f-4b67-88a1-540a94dc66a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c8d3c978-873f-477d-b3be-2c327ec1cba6\", \"organization\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"registration_no\": \"WD 06102002\"}}]", "object_repr": "Mike Hall - Well Driller"}}, {"model": "reversion.version", "pk": 1904, "fields": {"revision": 1493, "object_id": "e73b0d14-7527-4f4a-a5f4-29a71215cb3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e73b0d14-7527-4f4a-a5f4-29a71215cb3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dynamic Drilling Inc.\", \"street_address\": \"E2 - 225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 298-5943\", \"fax_tel\": \"(604) 936-7377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dynamic Drilling Inc."}}, {"model": "reversion.version", "pk": 1905, "fields": {"revision": 1494, "object_id": "bc58a9fc-0620-4abd-b92d-fe5b6e72bf81", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bc58a9fc-0620-4abd-b92d-fe5b6e72bf81\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7c228921-4aeb-4f2d-b735-e84818c94b7d\", \"organization\": \"23debd72-265a-4173-a92b-28add7eb508d\", \"registration_no\": \"WPI 06022604\"}}]", "object_repr": "Gary Moore - Pump Installer"}}, {"model": "reversion.version", "pk": 1906, "fields": {"revision": 1494, "object_id": "23debd72-265a-4173-a92b-28add7eb508d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23debd72-265a-4173-a92b-28add7eb508d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GDM Groundwater Inc.\", \"street_address\": \"4426 Grizzly Hill Road\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B4\", \"main_tel\": \"(250) 558-6812\", \"fax_tel\": \"(250) 546-0910\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GDM Groundwater Inc."}}, {"model": "reversion.version", "pk": 1907, "fields": {"revision": 1495, "object_id": "bc6f99ac-0cc9-494d-9e3c-98d08044c19c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bc6f99ac-0cc9-494d-9e3c-98d08044c19c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6de9f17e-3bd1-4951-89cb-d657bfa715ad\", \"organization\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"registration_no\": \"WD 08040201\"}}]", "object_repr": "Owen Barrett - Well Driller"}}, {"model": "reversion.version", "pk": 1908, "fields": {"revision": 1495, "object_id": "0d86aca7-97f8-450f-a9e0-0c21d1578f85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"PO Box 550\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J1\", \"main_tel\": \"(250) 426-0255\", \"fax_tel\": \"(250) 426-0251\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 1909, "fields": {"revision": 1496, "object_id": "bd03cde7-c55c-4984-a8ff-e4af358b6292", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bd03cde7-c55c-4984-a8ff-e4af358b6292\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d81b5bc9-ef42-45a4-8e59-423fdda2024c\", \"organization\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"registration_no\": \"WD 05052903\"}}]", "object_repr": "Cameron Wiebe - Well Driller"}}, {"model": "reversion.version", "pk": 1910, "fields": {"revision": 1496, "object_id": "8706dbf8-7a1d-4306-943a-7c39465c45d2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8706dbf8-7a1d-4306-943a-7c39465c45d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Anderson Water Services Ltd.\", \"street_address\": \"PO Box 6099\", \"city\": \"Fort St. John\", \"province_state\": \"BC\", \"postal_code\": \"V1J 4H6\", \"main_tel\": \"(250) 785-2285\", \"fax_tel\": \"(250) 785-2299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Anderson Water Services Ltd."}}, {"model": "reversion.version", "pk": 1911, "fields": {"revision": 1497, "object_id": "bdece737-9205-4bc0-af4f-d5687ba1e60e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bdece737-9205-4bc0-af4f-d5687ba1e60e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8026ce88-f72a-4ff5-acd9-69acefb080de\", \"organization\": \"01b7c476-2157-439e-9b19-007e43b52ede\", \"registration_no\": \"WPI 05101402\"}}]", "object_repr": "Shane Ramsey - Pump Installer"}}, {"model": "reversion.version", "pk": 1912, "fields": {"revision": 1497, "object_id": "01b7c476-2157-439e-9b19-007e43b52ede", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01b7c476-2157-439e-9b19-007e43b52ede\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Trinity Valley Drilling\", \"street_address\": \"Box 5\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G0\", \"main_tel\": \"(250) 547-9447\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Trinity Valley Drilling"}}, {"model": "reversion.version", "pk": 1913, "fields": {"revision": 1498, "object_id": "be1f47e2-ba14-43e0-9ce3-b1bc35a21f5e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"be1f47e2-ba14-43e0-9ce3-b1bc35a21f5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"26f75544-8ac7-493d-98e8-6b44d576e9b0\", \"organization\": \"ddf6ceb6-0852-44cd-a7f7-d94c46635a76\", \"registration_no\": \"WPI 06090605\"}}]", "object_repr": "Carl Mellings - Pump Installer"}}, {"model": "reversion.version", "pk": 1914, "fields": {"revision": 1498, "object_id": "ddf6ceb6-0852-44cd-a7f7-d94c46635a76", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ddf6ceb6-0852-44cd-a7f7-d94c46635a76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Carl Mellings Plumbing\", \"street_address\": \"4925 Conifer Way\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6J3\", \"main_tel\": \"(250) 748-3328\", \"fax_tel\": \"(250) 748-3358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Carl Mellings Plumbing"}}, {"model": "reversion.version", "pk": 1915, "fields": {"revision": 1499, "object_id": "be5c01df-8b69-46ad-84dd-976a5fb879be", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"be5c01df-8b69-46ad-84dd-976a5fb879be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"020d08cc-9635-4e0e-8769-85cdec84bb1b\", \"organization\": \"4488c2f4-d4f5-4d2e-8fec-21ee516b0998\", \"registration_no\": \"WD 13061301\"}}]", "object_repr": "Bernard Hopper - Well Driller"}}, {"model": "reversion.version", "pk": 1916, "fields": {"revision": 1499, "object_id": "4488c2f4-d4f5-4d2e-8fec-21ee516b0998", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4488c2f4-d4f5-4d2e-8fec-21ee516b0998\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Grassroots Drilling Inc.\", \"street_address\": \"Po Box 2498\", \"city\": \"Cowichan Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1N0\", \"main_tel\": \"(250) 412-9683\", \"fax_tel\": \"(250) 389-1554\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Grassroots Drilling Inc."}}, {"model": "reversion.version", "pk": 1917, "fields": {"revision": 1500, "object_id": "be727216-42e5-4ae6-bad2-0f04411ce870", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"be727216-42e5-4ae6-bad2-0f04411ce870\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b4538be2-8977-4c27-b632-a72522a12613\", \"organization\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"registration_no\": \"WD 06022606\"}}]", "object_repr": "Arnold Smithson - Well Driller"}}, {"model": "reversion.version", "pk": 1918, "fields": {"revision": 1500, "object_id": "01bd568f-5972-458d-b553-dc0bc83144ba", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 1919, "fields": {"revision": 1501, "object_id": "bec60f9c-e8c0-4564-b4e8-ec86ea7feb01", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bec60f9c-e8c0-4564-b4e8-ec86ea7feb01\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"daed7f3d-c5bd-46a6-a059-ce82055d23f3\", \"organization\": \"3ff83bca-12ba-40c1-9c00-e06a43961ca8\", \"registration_no\": \"WPI 05120204\"}}]", "object_repr": "Wayne Michener - Pump Installer"}}, {"model": "reversion.version", "pk": 1920, "fields": {"revision": 1501, "object_id": "3ff83bca-12ba-40c1-9c00-e06a43961ca8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3ff83bca-12ba-40c1-9c00-e06a43961ca8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Michener Plumbing & Pumps\", \"street_address\": \"736 Isabella Point Road\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 1V2\", \"main_tel\": \"(250) 653-4120\", \"fax_tel\": \"(250) 653-4120\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Michener Plumbing & Pumps"}}, {"model": "reversion.version", "pk": 1921, "fields": {"revision": 1502, "object_id": "becfc8a8-3261-4aa8-af93-730f7acd3a53", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"becfc8a8-3261-4aa8-af93-730f7acd3a53\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"e11c66cd-c2c6-4298-9c2c-0001a393d3b7\", \"organization\": \"dcccca3e-0f56-4635-967c-597cd7b10b67\", \"registration_no\": \"WD 05101403\"}}]", "object_repr": "David Schibli - Well Driller"}}, {"model": "reversion.version", "pk": 1922, "fields": {"revision": 1502, "object_id": "dcccca3e-0f56-4635-967c-597cd7b10b67", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dcccca3e-0f56-4635-967c-597cd7b10b67\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Schibli Drilling\", \"street_address\": \"PO Box 725 17 Blue Springs Road\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G1\", \"main_tel\": \"(250) 547-9796\", \"fax_tel\": \"(250) 547-9725\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Schibli Drilling"}}, {"model": "reversion.version", "pk": 1923, "fields": {"revision": 1503, "object_id": "bee54849-1bd1-4fc4-aaf5-9f8d1db4b0be", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bee54849-1bd1-4fc4-aaf5-9f8d1db4b0be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"54ad2c7d-18e7-46dc-9a99-bf9fc8211ab3\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 06022604\"}}]", "object_repr": "Pat Kelly - Well Driller"}}, {"model": "reversion.version", "pk": 1924, "fields": {"revision": 1503, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1925, "fields": {"revision": 1504, "object_id": "bf6b3957-f1c7-4ffa-a530-c9b3158cb635", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bf6b3957-f1c7-4ffa-a530-c9b3158cb635\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"52a58f28-e2df-4153-8dda-680cd0f9f792\", \"organization\": \"e6902332-38d1-4048-ac87-4c8d886b2f9a\", \"registration_no\": \"WPI 06101903\"}}]", "object_repr": "Gerry Hawkes - Pump Installer"}}, {"model": "reversion.version", "pk": 1926, "fields": {"revision": 1504, "object_id": "e6902332-38d1-4048-ac87-4c8d886b2f9a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e6902332-38d1-4048-ac87-4c8d886b2f9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Gerry Hawkes Plumbing Ltd.\", \"street_address\": \"4660 Hillbank Road\", \"city\": \"Cowichan Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1N1\", \"main_tel\": \"(205) 748-0502\", \"fax_tel\": \"(250) 746-7917\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Gerry Hawkes Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1927, "fields": {"revision": 1505, "object_id": "bf9f379c-d809-4b32-9479-aada7c141910", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bf9f379c-d809-4b32-9479-aada7c141910\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e7bc1b4d-cdf5-4187-ba3b-ea87d78f66e8\", \"organization\": \"7b3a5273-376b-424f-87c4-70292099e48e\", \"registration_no\": \"WPI 06112802\"}}]", "object_repr": "Stuart McCormick - Pump Installer"}}, {"model": "reversion.version", "pk": 1928, "fields": {"revision": 1505, "object_id": "7b3a5273-376b-424f-87c4-70292099e48e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7b3a5273-376b-424f-87c4-70292099e48e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"McCormick Heating & Plumbing Ltd.\", \"street_address\": \"Box 735\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 5R4\", \"main_tel\": \"(250) 354-4223\", \"fax_tel\": \"(250) 354-1454\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "McCormick Heating & Plumbing Ltd."}}, {"model": "reversion.version", "pk": 1929, "fields": {"revision": 1506, "object_id": "bffd9bb5-f74d-4006-8802-43d7257b19e5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"bffd9bb5-f74d-4006-8802-43d7257b19e5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"42e863bc-2dac-4e01-8bba-87c6f113710d\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101304\"}}]", "object_repr": "Andre Bentley - Well Driller"}}, {"model": "reversion.version", "pk": 1930, "fields": {"revision": 1506, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 1931, "fields": {"revision": 1507, "object_id": "c02a96d1-3b8b-4148-b819-e9a2b4225fbb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c02a96d1-3b8b-4148-b819-e9a2b4225fbb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"be7d9307-2d05-4bf4-b552-23241b16430d\", \"organization\": \"c9da900f-f9bd-47b3-84de-75ab8ccd5e22\", \"registration_no\": \"WD 06103102\"}}]", "object_repr": "Tor Berg - Well Driller"}}, {"model": "reversion.version", "pk": 1932, "fields": {"revision": 1507, "object_id": "c9da900f-f9bd-47b3-84de-75ab8ccd5e22", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c9da900f-f9bd-47b3-84de-75ab8ccd5e22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Boart Longyear\", \"street_address\": \"7067 194 B Street\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 5Z3\", \"main_tel\": \"(604) 831-7727\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Boart Longyear"}}, {"model": "reversion.version", "pk": 1933, "fields": {"revision": 1508, "object_id": "c1159c6b-358f-4a46-9238-12d8e0587c60", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c1159c6b-358f-4a46-9238-12d8e0587c60\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e42922b0-c09c-4f91-a8e6-1f4761639549\", \"organization\": \"a26e2b2e-ba3f-4e60-9d24-e25d217ea086\", \"registration_no\": \"WPI 05022502\"}}]", "object_repr": "Lauren Holman - Pump Installer"}}, {"model": "reversion.version", "pk": 1934, "fields": {"revision": 1508, "object_id": "a26e2b2e-ba3f-4e60-9d24-e25d217ea086", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a26e2b2e-ba3f-4e60-9d24-e25d217ea086\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"LC Holman Plumbing Services Ltd.\", \"street_address\": \"2715 Mountain Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6N3\", \"main_tel\": \"(250) 748-2351\", \"fax_tel\": \"(250) 748-8333\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "LC Holman Plumbing Services Ltd."}}, {"model": "reversion.version", "pk": 1935, "fields": {"revision": 1509, "object_id": "c15bf581-daff-4d8e-a6e4-2dfe6e61da15", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c15bf581-daff-4d8e-a6e4-2dfe6e61da15\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8501e520-34de-4b12-bf7e-d5e89ad77f27\", \"organization\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"registration_no\": \"WD 05082201\"}}]", "object_repr": "Darren Mitchell - Well Driller"}}, {"model": "reversion.version", "pk": 1936, "fields": {"revision": 1509, "object_id": "b1c02a23-6a65-4e00-a327-b80cca992c1f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"Po. Box 189 Stn. Aldergrove\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 1937, "fields": {"revision": 1510, "object_id": "c1b2a982-0047-4d0e-9986-cf955ebc929e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c1b2a982-0047-4d0e-9986-cf955ebc929e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"52ebc345-0240-4474-b886-98b0a71fe7d8\", \"organization\": \"d76f6112-3f54-41f9-a7c5-46ccb1e331cd\", \"registration_no\": \"WPI 08012901\"}}]", "object_repr": "Justin Horsman - Pump Installer"}}, {"model": "reversion.version", "pk": 1938, "fields": {"revision": 1510, "object_id": "d76f6112-3f54-41f9-a7c5-46ccb1e331cd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d76f6112-3f54-41f9-a7c5-46ccb1e331cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Vancouver Island Pump Service\", \"street_address\": \"3447 Island Highway West\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 2B7\", \"main_tel\": \"(250) 202-7494\", \"fax_tel\": \"(250) 923-5068\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Vancouver Island Pump Service"}}, {"model": "reversion.version", "pk": 1939, "fields": {"revision": 1511, "object_id": "c1babb65-3f2b-40ef-962e-c76789a1a937", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c1babb65-3f2b-40ef-962e-c76789a1a937\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"435e4697-3bdd-460d-a6b7-1033b75d7efd\", \"organization\": null, \"registration_no\": \"WPI 06022603\"}}]", "object_repr": "Gilbert Dubois - Pump Installer"}}, {"model": "reversion.version", "pk": 1940, "fields": {"revision": 1512, "object_id": "c1d325ca-20b9-443b-a040-085bd066a0ec", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c1d325ca-20b9-443b-a040-085bd066a0ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a4b38fcb-ce95-4c56-8932-19679c565096\", \"organization\": \"8bde7b03-475f-4c19-b60b-7f12e3cf2d65\", \"registration_no\": \"WPI 06101602\"}}]", "object_repr": "Andy McCabe - Pump Installer"}}, {"model": "reversion.version", "pk": 1941, "fields": {"revision": 1512, "object_id": "8bde7b03-475f-4c19-b60b-7f12e3cf2d65", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8bde7b03-475f-4c19-b60b-7f12e3cf2d65\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"McCabe Plumbing\", \"street_address\": \"854 Chapman Road\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L0\", \"main_tel\": \"(250) 701-1628\", \"fax_tel\": \"(250) 743-0755\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "McCabe Plumbing"}}, {"model": "reversion.version", "pk": 1942, "fields": {"revision": 1513, "object_id": "c22c3dd5-5f20-4da3-9fe0-566c26de4c4e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c22c3dd5-5f20-4da3-9fe0-566c26de4c4e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"291d9b46-a7bd-455a-a923-0c6193cde190\", \"organization\": \"869832f5-3e75-4dde-b872-8c56b537bb6d\", \"registration_no\": \"WD 08061801\"}}]", "object_repr": "David Lauckner - Well Driller"}}, {"model": "reversion.version", "pk": 1943, "fields": {"revision": 1513, "object_id": "869832f5-3e75-4dde-b872-8c56b537bb6d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"869832f5-3e75-4dde-b872-8c56b537bb6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cowichan Valley Water Wells\", \"street_address\": \"#1-2955 Jacob Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W4\", \"main_tel\": \"(250) 748-6749\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cowichan Valley Water Wells"}}, {"model": "reversion.version", "pk": 1944, "fields": {"revision": 1514, "object_id": "c2c4b63b-17ee-4337-bd32-219b4fa6b819", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c2c4b63b-17ee-4337-bd32-219b4fa6b819\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0a02fb00-edc2-424d-b838-97f3f0ffb747\", \"organization\": \"9566764c-517e-4cf2-a4d3-7e2ddcc5f83f\", \"registration_no\": \"WPI 05110801\"}}]", "object_repr": "Patrick Doorn - Pump Installer"}}, {"model": "reversion.version", "pk": 1945, "fields": {"revision": 1514, "object_id": "9566764c-517e-4cf2-a4d3-7e2ddcc5f83f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9566764c-517e-4cf2-a4d3-7e2ddcc5f83f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mountain View Electric Ltd.\", \"street_address\": \"1009 Belvedere Street; Box 467\", \"city\": \"Enderby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1V0\", \"main_tel\": \"(250) 838-6455\", \"fax_tel\": \"(250) 838-6732\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mountain View Electric Ltd."}}, {"model": "reversion.version", "pk": 1946, "fields": {"revision": 1515, "object_id": "c3b4bd14-3ea0-4f56-ac0f-f7626144a2e9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c3b4bd14-3ea0-4f56-ac0f-f7626144a2e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"abe4e829-fd0d-4a51-b672-63eb55240489\", \"organization\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"registration_no\": \"WPI 15072201\"}}]", "object_repr": "Bryan Palsson - Pump Installer"}}, {"model": "reversion.version", "pk": 1947, "fields": {"revision": 1515, "object_id": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Utilities\", \"street_address\": \"3175 Turner Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7T9\", \"main_tel\": \"(604) 850-0441\", \"fax_tel\": \"(604) 768-9269\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Utilities"}}, {"model": "reversion.version", "pk": 1948, "fields": {"revision": 1516, "object_id": "c533d5ac-9db1-428a-9b8d-03772f890049", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c533d5ac-9db1-428a-9b8d-03772f890049\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"97cc565b-a85c-4c45-85e6-679384bab63b\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 05110803\"}}]", "object_repr": "Gregory English - Well Driller"}}, {"model": "reversion.version", "pk": 1949, "fields": {"revision": 1516, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 1950, "fields": {"revision": 1517, "object_id": "c5739f53-465f-4601-b7b1-d2040efa9ee3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c5739f53-465f-4601-b7b1-d2040efa9ee3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"92048a10-e6a7-4b19-8873-5763dc75eee9\", \"organization\": \"72573009-a6f6-4eb1-a6ad-897ee35333cc\", \"registration_no\": \"WD 06101801\"}}]", "object_repr": "Rusty Stooksberry - Well Driller"}}, {"model": "reversion.version", "pk": 1951, "fields": {"revision": 1517, "object_id": "72573009-a6f6-4eb1-a6ad-897ee35333cc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"72573009-a6f6-4eb1-a6ad-897ee35333cc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Stooksberry Drilling & Pumps\", \"street_address\": \"469 Nicholson Street South\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2M 3L8\", \"main_tel\": \"(250) 562-9836\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Stooksberry Drilling & Pumps"}}, {"model": "reversion.version", "pk": 1952, "fields": {"revision": 1518, "object_id": "c5863e86-af89-4219-983f-e901c1a80de5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c5863e86-af89-4219-983f-e901c1a80de5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ff7269ac-a8aa-4c31-b907-a7f0214b5004\", \"organization\": \"7af636c4-093f-4a61-af58-3a3bc8ddc62c\", \"registration_no\": \"WD 05012601\"}}]", "object_repr": "Bill Tuytel - Well Driller"}}, {"model": "reversion.version", "pk": 1953, "fields": {"revision": 1518, "object_id": "7af636c4-093f-4a61-af58-3a3bc8ddc62c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7af636c4-093f-4a61-af58-3a3bc8ddc62c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Downrite Drilling Ltd.\", \"street_address\": \"4346 Wilson Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 5C6\", \"main_tel\": \"(604) 823-4086\", \"fax_tel\": \"(604) 823-4086\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Downrite Drilling Ltd."}}, {"model": "reversion.version", "pk": 1954, "fields": {"revision": 1519, "object_id": "c84644cf-99a1-455e-b574-980c158c9c50", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c84644cf-99a1-455e-b574-980c158c9c50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fe2739e7-6148-4f73-8693-9dab671da5e2\", \"organization\": \"18623bcb-beea-4826-8077-d3e9ec6db131\", \"registration_no\": \"WD 05033001\"}}]", "object_repr": "Derek McGladdery - Well Driller"}}, {"model": "reversion.version", "pk": 1955, "fields": {"revision": 1519, "object_id": "18623bcb-beea-4826-8077-d3e9ec6db131", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"18623bcb-beea-4826-8077-d3e9ec6db131\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dan-Gare Drilling Ltd.\", \"street_address\": \"Box 722\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B0\", \"main_tel\": \"(250) 546-3480\", \"fax_tel\": \"(250) 546-3603\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dan-Gare Drilling Ltd."}}, {"model": "reversion.version", "pk": 1956, "fields": {"revision": 1520, "object_id": "c86766ae-0486-45e5-b16c-046c0ae7ad0f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c86766ae-0486-45e5-b16c-046c0ae7ad0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"01cce4bf-18e6-423a-9b97-8dc7bc5e26de\", \"organization\": \"576a9ca8-3a12-47c1-b800-1e4947bd626a\", \"registration_no\": \"WPI 06101101\"}}]", "object_repr": "Richard Traer - Pump Installer"}}, {"model": "reversion.version", "pk": 1957, "fields": {"revision": 1520, "object_id": "576a9ca8-3a12-47c1-b800-1e4947bd626a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"576a9ca8-3a12-47c1-b800-1e4947bd626a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Polaris Plumbing\", \"street_address\": \"Box 466\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2W1\", \"main_tel\": \"(250) 537-4997\", \"fax_tel\": \"(250) 537-4956\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Polaris Plumbing"}}, {"model": "reversion.version", "pk": 1958, "fields": {"revision": 1521, "object_id": "c86c05e8-4904-42fb-a020-9ba9e9740b75", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c86c05e8-4904-42fb-a020-9ba9e9740b75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"28c34298-1a99-4c0e-b13e-3420a37736a9\", \"organization\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"registration_no\": \"WD 06022607\"}}]", "object_repr": "Ken Smithson - Well Driller"}}, {"model": "reversion.version", "pk": 1959, "fields": {"revision": 1521, "object_id": "01bd568f-5972-458d-b553-dc0bc83144ba", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 1960, "fields": {"revision": 1522, "object_id": "c8f86912-8a88-4444-9fc7-26936c6ee3ec", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"c8f86912-8a88-4444-9fc7-26936c6ee3ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"51943106-d32a-4a75-8131-86be74ca9321\", \"organization\": \"02d2428c-1ec8-4ecd-aac6-becd8a9a93c4\", \"registration_no\": \"WPI 05101403\"}}]", "object_repr": "Laurence Desilets - Pump Installer"}}, {"model": "reversion.version", "pk": 1961, "fields": {"revision": 1522, "object_id": "02d2428c-1ec8-4ecd-aac6-becd8a9a93c4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"02d2428c-1ec8-4ecd-aac6-becd8a9a93c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Butch's Pump\", \"street_address\": \"6729 Hwy. 97 South\", \"city\": \"100 Mile House\", \"province_state\": \"BC\", \"postal_code\": \"V0K 2E2\", \"main_tel\": \"(250) 395-1971\", \"fax_tel\": \"(250) 395-1997\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Butch's Pump"}}, {"model": "reversion.version", "pk": 1962, "fields": {"revision": 1523, "object_id": "ca87f76b-e279-4638-bd1b-9862dc447f1c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ca87f76b-e279-4638-bd1b-9862dc447f1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6882217f-b346-4421-8261-09611ac771dd\", \"organization\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"registration_no\": \"WPI 06032802\"}}]", "object_repr": "Robert Stanvick - Pump Installer"}}, {"model": "reversion.version", "pk": 1963, "fields": {"revision": 1523, "object_id": "1b9ede02-8bdd-425a-b4b2-b0da85a1f149", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1b9ede02-8bdd-425a-b4b2-b0da85a1f149\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Double D Drilling Ltd.\", \"street_address\": \"Box 766; 5275 Arthur Road\", \"city\": \"Terrace\", \"province_state\": \"BC\", \"postal_code\": \"V8G 4R1\", \"main_tel\": \"(250) 635-7877\", \"fax_tel\": \"(250) 635-7899\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Double D Drilling Ltd."}}, {"model": "reversion.version", "pk": 1964, "fields": {"revision": 1524, "object_id": "caa5f26f-8934-4e88-bea0-a85003f9cf03", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"caa5f26f-8934-4e88-bea0-a85003f9cf03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f735ed9c-a746-4c6a-8a5f-4c21e91082e0\", \"organization\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"registration_no\": \"WD 06101303\"}}]", "object_repr": "Robert Faasse - Well Driller"}}, {"model": "reversion.version", "pk": 1965, "fields": {"revision": 1524, "object_id": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 1966, "fields": {"revision": 1525, "object_id": "cb1472ee-49d9-4471-a319-6f0db33ab2f7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cb1472ee-49d9-4471-a319-6f0db33ab2f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d9a7182d-5cbc-4135-a329-1d571c3073dc\", \"organization\": \"e1468377-8147-4f82-a9e7-6a9d877aff5a\", \"registration_no\": \"WPI 06100602\"}}]", "object_repr": "Paul Anderson - Pump Installer"}}, {"model": "reversion.version", "pk": 1967, "fields": {"revision": 1525, "object_id": "e1468377-8147-4f82-a9e7-6a9d877aff5a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e1468377-8147-4f82-a9e7-6a9d877aff5a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canwest Well Drilling Ltd.\", \"street_address\": \"4606 Bowness Avenue\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 3S1\", \"main_tel\": \"(604) 485-4250\", \"fax_tel\": \"(604) 485-7630\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canwest Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1968, "fields": {"revision": 1526, "object_id": "cb31aa4e-e560-46e4-8374-cb1b434c1657", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cb31aa4e-e560-46e4-8374-cb1b434c1657\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6a4e83a2-a446-408a-984a-b00afde71088\", \"organization\": \"03f1fd07-3663-4b86-b5cc-5f3ce4b2714c\", \"registration_no\": \"WD 05090701\"}}]", "object_repr": "Kevin Mews - Well Driller"}}, {"model": "reversion.version", "pk": 1969, "fields": {"revision": 1526, "object_id": "03f1fd07-3663-4b86-b5cc-5f3ce4b2714c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"03f1fd07-3663-4b86-b5cc-5f3ce4b2714c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services Ltd.\", \"street_address\": \"160-13511 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1K4\", \"main_tel\": \"(604) 214-7007\", \"fax_tel\": \"(604) 214-7017\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services Ltd."}}, {"model": "reversion.version", "pk": 1970, "fields": {"revision": 1527, "object_id": "cb9f259b-a17a-4bbe-bb03-efe68d8edcbe", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cb9f259b-a17a-4bbe-bb03-efe68d8edcbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"46dafc83-a6c9-4654-a07e-5a4e2018e6ab\", \"organization\": \"89a6f386-7e5a-4a94-b570-edcc4c6701c6\", \"registration_no\": \"WPI 06103103\"}}]", "object_repr": "Craig Macadam - Pump Installer"}}, {"model": "reversion.version", "pk": 1971, "fields": {"revision": 1527, "object_id": "89a6f386-7e5a-4a94-b570-edcc4c6701c6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"89a6f386-7e5a-4a94-b570-edcc4c6701c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"PIRT Pump & Pipe\", \"street_address\": \"Box 369\", \"city\": \"Burns Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0J 1E0\", \"main_tel\": \"(250) 692-6019\", \"fax_tel\": \"(250) 692-3012\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "PIRT Pump & Pipe"}}, {"model": "reversion.version", "pk": 1972, "fields": {"revision": 1528, "object_id": "cc2518d1-cbfb-401a-8be0-3dffd3a03d73", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cc2518d1-cbfb-401a-8be0-3dffd3a03d73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5b9d2870-eb91-4675-a4b9-e06579ebe382\", \"organization\": \"510465f3-0e35-499d-9b57-6e60d4066a7d\", \"registration_no\": \"WPI 06091801\"}}]", "object_repr": "Roger Blenkarn - Pump Installer"}}, {"model": "reversion.version", "pk": 1973, "fields": {"revision": 1528, "object_id": "510465f3-0e35-499d-9b57-6e60d4066a7d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"510465f3-0e35-499d-9b57-6e60d4066a7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"RGB Plumbing Specialties\", \"street_address\": \"418 Gillis Avenue\", \"city\": \"Sicamous\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2V1\", \"main_tel\": \"(250) 517-8311\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "RGB Plumbing Specialties"}}, {"model": "reversion.version", "pk": 1974, "fields": {"revision": 1529, "object_id": "cd0b5677-b34e-4a8f-8cdf-f0080a5f3006", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cd0b5677-b34e-4a8f-8cdf-f0080a5f3006\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8c03c629-1a7d-44b2-a1fc-cdcc64ea5c2a\", \"organization\": \"45194aed-b288-4725-87c5-33e87e41f153\", \"registration_no\": \"WD 04121501\"}}]", "object_repr": "Carl MacKenzie - Well Driller"}}, {"model": "reversion.version", "pk": 1975, "fields": {"revision": 1529, "object_id": "45194aed-b288-4725-87c5-33e87e41f153", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"45194aed-b288-4725-87c5-33e87e41f153\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thorman Drilling Ltd.\", \"street_address\": \"Box 986, 111 Cottonwood Road\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 6A5\", \"main_tel\": \"(250) 354-1333\", \"fax_tel\": \"(250) 354-1331\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thorman Drilling Ltd."}}, {"model": "reversion.version", "pk": 1976, "fields": {"revision": 1530, "object_id": "cd716026-060f-4100-9463-83a375e3612b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cd716026-060f-4100-9463-83a375e3612b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8026ce88-f72a-4ff5-acd9-69acefb080de\", \"organization\": \"01b7c476-2157-439e-9b19-007e43b52ede\", \"registration_no\": \"WD 05101402\"}}]", "object_repr": "Shane Ramsey - Well Driller"}}, {"model": "reversion.version", "pk": 1977, "fields": {"revision": 1530, "object_id": "01b7c476-2157-439e-9b19-007e43b52ede", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01b7c476-2157-439e-9b19-007e43b52ede\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Trinity Valley Drilling\", \"street_address\": \"Box 5\", \"city\": \"Lumby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 2G0\", \"main_tel\": \"(250) 547-9447\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Trinity Valley Drilling"}}, {"model": "reversion.version", "pk": 1978, "fields": {"revision": 1531, "object_id": "cda1de2e-62df-4337-8502-ced785be95b1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cda1de2e-62df-4337-8502-ced785be95b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ca894801-2b49-48ff-865c-fb70bd84340a\", \"organization\": \"952b6309-93ee-4fc9-b8ef-0bbb792a2568\", \"registration_no\": \"WPI 05041301\"}}]", "object_repr": "Shawn Stone - Pump Installer"}}, {"model": "reversion.version", "pk": 1979, "fields": {"revision": 1531, "object_id": "952b6309-93ee-4fc9-b8ef-0bbb792a2568", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"952b6309-93ee-4fc9-b8ef-0bbb792a2568\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Northwind Drilling and Pump Sales\", \"street_address\": \"Box 284\", \"city\": \"Watson Lake\", \"province_state\": \"YT\", \"postal_code\": \"Y0A 1C0\", \"main_tel\": \"(867) 536-2009\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Northwind Drilling and Pump Sales"}}, {"model": "reversion.version", "pk": 1980, "fields": {"revision": 1532, "object_id": "ce04889b-9237-44de-badf-6afbd351497e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ce04889b-9237-44de-badf-6afbd351497e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"80623cdf-3582-4fcc-9957-c25ca02e712b\", \"organization\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"registration_no\": \"WPI 06090705\"}}]", "object_repr": "Rob Moon - Pump Installer"}}, {"model": "reversion.version", "pk": 1981, "fields": {"revision": 1532, "object_id": "53586668-d586-44d2-8ea1-82ea79b4a596", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Highlands Irrigation Ltd.\", \"street_address\": \"1105 South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A7\", \"main_tel\": \"(250) 392-2321\", \"fax_tel\": \"(250) 392-2377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Highlands Irrigation Ltd."}}, {"model": "reversion.version", "pk": 1982, "fields": {"revision": 1533, "object_id": "ce1ae63c-4a1e-4499-9795-7c2557c8cc5e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ce1ae63c-4a1e-4499-9795-7c2557c8cc5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"bc4f8fd3-5acf-438b-b46d-a696e3388f97\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WPI 12052401\"}}]", "object_repr": "Dave Rosenburg - Pump Installer"}}, {"model": "reversion.version", "pk": 1983, "fields": {"revision": 1533, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1984, "fields": {"revision": 1534, "object_id": "ce6839a9-9efb-4661-8482-2b2e1cf41112", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ce6839a9-9efb-4661-8482-2b2e1cf41112\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"064a95be-0a10-4f82-bb50-80e78521cc82\", \"organization\": \"8556ca58-3be5-4a21-97a4-31ab515a45be\", \"registration_no\": \"WD 16053101\"}}]", "object_repr": "Josef Hartl - Well Driller"}}, {"model": "reversion.version", "pk": 1985, "fields": {"revision": 1534, "object_id": "8556ca58-3be5-4a21-97a4-31ab515a45be", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8556ca58-3be5-4a21-97a4-31ab515a45be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Hartl Water Well Drilling & Service Ltd.\", \"street_address\": \"5420 RR 275\", \"city\": \"Sturgeon County\", \"province_state\": \"AB\", \"postal_code\": \"T8R 1Y9\", \"main_tel\": \"(780) 999-6257\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Hartl Water Well Drilling & Service Ltd."}}, {"model": "reversion.version", "pk": 1986, "fields": {"revision": 1535, "object_id": "ce996c69-c466-4a9a-92c3-ed8ab4a4b616", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ce996c69-c466-4a9a-92c3-ed8ab4a4b616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9c7e15e9-74ee-4e95-8a00-30196e9f2f14\", \"organization\": \"5298ce6e-ae42-46ce-8ba1-3d2f39e828b6\", \"registration_no\": \"WPI 05022501\"}}]", "object_repr": "Dave Mellis - Pump Installer"}}, {"model": "reversion.version", "pk": 1987, "fields": {"revision": 1535, "object_id": "5298ce6e-ae42-46ce-8ba1-3d2f39e828b6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5298ce6e-ae42-46ce-8ba1-3d2f39e828b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"EDS Pumps & Water Treatment Ltd.\", \"street_address\": \"23184 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 534-1115\", \"fax_tel\": \"(604) 534-5522\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "EDS Pumps & Water Treatment Ltd."}}, {"model": "reversion.version", "pk": 1988, "fields": {"revision": 1536, "object_id": "cf00939c-0ac5-4236-861d-07209cdc2b62", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cf00939c-0ac5-4236-861d-07209cdc2b62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"852ae2c5-7d37-4be9-9ff6-e8c6e3cc5cef\", \"organization\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"registration_no\": \"WD 06102703\"}}]", "object_repr": "William John Williams - Well Driller"}}, {"model": "reversion.version", "pk": 1989, "fields": {"revision": 1536, "object_id": "7a319709-f9d0-4480-9bf7-1c90b327d3f2", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7a319709-f9d0-4480-9bf7-1c90b327d3f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Red Williams Well Drilling Ltd.\", \"street_address\": \"980 Pratt Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W5\", \"main_tel\": \"(250) 951-0556\", \"fax_tel\": \"(250) 248-4555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Red Williams Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 1990, "fields": {"revision": 1537, "object_id": "cf52cb3b-4435-46a0-a512-e233c02ffa0f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cf52cb3b-4435-46a0-a512-e233c02ffa0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d3eaa029-ea8b-4b96-9b3f-aba5f0419169\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 05112303\"}}]", "object_repr": "Marcus Schlick - Well Driller"}}, {"model": "reversion.version", "pk": 1991, "fields": {"revision": 1537, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 1992, "fields": {"revision": 1538, "object_id": "cfe436e2-c3c0-4d84-a6bf-1e9653d39b73", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"cfe436e2-c3c0-4d84-a6bf-1e9653d39b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"01627627-8a6c-4130-a3fe-43005d225f6d\", \"organization\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"registration_no\": \"WPI 05062001\"}}]", "object_repr": "Michael Lamont - Pump Installer"}}, {"model": "reversion.version", "pk": 1993, "fields": {"revision": 1538, "object_id": "e7aac76b-c4bc-4100-be45-5766d4e19e1c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e7aac76b-c4bc-4100-be45-5766d4e19e1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Precision Service & Pumps Inc.\", \"street_address\": \"1334 Riverside Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 8J2\", \"main_tel\": \"(604) 850-7010\", \"fax_tel\": \"(604) 850-9666\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Precision Service & Pumps Inc."}}, {"model": "reversion.version", "pk": 1994, "fields": {"revision": 1539, "object_id": "d0a4ab16-04f8-4660-b0a3-de5bb7f5234a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d0a4ab16-04f8-4660-b0a3-de5bb7f5234a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"128566fd-f348-47f9-bc65-3ae0c0b4b53a\", \"organization\": null, \"registration_no\": \"WPI 05011403\"}}]", "object_repr": "Russ Batyi - Pump Installer"}}, {"model": "reversion.version", "pk": 1995, "fields": {"revision": 1540, "object_id": "d0f99d75-2149-4bee-bd9c-a7f4b0460ced", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d0f99d75-2149-4bee-bd9c-a7f4b0460ced\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"3e4da2d2-8a11-4959-95e0-c4895a0a35e8\", \"organization\": \"5bb37f7c-f8af-41d5-83bb-017c402b62bc\", \"registration_no\": \"WPI 06101803\"}}]", "object_repr": "Kim Hardy - Pump Installer"}}, {"model": "reversion.version", "pk": 1996, "fields": {"revision": 1540, "object_id": "5bb37f7c-f8af-41d5-83bb-017c402b62bc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5bb37f7c-f8af-41d5-83bb-017c402b62bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"International Water Supply Ltd.\", \"street_address\": \"317 - 103rd Street E\", \"city\": \"Saskatoon\", \"province_state\": \"SK\", \"postal_code\": \"S7N 1Y9\", \"main_tel\": \"(306) 373-7070\", \"fax_tel\": \"(306) 373-1922\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "International Water Supply Ltd."}}, {"model": "reversion.version", "pk": 1997, "fields": {"revision": 1541, "object_id": "d159559e-846b-4c10-9a7f-e7c94ae751d3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d159559e-846b-4c10-9a7f-e7c94ae751d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5f4b448b-c673-4890-bd8c-83c38d8e0894\", \"organization\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"registration_no\": \"WD 05080801\"}}]", "object_repr": "Robert Franks - Well Driller"}}, {"model": "reversion.version", "pk": 1998, "fields": {"revision": 1541, "object_id": "b1c02a23-6a65-4e00-a327-b80cca992c1f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b1c02a23-6a65-4e00-a327-b80cca992c1f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"Po. Box 189 Stn. Aldergrove\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 1999, "fields": {"revision": 1542, "object_id": "d20f95ed-fd32-453c-8ad0-1f53ba88513c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d20f95ed-fd32-453c-8ad0-1f53ba88513c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6139ce66-2721-46ab-83a4-29e71fb0f3ac\", \"organization\": null, \"registration_no\": \"WPI 17042402\"}}]", "object_repr": "Robert Gough - Pump Installer"}}, {"model": "reversion.version", "pk": 2000, "fields": {"revision": 1543, "object_id": "d24d1cbe-c69f-4efe-98a4-fa4c07e788a1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d24d1cbe-c69f-4efe-98a4-fa4c07e788a1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"1cb92d8c-a9aa-4290-9575-7951a225664a\", \"organization\": null, \"registration_no\": \"WPI 17042401\"}}]", "object_repr": "Kevin Silvestri - Pump Installer"}}, {"model": "reversion.version", "pk": 2001, "fields": {"revision": 1544, "object_id": "d27ef5e9-3f55-433d-bfe2-019edc4f8f82", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d27ef5e9-3f55-433d-bfe2-019edc4f8f82\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"344c93db-9ede-4a95-8da8-267d8da4ee82\", \"organization\": \"11252abd-fea8-42c6-8c85-ebdd184cca7d\", \"registration_no\": \"WPI 05092801\"}}]", "object_repr": "Raymond Robertson - Pump Installer"}}, {"model": "reversion.version", "pk": 2002, "fields": {"revision": 1544, "object_id": "11252abd-fea8-42c6-8c85-ebdd184cca7d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"11252abd-fea8-42c6-8c85-ebdd184cca7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ray-Mar Enterprises\", \"street_address\": \"Box 2466\", \"city\": \"Salmon Arm\", \"province_state\": \"BC\", \"postal_code\": \"V1E 4R4\", \"main_tel\": \"(250) 832-8367\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ray-Mar Enterprises"}}, {"model": "reversion.version", "pk": 2003, "fields": {"revision": 1545, "object_id": "d2cfc824-4747-4c6d-834f-0b2ba03d11ce", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d2cfc824-4747-4c6d-834f-0b2ba03d11ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"37e2dc18-3094-4055-8da6-1a71037b6c01\", \"organization\": \"911e74d3-eee8-48e1-92a5-a1ea4d58c4fd\", \"registration_no\": \"WPI 06040701\"}}]", "object_repr": "Garth Ballance - Pump Installer"}}, {"model": "reversion.version", "pk": 2004, "fields": {"revision": 1545, "object_id": "911e74d3-eee8-48e1-92a5-a1ea4d58c4fd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"911e74d3-eee8-48e1-92a5-a1ea4d58c4fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Garth's Plumbing & Heating\", \"street_address\": \"6456 Harrop Procter Road\", \"city\": \"Nelson\", \"province_state\": \"BC\", \"postal_code\": \"V1L 6R1\", \"main_tel\": \"(250) 229-4050\", \"fax_tel\": \"(250) 229-4056\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Garth's Plumbing & Heating"}}, {"model": "reversion.version", "pk": 2005, "fields": {"revision": 1546, "object_id": "d3e43b2f-9594-4ba6-bbe2-ee003e8c87e9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d3e43b2f-9594-4ba6-bbe2-ee003e8c87e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"65f894f3-8f38-4e7c-85a9-d49234537372\", \"organization\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"registration_no\": \"WD 06030602\"}}]", "object_repr": "Gregory Sound - Well Driller"}}, {"model": "reversion.version", "pk": 2006, "fields": {"revision": 1546, "object_id": "01bd568f-5972-458d-b553-dc0bc83144ba", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"01bd568f-5972-458d-b553-dc0bc83144ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"D.A. Smithson & Sons Ltd.\", \"street_address\": \"3282 Happy Valley Road\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9C 2W1\", \"main_tel\": \"(250) 478-6937\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "D.A. Smithson & Sons Ltd."}}, {"model": "reversion.version", "pk": 2007, "fields": {"revision": 1547, "object_id": "d41033da-9a4d-4df4-a64d-ee407d1affbe", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d41033da-9a4d-4df4-a64d-ee407d1affbe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5f4b448b-c673-4890-bd8c-83c38d8e0894\", \"organization\": \"44f82d85-b3ce-4281-99ac-24fda6e391af\", \"registration_no\": \"WPI 05080801\"}}]", "object_repr": "Robert Franks - Pump Installer"}}, {"model": "reversion.version", "pk": 2008, "fields": {"revision": 1547, "object_id": "44f82d85-b3ce-4281-99ac-24fda6e391af", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"44f82d85-b3ce-4281-99ac-24fda6e391af\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Water Wells (1986) Ltd.\", \"street_address\": \"25188 - 52nd. Avenue\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 1G2\", \"main_tel\": \"(604) 857-0008\", \"fax_tel\": \"(604) 856-3294\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Water Wells (1986) Ltd."}}, {"model": "reversion.version", "pk": 2009, "fields": {"revision": 1548, "object_id": "d4a8e916-6682-4e9c-bd8f-ebb9fc6bb5a5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d4a8e916-6682-4e9c-bd8f-ebb9fc6bb5a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c8610820-4852-44e7-96cd-e6677a5b417d\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 05041301\"}}]", "object_repr": "Jeffrey Peppler - Well Driller"}}, {"model": "reversion.version", "pk": 2010, "fields": {"revision": 1548, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 2011, "fields": {"revision": 1549, "object_id": "d52b9a21-28b6-4094-b201-ab1e0e9b7a23", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d52b9a21-28b6-4094-b201-ab1e0e9b7a23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"266bc925-b365-4279-8f47-143246215676\", \"organization\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"registration_no\": \"WD 05041501\"}}]", "object_repr": "Brennan McMahon - Well Driller"}}, {"model": "reversion.version", "pk": 2012, "fields": {"revision": 1549, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 2013, "fields": {"revision": 1550, "object_id": "d5a9266b-0cbb-46ed-9318-98e6130f5213", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d5a9266b-0cbb-46ed-9318-98e6130f5213\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"085d70f7-bba2-4215-9875-4217167c2c79\", \"organization\": \"db6e8ab4-c6ea-4945-a7a7-6d95e85dd44f\", \"registration_no\": \"WPI 06040501\"}}]", "object_repr": "Andrew Petersen - Pump Installer"}}, {"model": "reversion.version", "pk": 2014, "fields": {"revision": 1550, "object_id": "db6e8ab4-c6ea-4945-a7a7-6d95e85dd44f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"db6e8ab4-c6ea-4945-a7a7-6d95e85dd44f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ministry of Agriculture\", \"street_address\": \"441 Columbia Street\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 2T3\", \"main_tel\": \"(250) 828-4514\", \"fax_tel\": \"(250) 828-4154\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ministry of Agriculture"}}, {"model": "reversion.version", "pk": 2015, "fields": {"revision": 1551, "object_id": "d687fcc4-0442-445f-99fe-bff16dea81f3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d687fcc4-0442-445f-99fe-bff16dea81f3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f117f307-612f-417d-83b3-3803e9271ddc\", \"organization\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"registration_no\": \"WPI 06100601\"}}]", "object_repr": "Kenneth Fyfe - Pump Installer"}}, {"model": "reversion.version", "pk": 2016, "fields": {"revision": 1551, "object_id": "4287eb48-5a40-4ce1-a139-dab36bdbef27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Well Drilling Ltd.\", \"street_address\": \"3331 Alberni Highway\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y5\", \"main_tel\": \"(250) 752-9358\", \"fax_tel\": \"(250) 752-1274\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 2017, "fields": {"revision": 1552, "object_id": "d71ed169-7518-46a3-9405-336d32e3727a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d71ed169-7518-46a3-9405-336d32e3727a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2dafcd84-f6bc-41d4-878a-46a2ef792a3e\", \"organization\": \"1bf5cf33-840e-4192-a79a-ad9a9a048ec0\", \"registration_no\": \"WD 16082301\"}}]", "object_repr": "Sean McDonald - Well Driller"}}, {"model": "reversion.version", "pk": 2018, "fields": {"revision": 1552, "object_id": "1bf5cf33-840e-4192-a79a-ad9a9a048ec0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1bf5cf33-840e-4192-a79a-ad9a9a048ec0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"Unit 150, 4611 Viking Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V2V 2K9\", \"main_tel\": \"(604) 273-5776\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 2019, "fields": {"revision": 1553, "object_id": "d7afdb07-70f3-4376-a872-ac9537aa5dfa", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d7afdb07-70f3-4376-a872-ac9537aa5dfa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"259c3b9a-5dbe-4a4c-97d0-0375e737879b\", \"organization\": \"fc9ca319-ab37-46de-8656-e2bdc705bc4d\", \"registration_no\": \"WPI 05120205\"}}]", "object_repr": "Jason Schmidt - Pump Installer"}}, {"model": "reversion.version", "pk": 2020, "fields": {"revision": 1553, "object_id": "fc9ca319-ab37-46de-8656-e2bdc705bc4d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fc9ca319-ab37-46de-8656-e2bdc705bc4d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Alliance Drilling\", \"street_address\": \"377 Crystal View Terrace\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V9B 5S5\", \"main_tel\": \"(250) 391-6107\", \"fax_tel\": \"(250) 391-6108\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Alliance Drilling"}}, {"model": "reversion.version", "pk": 2021, "fields": {"revision": 1554, "object_id": "d8b77afe-1244-4ba6-b9ea-50a833af19b7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d8b77afe-1244-4ba6-b9ea-50a833af19b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2a20ce56-7710-4cb4-af72-92e27ea41d81\", \"organization\": null, \"registration_no\": \"WPI 05110802\"}}]", "object_repr": "Richard Empey - Pump Installer"}}, {"model": "reversion.version", "pk": 2022, "fields": {"revision": 1555, "object_id": "d9434c08-eccc-405a-8344-f69f378b9305", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d9434c08-eccc-405a-8344-f69f378b9305\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d0f2a237-e322-4b99-a413-c7f77c2a403b\", \"organization\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"registration_no\": \"WPI 06072501\"}}]", "object_repr": "George Olmr - Pump Installer"}}, {"model": "reversion.version", "pk": 2023, "fields": {"revision": 1555, "object_id": "86a95cfa-217b-419a-9528-24c62148979c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"86a95cfa-217b-419a-9528-24c62148979c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Langley Water Wells Ltd.\", \"street_address\": \"21416 32nd. Avenue\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2E7\", \"main_tel\": \"(604) 534-5675\", \"fax_tel\": \"(604) 534-9762\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Langley Water Wells Ltd."}}, {"model": "reversion.version", "pk": 2024, "fields": {"revision": 1556, "object_id": "d979e941-017d-476b-9bd5-55238af6812c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d979e941-017d-476b-9bd5-55238af6812c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f9a53432-4123-41f3-88fd-f62170c3ae5c\", \"organization\": \"38da4cc9-638f-470b-a68f-23c52481ad99\", \"registration_no\": \"WD 06102602\"}}]", "object_repr": "Dennis Prosser - Well Driller"}}, {"model": "reversion.version", "pk": 2025, "fields": {"revision": 1556, "object_id": "38da4cc9-638f-470b-a68f-23c52481ad99", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"38da4cc9-638f-470b-a68f-23c52481ad99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Falkland Water Drilling\", \"street_address\": \"4165 Colebank Road\", \"city\": \"Falkland\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1W0\", \"main_tel\": \"(250) 379-2606\", \"fax_tel\": \"(250) 379-2606\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Falkland Water Drilling"}}, {"model": "reversion.version", "pk": 2026, "fields": {"revision": 1557, "object_id": "d9a3b70e-a3a7-41a2-b9c3-57a20562dedc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d9a3b70e-a3a7-41a2-b9c3-57a20562dedc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"dfc46de5-8ce8-4d1c-a3df-248442915a2d\", \"organization\": \"270fc931-79ee-4af4-9015-e30561ba5a85\", \"registration_no\": \"WPI 06090602\"}}]", "object_repr": "Anthony Kohlhauser - Pump Installer"}}, {"model": "reversion.version", "pk": 2027, "fields": {"revision": 1557, "object_id": "270fc931-79ee-4af4-9015-e30561ba5a85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"270fc931-79ee-4af4-9015-e30561ba5a85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Quesnel Water Wells Ltd.\", \"street_address\": \"255 Kerouac Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 7A2\", \"main_tel\": \"(250) 747-1116\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Quesnel Water Wells Ltd."}}, {"model": "reversion.version", "pk": 2028, "fields": {"revision": 1558, "object_id": "d9cd8f14-a80a-4d36-aeb7-c91051db64e2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"d9cd8f14-a80a-4d36-aeb7-c91051db64e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"cbacd513-c904-451f-bafc-6d6b2599277c\", \"organization\": null, \"registration_no\": \"WD 06042501\"}}]", "object_repr": "Michael Bolan - Well Driller"}}, {"model": "reversion.version", "pk": 2029, "fields": {"revision": 1559, "object_id": "da64cbb6-68c7-406f-a79a-fbac8c0f0091", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"da64cbb6-68c7-406f-a79a-fbac8c0f0091\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ba362edd-e1ce-4eb3-b307-8a37f00de9cc\", \"organization\": \"8cbd02b7-bdc6-42e4-81ed-52ac6801ee4c\", \"registration_no\": \"WD 05080802\"}}]", "object_repr": "Ronald Abercrombie - Well Driller"}}, {"model": "reversion.version", "pk": 2030, "fields": {"revision": 1559, "object_id": "8cbd02b7-bdc6-42e4-81ed-52ac6801ee4c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8cbd02b7-bdc6-42e4-81ed-52ac6801ee4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R & S Drilling Ltd.\", \"street_address\": \"2360 Baily Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 5B9\", \"main_tel\": \"(250) 989-4473\", \"fax_tel\": \"(250) 989-4473\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R & S Drilling Ltd."}}, {"model": "reversion.version", "pk": 2031, "fields": {"revision": 1560, "object_id": "db18c844-4f66-4144-923c-6461f18bc56c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"db18c844-4f66-4144-923c-6461f18bc56c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"dd186bf9-c745-4d89-835c-cef20534b9bb\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 05071102\"}}]", "object_repr": "Lucas MacEwan - Well Driller"}}, {"model": "reversion.version", "pk": 2032, "fields": {"revision": 1560, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 2033, "fields": {"revision": 1561, "object_id": "db2dfb75-b3da-40f6-9129-77674a8b96a6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"db2dfb75-b3da-40f6-9129-77674a8b96a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ca894801-2b49-48ff-865c-fb70bd84340a\", \"organization\": \"952b6309-93ee-4fc9-b8ef-0bbb792a2568\", \"registration_no\": \"WD 05030804\"}}]", "object_repr": "Shawn Stone - Well Driller"}}, {"model": "reversion.version", "pk": 2034, "fields": {"revision": 1561, "object_id": "952b6309-93ee-4fc9-b8ef-0bbb792a2568", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"952b6309-93ee-4fc9-b8ef-0bbb792a2568\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Northwind Drilling and Pump Sales\", \"street_address\": \"Box 284\", \"city\": \"Watson Lake\", \"province_state\": \"YT\", \"postal_code\": \"Y0A 1C0\", \"main_tel\": \"(867) 536-2009\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Northwind Drilling and Pump Sales"}}, {"model": "reversion.version", "pk": 2035, "fields": {"revision": 1562, "object_id": "db325d9f-5ecc-41cd-b177-11492436c8be", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"db325d9f-5ecc-41cd-b177-11492436c8be\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"6ade5c6b-69ba-4fc9-8371-e9e75a0fdf1a\", \"organization\": \"7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b\", \"registration_no\": \"WPI 12120501\"}}]", "object_repr": "Makenzie Ingram - Pump Installer"}}, {"model": "reversion.version", "pk": 2036, "fields": {"revision": 1562, "object_id": "7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ingram Well & Pump Service\", \"street_address\": \"PO Box 4520\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3J8\", \"main_tel\": \"(250) 249-5292\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ingram Well & Pump Service"}}, {"model": "reversion.version", "pk": 2037, "fields": {"revision": 1563, "object_id": "db6a83d8-4171-4c15-bddf-75c4ec078657", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"db6a83d8-4171-4c15-bddf-75c4ec078657\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"4b9cef2e-2dda-4364-90d4-c4e29df75e1c\", \"organization\": \"6addafe1-b8a9-46db-9cc3-11b1beadc3bb\", \"registration_no\": \"WPI 06061504\"}}]", "object_repr": "Brent Marsden - Pump Installer"}}, {"model": "reversion.version", "pk": 2038, "fields": {"revision": 1563, "object_id": "6addafe1-b8a9-46db-9cc3-11b1beadc3bb", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6addafe1-b8a9-46db-9cc3-11b1beadc3bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Brent Marsden Contractor\", \"street_address\": \"4715 Scarff Road\", \"city\": \"North Pender Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 2M1\", \"main_tel\": \"(250) 629-6432\", \"fax_tel\": \"(250) 629-6452\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Brent Marsden Contractor"}}, {"model": "reversion.version", "pk": 2039, "fields": {"revision": 1564, "object_id": "dc308e3a-bd27-459f-a135-e38123418f84", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dc308e3a-bd27-459f-a135-e38123418f84\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fda05379-1bce-4dd6-bab2-2ba05368e95d\", \"organization\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"registration_no\": \"WPI 06112803\"}}]", "object_repr": "David Wasstrom - Pump Installer"}}, {"model": "reversion.version", "pk": 2040, "fields": {"revision": 1564, "object_id": "7e0069c2-f36e-463a-8246-8f1d3e228445", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"DD & D Drillers Ltd. (Triple D Drillers)\", \"street_address\": \"3886 Balsum Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 1Z8\", \"main_tel\": \"(250) 962-9030\", \"fax_tel\": \"(250) 962-9030\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "DD & D Drillers Ltd. (Triple D Drillers)"}}, {"model": "reversion.version", "pk": 2041, "fields": {"revision": 1565, "object_id": "dc400ac2-442c-4ce4-b9c5-9323bc8815a1", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dc400ac2-442c-4ce4-b9c5-9323bc8815a1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d2a7449e-7389-4549-8965-86f788409c75\", \"organization\": null, \"registration_no\": \"WD 08081801\"}}]", "object_repr": "Ken McKellar - Well Driller"}}, {"model": "reversion.version", "pk": 2042, "fields": {"revision": 1566, "object_id": "dc993ec3-cd14-4ad4-8c92-0d4f1612205c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dc993ec3-cd14-4ad4-8c92-0d4f1612205c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"f5d2c748-3858-43de-869a-c1e6af4dc5a3\", \"organization\": \"6f88d1a4-55ac-4444-9c87-1452c6f0d3d8\", \"registration_no\": \"WPI 05021403\"}}]", "object_repr": "Garry Melnichuk - Pump Installer"}}, {"model": "reversion.version", "pk": 2043, "fields": {"revision": 1566, "object_id": "6f88d1a4-55ac-4444-9c87-1452c6f0d3d8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6f88d1a4-55ac-4444-9c87-1452c6f0d3d8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Murphy and Wakefield Limited\", \"street_address\": \"Unit U 31087 Peardonville Road\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2T 6K4\", \"main_tel\": \"(604) 853-3321\", \"fax_tel\": \"(604) 853-3150\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Murphy and Wakefield Limited"}}, {"model": "reversion.version", "pk": 2044, "fields": {"revision": 1567, "object_id": "dc9ac37c-8146-4ace-81ba-35d49ec7140c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dc9ac37c-8146-4ace-81ba-35d49ec7140c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"a5118d76-fead-4265-8acd-7895ff0c764c\", \"organization\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"registration_no\": \"WPI 05090703\"}}]", "object_repr": "Curtis Vanlerberg - Pump Installer"}}, {"model": "reversion.version", "pk": 2045, "fields": {"revision": 1567, "object_id": "e9a3778c-0bc6-400c-a582-5a72f910f763", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9a3778c-0bc6-400c-a582-5a72f910f763\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Rocky Mountain Pump Service Ltd.\", \"street_address\": \"1139A Industrial Road #3\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 5E3\", \"main_tel\": \"(250) 426-4069\", \"fax_tel\": \"(250) 426-8425\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Rocky Mountain Pump Service Ltd."}}, {"model": "reversion.version", "pk": 2046, "fields": {"revision": 1568, "object_id": "dccbb0a1-5a61-4eba-8156-23cafc843748", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dccbb0a1-5a61-4eba-8156-23cafc843748\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"82aa69b9-07b4-4dd5-a385-e975baed9b2f\", \"organization\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"registration_no\": \"WD 16082202\"}}]", "object_repr": "Trevor Lornson - Well Driller"}}, {"model": "reversion.version", "pk": 2047, "fields": {"revision": 1568, "object_id": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 2048, "fields": {"revision": 1569, "object_id": "dce084b1-0a18-47b2-91a8-ecb28ec1a340", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dce084b1-0a18-47b2-91a8-ecb28ec1a340\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"f117f307-612f-417d-83b3-3803e9271ddc\", \"organization\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"registration_no\": \"WD 06100601\"}}]", "object_repr": "Kenneth Fyfe - Well Driller"}}, {"model": "reversion.version", "pk": 2049, "fields": {"revision": 1569, "object_id": "4287eb48-5a40-4ce1-a139-dab36bdbef27", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4287eb48-5a40-4ce1-a139-dab36bdbef27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Fyfe's Well Drilling Ltd.\", \"street_address\": \"3331 Alberni Highway\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1Y5\", \"main_tel\": \"(250) 752-9358\", \"fax_tel\": \"(250) 752-1274\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Fyfe's Well Drilling Ltd."}}, {"model": "reversion.version", "pk": 2050, "fields": {"revision": 1570, "object_id": "dd1502a5-9421-49c8-88b6-fa209568df40", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dd1502a5-9421-49c8-88b6-fa209568df40\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ba362edd-e1ce-4eb3-b307-8a37f00de9cc\", \"organization\": \"754665c7-c07d-42fe-a759-763d026c309e\", \"registration_no\": \"WPI 06092601\"}}]", "object_repr": "Ronald Abercrombie - Pump Installer"}}, {"model": "reversion.version", "pk": 2051, "fields": {"revision": 1570, "object_id": "754665c7-c07d-42fe-a759-763d026c309e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"754665c7-c07d-42fe-a759-763d026c309e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"R & S Drilling Ltd\", \"street_address\": \"2360 Baily Road\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 5B9\", \"main_tel\": \"(250) 989-4473\", \"fax_tel\": \"(250) 989-4473\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "R & S Drilling Ltd"}}, {"model": "reversion.version", "pk": 2052, "fields": {"revision": 1571, "object_id": "dd2047bf-958b-4e8c-8432-21832d6095a6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dd2047bf-958b-4e8c-8432-21832d6095a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"beab08ec-f620-4cb3-8771-237d3046259b\", \"organization\": \"ab6b92b1-d3ec-4ca7-b00e-b06943f126e0\", \"registration_no\": \"WD 05081001\"}}]", "object_repr": "Walter Howe - Well Driller"}}, {"model": "reversion.version", "pk": 2053, "fields": {"revision": 1571, "object_id": "ab6b92b1-d3ec-4ca7-b00e-b06943f126e0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"ab6b92b1-d3ec-4ca7-b00e-b06943f126e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Source Drilling Ltd.\", \"street_address\": \"2307-39th Avenue\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1T 3B3\", \"main_tel\": \"(250) 275-0920\", \"fax_tel\": \"(250) 275-0921\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Source Drilling Ltd."}}, {"model": "reversion.version", "pk": 2054, "fields": {"revision": 1572, "object_id": "ddf0b7fb-d4a8-405d-a62e-af3c13d5887c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ddf0b7fb-d4a8-405d-a62e-af3c13d5887c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9a49868b-a5ab-4606-ac1c-8f28ab9118f8\", \"organization\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"registration_no\": \"WPI 05021401\"}}]", "object_repr": "Robert Stober - Pump Installer"}}, {"model": "reversion.version", "pk": 2055, "fields": {"revision": 1572, "object_id": "d030bb92-e2db-4466-9514-abdb204fe8ad", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"d030bb92-e2db-4466-9514-abdb204fe8ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Columbia Valley H2O Well and Pump Service Ltd.\", \"street_address\": \"Box 895\", \"city\": \"Invermere\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1K0\", \"main_tel\": \"(250) 342-9466\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Columbia Valley H2O Well and Pump Service Ltd."}}, {"model": "reversion.version", "pk": 2056, "fields": {"revision": 1573, "object_id": "de1599ed-f28f-497f-9a5c-32c316d1ec94", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"de1599ed-f28f-497f-9a5c-32c316d1ec94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e250b1ce-27e4-465f-9cc4-71d6cd90ca4e\", \"organization\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"registration_no\": \"WPI 06103002\"}}]", "object_repr": "Miles Hock - Pump Installer"}}, {"model": "reversion.version", "pk": 2057, "fields": {"revision": 1573, "object_id": "b45c1fe3-eb21-44b3-bc7d-03017f57838e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b45c1fe3-eb21-44b3-bc7d-03017f57838e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Union Pumps\", \"street_address\": \"Box 12006 RPO Murrayville; 23191 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V3A 9J5\", \"main_tel\": \"(604) 533-3727\", \"fax_tel\": \"(604) 533-4358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Union Pumps"}}, {"model": "reversion.version", "pk": 2058, "fields": {"revision": 1574, "object_id": "df6a5d45-956e-497e-b1c2-782c00af825c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"df6a5d45-956e-497e-b1c2-782c00af825c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ed8e2c79-d233-488f-8a82-def294bd1680\", \"organization\": null, \"registration_no\": \"WD 06040501\"}}]", "object_repr": "John Watts - Well Driller"}}, {"model": "reversion.version", "pk": 2059, "fields": {"revision": 1575, "object_id": "dface05c-f5ea-4d64-9965-88e7d3090d9d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dface05c-f5ea-4d64-9965-88e7d3090d9d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"fa0cbadd-c65f-4672-b648-495f14e7897f\", \"organization\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"registration_no\": \"WD 06091801\"}}]", "object_repr": "Ian Brown - Well Driller"}}, {"model": "reversion.version", "pk": 2060, "fields": {"revision": 1575, "object_id": "23c62794-55a1-4e16-8144-ee2235ac46fe", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"23c62794-55a1-4e16-8144-ee2235ac46fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sonic Drilling Ltd.\", \"street_address\": \"12055 102nd Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3V 3C5\", \"main_tel\": \"(604) 588-6080\", \"fax_tel\": \"(604) 588-6090\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sonic Drilling Ltd."}}, {"model": "reversion.version", "pk": 2061, "fields": {"revision": 1576, "object_id": "dffd5506-f1a0-435a-a009-385d16361d91", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dffd5506-f1a0-435a-a009-385d16361d91\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"8d043630-e504-4dbb-a0a3-05bafbfc0408\", \"organization\": \"35f028f2-dc3f-48b6-a3f9-d0c6804eab11\", \"registration_no\": \"WPI 06091103\"}}]", "object_repr": "Daniel Osborne - Pump Installer"}}, {"model": "reversion.version", "pk": 2062, "fields": {"revision": 1576, "object_id": "35f028f2-dc3f-48b6-a3f9-d0c6804eab11", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"35f028f2-dc3f-48b6-a3f9-d0c6804eab11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Osborne Electro Mechanics Ltd\", \"street_address\": \"#107-2740 Bridge Street\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"V8T 5C5\", \"main_tel\": \"(250) 386-3381\", \"fax_tel\": \"(250) 386-3382\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Osborne Electro Mechanics Ltd"}}, {"model": "reversion.version", "pk": 2063, "fields": {"revision": 1577, "object_id": "e0836035-2b03-4d1f-b841-c62a76dd01dd", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e0836035-2b03-4d1f-b841-c62a76dd01dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ae82b775-17ce-4fab-a6aa-d517517f3cfb\", \"organization\": \"4b66126c-3070-47dd-bfb5-e9543a1481d6\", \"registration_no\": \"WD 06090606\"}}]", "object_repr": "Allan Stewart - Well Driller"}}, {"model": "reversion.version", "pk": 2064, "fields": {"revision": 1577, "object_id": "4b66126c-3070-47dd-bfb5-e9543a1481d6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4b66126c-3070-47dd-bfb5-e9543a1481d6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kodiak Drilling Ltd.\", \"street_address\": \"402 Elm Street\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3W9\", \"main_tel\": \"(250) 747-4648\", \"fax_tel\": \"(250) 747-3337\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kodiak Drilling Ltd."}}, {"model": "reversion.version", "pk": 2065, "fields": {"revision": 1578, "object_id": "e12168c8-68e5-4b0c-a546-f637fb640213", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e12168c8-68e5-4b0c-a546-f637fb640213\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"9f0a01b2-a44a-4069-bca0-dabeaecc25e9\", \"organization\": \"f464b624-a7b6-46c7-85a3-682cbc0ece33\", \"registration_no\": \"WPI 08042101\"}}]", "object_repr": "Jim Croken - Pump Installer"}}, {"model": "reversion.version", "pk": 2066, "fields": {"revision": 1578, "object_id": "f464b624-a7b6-46c7-85a3-682cbc0ece33", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f464b624-a7b6-46c7-85a3-682cbc0ece33\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Geothermal Ltd.\", \"street_address\": \"36 Highway 97B\", \"city\": \"Enderby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1V3\", \"main_tel\": \"(250) 833-6126\", \"fax_tel\": \"(250) 838-0809\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Geothermal Ltd."}}, {"model": "reversion.version", "pk": 2067, "fields": {"revision": 1579, "object_id": "e1241ccb-7512-4f1a-ba54-768edd597ccc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e1241ccb-7512-4f1a-ba54-768edd597ccc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"bfc862a6-93f8-455c-934b-f06817ef827f\", \"organization\": \"85b4d949-a72a-4eb1-8683-11e5ee2c9d01\", \"registration_no\": \"WD 05101103\"}}]", "object_repr": "Michael Brindley - Well Driller"}}, {"model": "reversion.version", "pk": 2068, "fields": {"revision": 1579, "object_id": "85b4d949-a72a-4eb1-8683-11e5ee2c9d01", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"85b4d949-a72a-4eb1-8683-11e5ee2c9d01\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geoenergy Solutions Inc.\", \"street_address\": \"10472 Islington Avenue, Unit 1\", \"city\": \"Kleinburg\", \"province_state\": \"ON\", \"postal_code\": \"l0J 1C0\", \"main_tel\": \"(905) 951-6723\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geoenergy Solutions Inc."}}, {"model": "reversion.version", "pk": 2069, "fields": {"revision": 1580, "object_id": "e1900e3d-63a8-48d9-a241-da0dec16aed5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e1900e3d-63a8-48d9-a241-da0dec16aed5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"ecc4ba26-dbeb-4993-ab89-ed5beab9c6d5\", \"organization\": \"af363d77-5256-4b81-8a88-e81056e0dfb8\", \"registration_no\": \"WPI 06102602\"}}]", "object_repr": "Slade Wheatley - Pump Installer"}}, {"model": "reversion.version", "pk": 2070, "fields": {"revision": 1580, "object_id": "af363d77-5256-4b81-8a88-e81056e0dfb8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"af363d77-5256-4b81-8a88-e81056e0dfb8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Triple S Service\", \"street_address\": \"Box 51\", \"city\": \"Anahim Lake\", \"province_state\": \"BC\", \"postal_code\": \"V0L 1C0\", \"main_tel\": \"(250) 742-3773\", \"fax_tel\": \"(250) 742-3272\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Triple S Service"}}, {"model": "reversion.version", "pk": 2071, "fields": {"revision": 1581, "object_id": "e1c42124-8b4a-4a9e-8cd6-9248c0c11ed2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e1c42124-8b4a-4a9e-8cd6-9248c0c11ed2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"287e166d-be09-4f50-9f5d-be3b2ea29a0d\", \"organization\": null, \"registration_no\": \"WPI 06090706\"}}]", "object_repr": "Richard Peck - Pump Installer"}}, {"model": "reversion.version", "pk": 2072, "fields": {"revision": 1582, "object_id": "e1c4e0f4-cb55-4d9f-b18f-63e3c5efd747", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e1c4e0f4-cb55-4d9f-b18f-63e3c5efd747\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5b59ff11-98f4-4a22-bef0-c606c9972227\", \"organization\": \"dc62455c-650d-4e06-84be-0d0d8b94f517\", \"registration_no\": \"WD 08052101\"}}]", "object_repr": "Jerry Opper - Well Driller"}}, {"model": "reversion.version", "pk": 2073, "fields": {"revision": 1582, "object_id": "dc62455c-650d-4e06-84be-0d0d8b94f517", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"dc62455c-650d-4e06-84be-0d0d8b94f517\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"J.R. Drilling Central Ltd. Partnership\", \"street_address\": \"Box 3202 1250 Dalhousie Dr.\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-5252\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "J.R. Drilling Central Ltd. Partnership"}}, {"model": "reversion.version", "pk": 2074, "fields": {"revision": 1583, "object_id": "e24cf686-8410-494e-92ad-aaaf88bd1b5e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e24cf686-8410-494e-92ad-aaaf88bd1b5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8fa34429-9d6e-4aae-9edb-1ea7086f933f\", \"organization\": \"925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce\", \"registration_no\": \"WD 05021001\"}}]", "object_repr": "Jerry Weston - Well Driller"}}, {"model": "reversion.version", "pk": 2075, "fields": {"revision": 1583, "object_id": "925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"925a2b6d-2bec-4d25-bd13-69eb2ce2a9ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Weston Water Wells Ltd.\", \"street_address\": \"7779 Highway 24\", \"city\": \"Lone Butte\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1X2\", \"main_tel\": \"(250) 593-4307\", \"fax_tel\": \"(250) 593-4307\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Weston Water Wells Ltd."}}, {"model": "reversion.version", "pk": 2076, "fields": {"revision": 1584, "object_id": "e2a56b93-ae4f-4f1f-9930-27a98d772e12", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e2a56b93-ae4f-4f1f-9930-27a98d772e12\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7c5e91a0-2c3c-4d55-adbd-818817592551\", \"organization\": \"576a9ca8-3a12-47c1-b800-1e4947bd626a\", \"registration_no\": \"WPI 06101812\"}}]", "object_repr": "Gary Traer - Pump Installer"}}, {"model": "reversion.version", "pk": 2077, "fields": {"revision": 1584, "object_id": "576a9ca8-3a12-47c1-b800-1e4947bd626a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"576a9ca8-3a12-47c1-b800-1e4947bd626a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Polaris Plumbing\", \"street_address\": \"Box 466\", \"city\": \"Salt Spring Island\", \"province_state\": \"BC\", \"postal_code\": \"V8K 2W1\", \"main_tel\": \"(250) 537-4997\", \"fax_tel\": \"(250) 537-4956\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Polaris Plumbing"}}, {"model": "reversion.version", "pk": 2078, "fields": {"revision": 1585, "object_id": "e2d0e21e-c8f8-4660-adcf-50c69171839c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e2d0e21e-c8f8-4660-adcf-50c69171839c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b7a9acde-62a6-4368-9cf9-1b7bc27cd649\", \"organization\": \"3f2d2972-d874-449a-8ddb-0a924c03b88a\", \"registration_no\": \"WPI 06102302\"}}]", "object_repr": "Clarence Rolleman - Pump Installer"}}, {"model": "reversion.version", "pk": 2079, "fields": {"revision": 1585, "object_id": "3f2d2972-d874-449a-8ddb-0a924c03b88a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3f2d2972-d874-449a-8ddb-0a924c03b88a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mainline Systems Inc.\", \"street_address\": \"9891 Menzies Street\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2P 6A5\", \"main_tel\": \"(604) 793-6071\", \"fax_tel\": \"(604) 792-9299\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mainline Systems Inc."}}, {"model": "reversion.version", "pk": 2080, "fields": {"revision": 1586, "object_id": "e35e91ee-4d83-4620-9cb2-e56ff643873c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e35e91ee-4d83-4620-9cb2-e56ff643873c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"8094c271-ee9a-4549-91c0-5608a3cbd2ac\", \"organization\": \"f604b33f-5682-4a4c-8877-9912b36f7a3e\", \"registration_no\": \"WD 05021402\"}}]", "object_repr": "Richard Harden - Well Driller"}}, {"model": "reversion.version", "pk": 2081, "fields": {"revision": 1586, "object_id": "f604b33f-5682-4a4c-8877-9912b36f7a3e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f604b33f-5682-4a4c-8877-9912b36f7a3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Beck Drilling & Environmental Services\", \"street_address\": \"160-13511 Vulcan Way\", \"city\": \"Richmond\", \"province_state\": \"BC\", \"postal_code\": \"V6V 1K4\", \"main_tel\": \"(604) 214-7007\", \"fax_tel\": \"(604) 214-7017\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Beck Drilling & Environmental Services"}}, {"model": "reversion.version", "pk": 2082, "fields": {"revision": 1587, "object_id": "e3851f31-1568-4cfa-a010-801cdcd2d72c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e3851f31-1568-4cfa-a010-801cdcd2d72c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2bc17f1f-0272-4648-8339-591ac04318a6\", \"organization\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"registration_no\": \"WD 06011202\"}}]", "object_repr": "Darrell Netrefa - Well Driller"}}, {"model": "reversion.version", "pk": 2083, "fields": {"revision": 1587, "object_id": "7e0069c2-f36e-463a-8246-8f1d3e228445", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7e0069c2-f36e-463a-8246-8f1d3e228445\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"DD & D Drillers Ltd. (Triple D Drillers)\", \"street_address\": \"3886 Balsum Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2K 1Z8\", \"main_tel\": \"(250) 962-9030\", \"fax_tel\": \"(250) 962-9030\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "DD & D Drillers Ltd. (Triple D Drillers)"}}, {"model": "reversion.version", "pk": 2084, "fields": {"revision": 1588, "object_id": "e3eec2c0-e20e-48dc-907b-b0e82e44d38e", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e3eec2c0-e20e-48dc-907b-b0e82e44d38e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0576404f-807e-4e93-b7ed-93c94d19d938\", \"organization\": \"0253fef6-3961-4907-bc81-2d3d89430f3a\", \"registration_no\": \"WPI 06010901\"}}]", "object_repr": "Lorne Bernard - Pump Installer"}}, {"model": "reversion.version", "pk": 2085, "fields": {"revision": 1588, "object_id": "0253fef6-3961-4907-bc81-2d3d89430f3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0253fef6-3961-4907-bc81-2d3d89430f3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Waterfall Drilling\", \"street_address\": \"7000 Beaver Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E6\", \"main_tel\": \"(250) 963-3406\", \"fax_tel\": \"(250) 963-3406\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Waterfall Drilling"}}, {"model": "reversion.version", "pk": 2086, "fields": {"revision": 1589, "object_id": "e4316f20-7406-48de-89d8-95bcf2107142", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e4316f20-7406-48de-89d8-95bcf2107142\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"781ac826-93d8-44d0-86eb-5855237228ae\", \"organization\": \"457446e7-91da-4eaa-a427-955d1a6c773a\", \"registration_no\": \"WD 05021101\"}}]", "object_repr": "Timothy Oster - Well Driller"}}, {"model": "reversion.version", "pk": 2087, "fields": {"revision": 1589, "object_id": "457446e7-91da-4eaa-a427-955d1a6c773a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"457446e7-91da-4eaa-a427-955d1a6c773a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Nor-West Drilling (1998) Ltd.\", \"street_address\": \"4501-232 Street\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2S2\", \"main_tel\": \"(604) 534-4108\", \"fax_tel\": \"(604) 534-3389\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Nor-West Drilling (1998) Ltd."}}, {"model": "reversion.version", "pk": 2088, "fields": {"revision": 1590, "object_id": "e468504a-333b-44c5-a5db-9665a97388fc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e468504a-333b-44c5-a5db-9665a97388fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"71d41e4b-a009-4033-9941-9d01545c800e\", \"organization\": \"7ac88783-73c9-4590-8359-5937c1ca9b62\", \"registration_no\": \"WPI 06103011\"}}]", "object_repr": "Don Pederson - Pump Installer"}}, {"model": "reversion.version", "pk": 2089, "fields": {"revision": 1590, "object_id": "7ac88783-73c9-4590-8359-5937c1ca9b62", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7ac88783-73c9-4590-8359-5937c1ca9b62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua North Plumbing Ltd.\", \"street_address\": \"Box 836\", \"city\": \"Smithers\", \"province_state\": \"BC\", \"postal_code\": \"V0J 2N0\", \"main_tel\": \"(250) 847-3858\", \"fax_tel\": \"(250) 847-3932\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua North Plumbing Ltd."}}, {"model": "reversion.version", "pk": 2090, "fields": {"revision": 1591, "object_id": "e54890a2-3d0b-4bf2-84e6-f063a1394098", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e54890a2-3d0b-4bf2-84e6-f063a1394098\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"591e2572-0260-48cf-91e8-e0dc258e0c91\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 05041304\"}}]", "object_repr": "Dean Chiuppi - Well Driller"}}, {"model": "reversion.version", "pk": 2091, "fields": {"revision": 1591, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 2092, "fields": {"revision": 1592, "object_id": "e59033c5-ce14-42f8-96fc-592e67f1e9d9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e59033c5-ce14-42f8-96fc-592e67f1e9d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"155c9e12-020a-4fda-ac4f-7200b349acc0\", \"organization\": \"585025c5-82fd-4a36-aaf7-827c67e1ee04\", \"registration_no\": \"WPI 06041901\"}}]", "object_repr": "Douglas Grossler - Pump Installer"}}, {"model": "reversion.version", "pk": 2093, "fields": {"revision": 1592, "object_id": "585025c5-82fd-4a36-aaf7-827c67e1ee04", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"585025c5-82fd-4a36-aaf7-827c67e1ee04\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Lillooet Contracting Ltd.\", \"street_address\": \"Box 1356\", \"city\": \"Lillooet\", \"province_state\": \"BC\", \"postal_code\": \"V0K 1V0\", \"main_tel\": \"(250) 256-7669\", \"fax_tel\": \"(250) 256-4989\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Lillooet Contracting Ltd."}}, {"model": "reversion.version", "pk": 2094, "fields": {"revision": 1593, "object_id": "e625e390-8e7d-49e4-9968-1b96b1fa4667", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e625e390-8e7d-49e4-9968-1b96b1fa4667\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"cf7f59da-3a25-4af6-8b40-4ac454854e92\", \"organization\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"registration_no\": \"WPI 06071201\"}}]", "object_repr": "Vern Winger - Pump Installer"}}, {"model": "reversion.version", "pk": 2095, "fields": {"revision": 1593, "object_id": "53586668-d586-44d2-8ea1-82ea79b4a596", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"53586668-d586-44d2-8ea1-82ea79b4a596\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Highlands Irrigation Ltd.\", \"street_address\": \"1105 South Lakeside Drive\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 3A7\", \"main_tel\": \"(250) 392-2321\", \"fax_tel\": \"(250) 392-2377\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Highlands Irrigation Ltd."}}, {"model": "reversion.version", "pk": 2096, "fields": {"revision": 1594, "object_id": "e668ec6e-c6c2-46dd-b5aa-cfbed0b73d83", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e668ec6e-c6c2-46dd-b5aa-cfbed0b73d83\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"4c5a526d-7f8a-4128-938e-e3e426fbf749\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 05101701\"}}]", "object_repr": "Peter Janczukowski - Well Driller"}}, {"model": "reversion.version", "pk": 2097, "fields": {"revision": 1594, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 2098, "fields": {"revision": 1595, "object_id": "e67007a7-947b-4ddf-95e8-529270065fcb", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e67007a7-947b-4ddf-95e8-529270065fcb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"1f2ee20f-f4dc-4886-a803-2cfcd7859923\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 17072801\"}}]", "object_repr": "Michael Parkinson - Well Driller"}}, {"model": "reversion.version", "pk": 2099, "fields": {"revision": 1595, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 2100, "fields": {"revision": 1596, "object_id": "e7e7164e-c854-45b3-8074-94a4bc5076b9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e7e7164e-c854-45b3-8074-94a4bc5076b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fa7b46e6-8ad0-4429-af26-f170ff39ebb6\", \"organization\": \"c9742253-9924-40fa-8660-413742a47597\", \"registration_no\": \"WPI 06102301\"}}]", "object_repr": "Ray Jestico - Pump Installer"}}, {"model": "reversion.version", "pk": 2101, "fields": {"revision": 1596, "object_id": "c9742253-9924-40fa-8660-413742a47597", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c9742253-9924-40fa-8660-413742a47597\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Plateau Plumbing Heating & Gas\", \"street_address\": \"#3 Bear Cat Road\", \"city\": \"Royston\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2V0\", \"main_tel\": \"(250) 334-4988\", \"fax_tel\": \"(250) 334-4928\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Plateau Plumbing Heating & Gas"}}, {"model": "reversion.version", "pk": 2102, "fields": {"revision": 1597, "object_id": "e807dcd8-c6cc-46f5-a84e-26663cac1fbf", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e807dcd8-c6cc-46f5-a84e-26663cac1fbf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"5ae7147c-7201-4d16-a0a0-17e38ea4c6b2\", \"organization\": null, \"registration_no\": \"WPI 06032808\"}}]", "object_repr": "Garry Lougheed - Pump Installer"}}, {"model": "reversion.version", "pk": 2103, "fields": {"revision": 1598, "object_id": "e863888a-3c8b-47f4-88b4-c593b8344ad9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e863888a-3c8b-47f4-88b4-c593b8344ad9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"c9c855bc-1561-40c8-83ed-84f69a9c2eae\", \"organization\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"registration_no\": \"WD 05032903\"}}]", "object_repr": "Larry Field - Well Driller"}}, {"model": "reversion.version", "pk": 2104, "fields": {"revision": 1598, "object_id": "6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6301ad66-3d1e-44b8-bdbd-a3a0f2d766c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Field Drilling Contractors Ltd.\", \"street_address\": \"Box 841, 25320 Fraser Highway\", \"city\": \"Aldergrove\", \"province_state\": \"BC\", \"postal_code\": \"V4W 2V1\", \"main_tel\": \"(604) 857-2266\", \"fax_tel\": \"(604) 857-2267\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Field Drilling Contractors Ltd."}}, {"model": "reversion.version", "pk": 2105, "fields": {"revision": 1599, "object_id": "e8d75874-1ee0-4d67-8ede-6ebacba27e76", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e8d75874-1ee0-4d67-8ede-6ebacba27e76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b5298440-240b-4372-a2c2-80165ce76350\", \"organization\": \"0e50f20d-98a9-45e4-bd22-56581838061d\", \"registration_no\": \"WD 05020801\"}}]", "object_repr": "Doug Unrau - Well Driller"}}, {"model": "reversion.version", "pk": 2106, "fields": {"revision": 1599, "object_id": "0e50f20d-98a9-45e4-bd22-56581838061d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0e50f20d-98a9-45e4-bd22-56581838061d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Drilling Services Ltd.\", \"street_address\": \"Box 4827\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 2V8\", \"main_tel\": \"(250) 392-2241\", \"fax_tel\": \"(250) 392-7979\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 2107, "fields": {"revision": 1600, "object_id": "e9c82c01-4986-4d9d-ad10-7b5300190e97", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"e9c82c01-4986-4d9d-ad10-7b5300190e97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a1f4ee43-47e3-4f27-b236-b025c86d6d36\", \"organization\": \"193cfa3c-b8ff-4ec2-a566-60deb10f3656\", \"registration_no\": \"WD 17060201\"}}]", "object_repr": "Daniel Isert - Well Driller"}}, {"model": "reversion.version", "pk": 2108, "fields": {"revision": 1600, "object_id": "193cfa3c-b8ff-4ec2-a566-60deb10f3656", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"193cfa3c-b8ff-4ec2-a566-60deb10f3656\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"1025875 BC Ltd.\", \"street_address\": \"7172 Toba Street\", \"city\": \"Powell River\", \"province_state\": \"BC\", \"postal_code\": \"V8A 5M7\", \"main_tel\": \"(604) 414-7390\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "1025875 BC Ltd."}}, {"model": "reversion.version", "pk": 2109, "fields": {"revision": 1601, "object_id": "eaeee756-c48a-4fd9-b31a-05c4a5bc2369", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"eaeee756-c48a-4fd9-b31a-05c4a5bc2369\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e08d3916-c673-4189-889f-708bbc4bb024\", \"organization\": \"6efb7f98-cb94-463e-b9b7-40e702d7eb60\", \"registration_no\": \"WPI 06090608\"}}]", "object_repr": "Daniel Sprinkling - Pump Installer"}}, {"model": "reversion.version", "pk": 2110, "fields": {"revision": 1601, "object_id": "6efb7f98-cb94-463e-b9b7-40e702d7eb60", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"6efb7f98-cb94-463e-b9b7-40e702d7eb60\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Daniel Sprinkling Plumbing & Heating Ltd\", \"street_address\": \"3211 Grafton Avenue\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1W7\", \"main_tel\": \"(250) 752-6847\", \"fax_tel\": \"(250) 752-1273\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Daniel Sprinkling Plumbing & Heating Ltd"}}, {"model": "reversion.version", "pk": 2111, "fields": {"revision": 1602, "object_id": "eaf0acad-e96c-484d-9f39-4dd7f6f33fba", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"eaf0acad-e96c-484d-9f39-4dd7f6f33fba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"5e55eef7-dc94-479e-b08d-4f0dae3face4\", \"organization\": \"632d6188-6220-49a5-b5a9-5f8bb8f22b36\", \"registration_no\": \"WD 05102801\"}}]", "object_repr": "Jody Lambert - Well Driller"}}, {"model": "reversion.version", "pk": 2112, "fields": {"revision": 1602, "object_id": "632d6188-6220-49a5-b5a9-5f8bb8f22b36", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"632d6188-6220-49a5-b5a9-5f8bb8f22b36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"1-740 Waddington Drive\", \"city\": \"Vernon\", \"province_state\": \"BC\", \"postal_code\": \"V1T 9E9\", \"main_tel\": \"(250) 549-2393\", \"fax_tel\": \"(250) 549-3387\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 2113, "fields": {"revision": 1603, "object_id": "eaf2f9a8-d8d9-4316-9978-da371a456ae6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"eaf2f9a8-d8d9-4316-9978-da371a456ae6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"69763fdb-e72d-441e-b904-a650e0a1c142\", \"organization\": \"e9c90a4e-f381-4f19-bfb4-33948c918072\", \"registration_no\": \"WPI 06032806\"}}]", "object_repr": "Ernest Hunter - Pump Installer"}}, {"model": "reversion.version", "pk": 2114, "fields": {"revision": 1603, "object_id": "e9c90a4e-f381-4f19-bfb4-33948c918072", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e9c90a4e-f381-4f19-bfb4-33948c918072\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"North Cove Marine\", \"street_address\": \"Box 4-8\", \"city\": \"Thetis Island\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2Y0\", \"main_tel\": \"(250) 252-0144\", \"fax_tel\": \"(250) 246-2187\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "North Cove Marine"}}, {"model": "reversion.version", "pk": 2115, "fields": {"revision": 1604, "object_id": "eb3f344f-e0c6-4f02-92d9-85afb27c3f9a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"eb3f344f-e0c6-4f02-92d9-85afb27c3f9a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"0befc3f5-14c4-42d9-8893-f8efd4275a3a\", \"organization\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"registration_no\": \"WD 08041601\"}}]", "object_repr": "Fred Cudlipp - Well Driller"}}, {"model": "reversion.version", "pk": 2116, "fields": {"revision": 1604, "object_id": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Utilities\", \"street_address\": \"3175 Turner Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7T9\", \"main_tel\": \"(604) 850-0441\", \"fax_tel\": \"(604) 768-9269\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Utilities"}}, {"model": "reversion.version", "pk": 2117, "fields": {"revision": 1605, "object_id": "ebaa4fa7-a14c-43f1-acc0-5a0c41d2027f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ebaa4fa7-a14c-43f1-acc0-5a0c41d2027f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"67342807-b1f8-41a4-8f59-0f801acd0ca8\", \"organization\": \"233fba5d-883c-4c3d-b0ae-dac1d8553c0e\", \"registration_no\": \"WD 05020102\"}}]", "object_repr": "Dennis Thompson - Well Driller"}}, {"model": "reversion.version", "pk": 2118, "fields": {"revision": 1605, "object_id": "233fba5d-883c-4c3d-b0ae-dac1d8553c0e", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"233fba5d-883c-4c3d-b0ae-dac1d8553c0e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Thompson Drilling\", \"street_address\": \"15 - 4775 Woodlane\", \"city\": \"W. Windermere\", \"province_state\": \"BC\", \"postal_code\": \"V0B 2L2\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Thompson Drilling"}}, {"model": "reversion.version", "pk": 2119, "fields": {"revision": 1606, "object_id": "ebb2910b-eb16-46c5-ba1e-f9ebe8aad172", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ebb2910b-eb16-46c5-ba1e-f9ebe8aad172\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"998e92cc-9b9e-4784-bcf9-1693ae8c1706\", \"organization\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"registration_no\": \"WD 06101309\"}}]", "object_repr": "Bill Ivens - Well Driller"}}, {"model": "reversion.version", "pk": 2120, "fields": {"revision": 1606, "object_id": "9576f57d-b62a-4c67-b531-5509d07ed616", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"9576f57d-b62a-4c67-b531-5509d07ed616\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Foundex Explorations Ltd.\", \"street_address\": \"14653 - 64th Avenue\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V3S 1X6\", \"main_tel\": \"(604) 594-8333\", \"fax_tel\": \"(604) 594-1815\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Foundex Explorations Ltd."}}, {"model": "reversion.version", "pk": 2121, "fields": {"revision": 1607, "object_id": "ecaf95bb-e9a0-4f4c-8587-68b9990476f7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ecaf95bb-e9a0-4f4c-8587-68b9990476f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d6edde50-89fd-4f47-89ae-9fffc0d3aaf0\", \"organization\": \"c9742253-9924-40fa-8660-413742a47597\", \"registration_no\": \"WPI 06101804\"}}]", "object_repr": "Keith Jestico - Pump Installer"}}, {"model": "reversion.version", "pk": 2122, "fields": {"revision": 1607, "object_id": "c9742253-9924-40fa-8660-413742a47597", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"c9742253-9924-40fa-8660-413742a47597\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Plateau Plumbing Heating & Gas\", \"street_address\": \"#3 Bear Cat Road\", \"city\": \"Royston\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2V0\", \"main_tel\": \"(250) 334-4988\", \"fax_tel\": \"(250) 334-4928\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Plateau Plumbing Heating & Gas"}}, {"model": "reversion.version", "pk": 2123, "fields": {"revision": 1608, "object_id": "ed1349ee-05d1-4617-be6a-2179d31103a7", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ed1349ee-05d1-4617-be6a-2179d31103a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fa17ec30-4811-4373-84b4-63ef3d0e3592\", \"organization\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"registration_no\": \"WPI 06103010\"}}]", "object_repr": "Robert Paisley - Pump Installer"}}, {"model": "reversion.version", "pk": 2124, "fields": {"revision": 1608, "object_id": "5a21d9cb-c3bc-4805-9764-9a204561d768", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"5a21d9cb-c3bc-4805-9764-9a204561d768\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ted's Plumbing & Heating Inc.\", \"street_address\": \"23008 Fraser Highway\", \"city\": \"Langley\", \"province_state\": \"BC\", \"postal_code\": \"V2Z 2V1\", \"main_tel\": \"(604) 888-9625\", \"fax_tel\": \"(604) 514-1141\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ted's Plumbing & Heating Inc."}}, {"model": "reversion.version", "pk": 2125, "fields": {"revision": 1609, "object_id": "ed1d5575-3bb1-4ace-95d9-ddbd254a2af8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ed1d5575-3bb1-4ace-95d9-ddbd254a2af8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"732808b1-2026-4278-aa1f-c7a62467e0e6\", \"organization\": \"fbbee79b-8936-4860-9e6d-ce612bfd5c9b\", \"registration_no\": \"WPI 06100606\"}}]", "object_repr": "David Gerlach - Pump Installer"}}, {"model": "reversion.version", "pk": 2126, "fields": {"revision": 1609, "object_id": "fbbee79b-8936-4860-9e6d-ce612bfd5c9b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fbbee79b-8936-4860-9e6d-ce612bfd5c9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Dave's Bobcat Service\", \"street_address\": \"700 Georgia View Road\", \"city\": \"Galiano Island\", \"province_state\": \"BC\", \"postal_code\": \"V0N 1P0\", \"main_tel\": \"(250) 539-2833\", \"fax_tel\": \"(250) 539-2833\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Dave's Bobcat Service"}}, {"model": "reversion.version", "pk": 2127, "fields": {"revision": 1610, "object_id": "ed26393c-3130-4dd4-9537-28ddad69853f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ed26393c-3130-4dd4-9537-28ddad69853f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"db9b6929-c571-4bd5-86f9-495c932805a0\", \"organization\": null, \"registration_no\": \"WPI 06061503\"}}]", "object_repr": "Bruce Heathcote - Pump Installer"}}, {"model": "reversion.version", "pk": 2128, "fields": {"revision": 1611, "object_id": "ed94d274-04a3-4205-a59f-b45063da1593", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ed94d274-04a3-4205-a59f-b45063da1593\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"45d013c9-125b-4d80-a200-420941a4fcbf\", \"organization\": \"950ee7b6-de1c-4192-9ce4-108e9b200689\", \"registration_no\": \"WD 05062302\"}}]", "object_repr": "James Genereux - Well Driller"}}, {"model": "reversion.version", "pk": 2129, "fields": {"revision": 1611, "object_id": "950ee7b6-de1c-4192-9ce4-108e9b200689", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"950ee7b6-de1c-4192-9ce4-108e9b200689\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Cyclone Drilling Ltd.\", \"street_address\": \"2915 McAllister Road\", \"city\": \"Westbank\", \"province_state\": \"BC\", \"postal_code\": \"V4T 1G8\", \"main_tel\": \"(250) 768-7462\", \"fax_tel\": \"(250) 768-5424\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Cyclone Drilling Ltd."}}, {"model": "reversion.version", "pk": 2130, "fields": {"revision": 1612, "object_id": "edd9e82e-8480-4c50-8d07-fbd2ba561cb5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"edd9e82e-8480-4c50-8d07-fbd2ba561cb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"14dd07a9-22b7-4d0a-a187-3d6e85a89c53\", \"organization\": \"f6f7f9f0-9ae7-4d38-836f-b6bca0a55849\", \"registration_no\": \"WD 04111501\"}}]", "object_repr": "Garfield Bland - Well Driller"}}, {"model": "reversion.version", "pk": 2131, "fields": {"revision": 1612, "object_id": "f6f7f9f0-9ae7-4d38-836f-b6bca0a55849", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f6f7f9f0-9ae7-4d38-836f-b6bca0a55849\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Camfield Drilling Svcs. & G. Bland Consulting\", \"street_address\": \"1280 4th Ave. South\", \"city\": \"Lethbridge\", \"province_state\": \"AB\", \"postal_code\": \"T1J 0R2\", \"main_tel\": \"(403) 308-3827\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Camfield Drilling Svcs. & G. Bland Consulting"}}, {"model": "reversion.version", "pk": 2132, "fields": {"revision": 1613, "object_id": "eddf67d6-b655-430c-911e-402af8778c98", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"eddf67d6-b655-430c-911e-402af8778c98\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"d84bb8af-dc43-458e-9481-0b855808e35c\", \"organization\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"registration_no\": \"WD 17072501\"}}]", "object_repr": "Nick Fairney - Well Driller"}}, {"model": "reversion.version", "pk": 2133, "fields": {"revision": 1613, "object_id": "82f50e83-08c7-45aa-af59-ba8b063e8b79", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"82f50e83-08c7-45aa-af59-ba8b063e8b79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mud Bay Drilling Co. Ltd.\", \"street_address\": \"19545 Telegraph Trail\", \"city\": \"Surrey\", \"province_state\": \"BC\", \"postal_code\": \"V4N 4G9\", \"main_tel\": \"(604) 888-2206\", \"fax_tel\": \"(604) 888-4206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mud Bay Drilling Co. Ltd."}}, {"model": "reversion.version", "pk": 2134, "fields": {"revision": 1614, "object_id": "edfcf2a8-f379-4db0-942a-7ef453a88c50", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"edfcf2a8-f379-4db0-942a-7ef453a88c50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"afb9e024-6eec-4a6d-aaff-4d9611389893\", \"organization\": \"cdaca7cd-26f6-4d56-8894-b73ec8508036\", \"registration_no\": \"WD 05092602\"}}]", "object_repr": "Darrell Wangler - Well Driller"}}, {"model": "reversion.version", "pk": 2135, "fields": {"revision": 1614, "object_id": "cdaca7cd-26f6-4d56-8894-b73ec8508036", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cdaca7cd-26f6-4d56-8894-b73ec8508036\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Integrity Drilling Inc.\", \"street_address\": \"6634 Highway 97A\", \"city\": \"Enderby\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1V3\", \"main_tel\": \"(250) 833-2111\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Integrity Drilling Inc."}}, {"model": "reversion.version", "pk": 2136, "fields": {"revision": 1615, "object_id": "eef5988f-a5cc-4675-8b5c-0550877e88e6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"eef5988f-a5cc-4675-8b5c-0550877e88e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"ce511bb0-6225-4331-8099-20b8aba20a8a\", \"organization\": \"88e4ee3f-3a41-4cb5-bc63-10f3e27401f5\", \"registration_no\": \"WD 10092101\"}}]", "object_repr": "Gregory Carlos - Well Driller"}}, {"model": "reversion.version", "pk": 2137, "fields": {"revision": 1615, "object_id": "88e4ee3f-3a41-4cb5-bc63-10f3e27401f5", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"88e4ee3f-3a41-4cb5-bc63-10f3e27401f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Abacus Drilling\", \"street_address\": \"Box 304\", \"city\": \"Cobble Hill\", \"province_state\": \"BC\", \"postal_code\": \"V0R 1L0\", \"main_tel\": \"(250) 743-1301\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Abacus Drilling"}}, {"model": "reversion.version", "pk": 2138, "fields": {"revision": 1616, "object_id": "ef5b00c7-7631-4469-9a9e-79aab64596f0", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ef5b00c7-7631-4469-9a9e-79aab64596f0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"00539ff4-c5aa-4e6c-9980-d1e5876a504e\", \"organization\": \"f74a98d5-f04f-479e-9214-724773dac01a\", \"registration_no\": \"WPI 05110205\"}}]", "object_repr": "Mike Woods - Pump Installer"}}, {"model": "reversion.version", "pk": 2139, "fields": {"revision": 1616, "object_id": "f74a98d5-f04f-479e-9214-724773dac01a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f74a98d5-f04f-479e-9214-724773dac01a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Tech Services\", \"street_address\": \"5806 Farmers Drive\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1P 1A3\", \"main_tel\": \"(250) 765-4730\", \"fax_tel\": \"(250) 765-5801\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Tech Services"}}, {"model": "reversion.version", "pk": 2140, "fields": {"revision": 1617, "object_id": "f0366091-16fa-4f05-9515-2b1e62bda85a", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f0366091-16fa-4f05-9515-2b1e62bda85a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"98633418-bb96-4bd6-95f6-8bff5b900e1e\", \"organization\": \"f387c5b5-43c8-4bd5-b67f-4ef961b307c9\", \"registration_no\": \"WPI 05110201\"}}]", "object_repr": "Geoff Doran - Pump Installer"}}, {"model": "reversion.version", "pk": 2141, "fields": {"revision": 1617, "object_id": "f387c5b5-43c8-4bd5-b67f-4ef961b307c9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f387c5b5-43c8-4bd5-b67f-4ef961b307c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"G. Doran & Sons Plumbing & Heating Ltd.\", \"street_address\": \"PO Box 24\", \"city\": \"Mill Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2P0\", \"main_tel\": \"(250) 743-5493\", \"fax_tel\": \"(250) 733-2358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "G. Doran & Sons Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 2142, "fields": {"revision": 1618, "object_id": "f1d0762d-ad7d-44d2-9ebf-1853b549414b", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f1d0762d-ad7d-44d2-9ebf-1853b549414b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"71c62125-a0b6-4d9f-be09-f6802d3e48d7\", \"organization\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"registration_no\": \"WD 11022501\"}}]", "object_repr": "Jacob Ongman - Well Driller"}}, {"model": "reversion.version", "pk": 2143, "fields": {"revision": 1618, "object_id": "1ffed78e-65ca-4edd-a040-4376ce042154", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1ffed78e-65ca-4edd-a040-4376ce042154\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Geotech Drilling Services Ltd.\", \"street_address\": \"5052 Hartway Drive\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 5G9\", \"main_tel\": \"(250) 564-9010\", \"fax_tel\": \"(250) 962-9048\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Geotech Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 2144, "fields": {"revision": 1619, "object_id": "f244e69b-fdf1-4814-a448-2f1ab1c3fabc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f244e69b-fdf1-4814-a448-2f1ab1c3fabc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"9cdefbf3-57c5-4c85-9790-dcd04d17bed0\", \"organization\": \"be5af669-279a-4f1a-aeca-bb71c9a7de8a\", \"registration_no\": \"WD 05120202\"}}]", "object_repr": "Rene Bernard - Well Driller"}}, {"model": "reversion.version", "pk": 2145, "fields": {"revision": 1619, "object_id": "be5af669-279a-4f1a-aeca-bb71c9a7de8a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"be5af669-279a-4f1a-aeca-bb71c9a7de8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bernard Drilling\", \"street_address\": \"7160 Beaver Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E6\", \"main_tel\": \"(250) 963-9233\", \"fax_tel\": \"(250) 963-9233\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bernard Drilling"}}, {"model": "reversion.version", "pk": 2146, "fields": {"revision": 1620, "object_id": "f2b723d7-b5b4-402d-829a-829564b49060", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f2b723d7-b5b4-402d-829a-829564b49060\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"3f395ddb-c9b6-4a02-bc6e-06abd5a67e07\", \"organization\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"registration_no\": \"WD 06100602\"}}]", "object_repr": "Patrick Mayne - Well Driller"}}, {"model": "reversion.version", "pk": 2147, "fields": {"revision": 1620, "object_id": "b844c836-2309-489a-9443-5eb56097e77a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sea to Sky Geotechnical Drilling Ltd.\", \"street_address\": \"E2-225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 328-9568\", \"fax_tel\": \"(604) 939-5045\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sea to Sky Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 2148, "fields": {"revision": 1621, "object_id": "f34fe6e0-584c-47cb-8e8e-58a445822ebc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f34fe6e0-584c-47cb-8e8e-58a445822ebc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"0576404f-807e-4e93-b7ed-93c94d19d938\", \"organization\": \"0253fef6-3961-4907-bc81-2d3d89430f3a\", \"registration_no\": \"WD 06010901\"}}]", "object_repr": "Lorne Bernard - Well Driller"}}, {"model": "reversion.version", "pk": 2149, "fields": {"revision": 1621, "object_id": "0253fef6-3961-4907-bc81-2d3d89430f3a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0253fef6-3961-4907-bc81-2d3d89430f3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Waterfall Drilling\", \"street_address\": \"7000 Beaver Road\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 6E6\", \"main_tel\": \"(250) 963-3406\", \"fax_tel\": \"(250) 963-3406\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Waterfall Drilling"}}, {"model": "reversion.version", "pk": 2150, "fields": {"revision": 1622, "object_id": "f44e6ed8-d505-453b-b37a-c92e91ac3501", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f44e6ed8-d505-453b-b37a-c92e91ac3501\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"078ea11f-9b0a-44d2-8d44-b7342a3f6ae2\", \"organization\": \"0e50f20d-98a9-45e4-bd22-56581838061d\", \"registration_no\": \"WD 05022102\"}}]", "object_repr": "Hank Unrau - Well Driller"}}, {"model": "reversion.version", "pk": 2151, "fields": {"revision": 1622, "object_id": "0e50f20d-98a9-45e4-bd22-56581838061d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0e50f20d-98a9-45e4-bd22-56581838061d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Drilling Services Ltd.\", \"street_address\": \"Box 4827\", \"city\": \"Williams Lake\", \"province_state\": \"BC\", \"postal_code\": \"V2G 2V8\", \"main_tel\": \"(250) 392-2241\", \"fax_tel\": \"(250) 392-7979\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Drilling Services Ltd."}}, {"model": "reversion.version", "pk": 2152, "fields": {"revision": 1623, "object_id": "f48a709f-008d-439f-90fa-e408df68dfb4", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f48a709f-008d-439f-90fa-e408df68dfb4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"01d6acb5-4300-455f-a0c6-d2c764e012d4\", \"organization\": \"36aba397-45c6-40ac-b0af-2beaee744408\", \"registration_no\": \"WD 17062701\"}}]", "object_repr": "Ryan Anderson - Well Driller"}}, {"model": "reversion.version", "pk": 2153, "fields": {"revision": 1623, "object_id": "36aba397-45c6-40ac-b0af-2beaee744408", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"36aba397-45c6-40ac-b0af-2beaee744408\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Tundra Environmental & Geotechnical Drilling Ltd.\", \"street_address\": \"Box 207\", \"city\": \"Stettler\", \"province_state\": \"AB\", \"postal_code\": \"T0C 2L0\", \"main_tel\": \"(403) 742-6601\", \"fax_tel\": \"(403) 742-6651\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Tundra Environmental & Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 2154, "fields": {"revision": 1624, "object_id": "f54ebc89-b564-4551-af93-5353276a473c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f54ebc89-b564-4551-af93-5353276a473c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"b2b46ff4-1ea2-4d2a-b179-9e15a2c3d520\", \"organization\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"registration_no\": \"WD 06051601\"}}]", "object_repr": "Keith Robbins - Well Driller"}}, {"model": "reversion.version", "pk": 2155, "fields": {"revision": 1624, "object_id": "b405fd40-35f5-4ff6-b570-4559dfaca861", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b405fd40-35f5-4ff6-b570-4559dfaca861\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Robbins Drilling and Pump Ltd\", \"street_address\": \"Box 80, 1400 Green Lake Road\", \"city\": \"Okanagan Falls\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1R0\", \"main_tel\": \"(250) 497-5303\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Robbins Drilling and Pump Ltd"}}, {"model": "reversion.version", "pk": 2156, "fields": {"revision": 1625, "object_id": "f57a8296-1946-4001-9f0c-19823c5bbd76", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f57a8296-1946-4001-9f0c-19823c5bbd76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fd593f7a-8efa-41e5-9d69-eef71ae9ef76\", \"organization\": \"e51471f9-1581-458f-8da5-64ebfea44397\", \"registration_no\": \"WPI 05041302\"}}]", "object_repr": "Greg McRae - Pump Installer"}}, {"model": "reversion.version", "pk": 2157, "fields": {"revision": 1625, "object_id": "e51471f9-1581-458f-8da5-64ebfea44397", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e51471f9-1581-458f-8da5-64ebfea44397\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Greg McRae Electric\", \"street_address\": \"RR#1\", \"city\": \"New Denver\", \"province_state\": \"BC\", \"postal_code\": \"V0G 1S0\", \"main_tel\": \"(250) 358-2623\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Greg McRae Electric"}}, {"model": "reversion.version", "pk": 2158, "fields": {"revision": 1626, "object_id": "f5d8a643-67b3-41a4-b2a4-8943516c02b3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f5d8a643-67b3-41a4-b2a4-8943516c02b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"4bd8ea89-17c9-4dca-abff-f4727563696f\", \"organization\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"registration_no\": \"WD 15052001\"}}]", "object_repr": "Shawn Slade - Well Driller"}}, {"model": "reversion.version", "pk": 2159, "fields": {"revision": 1626, "object_id": "64d5e13c-0777-4929-b6e5-674ce4985147", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"64d5e13c-0777-4929-b6e5-674ce4985147\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Drillwell Enterprises Ltd.\", \"street_address\": \"4994 Polkey Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6W3\", \"main_tel\": \"(250) 746-5268\", \"fax_tel\": \"(250) 746-8404\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drillwell Enterprises Ltd."}}, {"model": "reversion.version", "pk": 2160, "fields": {"revision": 1627, "object_id": "f6b4ac19-8bc5-4d6a-8719-eb5e9b645a73", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f6b4ac19-8bc5-4d6a-8719-eb5e9b645a73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"6bdf7dc4-4329-4aba-92ca-4095b862fd83\", \"organization\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"registration_no\": \"WD 06102701\"}}]", "object_repr": "Gordon Horbay - Well Driller"}}, {"model": "reversion.version", "pk": 2161, "fields": {"revision": 1627, "object_id": "e0d238fb-ee5b-44fc-919a-9026998ad00b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0d238fb-ee5b-44fc-919a-9026998ad00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"GeoTility Systems Corp.\", \"street_address\": \"#200 - 1649 Cary Road\", \"city\": \"Kelowna\", \"province_state\": \"BC\", \"postal_code\": \"V1X 2C1\", \"main_tel\": \"(250) 762-5776\", \"fax_tel\": \"(250) 762-0206\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "GeoTility Systems Corp."}}, {"model": "reversion.version", "pk": 2162, "fields": {"revision": 1628, "object_id": "f6da9c87-5be1-416c-bd2b-b8434e61a7a2", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f6da9c87-5be1-416c-bd2b-b8434e61a7a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"b0b61a89-ebba-449e-9646-79d258509870\", \"organization\": \"4ed57b23-0b53-4353-8cf7-d08a17b65b50\", \"registration_no\": \"WPI 06060501\"}}]", "object_repr": "Franz Bergendahl - Pump Installer"}}, {"model": "reversion.version", "pk": 2163, "fields": {"revision": 1628, "object_id": "4ed57b23-0b53-4353-8cf7-d08a17b65b50", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"4ed57b23-0b53-4353-8cf7-d08a17b65b50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Klimabuild Design & Construction Ltd.\", \"street_address\": \"1605 Johnstone Creek West Road\", \"city\": \"Rock Creek\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1Y0\", \"main_tel\": \"(250) 446-2805\", \"fax_tel\": \"(250) 446-2805\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Klimabuild Design & Construction Ltd."}}, {"model": "reversion.version", "pk": 2164, "fields": {"revision": 1629, "object_id": "f6f2c3a7-7d12-4e8f-aa43-c79f3b7a83cc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f6f2c3a7-7d12-4e8f-aa43-c79f3b7a83cc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2ac52e75-45bf-405f-ba91-4d1986399747\", \"organization\": \"f387c5b5-43c8-4bd5-b67f-4ef961b307c9\", \"registration_no\": \"WPI 06101802\"}}]", "object_repr": "Brad Doran - Pump Installer"}}, {"model": "reversion.version", "pk": 2165, "fields": {"revision": 1629, "object_id": "f387c5b5-43c8-4bd5-b67f-4ef961b307c9", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"f387c5b5-43c8-4bd5-b67f-4ef961b307c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"G. Doran & Sons Plumbing & Heating Ltd.\", \"street_address\": \"PO Box 24\", \"city\": \"Mill Bay\", \"province_state\": \"BC\", \"postal_code\": \"V0R 2P0\", \"main_tel\": \"(250) 743-5493\", \"fax_tel\": \"(250) 733-2358\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "G. Doran & Sons Plumbing & Heating Ltd."}}, {"model": "reversion.version", "pk": 2166, "fields": {"revision": 1630, "object_id": "f6ff0539-61e0-48eb-800d-451de8afb19f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f6ff0539-61e0-48eb-800d-451de8afb19f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"73ca9dc0-522f-42e0-b4c2-bf29eefb2bfb\", \"organization\": \"fe78f13e-24f3-451e-971a-a992cf901fdc\", \"registration_no\": \"WPI 11111402\"}}]", "object_repr": "Harry Oussoren - Pump Installer"}}, {"model": "reversion.version", "pk": 2167, "fields": {"revision": 1630, "object_id": "fe78f13e-24f3-451e-971a-a992cf901fdc", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"fe78f13e-24f3-451e-971a-a992cf901fdc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Insitu Contractors Inc\", \"street_address\": \"48 Dawson Road\", \"city\": \"Guelph\", \"province_state\": \"ON\", \"postal_code\": \"N1H 5V1\", \"main_tel\": \"(519) 763-0700\", \"fax_tel\": \"(519) 763-6684\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Insitu Contractors Inc"}}, {"model": "reversion.version", "pk": 2168, "fields": {"revision": 1631, "object_id": "f706de15-4c46-49df-a073-9a6f6de996f3", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f706de15-4c46-49df-a073-9a6f6de996f3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"520d3c86-79c4-41a4-875c-780c650256cf\", \"organization\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"registration_no\": \"WD 06100603\"}}]", "object_repr": "Mike Smallwood - Well Driller"}}, {"model": "reversion.version", "pk": 2169, "fields": {"revision": 1631, "object_id": "b844c836-2309-489a-9443-5eb56097e77a", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"b844c836-2309-489a-9443-5eb56097e77a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Sea to Sky Geotechnical Drilling Ltd.\", \"street_address\": \"E2-225 North Road\", \"city\": \"Coquitlam\", \"province_state\": \"BC\", \"postal_code\": \"V3K 3V7\", \"main_tel\": \"(604) 328-9568\", \"fax_tel\": \"(604) 939-5045\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Sea to Sky Geotechnical Drilling Ltd."}}, {"model": "reversion.version", "pk": 2170, "fields": {"revision": 1632, "object_id": "f745df85-cd68-4a54-b315-c13df5fa4b27", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f745df85-cd68-4a54-b315-c13df5fa4b27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"bf21510b-2a3e-4e3c-b930-8dbba956cd08\", \"organization\": \"55efd1c4-515e-4cc1-ae24-57ceaf4ae6b3\", \"registration_no\": \"WD 06060201\"}}]", "object_repr": "Dylan Kelly - Well Driller"}}, {"model": "reversion.version", "pk": 2171, "fields": {"revision": 1632, "object_id": "55efd1c4-515e-4cc1-ae24-57ceaf4ae6b3", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"55efd1c4-515e-4cc1-ae24-57ceaf4ae6b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Kootenay Well Drilling\", \"street_address\": \"RR#1, 6465 Sidley Mtn Road\", \"city\": \"Bridesville\", \"province_state\": \"BC\", \"postal_code\": \"V0H 1B0\", \"main_tel\": \"(250) 446-2195\", \"fax_tel\": \"(250) 446-2194\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Kootenay Well Drilling"}}, {"model": "reversion.version", "pk": 2172, "fields": {"revision": 1633, "object_id": "f7543a9c-ff4d-404e-aed6-4211da8364ee", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f7543a9c-ff4d-404e-aed6-4211da8364ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"2a533bc2-8b8d-4ac5-807e-8d5bf0aad087\", \"organization\": \"62ca0263-4d05-4de3-9cf8-58232531d05f\", \"registration_no\": \"WPI 10092701\"}}]", "object_repr": "Kelly Desjardins - Pump Installer"}}, {"model": "reversion.version", "pk": 2173, "fields": {"revision": 1633, "object_id": "62ca0263-4d05-4de3-9cf8-58232531d05f", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"62ca0263-4d05-4de3-9cf8-58232531d05f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Okanagan Well & Pump Service Inc.\", \"street_address\": \"3695 Sage Avenue\", \"city\": \"Armstrong\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1B2\", \"main_tel\": \"(250) 550-5553\", \"fax_tel\": \"(250) 546-2663\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Okanagan Well & Pump Service Inc."}}, {"model": "reversion.version", "pk": 2174, "fields": {"revision": 1634, "object_id": "f77add92-6aba-4547-b551-cf73d59c497f", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f77add92-6aba-4547-b551-cf73d59c497f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"7d3e0b68-29b4-46ae-9276-2f695cb39dd4\", \"organization\": \"15ebd28d-ad65-41fc-a458-8fc194631297\", \"registration_no\": \"WD 06090604\"}}]", "object_repr": "Denis Caron - Well Driller"}}, {"model": "reversion.version", "pk": 2175, "fields": {"revision": 1634, "object_id": "15ebd28d-ad65-41fc-a458-8fc194631297", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"15ebd28d-ad65-41fc-a458-8fc194631297\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Canadian Quality Control Inc.\", \"street_address\": \"2924 Piper Rd\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2N 2H8\", \"main_tel\": null, \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Canadian Quality Control Inc."}}, {"model": "reversion.version", "pk": 2176, "fields": {"revision": 1635, "object_id": "f82a942a-91cf-4626-8438-eee67d012980", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f82a942a-91cf-4626-8438-eee67d012980\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"67add1be-92c0-46b2-b334-34d8f239ac2b\", \"organization\": \"e0a6c3cf-7296-409a-a51c-a23c74f6c126\", \"registration_no\": \"WPI 06011201\"}}]", "object_repr": "Jacob Peters - Pump Installer"}}, {"model": "reversion.version", "pk": 2177, "fields": {"revision": 1635, "object_id": "e0a6c3cf-7296-409a-a51c-a23c74f6c126", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"e0a6c3cf-7296-409a-a51c-a23c74f6c126\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Jacob's Water Wells\", \"street_address\": \"15436 Bell Sub. Road; Box 143\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3417\", \"fax_tel\": \"(250) 827-3417\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Jacob's Water Wells"}}, {"model": "reversion.version", "pk": 2178, "fields": {"revision": 1636, "object_id": "f898e03e-65e7-4d0e-b45e-98002ad9bacc", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f898e03e-65e7-4d0e-b45e-98002ad9bacc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"7da570a5-6fd0-4a0d-ad57-717fc37a558e\", \"organization\": \"8cbb399c-13b6-49e1-ae7d-8174b4264055\", \"registration_no\": \"WPI 11030801\"}}]", "object_repr": "Sterling Harrison - Pump Installer"}}, {"model": "reversion.version", "pk": 2179, "fields": {"revision": 1636, "object_id": "8cbb399c-13b6-49e1-ae7d-8174b4264055", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8cbb399c-13b6-49e1-ae7d-8174b4264055\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Wellmaster Pumps & Water Systems Ltd.\", \"street_address\": \"7983 Simpson Road\", \"city\": \"Saanichton\", \"province_state\": \"BC\", \"postal_code\": \"V8M 2H3\", \"main_tel\": \"(250) 656-7474\", \"fax_tel\": \"(250) 652-7915\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Wellmaster Pumps & Water Systems Ltd."}}, {"model": "reversion.version", "pk": 2180, "fields": {"revision": 1637, "object_id": "f9906746-eba4-4a94-9a2f-20e60d1f55d9", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f9906746-eba4-4a94-9a2f-20e60d1f55d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"a23c4eef-43d4-4b07-a1c7-366e932f9649\", \"organization\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"registration_no\": \"WD 04111601\"}}]", "object_repr": "Greg Boulton - Well Driller"}}, {"model": "reversion.version", "pk": 2181, "fields": {"revision": 1637, "object_id": "0d86aca7-97f8-450f-a9e0-0c21d1578f85", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"0d86aca7-97f8-450f-a9e0-0c21d1578f85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Aqua Pro Drilling Ltd.\", \"street_address\": \"PO Box 550\", \"city\": \"Cranbrook\", \"province_state\": \"BC\", \"postal_code\": \"V1C 4J1\", \"main_tel\": \"(250) 426-0255\", \"fax_tel\": \"(250) 426-0251\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Aqua Pro Drilling Ltd."}}, {"model": "reversion.version", "pk": 2182, "fields": {"revision": 1638, "object_id": "f9b46ea0-37c9-400f-8c99-784e261f6f41", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"f9b46ea0-37c9-400f-8c99-784e261f6f41\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"0e7d6f67-d12b-41ef-943d-85b624612165\", \"organization\": \"292e0ad9-b2d2-4c9b-aba9-e194f00361f1\", \"registration_no\": \"WPI 13091901\"}}]", "object_repr": "Aaron Goeson - Pump Installer"}}, {"model": "reversion.version", "pk": 2183, "fields": {"revision": 1638, "object_id": "292e0ad9-b2d2-4c9b-aba9-e194f00361f1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"292e0ad9-b2d2-4c9b-aba9-e194f00361f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Mayfair Gas, Plumbing and Electrical\", \"street_address\": \"505 4th Avenue\", \"city\": \"Prince George\", \"province_state\": \"BC\", \"postal_code\": \"V2L 3H2\", \"main_tel\": \"(250) 562-8590\", \"fax_tel\": \"(250) 614-1419\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Mayfair Gas, Plumbing and Electrical"}}, {"model": "reversion.version", "pk": 2184, "fields": {"revision": 1639, "object_id": "fa90ef14-4a92-405d-8d35-541222b0162c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fa90ef14-4a92-405d-8d35-541222b0162c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"0bf4b190-5f80-4161-afba-9013f683d7aa\", \"organization\": \"74c14fca-770d-4b9c-b338-69a4be9038c8\", \"registration_no\": \"WD 16072501\"}}]", "object_repr": "Glen Furey - Well Driller"}}, {"model": "reversion.version", "pk": 2185, "fields": {"revision": 1639, "object_id": "74c14fca-770d-4b9c-b338-69a4be9038c8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"74c14fca-770d-4b9c-b338-69a4be9038c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Kicking Horse Water Services\", \"street_address\": \"PO Box 4039, 895 McAlister Road\", \"city\": \"Golden\", \"province_state\": \"BC\", \"postal_code\": \"V0A 1A0\", \"main_tel\": \"(250) 344-1272\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Kicking Horse Water Services"}}, {"model": "reversion.version", "pk": 2186, "fields": {"revision": 1640, "object_id": "faa2bce8-6360-43f4-99aa-87c53128e907", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"faa2bce8-6360-43f4-99aa-87c53128e907\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"2edc15fc-e546-4588-9388-0fe43bcc5a40\", \"organization\": \"456498be-243b-48f7-8845-103b8d9a82a8\", \"registration_no\": \"WD 05040601\"}}]", "object_repr": "Duane Bochek - Well Driller"}}, {"model": "reversion.version", "pk": 2187, "fields": {"revision": 1640, "object_id": "456498be-243b-48f7-8845-103b8d9a82a8", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"456498be-243b-48f7-8845-103b8d9a82a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud's Water Wells Ltd.\", \"street_address\": \"Box 3276\", \"city\": \"Kamloops\", \"province_state\": \"BC\", \"postal_code\": \"V2C 6B8\", \"main_tel\": \"(250) 573-3000\", \"fax_tel\": \"(250) 679-8423\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud's Water Wells Ltd."}}, {"model": "reversion.version", "pk": 2188, "fields": {"revision": 1641, "object_id": "fab5b7e3-be7f-476e-8aec-91b31bf07bd5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fab5b7e3-be7f-476e-8aec-91b31bf07bd5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"89fe417f-2ccc-4fbd-ae7c-bca29456986b\", \"organization\": \"7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b\", \"registration_no\": \"WPI 05081001\"}}]", "object_repr": "Lloyd Ingram - Pump Installer"}}, {"model": "reversion.version", "pk": 2189, "fields": {"revision": 1641, "object_id": "7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7eb6c07a-8620-4e3a-9d5f-02c2c7d22b7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Ingram Well & Pump Service\", \"street_address\": \"PO Box 4520\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 3J8\", \"main_tel\": \"(250) 249-5292\", \"fax_tel\": null, \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Ingram Well & Pump Service"}}, {"model": "reversion.version", "pk": 2190, "fields": {"revision": 1642, "object_id": "fad967d7-8fe9-4399-821f-ca1f19a41b7d", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fad967d7-8fe9-4399-821f-ca1f19a41b7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"729535d5-d407-4f1b-b55b-dace81657dd4\", \"organization\": \"45f64219-674a-42ce-92f8-e2ef29531434\", \"registration_no\": \"WPI 05120203\"}}]", "object_repr": "Gunnar Kristensen - Pump Installer"}}, {"model": "reversion.version", "pk": 2191, "fields": {"revision": 1642, "object_id": "45f64219-674a-42ce-92f8-e2ef29531434", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"45f64219-674a-42ce-92f8-e2ef29531434\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Barriere Backhoe Service\", \"street_address\": \"Box 82\", \"city\": \"Barriere\", \"province_state\": \"BC\", \"postal_code\": \"V0E 1E0\", \"main_tel\": \"(250) 672-9451\", \"fax_tel\": \"(250) 672-9501\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Barriere Backhoe Service"}}, {"model": "reversion.version", "pk": 2192, "fields": {"revision": 1643, "object_id": "fb382d40-c623-4c38-a5a6-a6108146c1f5", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fb382d40-c623-4c38-a5a6-a6108146c1f5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"73768746-e466-475e-979d-aebaa115a7f7\", \"organization\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"registration_no\": \"WPI 06092701\"}}]", "object_repr": "Randolph Mann - Pump Installer"}}, {"model": "reversion.version", "pk": 2193, "fields": {"revision": 1643, "object_id": "3c26fc6d-6d8f-47b6-8abb-4855e3257416", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3c26fc6d-6d8f-47b6-8abb-4855e3257416\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Corix Utilities\", \"street_address\": \"3175 Turner Street\", \"city\": \"Abbotsford\", \"province_state\": \"BC\", \"postal_code\": \"V2S 7T9\", \"main_tel\": \"(604) 850-0441\", \"fax_tel\": \"(604) 768-9269\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Corix Utilities"}}, {"model": "reversion.version", "pk": 2194, "fields": {"revision": 1644, "object_id": "fbb4998c-be99-44b7-862d-73977c82c817", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fbb4998c-be99-44b7-862d-73977c82c817\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"e84ac77d-2580-4975-827d-98cda03a540c\", \"organization\": \"7fb4208f-2797-443c-a9df-ad85e3d62320\", \"registration_no\": \"WPI 12022102\"}}]", "object_repr": "Kurtis Rentz - Pump Installer"}}, {"model": "reversion.version", "pk": 2195, "fields": {"revision": 1644, "object_id": "7fb4208f-2797-443c-a9df-ad85e3d62320", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7fb4208f-2797-443c-a9df-ad85e3d62320\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Earthsmart Solutions Ltd.\", \"street_address\": \"4165 Eld Road\", \"city\": \"Qualicum Beach\", \"province_state\": \"BC\", \"postal_code\": \"V9K 1V4\", \"main_tel\": \"(250) 586-5555\", \"fax_tel\": \"(250) 586-5555\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Earthsmart Solutions Ltd."}}, {"model": "reversion.version", "pk": 2196, "fields": {"revision": 1645, "object_id": "fca7fc7b-ee3e-4906-b547-8462e54967e6", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fca7fc7b-ee3e-4906-b547-8462e54967e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"80727687-a595-41f1-a0cc-ff11e289dc9b\", \"organization\": \"7af636c4-093f-4a61-af58-3a3bc8ddc62c\", \"registration_no\": \"WD 12121001\"}}]", "object_repr": "Chris Lanting - Well Driller"}}, {"model": "reversion.version", "pk": 2197, "fields": {"revision": 1645, "object_id": "7af636c4-093f-4a61-af58-3a3bc8ddc62c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"7af636c4-093f-4a61-af58-3a3bc8ddc62c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Downrite Drilling Ltd.\", \"street_address\": \"4346 Wilson Road\", \"city\": \"Chilliwack\", \"province_state\": \"BC\", \"postal_code\": \"V2R 5C6\", \"main_tel\": \"(604) 823-4086\", \"fax_tel\": \"(604) 823-4086\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Downrite Drilling Ltd."}}, {"model": "reversion.version", "pk": 2198, "fields": {"revision": 1646, "object_id": "fd29be44-2200-4680-a486-c5d01a1168e8", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fd29be44-2200-4680-a486-c5d01a1168e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"d09673e0-9b4a-4685-af0b-af05941037b8\", \"organization\": \"137eafe9-165b-489f-9600-c52a123938d0\", \"registration_no\": \"WPI 06090707\"}}]", "object_repr": "Neal TeBrinke - Pump Installer"}}, {"model": "reversion.version", "pk": 2199, "fields": {"revision": 1646, "object_id": "137eafe9-165b-489f-9600-c52a123938d0", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"137eafe9-165b-489f-9600-c52a123938d0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"426518 BC Ltd.\", \"street_address\": \"Box 355\", \"city\": \"Agassiz\", \"province_state\": \"BC\", \"postal_code\": \"V0M 1A0\", \"main_tel\": \"(604) 796-2988\", \"fax_tel\": \"(604) 796-8870\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "426518 BC Ltd."}}, {"model": "reversion.version", "pk": 2200, "fields": {"revision": 1647, "object_id": "fd34f4c7-c1a6-44ee-b17d-c15053d8e26c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fd34f4c7-c1a6-44ee-b17d-c15053d8e26c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"98cb827b-20f6-4f08-8f18-99171a69c761\", \"organization\": \"a14f35d7-6d7e-420c-b2f5-be46e12b172c\", \"registration_no\": \"WPI 06102502\"}}]", "object_repr": "Bruce Jorgensen - Pump Installer"}}, {"model": "reversion.version", "pk": 2201, "fields": {"revision": 1647, "object_id": "a14f35d7-6d7e-420c-b2f5-be46e12b172c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a14f35d7-6d7e-420c-b2f5-be46e12b172c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Silver Valley Plumbing & Mechanical Ltd.\", \"street_address\": \"Box 21025, Maple Ridge Square\", \"city\": \"Maple Ridge\", \"province_state\": \"BC\", \"postal_code\": \"V2X 1P7\", \"main_tel\": \"(604) 467-8854\", \"fax_tel\": \"(604) 467-8854\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Silver Valley Plumbing & Mechanical Ltd."}}, {"model": "reversion.version", "pk": 2202, "fields": {"revision": 1648, "object_id": "fdbe900d-c203-4100-aa2f-7ef068ad5811", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fdbe900d-c203-4100-aa2f-7ef068ad5811\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"aab61210-ff71-4e7b-a24b-8e21d3b9e1cf\", \"organization\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"registration_no\": \"WD 05062303\"}}]", "object_repr": "Travis Schryvers - Well Driller"}}, {"model": "reversion.version", "pk": 2203, "fields": {"revision": 1648, "object_id": "3711d8c3-d806-4073-9fde-e198f341ad69", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"3711d8c3-d806-4073-9fde-e198f341ad69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Uniwide Drilling Ltd. Co.\", \"street_address\": \"5755 Byrne Road\", \"city\": \"Burnaby\", \"province_state\": \"BC\", \"postal_code\": \"V5J 3J1\", \"main_tel\": \"(604) 321-2921\", \"fax_tel\": \"(604) 321-2920\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Uniwide Drilling Ltd. Co."}}, {"model": "reversion.version", "pk": 2204, "fields": {"revision": 1649, "object_id": "fde5606f-2e99-402a-87eb-9faad930886c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fde5606f-2e99-402a-87eb-9faad930886c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"person\": \"fec3db3c-1100-4c87-aa4a-8dff93fd7e99\", \"organization\": \"8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd\", \"registration_no\": \"WPI 06103001\"}}]", "object_repr": "Bernard Henning - Pump Installer"}}, {"model": "reversion.version", "pk": 2205, "fields": {"revision": 1649, "object_id": "8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"8ae005ad-21e9-4c5c-9d74-ef9d14d3dcfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Bud Henning Drilling & Consulting\", \"street_address\": \"1321 Ellison Road\", \"city\": \"Quesnel\", \"province_state\": \"BC\", \"postal_code\": \"V2J 5M8\", \"main_tel\": \"(250) 747-8629\", \"fax_tel\": \"(205) 747-8675\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Bud Henning Drilling & Consulting"}}, {"model": "reversion.version", "pk": 2206, "fields": {"revision": 1650, "object_id": "fe8b27e1-8d88-4a34-8e80-77e47da22b08", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"fe8b27e1-8d88-4a34-8e80-77e47da22b08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"67add1be-92c0-46b2-b334-34d8f239ac2b\", \"organization\": \"cbaa90d0-500f-4144-82f8-3d014556abb4\", \"registration_no\": \"WD 05120701\"}}]", "object_repr": "Jacob Peters - Well Driller"}}, {"model": "reversion.version", "pk": 2207, "fields": {"revision": 1650, "object_id": "cbaa90d0-500f-4144-82f8-3d014556abb4", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"cbaa90d0-500f-4144-82f8-3d014556abb4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Jacob's Water Wells\", \"street_address\": \"Box 143; 15436 Bell Sub. Road 657\", \"city\": \"Montney\", \"province_state\": \"BC\", \"postal_code\": \"V0C 1Y0\", \"main_tel\": \"(250) 827-3417\", \"fax_tel\": \"(250) 827-3417\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Jacob's Water Wells"}}, {"model": "reversion.version", "pk": 2208, "fields": {"revision": 1651, "object_id": "ffeaec06-28f0-4455-beed-8e5cc2b1d50c", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"ffeaec06-28f0-4455-beed-8e5cc2b1d50c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"person\": \"be9a25a4-79fc-4574-8f57-76f65a9885a6\", \"organization\": \"730ac841-305e-4965-86da-b6b718378d0c\", \"registration_no\": \"WD 05020901\"}}]", "object_repr": "Peter Misek - Well Driller"}}, {"model": "reversion.version", "pk": 2209, "fields": {"revision": 1651, "object_id": "730ac841-305e-4965-86da-b6b718378d0c", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"730ac841-305e-4965-86da-b6b718378d0c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"name\": \"Misek Bros. Drilling\", \"street_address\": \"3805 Hillbank Road\", \"city\": \"Duncan\", \"province_state\": \"BC\", \"postal_code\": \"V9L 6M1\", \"main_tel\": \"(250) 743-9050\", \"fax_tel\": \"(250) 743-9027\", \"website_url\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Misek Bros. Drilling"}}, {"model": "reversion.version", "pk": 2210, "fields": {"revision": 1652, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2211, "fields": {"revision": 1653, "object_id": "I", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"I\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Incomplete\", \"display_order\": 10, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Incomplete"}}, {"model": "reversion.version", "pk": 2212, "fields": {"revision": 1654, "object_id": "NA", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"NA\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Not Approved\", \"display_order\": 6, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Not Approved"}}, {"model": "reversion.version", "pk": 2213, "fields": {"revision": 1655, "object_id": "P", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"P\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Pending\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Pending"}}, {"model": "reversion.version", "pk": 2214, "fields": {"revision": 1656, "object_id": "BIRTH", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"BIRTH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Birth Certificate\", \"display_order\": 1, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "BIRTH"}}, {"model": "reversion.version", "pk": 2215, "fields": {"revision": 1657, "object_id": "DRIVERS", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"DRIVERS\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Driver's Licence\", \"display_order\": 1, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "DRIVERS"}}, {"model": "reversion.version", "pk": 2216, "fields": {"revision": 1658, "object_id": "PASSPORT", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"PASSPORT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Passport\", \"display_order\": 2, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "PASSPORT"}}, {"model": "reversion.version", "pk": 2217, "fields": {"revision": 1659, "object_id": "00450f1f-3ae1-4b75-9409-54cf591951e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"00450f1f-3ae1-4b75-9409-54cf591951e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.154Z\", \"registration\": \"02d2098e-6d81-4370-85f4-1f77e27dcf31\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCDO D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas McDonald - Pump Installer : 38000-25/PUMP MCDO D"}}, {"model": "reversion.version", "pk": 2218, "fields": {"revision": 1659, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2219, "fields": {"revision": 1659, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2220, "fields": {"revision": 1659, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2221, "fields": {"revision": 1660, "object_id": "0167001c-9db4-429b-ad42-d509bbd614ee", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0167001c-9db4-429b-ad42-d509bbd614ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.161Z\", \"registration\": \"5de3c96a-4994-4ce4-a817-f877dbe90896\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MARK S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-25\", \"application_outcome_notification_date\": \"2005-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Steve Markle - Pump Installer : 38000-25/PUMP MARK S"}}, {"model": "reversion.version", "pk": 2222, "fields": {"revision": 1660, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2223, "fields": {"revision": 1660, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2224, "fields": {"revision": 1660, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2225, "fields": {"revision": 1661, "object_id": "01761382-28f2-4aa9-85ef-af2bf9f03ad7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"01761382-28f2-4aa9-85ef-af2bf9f03ad7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.167Z\", \"registration\": \"57ff647b-a321-4459-98b5-b637c0430719\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MURD J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Murdock - Well Driller : 38000-25/DRI MURD J"}}, {"model": "reversion.version", "pk": 2226, "fields": {"revision": 1661, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2227, "fields": {"revision": 1661, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2228, "fields": {"revision": 1661, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2229, "fields": {"revision": 1662, "object_id": "01a6a00b-94b1-4524-b24b-cd81bcae8ba3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"01a6a00b-94b1-4524-b24b-cd81bcae8ba3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.173Z\", \"registration\": \"103df769-88d5-450f-a3c8-434e38587620\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GILL C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/476706\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-19\", \"application_outcome_notification_date\": \"2009-05-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cory Gillis - Well Driller : 38000-25/DRI GILL C"}}, {"model": "reversion.version", "pk": 2230, "fields": {"revision": 1662, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2231, "fields": {"revision": 1662, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2232, "fields": {"revision": 1662, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2233, "fields": {"revision": 1663, "object_id": "01ae99f5-1751-4cd8-9f4a-a30461369b26", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"01ae99f5-1751-4cd8-9f4a-a30461369b26\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.178Z\", \"registration\": \"edfcf2a8-f379-4db0-942a-7ef453a88c50\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WANG D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0040-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-26\", \"application_outcome_notification_date\": \"2005-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Wangler - Well Driller : 38000-25/DRI WANG D"}}, {"model": "reversion.version", "pk": 2234, "fields": {"revision": 1663, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2235, "fields": {"revision": 1663, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2236, "fields": {"revision": 1663, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2237, "fields": {"revision": 1664, "object_id": "01fd7acd-b5c8-46d0-aba2-cd7a4914fb6e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"01fd7acd-b5c8-46d0-aba2-cd7a4914fb6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.185Z\", \"registration\": \"a1412182-4373-4562-83ff-f7d0cceb1050\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI DOBS C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cory Dobson - Well Driller : 38000-25/DRI DOBS C"}}, {"model": "reversion.version", "pk": 2238, "fields": {"revision": 1664, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2239, "fields": {"revision": 1664, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2240, "fields": {"revision": 1664, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2241, "fields": {"revision": 1665, "object_id": "0203887a-6f93-48e7-b1b4-7578744ddffa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0203887a-6f93-48e7-b1b4-7578744ddffa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.191Z\", \"registration\": \"36a5f9b7-ada6-4302-954c-3e3af65daa59\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HOLM A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alan Holmstrup - Well Driller : 38000-25/DRI HOLM A"}}, {"model": "reversion.version", "pk": 2242, "fields": {"revision": 1665, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2243, "fields": {"revision": 1665, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2244, "fields": {"revision": 1665, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2245, "fields": {"revision": 1666, "object_id": "0244ba16-f721-42b9-adc3-c8fe6f488a53", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0244ba16-f721-42b9-adc3-c8fe6f488a53\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.198Z\", \"registration\": \"c5739f53-465f-4601-b7b1-d2040efa9ee3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STOO R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rusty Stooksberry - Well Driller : 38000-25/DRI STOO R"}}, {"model": "reversion.version", "pk": 2246, "fields": {"revision": 1666, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2247, "fields": {"revision": 1666, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2248, "fields": {"revision": 1666, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2249, "fields": {"revision": 1667, "object_id": "02c9235c-267e-4638-b35b-8c64a6362722", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"02c9235c-267e-4638-b35b-8c64a6362722\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.205Z\", \"registration\": \"3f196ab1-8493-4f2c-bdeb-edaaacf33584\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SOVD T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Terry Sovdi - Well Driller : 38000-25/DRI SOVD T"}}, {"model": "reversion.version", "pk": 2250, "fields": {"revision": 1667, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2251, "fields": {"revision": 1667, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2252, "fields": {"revision": 1667, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2253, "fields": {"revision": 1668, "object_id": "02d817bc-adb5-4856-8e70-83659f335505", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"02d817bc-adb5-4856-8e70-83659f335505\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.212Z\", \"registration\": \"e35e91ee-4d83-4620-9cb2-e56ff643873c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HARD R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Harden - Well Driller : 38000-25/DRI HARD R"}}, {"model": "reversion.version", "pk": 2254, "fields": {"revision": 1668, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2255, "fields": {"revision": 1668, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2256, "fields": {"revision": 1668, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2257, "fields": {"revision": 1669, "object_id": "0386b3c5-cb3b-4d6e-90ae-e9a43a8b6141", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0386b3c5-cb3b-4d6e-90ae-e9a43a8b6141\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.218Z\", \"registration\": \"9bae0b0c-ddd0-4969-999c-c513039222fa\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHW W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Schwartz - Well Driller : 38000-25/DRI SCHW W"}}, {"model": "reversion.version", "pk": 2258, "fields": {"revision": 1669, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2259, "fields": {"revision": 1669, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2260, "fields": {"revision": 1669, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2261, "fields": {"revision": 1670, "object_id": "03ad70fb-b129-40e3-bee6-c4e8d7c3802f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"03ad70fb-b129-40e3-bee6-c4e8d7c3802f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.224Z\", \"registration\": \"3859f0cf-6443-4f22-96af-8c00f121f1b8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KRUG A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Antony Kruger - Pump Installer : 38000-25/PUMP KRUG A"}}, {"model": "reversion.version", "pk": 2262, "fields": {"revision": 1670, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2263, "fields": {"revision": 1670, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2264, "fields": {"revision": 1670, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2265, "fields": {"revision": 1671, "object_id": "03d38b41-38fa-40eb-b0b8-b608256da83b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"03d38b41-38fa-40eb-b0b8-b608256da83b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.230Z\", \"registration\": \"3a85e825-a3ef-49ef-8e72-b8faff5670df\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CRAM R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rob Crampton - Well Driller : 38000-25/DRI CRAM R"}}, {"model": "reversion.version", "pk": 2266, "fields": {"revision": 1671, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2267, "fields": {"revision": 1671, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2268, "fields": {"revision": 1671, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2269, "fields": {"revision": 1672, "object_id": "03d6ba2f-4b2c-4ec5-afb7-19ef834323e2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"03d6ba2f-4b2c-4ec5-afb7-19ef834323e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.235Z\", \"registration\": \"62c508aa-6d3d-4c10-b818-060d455c86ae\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/WOOD S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0025-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stanley Woodford - Well Driller : 38000-25/WOOD S"}}, {"model": "reversion.version", "pk": 2270, "fields": {"revision": 1672, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2271, "fields": {"revision": 1672, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2272, "fields": {"revision": 1672, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2273, "fields": {"revision": 1673, "object_id": "047e160f-6784-452f-9228-598354c9ce27", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"047e160f-6784-452f-9228-598354c9ce27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.242Z\", \"registration\": \"dccbb0a1-5a61-4eba-8156-23cafc843748\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LORN T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"primary_certificate_no\": \"00001-GX-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-08-22\", \"application_outcome_notification_date\": \"2016-08-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Lornson - Well Driller : 38000-25/DRI LORN T"}}, {"model": "reversion.version", "pk": 2274, "fields": {"revision": 1673, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2275, "fields": {"revision": 1673, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2276, "fields": {"revision": 1673, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 2277, "fields": {"revision": 1674, "object_id": "04802b01-2978-41cf-bc84-af34b9617eed", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"04802b01-2978-41cf-bc84-af34b9617eed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.249Z\", \"registration\": \"b31d6f07-2ebb-4d22-bc94-c4e1ec514ee2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP EPP P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Epp - Pump Installer : 38000-25/PUMP EPP P"}}, {"model": "reversion.version", "pk": 2278, "fields": {"revision": 1674, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2279, "fields": {"revision": 1674, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2280, "fields": {"revision": 1674, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2281, "fields": {"revision": 1675, "object_id": "04a2ea16-928c-4370-822c-aaf1af69f485", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"04a2ea16-928c-4370-822c-aaf1af69f485\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.257Z\", \"registration\": \"a8b6c219-e740-4434-a073-f23c84a13856\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MART K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelvin Marte - Well Driller : 38000-25/DRI MART K"}}, {"model": "reversion.version", "pk": 2282, "fields": {"revision": 1675, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2283, "fields": {"revision": 1675, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2284, "fields": {"revision": 1675, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2285, "fields": {"revision": 1676, "object_id": "04c9f7a4-5972-44dc-bddb-93c655968cad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"04c9f7a4-5972-44dc-bddb-93c655968cad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.263Z\", \"registration\": \"9bae0b0c-ddd0-4969-999c-c513039222fa\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHW W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Schwartz - Well Driller : 38000-25/DRI SCHW W"}}, {"model": "reversion.version", "pk": 2286, "fields": {"revision": 1676, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2287, "fields": {"revision": 1676, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2288, "fields": {"revision": 1676, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2289, "fields": {"revision": 1677, "object_id": "05382bf2-19e4-440c-8edd-b3e1a3faf563", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"05382bf2-19e4-440c-8edd-b3e1a3faf563\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.270Z\", \"registration\": \"248b32d4-7ff2-420c-a244-545597e63dcc\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HAYN B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-11-06\", \"application_outcome_notification_date\": \"2015-11-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Haynes - Well Driller : 38000-25/DRI HAYN B"}}, {"model": "reversion.version", "pk": 2290, "fields": {"revision": 1677, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2291, "fields": {"revision": 1677, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2292, "fields": {"revision": 1677, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2293, "fields": {"revision": 1678, "object_id": "05601ef0-34f9-4075-ab01-a81c30971274", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"05601ef0-34f9-4075-ab01-a81c30971274\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.276Z\", \"registration\": \"7ce85fdc-a857-41b2-9c24-21e98e1f2f43\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MYRA C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/168174-76443A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-01-06\", \"application_outcome_notification_date\": \"2015-01-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cecil Myram - Well Driller : 38000-25/DRI MYRA C"}}, {"model": "reversion.version", "pk": 2294, "fields": {"revision": 1678, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2295, "fields": {"revision": 1678, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2296, "fields": {"revision": 1678, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2297, "fields": {"revision": 1679, "object_id": "05b0c7c6-f2b2-468c-b8bb-692677968507", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"05b0c7c6-f2b2-468c-b8bb-692677968507\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.281Z\", \"registration\": \"4cfc10fa-e282-4a64-bc39-c090c2924805\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LAMO D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dale Lamont - Pump Installer : 38000-25/PUMP LAMO D"}}, {"model": "reversion.version", "pk": 2298, "fields": {"revision": 1679, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2299, "fields": {"revision": 1679, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2300, "fields": {"revision": 1679, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2301, "fields": {"revision": 1680, "object_id": "0629949b-dc7e-4203-b4e9-231b54b6f9f3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0629949b-dc7e-4203-b4e9-231b54b6f9f3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.289Z\", \"registration\": \"7b1dc746-8187-40af-9da7-1fbb55e1fc6f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI REID A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alan Reid - Well Driller : 38000-25/DRI REID A"}}, {"model": "reversion.version", "pk": 2302, "fields": {"revision": 1680, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2303, "fields": {"revision": 1680, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2304, "fields": {"revision": 1680, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2305, "fields": {"revision": 1681, "object_id": "06635862-3ca3-4553-9da2-5548031423ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"06635862-3ca3-4553-9da2-5548031423ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.296Z\", \"registration\": \"338c46da-7c4e-4297-a8c2-58f028091729\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SLAD C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0019-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Calvin Slade - Well Driller : 38000-25/DRI SLAD C"}}, {"model": "reversion.version", "pk": 2306, "fields": {"revision": 1681, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2307, "fields": {"revision": 1681, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2308, "fields": {"revision": 1681, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2309, "fields": {"revision": 1682, "object_id": "066953be-7230-4c23-8fea-aa798a822c6d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"066953be-7230-4c23-8fea-aa798a822c6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.303Z\", \"registration\": \"702da908-55ea-485e-ae4a-977911677a0d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MANK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Mankowski - Well Driller : 38000-25/DRI MANK J"}}, {"model": "reversion.version", "pk": 2310, "fields": {"revision": 1682, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2311, "fields": {"revision": 1682, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2312, "fields": {"revision": 1682, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2313, "fields": {"revision": 1683, "object_id": "06808a20-63a1-4ebd-9512-8f1dbc7741f2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"06808a20-63a1-4ebd-9512-8f1dbc7741f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.310Z\", \"registration\": \"a3eadf9c-78e3-41bd-a90e-76c4be8da126\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI POST R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VB2770-35/00057\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-09-25\", \"application_outcome_notification_date\": \"2015-09-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Post - Well Driller : 38000-25/DRI POST R"}}, {"model": "reversion.version", "pk": 2314, "fields": {"revision": 1683, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2315, "fields": {"revision": 1683, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2316, "fields": {"revision": 1683, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2317, "fields": {"revision": 1684, "object_id": "06a9e4a5-5a93-45f3-bf5d-e22cddfcf89f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"06a9e4a5-5a93-45f3-bf5d-e22cddfcf89f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.317Z\", \"registration\": \"f6ff0539-61e0-48eb-800d-451de8afb19f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP OUSS H\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"88d5d0aa-d2aa-450a-9708-a911dce42f7f\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-14\", \"application_outcome_notification_date\": \"2011-11-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Oussoren - Pump Installer : 38000-25/PUMP OUSS H"}}, {"model": "reversion.version", "pk": 2318, "fields": {"revision": 1684, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2319, "fields": {"revision": 1684, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2320, "fields": {"revision": 1684, "object_id": "88d5d0aa-d2aa-450a-9708-a911dce42f7f", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"88d5d0aa-d2aa-450a-9708-a911dce42f7f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"ON\", \"registries_activity\": \"PUMP\", \"name\": \"Well Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON Pump Installer Well Technician Certificate"}}, {"model": "reversion.version", "pk": 2321, "fields": {"revision": 1685, "object_id": "0733e034-0c19-4e16-a541-b6ad81deb4a8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0733e034-0c19-4e16-a541-b6ad81deb4a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.325Z\", \"registration\": \"f77add92-6aba-4547-b551-cf73d59c497f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CARO DO\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Denis Caron - Well Driller : 38000-25/DRI CARO DO"}}, {"model": "reversion.version", "pk": 2322, "fields": {"revision": 1685, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2323, "fields": {"revision": 1685, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2324, "fields": {"revision": 1685, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2325, "fields": {"revision": 1686, "object_id": "07569ceb-b4e9-4ddb-a7f8-dd44b303094b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"07569ceb-b4e9-4ddb-a7f8-dd44b303094b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.334Z\", \"registration\": \"5a34a051-05d0-4762-8ef7-943e49df6596\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FAAS D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert D. Faasse - Well Driller : 38000-25/DRI FAAS D"}}, {"model": "reversion.version", "pk": 2326, "fields": {"revision": 1686, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2327, "fields": {"revision": 1686, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2328, "fields": {"revision": 1686, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2329, "fields": {"revision": 1687, "object_id": "07b12c3d-d666-4a7f-9cb6-d077871cf814", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"07b12c3d-d666-4a7f-9cb6-d077871cf814\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.344Z\", \"registration\": \"12766a5d-8c77-47e3-bab4-dd7d6ce92d1d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GREY R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-27\", \"application_outcome_notification_date\": \"2005-09-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rob Grey - Pump Installer : 38000-25/PUMP GREY R"}}, {"model": "reversion.version", "pk": 2330, "fields": {"revision": 1687, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2331, "fields": {"revision": 1687, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2332, "fields": {"revision": 1687, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2333, "fields": {"revision": 1688, "object_id": "07cc1960-34f4-44a5-b16b-0f805c7a27e9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"07cc1960-34f4-44a5-b16b-0f805c7a27e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.353Z\", \"registration\": \"e863888a-3c8b-47f4-88b4-c593b8344ad9\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FIEL L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Larry Field - Well Driller : 38000-25/DRI FIEL L"}}, {"model": "reversion.version", "pk": 2334, "fields": {"revision": 1688, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2335, "fields": {"revision": 1688, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2336, "fields": {"revision": 1688, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2337, "fields": {"revision": 1689, "object_id": "07e90218-70bf-407d-bece-c4eec84a2828", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"07e90218-70bf-407d-bece-c4eec84a2828\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.363Z\", \"registration\": \"2d42435d-53a1-4016-bd82-5f925c183fb8\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI DODD W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Dodd - Well Driller : 38000-25/DRI DODD W"}}, {"model": "reversion.version", "pk": 2338, "fields": {"revision": 1689, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2339, "fields": {"revision": 1689, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2340, "fields": {"revision": 1689, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2341, "fields": {"revision": 1690, "object_id": "08299a5b-6039-4500-a8f8-41ec9d5066a6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"08299a5b-6039-4500-a8f8-41ec9d5066a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.372Z\", \"registration\": \"1e45cb12-82fa-4e4e-8262-82503e9fc1e7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MUTH D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Muth - Pump Installer : 38000-25/PUMP MUTH D"}}, {"model": "reversion.version", "pk": 2342, "fields": {"revision": 1690, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2343, "fields": {"revision": 1690, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2344, "fields": {"revision": 1690, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2345, "fields": {"revision": 1691, "object_id": "087ae390-a024-4579-b977-84eaf5e96fcf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"087ae390-a024-4579-b977-84eaf5e96fcf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.381Z\", \"registration\": \"b657c8f4-053e-4c92-85a9-6e79e8e552d1\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WIDA J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/483894 - 32379A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-10-31\", \"application_outcome_notification_date\": \"2011-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joey Widaiko - Well Driller : 38000-25/DRI WIDA J"}}, {"model": "reversion.version", "pk": 2346, "fields": {"revision": 1691, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2347, "fields": {"revision": 1691, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2348, "fields": {"revision": 1691, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2349, "fields": {"revision": 1692, "object_id": "0889d9e3-c6eb-4bbc-af63-70bb64c31ea7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0889d9e3-c6eb-4bbc-af63-70bb64c31ea7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.390Z\", \"registration\": \"8b711353-2a66-46b7-ac0d-c804b1fc1e83\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BURR S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00019-WW-99\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Burrows - Well Driller : 38000-25/DRI BURR S"}}, {"model": "reversion.version", "pk": 2350, "fields": {"revision": 1692, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2351, "fields": {"revision": 1692, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2352, "fields": {"revision": 1692, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2353, "fields": {"revision": 1693, "object_id": "088d3763-c571-4d9e-a266-62f6c5b20714", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"088d3763-c571-4d9e-a266-62f6c5b20714\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.398Z\", \"registration\": \"91b1859d-c6cf-4120-81aa-bc81079c1378\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BLEI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bleich - Well Driller : 38000-25/DRI BLEI R"}}, {"model": "reversion.version", "pk": 2354, "fields": {"revision": 1693, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2355, "fields": {"revision": 1693, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2356, "fields": {"revision": 1693, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2357, "fields": {"revision": 1694, "object_id": "08c3ea42-5593-4cd1-b4c1-5ffd11775021", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"08c3ea42-5593-4cd1-b4c1-5ffd11775021\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.404Z\", \"registration\": \"238196c4-2b5d-4910-aa69-021454bcee5c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WAYN M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/00109-AC2616\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-04-27\", \"application_outcome_notification_date\": \"2011-04-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Morrill - Well Driller : 38000-25/DRI WAYN M"}}, {"model": "reversion.version", "pk": 2358, "fields": {"revision": 1694, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2359, "fields": {"revision": 1694, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2360, "fields": {"revision": 1694, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2361, "fields": {"revision": 1695, "object_id": "09727f95-9dbe-4580-b1ea-fe6314f69099", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"09727f95-9dbe-4580-b1ea-fe6314f69099\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.410Z\", \"registration\": \"fa90ef14-4a92-405d-8d35-541222b0162c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FURE G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"primary_certificate_no\": \"00003-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-07-25\", \"application_outcome_notification_date\": \"2016-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Furey - Well Driller : 38000-25/DRI FURE G"}}, {"model": "reversion.version", "pk": 2362, "fields": {"revision": 1695, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2363, "fields": {"revision": 1695, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2364, "fields": {"revision": 1695, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 2365, "fields": {"revision": 1696, "object_id": "09b306bd-48a3-49db-9ea3-62e537f10bac", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"09b306bd-48a3-49db-9ea3-62e537f10bac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.416Z\", \"registration\": \"4e98c4be-9a6d-4af5-8ceb-026e650e9694\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LABR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-24\", \"application_outcome_notification_date\": \"2006-07-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry LaBrie - Well Driller : 38000-25/DRI LABR J"}}, {"model": "reversion.version", "pk": 2366, "fields": {"revision": 1696, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2367, "fields": {"revision": 1696, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2368, "fields": {"revision": 1696, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2369, "fields": {"revision": 1697, "object_id": "09fe9366-c94f-4ae6-a57c-de8ba1a88c3f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"09fe9366-c94f-4ae6-a57c-de8ba1a88c3f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.424Z\", \"registration\": \"3f1b48f3-99a6-4028-af62-1716ad45d573\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BARF C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-26\", \"application_outcome_notification_date\": \"2010-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Craig Barfett - Pump Installer : 38000-25/PUMP BARF C"}}, {"model": "reversion.version", "pk": 2370, "fields": {"revision": 1697, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2371, "fields": {"revision": 1697, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2372, "fields": {"revision": 1697, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2373, "fields": {"revision": 1698, "object_id": "0a7ef642-5a5d-487c-a1af-8bdf7f5c8f02", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0a7ef642-5a5d-487c-a1af-8bdf7f5c8f02\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.440Z\", \"registration\": \"b4170f23-379f-4d8d-a923-02a86f6c4099\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KREN J\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016. Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Krenbrink - Well Driller : 38000-25/DRI KREN J"}}, {"model": "reversion.version", "pk": 2374, "fields": {"revision": 1698, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2375, "fields": {"revision": 1698, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2376, "fields": {"revision": 1698, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2377, "fields": {"revision": 1699, "object_id": "0a9591d8-38e9-4124-b86e-9c34bd5e1efd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0a9591d8-38e9-4124-b86e-9c34bd5e1efd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.450Z\", \"registration\": \"7b1dc746-8187-40af-9da7-1fbb55e1fc6f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI REID A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alan Reid - Well Driller : 38000-25/DRI REID A"}}, {"model": "reversion.version", "pk": 2378, "fields": {"revision": 1699, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2379, "fields": {"revision": 1699, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2380, "fields": {"revision": 1699, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2381, "fields": {"revision": 1700, "object_id": "0a9a6379-532c-43ad-8c10-b71b53da89b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0a9a6379-532c-43ad-8c10-b71b53da89b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.459Z\", \"registration\": \"371b1542-16fe-48ad-a275-9847c479b312\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FORD R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-31\", \"application_outcome_notification_date\": \"2006-07-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard (Dick) Ford - Pump Installer : 38000-25/PUMP FORD R"}}, {"model": "reversion.version", "pk": 2382, "fields": {"revision": 1700, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2383, "fields": {"revision": 1700, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2384, "fields": {"revision": 1700, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2385, "fields": {"revision": 1701, "object_id": "0b0f89e1-0360-4533-ab07-b064eac5e8f6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0b0f89e1-0360-4533-ab07-b064eac5e8f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.468Z\", \"registration\": \"0e6029cf-f54c-429b-9086-494743ebc08d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROBI P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Robinson - Pump Installer : 38000-25/PUMP ROBI P"}}, {"model": "reversion.version", "pk": 2386, "fields": {"revision": 1701, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2387, "fields": {"revision": 1701, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2388, "fields": {"revision": 1701, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2389, "fields": {"revision": 1702, "object_id": "0b10731f-78e9-4bc8-9314-397bb87a78f2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0b10731f-78e9-4bc8-9314-397bb87a78f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.477Z\", \"registration\": \"f6b4ac19-8bc5-4d6a-8719-eb5e9b645a73\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HORB G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Horbay - Well Driller : 38000-25/DRI HORB G"}}, {"model": "reversion.version", "pk": 2390, "fields": {"revision": 1702, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2391, "fields": {"revision": 1702, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2392, "fields": {"revision": 1702, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2393, "fields": {"revision": 1703, "object_id": "0b72d0f0-5c46-4f80-8084-1c5d90f99ccb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0b72d0f0-5c46-4f80-8084-1c5d90f99ccb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.485Z\", \"registration\": \"f745df85-cd68-4a54-b315-c13df5fa4b27\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KELL D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-02\", \"application_outcome_notification_date\": \"2006-06-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dylan Kelly - Well Driller : 38000-25/DRI KELL D"}}, {"model": "reversion.version", "pk": 2394, "fields": {"revision": 1703, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2395, "fields": {"revision": 1703, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2396, "fields": {"revision": 1703, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2397, "fields": {"revision": 1704, "object_id": "0bb92060-9d5b-4bab-96d8-a5eebd2a3d9f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0bb92060-9d5b-4bab-96d8-a5eebd2a3d9f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.492Z\", \"registration\": \"7253bbec-264b-494e-835b-445ec36f08f7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROBI D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-01-25\", \"application_outcome_notification_date\": \"2012-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Robinson - Pump Installer : 38000-25/PUMP ROBI D"}}, {"model": "reversion.version", "pk": 2398, "fields": {"revision": 1704, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2399, "fields": {"revision": 1704, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2400, "fields": {"revision": 1704, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2401, "fields": {"revision": 1705, "object_id": "0c1366e7-5961-41d6-819b-cd3de026cd08", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0c1366e7-5961-41d6-819b-cd3de026cd08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.499Z\", \"registration\": \"d159559e-846b-4c10-9a7f-e7c94ae751d3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FRAN R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Franks - Well Driller : 38000-25/DRI FRAN R"}}, {"model": "reversion.version", "pk": 2402, "fields": {"revision": 1705, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2403, "fields": {"revision": 1705, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2404, "fields": {"revision": 1705, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2405, "fields": {"revision": 1706, "object_id": "0c807e73-874b-4ce7-b0d4-50d0302e8246", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0c807e73-874b-4ce7-b0d4-50d0302e8246\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.506Z\", \"registration\": \"caa5f26f-8934-4e88-bea0-a85003f9cf03\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FAAS R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Faasse - Well Driller : 38000-25/DRI FAAS R"}}, {"model": "reversion.version", "pk": 2406, "fields": {"revision": 1706, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2407, "fields": {"revision": 1706, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2408, "fields": {"revision": 1706, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2409, "fields": {"revision": 1707, "object_id": "0cb61713-40d6-4a3c-a2b9-ad8298966375", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0cb61713-40d6-4a3c-a2b9-ad8298966375\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.513Z\", \"registration\": \"4e7d924f-b17c-461f-8a1e-e73028595984\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HUNG G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Hungle - Pump Installer : 38000-25/PUMP HUNG G"}}, {"model": "reversion.version", "pk": 2410, "fields": {"revision": 1707, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2411, "fields": {"revision": 1707, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2412, "fields": {"revision": 1707, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2413, "fields": {"revision": 1708, "object_id": "0d0bb909-92e7-4ba0-8461-6566803668f8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0d0bb909-92e7-4ba0-8461-6566803668f8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.520Z\", \"registration\": \"f44e6ed8-d505-453b-b37a-c92e91ac3501\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI UNRA H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Hank Unrau - Well Driller : 38000-25/DRI UNRA H"}}, {"model": "reversion.version", "pk": 2414, "fields": {"revision": 1708, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2415, "fields": {"revision": 1708, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2416, "fields": {"revision": 1708, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2417, "fields": {"revision": 1709, "object_id": "0d0f339d-14f7-4520-93c8-cb8d26c88cb3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0d0f339d-14f7-4520-93c8-cb8d26c88cb3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.526Z\", \"registration\": \"797d56c3-e0d7-4799-8fa6-086c5c1a750f\", \"subactivity\": \"GEOXCHG\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Vandal - Well Driller : None"}}, {"model": "reversion.version", "pk": 2418, "fields": {"revision": 1709, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2419, "fields": {"revision": 1709, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2420, "fields": {"revision": 1709, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2421, "fields": {"revision": 1710, "object_id": "0d1d6754-8355-4d6d-896a-ae4a7e7bdaef", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0d1d6754-8355-4d6d-896a-ae4a7e7bdaef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.532Z\", \"registration\": \"bba47bec-2d89-4e06-9796-9cef587e48aa\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PARK R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0012-WW-98\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-19\", \"application_outcome_notification_date\": \"2005-05-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Parker - Well Driller : 38000-25/DRI PARK R"}}, {"model": "reversion.version", "pk": 2422, "fields": {"revision": 1710, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2423, "fields": {"revision": 1710, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2424, "fields": {"revision": 1710, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2425, "fields": {"revision": 1711, "object_id": "0d7e3225-3c8c-4914-bf93-023213f54da1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0d7e3225-3c8c-4914-bf93-023213f54da1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.538Z\", \"registration\": \"63d33221-578a-447d-84c1-28fa8aaf2c0f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WASS D\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wasstrom - Well Driller : 38000-25/DRI WASS D"}}, {"model": "reversion.version", "pk": 2426, "fields": {"revision": 1711, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2427, "fields": {"revision": 1711, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2428, "fields": {"revision": 1711, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2429, "fields": {"revision": 1712, "object_id": "0dd7fbaa-340f-46ba-8da2-8fa536d4de6a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0dd7fbaa-340f-46ba-8da2-8fa536d4de6a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.544Z\", \"registration\": \"9abd3191-4796-44b4-8b59-799a1ab2ef46\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI YOUN J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/1033134-152877A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-11-26\", \"application_outcome_notification_date\": \"2014-11-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Young - Well Driller : 38000-25/DRI YOUN J"}}, {"model": "reversion.version", "pk": 2430, "fields": {"revision": 1712, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2431, "fields": {"revision": 1712, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2432, "fields": {"revision": 1712, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2433, "fields": {"revision": 1713, "object_id": "0de3fb71-9fa6-4c0d-ae7e-6dd91ef8b65d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0de3fb71-9fa6-4c0d-ae7e-6dd91ef8b65d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.552Z\", \"registration\": \"2c0ea940-8bba-4ef0-a4d5-44dcc4b749b0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP EVEN D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-17\", \"application_outcome_notification_date\": \"2004-12-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Evenson - Pump Installer : 38000-25/PUMP EVEN D"}}, {"model": "reversion.version", "pk": 2434, "fields": {"revision": 1713, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2435, "fields": {"revision": 1713, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2436, "fields": {"revision": 1713, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2437, "fields": {"revision": 1714, "object_id": "0df17714-d057-4b7f-a9fc-a396457d5fdb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0df17714-d057-4b7f-a9fc-a396457d5fdb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.561Z\", \"registration\": \"7ffa67a5-e1eb-4af9-aede-e2aefa839e8d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MITC M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark Mitchell - Pump Installer : 38000-25/PUMP MITC M"}}, {"model": "reversion.version", "pk": 2438, "fields": {"revision": 1714, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2439, "fields": {"revision": 1714, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2440, "fields": {"revision": 1714, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2441, "fields": {"revision": 1715, "object_id": "0dff265e-76ef-4042-913d-0eec25d93912", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0dff265e-76ef-4042-913d-0eec25d93912\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.569Z\", \"registration\": \"bee54849-1bd1-4fc4-aaf5-9f8d1db4b0be\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KELL P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Pat Kelly - Well Driller : 38000-25/DRI KELL P"}}, {"model": "reversion.version", "pk": 2442, "fields": {"revision": 1715, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2443, "fields": {"revision": 1715, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2444, "fields": {"revision": 1715, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2445, "fields": {"revision": 1716, "object_id": "0e0e0284-f558-4f93-80d2-82a216728f9c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0e0e0284-f558-4f93-80d2-82a216728f9c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.576Z\", \"registration\": \"3f047bfe-2d0a-4c81-8e60-88d5b3a6d52d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHI K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/696889-40628A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kris Schindel - Well Driller : 38000-25/DRI SCHI K"}}, {"model": "reversion.version", "pk": 2446, "fields": {"revision": 1716, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2447, "fields": {"revision": 1716, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2448, "fields": {"revision": 1716, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2449, "fields": {"revision": 1717, "object_id": "0e154713-701a-4d1b-9653-ec0c3b7bc3e3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0e154713-701a-4d1b-9653-ec0c3b7bc3e3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.583Z\", \"registration\": \"72eed8d9-65b7-4493-9b6d-42a29b5c9e66\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SLAD D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0017-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Slade - Well Driller : 38000-25/DRI SLAD D"}}, {"model": "reversion.version", "pk": 2450, "fields": {"revision": 1717, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2451, "fields": {"revision": 1717, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2452, "fields": {"revision": 1717, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2453, "fields": {"revision": 1718, "object_id": "0e70c298-0797-4e5b-bf1c-b47d87a6b74f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0e70c298-0797-4e5b-bf1c-b47d87a6b74f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.592Z\", \"registration\": \"6c50bdf6-ae1a-40b5-85e2-9d022fbc54fa\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PAUL B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-179\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-08\", \"application_outcome_notification_date\": \"2010-09-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brandon Paulson - Well Driller : 38000-25/DRI PAUL B"}}, {"model": "reversion.version", "pk": 2454, "fields": {"revision": 1718, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2455, "fields": {"revision": 1718, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2456, "fields": {"revision": 1718, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2457, "fields": {"revision": 1719, "object_id": "0e73bbce-fccd-436c-a308-c8282b8755d7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0e73bbce-fccd-436c-a308-c8282b8755d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.601Z\", \"registration\": \"db18c844-4f66-4144-923c-6461f18bc56c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MACE L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-07-11\", \"application_outcome_notification_date\": \"2005-07-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lucas MacEwan - Well Driller : 38000-25/DRI MACE L"}}, {"model": "reversion.version", "pk": 2458, "fields": {"revision": 1719, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2459, "fields": {"revision": 1719, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2460, "fields": {"revision": 1719, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2461, "fields": {"revision": 1720, "object_id": "0e7ec476-e5e4-42ba-8cf9-9f157f630221", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0e7ec476-e5e4-42ba-8cf9-9f157f630221\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.610Z\", \"registration\": \"6d3ffe0c-60ea-42ef-8bab-82c822f3f8d6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI THOM A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andrew Thompson - Well Driller : 38000-25/DRI THOM A"}}, {"model": "reversion.version", "pk": 2462, "fields": {"revision": 1720, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2463, "fields": {"revision": 1720, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2464, "fields": {"revision": 1720, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2465, "fields": {"revision": 1721, "object_id": "0e90492a-eb2c-4858-af2c-58cc32b9c94d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0e90492a-eb2c-4858-af2c-58cc32b9c94d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.620Z\", \"registration\": \"63d33221-578a-447d-84c1-28fa8aaf2c0f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WASS D\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016. Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wasstrom - Well Driller : 38000-25/DRI WASS D"}}, {"model": "reversion.version", "pk": 2466, "fields": {"revision": 1721, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2467, "fields": {"revision": 1721, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2468, "fields": {"revision": 1721, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2469, "fields": {"revision": 1722, "object_id": "0ea92de3-11ce-4f41-a92a-251152ddef97", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0ea92de3-11ce-4f41-a92a-251152ddef97\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.629Z\", \"registration\": \"cfe436e2-c3c0-4d84-a6bf-1e9653d39b73\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LAMO M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-20\", \"application_outcome_notification_date\": \"2005-06-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Lamont - Pump Installer : 38000-25/PUMP LAMO M"}}, {"model": "reversion.version", "pk": 2470, "fields": {"revision": 1722, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2471, "fields": {"revision": 1722, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2472, "fields": {"revision": 1722, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2473, "fields": {"revision": 1723, "object_id": "0ef2dd17-d18c-412d-9ae8-11eadfebd348", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0ef2dd17-d18c-412d-9ae8-11eadfebd348\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.638Z\", \"registration\": \"50f6b009-bf1d-4cee-afa6-b4e1d918ce27\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI OUSS H\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"Well Technician Class 1 T-1453\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-14\", \"application_outcome_notification_date\": \"2011-11-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Oussoren - Well Driller : 38000-25/DRI OUSS H"}}, {"model": "reversion.version", "pk": 2474, "fields": {"revision": 1723, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2475, "fields": {"revision": 1723, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2476, "fields": {"revision": 1723, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2477, "fields": {"revision": 1724, "object_id": "0f38626b-bb26-4537-9971-cbc6935b5811", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0f38626b-bb26-4537-9971-cbc6935b5811\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.647Z\", \"registration\": \"847d53ab-c540-4d02-96fc-f6a584e90126\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DOMI K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-09-19\", \"application_outcome_notification_date\": \"2007-09-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kirk Domino - Pump Installer : 38000-25/PUMP DOMI K"}}, {"model": "reversion.version", "pk": 2478, "fields": {"revision": 1724, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2479, "fields": {"revision": 1724, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2480, "fields": {"revision": 1724, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2481, "fields": {"revision": 1725, "object_id": "0f8c5dc7-758d-4ccc-a916-35bb0dce1ec1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0f8c5dc7-758d-4ccc-a916-35bb0dce1ec1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.657Z\", \"registration\": \"382e5ef8-0fb3-4e6b-af88-d82d93e408ad\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KLAS A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-11\", \"application_outcome_notification_date\": \"2006-09-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Art Klassen - Pump Installer : 38000-25/PUMP KLAS A"}}, {"model": "reversion.version", "pk": 2482, "fields": {"revision": 1725, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2483, "fields": {"revision": 1725, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2484, "fields": {"revision": 1725, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2485, "fields": {"revision": 1726, "object_id": "0f8c60d0-0771-4d6c-a719-ad1dfa5387ae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0f8c60d0-0771-4d6c-a719-ad1dfa5387ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.666Z\", \"registration\": \"4889d754-b015-4cd5-afeb-f2db0dfc849d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RIEH L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Riehl - Pump Installer : 38000-25/PUMP RIEH L"}}, {"model": "reversion.version", "pk": 2486, "fields": {"revision": 1726, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2487, "fields": {"revision": 1726, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2488, "fields": {"revision": 1726, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2489, "fields": {"revision": 1727, "object_id": "0fbf5b5f-707e-4229-990f-3809a4982934", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"0fbf5b5f-707e-4229-990f-3809a4982934\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.676Z\", \"registration\": \"90f29f9e-2baa-4650-abb0-999bcf85134e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GREE M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-11-28\", \"application_outcome_notification_date\": \"2006-11-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Marshall Greenwell - Pump Installer : 38000-25/PUMP GREE M"}}, {"model": "reversion.version", "pk": 2490, "fields": {"revision": 1727, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2491, "fields": {"revision": 1727, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2492, "fields": {"revision": 1727, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2493, "fields": {"revision": 1728, "object_id": "102f4403-92a5-447d-ab81-fbccc8ee5c7d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"102f4403-92a5-447d-ab81-fbccc8ee5c7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.685Z\", \"registration\": \"1320058c-23d8-4dc0-a4af-3d456dfa89f7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BOUL G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-27\", \"application_outcome_notification_date\": \"2005-09-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Boulton - Pump Installer : 38000-25/PUMP BOUL G"}}, {"model": "reversion.version", "pk": 2494, "fields": {"revision": 1728, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2495, "fields": {"revision": 1728, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2496, "fields": {"revision": 1728, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2497, "fields": {"revision": 1729, "object_id": "104e6f35-ec8e-442d-8a75-150fffffe6ed", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"104e6f35-ec8e-442d-8a75-150fffffe6ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.694Z\", \"registration\": \"48fc9477-1bec-44d4-aef5-9cc11d5ec336\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP EVAN D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-11-01\", \"application_outcome_notification_date\": \"2010-11-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dan Evans - Pump Installer : 38000-25/PUMP EVAN D"}}, {"model": "reversion.version", "pk": 2498, "fields": {"revision": 1729, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2499, "fields": {"revision": 1729, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2500, "fields": {"revision": 1729, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2501, "fields": {"revision": 1730, "object_id": "105a999e-67c2-4d03-88bf-a7d8e746577c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"105a999e-67c2-4d03-88bf-a7d8e746577c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.703Z\", \"registration\": \"da64cbb6-68c7-406f-a79a-fbac8c0f0091\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ABER R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Abercrombie - Well Driller : 38000-25/DRI ABER R"}}, {"model": "reversion.version", "pk": 2502, "fields": {"revision": 1730, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2503, "fields": {"revision": 1730, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2504, "fields": {"revision": 1730, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2505, "fields": {"revision": 1731, "object_id": "109fc63a-02b6-4572-807d-165f257b63f1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"109fc63a-02b6-4572-807d-165f257b63f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.712Z\", \"registration\": \"a1412182-4373-4562-83ff-f7d0cceb1050\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI DOBS C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cory Dobson - Well Driller : 38000-25/DRI DOBS C"}}, {"model": "reversion.version", "pk": 2506, "fields": {"revision": 1731, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2507, "fields": {"revision": 1731, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2508, "fields": {"revision": 1731, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2509, "fields": {"revision": 1732, "object_id": "109ffc6b-64e2-47ee-ad8b-eca9de1c3208", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"109ffc6b-64e2-47ee-ad8b-eca9de1c3208\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.721Z\", \"registration\": \"5e3585a8-3e90-47c8-8703-dcfec4cbd3d9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCMU D\", \"proof_of_age\": null, \"registrar_notes\": \"Deceased - Remove. Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Don McMullen - Pump Installer : 38000-25/PUMP MCMU D"}}, {"model": "reversion.version", "pk": 2510, "fields": {"revision": 1732, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2511, "fields": {"revision": 1732, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2512, "fields": {"revision": 1732, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2513, "fields": {"revision": 1733, "object_id": "10c9e34e-fa7d-4f39-aff1-f29de133d8d7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"10c9e34e-fa7d-4f39-aff1-f29de133d8d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.731Z\", \"registration\": \"ac90e427-efc2-47c0-8231-d5b294dfc102\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SHAR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Sharp - Well Driller : 38000-25/DRI SHAR J"}}, {"model": "reversion.version", "pk": 2514, "fields": {"revision": 1733, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2515, "fields": {"revision": 1733, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2516, "fields": {"revision": 1733, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2517, "fields": {"revision": 1734, "object_id": "11623109-8eae-4a0c-aa63-08c7be749bd1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"11623109-8eae-4a0c-aa63-08c7be749bd1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.432Z\", \"registration\": \"338c46da-7c4e-4297-a8c2-58f028091729\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SLAD C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0019-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Calvin Slade - Well Driller : 38000-25/DRI SLAD C"}}, {"model": "reversion.version", "pk": 2518, "fields": {"revision": 1734, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2519, "fields": {"revision": 1734, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2520, "fields": {"revision": 1734, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2521, "fields": {"revision": 1735, "object_id": "11bda0a9-bc0f-444b-bfde-868a5a3bba34", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"11bda0a9-bc0f-444b-bfde-868a5a3bba34\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.740Z\", \"registration\": \"1fbd1f43-159d-45a1-a925-32a270f66212\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP THOM G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-29\", \"application_outcome_notification_date\": \"2005-10-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gerald Thomson - Pump Installer : 38000-25/PUMP THOM G"}}, {"model": "reversion.version", "pk": 2522, "fields": {"revision": 1735, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2523, "fields": {"revision": 1735, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2524, "fields": {"revision": 1735, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2525, "fields": {"revision": 1736, "object_id": "1242772c-3c38-4df6-ae37-db69879a8f7e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1242772c-3c38-4df6-ae37-db69879a8f7e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.749Z\", \"registration\": \"7b4baf50-1e99-49b4-a8c7-f23a8ca069fc\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI RIEH C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clayton Riehl - Well Driller : 38000-25/DRI RIEH C"}}, {"model": "reversion.version", "pk": 2526, "fields": {"revision": 1736, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2527, "fields": {"revision": 1736, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2528, "fields": {"revision": 1736, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2529, "fields": {"revision": 1737, "object_id": "1248fc5a-1f84-4b81-9f56-ea9ed914c731", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1248fc5a-1f84-4b81-9f56-ea9ed914c731\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.758Z\", \"registration\": \"c1d325ca-20b9-443b-a040-085bd066a0ec\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCCA A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andy McCabe - Pump Installer : 38000-25/PUMP MCCA A"}}, {"model": "reversion.version", "pk": 2530, "fields": {"revision": 1737, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2531, "fields": {"revision": 1737, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2532, "fields": {"revision": 1737, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2533, "fields": {"revision": 1738, "object_id": "1280378c-8a97-4f1f-a5cc-053036611da0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1280378c-8a97-4f1f-a5cc-053036611da0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.767Z\", \"registration\": \"faa2bce8-6360-43f4-99aa-87c53128e907\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOCH D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-06\", \"application_outcome_notification_date\": \"2005-04-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Duane Bochek - Well Driller : 38000-25/DRI BOCH D"}}, {"model": "reversion.version", "pk": 2534, "fields": {"revision": 1738, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2535, "fields": {"revision": 1738, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2536, "fields": {"revision": 1738, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2537, "fields": {"revision": 1739, "object_id": "128f9ec4-45a8-4784-99b6-bf397a90e8c8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"128f9ec4-45a8-4784-99b6-bf397a90e8c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.777Z\", \"registration\": \"c1b2a982-0047-4d0e-9986-cf955ebc929e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HORS J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-01-29\", \"application_outcome_notification_date\": \"2008-01-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Justin Horsman - Pump Installer : 38000-25/PUMP HORS J"}}, {"model": "reversion.version", "pk": 2538, "fields": {"revision": 1739, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2539, "fields": {"revision": 1739, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2540, "fields": {"revision": 1739, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2541, "fields": {"revision": 1740, "object_id": "12b829de-b559-49aa-b0bd-673e622cb318", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"12b829de-b559-49aa-b0bd-673e622cb318\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.787Z\", \"registration\": \"399479d7-e267-45e2-893d-feab880ae047\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KASH D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-15\", \"application_outcome_notification_date\": \"2004-12-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darin Kashmark - Pump Installer : 38000-25/PUMP KASH D"}}, {"model": "reversion.version", "pk": 2542, "fields": {"revision": 1740, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2543, "fields": {"revision": 1740, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2544, "fields": {"revision": 1740, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2545, "fields": {"revision": 1741, "object_id": "12b86568-24da-43ed-b6dc-3f58faaefa91", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"12b86568-24da-43ed-b6dc-3f58faaefa91\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.795Z\", \"registration\": \"f2b723d7-b5b4-402d-829a-829564b49060\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MAYN P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Patrick Mayne - Well Driller : 38000-25/DRI MAYN P"}}, {"model": "reversion.version", "pk": 2546, "fields": {"revision": 1741, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2547, "fields": {"revision": 1741, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2548, "fields": {"revision": 1741, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2549, "fields": {"revision": 1742, "object_id": "13c185a1-d1c3-494b-8d4e-21b8e2731be0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"13c185a1-d1c3-494b-8d4e-21b8e2731be0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.803Z\", \"registration\": \"e7e7164e-c854-45b3-8074-94a4bc5076b9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JEST R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ray Jestico - Pump Installer : 38000-25/PUMP JEST R"}}, {"model": "reversion.version", "pk": 2550, "fields": {"revision": 1742, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2551, "fields": {"revision": 1742, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2552, "fields": {"revision": 1742, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2553, "fields": {"revision": 1743, "object_id": "140e3520-24b8-41ac-915b-a73bba2df7d1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"140e3520-24b8-41ac-915b-a73bba2df7d1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.810Z\", \"registration\": \"bd03cde7-c55c-4984-a8ff-e4af358b6292\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WIEB C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00020-WW-00\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cameron Wiebe - Well Driller : 38000-25/DRI WIEB C"}}, {"model": "reversion.version", "pk": 2554, "fields": {"revision": 1743, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2555, "fields": {"revision": 1743, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2556, "fields": {"revision": 1743, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2557, "fields": {"revision": 1744, "object_id": "14260291-9729-4c8f-8590-2cb8ec027ba9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"14260291-9729-4c8f-8590-2cb8ec027ba9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.818Z\", \"registration\": \"7a153dff-9629-4a79-9fd3-0aa32f7066e4\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JACQ A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-12-12\", \"application_outcome_notification_date\": \"2012-12-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alain Jacques - Pump Installer : 38000-25/PUMP JACQ A"}}, {"model": "reversion.version", "pk": 2558, "fields": {"revision": 1744, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2559, "fields": {"revision": 1744, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2560, "fields": {"revision": 1744, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2561, "fields": {"revision": 1745, "object_id": "1451f5b2-382b-4b03-9593-bc17e5f31bf1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1451f5b2-382b-4b03-9593-bc17e5f31bf1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.827Z\", \"registration\": \"faa2bce8-6360-43f4-99aa-87c53128e907\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOCH D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-06\", \"application_outcome_notification_date\": \"2005-04-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Duane Bochek - Well Driller : 38000-25/DRI BOCH D"}}, {"model": "reversion.version", "pk": 2562, "fields": {"revision": 1745, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2563, "fields": {"revision": 1745, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2564, "fields": {"revision": 1745, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2565, "fields": {"revision": 1746, "object_id": "14a85622-a2ca-4523-b35a-e3db30b237f7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"14a85622-a2ca-4523-b35a-e3db30b237f7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.835Z\", \"registration\": \"3bad844e-4453-4db2-a677-d35ab667a4c0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCDO S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stuart McDonald - Pump Installer : 38000-25/PUMP MCDO S"}}, {"model": "reversion.version", "pk": 2566, "fields": {"revision": 1746, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2567, "fields": {"revision": 1746, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2568, "fields": {"revision": 1746, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2569, "fields": {"revision": 1747, "object_id": "14aa51dd-3656-4da9-b0f7-a947c8119aca", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"14aa51dd-3656-4da9-b0f7-a947c8119aca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.842Z\", \"registration\": \"5a34a051-05d0-4762-8ef7-943e49df6596\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FAAS D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert D. Faasse - Well Driller : 38000-25/DRI FAAS D"}}, {"model": "reversion.version", "pk": 2570, "fields": {"revision": 1747, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2571, "fields": {"revision": 1747, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2572, "fields": {"revision": 1747, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2573, "fields": {"revision": 1748, "object_id": "14e7ec52-77c8-41e8-bd72-51895231cc59", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"14e7ec52-77c8-41e8-bd72-51895231cc59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.850Z\", \"registration\": \"71d134dd-fb8d-4258-bc6c-4979283a3f1d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ROMS D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Romses - Well Driller : 38000-25/DRI ROMS D"}}, {"model": "reversion.version", "pk": 2574, "fields": {"revision": 1748, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2575, "fields": {"revision": 1748, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2576, "fields": {"revision": 1748, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2577, "fields": {"revision": 1749, "object_id": "152bd73d-ef72-458e-94a8-b9ea902c64e3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"152bd73d-ef72-458e-94a8-b9ea902c64e3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.859Z\", \"registration\": \"dc400ac2-442c-4ce4-b9c5-9323bc8815a1\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCKE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-161\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-08-18\", \"application_outcome_notification_date\": \"2008-08-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken McKellar - Well Driller : 38000-25/DRI MCKE K"}}, {"model": "reversion.version", "pk": 2578, "fields": {"revision": 1749, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2579, "fields": {"revision": 1749, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2580, "fields": {"revision": 1749, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2581, "fields": {"revision": 1750, "object_id": "15b1a7cb-027d-4df0-a1f7-573b2e819f57", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"15b1a7cb-027d-4df0-a1f7-573b2e819f57\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.868Z\", \"registration\": \"383bf6a0-a202-4dfa-a502-cb7c778d6758\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STLA S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-10-06\", \"application_outcome_notification_date\": \"2011-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel St. Laurent - Pump Installer : 38000-25/PUMP STLA S"}}, {"model": "reversion.version", "pk": 2582, "fields": {"revision": 1750, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2583, "fields": {"revision": 1750, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2584, "fields": {"revision": 1750, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2585, "fields": {"revision": 1751, "object_id": "15d9d78e-c260-4263-a73a-d20245fdc580", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"15d9d78e-c260-4263-a73a-d20245fdc580\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.878Z\", \"registration\": \"01893320-4045-4532-bf8d-615ee739e5e5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CHAM D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Chamberlayne - Well Driller : 38000-25/DRI CHAM D"}}, {"model": "reversion.version", "pk": 2586, "fields": {"revision": 1751, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2587, "fields": {"revision": 1751, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2588, "fields": {"revision": 1751, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2589, "fields": {"revision": 1752, "object_id": "15e49e2a-c6a0-412e-898d-1fefe0f86cd8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"15e49e2a-c6a0-412e-898d-1fefe0f86cd8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.886Z\", \"registration\": \"59302955-228a-4c6a-9144-93b7e47c8bf3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI DIGG R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Diggle - Well Driller : 38000-25/DRI DIGG R"}}, {"model": "reversion.version", "pk": 2590, "fields": {"revision": 1752, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2591, "fields": {"revision": 1752, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2592, "fields": {"revision": 1752, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2593, "fields": {"revision": 1753, "object_id": "15e5e8dc-e3d1-4773-a335-5bf6021bd53c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"15e5e8dc-e3d1-4773-a335-5bf6021bd53c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.895Z\", \"registration\": \"f77add92-6aba-4547-b551-cf73d59c497f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CARO DO\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Denis Caron - Well Driller : 38000-25/DRI CARO DO"}}, {"model": "reversion.version", "pk": 2594, "fields": {"revision": 1753, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2595, "fields": {"revision": 1753, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2596, "fields": {"revision": 1753, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2597, "fields": {"revision": 1754, "object_id": "15f6eb21-fcd8-4c2f-baa3-8ef079dc7a1b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"15f6eb21-fcd8-4c2f-baa3-8ef079dc7a1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.905Z\", \"registration\": \"8035aad5-198c-49ff-a863-6f50654aaf57\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FITZ W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Fitzgerald - Well Driller : 38000-25/DRI FITZ W"}}, {"model": "reversion.version", "pk": 2598, "fields": {"revision": 1754, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2599, "fields": {"revision": 1754, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2600, "fields": {"revision": 1754, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2601, "fields": {"revision": 1755, "object_id": "15faacc4-b2a4-4cf5-adea-d1e2463d235d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"15faacc4-b2a4-4cf5-adea-d1e2463d235d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.913Z\", \"registration\": \"9aae7e49-155d-48b3-ac48-890fdfcfe12e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI OOST A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-158\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-15\", \"application_outcome_notification_date\": \"2008-10-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Oostenbrink - Well Driller : 38000-25/DRI OOST A"}}, {"model": "reversion.version", "pk": 2602, "fields": {"revision": 1755, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2603, "fields": {"revision": 1755, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2604, "fields": {"revision": 1755, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2605, "fields": {"revision": 1756, "object_id": "1601da7f-8cf8-4f84-bf3b-f7781234966f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1601da7f-8cf8-4f84-bf3b-f7781234966f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.923Z\", \"registration\": \"c5739f53-465f-4601-b7b1-d2040efa9ee3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STOO R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rusty Stooksberry - Well Driller : 38000-25/DRI STOO R"}}, {"model": "reversion.version", "pk": 2606, "fields": {"revision": 1756, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2607, "fields": {"revision": 1756, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2608, "fields": {"revision": 1756, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2609, "fields": {"revision": 1757, "object_id": "163a536f-7b67-48b0-9996-4a8801675660", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"163a536f-7b67-48b0-9996-4a8801675660\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.934Z\", \"registration\": \"bd03cde7-c55c-4984-a8ff-e4af358b6292\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIEB C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00020-WW-00\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cameron Wiebe - Well Driller : 38000-25/DRI WIEB C"}}, {"model": "reversion.version", "pk": 2610, "fields": {"revision": 1757, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2611, "fields": {"revision": 1757, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2612, "fields": {"revision": 1757, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2613, "fields": {"revision": 1758, "object_id": "16462715-e19c-4002-9286-636bb4dbab3e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"16462715-e19c-4002-9286-636bb4dbab3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.943Z\", \"registration\": \"238196c4-2b5d-4910-aa69-021454bcee5c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WAYN M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/00109-AC2616\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-04-27\", \"application_outcome_notification_date\": \"2011-04-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Morrill - Well Driller : 38000-25/DRI WAYN M"}}, {"model": "reversion.version", "pk": 2614, "fields": {"revision": 1758, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2615, "fields": {"revision": 1758, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2616, "fields": {"revision": 1758, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2617, "fields": {"revision": 1759, "object_id": "1681faca-0bba-40bd-bd42-144d80f14661", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1681faca-0bba-40bd-bd42-144d80f14661\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.952Z\", \"registration\": \"a328f564-2398-4f6e-8df1-e8d3a81f6893\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIPF E\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"035-0/1101775\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-09\", \"application_outcome_notification_date\": \"2017-06-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ernest Wipf - Well Driller : 38000-25/DRI WIPF E"}}, {"model": "reversion.version", "pk": 2618, "fields": {"revision": 1759, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2619, "fields": {"revision": 1759, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2620, "fields": {"revision": 1759, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 2621, "fields": {"revision": 1760, "object_id": "169c7954-20ab-420a-be35-bc61d6b57d8a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"169c7954-20ab-420a-be35-bc61d6b57d8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.961Z\", \"registration\": \"c533d5ac-9db1-428a-9b8d-03772f890049\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ENGL G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory English - Well Driller : 38000-25/DRI ENGL G"}}, {"model": "reversion.version", "pk": 2622, "fields": {"revision": 1760, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2623, "fields": {"revision": 1760, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2624, "fields": {"revision": 1760, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2625, "fields": {"revision": 1761, "object_id": "16f54514-f9e6-47c3-af07-6a90379e1a61", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"16f54514-f9e6-47c3-af07-6a90379e1a61\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.970Z\", \"registration\": \"563ac9c6-14ef-43cc-a4dc-c05a4a57f3d2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KASH R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-01\", \"application_outcome_notification_date\": \"2005-03-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randall Kashmark - Pump Installer : 38000-25/PUMP KASH R"}}, {"model": "reversion.version", "pk": 2626, "fields": {"revision": 1761, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2627, "fields": {"revision": 1761, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2628, "fields": {"revision": 1761, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2629, "fields": {"revision": 1762, "object_id": "171ab3df-5c87-4a57-a6f7-bf7d2d502446", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"171ab3df-5c87-4a57-a6f7-bf7d2d502446\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.979Z\", \"registration\": \"e1c4e0f4-cb55-4d9f-b18f-63e3c5efd747\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI OPPE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-150\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-05-21\", \"application_outcome_notification_date\": \"2008-05-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Opper - Well Driller : 38000-25/DRI OPPE J"}}, {"model": "reversion.version", "pk": 2630, "fields": {"revision": 1762, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2631, "fields": {"revision": 1762, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2632, "fields": {"revision": 1762, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2633, "fields": {"revision": 1763, "object_id": "17c4cbb7-fc67-46b1-93a3-a69731816403", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"17c4cbb7-fc67-46b1-93a3-a69731816403\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.988Z\", \"registration\": \"63d33221-578a-447d-84c1-28fa8aaf2c0f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WASS D\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wasstrom - Well Driller : 38000-25/DRI WASS D"}}, {"model": "reversion.version", "pk": 2634, "fields": {"revision": 1763, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2635, "fields": {"revision": 1763, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2636, "fields": {"revision": 1763, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2637, "fields": {"revision": 1764, "object_id": "17d3c82b-c2c5-48ea-83c7-535721541a8d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"17d3c82b-c2c5-48ea-83c7-535721541a8d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:56.997Z\", \"registration\": \"0ce1c89f-33e4-4f1d-bf22-0d01943936d3\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SHAW P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Shaw - Pump Installer : 38000-25/PUMP SHAW P"}}, {"model": "reversion.version", "pk": 2638, "fields": {"revision": 1764, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2639, "fields": {"revision": 1764, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2640, "fields": {"revision": 1764, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2641, "fields": {"revision": 1765, "object_id": "18ac316d-eef9-4967-aac4-fbbdf98235e6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"18ac316d-eef9-4967-aac4-fbbdf98235e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.007Z\", \"registration\": \"38836ef8-f159-4422-a4c1-64b6c75efcdb\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TOML D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek Tomlinson - Pump Installer : 38000-25/PUMP TOML D"}}, {"model": "reversion.version", "pk": 2642, "fields": {"revision": 1765, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2643, "fields": {"revision": 1765, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2644, "fields": {"revision": 1765, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2645, "fields": {"revision": 1766, "object_id": "194c5b58-5193-409a-9db3-d409be018f9f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"194c5b58-5193-409a-9db3-d409be018f9f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.016Z\", \"registration\": \"d52b9a21-28b6-4094-b201-ab1e0e9b7a23\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCMA B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brennan McMahon - Well Driller : 38000-25/DRI MCMA B"}}, {"model": "reversion.version", "pk": 2646, "fields": {"revision": 1766, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2647, "fields": {"revision": 1766, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2648, "fields": {"revision": 1766, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2649, "fields": {"revision": 1767, "object_id": "1a2c65c1-5956-45e0-909e-333974f719ac", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1a2c65c1-5956-45e0-909e-333974f719ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.025Z\", \"registration\": \"8b711353-2a66-46b7-ac0d-c804b1fc1e83\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BURR S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00019-WW-99\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Burrows - Well Driller : 38000-25/DRI BURR S"}}, {"model": "reversion.version", "pk": 2650, "fields": {"revision": 1767, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2651, "fields": {"revision": 1767, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2652, "fields": {"revision": 1767, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2653, "fields": {"revision": 1768, "object_id": "1a4e5782-c255-4f61-97c4-9286518be0b5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1a4e5782-c255-4f61-97c4-9286518be0b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.032Z\", \"registration\": \"7371883e-e5d0-4c55-aa15-04c5209b6a19\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CURR C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00002-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-15\", \"application_outcome_notification_date\": \"2016-02-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cass Currie - Well Driller : 38000-25/DRI CURR C"}}, {"model": "reversion.version", "pk": 2654, "fields": {"revision": 1768, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2655, "fields": {"revision": 1768, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2656, "fields": {"revision": 1768, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2657, "fields": {"revision": 1769, "object_id": "1a5ca695-1269-442a-857d-e58f34bcfecd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1a5ca695-1269-442a-857d-e58f34bcfecd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.038Z\", \"registration\": \"cb31aa4e-e560-46e4-8374-cb1b434c1657\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MEWS K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-07\", \"application_outcome_notification_date\": \"2005-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kevin Mews - Well Driller : 38000-25/DRI MEWS K"}}, {"model": "reversion.version", "pk": 2658, "fields": {"revision": 1769, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2659, "fields": {"revision": 1769, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2660, "fields": {"revision": 1769, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2661, "fields": {"revision": 1770, "object_id": "1a9d8e4f-fb57-4f27-9534-694da16ae1fb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1a9d8e4f-fb57-4f27-9534-694da16ae1fb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.046Z\", \"registration\": \"9972cfee-53a2-4306-839f-b9e6949879a6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI YEO G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Yeo - Well Driller : 38000-25/DRI YEO G"}}, {"model": "reversion.version", "pk": 2662, "fields": {"revision": 1770, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2663, "fields": {"revision": 1770, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2664, "fields": {"revision": 1770, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2665, "fields": {"revision": 1771, "object_id": "1b8ccfd9-a0c0-4f6e-a726-be2ed219f8ea", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1b8ccfd9-a0c0-4f6e-a726-be2ed219f8ea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.056Z\", \"registration\": \"79965169-9640-4dd7-8074-24532c92cfa0\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI NEGG P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Neggers - Well Driller : 38000-25/DRI NEGG P"}}, {"model": "reversion.version", "pk": 2666, "fields": {"revision": 1771, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2667, "fields": {"revision": 1771, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2668, "fields": {"revision": 1771, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2669, "fields": {"revision": 1772, "object_id": "1bac0daf-0127-4fcf-8206-9c8ce06d94ed", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1bac0daf-0127-4fcf-8206-9c8ce06d94ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.065Z\", \"registration\": \"1ca87039-c58c-42f7-bc0e-38160ec88831\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI RIEH L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Riehl - Well Driller : 38000-25/DRI RIEH L"}}, {"model": "reversion.version", "pk": 2670, "fields": {"revision": 1772, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2671, "fields": {"revision": 1772, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2672, "fields": {"revision": 1772, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2673, "fields": {"revision": 1773, "object_id": "1bcb42a6-66f1-4e21-9cde-389610903b5c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1bcb42a6-66f1-4e21-9cde-389610903b5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.074Z\", \"registration\": \"619d9d7b-ca38-4465-b9e6-2ae9c967c66c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FYFE T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tom Fyfe - Well Driller : 38000-25/DRI FYFE T"}}, {"model": "reversion.version", "pk": 2674, "fields": {"revision": 1773, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2675, "fields": {"revision": 1773, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2676, "fields": {"revision": 1773, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2677, "fields": {"revision": 1774, "object_id": "1bcd69e5-d2a6-4fd6-9213-f482ee2b9ea1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1bcd69e5-d2a6-4fd6-9213-f482ee2b9ea1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.082Z\", \"registration\": \"663e062c-ae86-4a6e-88c8-635b578cfa24\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI TAYL H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Henry Taylor - Well Driller : 38000-25/DRI TAYL H"}}, {"model": "reversion.version", "pk": 2678, "fields": {"revision": 1774, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2679, "fields": {"revision": 1774, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2680, "fields": {"revision": 1774, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2681, "fields": {"revision": 1775, "object_id": "1c286215-08cc-448d-b194-318ca6026312", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1c286215-08cc-448d-b194-318ca6026312\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.090Z\", \"registration\": \"213d6cac-05b9-45af-b9de-c8c9dd683e36\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI JACK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Jackson - Well Driller : 38000-25/DRI JACK J"}}, {"model": "reversion.version", "pk": 2682, "fields": {"revision": 1775, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2683, "fields": {"revision": 1775, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2684, "fields": {"revision": 1775, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2685, "fields": {"revision": 1776, "object_id": "1c776ff4-fca8-4770-b643-c8d47477cbbf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1c776ff4-fca8-4770-b643-c8d47477cbbf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.097Z\", \"registration\": \"bf9f379c-d809-4b32-9479-aada7c141910\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCCO S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-11-28\", \"application_outcome_notification_date\": \"2006-11-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stuart McCormick - Pump Installer : 38000-25/PUMP MCCO S"}}, {"model": "reversion.version", "pk": 2686, "fields": {"revision": 1776, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2687, "fields": {"revision": 1776, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2688, "fields": {"revision": 1776, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2689, "fields": {"revision": 1777, "object_id": "1c7dc118-65f8-4368-acd2-004e1512b427", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1c7dc118-65f8-4368-acd2-004e1512b427\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.104Z\", \"registration\": \"5795d911-f762-4224-86d3-cc0793147de5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WILL J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jon Williams - Pump Installer : 38000-25/PUMP WILL J"}}, {"model": "reversion.version", "pk": 2690, "fields": {"revision": 1777, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2691, "fields": {"revision": 1777, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2692, "fields": {"revision": 1777, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2693, "fields": {"revision": 1778, "object_id": "1cc5f55d-16a4-4932-907b-af0268d7fc99", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1cc5f55d-16a4-4932-907b-af0268d7fc99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.113Z\", \"registration\": \"0dfe97b7-03a9-4208-b454-7761e97324f7\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PEAR R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/905613-83061A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Riley Pearson - Well Driller : 38000-25/DRI PEAR R"}}, {"model": "reversion.version", "pk": 2694, "fields": {"revision": 1778, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2695, "fields": {"revision": 1778, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2696, "fields": {"revision": 1778, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2697, "fields": {"revision": 1779, "object_id": "1ce9ac15-15a4-4be6-892c-a4d9eab83fae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1ce9ac15-15a4-4be6-892c-a4d9eab83fae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.122Z\", \"registration\": \"c86c05e8-4904-42fb-a020-9ba9e9740b75\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SMIT K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken Smithson - Well Driller : 38000-25/DRI SMIT K"}}, {"model": "reversion.version", "pk": 2698, "fields": {"revision": 1779, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2699, "fields": {"revision": 1779, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2700, "fields": {"revision": 1779, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2701, "fields": {"revision": 1780, "object_id": "1d32f015-b4c1-4824-baea-b921ca93707b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1d32f015-b4c1-4824-baea-b921ca93707b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.131Z\", \"registration\": \"e67007a7-947b-4ddf-95e8-529270065fcb\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PARK M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00003-GN-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-07-28\", \"application_outcome_notification_date\": \"2017-07-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Parkinson - Well Driller : 38000-25/DRI PARK M"}}, {"model": "reversion.version", "pk": 2702, "fields": {"revision": 1780, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2703, "fields": {"revision": 1780, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2704, "fields": {"revision": 1780, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 2705, "fields": {"revision": 1781, "object_id": "1d63bf59-3736-4ac5-a394-caa3db44fa76", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1d63bf59-3736-4ac5-a394-caa3db44fa76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.139Z\", \"registration\": \"7b96c8d0-1a41-4f0b-b1fa-fa7b4ae256f3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BATE D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darryl Bates - Well Driller : 38000-25/DRI BATE D"}}, {"model": "reversion.version", "pk": 2706, "fields": {"revision": 1781, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2707, "fields": {"revision": 1781, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2708, "fields": {"revision": 1781, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2709, "fields": {"revision": 1782, "object_id": "1e45a89a-a30a-4735-86de-e7ea35166988", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1e45a89a-a30a-4735-86de-e7ea35166988\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.147Z\", \"registration\": \"c84644cf-99a1-455e-b574-980c158c9c50\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCGL D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0034-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-30\", \"application_outcome_notification_date\": \"2005-03-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek McGladdery - Well Driller : 38000-25/DRI MCGL D"}}, {"model": "reversion.version", "pk": 2710, "fields": {"revision": 1782, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2711, "fields": {"revision": 1782, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2712, "fields": {"revision": 1782, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2713, "fields": {"revision": 1783, "object_id": "1e9330e2-f1c9-4097-9357-07ee000f1e65", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1e9330e2-f1c9-4097-9357-07ee000f1e65\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.157Z\", \"registration\": \"a83120ee-6e5f-4596-b5ac-51d1a85c8045\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DUNN W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Dunn - Pump Installer : 38000-25/PUMP DUNN W"}}, {"model": "reversion.version", "pk": 2714, "fields": {"revision": 1783, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2715, "fields": {"revision": 1783, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2716, "fields": {"revision": 1783, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2717, "fields": {"revision": 1784, "object_id": "1ea00694-ea3c-4ec3-9de1-7ce49e57918d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1ea00694-ea3c-4ec3-9de1-7ce49e57918d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.166Z\", \"registration\": \"32097004-8f9b-4f62-a6e5-b37ca0494aec\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GILL J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent; 0011-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joel Gillin - Well Driller : 38000-25/DRI GILL J"}}, {"model": "reversion.version", "pk": 2718, "fields": {"revision": 1784, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2719, "fields": {"revision": 1784, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2720, "fields": {"revision": 1784, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2721, "fields": {"revision": 1785, "object_id": "1eea4cd6-8671-4c66-9294-9d340da90364", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1eea4cd6-8671-4c66-9294-9d340da90364\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.176Z\", \"registration\": \"edfcf2a8-f379-4db0-942a-7ef453a88c50\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WANG D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0040-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-26\", \"application_outcome_notification_date\": \"2005-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Wangler - Well Driller : 38000-25/DRI WANG D"}}, {"model": "reversion.version", "pk": 2722, "fields": {"revision": 1785, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2723, "fields": {"revision": 1785, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2724, "fields": {"revision": 1785, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2725, "fields": {"revision": 1786, "object_id": "1efd06e5-e655-4e81-b77e-31d2ed4bbf08", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1efd06e5-e655-4e81-b77e-31d2ed4bbf08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.185Z\", \"registration\": \"f6b4ac19-8bc5-4d6a-8719-eb5e9b645a73\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HORB G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Horbay - Well Driller : 38000-25/DRI HORB G"}}, {"model": "reversion.version", "pk": 2726, "fields": {"revision": 1786, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2727, "fields": {"revision": 1786, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2728, "fields": {"revision": 1786, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2729, "fields": {"revision": 1787, "object_id": "1f8ee6d4-4990-45e3-b1b0-6005dd3193ce", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1f8ee6d4-4990-45e3-b1b0-6005dd3193ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.192Z\", \"registration\": \"e1241ccb-7512-4f1a-ba54-768edd597ccc\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BRIN M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Brindley - Well Driller : 38000-25/DRI BRIN M"}}, {"model": "reversion.version", "pk": 2730, "fields": {"revision": 1787, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2731, "fields": {"revision": 1787, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2732, "fields": {"revision": 1787, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2733, "fields": {"revision": 1788, "object_id": "1f8f72f2-7d5d-4e6a-82d4-f2387dec8aee", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1f8f72f2-7d5d-4e6a-82d4-f2387dec8aee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.199Z\", \"registration\": \"bf6b3957-f1c7-4ffa-a530-c9b3158cb635\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HAWK G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-19\", \"application_outcome_notification_date\": \"2006-10-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gerry Hawkes - Pump Installer : 38000-25/PUMP HAWK G"}}, {"model": "reversion.version", "pk": 2734, "fields": {"revision": 1788, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2735, "fields": {"revision": 1788, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2736, "fields": {"revision": 1788, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2737, "fields": {"revision": 1789, "object_id": "1f9f5c93-bb8f-4091-9796-855a1de95f0a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1f9f5c93-bb8f-4091-9796-855a1de95f0a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.206Z\", \"registration\": \"f54ebc89-b564-4551-af93-5353276a473c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ROBB K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-16\", \"application_outcome_notification_date\": \"2006-05-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Keith Robbins - Well Driller : 38000-25/DRI ROBB K"}}, {"model": "reversion.version", "pk": 2738, "fields": {"revision": 1789, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2739, "fields": {"revision": 1789, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2740, "fields": {"revision": 1789, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2741, "fields": {"revision": 1790, "object_id": "1faa9d6f-7e08-4b8b-a974-160e9ae5624d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1faa9d6f-7e08-4b8b-a974-160e9ae5624d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.212Z\", \"registration\": \"94c0f65e-2ee7-4fc6-8028-bc97218d6f49\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KAYE A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kaye - Well Driller : 38000-25/DRI KAYE A"}}, {"model": "reversion.version", "pk": 2742, "fields": {"revision": 1790, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2743, "fields": {"revision": 1790, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2744, "fields": {"revision": 1790, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2745, "fields": {"revision": 1791, "object_id": "1fbd1a40-2263-46bf-8119-a9f86ab95032", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1fbd1a40-2263-46bf-8119-a9f86ab95032\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.221Z\", \"registration\": \"bffd9bb5-f74d-4006-8802-43d7257b19e5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BENT A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andre Bentley - Well Driller : 38000-25/DRI BENT A"}}, {"model": "reversion.version", "pk": 2746, "fields": {"revision": 1791, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2747, "fields": {"revision": 1791, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2748, "fields": {"revision": 1791, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2749, "fields": {"revision": 1792, "object_id": "1ffd681e-8053-4f14-9559-14cb511326e4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"1ffd681e-8053-4f14-9559-14cb511326e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.230Z\", \"registration\": \"35a36648-b789-4f32-a0b8-ede1e624d744\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HENR J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-07\", \"application_outcome_notification_date\": \"2006-04-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Henry - Well Driller : 38000-25/DRI HENR J"}}, {"model": "reversion.version", "pk": 2750, "fields": {"revision": 1792, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2751, "fields": {"revision": 1792, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2752, "fields": {"revision": 1792, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2753, "fields": {"revision": 1793, "object_id": "201f4715-9720-4a89-a809-76fbd4d7f585", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"201f4715-9720-4a89-a809-76fbd4d7f585\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.239Z\", \"registration\": \"03c08164-1007-49f1-8ed0-1fbb9db3879c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIND B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Barry Windecker - Well Driller : 38000-25/DRI WIND B"}}, {"model": "reversion.version", "pk": 2754, "fields": {"revision": 1793, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2755, "fields": {"revision": 1793, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2756, "fields": {"revision": 1793, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2757, "fields": {"revision": 1794, "object_id": "202da8cb-cd18-4a93-b8b2-eb84f18ccbc6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"202da8cb-cd18-4a93-b8b2-eb84f18ccbc6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.249Z\", \"registration\": \"ce1ae63c-4a1e-4499-9795-7c2557c8cc5e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROSE D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-05-24\", \"application_outcome_notification_date\": \"2012-05-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Rosenburg - Pump Installer : 38000-25/PUMP ROSE D"}}, {"model": "reversion.version", "pk": 2758, "fields": {"revision": 1794, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2759, "fields": {"revision": 1794, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2760, "fields": {"revision": 1794, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2761, "fields": {"revision": 1795, "object_id": "20505b3b-0476-43d3-914a-0310b57dfac6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"20505b3b-0476-43d3-914a-0310b57dfac6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.256Z\", \"registration\": \"036f0c6b-02dc-4f1b-a65e-305e5adb47e5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WANG F\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Floyd (Bob) Wangler - Well Driller : 38000-25/DRI WANG F"}}, {"model": "reversion.version", "pk": 2762, "fields": {"revision": 1795, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2763, "fields": {"revision": 1795, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2764, "fields": {"revision": 1795, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2765, "fields": {"revision": 1796, "object_id": "2052c2ed-b521-45b3-b4c6-cc1118860a45", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2052c2ed-b521-45b3-b4c6-cc1118860a45\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.263Z\", \"registration\": \"7bdddd58-e057-4a4b-90ff-66c561dcaf82\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI INGR L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Ingram - Well Driller : 38000-25/DRI INGR L"}}, {"model": "reversion.version", "pk": 2766, "fields": {"revision": 1796, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2767, "fields": {"revision": 1796, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2768, "fields": {"revision": 1796, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2769, "fields": {"revision": 1797, "object_id": "2061b37f-6552-4c0f-92a0-658ddced8974", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2061b37f-6552-4c0f-92a0-658ddced8974\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.270Z\", \"registration\": \"5b224240-76cc-47dc-b157-10bf4da82e02\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WEST G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gil Weston - Well Driller : 38000-25/DRI WEST G"}}, {"model": "reversion.version", "pk": 2770, "fields": {"revision": 1797, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2771, "fields": {"revision": 1797, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2772, "fields": {"revision": 1797, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2773, "fields": {"revision": 1798, "object_id": "207800d5-a57c-46cc-8e57-9d08947ae425", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"207800d5-a57c-46cc-8e57-9d08947ae425\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.279Z\", \"registration\": \"6fe3bbd4-c659-4feb-a787-3e68f42eb652\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCDO J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-03\", \"application_outcome_notification_date\": \"2004-11-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John McDonald - Well Driller : 38000-25/DRI MCDO J"}}, {"model": "reversion.version", "pk": 2774, "fields": {"revision": 1798, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2775, "fields": {"revision": 1798, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2776, "fields": {"revision": 1798, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2777, "fields": {"revision": 1799, "object_id": "20e8c18c-8d86-4a47-80e7-99fad319fe7a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"20e8c18c-8d86-4a47-80e7-99fad319fe7a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.288Z\", \"registration\": \"acd5d1cb-5bdd-4c70-993c-b03a30e96947\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI REIN W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-167\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-05-05\", \"application_outcome_notification_date\": \"2016-05-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Will Reinarz - Well Driller : 38000-25/DRI REIN W"}}, {"model": "reversion.version", "pk": 2778, "fields": {"revision": 1799, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2779, "fields": {"revision": 1799, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2780, "fields": {"revision": 1799, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2781, "fields": {"revision": 1800, "object_id": "20f7d8ee-9142-4fd3-8d7d-34763e849d59", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"20f7d8ee-9142-4fd3-8d7d-34763e849d59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.297Z\", \"registration\": \"5a34a051-05d0-4762-8ef7-943e49df6596\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FAAS D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert D. Faasse - Well Driller : 38000-25/DRI FAAS D"}}, {"model": "reversion.version", "pk": 2782, "fields": {"revision": 1800, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2783, "fields": {"revision": 1800, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2784, "fields": {"revision": 1800, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2785, "fields": {"revision": 1801, "object_id": "2122a50e-b17e-4c4d-9f93-5afd8ddfeb59", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2122a50e-b17e-4c4d-9f93-5afd8ddfeb59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.305Z\", \"registration\": \"3d9cdb11-e66a-4990-a8a5-c3d9250d6c79\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KALI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ron Kalicum - Well Driller : 38000-25/DRI KALI R"}}, {"model": "reversion.version", "pk": 2786, "fields": {"revision": 1801, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2787, "fields": {"revision": 1801, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2788, "fields": {"revision": 1801, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2789, "fields": {"revision": 1802, "object_id": "21539c81-fa12-43e9-8b2d-651f086e1d0a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"21539c81-fa12-43e9-8b2d-651f086e1d0a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.315Z\", \"registration\": \"ac6660ed-56fe-4faa-9f93-b6d0bfd19518\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI NEUL B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brad Neuls - Well Driller : 38000-25/DRI NEUL B"}}, {"model": "reversion.version", "pk": 2790, "fields": {"revision": 1802, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2791, "fields": {"revision": 1802, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2792, "fields": {"revision": 1802, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2793, "fields": {"revision": 1803, "object_id": "21765a08-a633-4c7e-a071-a87fde7f6bf6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"21765a08-a633-4c7e-a071-a87fde7f6bf6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.324Z\", \"registration\": \"5fd1d660-ee90-4bc2-8603-ef027d29f02a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STEW S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-151\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-12-10\", \"application_outcome_notification_date\": \"2008-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Steward - Well Driller : 38000-25/DRI STEW S"}}, {"model": "reversion.version", "pk": 2794, "fields": {"revision": 1803, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2795, "fields": {"revision": 1803, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2796, "fields": {"revision": 1803, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2797, "fields": {"revision": 1804, "object_id": "225d3723-9a90-4985-906f-616b31c26846", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"225d3723-9a90-4985-906f-616b31c26846\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.333Z\", \"registration\": \"e0836035-2b03-4d1f-b841-c62a76dd01dd\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STEW A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Stewart - Well Driller : 38000-25/DRI STEW A"}}, {"model": "reversion.version", "pk": 2798, "fields": {"revision": 1804, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2799, "fields": {"revision": 1804, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2800, "fields": {"revision": 1804, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2801, "fields": {"revision": 1805, "object_id": "22f09b01-869c-479d-802a-3a4bc818c10c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"22f09b01-869c-479d-802a-3a4bc818c10c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.341Z\", \"registration\": \"4f00590a-41e9-4f7b-a4ec-b0b7e0d97978\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FYFE G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent; 0039-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Fyfe - Well Driller : 38000-25/DRI FYFE G"}}, {"model": "reversion.version", "pk": 2802, "fields": {"revision": 1805, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2803, "fields": {"revision": 1805, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2804, "fields": {"revision": 1805, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2805, "fields": {"revision": 1806, "object_id": "22f8fcb5-05d8-48cf-ae11-85965c499ddd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"22f8fcb5-05d8-48cf-ae11-85965c499ddd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.348Z\", \"registration\": \"b4170f23-379f-4d8d-a923-02a86f6c4099\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KREN J\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Krenbrink - Well Driller : 38000-25/DRI KREN J"}}, {"model": "reversion.version", "pk": 2806, "fields": {"revision": 1806, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2807, "fields": {"revision": 1806, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2808, "fields": {"revision": 1806, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2809, "fields": {"revision": 1807, "object_id": "232b1260-3d8a-4fe3-9266-0ff8abd237c6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"232b1260-3d8a-4fe3-9266-0ff8abd237c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.355Z\", \"registration\": \"46fe3dfb-16f7-4028-985c-dee8a6af3eb5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP COFF N\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-13\", \"application_outcome_notification_date\": \"2005-12-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Norm Coffey - Pump Installer : 38000-25/PUMP COFF N"}}, {"model": "reversion.version", "pk": 2810, "fields": {"revision": 1807, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2811, "fields": {"revision": 1807, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2812, "fields": {"revision": 1807, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2813, "fields": {"revision": 1808, "object_id": "2338ba0c-f785-4d76-9395-3a6036e275ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2338ba0c-f785-4d76-9395-3a6036e275ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.362Z\", \"registration\": \"8807d9ed-cec3-412a-98dd-618f7eafbe91\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STAD B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brent Stadel - Pump Installer : 38000-25/PUMP STAD B"}}, {"model": "reversion.version", "pk": 2814, "fields": {"revision": 1808, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2815, "fields": {"revision": 1808, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2816, "fields": {"revision": 1808, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2817, "fields": {"revision": 1809, "object_id": "23a6647c-aa29-41cf-926d-797ea83cb295", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"23a6647c-aa29-41cf-926d-797ea83cb295\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.370Z\", \"registration\": \"6f62592e-3179-4960-8f7d-68866a9900b0\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI OLMR G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-06\", \"application_outcome_notification_date\": \"2006-07-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Olmr - Well Driller : 38000-25/DRI OLMR G"}}, {"model": "reversion.version", "pk": 2818, "fields": {"revision": 1809, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2819, "fields": {"revision": 1809, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2820, "fields": {"revision": 1809, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2821, "fields": {"revision": 1810, "object_id": "23afd1ff-7f19-456c-b915-d0a252e91113", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"23afd1ff-7f19-456c-b915-d0a252e91113\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.377Z\", \"registration\": \"9f94a481-3901-4c87-95b8-e01060c57633\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STEW B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Stewart - Well Driller : 38000-25/DRI STEW B"}}, {"model": "reversion.version", "pk": 2822, "fields": {"revision": 1810, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2823, "fields": {"revision": 1810, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2824, "fields": {"revision": 1810, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2825, "fields": {"revision": 1811, "object_id": "245ebdfa-9a8a-4af3-aed8-e8f79480b86f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"245ebdfa-9a8a-4af3-aed8-e8f79480b86f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.384Z\", \"registration\": \"be5c01df-8b69-46ad-84dd-976a5fb879be\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HOPP B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VB2398\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-13\", \"application_outcome_notification_date\": \"2013-06-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Hopper - Well Driller : 38000-25/DRI HOPP B"}}, {"model": "reversion.version", "pk": 2826, "fields": {"revision": 1811, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2827, "fields": {"revision": 1811, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2828, "fields": {"revision": 1811, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2829, "fields": {"revision": 1812, "object_id": "2460c0d1-413a-43d6-bc31-2b04f93feb6d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2460c0d1-413a-43d6-bc31-2b04f93feb6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.394Z\", \"registration\": \"7bdddd58-e057-4a4b-90ff-66c561dcaf82\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI INGR L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Ingram - Well Driller : 38000-25/DRI INGR L"}}, {"model": "reversion.version", "pk": 2830, "fields": {"revision": 1812, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2831, "fields": {"revision": 1812, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2832, "fields": {"revision": 1812, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2833, "fields": {"revision": 1813, "object_id": "24ad6416-0c73-4149-a1c8-287aa0c68d0b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"24ad6416-0c73-4149-a1c8-287aa0c68d0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.404Z\", \"registration\": \"f7543a9c-ff4d-404e-aed6-4211da8364ee\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DESJ K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-27\", \"application_outcome_notification_date\": \"2010-09-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Desjardins - Pump Installer : 38000-25/PUMP DESJ K"}}, {"model": "reversion.version", "pk": 2834, "fields": {"revision": 1813, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2835, "fields": {"revision": 1813, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2836, "fields": {"revision": 1813, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2837, "fields": {"revision": 1814, "object_id": "24fd1f68-dc6b-4408-b97e-5fd1bb75969a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"24fd1f68-dc6b-4408-b97e-5fd1bb75969a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.412Z\", \"registration\": \"ac8404d3-2bd0-4dd1-97ff-15728a7f9578\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROBB K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Keith Robbins - Pump Installer : 38000-25/PUMP ROBB K"}}, {"model": "reversion.version", "pk": 2838, "fields": {"revision": 1814, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2839, "fields": {"revision": 1814, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2840, "fields": {"revision": 1814, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2841, "fields": {"revision": 1815, "object_id": "25117602-9526-4e33-b936-802e97d9c76a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"25117602-9526-4e33-b936-802e97d9c76a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.420Z\", \"registration\": \"cb31aa4e-e560-46e4-8374-cb1b434c1657\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MEWS K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-07\", \"application_outcome_notification_date\": \"2005-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kevin Mews - Well Driller : 38000-25/DRI MEWS K"}}, {"model": "reversion.version", "pk": 2842, "fields": {"revision": 1815, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2843, "fields": {"revision": 1815, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2844, "fields": {"revision": 1815, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2845, "fields": {"revision": 1816, "object_id": "2537cc7b-15fe-489a-a06e-625802990ae4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2537cc7b-15fe-489a-a06e-625802990ae4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.426Z\", \"registration\": \"7cb7c1ad-41c3-4688-9b1d-5149cc2a5c0f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STRI B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-05\", \"application_outcome_notification_date\": \"2006-06-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Strijak - Well Driller : 38000-25/DRI STRI B"}}, {"model": "reversion.version", "pk": 2846, "fields": {"revision": 1816, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2847, "fields": {"revision": 1816, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2848, "fields": {"revision": 1816, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2849, "fields": {"revision": 1817, "object_id": "2570bf3b-990c-4343-b762-31f5c36fa771", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2570bf3b-990c-4343-b762-31f5c36fa771\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.431Z\", \"registration\": \"5f516168-4ccb-4a0f-8ac5-6b09f6ca409a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI JOHN T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Johnson - Well Driller : 38000-25/DRI JOHN T"}}, {"model": "reversion.version", "pk": 2850, "fields": {"revision": 1817, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2851, "fields": {"revision": 1817, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2852, "fields": {"revision": 1817, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2853, "fields": {"revision": 1818, "object_id": "257bf0f2-e4c6-43d6-9be1-6daa76180b74", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"257bf0f2-e4c6-43d6-9be1-6daa76180b74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.437Z\", \"registration\": \"f9906746-eba4-4a94-9a2f-20e60d1f55d9\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOUL G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-16\", \"application_outcome_notification_date\": \"2004-11-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Boulton - Well Driller : 38000-25/DRI BOUL G"}}, {"model": "reversion.version", "pk": 2854, "fields": {"revision": 1818, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2855, "fields": {"revision": 1818, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2856, "fields": {"revision": 1818, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2857, "fields": {"revision": 1819, "object_id": "257ddbb6-0770-4b2f-be62-7d2a58ab354c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"257ddbb6-0770-4b2f-be62-7d2a58ab354c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.443Z\", \"registration\": \"ca87f76b-e279-4638-bd1b-9862dc447f1c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STAN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Stanvick - Pump Installer : 38000-25/PUMP STAN R"}}, {"model": "reversion.version", "pk": 2858, "fields": {"revision": 1819, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2859, "fields": {"revision": 1819, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2860, "fields": {"revision": 1819, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2861, "fields": {"revision": 1820, "object_id": "259a2061-c718-4f39-9e0e-5ca36bc336da", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"259a2061-c718-4f39-9e0e-5ca36bc336da\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.449Z\", \"registration\": \"16d366d0-a1f2-4fab-89ac-566429ffb8b2\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI VLCH K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kurt Vlchek - Well Driller : 38000-25/DRI VLCH K"}}, {"model": "reversion.version", "pk": 2862, "fields": {"revision": 1820, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2863, "fields": {"revision": 1820, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2864, "fields": {"revision": 1820, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2865, "fields": {"revision": 1821, "object_id": "25cc6e5d-f8f8-4c0e-a78f-e713e0d87972", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"25cc6e5d-f8f8-4c0e-a78f-e713e0d87972\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.456Z\", \"registration\": \"ed94d274-04a3-4205-a59f-b45063da1593\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GENE J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Genereux - Well Driller : 38000-25/DRI GENE J"}}, {"model": "reversion.version", "pk": 2866, "fields": {"revision": 1821, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2867, "fields": {"revision": 1821, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2868, "fields": {"revision": 1821, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2869, "fields": {"revision": 1822, "object_id": "2625c9d3-afa3-42cc-8c81-33909db23e88", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2625c9d3-afa3-42cc-8c81-33909db23e88\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.463Z\", \"registration\": \"59e5808f-29be-499f-be6b-880d85f71086\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NIBL G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gerald Niblow - Pump Installer : 38000-25/PUMP NIBL G"}}, {"model": "reversion.version", "pk": 2870, "fields": {"revision": 1822, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2871, "fields": {"revision": 1822, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2872, "fields": {"revision": 1822, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2873, "fields": {"revision": 1823, "object_id": "2652f9bc-3230-478a-b8bb-428e17ddc277", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2652f9bc-3230-478a-b8bb-428e17ddc277\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.471Z\", \"registration\": \"1e473954-bd2d-429c-a9ae-841cc84e13a2\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCIO B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-25\", \"application_outcome_notification_date\": \"2006-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill McIvor - Well Driller : 38000-25/DRI MCIO B"}}, {"model": "reversion.version", "pk": 2874, "fields": {"revision": 1823, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2875, "fields": {"revision": 1823, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2876, "fields": {"revision": 1823, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2877, "fields": {"revision": 1824, "object_id": "266fa7f0-1151-4461-9e7c-a0a4789ef846", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"266fa7f0-1151-4461-9e7c-a0a4789ef846\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.477Z\", \"registration\": \"bba47bec-2d89-4e06-9796-9cef587e48aa\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PARK R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0012-WW-98\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-19\", \"application_outcome_notification_date\": \"2005-05-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Parker - Well Driller : 38000-25/DRI PARK R"}}, {"model": "reversion.version", "pk": 2878, "fields": {"revision": 1824, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2879, "fields": {"revision": 1824, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2880, "fields": {"revision": 1824, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2881, "fields": {"revision": 1825, "object_id": "2692f0ad-4ba2-4c92-9e50-ad2f3158343a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2692f0ad-4ba2-4c92-9e50-ad2f3158343a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.483Z\", \"registration\": \"573995fb-ac17-4b8a-97e1-7940389cbaa1\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BUMF T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Troy Bumford - Well Driller : 38000-25/DRI BUMF T"}}, {"model": "reversion.version", "pk": 2882, "fields": {"revision": 1825, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2883, "fields": {"revision": 1825, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2884, "fields": {"revision": 1825, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2885, "fields": {"revision": 1826, "object_id": "26ab2fe1-230d-478b-a1a1-2c4132a69d12", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"26ab2fe1-230d-478b-a1a1-2c4132a69d12\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.489Z\", \"registration\": \"53033840-8565-4a85-a4d1-faf75e9037c7\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BRED P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Breadon - Well Driller : 38000-25/DRI BRED P"}}, {"model": "reversion.version", "pk": 2886, "fields": {"revision": 1826, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2887, "fields": {"revision": 1826, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2888, "fields": {"revision": 1826, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2889, "fields": {"revision": 1827, "object_id": "26d0c404-48d0-4cb9-b140-8d07764188c6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"26d0c404-48d0-4cb9-b140-8d07764188c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.495Z\", \"registration\": \"52740c7b-b06a-44ad-85fc-1700624a9e7b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CART T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-02-10\", \"application_outcome_notification_date\": \"2009-02-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Todd Carter - Pump Installer : 38000-25/PUMP CART T"}}, {"model": "reversion.version", "pk": 2890, "fields": {"revision": 1827, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2891, "fields": {"revision": 1827, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2892, "fields": {"revision": 1827, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2893, "fields": {"revision": 1828, "object_id": "26d5030b-672d-45b7-b639-9ebb0765249e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"26d5030b-672d-45b7-b639-9ebb0765249e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.501Z\", \"registration\": \"ed1d5575-3bb1-4ace-95d9-ddbd254a2af8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GERL D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Gerlach - Pump Installer : 38000-25/PUMP GERL D"}}, {"model": "reversion.version", "pk": 2894, "fields": {"revision": 1828, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2895, "fields": {"revision": 1828, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2896, "fields": {"revision": 1828, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2897, "fields": {"revision": 1829, "object_id": "26f27df8-ad8e-4470-8bf5-fdc3b588223f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"26f27df8-ad8e-4470-8bf5-fdc3b588223f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.508Z\", \"registration\": \"72eed8d9-65b7-4493-9b6d-42a29b5c9e66\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SLAD D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0017-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Slade - Well Driller : 38000-25/DRI SLAD D"}}, {"model": "reversion.version", "pk": 2898, "fields": {"revision": 1829, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2899, "fields": {"revision": 1829, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2900, "fields": {"revision": 1829, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2901, "fields": {"revision": 1830, "object_id": "27045bc5-cde8-487e-96d8-edbbd546503f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"27045bc5-cde8-487e-96d8-edbbd546503f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.513Z\", \"registration\": \"794b40f5-ad10-4594-9ac3-e410fa43271c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RIPL W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Ripley - Pump Installer : 38000-25/PUMP RIPL W"}}, {"model": "reversion.version", "pk": 2902, "fields": {"revision": 1830, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2903, "fields": {"revision": 1830, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2904, "fields": {"revision": 1830, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2905, "fields": {"revision": 1831, "object_id": "277cf6a2-3e0e-4dfe-9b94-f5aff7b157e0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"277cf6a2-3e0e-4dfe-9b94-f5aff7b157e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.520Z\", \"registration\": \"96a7d4fa-5a22-488d-9e63-b0904b4b7556\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI TOML D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek Tomlinson - Well Driller : 38000-25/DRI TOML D"}}, {"model": "reversion.version", "pk": 2906, "fields": {"revision": 1831, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2907, "fields": {"revision": 1831, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2908, "fields": {"revision": 1831, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2909, "fields": {"revision": 1832, "object_id": "278290d8-7c59-4487-89c4-dd4608e01f59", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"278290d8-7c59-4487-89c4-dd4608e01f59\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.525Z\", \"registration\": \"7e6e3f50-2b75-40ae-859b-408dafeae50a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JACO A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Jacobson - Pump Installer : 38000-25/PUMP JACO A"}}, {"model": "reversion.version", "pk": 2910, "fields": {"revision": 1832, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2911, "fields": {"revision": 1832, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2912, "fields": {"revision": 1832, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2913, "fields": {"revision": 1833, "object_id": "27d4c009-f3b9-447c-bd89-dcedf410e191", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"27d4c009-f3b9-447c-bd89-dcedf410e191\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.531Z\", \"registration\": \"cd0b5677-b34e-4a8f-8cdf-f0080a5f3006\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MACK C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0005-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-15\", \"application_outcome_notification_date\": \"2004-12-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Carl MacKenzie - Well Driller : 38000-25/DRI MACK C"}}, {"model": "reversion.version", "pk": 2914, "fields": {"revision": 1833, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2915, "fields": {"revision": 1833, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2916, "fields": {"revision": 1833, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2917, "fields": {"revision": 1834, "object_id": "27ef3ded-3461-448f-baf3-0db28020cd6e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"27ef3ded-3461-448f-baf3-0db28020cd6e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.537Z\", \"registration\": \"cb1472ee-49d9-4471-a319-6f0db33ab2f7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ANDE P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Anderson - Pump Installer : 38000-25/PUMP ANDE P"}}, {"model": "reversion.version", "pk": 2918, "fields": {"revision": 1834, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2919, "fields": {"revision": 1834, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2920, "fields": {"revision": 1834, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 2921, "fields": {"revision": 1835, "object_id": "2807a9fb-2405-42b5-88c0-8d84c40e7ac6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2807a9fb-2405-42b5-88c0-8d84c40e7ac6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.543Z\", \"registration\": \"91b1859d-c6cf-4120-81aa-bc81079c1378\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BLEI R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bleich - Well Driller : 38000-25/DRI BLEI R"}}, {"model": "reversion.version", "pk": 2922, "fields": {"revision": 1835, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2923, "fields": {"revision": 1835, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2924, "fields": {"revision": 1835, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2925, "fields": {"revision": 1836, "object_id": "281bcc99-9865-4f80-8655-34534d04177b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"281bcc99-9865-4f80-8655-34534d04177b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.548Z\", \"registration\": \"29e98a18-640c-4069-a1cc-7eae53b3d9ea\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MILL M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-04-24\", \"application_outcome_notification_date\": \"2017-04-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Matthew Miller - Pump Installer : 38000-25/PUMP MILL M"}}, {"model": "reversion.version", "pk": 2926, "fields": {"revision": 1836, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2927, "fields": {"revision": 1836, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2928, "fields": {"revision": 1836, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 2929, "fields": {"revision": 1837, "object_id": "283a0f81-9740-4f96-936f-6e22ee05925f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"283a0f81-9740-4f96-936f-6e22ee05925f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.555Z\", \"registration\": \"a3349e30-2952-42fa-8664-9d642635ba6e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HEHN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ray Hehn - Pump Installer : 38000-25/PUMP HEHN R"}}, {"model": "reversion.version", "pk": 2930, "fields": {"revision": 1837, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2931, "fields": {"revision": 1837, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2932, "fields": {"revision": 1837, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2933, "fields": {"revision": 1838, "object_id": "28635c41-ff48-4bc9-b4f2-8ea3f2ce7647", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"28635c41-ff48-4bc9-b4f2-8ea3f2ce7647\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.562Z\", \"registration\": \"a737d01d-6080-4ee4-adee-8a4918334964\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GOWE R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-19\", \"application_outcome_notification_date\": \"2006-10-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Gowe - Pump Installer : 38000-25/PUMP GOWE R"}}, {"model": "reversion.version", "pk": 2934, "fields": {"revision": 1838, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2935, "fields": {"revision": 1838, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2936, "fields": {"revision": 1838, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2937, "fields": {"revision": 1839, "object_id": "2917c4ff-cbd3-453e-ae9f-745778b34643", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2917c4ff-cbd3-453e-ae9f-745778b34643\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.567Z\", \"registration\": \"4867fc80-7fb9-4193-9ba4-bcb5d6db2b97\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FRAN RI\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-157\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-07\", \"application_outcome_notification_date\": \"2008-10-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick G. France - Well Driller : 38000-25/DRI FRAN RI"}}, {"model": "reversion.version", "pk": 2938, "fields": {"revision": 1839, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2939, "fields": {"revision": 1839, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2940, "fields": {"revision": 1839, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2941, "fields": {"revision": 1840, "object_id": "2965dbea-01f7-4489-a0d8-52641a42e27c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2965dbea-01f7-4489-a0d8-52641a42e27c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.573Z\", \"registration\": \"caa5f26f-8934-4e88-bea0-a85003f9cf03\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FAAS R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Faasse - Well Driller : 38000-25/DRI FAAS R"}}, {"model": "reversion.version", "pk": 2942, "fields": {"revision": 1840, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2943, "fields": {"revision": 1840, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2944, "fields": {"revision": 1840, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2945, "fields": {"revision": 1841, "object_id": "29670f84-7169-4178-8d59-bb34f77d1c57", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"29670f84-7169-4178-8d59-bb34f77d1c57\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.579Z\", \"registration\": \"a5450948-d814-4231-90b9-bce97f25a2f8\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI RICH W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Richard - Well Driller : 38000-25/DRI RICH W"}}, {"model": "reversion.version", "pk": 2946, "fields": {"revision": 1841, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2947, "fields": {"revision": 1841, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2948, "fields": {"revision": 1841, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2949, "fields": {"revision": 1842, "object_id": "297c82ea-d379-40d1-826f-5b98983a5bdb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"297c82ea-d379-40d1-826f-5b98983a5bdb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.586Z\", \"registration\": \"7b96c8d0-1a41-4f0b-b1fa-fa7b4ae256f3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BATE D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darryl Bates - Well Driller : 38000-25/DRI BATE D"}}, {"model": "reversion.version", "pk": 2950, "fields": {"revision": 1842, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2951, "fields": {"revision": 1842, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2952, "fields": {"revision": 1842, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2953, "fields": {"revision": 1843, "object_id": "29801d80-9333-4d78-b83d-4d7510a93021", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"29801d80-9333-4d78-b83d-4d7510a93021\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.591Z\", \"registration\": \"928d4247-0b8b-4272-9308-ec0fb4ca0e23\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LOCK J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-07\", \"application_outcome_notification_date\": \"2006-04-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Julian (Brad) Lockett - Pump Installer : 38000-25/PUMP LOCK J"}}, {"model": "reversion.version", "pk": 2954, "fields": {"revision": 1843, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2955, "fields": {"revision": 1843, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2956, "fields": {"revision": 1843, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2957, "fields": {"revision": 1844, "object_id": "298f7fe3-9f46-4391-84a8-c6a7d9b047e8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"298f7fe3-9f46-4391-84a8-c6a7d9b047e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.597Z\", \"registration\": \"2772cbcc-2827-4de5-b927-c6b8e6ed191c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25 DRI HOLI R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Holiove - Well Driller : 38000-25 DRI HOLI R"}}, {"model": "reversion.version", "pk": 2958, "fields": {"revision": 1844, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2959, "fields": {"revision": 1844, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2960, "fields": {"revision": 1844, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2961, "fields": {"revision": 1845, "object_id": "29ad9bca-a09c-4d92-b160-9660cc3ba8f1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"29ad9bca-a09c-4d92-b160-9660cc3ba8f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.604Z\", \"registration\": \"678ccab1-eebc-46ae-89d5-c015539b1109\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI OTTO D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Otto - Well Driller : 38000-25/DRI OTTO D"}}, {"model": "reversion.version", "pk": 2962, "fields": {"revision": 1845, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2963, "fields": {"revision": 1845, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2964, "fields": {"revision": 1845, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2965, "fields": {"revision": 1846, "object_id": "29f0d064-3cd1-4fa5-b28f-d005fb4e3102", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"29f0d064-3cd1-4fa5-b28f-d005fb4e3102\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.610Z\", \"registration\": \"e0836035-2b03-4d1f-b841-c62a76dd01dd\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STEW A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Stewart - Well Driller : 38000-25/DRI STEW A"}}, {"model": "reversion.version", "pk": 2966, "fields": {"revision": 1846, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2967, "fields": {"revision": 1846, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2968, "fields": {"revision": 1846, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2969, "fields": {"revision": 1847, "object_id": "2a0d4561-ec8b-43fa-af56-2e9e6f252455", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2a0d4561-ec8b-43fa-af56-2e9e6f252455\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.617Z\", \"registration\": \"3f047bfe-2d0a-4c81-8e60-88d5b3a6d52d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHI K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/696889-40628A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kris Schindel - Well Driller : 38000-25/DRI SCHI K"}}, {"model": "reversion.version", "pk": 2970, "fields": {"revision": 1847, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2971, "fields": {"revision": 1847, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2972, "fields": {"revision": 1847, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2973, "fields": {"revision": 1848, "object_id": "2a447b45-1305-4a5e-b28a-727c8589c950", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2a447b45-1305-4a5e-b28a-727c8589c950\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.624Z\", \"registration\": \"d9a3b70e-a3a7-41a2-b9c3-57a20562dedc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KOHL A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kohlhauser - Pump Installer : 38000-25/PUMP KOHL A"}}, {"model": "reversion.version", "pk": 2974, "fields": {"revision": 1848, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2975, "fields": {"revision": 1848, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2976, "fields": {"revision": 1848, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2977, "fields": {"revision": 1849, "object_id": "2a9fc4ac-5561-436e-9e5c-6b194a7986c9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2a9fc4ac-5561-436e-9e5c-6b194a7986c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.631Z\", \"registration\": \"069bd590-ad85-4855-93c5-d22c23b92046\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHI M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-29\", \"application_outcome_notification_date\": \"2005-10-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Max Schibli - Pump Installer : 38000-25/PUMP SCHI M"}}, {"model": "reversion.version", "pk": 2978, "fields": {"revision": 1849, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 2979, "fields": {"revision": 1849, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2980, "fields": {"revision": 1849, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 2981, "fields": {"revision": 1850, "object_id": "2af80091-1215-4855-b5c7-43c2a0f855a7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2af80091-1215-4855-b5c7-43c2a0f855a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.638Z\", \"registration\": \"20ca3db9-812d-4ddb-94e3-cc15c408d751\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FRIE R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick Friedel - Well Driller : 38000-25/DRI FRIE R"}}, {"model": "reversion.version", "pk": 2982, "fields": {"revision": 1850, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2983, "fields": {"revision": 1850, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2984, "fields": {"revision": 1850, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2985, "fields": {"revision": 1851, "object_id": "2afa3edf-164c-48d0-953f-2036c06922b7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2afa3edf-164c-48d0-953f-2036c06922b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.645Z\", \"registration\": \"36237d32-33cd-43ff-afbd-b0c67d6a7a71\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WATT D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0037-WW-93\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Watt - Well Driller : 38000-25/DRI WATT D"}}, {"model": "reversion.version", "pk": 2986, "fields": {"revision": 1851, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2987, "fields": {"revision": 1851, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2988, "fields": {"revision": 1851, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2989, "fields": {"revision": 1852, "object_id": "2b55f1c0-d826-48d8-bcca-1a2092c96c99", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2b55f1c0-d826-48d8-bcca-1a2092c96c99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.651Z\", \"registration\": \"97edce28-ed3b-4629-9f7e-6cb4d8408aa8\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FLET L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00025-WW-08\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-25\", \"application_outcome_notification_date\": \"2008-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Logan Flett - Well Driller : 38000-25/DRI FLET L"}}, {"model": "reversion.version", "pk": 2990, "fields": {"revision": 1852, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 2991, "fields": {"revision": 1852, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2992, "fields": {"revision": 1852, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2993, "fields": {"revision": 1853, "object_id": "2b6d35db-e3f9-4509-8737-14e7a44a27df", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2b6d35db-e3f9-4509-8737-14e7a44a27df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.657Z\", \"registration\": \"1ca87039-c58c-42f7-bc0e-38160ec88831\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI RIEH L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Riehl - Well Driller : 38000-25/DRI RIEH L"}}, {"model": "reversion.version", "pk": 2994, "fields": {"revision": 1853, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 2995, "fields": {"revision": 1853, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 2996, "fields": {"revision": 1853, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 2997, "fields": {"revision": 1854, "object_id": "2bbcdbfc-a173-4b84-b73b-b8ddacbbf258", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2bbcdbfc-a173-4b84-b73b-b8ddacbbf258\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.662Z\", \"registration\": \"8b711353-2a66-46b7-ac0d-c804b1fc1e83\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BURR S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00019-WW-99\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Burrows - Well Driller : 38000-25/DRI BURR S"}}, {"model": "reversion.version", "pk": 2998, "fields": {"revision": 1854, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 2999, "fields": {"revision": 1854, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3000, "fields": {"revision": 1854, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3001, "fields": {"revision": 1855, "object_id": "2bcf6e22-b0e1-41bc-b23f-f7f900133b40", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2bcf6e22-b0e1-41bc-b23f-f7f900133b40\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.668Z\", \"registration\": \"03c08164-1007-49f1-8ed0-1fbb9db3879c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WIND B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Barry Windecker - Well Driller : 38000-25/DRI WIND B"}}, {"model": "reversion.version", "pk": 3002, "fields": {"revision": 1855, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3003, "fields": {"revision": 1855, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3004, "fields": {"revision": 1855, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3005, "fields": {"revision": 1856, "object_id": "2bd938af-141a-4d3b-80f5-ecb534deba7c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2bd938af-141a-4d3b-80f5-ecb534deba7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.674Z\", \"registration\": \"bb034429-1ad2-43c9-b56f-e1154efbf3c4\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WILS A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-12-19\", \"application_outcome_notification_date\": \"2016-12-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alistair Wilson - Pump Installer : 38000-25/PUMP WILS A"}}, {"model": "reversion.version", "pk": 3006, "fields": {"revision": 1856, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3007, "fields": {"revision": 1856, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3008, "fields": {"revision": 1856, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 3009, "fields": {"revision": 1857, "object_id": "2c7d7630-821e-4c10-b1db-ee70fa475a75", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2c7d7630-821e-4c10-b1db-ee70fa475a75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.680Z\", \"registration\": \"0f878294-67af-4c01-bfaf-2ef8b7ce1cfb\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TOLH D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-14\", \"application_outcome_notification_date\": \"2011-11-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darryl Tolhurst - Pump Installer : 38000-25/PUMP TOLH D"}}, {"model": "reversion.version", "pk": 3010, "fields": {"revision": 1857, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3011, "fields": {"revision": 1857, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3012, "fields": {"revision": 1857, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3013, "fields": {"revision": 1858, "object_id": "2ca72ce9-567b-4fef-9194-f9d680b7c4dd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2ca72ce9-567b-4fef-9194-f9d680b7c4dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.686Z\", \"registration\": \"6bd7e483-85d3-4072-8ed8-aec16fbc2de5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LENA D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Lenard - Pump Installer : 38000-25/PUMP LENA D"}}, {"model": "reversion.version", "pk": 3014, "fields": {"revision": 1858, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3015, "fields": {"revision": 1858, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3016, "fields": {"revision": 1858, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3017, "fields": {"revision": 1859, "object_id": "2cb8b8b3-65b5-47a4-b7f2-79e4aafdbc6b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2cb8b8b3-65b5-47a4-b7f2-79e4aafdbc6b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.692Z\", \"registration\": \"9972cfee-53a2-4306-839f-b9e6949879a6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI YEO G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Yeo - Well Driller : 38000-25/DRI YEO G"}}, {"model": "reversion.version", "pk": 3018, "fields": {"revision": 1859, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3019, "fields": {"revision": 1859, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3020, "fields": {"revision": 1859, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3021, "fields": {"revision": 1860, "object_id": "2d59c327-0144-4386-a8b8-8d4f94c882c1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2d59c327-0144-4386-a8b8-8d4f94c882c1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.701Z\", \"registration\": \"404b69a6-283f-4ad7-a011-f646223c3edd\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MACK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joe MacKenzie - Well Driller : 38000-25/DRI MACK J"}}, {"model": "reversion.version", "pk": 3022, "fields": {"revision": 1860, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3023, "fields": {"revision": 1860, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3024, "fields": {"revision": 1860, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3025, "fields": {"revision": 1861, "object_id": "2d9437de-13cd-42dd-a655-009a942a21b5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2d9437de-13cd-42dd-a655-009a942a21b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.710Z\", \"registration\": \"7dc4db28-4122-44b9-8c4c-4744b60cd8f4\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STIN L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/913369-57644A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lyndon Stinson - Well Driller : 38000-25/DRI STIN L"}}, {"model": "reversion.version", "pk": 3026, "fields": {"revision": 1861, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3027, "fields": {"revision": 1861, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3028, "fields": {"revision": 1861, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3029, "fields": {"revision": 1862, "object_id": "2dae84a9-0bbf-4da3-bbcb-6a56da1e3baa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2dae84a9-0bbf-4da3-bbcb-6a56da1e3baa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.719Z\", \"registration\": \"08b0ab1d-ca14-47ee-84f4-6dfe17ae8401\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FALL R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roy Fallon - Well Driller : 38000-25/DRI FALL R"}}, {"model": "reversion.version", "pk": 3030, "fields": {"revision": 1862, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3031, "fields": {"revision": 1862, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3032, "fields": {"revision": 1862, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3033, "fields": {"revision": 1863, "object_id": "2df820bc-4691-484e-855f-08757dfcf985", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2df820bc-4691-484e-855f-08757dfcf985\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.729Z\", \"registration\": \"b9fd0852-4ad4-4cce-9082-4362edfc8c3e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SLAD K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0018-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken Slade - Well Driller : 38000-25/DRI SLAD K"}}, {"model": "reversion.version", "pk": 3034, "fields": {"revision": 1863, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3035, "fields": {"revision": 1863, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3036, "fields": {"revision": 1863, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3037, "fields": {"revision": 1864, "object_id": "2e01b052-1158-4434-a18e-b011cb800e8a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2e01b052-1158-4434-a18e-b011cb800e8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.737Z\", \"registration\": \"3a85e825-a3ef-49ef-8e72-b8faff5670df\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CRAM R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rob Crampton - Well Driller : 38000-25/DRI CRAM R"}}, {"model": "reversion.version", "pk": 3038, "fields": {"revision": 1864, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3039, "fields": {"revision": 1864, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3040, "fields": {"revision": 1864, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3041, "fields": {"revision": 1865, "object_id": "2e6f2649-6cb0-493e-ac67-bc9699f3751c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2e6f2649-6cb0-493e-ac67-bc9699f3751c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.744Z\", \"registration\": \"fb382d40-c623-4c38-a5a6-a6108146c1f5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MANN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-27\", \"application_outcome_notification_date\": \"2006-09-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randolph Mann - Pump Installer : 38000-25/PUMP MANN R"}}, {"model": "reversion.version", "pk": 3042, "fields": {"revision": 1865, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3043, "fields": {"revision": 1865, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3044, "fields": {"revision": 1865, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3045, "fields": {"revision": 1866, "object_id": "2ecb5c12-41ec-40be-b3e5-8887ebf26035", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2ecb5c12-41ec-40be-b3e5-8887ebf26035\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.753Z\", \"registration\": \"1c1a5b1f-1abd-49f6-a390-5f879039696a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MAGE R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Magee - Well Driller : 38000-25/DRI MAGE R"}}, {"model": "reversion.version", "pk": 3046, "fields": {"revision": 1866, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3047, "fields": {"revision": 1866, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3048, "fields": {"revision": 1866, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3049, "fields": {"revision": 1867, "object_id": "2ecfe3e9-7bf7-4144-8787-0fd5761a46d1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2ecfe3e9-7bf7-4144-8787-0fd5761a46d1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.762Z\", \"registration\": \"238196c4-2b5d-4910-aa69-021454bcee5c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WAYN M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/00109-AC2616\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-04-27\", \"application_outcome_notification_date\": \"2011-04-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Morrill - Well Driller : 38000-25/DRI WAYN M"}}, {"model": "reversion.version", "pk": 3050, "fields": {"revision": 1867, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3051, "fields": {"revision": 1867, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3052, "fields": {"revision": 1867, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3053, "fields": {"revision": 1868, "object_id": "2ed0fdbd-d51e-4b4e-b8d4-58a8d46a8d8b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2ed0fdbd-d51e-4b4e-b8d4-58a8d46a8d8b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.771Z\", \"registration\": \"4f00590a-41e9-4f7b-a4ec-b0b7e0d97978\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FYFE G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent; 0039-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Fyfe - Well Driller : 38000-25/DRI FYFE G"}}, {"model": "reversion.version", "pk": 3054, "fields": {"revision": 1868, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3055, "fields": {"revision": 1868, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3056, "fields": {"revision": 1868, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3057, "fields": {"revision": 1869, "object_id": "2eed67a5-2177-4355-992b-3da3b6b5211e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2eed67a5-2177-4355-992b-3da3b6b5211e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.779Z\", \"registration\": \"7dc4db28-4122-44b9-8c4c-4744b60cd8f4\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STIN L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/913369-57644A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lyndon Stinson - Well Driller : 38000-25/DRI STIN L"}}, {"model": "reversion.version", "pk": 3058, "fields": {"revision": 1869, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3059, "fields": {"revision": 1869, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3060, "fields": {"revision": 1869, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3061, "fields": {"revision": 1870, "object_id": "2f028070-da52-4e8b-a3dc-418aa9ea478b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2f028070-da52-4e8b-a3dc-418aa9ea478b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.788Z\", \"registration\": \"cda1de2e-62df-4337-8502-ced785be95b1\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STON S\", \"proof_of_age\": null, \"registrar_notes\": \"(867) 536-2009 (call first). Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Stone - Pump Installer : 38000-25/PUMP STON S"}}, {"model": "reversion.version", "pk": 3062, "fields": {"revision": 1870, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3063, "fields": {"revision": 1870, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3064, "fields": {"revision": 1870, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3065, "fields": {"revision": 1871, "object_id": "2f86a9f0-b09b-463a-b8a6-3f5fc0443c64", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2f86a9f0-b09b-463a-b8a6-3f5fc0443c64\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.798Z\", \"registration\": \"29519eb9-114d-4a8b-acfe-f6e9d9720b7e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PERR W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0022-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Perry - Well Driller : 38000-25/DRI PERR W"}}, {"model": "reversion.version", "pk": 3066, "fields": {"revision": 1871, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3067, "fields": {"revision": 1871, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3068, "fields": {"revision": 1871, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3069, "fields": {"revision": 1872, "object_id": "2fca56d4-4531-4c7f-9944-768c733baa07", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2fca56d4-4531-4c7f-9944-768c733baa07\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.806Z\", \"registration\": \"eddf67d6-b655-430c-911e-402af8778c98\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FAIR N\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00001-GN-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-07-25\", \"application_outcome_notification_date\": \"2017-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Nick Fairney - Well Driller : 38000-25/DRI FAIR N"}}, {"model": "reversion.version", "pk": 3070, "fields": {"revision": 1872, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3071, "fields": {"revision": 1872, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3072, "fields": {"revision": 1872, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 3073, "fields": {"revision": 1873, "object_id": "2fddd8b5-cb31-4dfb-b1eb-b21f98c05748", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2fddd8b5-cb31-4dfb-b1eb-b21f98c05748\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.816Z\", \"registration\": \"4867fc80-7fb9-4193-9ba4-bcb5d6db2b97\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FRAN RI\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-157\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-07\", \"application_outcome_notification_date\": \"2008-10-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick G. France - Well Driller : 38000-25/DRI FRAN RI"}}, {"model": "reversion.version", "pk": 3074, "fields": {"revision": 1873, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3075, "fields": {"revision": 1873, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3076, "fields": {"revision": 1873, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3077, "fields": {"revision": 1874, "object_id": "2ff6557c-9079-4469-802f-1cec9f985169", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"2ff6557c-9079-4469-802f-1cec9f985169\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.824Z\", \"registration\": \"eaf0acad-e96c-484d-9f39-4dd7f6f33fba\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LAMB J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-28\", \"application_outcome_notification_date\": \"2005-10-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jody Lambert - Well Driller : 38000-25/DRI LAMB J"}}, {"model": "reversion.version", "pk": 3078, "fields": {"revision": 1874, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3079, "fields": {"revision": 1874, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3080, "fields": {"revision": 1874, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3081, "fields": {"revision": 1875, "object_id": "300e6ffe-45aa-4aa0-8aab-95c46a3991bf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"300e6ffe-45aa-4aa0-8aab-95c46a3991bf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.833Z\", \"registration\": \"686f780f-fe15-4764-a225-2d19f26cc5db\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ROSE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Rosehill - Well Driller : 38000-25/DRI ROSE K"}}, {"model": "reversion.version", "pk": 3082, "fields": {"revision": 1875, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3083, "fields": {"revision": 1875, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3084, "fields": {"revision": 1875, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3085, "fields": {"revision": 1876, "object_id": "3029b191-f53f-4f83-86f9-4bfb05407fb6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3029b191-f53f-4f83-86f9-4bfb05407fb6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.842Z\", \"registration\": \"50f6b009-bf1d-4cee-afa6-b4e1d918ce27\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI OUSS H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"Well Technician Class 1 T-1453\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-14\", \"application_outcome_notification_date\": \"2011-11-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Oussoren - Well Driller : 38000-25/DRI OUSS H"}}, {"model": "reversion.version", "pk": 3086, "fields": {"revision": 1876, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3087, "fields": {"revision": 1876, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3088, "fields": {"revision": 1876, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3089, "fields": {"revision": 1877, "object_id": "308a435d-baa3-46c9-b156-61172987ff26", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"308a435d-baa3-46c9-b156-61172987ff26\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.851Z\", \"registration\": \"8b70836d-45e5-4263-817d-5f67181c7206\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JONE M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-22\", \"application_outcome_notification_date\": \"2005-04-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Jones - Pump Installer : 38000-25/PUMP JONE M"}}, {"model": "reversion.version", "pk": 3090, "fields": {"revision": 1877, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3091, "fields": {"revision": 1877, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3092, "fields": {"revision": 1877, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3093, "fields": {"revision": 1878, "object_id": "30995612-6ff0-4e6a-8587-d4288cd46218", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"30995612-6ff0-4e6a-8587-d4288cd46218\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.869Z\", \"registration\": \"508af7ac-5bd0-48c9-adaa-dffa30832eb4\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BORR D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-24\", \"application_outcome_notification_date\": \"2006-10-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Borrill - Pump Installer : 38000-25/PUMP BORR D"}}, {"model": "reversion.version", "pk": 3094, "fields": {"revision": 1878, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3095, "fields": {"revision": 1878, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3096, "fields": {"revision": 1878, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3097, "fields": {"revision": 1879, "object_id": "30d25271-69db-4079-8422-0c54659d53d2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"30d25271-69db-4079-8422-0c54659d53d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.908Z\", \"registration\": \"4b8d6657-0833-4b50-9494-8960d1a85c7e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GRAF D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-29\", \"application_outcome_notification_date\": \"2006-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Grafton - Well Driller : 38000-25/DRI GRAF D"}}, {"model": "reversion.version", "pk": 3098, "fields": {"revision": 1879, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3099, "fields": {"revision": 1879, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3100, "fields": {"revision": 1879, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3101, "fields": {"revision": 1880, "object_id": "30e1c0d1-0d7b-4cb0-bb29-98a4b3d87a20", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"30e1c0d1-0d7b-4cb0-bb29-98a4b3d87a20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.934Z\", \"registration\": \"b89773ee-597a-43d8-8285-e71a4d2782a5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACD RO\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert MacDonald - Pump Installer : 38000-25/PUMP MACD RO"}}, {"model": "reversion.version", "pk": 3102, "fields": {"revision": 1880, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3103, "fields": {"revision": 1880, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3104, "fields": {"revision": 1880, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3105, "fields": {"revision": 1881, "object_id": "30e429bd-49e1-4b78-a32f-0028a224d0fb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"30e429bd-49e1-4b78-a32f-0028a224d0fb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.957Z\", \"registration\": \"c15bf581-daff-4d8e-a6e4-2dfe6e61da15\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MITC D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-22\", \"application_outcome_notification_date\": \"2005-08-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darren Mitchell - Well Driller : 38000-25/DRI MITC D"}}, {"model": "reversion.version", "pk": 3106, "fields": {"revision": 1881, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3107, "fields": {"revision": 1881, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3108, "fields": {"revision": 1881, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3109, "fields": {"revision": 1882, "object_id": "311602c3-9557-44f7-8e1b-74968e6cc95e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"311602c3-9557-44f7-8e1b-74968e6cc95e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.967Z\", \"registration\": \"99772c19-ba11-4676-8e20-95cf9fb050fd\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI REEV P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-04-23\", \"application_outcome_notification_date\": \"2009-04-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Reeves - Well Driller : 38000-25/DRI REEV P"}}, {"model": "reversion.version", "pk": 3110, "fields": {"revision": 1882, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3111, "fields": {"revision": 1882, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3112, "fields": {"revision": 1882, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3113, "fields": {"revision": 1883, "object_id": "311b5a6d-11c4-4eac-b6c0-61d7cea805c9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"311b5a6d-11c4-4eac-b6c0-61d7cea805c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.979Z\", \"registration\": \"3f196ab1-8493-4f2c-bdeb-edaaacf33584\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SOVD T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Terry Sovdi - Well Driller : 38000-25/DRI SOVD T"}}, {"model": "reversion.version", "pk": 3114, "fields": {"revision": 1883, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3115, "fields": {"revision": 1883, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3116, "fields": {"revision": 1883, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3117, "fields": {"revision": 1884, "object_id": "313d90ca-7776-451e-8369-359b5c84b554", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"313d90ca-7776-451e-8369-359b5c84b554\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.989Z\", \"registration\": \"79965169-9640-4dd7-8074-24532c92cfa0\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI NEGG P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Neggers - Well Driller : 38000-25/DRI NEGG P"}}, {"model": "reversion.version", "pk": 3118, "fields": {"revision": 1884, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3119, "fields": {"revision": 1884, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3120, "fields": {"revision": 1884, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3121, "fields": {"revision": 1885, "object_id": "3160b880-76c6-437c-bdb0-586eeed3740e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3160b880-76c6-437c-bdb0-586eeed3740e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:57.998Z\", \"registration\": \"96bd16c7-7646-4552-ae2e-441c78eb70b9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TAYL H\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Henry Taylor - Pump Installer : 38000-25/PUMP TAYL H"}}, {"model": "reversion.version", "pk": 3122, "fields": {"revision": 1885, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3123, "fields": {"revision": 1885, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3124, "fields": {"revision": 1885, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3125, "fields": {"revision": 1886, "object_id": "317fd65b-4059-4040-b32e-28d0fb761e9b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"317fd65b-4059-4040-b32e-28d0fb761e9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.009Z\", \"registration\": \"f2b723d7-b5b4-402d-829a-829564b49060\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MAYN P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Patrick Mayne - Well Driller : 38000-25/DRI MAYN P"}}, {"model": "reversion.version", "pk": 3126, "fields": {"revision": 1886, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3127, "fields": {"revision": 1886, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3128, "fields": {"revision": 1886, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3129, "fields": {"revision": 1887, "object_id": "3187b9af-40fd-4b67-ae7a-8b919afb918d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3187b9af-40fd-4b67-ae7a-8b919afb918d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.019Z\", \"registration\": \"b4313d51-4936-49ff-b3c7-c9d347658be7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PEPP J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeff Peppler - Pump Installer : 38000-25/PUMP PEPP J"}}, {"model": "reversion.version", "pk": 3130, "fields": {"revision": 1887, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3131, "fields": {"revision": 1887, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3132, "fields": {"revision": 1887, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3133, "fields": {"revision": 1888, "object_id": "31e0eea1-ff0c-4a97-aa2b-ef7ec95b48b8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"31e0eea1-ff0c-4a97-aa2b-ef7ec95b48b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.031Z\", \"registration\": \"1f0e109a-00cd-4687-ae81-f3b677459915\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BROE T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tim Broere - Pump Installer : 38000-25/PUMP BROE T"}}, {"model": "reversion.version", "pk": 3134, "fields": {"revision": 1888, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3135, "fields": {"revision": 1888, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3136, "fields": {"revision": 1888, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3137, "fields": {"revision": 1889, "object_id": "31e83802-ce51-404e-a1e2-c57c13f05401", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"31e83802-ce51-404e-a1e2-c57c13f05401\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.042Z\", \"registration\": \"084803bc-6aac-4bc5-a839-447f73377599\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BLAC S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-13\", \"application_outcome_notification_date\": \"2005-12-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shane Black - Pump Installer : 38000-25/PUMP BLAC S"}}, {"model": "reversion.version", "pk": 3138, "fields": {"revision": 1889, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3139, "fields": {"revision": 1889, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3140, "fields": {"revision": 1889, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3141, "fields": {"revision": 1890, "object_id": "31edd42c-e5ff-4935-85c2-ec223e6c16c7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"31edd42c-e5ff-4935-85c2-ec223e6c16c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.052Z\", \"registration\": \"9a99e73b-4b57-40b2-99c3-58696c9f6a3c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CARO D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"primary_certificate_no\": \"00001-WW-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-05-01\", \"application_outcome_notification_date\": \"2017-05-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donkun Caron - Well Driller : 38000-25/DRI CARO D"}}, {"model": "reversion.version", "pk": 3142, "fields": {"revision": 1890, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3143, "fields": {"revision": 1890, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3144, "fields": {"revision": 1890, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 3145, "fields": {"revision": 1891, "object_id": "322259f0-4587-4cbb-be9f-14acc835933d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"322259f0-4587-4cbb-be9f-14acc835933d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.063Z\", \"registration\": \"8e878171-79ac-4c89-ab28-182e30f3d048\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HAWK R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Hawksworth - Well Driller : 38000-25/DRI HAWK R"}}, {"model": "reversion.version", "pk": 3146, "fields": {"revision": 1891, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3147, "fields": {"revision": 1891, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3148, "fields": {"revision": 1891, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3149, "fields": {"revision": 1892, "object_id": "32632fc7-4d1d-4e83-ac9c-5af20ff97e75", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"32632fc7-4d1d-4e83-ac9c-5af20ff97e75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.073Z\", \"registration\": \"333444ad-5540-45ab-be44-e0f71efb1dfd\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WALL J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Wallace - Well Driller : 38000-25/DRI WALL J"}}, {"model": "reversion.version", "pk": 3150, "fields": {"revision": 1892, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3151, "fields": {"revision": 1892, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3152, "fields": {"revision": 1892, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3153, "fields": {"revision": 1893, "object_id": "327de933-8b20-4373-841e-47d77db2c05f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"327de933-8b20-4373-841e-47d77db2c05f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.091Z\", \"registration\": \"b9bf5533-5eed-4081-ab24-ac2c73bfcae3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GOBE T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-08-04\", \"application_outcome_notification_date\": \"2006-08-04\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Gobert - Well Driller : 38000-25/DRI GOBE T"}}, {"model": "reversion.version", "pk": 3154, "fields": {"revision": 1893, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3155, "fields": {"revision": 1893, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3156, "fields": {"revision": 1893, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3157, "fields": {"revision": 1894, "object_id": "328c3e31-d081-4fa0-b862-192746a7f237", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"328c3e31-d081-4fa0-b862-192746a7f237\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.127Z\", \"registration\": \"91709315-6c75-4bd6-bad7-0c9ba05db68b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CUDL F\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Fred Cudlipp - Pump Installer : 38000-25/PUMP CUDL F"}}, {"model": "reversion.version", "pk": 3158, "fields": {"revision": 1894, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3159, "fields": {"revision": 1894, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3160, "fields": {"revision": 1894, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3161, "fields": {"revision": 1895, "object_id": "32d7f9ca-373c-4f8b-8b4d-47e1f1982323", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"32d7f9ca-373c-4f8b-8b4d-47e1f1982323\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.188Z\", \"registration\": \"01263d8a-a212-487c-8dd0-89a9a0da3105\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GILB J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/951707-4708NQ\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-01-11\", \"application_outcome_notification_date\": \"2011-01-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jonathan Gilbert - Well Driller : 38000-25/DRI GILB J"}}, {"model": "reversion.version", "pk": 3162, "fields": {"revision": 1895, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3163, "fields": {"revision": 1895, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3164, "fields": {"revision": 1895, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3165, "fields": {"revision": 1896, "object_id": "330c530f-bbcf-48b6-b016-0b10528d185a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"330c530f-bbcf-48b6-b016-0b10528d185a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.209Z\", \"registration\": \"626d4ab3-5fb5-4ad1-a07c-fa0969362d4d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PETE JA\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Peterson - Well Driller : 38000-25/DRI PETE JA"}}, {"model": "reversion.version", "pk": 3166, "fields": {"revision": 1896, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3167, "fields": {"revision": 1896, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3168, "fields": {"revision": 1896, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3169, "fields": {"revision": 1897, "object_id": "33164b46-729e-4254-83c5-c71d5115cdef", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"33164b46-729e-4254-83c5-c71d5115cdef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.219Z\", \"registration\": \"ecaf95bb-e9a0-4f4c-8587-68b9990476f7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JEST K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Keith Jestico - Pump Installer : 38000-25/PUMP JEST K"}}, {"model": "reversion.version", "pk": 3170, "fields": {"revision": 1897, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3171, "fields": {"revision": 1897, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3172, "fields": {"revision": 1897, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3173, "fields": {"revision": 1898, "object_id": "3323cca9-fdc1-4408-b135-e991d6371454", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3323cca9-fdc1-4408-b135-e991d6371454\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.230Z\", \"registration\": \"b3ba6677-7c13-4c1f-a57d-2c0dc227a352\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WARD D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Ward - Well Driller : 38000-25/DRI WARD D"}}, {"model": "reversion.version", "pk": 3174, "fields": {"revision": 1898, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3175, "fields": {"revision": 1898, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3176, "fields": {"revision": 1898, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3177, "fields": {"revision": 1899, "object_id": "333f61d3-b1fa-4b85-addf-5d06f691aebd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"333f61d3-b1fa-4b85-addf-5d06f691aebd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.247Z\", \"registration\": \"808676e0-506f-4c60-9f91-26b65664de17\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BYST D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dale Bystrom - Pump Installer : 38000-25/PUMP BYST D"}}, {"model": "reversion.version", "pk": 3178, "fields": {"revision": 1899, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3179, "fields": {"revision": 1899, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3180, "fields": {"revision": 1899, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3181, "fields": {"revision": 1900, "object_id": "3341d2ac-e32d-4170-a6db-8efa7f5e29ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3341d2ac-e32d-4170-a6db-8efa7f5e29ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.265Z\", \"registration\": \"75c84008-910b-4351-9b80-a15906d0b479\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BROU R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Brousseau - Pump Installer : 38000-25/PUMP BROU R"}}, {"model": "reversion.version", "pk": 3182, "fields": {"revision": 1900, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3183, "fields": {"revision": 1900, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3184, "fields": {"revision": 1900, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3185, "fields": {"revision": 1901, "object_id": "33f8abc6-b1db-40ab-b690-516dbd96eeb4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"33f8abc6-b1db-40ab-b690-516dbd96eeb4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.287Z\", \"registration\": \"d0a4ab16-04f8-4660-b0a3-de5bb7f5234a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BATY R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Russ Batyi - Pump Installer : 38000-25/PUMP BATY R"}}, {"model": "reversion.version", "pk": 3186, "fields": {"revision": 1901, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3187, "fields": {"revision": 1901, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3188, "fields": {"revision": 1901, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3189, "fields": {"revision": 1902, "object_id": "33fec6d1-1f30-4167-a464-f4cc7903195f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"33fec6d1-1f30-4167-a464-f4cc7903195f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.308Z\", \"registration\": \"294ac173-aab7-4b5a-bd5f-ed5d092e5ef2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MALL C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-06-14\", \"application_outcome_notification_date\": \"2016-06-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clinton Mallach - Pump Installer : 38000-25/PUMP MALL C"}}, {"model": "reversion.version", "pk": 3190, "fields": {"revision": 1902, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3191, "fields": {"revision": 1902, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3192, "fields": {"revision": 1902, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 3193, "fields": {"revision": 1903, "object_id": "341a292d-063c-46e7-bd4f-926c49dcf45a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"341a292d-063c-46e7-bd4f-926c49dcf45a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.329Z\", \"registration\": \"3697794d-b389-4381-826d-d1ec07009da9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PAKO H\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-10\", \"application_outcome_notification_date\": \"2004-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Hank Pakos - Pump Installer : 38000-25/PUMP PAKO H"}}, {"model": "reversion.version", "pk": 3194, "fields": {"revision": 1903, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3195, "fields": {"revision": 1903, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3196, "fields": {"revision": 1903, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3197, "fields": {"revision": 1904, "object_id": "343c7fac-e29a-4835-baa4-c3e0cbbddcd3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"343c7fac-e29a-4835-baa4-c3e0cbbddcd3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.340Z\", \"registration\": \"bc03d121-1c3f-4b67-88a1-540a94dc66a6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HALL M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Hall - Well Driller : 38000-25/DRI HALL M"}}, {"model": "reversion.version", "pk": 3198, "fields": {"revision": 1904, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3199, "fields": {"revision": 1904, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3200, "fields": {"revision": 1904, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3201, "fields": {"revision": 1905, "object_id": "34b23abe-2396-4d8f-9ef8-4a404ce90897", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"34b23abe-2396-4d8f-9ef8-4a404ce90897\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.351Z\", \"registration\": \"88c98d96-4909-464b-9d97-fd89056d2f9f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HOCK R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Hockridge - Pump Installer : 38000-25/PUMP HOCK R"}}, {"model": "reversion.version", "pk": 3202, "fields": {"revision": 1905, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3203, "fields": {"revision": 1905, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3204, "fields": {"revision": 1905, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3205, "fields": {"revision": 1906, "object_id": "351c679d-52e4-43ed-a53e-7455f7a96ce9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"351c679d-52e4-43ed-a53e-7455f7a96ce9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.360Z\", \"registration\": \"97edce28-ed3b-4629-9f7e-6cb4d8408aa8\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FLET L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00025-WW-08\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-25\", \"application_outcome_notification_date\": \"2008-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Logan Flett - Well Driller : 38000-25/DRI FLET L"}}, {"model": "reversion.version", "pk": 3206, "fields": {"revision": 1906, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3207, "fields": {"revision": 1906, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3208, "fields": {"revision": 1906, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3209, "fields": {"revision": 1907, "object_id": "355d41df-6d14-4c2c-9fb6-8b3c34c98ab8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"355d41df-6d14-4c2c-9fb6-8b3c34c98ab8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.368Z\", \"registration\": \"c1babb65-3f2b-40ef-962e-c76789a1a937\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DUBO G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gilbert Dubois - Pump Installer : 38000-25/PUMP DUBO G"}}, {"model": "reversion.version", "pk": 3210, "fields": {"revision": 1907, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3211, "fields": {"revision": 1907, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3212, "fields": {"revision": 1907, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3213, "fields": {"revision": 1908, "object_id": "355e6f5a-2826-4c66-ba25-ae169a3f4c16", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"355e6f5a-2826-4c66-ba25-ae169a3f4c16\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.376Z\", \"registration\": \"b073b902-29bb-4481-a7d6-a1a0c891e52a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KRUS M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-03\", \"application_outcome_notification_date\": \"2005-10-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Krushen - Pump Installer : 38000-25/PUMP KRUS M"}}, {"model": "reversion.version", "pk": 3214, "fields": {"revision": 1908, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3215, "fields": {"revision": 1908, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3216, "fields": {"revision": 1908, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3217, "fields": {"revision": 1909, "object_id": "35a57f02-ffaa-448e-955b-4d061150710a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"35a57f02-ffaa-448e-955b-4d061150710a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.383Z\", \"registration\": \"e807dcd8-c6cc-46f5-a84e-26663cac1fbf\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LOUG G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garry Lougheed - Pump Installer : 38000-25/PUMP LOUG G"}}, {"model": "reversion.version", "pk": 3218, "fields": {"revision": 1909, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3219, "fields": {"revision": 1909, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3220, "fields": {"revision": 1909, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3221, "fields": {"revision": 1910, "object_id": "36472b9e-8b8a-4dfd-9ef4-1b585f016cf8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"36472b9e-8b8a-4dfd-9ef4-1b585f016cf8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.392Z\", \"registration\": \"5705bb0a-375e-4685-8e35-82cf91b9a0c0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SPOO C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-02-02\", \"application_outcome_notification_date\": \"2011-02-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Craig Spooner - Pump Installer : 38000-25/PUMP SPOO C"}}, {"model": "reversion.version", "pk": 3222, "fields": {"revision": 1910, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3223, "fields": {"revision": 1910, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3224, "fields": {"revision": 1910, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3225, "fields": {"revision": 1911, "object_id": "368364f0-c7ac-459f-8650-40ee1edad17e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"368364f0-c7ac-459f-8650-40ee1edad17e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.399Z\", \"registration\": \"f706de15-4c46-49df-a073-9a6f6de996f3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SMAL M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Smallwood - Well Driller : 38000-25/DRI SMAL M"}}, {"model": "reversion.version", "pk": 3226, "fields": {"revision": 1911, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3227, "fields": {"revision": 1911, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3228, "fields": {"revision": 1911, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3229, "fields": {"revision": 1912, "object_id": "368c1e96-7b49-42d3-a41b-5096e26668e8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"368c1e96-7b49-42d3-a41b-5096e26668e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.407Z\", \"registration\": \"e668ec6e-c6c2-46dd-b5aa-cfbed0b73d83\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI JANC P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-17\", \"application_outcome_notification_date\": \"2005-10-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Janczukowski - Well Driller : 38000-25/DRI JANC P"}}, {"model": "reversion.version", "pk": 3230, "fields": {"revision": 1912, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3231, "fields": {"revision": 1912, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3232, "fields": {"revision": 1912, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3233, "fields": {"revision": 1913, "object_id": "36b04120-ccfe-46f0-af85-c58743e7a6bd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"36b04120-ccfe-46f0-af85-c58743e7a6bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.415Z\", \"registration\": \"8ce1a872-1462-4bfc-9fc1-5f6e96561a35\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PARN D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Parnell - Well Driller : 38000-25/DRI PARN D"}}, {"model": "reversion.version", "pk": 3234, "fields": {"revision": 1913, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3235, "fields": {"revision": 1913, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3236, "fields": {"revision": 1913, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3237, "fields": {"revision": 1914, "object_id": "36ca16c2-22e2-4f4c-9084-f4a6af1e1718", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"36ca16c2-22e2-4f4c-9084-f4a6af1e1718\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.423Z\", \"registration\": \"55f6e36b-5c69-4ea6-9dc0-953860a60c0e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI RAND M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"primary_certificate_no\": \"00003-WW-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-08-18\", \"application_outcome_notification_date\": \"2017-08-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Matthew Randall - Well Driller : 38000-25/DRI RAND M"}}, {"model": "reversion.version", "pk": 3238, "fields": {"revision": 1914, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3239, "fields": {"revision": 1914, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3240, "fields": {"revision": 1914, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 3241, "fields": {"revision": 1915, "object_id": "36ec4a8a-4bf4-4bf8-b2b5-857540fc7947", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"36ec4a8a-4bf4-4bf8-b2b5-857540fc7947\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.431Z\", \"registration\": \"a6cb61b2-25f9-4796-984d-76fce735731a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STAN D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Stanvick - Pump Installer : 38000-25/PUMP STAN D"}}, {"model": "reversion.version", "pk": 3242, "fields": {"revision": 1915, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3243, "fields": {"revision": 1915, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3244, "fields": {"revision": 1915, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3245, "fields": {"revision": 1916, "object_id": "376a45c8-c620-45e9-8478-e110fc641e0f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"376a45c8-c620-45e9-8478-e110fc641e0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.438Z\", \"registration\": \"6376d13d-7b24-43dc-98d9-3b641aeeebef\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BRAN L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Luciano Brancato - Well Driller : 38000-25/DRI BRAN L"}}, {"model": "reversion.version", "pk": 3246, "fields": {"revision": 1916, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3247, "fields": {"revision": 1916, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3248, "fields": {"revision": 1916, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3249, "fields": {"revision": 1917, "object_id": "3816f2f4-2e0c-4c7f-9df3-cabbd534ed2a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3816f2f4-2e0c-4c7f-9df3-cabbd534ed2a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.446Z\", \"registration\": \"c22c3dd5-5f20-4da3-9fe0-566c26de4c4e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LAUC D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0036-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-06-18\", \"application_outcome_notification_date\": \"2008-06-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Lauckner - Well Driller : 38000-25/DRI LAUC D"}}, {"model": "reversion.version", "pk": 3250, "fields": {"revision": 1917, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3251, "fields": {"revision": 1917, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3252, "fields": {"revision": 1917, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3253, "fields": {"revision": 1918, "object_id": "38924fe1-bcb4-4e1b-8ad6-549ced7495d7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"38924fe1-bcb4-4e1b-8ad6-549ced7495d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.453Z\", \"registration\": \"f44e6ed8-d505-453b-b37a-c92e91ac3501\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI UNRA H\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Hank Unrau - Well Driller : 38000-25/DRI UNRA H"}}, {"model": "reversion.version", "pk": 3254, "fields": {"revision": 1918, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3255, "fields": {"revision": 1918, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3256, "fields": {"revision": 1918, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3257, "fields": {"revision": 1919, "object_id": "38972d4d-0f6a-4e66-b0be-0017e5d5f9fa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"38972d4d-0f6a-4e66-b0be-0017e5d5f9fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.460Z\", \"registration\": \"019daf7d-5d01-4641-ba0d-7540b0a5c64c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PELLE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2006-132\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-05-17\", \"application_outcome_notification_date\": \"2007-05-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Pelletier - Well Driller : 38000-25/DRI PELLE K"}}, {"model": "reversion.version", "pk": 3258, "fields": {"revision": 1919, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3259, "fields": {"revision": 1919, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3260, "fields": {"revision": 1919, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3261, "fields": {"revision": 1920, "object_id": "38a4f000-b9f5-47f1-9d72-034eb616932d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"38a4f000-b9f5-47f1-9d72-034eb616932d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.467Z\", \"registration\": \"44a2527f-7f8f-4f9b-a168-1375953a2d82\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WEFL M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Martin Weflen - Pump Installer : 38000-25/PUMP WEFL M"}}, {"model": "reversion.version", "pk": 3262, "fields": {"revision": 1920, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3263, "fields": {"revision": 1920, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3264, "fields": {"revision": 1920, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3265, "fields": {"revision": 1921, "object_id": "38b0ffc6-4b08-4ac5-9f37-34f0dd32e2b9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"38b0ffc6-4b08-4ac5-9f37-34f0dd32e2b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.476Z\", \"registration\": \"50a8bb50-58e7-47be-a7fa-6949fb99200f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MULV W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-04-24\", \"application_outcome_notification_date\": \"2013-04-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wesley Mulvin - Pump Installer : 38000-25/PUMP MULV W"}}, {"model": "reversion.version", "pk": 3266, "fields": {"revision": 1921, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3267, "fields": {"revision": 1921, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3268, "fields": {"revision": 1921, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3269, "fields": {"revision": 1922, "object_id": "38e5aafc-fdf0-42e6-9a69-518d88bf3f8b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"38e5aafc-fdf0-42e6-9a69-518d88bf3f8b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.484Z\", \"registration\": \"b3ca92e5-997e-402c-8ae2-d83a3816d320\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FAAS P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-170\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-08\", \"application_outcome_notification_date\": \"2010-09-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Faasse - Well Driller : 38000-25/DRI FAAS P"}}, {"model": "reversion.version", "pk": 3270, "fields": {"revision": 1922, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3271, "fields": {"revision": 1922, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3272, "fields": {"revision": 1922, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3273, "fields": {"revision": 1923, "object_id": "38e6c835-39c7-47b2-83ae-133486674190", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"38e6c835-39c7-47b2-83ae-133486674190\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.493Z\", \"registration\": \"54763e20-8805-4eec-b7e2-a88917d20012\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI JACO A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-16\", \"application_outcome_notification_date\": \"2005-08-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Jacobson - Well Driller : 38000-25/DRI JACO A"}}, {"model": "reversion.version", "pk": 3274, "fields": {"revision": 1923, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3275, "fields": {"revision": 1923, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3276, "fields": {"revision": 1923, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3277, "fields": {"revision": 1924, "object_id": "39084b92-6fcd-49a5-9ffc-efd9d00509d0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"39084b92-6fcd-49a5-9ffc-efd9d00509d0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.500Z\", \"registration\": \"3fd08156-4448-4f55-965e-1e80d552aa51\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SEYM B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brent Seymour - Well Driller : 38000-25/DRI SEYM B"}}, {"model": "reversion.version", "pk": 3278, "fields": {"revision": 1924, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3279, "fields": {"revision": 1924, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3280, "fields": {"revision": 1924, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3281, "fields": {"revision": 1925, "object_id": "398c6131-ca9e-4261-87c5-def8e6547d95", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"398c6131-ca9e-4261-87c5-def8e6547d95\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.510Z\", \"registration\": \"2d42435d-53a1-4016-bd82-5f925c183fb8\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI DODD W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Dodd - Well Driller : 38000-25/DRI DODD W"}}, {"model": "reversion.version", "pk": 3282, "fields": {"revision": 1925, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3283, "fields": {"revision": 1925, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3284, "fields": {"revision": 1925, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3285, "fields": {"revision": 1926, "object_id": "39aa74c2-705c-45e5-ab7b-c37bcf8d3b01", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"39aa74c2-705c-45e5-ab7b-c37bcf8d3b01\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.518Z\", \"registration\": \"ac90e427-efc2-47c0-8231-d5b294dfc102\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SHAR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Sharp - Well Driller : 38000-25/DRI SHAR J"}}, {"model": "reversion.version", "pk": 3286, "fields": {"revision": 1926, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3287, "fields": {"revision": 1926, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3288, "fields": {"revision": 1926, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3289, "fields": {"revision": 1927, "object_id": "39f443f2-188e-4e90-b252-d11787fbe162", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"39f443f2-188e-4e90-b252-d11787fbe162\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.526Z\", \"registration\": \"1d31c8d7-7689-4e45-a241-d5c92eda276c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CART J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-04-08\", \"application_outcome_notification_date\": \"2009-04-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joe Carter - Pump Installer : 38000-25/PUMP CART J"}}, {"model": "reversion.version", "pk": 3290, "fields": {"revision": 1927, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3291, "fields": {"revision": 1927, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3292, "fields": {"revision": 1927, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3293, "fields": {"revision": 1928, "object_id": "39faf8d6-dd81-49fe-985c-a5be12f758ba", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"39faf8d6-dd81-49fe-985c-a5be12f758ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.534Z\", \"registration\": \"677db48e-cdac-4ba8-8c8b-31681b5bb973\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KASH B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bryan Kashmark - Pump Installer : 38000-25/PUMP KASH B"}}, {"model": "reversion.version", "pk": 3294, "fields": {"revision": 1928, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3295, "fields": {"revision": 1928, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3296, "fields": {"revision": 1928, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3297, "fields": {"revision": 1929, "object_id": "3a094cd9-706b-4738-bd39-0a2b7dbdfc44", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3a094cd9-706b-4738-bd39-0a2b7dbdfc44\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.542Z\", \"registration\": \"bc58a9fc-0620-4abd-b92d-fe5b6e72bf81\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MOOR G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Moore - Pump Installer : 38000-25/PUMP MOOR G"}}, {"model": "reversion.version", "pk": 3298, "fields": {"revision": 1929, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3299, "fields": {"revision": 1929, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3300, "fields": {"revision": 1929, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3301, "fields": {"revision": 1930, "object_id": "3a404d46-2834-43e3-9e65-5f39bf174e25", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3a404d46-2834-43e3-9e65-5f39bf174e25\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.550Z\", \"registration\": \"7f70f1f3-e206-40fe-adfe-7466537e8084\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BROW M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Brown - Pump Installer : 38000-25/PUMP BROW M"}}, {"model": "reversion.version", "pk": 3302, "fields": {"revision": 1930, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3303, "fields": {"revision": 1930, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3304, "fields": {"revision": 1930, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3305, "fields": {"revision": 1931, "object_id": "3a9fd722-fa28-4f0d-84ec-65260b18c9c4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3a9fd722-fa28-4f0d-84ec-65260b18c9c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.557Z\", \"registration\": \"52a90bb8-337e-432a-9b9f-76cdbad83bec\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACD R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-07\", \"application_outcome_notification_date\": \"2005-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy MacDonald - Pump Installer : 38000-25/PUMP MACD R"}}, {"model": "reversion.version", "pk": 3306, "fields": {"revision": 1931, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3307, "fields": {"revision": 1931, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3308, "fields": {"revision": 1931, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3309, "fields": {"revision": 1932, "object_id": "3b6e0620-bf55-4734-a02b-f0d43af4b3e4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3b6e0620-bf55-4734-a02b-f0d43af4b3e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.564Z\", \"registration\": \"80e7f8ad-d613-46d8-b373-b9fd87cc18c5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HENN B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Henning - Well Driller : 38000-25/DRI HENN B"}}, {"model": "reversion.version", "pk": 3310, "fields": {"revision": 1932, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3311, "fields": {"revision": 1932, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3312, "fields": {"revision": 1932, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3313, "fields": {"revision": 1933, "object_id": "3ba64787-6ef9-48fc-8f54-8c60cd92d957", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3ba64787-6ef9-48fc-8f54-8c60cd92d957\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.572Z\", \"registration\": \"f6da9c87-5be1-416c-bd2b-b8434e61a7a2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BERG F\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-05\", \"application_outcome_notification_date\": \"2006-06-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Franz Bergendahl - Pump Installer : 38000-25/PUMP BERG F"}}, {"model": "reversion.version", "pk": 3314, "fields": {"revision": 1933, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3315, "fields": {"revision": 1933, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3316, "fields": {"revision": 1933, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3317, "fields": {"revision": 1934, "object_id": "3bcec83a-9cf4-4d29-92e8-24b5800111c9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3bcec83a-9cf4-4d29-92e8-24b5800111c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.579Z\", \"registration\": \"5b224240-76cc-47dc-b157-10bf4da82e02\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WEST G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gil Weston - Well Driller : 38000-25/DRI WEST G"}}, {"model": "reversion.version", "pk": 3318, "fields": {"revision": 1934, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3319, "fields": {"revision": 1934, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3320, "fields": {"revision": 1934, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3321, "fields": {"revision": 1935, "object_id": "3c0479c8-97fe-42b6-8a43-333e5000df8a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3c0479c8-97fe-42b6-8a43-333e5000df8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.586Z\", \"registration\": \"4e98c4be-9a6d-4af5-8ceb-026e650e9694\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LABR J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-24\", \"application_outcome_notification_date\": \"2006-07-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry LaBrie - Well Driller : 38000-25/DRI LABR J"}}, {"model": "reversion.version", "pk": 3322, "fields": {"revision": 1935, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3323, "fields": {"revision": 1935, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3324, "fields": {"revision": 1935, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3325, "fields": {"revision": 1936, "object_id": "3c0d81a2-6901-4b33-8318-f6d4c9f6fbcd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3c0d81a2-6901-4b33-8318-f6d4c9f6fbcd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.593Z\", \"registration\": \"581dffed-be13-4a15-80b9-fab83aa39bee\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PORT M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-28\", \"application_outcome_notification_date\": \"2006-04-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Merv Porteous - Pump Installer : 38000-25/PUMP PORT M"}}, {"model": "reversion.version", "pk": 3326, "fields": {"revision": 1936, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3327, "fields": {"revision": 1936, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3328, "fields": {"revision": 1936, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3329, "fields": {"revision": 1937, "object_id": "3c1b0e5b-b7d0-4c6d-8e3b-4895a19d9dd7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3c1b0e5b-b7d0-4c6d-8e3b-4895a19d9dd7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.601Z\", \"registration\": \"934e20aa-bd05-4ff8-b26b-63b6933a1447\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROCK S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-21\", \"application_outcome_notification_date\": \"2005-11-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Sam Rockson - Pump Installer : 38000-25/PUMP ROCK S"}}, {"model": "reversion.version", "pk": 3330, "fields": {"revision": 1937, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3331, "fields": {"revision": 1937, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3332, "fields": {"revision": 1937, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3333, "fields": {"revision": 1938, "object_id": "3c31c267-f71f-4627-ab0d-22a7a0fa4905", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3c31c267-f71f-4627-ab0d-22a7a0fa4905\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.609Z\", \"registration\": \"404b69a6-283f-4ad7-a011-f646223c3edd\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MACK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joe MacKenzie - Well Driller : 38000-25/DRI MACK J"}}, {"model": "reversion.version", "pk": 3334, "fields": {"revision": 1938, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3335, "fields": {"revision": 1938, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3336, "fields": {"revision": 1938, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3337, "fields": {"revision": 1939, "object_id": "3c37c546-99cb-4f03-b193-3b02af107473", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3c37c546-99cb-4f03-b193-3b02af107473\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.616Z\", \"registration\": \"32ba06b9-8119-4109-80bb-28a56efa5d1a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI DWYE B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-09\", \"application_outcome_notification_date\": \"2016-02-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bradley Dwyer - Well Driller : 38000-25/DRI DWYE B"}}, {"model": "reversion.version", "pk": 3338, "fields": {"revision": 1939, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3339, "fields": {"revision": 1939, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3340, "fields": {"revision": 1939, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3341, "fields": {"revision": 1940, "object_id": "3cccd717-ef19-4889-90e0-a2fad85705bc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3cccd717-ef19-4889-90e0-a2fad85705bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.624Z\", \"registration\": \"58ec93a2-47d8-40a5-a5c1-73dd75f2370a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SMIT R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randall Smithson - Well Driller : 38000-25/DRI SMIT R"}}, {"model": "reversion.version", "pk": 3342, "fields": {"revision": 1940, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3343, "fields": {"revision": 1940, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3344, "fields": {"revision": 1940, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3345, "fields": {"revision": 1941, "object_id": "3d08e5bb-ca7b-4a66-b4d0-e83336313652", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3d08e5bb-ca7b-4a66-b4d0-e83336313652\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.632Z\", \"registration\": \"84c1b7dd-80a1-47e4-8b5b-ad004bc42da2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ANDE G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Anderson - Pump Installer : 38000-25/PUMP ANDE G"}}, {"model": "reversion.version", "pk": 3346, "fields": {"revision": 1941, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3347, "fields": {"revision": 1941, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3348, "fields": {"revision": 1941, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3349, "fields": {"revision": 1942, "object_id": "3d452cfd-5e91-4610-81b4-d7b01b2b5819", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3d452cfd-5e91-4610-81b4-d7b01b2b5819\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.639Z\", \"registration\": \"338c46da-7c4e-4297-a8c2-58f028091729\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SLAD C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0019-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Calvin Slade - Well Driller : 38000-25/DRI SLAD C"}}, {"model": "reversion.version", "pk": 3350, "fields": {"revision": 1942, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3351, "fields": {"revision": 1942, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3352, "fields": {"revision": 1942, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3353, "fields": {"revision": 1943, "object_id": "3d713eb0-ddc5-4ff5-a2e1-ac40277031b8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3d713eb0-ddc5-4ff5-a2e1-ac40277031b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.646Z\", \"registration\": \"e67007a7-947b-4ddf-95e8-529270065fcb\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PARK M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00003-GN-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-07-28\", \"application_outcome_notification_date\": \"2017-07-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Parkinson - Well Driller : 38000-25/DRI PARK M"}}, {"model": "reversion.version", "pk": 3354, "fields": {"revision": 1943, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3355, "fields": {"revision": 1943, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3356, "fields": {"revision": 1943, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 3357, "fields": {"revision": 1944, "object_id": "3e42846c-767e-4be2-a9eb-482eeef9d80a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3e42846c-767e-4be2-a9eb-482eeef9d80a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.653Z\", \"registration\": \"e1c4e0f4-cb55-4d9f-b18f-63e3c5efd747\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI OPPE J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-150\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-05-21\", \"application_outcome_notification_date\": \"2008-05-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Opper - Well Driller : 38000-25/DRI OPPE J"}}, {"model": "reversion.version", "pk": 3358, "fields": {"revision": 1944, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3359, "fields": {"revision": 1944, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3360, "fields": {"revision": 1944, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3361, "fields": {"revision": 1945, "object_id": "3e76a2f7-acd9-410d-ad4d-b38da75c55ff", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3e76a2f7-acd9-410d-ad4d-b38da75c55ff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.660Z\", \"registration\": \"44b6be8c-0c09-41fb-8f4b-65c7041132bf\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOCH J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeffrey Bochek - Well Driller : 38000-25/DRI BOCH J"}}, {"model": "reversion.version", "pk": 3362, "fields": {"revision": 1945, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3363, "fields": {"revision": 1945, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3364, "fields": {"revision": 1945, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3365, "fields": {"revision": 1946, "object_id": "3e9870b7-dcf9-4e46-b4fd-d8dd6ca402de", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3e9870b7-dcf9-4e46-b4fd-d8dd6ca402de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.668Z\", \"registration\": \"b637494a-ad78-4944-8500-ecd4c9b2c449\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CRAI K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kevin Craig - Pump Installer : 38000-25/PUMP CRAI K"}}, {"model": "reversion.version", "pk": 3366, "fields": {"revision": 1946, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3367, "fields": {"revision": 1946, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3368, "fields": {"revision": 1946, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3369, "fields": {"revision": 1947, "object_id": "3e99305f-e2f5-43d6-9343-a1606ba063d4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3e99305f-e2f5-43d6-9343-a1606ba063d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.676Z\", \"registration\": \"7a46c5d8-d4ca-47bd-b713-31dab8a1bf71\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LOFT M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"035-0/1147933\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-05-31\", \"application_outcome_notification_date\": \"2017-05-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark Loftus - Well Driller : 38000-25/DRI LOFT M"}}, {"model": "reversion.version", "pk": 3370, "fields": {"revision": 1947, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3371, "fields": {"revision": 1947, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3372, "fields": {"revision": 1947, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 3373, "fields": {"revision": 1948, "object_id": "3eb23a0a-7765-49a4-b8c9-24009542f97e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3eb23a0a-7765-49a4-b8c9-24009542f97e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.684Z\", \"registration\": \"1dccb43e-e582-4229-9cce-fcdde6872638\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WOLF S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0032-WW-89\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Simon Wolford - Well Driller : 38000-25/DRI WOLF S"}}, {"model": "reversion.version", "pk": 3374, "fields": {"revision": 1948, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3375, "fields": {"revision": 1948, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3376, "fields": {"revision": 1948, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3377, "fields": {"revision": 1949, "object_id": "3ed51051-5410-49c2-82fc-f51e468adccc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3ed51051-5410-49c2-82fc-f51e468adccc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.692Z\", \"registration\": \"d20f95ed-fd32-453c-8ad0-1f53ba88513c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GOUG R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-04-24\", \"application_outcome_notification_date\": \"2017-04-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Gough - Pump Installer : 38000-25/PUMP GOUG R"}}, {"model": "reversion.version", "pk": 3378, "fields": {"revision": 1949, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3379, "fields": {"revision": 1949, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3380, "fields": {"revision": 1949, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 3381, "fields": {"revision": 1950, "object_id": "3f25e9bb-afc7-40d0-9c9a-1bbc5f7edab0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3f25e9bb-afc7-40d0-9c9a-1bbc5f7edab0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.699Z\", \"registration\": \"cd716026-060f-4100-9463-83a375e3612b\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI RAMS S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shane Ramsey - Well Driller : 38000-25/DRI RAMS S"}}, {"model": "reversion.version", "pk": 3382, "fields": {"revision": 1950, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3383, "fields": {"revision": 1950, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3384, "fields": {"revision": 1950, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3385, "fields": {"revision": 1951, "object_id": "3f36cbf5-efb0-4292-b9cb-db432ac770ea", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3f36cbf5-efb0-4292-b9cb-db432ac770ea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.707Z\", \"registration\": \"b86bae2e-333e-41ce-a123-b6b82b804699\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ROBE D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Roberts - Well Driller : 38000-25/DRI ROBE D"}}, {"model": "reversion.version", "pk": 3386, "fields": {"revision": 1951, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3387, "fields": {"revision": 1951, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3388, "fields": {"revision": 1951, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3389, "fields": {"revision": 1952, "object_id": "3f5615a4-2470-4131-bd70-332c3cc0eb92", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3f5615a4-2470-4131-bd70-332c3cc0eb92\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.714Z\", \"registration\": \"e35e91ee-4d83-4620-9cb2-e56ff643873c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HARD R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Harden - Well Driller : 38000-25/DRI HARD R"}}, {"model": "reversion.version", "pk": 3390, "fields": {"revision": 1952, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3391, "fields": {"revision": 1952, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3392, "fields": {"revision": 1952, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3393, "fields": {"revision": 1953, "object_id": "3f582f7d-9c30-4de6-872c-f2696e13354e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3f582f7d-9c30-4de6-872c-f2696e13354e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.722Z\", \"registration\": \"eaf2f9a8-d8d9-4316-9978-da371a456ae6\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HUNT E\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ernest Hunter - Pump Installer : 38000-25/PUMP HUNT E"}}, {"model": "reversion.version", "pk": 3394, "fields": {"revision": 1953, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3395, "fields": {"revision": 1953, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3396, "fields": {"revision": 1953, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3397, "fields": {"revision": 1954, "object_id": "3f89d47b-9558-4024-8f23-e3bcc0bbbbb0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"3f89d47b-9558-4024-8f23-e3bcc0bbbbb0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.729Z\", \"registration\": \"bc03d121-1c3f-4b67-88a1-540a94dc66a6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HALL M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Hall - Well Driller : 38000-25/DRI HALL M"}}, {"model": "reversion.version", "pk": 3398, "fields": {"revision": 1954, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3399, "fields": {"revision": 1954, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3400, "fields": {"revision": 1954, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3401, "fields": {"revision": 1955, "object_id": "40063d15-94ae-45ef-a83d-35f97844708a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"40063d15-94ae-45ef-a83d-35f97844708a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.736Z\", \"registration\": \"0cf7b6f8-8677-48c0-83e4-910c5b5be93c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CRON R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-13\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Cronin - Well Driller : 38000-25/DRI CRON R"}}, {"model": "reversion.version", "pk": 3402, "fields": {"revision": 1955, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3403, "fields": {"revision": 1955, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3404, "fields": {"revision": 1955, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3405, "fields": {"revision": 1956, "object_id": "402ccf4a-78cc-45db-b675-57af41a96c7b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"402ccf4a-78cc-45db-b675-57af41a96c7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.743Z\", \"registration\": \"36237d32-33cd-43ff-afbd-b0c67d6a7a71\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WATT D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0037-WW-93\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Watt - Well Driller : 38000-25/DRI WATT D"}}, {"model": "reversion.version", "pk": 3406, "fields": {"revision": 1956, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3407, "fields": {"revision": 1956, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3408, "fields": {"revision": 1956, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3409, "fields": {"revision": 1957, "object_id": "4061eae1-390b-45d3-8a75-a1b2ec36565b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4061eae1-390b-45d3-8a75-a1b2ec36565b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.751Z\", \"registration\": \"7855f881-b8e1-43f5-bc36-bbc239b15ef7\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WIND D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Windecker - Well Driller : 38000-25/DRI WIND D"}}, {"model": "reversion.version", "pk": 3410, "fields": {"revision": 1957, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3411, "fields": {"revision": 1957, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3412, "fields": {"revision": 1957, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3413, "fields": {"revision": 1958, "object_id": "40a7bfac-93bf-41b0-b5b5-dfb366f05a26", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"40a7bfac-93bf-41b0-b5b5-dfb366f05a26\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.758Z\", \"registration\": \"445ad606-b9c8-4c45-8842-e1e8eafa7c05\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PATE G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2004-121\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Paterson - Well Driller : 38000-25/DRI PATE G"}}, {"model": "reversion.version", "pk": 3414, "fields": {"revision": 1958, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3415, "fields": {"revision": 1958, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3416, "fields": {"revision": 1958, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3417, "fields": {"revision": 1959, "object_id": "40ed02c6-901c-4fe8-b4e2-33b55be1be3d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"40ed02c6-901c-4fe8-b4e2-33b55be1be3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.766Z\", \"registration\": \"91817bbb-c414-462e-b469-c5e033864654\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FYFE J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Fyfe - Pump Installer : 38000-25/PUMP FYFE J"}}, {"model": "reversion.version", "pk": 3418, "fields": {"revision": 1959, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3419, "fields": {"revision": 1959, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3420, "fields": {"revision": 1959, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3421, "fields": {"revision": 1960, "object_id": "411f82d9-aa23-417b-bee2-76263234c2b4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"411f82d9-aa23-417b-bee2-76263234c2b4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.774Z\", \"registration\": \"8999ddf0-8ec4-403a-beb0-c800b15ba775\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STRA R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Strate - Pump Installer : 38000-25/PUMP STRA R"}}, {"model": "reversion.version", "pk": 3422, "fields": {"revision": 1960, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3423, "fields": {"revision": 1960, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3424, "fields": {"revision": 1960, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3425, "fields": {"revision": 1961, "object_id": "413f90b2-1ac3-42e4-bba8-c41932927861", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"413f90b2-1ac3-42e4-bba8-c41932927861\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.782Z\", \"registration\": \"afa2b466-7e52-4747-962a-21ee1f259bd7\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BUCH G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gray Buchanan - Well Driller : 38000-25/DRI BUCH G"}}, {"model": "reversion.version", "pk": 3426, "fields": {"revision": 1961, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3427, "fields": {"revision": 1961, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3428, "fields": {"revision": 1961, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3429, "fields": {"revision": 1962, "object_id": "41805374-400b-41b5-8638-18a577e28d23", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"41805374-400b-41b5-8638-18a577e28d23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.790Z\", \"registration\": \"ac90e427-efc2-47c0-8231-d5b294dfc102\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SHAR J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Sharp - Well Driller : 38000-25/DRI SHAR J"}}, {"model": "reversion.version", "pk": 3430, "fields": {"revision": 1962, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3431, "fields": {"revision": 1962, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3432, "fields": {"revision": 1962, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3433, "fields": {"revision": 1963, "object_id": "41860829-617c-4ed0-9646-2aa240fce858", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"41860829-617c-4ed0-9646-2aa240fce858\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.804Z\", \"registration\": \"8f504182-63d2-44c6-ac01-0bfca2ccea73\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HOCK S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0004-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-05\", \"application_outcome_notification_date\": \"2006-07-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Saul Hock - Well Driller : 38000-25/DRI HOCK S"}}, {"model": "reversion.version", "pk": 3434, "fields": {"revision": 1963, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3435, "fields": {"revision": 1963, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3436, "fields": {"revision": 1963, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3437, "fields": {"revision": 1964, "object_id": "421c1880-58c5-43c1-bc27-f04d6c37f501", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"421c1880-58c5-43c1-bc27-f04d6c37f501\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.812Z\", \"registration\": \"d159559e-846b-4c10-9a7f-e7c94ae751d3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FRAN R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Franks - Well Driller : 38000-25/DRI FRAN R"}}, {"model": "reversion.version", "pk": 3438, "fields": {"revision": 1964, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3439, "fields": {"revision": 1964, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3440, "fields": {"revision": 1964, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3441, "fields": {"revision": 1965, "object_id": "421ff45c-2771-4d40-9c4e-f0c3638f667e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"421ff45c-2771-4d40-9c4e-f0c3638f667e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.819Z\", \"registration\": \"8cc77d35-4da1-4c69-863c-90f5832c3cc3\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHE W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-24\", \"application_outcome_notification_date\": \"2005-08-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wolfgang Scheuer - Pump Installer : 38000-25/PUMP SCHE W"}}, {"model": "reversion.version", "pk": 3442, "fields": {"revision": 1965, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3443, "fields": {"revision": 1965, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3444, "fields": {"revision": 1965, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3445, "fields": {"revision": 1966, "object_id": "422f9b9c-6b08-4240-bbb7-ddad23962c47", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"422f9b9c-6b08-4240-bbb7-ddad23962c47\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.828Z\", \"registration\": \"57fe1507-2a5b-4e9b-b802-2a4eb9a13e79\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACD I\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-03-26\", \"application_outcome_notification_date\": \"2012-03-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ian Macdonald - Pump Installer : 38000-25/PUMP MACD I"}}, {"model": "reversion.version", "pk": 3446, "fields": {"revision": 1966, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3447, "fields": {"revision": 1966, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3448, "fields": {"revision": 1966, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3449, "fields": {"revision": 1967, "object_id": "42f2d8dc-e992-41bc-bd3a-3aa538be3f22", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"42f2d8dc-e992-41bc-bd3a-3aa538be3f22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.836Z\", \"registration\": \"7b4baf50-1e99-49b4-a8c7-f23a8ca069fc\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI RIEH C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clayton Riehl - Well Driller : 38000-25/DRI RIEH C"}}, {"model": "reversion.version", "pk": 3450, "fields": {"revision": 1967, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3451, "fields": {"revision": 1967, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3452, "fields": {"revision": 1967, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3453, "fields": {"revision": 1968, "object_id": "43634ded-b0b9-481e-8e23-1fcc8e993e3c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"43634ded-b0b9-481e-8e23-1fcc8e993e3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.844Z\", \"registration\": \"dface05c-f5ea-4d64-9965-88e7d3090d9d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BROW I\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-18\", \"application_outcome_notification_date\": \"2006-09-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ian Brown - Well Driller : 38000-25/DRI BROW I"}}, {"model": "reversion.version", "pk": 3454, "fields": {"revision": 1968, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3455, "fields": {"revision": 1968, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3456, "fields": {"revision": 1968, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3457, "fields": {"revision": 1969, "object_id": "4374c9e0-4a67-4584-a00d-1cbb6fd1f35e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4374c9e0-4a67-4584-a00d-1cbb6fd1f35e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.852Z\", \"registration\": \"86ec7467-5e4e-4be5-a87c-c483c8cc7db6\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LAJE N\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1dfd37f5-5082-497a-be4e-6facd1d4dee9\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-29\", \"application_outcome_notification_date\": \"2015-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Neale Lajeunesse - Pump Installer : 38000-25/PUMP LAJE N"}}, {"model": "reversion.version", "pk": 3458, "fields": {"revision": 1969, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3459, "fields": {"revision": 1969, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3460, "fields": {"revision": 1969, "object_id": "1dfd37f5-5082-497a-be4e-6facd1d4dee9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1dfd37f5-5082-497a-be4e-6facd1d4dee9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate, Class 2\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate, Class 2"}}, {"model": "reversion.version", "pk": 3461, "fields": {"revision": 1970, "object_id": "43a34898-11d9-4518-813f-27fbdc2c291d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"43a34898-11d9-4518-813f-27fbdc2c291d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.861Z\", \"registration\": \"036f0c6b-02dc-4f1b-a65e-305e5adb47e5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WANG F\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Floyd (Bob) Wangler - Well Driller : 38000-25/DRI WANG F"}}, {"model": "reversion.version", "pk": 3462, "fields": {"revision": 1970, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3463, "fields": {"revision": 1970, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3464, "fields": {"revision": 1970, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3465, "fields": {"revision": 1971, "object_id": "43b0fe34-e680-4f60-8774-22794f57594e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"43b0fe34-e680-4f60-8774-22794f57594e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.868Z\", \"registration\": \"5f6b45ef-5eb5-4e51-88f3-e2c442ed9006\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STEV G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-05-25\", \"application_outcome_notification_date\": \"2012-05-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Steveson - Pump Installer : 38000-25/PUMP STEV G"}}, {"model": "reversion.version", "pk": 3466, "fields": {"revision": 1971, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3467, "fields": {"revision": 1971, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3468, "fields": {"revision": 1971, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3469, "fields": {"revision": 1972, "object_id": "43c6711e-7b6d-4ba7-83e6-a5b66f30655c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"43c6711e-7b6d-4ba7-83e6-a5b66f30655c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.876Z\", \"registration\": \"f54ebc89-b564-4551-af93-5353276a473c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ROBB K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-16\", \"application_outcome_notification_date\": \"2006-05-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Keith Robbins - Well Driller : 38000-25/DRI ROBB K"}}, {"model": "reversion.version", "pk": 3470, "fields": {"revision": 1972, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3471, "fields": {"revision": 1972, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3472, "fields": {"revision": 1972, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3473, "fields": {"revision": 1973, "object_id": "44163354-0df9-4df6-a5a4-3b4108288f7e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"44163354-0df9-4df6-a5a4-3b4108288f7e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.883Z\", \"registration\": \"83553c33-696c-49c3-a1fe-1840ff468ae5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCDO D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-08-04\", \"application_outcome_notification_date\": \"2006-08-04\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas McDonald - Well Driller : 38000-25/DRI MCDO D"}}, {"model": "reversion.version", "pk": 3474, "fields": {"revision": 1973, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3475, "fields": {"revision": 1973, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3476, "fields": {"revision": 1973, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3477, "fields": {"revision": 1974, "object_id": "44bf9ea3-3b93-4d0e-a2ff-ea85dd3ba262", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"44bf9ea3-3b93-4d0e-a2ff-ea85dd3ba262\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.891Z\", \"registration\": \"a96f8e25-1885-4bc8-aebd-c210539a0b42\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHR D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-26\", \"application_outcome_notification_date\": \"2006-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schroeder - Well Driller : 38000-25/DRI SCHR D"}}, {"model": "reversion.version", "pk": 3478, "fields": {"revision": 1974, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3479, "fields": {"revision": 1974, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3480, "fields": {"revision": 1974, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3481, "fields": {"revision": 1975, "object_id": "44c1cae8-ff5c-434a-9e87-ba381ad98e0b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"44c1cae8-ff5c-434a-9e87-ba381ad98e0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.898Z\", \"registration\": \"cf52cb3b-4435-46a0-a512-e233c02ffa0f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHL M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Marcus Schlick - Well Driller : 38000-25/DRI SCHL M"}}, {"model": "reversion.version", "pk": 3482, "fields": {"revision": 1975, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3483, "fields": {"revision": 1975, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3484, "fields": {"revision": 1975, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3485, "fields": {"revision": 1976, "object_id": "44d2a928-da46-4c58-9039-dfafb20f1fa7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"44d2a928-da46-4c58-9039-dfafb20f1fa7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.906Z\", \"registration\": \"339ccb1b-3034-42d4-b4ac-bea5b07cd5ca\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LENA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Lenard - Well Driller : 38000-25/DRI LENA D"}}, {"model": "reversion.version", "pk": 3486, "fields": {"revision": 1976, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3487, "fields": {"revision": 1976, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3488, "fields": {"revision": 1976, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3489, "fields": {"revision": 1977, "object_id": "44e243c8-ce26-4bff-a6a2-a5b8a8929c81", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"44e243c8-ce26-4bff-a6a2-a5b8a8929c81\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.914Z\", \"registration\": \"6ace1a50-e98b-41d7-a75e-2591a08e1f8f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOUR R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0001-WW-96\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bourget - Well Driller : 38000-25/DRI BOUR R"}}, {"model": "reversion.version", "pk": 3490, "fields": {"revision": 1977, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3491, "fields": {"revision": 1977, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3492, "fields": {"revision": 1977, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3493, "fields": {"revision": 1978, "object_id": "44f804d9-d861-4db7-998c-389225a9cc30", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"44f804d9-d861-4db7-998c-389225a9cc30\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.921Z\", \"registration\": \"873708ab-a437-40a0-b054-e391f1e70103\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP VANE A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andy Van Esch - Pump Installer : 38000-25/PUMP VANE A"}}, {"model": "reversion.version", "pk": 3494, "fields": {"revision": 1978, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3495, "fields": {"revision": 1978, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3496, "fields": {"revision": 1978, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3497, "fields": {"revision": 1979, "object_id": "45110537-e6e6-47be-beac-29afa0a66e5e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"45110537-e6e6-47be-beac-29afa0a66e5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.929Z\", \"registration\": \"56bb7b48-8a4a-4509-8511-af0ebef5ab3a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LHEU C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chance L'Heureux - Pump Installer : 38000-25/PUMP LHEU C"}}, {"model": "reversion.version", "pk": 3498, "fields": {"revision": 1979, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3499, "fields": {"revision": 1979, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3500, "fields": {"revision": 1979, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3501, "fields": {"revision": 1980, "object_id": "4550a3ad-a8ff-4579-8546-1ae02e897c11", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4550a3ad-a8ff-4579-8546-1ae02e897c11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.937Z\", \"registration\": \"caa5f26f-8934-4e88-bea0-a85003f9cf03\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FAAS R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Faasse - Well Driller : 38000-25/DRI FAAS R"}}, {"model": "reversion.version", "pk": 3502, "fields": {"revision": 1980, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3503, "fields": {"revision": 1980, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3504, "fields": {"revision": 1980, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3505, "fields": {"revision": 1981, "object_id": "45a157f7-bfa2-4946-8e6a-02c532161aee", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"45a157f7-bfa2-4946-8e6a-02c532161aee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.945Z\", \"registration\": \"749c5cb4-32cf-47bb-bc9b-f256d69e57c9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KARD P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Kardash - Pump Installer : 38000-25/PUMP KARD P"}}, {"model": "reversion.version", "pk": 3506, "fields": {"revision": 1981, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3507, "fields": {"revision": 1981, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3508, "fields": {"revision": 1981, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3509, "fields": {"revision": 1982, "object_id": "4611b41f-7402-4755-8550-544fd1e02e36", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4611b41f-7402-4755-8550-544fd1e02e36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.953Z\", \"registration\": \"e1241ccb-7512-4f1a-ba54-768edd597ccc\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BRIN M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Brindley - Well Driller : 38000-25/DRI BRIN M"}}, {"model": "reversion.version", "pk": 3510, "fields": {"revision": 1982, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3511, "fields": {"revision": 1982, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3512, "fields": {"revision": 1982, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3513, "fields": {"revision": 1983, "object_id": "463f65bf-4608-4d09-8608-4b2b24efb918", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"463f65bf-4608-4d09-8608-4b2b24efb918\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.961Z\", \"registration\": \"3bb00cdd-11df-4016-8b4e-0817174c41fb\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CLAR J\", \"proof_of_age\": null, \"registrar_notes\": \"Contacted 2017-12-22; updated information\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Clark - Well Driller : 38000-25/DRI CLAR J"}}, {"model": "reversion.version", "pk": 3514, "fields": {"revision": 1983, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3515, "fields": {"revision": 1983, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3516, "fields": {"revision": 1983, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3517, "fields": {"revision": 1984, "object_id": "4671da06-73a1-42c3-bcd5-e9f44b938357", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4671da06-73a1-42c3-bcd5-e9f44b938357\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.969Z\", \"registration\": \"d4a8e916-6682-4e9c-bd8f-ebb9fc6bb5a5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PEPP J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0035-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeffrey Peppler - Well Driller : 38000-25/DRI PEPP J"}}, {"model": "reversion.version", "pk": 3518, "fields": {"revision": 1984, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3519, "fields": {"revision": 1984, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3520, "fields": {"revision": 1984, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3521, "fields": {"revision": 1985, "object_id": "46b7da3e-9f97-4765-84be-349a07174f14", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"46b7da3e-9f97-4765-84be-349a07174f14\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.976Z\", \"registration\": \"5753bd73-42f6-40e7-a2c5-fa7d937307ea\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PHIN P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Phinney - Pump Installer : 38000-25/PUMP PHIN P"}}, {"model": "reversion.version", "pk": 3522, "fields": {"revision": 1985, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3523, "fields": {"revision": 1985, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3524, "fields": {"revision": 1985, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3525, "fields": {"revision": 1986, "object_id": "46f9c811-2309-42c0-afd7-f3bc8da55fe2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"46f9c811-2309-42c0-afd7-f3bc8da55fe2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.983Z\", \"registration\": \"cd716026-060f-4100-9463-83a375e3612b\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI RAMS S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shane Ramsey - Well Driller : 38000-25/DRI RAMS S"}}, {"model": "reversion.version", "pk": 3526, "fields": {"revision": 1986, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3527, "fields": {"revision": 1986, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3528, "fields": {"revision": 1986, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3529, "fields": {"revision": 1987, "object_id": "47020923-a476-4782-8c20-b55e4f8bc4b8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"47020923-a476-4782-8c20-b55e4f8bc4b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.990Z\", \"registration\": \"b69f71fa-6a01-4f4e-bc29-1dbd76f412e9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PEAR R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-07-13\", \"application_outcome_notification_date\": \"2005-07-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Pearce - Pump Installer : 38000-25/PUMP PEAR R"}}, {"model": "reversion.version", "pk": 3530, "fields": {"revision": 1987, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3531, "fields": {"revision": 1987, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3532, "fields": {"revision": 1987, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3533, "fields": {"revision": 1988, "object_id": "4760ac82-c60a-4974-8769-66da33430e7c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4760ac82-c60a-4974-8769-66da33430e7c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.997Z\", \"registration\": \"b86bae2e-333e-41ce-a123-b6b82b804699\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ROBE D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Roberts - Well Driller : 38000-25/DRI ROBE D"}}, {"model": "reversion.version", "pk": 3534, "fields": {"revision": 1988, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3535, "fields": {"revision": 1988, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3536, "fields": {"revision": 1988, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3537, "fields": {"revision": 1989, "object_id": "476cf234-d864-4580-86a4-41375c224d55", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"476cf234-d864-4580-86a4-41375c224d55\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.004Z\", \"registration\": \"a5fefc51-b131-40c5-b781-b91ecec02402\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MARC D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David March - Pump Installer : 38000-25/PUMP MARC D"}}, {"model": "reversion.version", "pk": 3538, "fields": {"revision": 1989, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3539, "fields": {"revision": 1989, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3540, "fields": {"revision": 1989, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3541, "fields": {"revision": 1990, "object_id": "47795470-ec81-4d9f-9339-86eea9ff74ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"47795470-ec81-4d9f-9339-86eea9ff74ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.011Z\", \"registration\": \"8e878171-79ac-4c89-ab28-182e30f3d048\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HAWK R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Hawksworth - Well Driller : 38000-25/DRI HAWK R"}}, {"model": "reversion.version", "pk": 3542, "fields": {"revision": 1990, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3543, "fields": {"revision": 1990, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3544, "fields": {"revision": 1990, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3545, "fields": {"revision": 1991, "object_id": "4779b7e4-e0de-494f-a6b5-86f8c249c7e2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4779b7e4-e0de-494f-a6b5-86f8c249c7e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.019Z\", \"registration\": \"8d34090f-523c-4168-a8d9-a11ed7bb1232\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SLAD P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0027-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Slade - Well Driller : 38000-25/DRI SLAD P"}}, {"model": "reversion.version", "pk": 3546, "fields": {"revision": 1991, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3547, "fields": {"revision": 1991, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3548, "fields": {"revision": 1991, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3549, "fields": {"revision": 1992, "object_id": "477c8809-0b3a-4eed-9ac7-fa42f539a67e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"477c8809-0b3a-4eed-9ac7-fa42f539a67e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.026Z\", \"registration\": \"4b8d6657-0833-4b50-9494-8960d1a85c7e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GRAF D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-29\", \"application_outcome_notification_date\": \"2006-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Grafton - Well Driller : 38000-25/DRI GRAF D"}}, {"model": "reversion.version", "pk": 3550, "fields": {"revision": 1992, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3551, "fields": {"revision": 1992, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3552, "fields": {"revision": 1992, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3553, "fields": {"revision": 1993, "object_id": "478b6a47-d431-47f0-861f-b53c132b4f64", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"478b6a47-d431-47f0-861f-b53c132b4f64\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.033Z\", \"registration\": \"200013a0-2b3d-40ed-9d5d-36cc787e80b8\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI TEDF M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Tedford - Well Driller : 38000-25/DRI TEDF M"}}, {"model": "reversion.version", "pk": 3554, "fields": {"revision": 1993, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3555, "fields": {"revision": 1993, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3556, "fields": {"revision": 1993, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3557, "fields": {"revision": 1994, "object_id": "47c375d3-4ca7-4f09-b135-9a23767b7003", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"47c375d3-4ca7-4f09-b135-9a23767b7003\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.040Z\", \"registration\": \"1c1a5b1f-1abd-49f6-a390-5f879039696a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MAGE R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Magee - Well Driller : 38000-25/DRI MAGE R"}}, {"model": "reversion.version", "pk": 3558, "fields": {"revision": 1994, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3559, "fields": {"revision": 1994, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3560, "fields": {"revision": 1994, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3561, "fields": {"revision": 1995, "object_id": "47ee8b37-3238-4ff3-b12c-5eec821ee1d0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"47ee8b37-3238-4ff3-b12c-5eec821ee1d0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.047Z\", \"registration\": \"2352686a-02d4-4239-a64f-21bf4777543a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI YEO L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-13\", \"application_outcome_notification_date\": \"2005-12-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lyle Yeo - Well Driller : 38000-25/DRI YEO L"}}, {"model": "reversion.version", "pk": 3562, "fields": {"revision": 1995, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3563, "fields": {"revision": 1995, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3564, "fields": {"revision": 1995, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3565, "fields": {"revision": 1996, "object_id": "4810bae6-848b-4d01-a9f3-847f4e045d32", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4810bae6-848b-4d01-a9f3-847f4e045d32\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.053Z\", \"registration\": \"4f00590a-41e9-4f7b-a4ec-b0b7e0d97978\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FYFE G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent; 0039-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Fyfe - Well Driller : 38000-25/DRI FYFE G"}}, {"model": "reversion.version", "pk": 3566, "fields": {"revision": 1996, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3567, "fields": {"revision": 1996, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3568, "fields": {"revision": 1996, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3569, "fields": {"revision": 1997, "object_id": "485f71f7-0949-4e68-adb2-a6d63105bf27", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"485f71f7-0949-4e68-adb2-a6d63105bf27\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.060Z\", \"registration\": \"d27ef5e9-3f55-433d-bfe2-019edc4f8f82\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROBE R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Raymond Robertson - Pump Installer : 38000-25/PUMP ROBE R"}}, {"model": "reversion.version", "pk": 3570, "fields": {"revision": 1997, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3571, "fields": {"revision": 1997, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3572, "fields": {"revision": 1997, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3573, "fields": {"revision": 1998, "object_id": "4865b6ee-c66c-4740-bd38-1dfdfd357e0f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4865b6ee-c66c-4740-bd38-1dfdfd357e0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.067Z\", \"registration\": \"3258f235-9c6b-49c7-80bd-138a3ecca6c2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PROH D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-29\", \"application_outcome_notification_date\": \"2005-10-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Prohl - Pump Installer : 38000-25/PUMP PROH D"}}, {"model": "reversion.version", "pk": 3574, "fields": {"revision": 1998, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3575, "fields": {"revision": 1998, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3576, "fields": {"revision": 1998, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3577, "fields": {"revision": 1999, "object_id": "48c4f020-6c8b-4078-a0a4-06f3aee9b9d1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"48c4f020-6c8b-4078-a0a4-06f3aee9b9d1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.073Z\", \"registration\": \"213d6cac-05b9-45af-b9de-c8c9dd683e36\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI JACK J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Jackson - Well Driller : 38000-25/DRI JACK J"}}, {"model": "reversion.version", "pk": 3578, "fields": {"revision": 1999, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3579, "fields": {"revision": 1999, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3580, "fields": {"revision": 1999, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3581, "fields": {"revision": 2000, "object_id": "491455ef-f370-4321-93a2-0409f86af840", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"491455ef-f370-4321-93a2-0409f86af840\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.080Z\", \"registration\": \"fe8b27e1-8d88-4a34-8e80-77e47da22b08\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PETE J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-07\", \"application_outcome_notification_date\": \"2005-12-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Peters - Well Driller : 38000-25/DRI PETE J"}}, {"model": "reversion.version", "pk": 3582, "fields": {"revision": 2000, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3583, "fields": {"revision": 2000, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3584, "fields": {"revision": 2000, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3585, "fields": {"revision": 2001, "object_id": "492deda0-472b-4e84-846b-d7a2f5f287a6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"492deda0-472b-4e84-846b-d7a2f5f287a6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:58.797Z\", \"registration\": \"be727216-42e5-4ae6-bad2-0f04411ce870\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SMIT A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Arnold Smithson - Well Driller : 38000-25/DRI SMIT A"}}, {"model": "reversion.version", "pk": 3586, "fields": {"revision": 2001, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3587, "fields": {"revision": 2001, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3588, "fields": {"revision": 2001, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3589, "fields": {"revision": 2002, "object_id": "49597293-4f9f-4986-af78-82003a8db1dc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"49597293-4f9f-4986-af78-82003a8db1dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.087Z\", \"registration\": \"f44e6ed8-d505-453b-b37a-c92e91ac3501\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI UNRA H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Hank Unrau - Well Driller : 38000-25/DRI UNRA H"}}, {"model": "reversion.version", "pk": 3590, "fields": {"revision": 2002, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3591, "fields": {"revision": 2002, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3592, "fields": {"revision": 2002, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3593, "fields": {"revision": 2003, "object_id": "495987d5-6ff0-4da8-a5a5-3af5bfbbd053", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"495987d5-6ff0-4da8-a5a5-3af5bfbbd053\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.094Z\", \"registration\": \"7252fa7f-8e90-4767-8522-dd1e8a50c18f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI-MADD S\", \"proof_of_age\": null, \"registrar_notes\": \"Discussed with counterparts in Ontario. Phone extension: EXT 227.\", \"reason_denied\": null, \"primary_certificate\": \"e0d774bd-aba9-4a6c-9d5e-4020cfe82865\", \"primary_certificate_no\": \"T-3672\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2018-01-23\", \"application_outcome_notification_date\": \"2018-01-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Madden - Well Driller : 38000-25/DRI-MADD S"}}, {"model": "reversion.version", "pk": 3594, "fields": {"revision": 2003, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3595, "fields": {"revision": 2003, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3596, "fields": {"revision": 2003, "object_id": "e0d774bd-aba9-4a6c-9d5e-4020cfe82865", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e0d774bd-aba9-4a6c-9d5e-4020cfe82865\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"ON\", \"registries_activity\": \"DRILL\", \"name\": \"Well Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON Well Driller Well Technician Certificate"}}, {"model": "reversion.version", "pk": 3597, "fields": {"revision": 2004, "object_id": "497a1092-f984-44ca-bf08-dc1cc87d7a53", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"497a1092-f984-44ca-bf08-dc1cc87d7a53\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.101Z\", \"registration\": \"d52b9a21-28b6-4094-b201-ab1e0e9b7a23\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCMA B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brennan McMahon - Well Driller : 38000-25/DRI MCMA B"}}, {"model": "reversion.version", "pk": 3598, "fields": {"revision": 2004, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3599, "fields": {"revision": 2004, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3600, "fields": {"revision": 2004, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3601, "fields": {"revision": 2005, "object_id": "49803010-5944-4947-89fa-515c26b7d5c8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"49803010-5944-4947-89fa-515c26b7d5c8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.108Z\", \"registration\": \"7cb7c1ad-41c3-4688-9b1d-5149cc2a5c0f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STRI B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-05\", \"application_outcome_notification_date\": \"2006-06-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Strijak - Well Driller : 38000-25/DRI STRI B"}}, {"model": "reversion.version", "pk": 3602, "fields": {"revision": 2005, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3603, "fields": {"revision": 2005, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3604, "fields": {"revision": 2005, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3605, "fields": {"revision": 2006, "object_id": "49949b55-53fa-40c5-9a8a-6216c4c47539", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"49949b55-53fa-40c5-9a8a-6216c4c47539\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.115Z\", \"registration\": \"61e6c6c0-63ae-41e2-9f58-6569d0fe7e58\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CHAP M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2011-185\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-02-21\", \"application_outcome_notification_date\": \"2012-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Matthew Chapman - Well Driller : 38000-25/DRI CHAP M"}}, {"model": "reversion.version", "pk": 3606, "fields": {"revision": 2006, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3607, "fields": {"revision": 2006, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3608, "fields": {"revision": 2006, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3609, "fields": {"revision": 2007, "object_id": "4995dca7-5c90-400c-9c7c-d65ca758ed66", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4995dca7-5c90-400c-9c7c-d65ca758ed66\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.122Z\", \"registration\": \"381f49cb-4929-4e92-a045-fb179388e18b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GILL J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joel Gillin - Pump Installer : 38000-25/PUMP GILL J"}}, {"model": "reversion.version", "pk": 3610, "fields": {"revision": 2007, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3611, "fields": {"revision": 2007, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3612, "fields": {"revision": 2007, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3613, "fields": {"revision": 2008, "object_id": "49e8274b-9e18-4684-987b-0f0fe0acf390", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"49e8274b-9e18-4684-987b-0f0fe0acf390\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.129Z\", \"registration\": \"2352686a-02d4-4239-a64f-21bf4777543a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI YEO L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-13\", \"application_outcome_notification_date\": \"2005-12-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lyle Yeo - Well Driller : 38000-25/DRI YEO L"}}, {"model": "reversion.version", "pk": 3614, "fields": {"revision": 2008, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3615, "fields": {"revision": 2008, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3616, "fields": {"revision": 2008, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3617, "fields": {"revision": 2009, "object_id": "49f40e16-1889-4ce0-8a37-0dcf5b8507a1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"49f40e16-1889-4ce0-8a37-0dcf5b8507a1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.136Z\", \"registration\": \"6f62592e-3179-4960-8f7d-68866a9900b0\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI OLMR G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-06\", \"application_outcome_notification_date\": \"2006-07-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Olmr - Well Driller : 38000-25/DRI OLMR G"}}, {"model": "reversion.version", "pk": 3618, "fields": {"revision": 2009, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3619, "fields": {"revision": 2009, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3620, "fields": {"revision": 2009, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3621, "fields": {"revision": 2010, "object_id": "4a57bf46-2d33-4dcb-b295-9980906b93cb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4a57bf46-2d33-4dcb-b295-9980906b93cb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.143Z\", \"registration\": \"933f1cc5-53ca-4b0c-8c3a-f30240e91ecb\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PEPI A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-25\", \"application_outcome_notification_date\": \"2006-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alfred Pepin - Well Driller : 38000-25/DRI PEPI A"}}, {"model": "reversion.version", "pk": 3622, "fields": {"revision": 2010, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3623, "fields": {"revision": 2010, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3624, "fields": {"revision": 2010, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3625, "fields": {"revision": 2011, "object_id": "4b1b91e2-9059-4004-b8f9-c810e1ee3703", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4b1b91e2-9059-4004-b8f9-c810e1ee3703\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.150Z\", \"registration\": \"e54890a2-3d0b-4bf2-84e6-f063a1394098\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CHIU D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dean Chiuppi - Well Driller : 38000-25/DRI CHIU D"}}, {"model": "reversion.version", "pk": 3626, "fields": {"revision": 2011, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3627, "fields": {"revision": 2011, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3628, "fields": {"revision": 2011, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3629, "fields": {"revision": 2012, "object_id": "4b311d87-cb4c-462d-8ad1-753939aef528", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4b311d87-cb4c-462d-8ad1-753939aef528\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.157Z\", \"registration\": \"ed94d274-04a3-4205-a59f-b45063da1593\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GENE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Genereux - Well Driller : 38000-25/DRI GENE J"}}, {"model": "reversion.version", "pk": 3630, "fields": {"revision": 2012, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3631, "fields": {"revision": 2012, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3632, "fields": {"revision": 2012, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3633, "fields": {"revision": 2013, "object_id": "4b31e9c8-43bc-4f68-836e-ddfeb1d15224", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4b31e9c8-43bc-4f68-836e-ddfeb1d15224\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.164Z\", \"registration\": \"2c17e7b3-5c01-4301-8529-c52907c7eccf\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KURT I\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2011-182\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-05-20\", \"application_outcome_notification_date\": \"2011-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ibrahim Kurtoglu - Well Driller : 38000-25/DRI KURT I"}}, {"model": "reversion.version", "pk": 3634, "fields": {"revision": 2013, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3635, "fields": {"revision": 2013, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3636, "fields": {"revision": 2013, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3637, "fields": {"revision": 2014, "object_id": "4be82a45-e4d8-439b-a95a-952ee0dd7a17", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4be82a45-e4d8-439b-a95a-952ee0dd7a17\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.171Z\", \"registration\": \"bb9a7840-468c-4fdf-be74-4824c0591ef5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CADE M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Cadeau - Well Driller : 38000-25/DRI CADE M"}}, {"model": "reversion.version", "pk": 3638, "fields": {"revision": 2014, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3639, "fields": {"revision": 2014, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3640, "fields": {"revision": 2014, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3641, "fields": {"revision": 2015, "object_id": "4c1c5819-80c6-4ed7-8586-0692e25085e7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4c1c5819-80c6-4ed7-8586-0692e25085e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.179Z\", \"registration\": \"ffeaec06-28f0-4455-beed-8e5cc2b1d50c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MISE P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0031-WW-89\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-09\", \"application_outcome_notification_date\": \"2005-02-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Misek - Well Driller : 38000-25/DRI MISE P"}}, {"model": "reversion.version", "pk": 3642, "fields": {"revision": 2015, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3643, "fields": {"revision": 2015, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3644, "fields": {"revision": 2015, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3645, "fields": {"revision": 2016, "object_id": "4c1f9eea-e377-4b66-8dc7-666deb01bdd3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4c1f9eea-e377-4b66-8dc7-666deb01bdd3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.186Z\", \"registration\": \"f6f2c3a7-7d12-4e8f-aa43-c79f3b7a83cc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DORA B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brad Doran - Pump Installer : 38000-25/PUMP DORA B"}}, {"model": "reversion.version", "pk": 3646, "fields": {"revision": 2016, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3647, "fields": {"revision": 2016, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3648, "fields": {"revision": 2016, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3649, "fields": {"revision": 2017, "object_id": "4c352c64-f336-48b1-8c26-a125a9465715", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4c352c64-f336-48b1-8c26-a125a9465715\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.193Z\", \"registration\": \"797d56c3-e0d7-4799-8fa6-086c5c1a750f\", \"subactivity\": \"WATER\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Vandal - Well Driller : None"}}, {"model": "reversion.version", "pk": 3650, "fields": {"revision": 2017, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3651, "fields": {"revision": 2017, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3652, "fields": {"revision": 2017, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3653, "fields": {"revision": 2018, "object_id": "4c6703e8-3ff9-4bdb-bb20-549e9f7be7c0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4c6703e8-3ff9-4bdb-bb20-549e9f7be7c0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.200Z\", \"registration\": \"7e13c9db-f033-4073-9ebc-6f803a18bd30\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BROW M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-25\", \"application_outcome_notification_date\": \"2005-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Brown - Well Driller : 38000-25/DRI BROW M"}}, {"model": "reversion.version", "pk": 3654, "fields": {"revision": 2018, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3655, "fields": {"revision": 2018, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3656, "fields": {"revision": 2018, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3657, "fields": {"revision": 2019, "object_id": "4c768419-4bdf-4e7e-98fe-9716f77cd7f8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4c768419-4bdf-4e7e-98fe-9716f77cd7f8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.207Z\", \"registration\": \"132827b8-dfe7-459f-b6af-607fadc6c34c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHM J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0041-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-19\", \"application_outcome_notification_date\": \"2005-11-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Schmidt - Well Driller : 38000-25/DRI SCHM J"}}, {"model": "reversion.version", "pk": 3658, "fields": {"revision": 2019, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3659, "fields": {"revision": 2019, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3660, "fields": {"revision": 2019, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3661, "fields": {"revision": 2020, "object_id": "4cfec33c-446d-424e-859f-8c124d345eb1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4cfec33c-446d-424e-859f-8c124d345eb1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.214Z\", \"registration\": \"35a36648-b789-4f32-a0b8-ede1e624d744\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HENR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-07\", \"application_outcome_notification_date\": \"2006-04-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Henry - Well Driller : 38000-25/DRI HENR J"}}, {"model": "reversion.version", "pk": 3662, "fields": {"revision": 2020, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3663, "fields": {"revision": 2020, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3664, "fields": {"revision": 2020, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3665, "fields": {"revision": 2021, "object_id": "4d0fa06f-dde3-4750-a4eb-b74b06dc1aa7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4d0fa06f-dde3-4750-a4eb-b74b06dc1aa7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.221Z\", \"registration\": \"c02a96d1-3b8b-4148-b819-e9a2b4225fbb\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BERG T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tor Berg - Well Driller : 38000-25/DRI BERG T"}}, {"model": "reversion.version", "pk": 3666, "fields": {"revision": 2021, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3667, "fields": {"revision": 2021, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3668, "fields": {"revision": 2021, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3669, "fields": {"revision": 2022, "object_id": "4d2bea35-397a-4ea6-a63b-202d5a340b71", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4d2bea35-397a-4ea6-a63b-202d5a340b71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.229Z\", \"registration\": \"98f69f57-5a3d-4cc2-b062-5d0f63e33cd3\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DESJ J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Desjarlais - Pump Installer : 38000-25/PUMP DESJ J"}}, {"model": "reversion.version", "pk": 3670, "fields": {"revision": 2022, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3671, "fields": {"revision": 2022, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3672, "fields": {"revision": 2022, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3673, "fields": {"revision": 2023, "object_id": "4e089758-cc50-44d8-ae62-c2db6656c0f1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4e089758-cc50-44d8-ae62-c2db6656c0f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.236Z\", \"registration\": \"77d1e652-61e5-4cee-b4df-e133fe206cbe\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HOCK M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Miles Hock - Well Driller : 38000-25/DRI HOCK M"}}, {"model": "reversion.version", "pk": 3674, "fields": {"revision": 2023, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3675, "fields": {"revision": 2023, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3676, "fields": {"revision": 2023, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3677, "fields": {"revision": 2024, "object_id": "4e888fb4-7141-416a-bf9d-582bf63f50a2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4e888fb4-7141-416a-bf9d-582bf63f50a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.243Z\", \"registration\": \"83553c33-696c-49c3-a1fe-1840ff468ae5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCDO D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-08-04\", \"application_outcome_notification_date\": \"2006-08-04\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas McDonald - Well Driller : 38000-25/DRI MCDO D"}}, {"model": "reversion.version", "pk": 3678, "fields": {"revision": 2024, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3679, "fields": {"revision": 2024, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3680, "fields": {"revision": 2024, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3681, "fields": {"revision": 2025, "object_id": "4f096d23-b5c1-4a62-8b13-1dbcf359fa29", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4f096d23-b5c1-4a62-8b13-1dbcf359fa29\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.251Z\", \"registration\": \"bd03cde7-c55c-4984-a8ff-e4af358b6292\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WIEB C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00020-WW-00\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cameron Wiebe - Well Driller : 38000-25/DRI WIEB C"}}, {"model": "reversion.version", "pk": 3682, "fields": {"revision": 2025, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3683, "fields": {"revision": 2025, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3684, "fields": {"revision": 2025, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3685, "fields": {"revision": 2026, "object_id": "4f26ae08-b56f-48e2-9ce7-f9a54ddb2d52", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4f26ae08-b56f-48e2-9ce7-f9a54ddb2d52\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.258Z\", \"registration\": \"dc308e3a-bd27-459f-a135-e38123418f84\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WASS D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-11-28\", \"application_outcome_notification_date\": \"2006-11-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wasstrom - Pump Installer : 38000-25/PUMP WASS D"}}, {"model": "reversion.version", "pk": 3686, "fields": {"revision": 2026, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3687, "fields": {"revision": 2026, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3688, "fields": {"revision": 2026, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3689, "fields": {"revision": 2027, "object_id": "4f2b84ff-1f2d-4e15-8010-1657f27fc7b5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4f2b84ff-1f2d-4e15-8010-1657f27fc7b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.265Z\", \"registration\": \"5fd1d660-ee90-4bc2-8603-ef027d29f02a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STEW S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-151\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-12-10\", \"application_outcome_notification_date\": \"2008-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Steward - Well Driller : 38000-25/DRI STEW S"}}, {"model": "reversion.version", "pk": 3690, "fields": {"revision": 2027, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3691, "fields": {"revision": 2027, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3692, "fields": {"revision": 2027, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3693, "fields": {"revision": 2028, "object_id": "4f8365a2-a517-4d3e-9a5b-0026051831b4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4f8365a2-a517-4d3e-9a5b-0026051831b4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.272Z\", \"registration\": \"e2d0e21e-c8f8-4660-adcf-50c69171839c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROLL C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clarence Rolleman - Pump Installer : 38000-25/PUMP ROLL C"}}, {"model": "reversion.version", "pk": 3694, "fields": {"revision": 2028, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3695, "fields": {"revision": 2028, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3696, "fields": {"revision": 2028, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3697, "fields": {"revision": 2029, "object_id": "4fc38dd5-e6ea-4edd-8784-da855c7d1f94", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4fc38dd5-e6ea-4edd-8784-da855c7d1f94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.279Z\", \"registration\": \"cf00939c-0ac5-4236-861d-07209cdc2b62\", \"subactivity\": \"GEOXCHG\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William John Williams - Well Driller : None"}}, {"model": "reversion.version", "pk": 3698, "fields": {"revision": 2029, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3699, "fields": {"revision": 2029, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3700, "fields": {"revision": 2029, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3701, "fields": {"revision": 2030, "object_id": "4ffd9322-3442-4cee-bf49-4bb376ee1cc4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"4ffd9322-3442-4cee-bf49-4bb376ee1cc4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.286Z\", \"registration\": \"3d9cdb11-e66a-4990-a8a5-c3d9250d6c79\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KALI R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ron Kalicum - Well Driller : 38000-25/DRI KALI R"}}, {"model": "reversion.version", "pk": 3702, "fields": {"revision": 2030, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3703, "fields": {"revision": 2030, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3704, "fields": {"revision": 2030, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3705, "fields": {"revision": 2031, "object_id": "501970f6-da51-45d5-9cf0-0e9bd1672ff6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"501970f6-da51-45d5-9cf0-0e9bd1672ff6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.293Z\", \"registration\": \"b52c43dd-80a1-448f-a607-ea86b4d7285f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WISH D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wishart - Well Driller : 38000-25/DRI WISH D"}}, {"model": "reversion.version", "pk": 3706, "fields": {"revision": 2031, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3707, "fields": {"revision": 2031, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3708, "fields": {"revision": 2031, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3709, "fields": {"revision": 2032, "object_id": "509da06a-11c5-4ba0-87d6-e8f97a04b5cd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"509da06a-11c5-4ba0-87d6-e8f97a04b5cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.300Z\", \"registration\": \"7371883e-e5d0-4c55-aa15-04c5209b6a19\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CURR C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00002-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-15\", \"application_outcome_notification_date\": \"2016-02-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cass Currie - Well Driller : 38000-25/DRI CURR C"}}, {"model": "reversion.version", "pk": 3710, "fields": {"revision": 2032, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3711, "fields": {"revision": 2032, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3712, "fields": {"revision": 2032, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3713, "fields": {"revision": 2033, "object_id": "50a3a16c-22b9-4dcf-a8b8-ca818e3e44fc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"50a3a16c-22b9-4dcf-a8b8-ca818e3e44fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.307Z\", \"registration\": \"b9fd0852-4ad4-4cce-9082-4362edfc8c3e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SLAD K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0018-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken Slade - Well Driller : 38000-25/DRI SLAD K"}}, {"model": "reversion.version", "pk": 3714, "fields": {"revision": 2033, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3715, "fields": {"revision": 2033, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3716, "fields": {"revision": 2033, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3717, "fields": {"revision": 2034, "object_id": "50f40596-36fa-47d1-8aef-7698d287deda", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"50f40596-36fa-47d1-8aef-7698d287deda\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.314Z\", \"registration\": \"db2dfb75-b3da-40f6-9129-77674a8b96a6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STON S\", \"proof_of_age\": null, \"registrar_notes\": \"(867) 536-2009 (call first)\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Stone - Well Driller : 38000-25/DRI STON S"}}, {"model": "reversion.version", "pk": 3718, "fields": {"revision": 2034, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3719, "fields": {"revision": 2034, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3720, "fields": {"revision": 2034, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3721, "fields": {"revision": 2035, "object_id": "5109428c-4fdd-4bfa-ac85-7fc1432d266c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5109428c-4fdd-4bfa-ac85-7fc1432d266c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.322Z\", \"registration\": \"08b0ab1d-ca14-47ee-84f4-6dfe17ae8401\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FALL R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roy Fallon - Well Driller : 38000-25/DRI FALL R"}}, {"model": "reversion.version", "pk": 3722, "fields": {"revision": 2035, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3723, "fields": {"revision": 2035, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3724, "fields": {"revision": 2035, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3725, "fields": {"revision": 2036, "object_id": "51290353-f61c-4213-b915-c1e722a996df", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"51290353-f61c-4213-b915-c1e722a996df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.329Z\", \"registration\": \"9cb33182-e7a6-494d-a745-69220cb67120\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HALY J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-21\", \"application_outcome_notification_date\": \"2006-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Halyk - Well Driller : 38000-25/DRI HALY J"}}, {"model": "reversion.version", "pk": 3726, "fields": {"revision": 2036, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3727, "fields": {"revision": 2036, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3728, "fields": {"revision": 2036, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3729, "fields": {"revision": 2037, "object_id": "513bc886-2aa9-48c9-81cf-aa75711a8b20", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"513bc886-2aa9-48c9-81cf-aa75711a8b20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.336Z\", \"registration\": \"750133dc-389e-40b7-85c7-1087fd8fdd5e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCDO K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0002-WW-95\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly McGarry - Well Driller : 38000-25/DRI MCDO K"}}, {"model": "reversion.version", "pk": 3730, "fields": {"revision": 2037, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3731, "fields": {"revision": 2037, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3732, "fields": {"revision": 2037, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3733, "fields": {"revision": 2038, "object_id": "516cf4ab-f082-4bf6-81d8-186a7d62f8e7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"516cf4ab-f082-4bf6-81d8-186a7d62f8e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.343Z\", \"registration\": \"13575a06-bf5e-4546-b03e-9d96cd18a51d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NUTT S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-18\", \"application_outcome_notification_date\": \"2006-09-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shaun Nuttall - Pump Installer : 38000-25/PUMP NUTT S"}}, {"model": "reversion.version", "pk": 3734, "fields": {"revision": 2038, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3735, "fields": {"revision": 2038, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3736, "fields": {"revision": 2038, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3737, "fields": {"revision": 2039, "object_id": "51709b86-63ad-4c25-81d7-ecc2be6ee6ee", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"51709b86-63ad-4c25-81d7-ecc2be6ee6ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.350Z\", \"registration\": \"5c585476-2734-47b1-ae9e-79489f6044b3\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MART D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-12\", \"application_outcome_notification_date\": \"2006-09-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Martin - Pump Installer : 38000-25/PUMP MART D"}}, {"model": "reversion.version", "pk": 3738, "fields": {"revision": 2039, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3739, "fields": {"revision": 2039, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3740, "fields": {"revision": 2039, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3741, "fields": {"revision": 2040, "object_id": "51846cb7-8c4c-4901-9da3-270aa93fb8ac", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"51846cb7-8c4c-4901-9da3-270aa93fb8ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.364Z\", \"registration\": \"103df769-88d5-450f-a3c8-434e38587620\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GILL C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/476706\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-19\", \"application_outcome_notification_date\": \"2009-05-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cory Gillis - Well Driller : 38000-25/DRI GILL C"}}, {"model": "reversion.version", "pk": 3742, "fields": {"revision": 2040, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3743, "fields": {"revision": 2040, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3744, "fields": {"revision": 2040, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3745, "fields": {"revision": 2041, "object_id": "51ad8a5f-ba28-4f17-9fbb-c8b4457c1765", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"51ad8a5f-ba28-4f17-9fbb-c8b4457c1765\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.371Z\", \"registration\": \"50f6b009-bf1d-4cee-afa6-b4e1d918ce27\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI OUSS H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"Well Technician Class 1 T-1453\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-14\", \"application_outcome_notification_date\": \"2011-11-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Oussoren - Well Driller : 38000-25/DRI OUSS H"}}, {"model": "reversion.version", "pk": 3746, "fields": {"revision": 2041, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3747, "fields": {"revision": 2041, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3748, "fields": {"revision": 2041, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3749, "fields": {"revision": 2042, "object_id": "51dfa12e-328d-439d-98af-4c0e40d0afd3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"51dfa12e-328d-439d-98af-4c0e40d0afd3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.378Z\", \"registration\": \"c8f86912-8a88-4444-9fc7-26936c6ee3ec\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DESI L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Laurence Desilets - Pump Installer : 38000-25/PUMP DESI L"}}, {"model": "reversion.version", "pk": 3750, "fields": {"revision": 2042, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3751, "fields": {"revision": 2042, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3752, "fields": {"revision": 2042, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3753, "fields": {"revision": 2043, "object_id": "51ea1d66-b3f0-4b91-91a9-27a5a0eee7a4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"51ea1d66-b3f0-4b91-91a9-27a5a0eee7a4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.385Z\", \"registration\": \"fde5606f-2e99-402a-87eb-9faad930886c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HENN B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Henning - Pump Installer : 38000-25/PUMP HENN B"}}, {"model": "reversion.version", "pk": 3754, "fields": {"revision": 2043, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3755, "fields": {"revision": 2043, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3756, "fields": {"revision": 2043, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3757, "fields": {"revision": 2044, "object_id": "520f2320-d590-4058-92f4-fbbea6df319a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"520f2320-d590-4058-92f4-fbbea6df319a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.392Z\", \"registration\": \"645c50a1-38d9-4cb3-bf75-20d51cf37f4d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI NELS R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2012-188\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-06-21\", \"application_outcome_notification_date\": \"2012-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Nelson - Well Driller : 38000-25/DRI NELS R"}}, {"model": "reversion.version", "pk": 3758, "fields": {"revision": 2044, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3759, "fields": {"revision": 2044, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3760, "fields": {"revision": 2044, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3761, "fields": {"revision": 2045, "object_id": "5217f018-8844-49ab-8630-ea6285ab72a3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5217f018-8844-49ab-8630-ea6285ab72a3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.399Z\", \"registration\": \"e54890a2-3d0b-4bf2-84e6-f063a1394098\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CHIU D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dean Chiuppi - Well Driller : 38000-25/DRI CHIU D"}}, {"model": "reversion.version", "pk": 3762, "fields": {"revision": 2045, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3763, "fields": {"revision": 2045, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3764, "fields": {"revision": 2045, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3765, "fields": {"revision": 2046, "object_id": "5286411e-3737-40b4-844c-b40f92900d79", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5286411e-3737-40b4-844c-b40f92900d79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.406Z\", \"registration\": \"38f2d9c2-f30b-4fe6-845e-432f97222f46\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP YEMM R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-21\", \"application_outcome_notification_date\": \"2008-10-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Yemm - Pump Installer : 38000-25/PUMP YEMM R"}}, {"model": "reversion.version", "pk": 3766, "fields": {"revision": 2046, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3767, "fields": {"revision": 2046, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3768, "fields": {"revision": 2046, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3769, "fields": {"revision": 2047, "object_id": "53083d93-8968-456f-b328-d44f3c7ce771", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"53083d93-8968-456f-b328-d44f3c7ce771\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.413Z\", \"registration\": \"4e753044-4cba-4447-951f-e37d5327c41f\", \"subactivity\": \"GEOTECH\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dale VanDam - Well Driller : None"}}, {"model": "reversion.version", "pk": 3770, "fields": {"revision": 2047, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3771, "fields": {"revision": 2047, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3772, "fields": {"revision": 2047, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3773, "fields": {"revision": 2048, "object_id": "531fbe29-5422-4ba3-ae31-1541db55e362", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"531fbe29-5422-4ba3-ae31-1541db55e362\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.421Z\", \"registration\": \"c02a96d1-3b8b-4148-b819-e9a2b4225fbb\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BERG T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tor Berg - Well Driller : 38000-25/DRI BERG T"}}, {"model": "reversion.version", "pk": 3774, "fields": {"revision": 2048, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3775, "fields": {"revision": 2048, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3776, "fields": {"revision": 2048, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3777, "fields": {"revision": 2049, "object_id": "53357434-23ca-46bd-8577-e67db26d4ebe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"53357434-23ca-46bd-8577-e67db26d4ebe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.428Z\", \"registration\": \"5dd15c8e-8a64-46f6-8ec9-63715e855b3f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FYFE T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tom Fyfe - Pump Installer : 38000-25/PUMP FYFE T"}}, {"model": "reversion.version", "pk": 3778, "fields": {"revision": 2049, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3779, "fields": {"revision": 2049, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3780, "fields": {"revision": 2049, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3781, "fields": {"revision": 2050, "object_id": "536574f0-bcf7-4bb6-b095-fb894de356a3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"536574f0-bcf7-4bb6-b095-fb894de356a3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.435Z\", \"registration\": \"9eb789de-bdc6-4949-8de5-399bc8fd0bee\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LEWI G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Lewis - Pump Installer : 38000-25/PUMP LEWI G"}}, {"model": "reversion.version", "pk": 3782, "fields": {"revision": 2050, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3783, "fields": {"revision": 2050, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3784, "fields": {"revision": 2050, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3785, "fields": {"revision": 2051, "object_id": "54346288-49e1-4c46-979a-e42bf8df1b07", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"54346288-49e1-4c46-979a-e42bf8df1b07\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.445Z\", \"registration\": \"fdbe900d-c203-4100-aa2f-7ef068ad5811\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHR T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Schryvers - Well Driller : 38000-25/DRI SCHR T"}}, {"model": "reversion.version", "pk": 3786, "fields": {"revision": 2051, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3787, "fields": {"revision": 2051, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3788, "fields": {"revision": 2051, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3789, "fields": {"revision": 2052, "object_id": "54461441-03b3-4300-b883-daa7d6543be2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"54461441-03b3-4300-b883-daa7d6543be2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.453Z\", \"registration\": \"c86c05e8-4904-42fb-a020-9ba9e9740b75\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SMIT K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken Smithson - Well Driller : 38000-25/DRI SMIT K"}}, {"model": "reversion.version", "pk": 3790, "fields": {"revision": 2052, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3791, "fields": {"revision": 2052, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3792, "fields": {"revision": 2052, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3793, "fields": {"revision": 2053, "object_id": "547d851e-9aa8-446f-8ee5-f9837f9af153", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"547d851e-9aa8-446f-8ee5-f9837f9af153\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.460Z\", \"registration\": \"e24cf686-8410-494e-92ad-aaaf88bd1b5e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WEST J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-10\", \"application_outcome_notification_date\": \"2005-02-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Weston - Well Driller : 38000-25/DRI WEST J"}}, {"model": "reversion.version", "pk": 3794, "fields": {"revision": 2053, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3795, "fields": {"revision": 2053, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3796, "fields": {"revision": 2053, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3797, "fields": {"revision": 2054, "object_id": "54d56b0e-b8e3-45c2-af53-5da2bfd7801a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"54d56b0e-b8e3-45c2-af53-5da2bfd7801a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.467Z\", \"registration\": \"dce084b1-0a18-47b2-91a8-ecb28ec1a340\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FYFE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Fyfe - Well Driller : 38000-25/DRI FYFE K"}}, {"model": "reversion.version", "pk": 3798, "fields": {"revision": 2054, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3799, "fields": {"revision": 2054, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3800, "fields": {"revision": 2054, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3801, "fields": {"revision": 2055, "object_id": "558572b8-be1a-41b6-8001-3f9018e692c6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"558572b8-be1a-41b6-8001-3f9018e692c6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.474Z\", \"registration\": \"89333a3e-500f-4843-b2c7-5b16e81189d2\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CORL P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Corley - Well Driller : 38000-25/DRI CORL P"}}, {"model": "reversion.version", "pk": 3802, "fields": {"revision": 2055, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3803, "fields": {"revision": 2055, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3804, "fields": {"revision": 2055, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3805, "fields": {"revision": 2056, "object_id": "559a9610-6ece-4b6e-8fac-f74f79c0f42b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"559a9610-6ece-4b6e-8fac-f74f79c0f42b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.481Z\", \"registration\": \"b92480e3-caa2-4c86-a884-f19bdfde5f0f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MAIE T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-07\", \"application_outcome_notification_date\": \"2009-05-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Maier - Pump Installer : 38000-25/PUMP MAIE T"}}, {"model": "reversion.version", "pk": 3806, "fields": {"revision": 2056, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3807, "fields": {"revision": 2056, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3808, "fields": {"revision": 2056, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 3809, "fields": {"revision": 2057, "object_id": "559c7e37-a1f1-45a5-9c7e-5fe5075e810a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"559c7e37-a1f1-45a5-9c7e-5fe5075e810a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.489Z\", \"registration\": \"90c7e102-3af5-4e21-ac18-664b62622b8a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CLAD M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Caldwell - Well Driller : 38000-25/DRI CLAD M"}}, {"model": "reversion.version", "pk": 3810, "fields": {"revision": 2057, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3811, "fields": {"revision": 2057, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3812, "fields": {"revision": 2057, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3813, "fields": {"revision": 2058, "object_id": "5631a5a1-8b41-472c-9d76-098b4b93d411", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5631a5a1-8b41-472c-9d76-098b4b93d411\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.496Z\", \"registration\": \"eef5988f-a5cc-4675-8b5c-0550877e88e6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CARL G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-165\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-21\", \"application_outcome_notification_date\": \"2010-09-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory Carlos - Well Driller : 38000-25/DRI CARL G"}}, {"model": "reversion.version", "pk": 3814, "fields": {"revision": 2058, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3815, "fields": {"revision": 2058, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3816, "fields": {"revision": 2058, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3817, "fields": {"revision": 2059, "object_id": "5640e040-2ea8-4aac-b4bd-c8a389c73148", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5640e040-2ea8-4aac-b4bd-c8a389c73148\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.505Z\", \"registration\": \"624305f6-2bd5-46ca-a0c7-43d959c82e7a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GEHR R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-10\", \"application_outcome_notification_date\": \"2005-02-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Gehring - Pump Installer : 38000-25/PUMP GEHR R"}}, {"model": "reversion.version", "pk": 3818, "fields": {"revision": 2059, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3819, "fields": {"revision": 2059, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3820, "fields": {"revision": 2059, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3821, "fields": {"revision": 2060, "object_id": "5651413b-dfe9-4bf4-a56c-7b4bc371eb5a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5651413b-dfe9-4bf4-a56c-7b4bc371eb5a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.512Z\", \"registration\": \"200013a0-2b3d-40ed-9d5d-36cc787e80b8\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI TEDF M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Tedford - Well Driller : 38000-25/DRI TEDF M"}}, {"model": "reversion.version", "pk": 3822, "fields": {"revision": 2060, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3823, "fields": {"revision": 2060, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3824, "fields": {"revision": 2060, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3825, "fields": {"revision": 2061, "object_id": "5668c826-d8c4-4e24-bcec-cfce64278b36", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5668c826-d8c4-4e24-bcec-cfce64278b36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.520Z\", \"registration\": \"cd0b5677-b34e-4a8f-8cdf-f0080a5f3006\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MACK C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0005-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-15\", \"application_outcome_notification_date\": \"2004-12-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Carl MacKenzie - Well Driller : 38000-25/DRI MACK C"}}, {"model": "reversion.version", "pk": 3826, "fields": {"revision": 2061, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3827, "fields": {"revision": 2061, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3828, "fields": {"revision": 2061, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3829, "fields": {"revision": 2062, "object_id": "56c401f6-6980-4d3a-8604-50dbec421500", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"56c401f6-6980-4d3a-8604-50dbec421500\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.527Z\", \"registration\": \"d159559e-846b-4c10-9a7f-e7c94ae751d3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FRAN R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Franks - Well Driller : 38000-25/DRI FRAN R"}}, {"model": "reversion.version", "pk": 3830, "fields": {"revision": 2062, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3831, "fields": {"revision": 2062, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3832, "fields": {"revision": 2062, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3833, "fields": {"revision": 2063, "object_id": "5724b961-5805-4e19-a1ff-64f195a070c2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5724b961-5805-4e19-a1ff-64f195a070c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.534Z\", \"registration\": \"686f780f-fe15-4764-a225-2d19f26cc5db\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ROSE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Rosehill - Well Driller : 38000-25/DRI ROSE K"}}, {"model": "reversion.version", "pk": 3834, "fields": {"revision": 2063, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3835, "fields": {"revision": 2063, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3836, "fields": {"revision": 2063, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3837, "fields": {"revision": 2064, "object_id": "57629b9d-4f75-4fba-b26b-35d31bc41396", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"57629b9d-4f75-4fba-b26b-35d31bc41396\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.540Z\", \"registration\": \"71d134dd-fb8d-4258-bc6c-4979283a3f1d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ROMS D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Romses - Well Driller : 38000-25/DRI ROMS D"}}, {"model": "reversion.version", "pk": 3838, "fields": {"revision": 2064, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3839, "fields": {"revision": 2064, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3840, "fields": {"revision": 2064, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3841, "fields": {"revision": 2065, "object_id": "57f126db-96df-4a57-a111-2e9094f671ed", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"57f126db-96df-4a57-a111-2e9094f671ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.547Z\", \"registration\": \"103df769-88d5-450f-a3c8-434e38587620\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GILL C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/476706\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-19\", \"application_outcome_notification_date\": \"2009-05-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cory Gillis - Well Driller : 38000-25/DRI GILL C"}}, {"model": "reversion.version", "pk": 3842, "fields": {"revision": 2065, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3843, "fields": {"revision": 2065, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3844, "fields": {"revision": 2065, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3845, "fields": {"revision": 2066, "object_id": "580ebe49-019f-4029-a411-0104670d94fe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"580ebe49-019f-4029-a411-0104670d94fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.554Z\", \"registration\": \"dd2047bf-958b-4e8c-8432-21832d6095a6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HOWE W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-10\", \"application_outcome_notification_date\": \"2005-08-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Howe - Well Driller : 38000-25/DRI HOWE W"}}, {"model": "reversion.version", "pk": 3846, "fields": {"revision": 2066, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3847, "fields": {"revision": 2066, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3848, "fields": {"revision": 2066, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3849, "fields": {"revision": 2067, "object_id": "582ecabe-6202-4109-9a33-683c57681dde", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"582ecabe-6202-4109-9a33-683c57681dde\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.561Z\", \"registration\": \"53033840-8565-4a85-a4d1-faf75e9037c7\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BRED P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Breadon - Well Driller : 38000-25/DRI BRED P"}}, {"model": "reversion.version", "pk": 3850, "fields": {"revision": 2067, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3851, "fields": {"revision": 2067, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3852, "fields": {"revision": 2067, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3853, "fields": {"revision": 2068, "object_id": "5870a779-e436-4462-a764-aa3bf055ba5d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5870a779-e436-4462-a764-aa3bf055ba5d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.567Z\", \"registration\": \"436e24e3-34d1-4c89-abab-0e1414ed32a4\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STEA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darcy Stead - Well Driller : 38000-25/DRI STEA D"}}, {"model": "reversion.version", "pk": 3854, "fields": {"revision": 2068, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3855, "fields": {"revision": 2068, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3856, "fields": {"revision": 2068, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3857, "fields": {"revision": 2069, "object_id": "589c7bc6-aaf1-413b-90cf-83df069b6c03", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"589c7bc6-aaf1-413b-90cf-83df069b6c03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.574Z\", \"registration\": \"6d388c4a-d66e-4cfc-8bba-dabda1f8d2b8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WOOD R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Woods - Pump Installer : 38000-25/PUMP WOOD R"}}, {"model": "reversion.version", "pk": 3858, "fields": {"revision": 2069, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3859, "fields": {"revision": 2069, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3860, "fields": {"revision": 2069, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3861, "fields": {"revision": 2070, "object_id": "58d6c883-a3cc-4c95-8338-75bd4ca85076", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"58d6c883-a3cc-4c95-8338-75bd4ca85076\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.581Z\", \"registration\": \"c5863e86-af89-4219-983f-e901c1a80de5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI TUYT B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-26\", \"application_outcome_notification_date\": \"2005-01-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Tuytel - Well Driller : 38000-25/DRI TUYT B"}}, {"model": "reversion.version", "pk": 3862, "fields": {"revision": 2070, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3863, "fields": {"revision": 2070, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3864, "fields": {"revision": 2070, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3865, "fields": {"revision": 2071, "object_id": "59aafd23-43c8-49bc-9916-6b6eebac30ef", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"59aafd23-43c8-49bc-9916-6b6eebac30ef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.588Z\", \"registration\": \"3a1de42a-4ecc-42c4-a4d6-528eae60d453\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PELZ D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-02\", \"application_outcome_notification_date\": \"2006-06-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Pelzer - Pump Installer : 38000-25/PUMP PELZ D"}}, {"model": "reversion.version", "pk": 3866, "fields": {"revision": 2071, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3867, "fields": {"revision": 2071, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3868, "fields": {"revision": 2071, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3869, "fields": {"revision": 2072, "object_id": "59e7f942-83e3-4beb-9495-5927aff923b2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"59e7f942-83e3-4beb-9495-5927aff923b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.595Z\", \"registration\": \"1fbca652-c9a0-4873-ac5d-e58988016355\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KOHL A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kohlhauser - Well Driller : 38000-25/DRI KOHL A"}}, {"model": "reversion.version", "pk": 3870, "fields": {"revision": 2072, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3871, "fields": {"revision": 2072, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3872, "fields": {"revision": 2072, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3873, "fields": {"revision": 2073, "object_id": "59f5464b-f2e3-4b01-9344-c8862323f096", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"59f5464b-f2e3-4b01-9344-c8862323f096\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.602Z\", \"registration\": \"4e98c4be-9a6d-4af5-8ceb-026e650e9694\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LABR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-24\", \"application_outcome_notification_date\": \"2006-07-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry LaBrie - Well Driller : 38000-25/DRI LABR J"}}, {"model": "reversion.version", "pk": 3874, "fields": {"revision": 2073, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3875, "fields": {"revision": 2073, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3876, "fields": {"revision": 2073, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3877, "fields": {"revision": 2074, "object_id": "59f79a8c-6f3e-4328-a4c1-a867c12bac1b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"59f79a8c-6f3e-4328-a4c1-a867c12bac1b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.608Z\", \"registration\": \"46df5644-a0d1-4735-9f7d-281d65af8607\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WYNN C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"primary_certificate_no\": \"00005-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-11-16\", \"application_outcome_notification_date\": \"2016-11-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Craig Wynn - Well Driller : 38000-25/DRI WYNN C"}}, {"model": "reversion.version", "pk": 3878, "fields": {"revision": 2074, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3879, "fields": {"revision": 2074, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3880, "fields": {"revision": 2074, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 3881, "fields": {"revision": 2075, "object_id": "5a447450-8d87-41d1-a469-2c5bf3013387", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5a447450-8d87-41d1-a469-2c5bf3013387\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.615Z\", \"registration\": \"eaf0acad-e96c-484d-9f39-4dd7f6f33fba\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LAMB J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-28\", \"application_outcome_notification_date\": \"2005-10-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jody Lambert - Well Driller : 38000-25/DRI LAMB J"}}, {"model": "reversion.version", "pk": 3882, "fields": {"revision": 2075, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3883, "fields": {"revision": 2075, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3884, "fields": {"revision": 2075, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3885, "fields": {"revision": 2076, "object_id": "5a60cc32-559e-405d-b483-e3ec96d5ae0f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5a60cc32-559e-405d-b483-e3ec96d5ae0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.622Z\", \"registration\": \"9db2f8a3-9461-42d6-bed9-3d8c1a9780c8\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SAMI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Samis - Well Driller : 38000-25/DRI SAMI R"}}, {"model": "reversion.version", "pk": 3886, "fields": {"revision": 2076, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3887, "fields": {"revision": 2076, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3888, "fields": {"revision": 2076, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3889, "fields": {"revision": 2077, "object_id": "5a77452c-e9b0-469b-9a7b-cf0f1b9c7f8f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5a77452c-e9b0-469b-9a7b-cf0f1b9c7f8f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.629Z\", \"registration\": \"8f504182-63d2-44c6-ac01-0bfca2ccea73\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HOCK S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0004-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-05\", \"application_outcome_notification_date\": \"2006-07-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Saul Hock - Well Driller : 38000-25/DRI HOCK S"}}, {"model": "reversion.version", "pk": 3890, "fields": {"revision": 2077, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3891, "fields": {"revision": 2077, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3892, "fields": {"revision": 2077, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3893, "fields": {"revision": 2078, "object_id": "5ac808ee-5240-4080-8631-553eb7420221", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5ac808ee-5240-4080-8631-553eb7420221\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.635Z\", \"registration\": \"9bbcf487-5370-48e7-8aeb-89fc8233dffb\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP REIT C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Charles Reitsma - Pump Installer : 38000-25/PUMP REIT C"}}, {"model": "reversion.version", "pk": 3894, "fields": {"revision": 2078, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3895, "fields": {"revision": 2078, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3896, "fields": {"revision": 2078, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3897, "fields": {"revision": 2079, "object_id": "5ad87ecb-d765-407d-8b7e-88ceb96e992d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5ad87ecb-d765-407d-8b7e-88ceb96e992d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.357Z\", \"registration\": \"eb3f344f-e0c6-4f02-92d9-85afb27c3f9a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CUDL F\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0015-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-16\", \"application_outcome_notification_date\": \"2008-04-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Fred Cudlipp - Well Driller : 38000-25/DRI CUDL F"}}, {"model": "reversion.version", "pk": 3898, "fields": {"revision": 2079, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3899, "fields": {"revision": 2079, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3900, "fields": {"revision": 2079, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3901, "fields": {"revision": 2080, "object_id": "5aecfa39-92ae-475f-a5b6-c61c87d1dfe9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5aecfa39-92ae-475f-a5b6-c61c87d1dfe9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.642Z\", \"registration\": \"2d42435d-53a1-4016-bd82-5f925c183fb8\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI DODD W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Dodd - Well Driller : 38000-25/DRI DODD W"}}, {"model": "reversion.version", "pk": 3902, "fields": {"revision": 2080, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3903, "fields": {"revision": 2080, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3904, "fields": {"revision": 2080, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3905, "fields": {"revision": 2081, "object_id": "5b3e06fb-15a7-42df-8c72-c9fb5ccd0a86", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5b3e06fb-15a7-42df-8c72-c9fb5ccd0a86\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.649Z\", \"registration\": \"b9fd0852-4ad4-4cce-9082-4362edfc8c3e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SLAD K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0018-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken Slade - Well Driller : 38000-25/DRI SLAD K"}}, {"model": "reversion.version", "pk": 3906, "fields": {"revision": 2081, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3907, "fields": {"revision": 2081, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3908, "fields": {"revision": 2081, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3909, "fields": {"revision": 2082, "object_id": "5b5924cb-c8b2-4e4b-b881-b50fa4605593", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5b5924cb-c8b2-4e4b-b881-b50fa4605593\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.656Z\", \"registration\": \"af62b059-3f2d-4a30-8257-63bf5a73827d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FULL L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lorne Fuller - Pump Installer : 38000-25/PUMP FULL L"}}, {"model": "reversion.version", "pk": 3910, "fields": {"revision": 2082, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3911, "fields": {"revision": 2082, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3912, "fields": {"revision": 2082, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3913, "fields": {"revision": 2083, "object_id": "5b8a08a6-b304-46da-8489-102d619cded0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5b8a08a6-b304-46da-8489-102d619cded0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.663Z\", \"registration\": \"237f1196-2cb0-4d02-acd7-d7e5bdee3ec3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI VLCH S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Steve Vlchek - Well Driller : 38000-25/DRI VLCH S"}}, {"model": "reversion.version", "pk": 3914, "fields": {"revision": 2083, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3915, "fields": {"revision": 2083, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3916, "fields": {"revision": 2083, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3917, "fields": {"revision": 2084, "object_id": "5b999625-479f-4d07-9d4f-89cfc24c492e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5b999625-479f-4d07-9d4f-89cfc24c492e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.670Z\", \"registration\": \"20ca3db9-812d-4ddb-94e3-cc15c408d751\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FRIE R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick Friedel - Well Driller : 38000-25/DRI FRIE R"}}, {"model": "reversion.version", "pk": 3918, "fields": {"revision": 2084, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3919, "fields": {"revision": 2084, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3920, "fields": {"revision": 2084, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3921, "fields": {"revision": 2085, "object_id": "5bb8cfba-c196-4303-8c9d-f0507e9a7a1d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5bb8cfba-c196-4303-8c9d-f0507e9a7a1d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.676Z\", \"registration\": \"90c7e102-3af5-4e21-ac18-664b62622b8a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CLAD M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Caldwell - Well Driller : 38000-25/DRI CLAD M"}}, {"model": "reversion.version", "pk": 3922, "fields": {"revision": 2085, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3923, "fields": {"revision": 2085, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3924, "fields": {"revision": 2085, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3925, "fields": {"revision": 2086, "object_id": "5bbdf44e-6261-4b6b-8b83-45c2bef6e1e2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5bbdf44e-6261-4b6b-8b83-45c2bef6e1e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.683Z\", \"registration\": \"f1d0762d-ad7d-44d2-9ebf-1853b549414b\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ONGM J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-172\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-02-25\", \"application_outcome_notification_date\": \"2011-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Ongman - Well Driller : 38000-25/DRI ONGM J"}}, {"model": "reversion.version", "pk": 3926, "fields": {"revision": 2086, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3927, "fields": {"revision": 2086, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3928, "fields": {"revision": 2086, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3929, "fields": {"revision": 2087, "object_id": "5bcc5bc2-59a6-4c97-9ca5-9fd19e70f5a8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5bcc5bc2-59a6-4c97-9ca5-9fd19e70f5a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.690Z\", \"registration\": \"62c508aa-6d3d-4c10-b818-060d455c86ae\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/WOOD S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0025-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stanley Woodford - Well Driller : 38000-25/WOOD S"}}, {"model": "reversion.version", "pk": 3930, "fields": {"revision": 2087, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3931, "fields": {"revision": 2087, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3932, "fields": {"revision": 2087, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3933, "fields": {"revision": 2088, "object_id": "5bd5a28f-d6b8-4b82-94f2-5a3046786a51", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5bd5a28f-d6b8-4b82-94f2-5a3046786a51\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.697Z\", \"registration\": \"dc400ac2-442c-4ce4-b9c5-9323bc8815a1\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCKE K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-161\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-08-18\", \"application_outcome_notification_date\": \"2008-08-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken McKellar - Well Driller : 38000-25/DRI MCKE K"}}, {"model": "reversion.version", "pk": 3934, "fields": {"revision": 2088, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3935, "fields": {"revision": 2088, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3936, "fields": {"revision": 2088, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3937, "fields": {"revision": 2089, "object_id": "5be2386d-326e-4e45-b910-f1d8cb446038", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5be2386d-326e-4e45-b910-f1d8cb446038\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.704Z\", \"registration\": \"b3ba6677-7c13-4c1f-a57d-2c0dc227a352\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WARD D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Ward - Well Driller : 38000-25/DRI WARD D"}}, {"model": "reversion.version", "pk": 3938, "fields": {"revision": 2089, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3939, "fields": {"revision": 2089, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3940, "fields": {"revision": 2089, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3941, "fields": {"revision": 2090, "object_id": "5c3dd093-bfdd-4bf0-92e9-dfa59aa729a5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5c3dd093-bfdd-4bf0-92e9-dfa59aa729a5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.711Z\", \"registration\": \"0cb97728-189c-4184-8a75-915f2da211f4\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOMB M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2007-139\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-09-19\", \"application_outcome_notification_date\": \"2007-09-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Bombardier - Well Driller : 38000-25/DRI BOMB M"}}, {"model": "reversion.version", "pk": 3942, "fields": {"revision": 2090, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3943, "fields": {"revision": 2090, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3944, "fields": {"revision": 2090, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3945, "fields": {"revision": 2091, "object_id": "5c6c8357-d204-45bb-8058-2f5d6300bca7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5c6c8357-d204-45bb-8058-2f5d6300bca7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.718Z\", \"registration\": \"faa2bce8-6360-43f4-99aa-87c53128e907\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOCH D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-06\", \"application_outcome_notification_date\": \"2005-04-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Duane Bochek - Well Driller : 38000-25/DRI BOCH D"}}, {"model": "reversion.version", "pk": 3946, "fields": {"revision": 2091, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3947, "fields": {"revision": 2091, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3948, "fields": {"revision": 2091, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3949, "fields": {"revision": 2092, "object_id": "5c7f3f2b-55ec-46ca-b0fc-c5fed1bba0b2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5c7f3f2b-55ec-46ca-b0fc-c5fed1bba0b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.725Z\", \"registration\": \"7b4baf50-1e99-49b4-a8c7-f23a8ca069fc\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI RIEH C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clayton Riehl - Well Driller : 38000-25/DRI RIEH C"}}, {"model": "reversion.version", "pk": 3950, "fields": {"revision": 2092, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3951, "fields": {"revision": 2092, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3952, "fields": {"revision": 2092, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3953, "fields": {"revision": 2093, "object_id": "5c84e8f9-7572-4de3-9e86-210ff3988a4c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5c84e8f9-7572-4de3-9e86-210ff3988a4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.732Z\", \"registration\": \"7feeb12f-b87e-4b20-8679-4242400f0713\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FAAS J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-171\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-07-14\", \"application_outcome_notification_date\": \"2011-07-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Justin Faasse - Well Driller : 38000-25/DRI FAAS J"}}, {"model": "reversion.version", "pk": 3954, "fields": {"revision": 2093, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3955, "fields": {"revision": 2093, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3956, "fields": {"revision": 2093, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3957, "fields": {"revision": 2094, "object_id": "5c9dd4c1-3f36-4fcc-ad90-83f163ab72b0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5c9dd4c1-3f36-4fcc-ad90-83f163ab72b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.738Z\", \"registration\": \"84a37988-2955-4354-91d9-9ab2425c3673\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP AYRE R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Reg Ayre - Pump Installer : 38000-25/PUMP AYRE R"}}, {"model": "reversion.version", "pk": 3958, "fields": {"revision": 2094, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 3959, "fields": {"revision": 2094, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3960, "fields": {"revision": 2094, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 3961, "fields": {"revision": 2095, "object_id": "5d48b9ad-9b66-4ac5-a832-e873dfbbfc9b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5d48b9ad-9b66-4ac5-a832-e873dfbbfc9b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.745Z\", \"registration\": \"6fe3bbd4-c659-4feb-a787-3e68f42eb652\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCDO J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-03\", \"application_outcome_notification_date\": \"2004-11-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John McDonald - Well Driller : 38000-25/DRI MCDO J"}}, {"model": "reversion.version", "pk": 3962, "fields": {"revision": 2095, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3963, "fields": {"revision": 2095, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3964, "fields": {"revision": 2095, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3965, "fields": {"revision": 2096, "object_id": "5d7016e5-9725-4e0e-9126-b10218752e2d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5d7016e5-9725-4e0e-9126-b10218752e2d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.752Z\", \"registration\": \"2772cbcc-2827-4de5-b927-c6b8e6ed191c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25 DRI HOLI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Holiove - Well Driller : 38000-25 DRI HOLI R"}}, {"model": "reversion.version", "pk": 3966, "fields": {"revision": 2096, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3967, "fields": {"revision": 2096, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3968, "fields": {"revision": 2096, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3969, "fields": {"revision": 2097, "object_id": "5dfc951a-0c6a-44c6-8fa1-ef692296a499", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5dfc951a-0c6a-44c6-8fa1-ef692296a499\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.758Z\", \"registration\": \"7e13c9db-f033-4073-9ebc-6f803a18bd30\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BROW M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-25\", \"application_outcome_notification_date\": \"2005-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Brown - Well Driller : 38000-25/DRI BROW M"}}, {"model": "reversion.version", "pk": 3970, "fields": {"revision": 2097, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3971, "fields": {"revision": 2097, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3972, "fields": {"revision": 2097, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3973, "fields": {"revision": 2098, "object_id": "5e2bd370-b720-45f9-bc8b-d8d5a1e4c24c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5e2bd370-b720-45f9-bc8b-d8d5a1e4c24c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.765Z\", \"registration\": \"5d6c27ee-633e-45da-ae22-95f9e6439cab\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BARL C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00026-WW-08\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-03-23\", \"application_outcome_notification_date\": \"2009-03-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Barling - Well Driller : 38000-25/DRI BARL C"}}, {"model": "reversion.version", "pk": 3974, "fields": {"revision": 2098, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 3975, "fields": {"revision": 2098, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3976, "fields": {"revision": 2098, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3977, "fields": {"revision": 2099, "object_id": "5e947601-b20b-4cae-9321-a2dddddeb249", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5e947601-b20b-4cae-9321-a2dddddeb249\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.772Z\", \"registration\": \"76e0946b-8e92-4a13-8a4d-72f0c464ce52\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI NOBE W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Nobes - Well Driller : 38000-25/DRI NOBE W"}}, {"model": "reversion.version", "pk": 3978, "fields": {"revision": 2099, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3979, "fields": {"revision": 2099, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3980, "fields": {"revision": 2099, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3981, "fields": {"revision": 2100, "object_id": "5ebe47be-e8bd-4cea-85bf-74bad901007c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5ebe47be-e8bd-4cea-85bf-74bad901007c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.779Z\", \"registration\": \"213d6cac-05b9-45af-b9de-c8c9dd683e36\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI JACK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Jackson - Well Driller : 38000-25/DRI JACK J"}}, {"model": "reversion.version", "pk": 3982, "fields": {"revision": 2100, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3983, "fields": {"revision": 2100, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3984, "fields": {"revision": 2100, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3985, "fields": {"revision": 2101, "object_id": "5eea8119-9a98-421b-a255-15788802571e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5eea8119-9a98-421b-a255-15788802571e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.786Z\", \"registration\": \"118f0346-2a7c-47ea-8fa7-7a99d0c2f284\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BUEL P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/869974-92071A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-09-21\", \"application_outcome_notification_date\": \"2015-09-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Phillip Buelow - Well Driller : 38000-25/DRI BUEL P"}}, {"model": "reversion.version", "pk": 3986, "fields": {"revision": 2101, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3987, "fields": {"revision": 2101, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3988, "fields": {"revision": 2101, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3989, "fields": {"revision": 2102, "object_id": "5f111cea-767d-4d75-9ea4-01845ea682f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5f111cea-767d-4d75-9ea4-01845ea682f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.793Z\", \"registration\": \"a4a429ed-f1cf-4c76-89b2-9b9db86de9bb\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHI M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Max Schibli - Well Driller : 38000-25/DRI SCHI M"}}, {"model": "reversion.version", "pk": 3990, "fields": {"revision": 2102, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 3991, "fields": {"revision": 2102, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3992, "fields": {"revision": 2102, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3993, "fields": {"revision": 2103, "object_id": "5f39ea5d-8826-4d77-a9e9-307c4445eebe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5f39ea5d-8826-4d77-a9e9-307c4445eebe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.800Z\", \"registration\": \"b20a9d8f-4fbc-491d-a3a1-9cf954aeae2e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI DIXO B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ben Dixon - Well Driller : 38000-25/DRI DIXO B"}}, {"model": "reversion.version", "pk": 3994, "fields": {"revision": 2103, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3995, "fields": {"revision": 2103, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 3996, "fields": {"revision": 2103, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 3997, "fields": {"revision": 2104, "object_id": "5f3a3875-8f90-47c9-b788-8a40c936f76d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5f3a3875-8f90-47c9-b788-8a40c936f76d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.808Z\", \"registration\": \"2ec57971-496e-48ef-9f5a-a35adc8be90a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BROW C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-16\", \"application_outcome_notification_date\": \"2006-09-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chad Brown - Well Driller : 38000-25/DRI BROW C"}}, {"model": "reversion.version", "pk": 3998, "fields": {"revision": 2104, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 3999, "fields": {"revision": 2104, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4000, "fields": {"revision": 2104, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4001, "fields": {"revision": 2105, "object_id": "5f5b62bc-64b2-4ee8-9d97-ca6dd04e53b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5f5b62bc-64b2-4ee8-9d97-ca6dd04e53b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.815Z\", \"registration\": \"6bcb902f-6488-44b5-8231-84349bfad7d7\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BARL D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dallas Barlow - Well Driller : 38000-25/DRI BARL D"}}, {"model": "reversion.version", "pk": 4002, "fields": {"revision": 2105, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4003, "fields": {"revision": 2105, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4004, "fields": {"revision": 2105, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4005, "fields": {"revision": 2106, "object_id": "5f92b226-1a2b-45f7-82fd-d36dc9d177dd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"5f92b226-1a2b-45f7-82fd-d36dc9d177dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.822Z\", \"registration\": \"8359999c-d349-4c42-8590-fb7f52f83e51\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MALL S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-05-22\", \"application_outcome_notification_date\": \"2013-05-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Sian Mallett - Pump Installer : 38000-25/PUMP MALL S"}}, {"model": "reversion.version", "pk": 4006, "fields": {"revision": 2106, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4007, "fields": {"revision": 2106, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4008, "fields": {"revision": 2106, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4009, "fields": {"revision": 2107, "object_id": "6021fbce-6e5d-4254-b125-aee93d438a03", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6021fbce-6e5d-4254-b125-aee93d438a03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.829Z\", \"registration\": \"e8d75874-1ee0-4d67-8ede-6ebacba27e76\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI UNRA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00022-WW-01\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-08\", \"application_outcome_notification_date\": \"2005-02-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Unrau - Well Driller : 38000-25/DRI UNRA D"}}, {"model": "reversion.version", "pk": 4010, "fields": {"revision": 2107, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4011, "fields": {"revision": 2107, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4012, "fields": {"revision": 2107, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4013, "fields": {"revision": 2108, "object_id": "60547de0-eb22-4a1e-b667-a65fb480d852", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"60547de0-eb22-4a1e-b667-a65fb480d852\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.836Z\", \"registration\": \"1c9c1909-569c-4794-83ca-7f0a4a235b98\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ANDE P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2003-099\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Anderson - Well Driller : 38000-25/DRI ANDE P"}}, {"model": "reversion.version", "pk": 4014, "fields": {"revision": 2108, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4015, "fields": {"revision": 2108, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4016, "fields": {"revision": 2108, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4017, "fields": {"revision": 2109, "object_id": "605d966a-c568-4890-b31c-895af1cdd05b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"605d966a-c568-4890-b31c-895af1cdd05b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.843Z\", \"registration\": \"bb9a7840-468c-4fdf-be74-4824c0591ef5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CADE M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Cadeau - Well Driller : 38000-25/DRI CADE M"}}, {"model": "reversion.version", "pk": 4018, "fields": {"revision": 2109, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4019, "fields": {"revision": 2109, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4020, "fields": {"revision": 2109, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4021, "fields": {"revision": 2110, "object_id": "606a538d-6bc0-4d5a-9d0f-d1d5d0b333b0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"606a538d-6bc0-4d5a-9d0f-d1d5d0b333b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.850Z\", \"registration\": \"b4498c92-4e8f-427e-959f-224e7b8265df\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PRUD R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randal Pruden - Well Driller : 38000-25/DRI PRUD R"}}, {"model": "reversion.version", "pk": 4022, "fields": {"revision": 2110, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4023, "fields": {"revision": 2110, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4024, "fields": {"revision": 2110, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4025, "fields": {"revision": 2111, "object_id": "610a99ac-f083-401f-925b-a191bc460b3d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"610a99ac-f083-401f-925b-a191bc460b3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.857Z\", \"registration\": \"7fe22d8d-32cf-487c-8ebf-136e931b654f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOMB H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-11\", \"application_outcome_notification_date\": \"2006-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harvey Bombardier - Well Driller : 38000-25/DRI BOMB H"}}, {"model": "reversion.version", "pk": 4026, "fields": {"revision": 2111, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4027, "fields": {"revision": 2111, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4028, "fields": {"revision": 2111, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4029, "fields": {"revision": 2112, "object_id": "61c02674-46a5-4be3-a653-946eacd55767", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"61c02674-46a5-4be3-a653-946eacd55767\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.864Z\", \"registration\": \"b0da0e52-c031-45aa-a57d-4440daac5cb8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TEIN W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wolfgang Teiner - Pump Installer : 38000-25/PUMP TEIN W"}}, {"model": "reversion.version", "pk": 4030, "fields": {"revision": 2112, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4031, "fields": {"revision": 2112, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4032, "fields": {"revision": 2112, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4033, "fields": {"revision": 2113, "object_id": "61ca9359-66c6-4528-b3de-ef4ae03c8812", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"61ca9359-66c6-4528-b3de-ef4ae03c8812\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.871Z\", \"registration\": \"fd29be44-2200-4680-a486-c5d01a1168e8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TEBR N\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Neal TeBrinke - Pump Installer : 38000-25/PUMP TEBR N"}}, {"model": "reversion.version", "pk": 4034, "fields": {"revision": 2113, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4035, "fields": {"revision": 2113, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4036, "fields": {"revision": 2113, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4037, "fields": {"revision": 2114, "object_id": "6224e68e-05b4-424b-8f38-1a75eef6821e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6224e68e-05b4-424b-8f38-1a75eef6821e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.878Z\", \"registration\": \"96a7d4fa-5a22-488d-9e63-b0904b4b7556\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI TOML D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek Tomlinson - Well Driller : 38000-25/DRI TOML D"}}, {"model": "reversion.version", "pk": 4038, "fields": {"revision": 2114, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4039, "fields": {"revision": 2114, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4040, "fields": {"revision": 2114, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4041, "fields": {"revision": 2115, "object_id": "62549bff-23ee-4667-aaa1-2935d292b58a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"62549bff-23ee-4667-aaa1-2935d292b58a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.885Z\", \"registration\": \"b657c8f4-053e-4c92-85a9-6e79e8e552d1\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WIDA J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/483894 - 32379A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-10-31\", \"application_outcome_notification_date\": \"2011-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joey Widaiko - Well Driller : 38000-25/DRI WIDA J"}}, {"model": "reversion.version", "pk": 4042, "fields": {"revision": 2115, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4043, "fields": {"revision": 2115, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4044, "fields": {"revision": 2115, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4045, "fields": {"revision": 2116, "object_id": "625c1f8f-4166-4772-ac0a-f4aafacda634", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"625c1f8f-4166-4772-ac0a-f4aafacda634\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.892Z\", \"registration\": \"cd716026-060f-4100-9463-83a375e3612b\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI RAMS S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shane Ramsey - Well Driller : 38000-25/DRI RAMS S"}}, {"model": "reversion.version", "pk": 4046, "fields": {"revision": 2116, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4047, "fields": {"revision": 2116, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4048, "fields": {"revision": 2116, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4049, "fields": {"revision": 2117, "object_id": "6267c1dc-7ad3-45a9-a3e3-942ccfc84346", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6267c1dc-7ad3-45a9-a3e3-942ccfc84346\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.899Z\", \"registration\": \"01263d8a-a212-487c-8dd0-89a9a0da3105\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GILB J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/951707-4708NQ\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-01-11\", \"application_outcome_notification_date\": \"2011-01-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jonathan Gilbert - Well Driller : 38000-25/DRI GILB J"}}, {"model": "reversion.version", "pk": 4050, "fields": {"revision": 2117, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4051, "fields": {"revision": 2117, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4052, "fields": {"revision": 2117, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4053, "fields": {"revision": 2118, "object_id": "6294ed09-56d2-4884-9ce0-899057ce3773", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6294ed09-56d2-4884-9ce0-899057ce3773\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.906Z\", \"registration\": \"237f1196-2cb0-4d02-acd7-d7e5bdee3ec3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI VLCH S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Steve Vlchek - Well Driller : 38000-25/DRI VLCH S"}}, {"model": "reversion.version", "pk": 4054, "fields": {"revision": 2118, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4055, "fields": {"revision": 2118, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4056, "fields": {"revision": 2118, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4057, "fields": {"revision": 2119, "object_id": "629c7292-c281-4284-a1fb-e48777f897ce", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"629c7292-c281-4284-a1fb-e48777f897ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.913Z\", \"registration\": \"f706de15-4c46-49df-a073-9a6f6de996f3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SMAL M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Smallwood - Well Driller : 38000-25/DRI SMAL M"}}, {"model": "reversion.version", "pk": 4058, "fields": {"revision": 2119, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4059, "fields": {"revision": 2119, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4060, "fields": {"revision": 2119, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4061, "fields": {"revision": 2120, "object_id": "631daa5f-ac98-46e9-8b95-a9a7020b587f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"631daa5f-ac98-46e9-8b95-a9a7020b587f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.920Z\", \"registration\": \"6f62592e-3179-4960-8f7d-68866a9900b0\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI OLMR G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-06\", \"application_outcome_notification_date\": \"2006-07-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Olmr - Well Driller : 38000-25/DRI OLMR G"}}, {"model": "reversion.version", "pk": 4062, "fields": {"revision": 2120, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4063, "fields": {"revision": 2120, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4064, "fields": {"revision": 2120, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4065, "fields": {"revision": 2121, "object_id": "6347fec9-9f44-43cd-8a26-dd310d1e6751", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6347fec9-9f44-43cd-8a26-dd310d1e6751\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.927Z\", \"registration\": \"c02a96d1-3b8b-4148-b819-e9a2b4225fbb\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BERG T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tor Berg - Well Driller : 38000-25/DRI BERG T"}}, {"model": "reversion.version", "pk": 4066, "fields": {"revision": 2121, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4067, "fields": {"revision": 2121, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4068, "fields": {"revision": 2121, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4069, "fields": {"revision": 2122, "object_id": "641d6437-f04d-4cfe-95b2-41d3145ed2ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"641d6437-f04d-4cfe-95b2-41d3145ed2ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.934Z\", \"registration\": \"243d5ed0-745a-4832-879a-276e8ef8ea03\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SLEA G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-166\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-06\", \"application_outcome_notification_date\": \"2009-05-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Sleasman - Well Driller : 38000-25/DRI SLEA G"}}, {"model": "reversion.version", "pk": 4070, "fields": {"revision": 2122, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4071, "fields": {"revision": 2122, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4072, "fields": {"revision": 2122, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4073, "fields": {"revision": 2123, "object_id": "6431c5c7-e5c7-410f-8392-8ba20760ca94", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6431c5c7-e5c7-410f-8392-8ba20760ca94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.941Z\", \"registration\": \"a4a429ed-f1cf-4c76-89b2-9b9db86de9bb\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHI M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Max Schibli - Well Driller : 38000-25/DRI SCHI M"}}, {"model": "reversion.version", "pk": 4074, "fields": {"revision": 2123, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4075, "fields": {"revision": 2123, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4076, "fields": {"revision": 2123, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4077, "fields": {"revision": 2124, "object_id": "6444fba4-48b8-4db1-99dc-7453438e96dd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6444fba4-48b8-4db1-99dc-7453438e96dd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.949Z\", \"registration\": \"2128857d-cb8f-44c6-aae6-0ab08012e54a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KREN T\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Krenbrink - Well Driller : 38000-25/DRI KREN T"}}, {"model": "reversion.version", "pk": 4078, "fields": {"revision": 2124, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4079, "fields": {"revision": 2124, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4080, "fields": {"revision": 2124, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4081, "fields": {"revision": 2125, "object_id": "644d34d4-47e0-4e29-a981-4e12a4e68ac6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"644d34d4-47e0-4e29-a981-4e12a4e68ac6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.956Z\", \"registration\": \"ebb2910b-eb16-46c5-ba1e-f9ebe8aad172\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI IVEN B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Ivens - Well Driller : 38000-25/DRI IVEN B"}}, {"model": "reversion.version", "pk": 4082, "fields": {"revision": 2125, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4083, "fields": {"revision": 2125, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4084, "fields": {"revision": 2125, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4085, "fields": {"revision": 2126, "object_id": "64537640-5543-432c-9e94-cf336bf0684a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"64537640-5543-432c-9e94-cf336bf0684a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.963Z\", \"registration\": \"df6a5d45-956e-497e-b1c2-782c00af825c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WATT J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0009-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-05\", \"application_outcome_notification_date\": \"2006-04-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Watts - Well Driller : 38000-25/DRI WATT J"}}, {"model": "reversion.version", "pk": 4086, "fields": {"revision": 2126, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4087, "fields": {"revision": 2126, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4088, "fields": {"revision": 2126, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4089, "fields": {"revision": 2127, "object_id": "645e352d-08b4-4fa5-8bb7-4d94b95a4688", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"645e352d-08b4-4fa5-8bb7-4d94b95a4688\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.971Z\", \"registration\": \"8f504182-63d2-44c6-ac01-0bfca2ccea73\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HOCK S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0004-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-05\", \"application_outcome_notification_date\": \"2006-07-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Saul Hock - Well Driller : 38000-25/DRI HOCK S"}}, {"model": "reversion.version", "pk": 4090, "fields": {"revision": 2127, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4091, "fields": {"revision": 2127, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4092, "fields": {"revision": 2127, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4093, "fields": {"revision": 2128, "object_id": "646c86b9-c5eb-4b23-8831-fa34082fb995", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"646c86b9-c5eb-4b23-8831-fa34082fb995\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.979Z\", \"registration\": \"af475bf2-da79-4920-b85b-6d78efaac414\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MOOR M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"035-0/493566\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-12\", \"application_outcome_notification_date\": \"2017-06-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Moore - Well Driller : 38000-25/DRI MOOR M"}}, {"model": "reversion.version", "pk": 4094, "fields": {"revision": 2128, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4095, "fields": {"revision": 2128, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4096, "fields": {"revision": 2128, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 4097, "fields": {"revision": 2129, "object_id": "64a80c52-e291-4da9-b23c-7f667b668432", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"64a80c52-e291-4da9-b23c-7f667b668432\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.986Z\", \"registration\": \"569b64a9-e45b-41ec-a4bd-b6651dd503e6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GARD R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-173\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-26\", \"application_outcome_notification_date\": \"2010-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Gardiner - Well Driller : 38000-25/DRI GARD R"}}, {"model": "reversion.version", "pk": 4098, "fields": {"revision": 2129, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4099, "fields": {"revision": 2129, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4100, "fields": {"revision": 2129, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4101, "fields": {"revision": 2130, "object_id": "64c3eb91-6923-49b9-991a-d96377eb4431", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"64c3eb91-6923-49b9-991a-d96377eb4431\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:37:59.993Z\", \"registration\": \"f0366091-16fa-4f05-9515-2b1e62bda85a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DORA G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Geoff Doran - Pump Installer : 38000-25/PUMP DORA G"}}, {"model": "reversion.version", "pk": 4102, "fields": {"revision": 2130, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4103, "fields": {"revision": 2130, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4104, "fields": {"revision": 2130, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4105, "fields": {"revision": 2131, "object_id": "64d29164-af60-45c5-92f4-d48083179175", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"64d29164-af60-45c5-92f4-d48083179175\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.003Z\", \"registration\": \"1c4a697c-dc5d-4808-9120-b5f51c76dcab\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ABER D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Abercrombie - Well Driller : 38000-25/DRI ABER D"}}, {"model": "reversion.version", "pk": 4106, "fields": {"revision": 2131, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4107, "fields": {"revision": 2131, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4108, "fields": {"revision": 2131, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4109, "fields": {"revision": 2132, "object_id": "6503c084-ccdd-4a09-933b-813f6bd55d35", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6503c084-ccdd-4a09-933b-813f6bd55d35\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.014Z\", \"registration\": \"a3f79ba8-503d-49a1-8abd-100be3c3f300\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DUCH B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-06\", \"application_outcome_notification_date\": \"2006-07-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Barry Duch - Pump Installer : 38000-25/PUMP DUCH B"}}, {"model": "reversion.version", "pk": 4110, "fields": {"revision": 2132, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4111, "fields": {"revision": 2132, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4112, "fields": {"revision": 2132, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4113, "fields": {"revision": 2133, "object_id": "6534e8d2-93ef-46d3-8ca4-1cbfefce6965", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6534e8d2-93ef-46d3-8ca4-1cbfefce6965\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.024Z\", \"registration\": \"f2b723d7-b5b4-402d-829a-829564b49060\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MAYN P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Patrick Mayne - Well Driller : 38000-25/DRI MAYN P"}}, {"model": "reversion.version", "pk": 4114, "fields": {"revision": 2133, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4115, "fields": {"revision": 2133, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4116, "fields": {"revision": 2133, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4117, "fields": {"revision": 2134, "object_id": "657adadd-9ae4-4743-bb77-b28e8983e156", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"657adadd-9ae4-4743-bb77-b28e8983e156\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.035Z\", \"registration\": \"436e24e3-34d1-4c89-abab-0e1414ed32a4\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STEA D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darcy Stead - Well Driller : 38000-25/DRI STEA D"}}, {"model": "reversion.version", "pk": 4118, "fields": {"revision": 2134, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4119, "fields": {"revision": 2134, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4120, "fields": {"revision": 2134, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4121, "fields": {"revision": 2135, "object_id": "65913cc7-444c-42e3-bce0-7775a9c28b74", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"65913cc7-444c-42e3-bce0-7775a9c28b74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.046Z\", \"registration\": \"af475bf2-da79-4920-b85b-6d78efaac414\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MOOR M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"035-0/493566\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-12\", \"application_outcome_notification_date\": \"2017-06-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Moore - Well Driller : 38000-25/DRI MOOR M"}}, {"model": "reversion.version", "pk": 4122, "fields": {"revision": 2135, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4123, "fields": {"revision": 2135, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4124, "fields": {"revision": 2135, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 4125, "fields": {"revision": 2136, "object_id": "65c09306-5c48-4675-b7a3-1ed6e394f376", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"65c09306-5c48-4675-b7a3-1ed6e394f376\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.057Z\", \"registration\": \"df6a5d45-956e-497e-b1c2-782c00af825c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WATT J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0009-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-05\", \"application_outcome_notification_date\": \"2006-04-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Watts - Well Driller : 38000-25/DRI WATT J"}}, {"model": "reversion.version", "pk": 4126, "fields": {"revision": 2136, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4127, "fields": {"revision": 2136, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4128, "fields": {"revision": 2136, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4129, "fields": {"revision": 2137, "object_id": "65d65471-aa0d-4710-bc5d-678c74c4df7a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"65d65471-aa0d-4710-bc5d-678c74c4df7a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.068Z\", \"registration\": \"8aaac0b3-10bb-45d8-acfe-fa7ee8d79770\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOUR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Bourk - Well Driller : 38000-25/DRI BOUR J"}}, {"model": "reversion.version", "pk": 4130, "fields": {"revision": 2137, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4131, "fields": {"revision": 2137, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4132, "fields": {"revision": 2137, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4133, "fields": {"revision": 2138, "object_id": "65f546df-5f51-4c9a-a7d9-b5eb2a9f4849", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"65f546df-5f51-4c9a-a7d9-b5eb2a9f4849\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.077Z\", \"registration\": \"8f349eb7-ee8b-4fa2-9c40-3901119c354f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SZEL J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jared Szeles - Pump Installer : 38000-25/PUMP SZEL J"}}, {"model": "reversion.version", "pk": 4134, "fields": {"revision": 2138, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4135, "fields": {"revision": 2138, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4136, "fields": {"revision": 2138, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4137, "fields": {"revision": 2139, "object_id": "65fe4cec-7c2d-449e-b4a8-d04cd81da88d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"65fe4cec-7c2d-449e-b4a8-d04cd81da88d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.086Z\", \"registration\": \"e468504a-333b-44c5-a5db-9665a97388fc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PEDE D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Don Pederson - Pump Installer : 38000-25/PUMP PEDE D"}}, {"model": "reversion.version", "pk": 4138, "fields": {"revision": 2139, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4139, "fields": {"revision": 2139, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4140, "fields": {"revision": 2139, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4141, "fields": {"revision": 2140, "object_id": "662eb4a1-5d9c-4c11-abb2-fb031bc4c8d5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"662eb4a1-5d9c-4c11-abb2-fb031bc4c8d5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.094Z\", \"registration\": \"e0836035-2b03-4d1f-b841-c62a76dd01dd\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STEW A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Stewart - Well Driller : 38000-25/DRI STEW A"}}, {"model": "reversion.version", "pk": 4142, "fields": {"revision": 2140, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4143, "fields": {"revision": 2140, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4144, "fields": {"revision": 2140, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4145, "fields": {"revision": 2141, "object_id": "66332450-0bbd-4325-832b-e1a4ddbab348", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"66332450-0bbd-4325-832b-e1a4ddbab348\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.102Z\", \"registration\": \"ffeaec06-28f0-4455-beed-8e5cc2b1d50c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MISE P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0031-WW-89\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-09\", \"application_outcome_notification_date\": \"2005-02-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Misek - Well Driller : 38000-25/DRI MISE P"}}, {"model": "reversion.version", "pk": 4146, "fields": {"revision": 2141, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4147, "fields": {"revision": 2141, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4148, "fields": {"revision": 2141, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4149, "fields": {"revision": 2142, "object_id": "66450de8-77ac-490e-8172-a5cff9b941c7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"66450de8-77ac-490e-8172-a5cff9b941c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.111Z\", \"registration\": \"570e5a76-4eb0-4398-a981-b1699121b05d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACR M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2018-01-08\", \"application_outcome_notification_date\": \"2018-01-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan MacRae - Pump Installer : 38000-25/PUMP MACR M"}}, {"model": "reversion.version", "pk": 4150, "fields": {"revision": 2142, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4151, "fields": {"revision": 2142, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4152, "fields": {"revision": 2142, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 4153, "fields": {"revision": 2143, "object_id": "66506ab5-e5f0-455a-be6e-6352d1b379f6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"66506ab5-e5f0-455a-be6e-6352d1b379f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.120Z\", \"registration\": \"4f7321b0-97e3-4ebd-8e9d-0f11d561f525\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CAME J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-155\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-02\", \"application_outcome_notification_date\": \"2011-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Cameron - Well Driller : 38000-25/DRI CAME J"}}, {"model": "reversion.version", "pk": 4154, "fields": {"revision": 2143, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4155, "fields": {"revision": 2143, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4156, "fields": {"revision": 2143, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4157, "fields": {"revision": 2144, "object_id": "66a34dc7-47d5-46c6-8e1b-f5c5c8430e48", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"66a34dc7-47d5-46c6-8e1b-f5c5c8430e48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.129Z\", \"registration\": \"6dd046f9-1ec3-42d3-85e5-700d3bb89b1c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DOUM J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"88d5d0aa-d2aa-450a-9708-a911dce42f7f\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-10-05\", \"application_outcome_notification_date\": \"2011-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joshua Douma - Pump Installer : 38000-25/PUMP DOUM J"}}, {"model": "reversion.version", "pk": 4158, "fields": {"revision": 2144, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4159, "fields": {"revision": 2144, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4160, "fields": {"revision": 2144, "object_id": "88d5d0aa-d2aa-450a-9708-a911dce42f7f", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"88d5d0aa-d2aa-450a-9708-a911dce42f7f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"ON\", \"registries_activity\": \"PUMP\", \"name\": \"Well Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "ON Pump Installer Well Technician Certificate"}}, {"model": "reversion.version", "pk": 4161, "fields": {"revision": 2145, "object_id": "66dad0c5-017e-4e85-b9b3-01e132183c06", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"66dad0c5-017e-4e85-b9b3-01e132183c06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.139Z\", \"registration\": \"7c77105f-b445-4826-8cf5-b3051861e399\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BEAN A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-09-12\", \"application_outcome_notification_date\": \"2011-09-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andy Beam - Pump Installer : 38000-25/PUMP BEAN A"}}, {"model": "reversion.version", "pk": 4162, "fields": {"revision": 2145, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4163, "fields": {"revision": 2145, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4164, "fields": {"revision": 2145, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4165, "fields": {"revision": 2146, "object_id": "66e4f946-515d-44d3-931b-7cc1ffd11925", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"66e4f946-515d-44d3-931b-7cc1ffd11925\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.147Z\", \"registration\": \"001ead05-44fd-42f2-a452-7170f2477a41\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FILL P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Pascal Fillion - Pump Installer : 38000-25/PUMP FILL P"}}, {"model": "reversion.version", "pk": 4166, "fields": {"revision": 2146, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4167, "fields": {"revision": 2146, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4168, "fields": {"revision": 2146, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4169, "fields": {"revision": 2147, "object_id": "6731507c-9e93-4f96-b096-52fafa63a3e9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6731507c-9e93-4f96-b096-52fafa63a3e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.154Z\", \"registration\": \"a599224d-5b5a-4fc3-af04-f924d4ff8539\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MILN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-06-21\", \"application_outcome_notification_date\": \"2007-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Milne - Pump Installer : 38000-25/PUMP MILN R"}}, {"model": "reversion.version", "pk": 4170, "fields": {"revision": 2147, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4171, "fields": {"revision": 2147, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4172, "fields": {"revision": 2147, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4173, "fields": {"revision": 2148, "object_id": "6761a44b-d7a5-4ba6-a2aa-db9ba5328c50", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6761a44b-d7a5-4ba6-a2aa-db9ba5328c50\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.162Z\", \"registration\": \"9a526bd6-d5c0-4f7e-972a-f00576653a6a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CULL M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-22\", \"application_outcome_notification_date\": \"2005-04-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Cullen - Pump Installer : 38000-25/PUMP CULL M"}}, {"model": "reversion.version", "pk": 4174, "fields": {"revision": 2148, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4175, "fields": {"revision": 2148, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4176, "fields": {"revision": 2148, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4177, "fields": {"revision": 2149, "object_id": "6793ab6d-d4bd-4eb3-9bb8-f3ab012c9037", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6793ab6d-d4bd-4eb3-9bb8-f3ab012c9037\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.169Z\", \"registration\": \"0dfe97b7-03a9-4208-b454-7761e97324f7\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PEAR R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/905613-83061A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Riley Pearson - Well Driller : 38000-25/DRI PEAR R"}}, {"model": "reversion.version", "pk": 4178, "fields": {"revision": 2149, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4179, "fields": {"revision": 2149, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4180, "fields": {"revision": 2149, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4181, "fields": {"revision": 2150, "object_id": "68999e06-3703-4173-ad94-5fff97163cdc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"68999e06-3703-4173-ad94-5fff97163cdc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.177Z\", \"registration\": \"d979e941-017d-476b-9bd5-55238af6812c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PROS D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Prosser - Well Driller : 38000-25/DRI PROS D"}}, {"model": "reversion.version", "pk": 4182, "fields": {"revision": 2150, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4183, "fields": {"revision": 2150, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4184, "fields": {"revision": 2150, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4185, "fields": {"revision": 2151, "object_id": "690553a6-f9db-4831-aeb7-545e1d82f959", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"690553a6-f9db-4831-aeb7-545e1d82f959\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.184Z\", \"registration\": \"5ceae28c-07fe-44cc-8425-7811667f0c6d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NAKA R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-14\", \"application_outcome_notification_date\": \"2006-04-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Naka - Pump Installer : 38000-25/PUMP NAKA R"}}, {"model": "reversion.version", "pk": 4186, "fields": {"revision": 2151, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4187, "fields": {"revision": 2151, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4188, "fields": {"revision": 2151, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4189, "fields": {"revision": 2152, "object_id": "691ff75f-f1fc-4a08-9c5d-e4275756cb65", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"691ff75f-f1fc-4a08-9c5d-e4275756cb65\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.192Z\", \"registration\": \"bb9a7840-468c-4fdf-be74-4824c0591ef5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CADE M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Cadeau - Well Driller : 38000-25/DRI CADE M"}}, {"model": "reversion.version", "pk": 4190, "fields": {"revision": 2152, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4191, "fields": {"revision": 2152, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4192, "fields": {"revision": 2152, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4193, "fields": {"revision": 2153, "object_id": "6930666f-fc9d-4d8c-9ff1-94b3b04926a4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6930666f-fc9d-4d8c-9ff1-94b3b04926a4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.199Z\", \"registration\": \"663e062c-ae86-4a6e-88c8-635b578cfa24\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI TAYL H\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Henry Taylor - Well Driller : 38000-25/DRI TAYL H"}}, {"model": "reversion.version", "pk": 4194, "fields": {"revision": 2153, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4195, "fields": {"revision": 2153, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4196, "fields": {"revision": 2153, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4197, "fields": {"revision": 2154, "object_id": "6973c178-11ec-4795-96b7-4af60bd9b765", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6973c178-11ec-4795-96b7-4af60bd9b765\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.207Z\", \"registration\": \"036f0c6b-02dc-4f1b-a65e-305e5adb47e5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WANG F\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Floyd (Bob) Wangler - Well Driller : 38000-25/DRI WANG F"}}, {"model": "reversion.version", "pk": 4198, "fields": {"revision": 2154, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4199, "fields": {"revision": 2154, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4200, "fields": {"revision": 2154, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4201, "fields": {"revision": 2155, "object_id": "6979189a-805c-464a-a113-02e75e4e9245", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6979189a-805c-464a-a113-02e75e4e9245\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.214Z\", \"registration\": \"5d6c27ee-633e-45da-ae22-95f9e6439cab\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BARL C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00026-WW-08\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-03-23\", \"application_outcome_notification_date\": \"2009-03-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Barling - Well Driller : 38000-25/DRI BARL C"}}, {"model": "reversion.version", "pk": 4202, "fields": {"revision": 2155, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4203, "fields": {"revision": 2155, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4204, "fields": {"revision": 2155, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4205, "fields": {"revision": 2156, "object_id": "6990e51e-666a-4689-a604-a3c1b06c2598", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6990e51e-666a-4689-a604-a3c1b06c2598\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.222Z\", \"registration\": \"91c0133d-cabf-45b1-a73a-a43bc245cb0b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JANZ R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-06-20\", \"application_outcome_notification_date\": \"2008-06-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ron Janzen - Pump Installer : 38000-25/PUMP JANZ R"}}, {"model": "reversion.version", "pk": 4206, "fields": {"revision": 2156, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4207, "fields": {"revision": 2156, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4208, "fields": {"revision": 2156, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4209, "fields": {"revision": 2157, "object_id": "69b44e28-725f-46f7-b7f6-3d65f0819732", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"69b44e28-725f-46f7-b7f6-3d65f0819732\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.238Z\", \"registration\": \"248b32d4-7ff2-420c-a244-545597e63dcc\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HAYN B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-11-06\", \"application_outcome_notification_date\": \"2015-11-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Haynes - Well Driller : 38000-25/DRI HAYN B"}}, {"model": "reversion.version", "pk": 4210, "fields": {"revision": 2157, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4211, "fields": {"revision": 2157, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4212, "fields": {"revision": 2157, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4213, "fields": {"revision": 2158, "object_id": "69e9a79f-6a3e-4c73-835d-ed0a34e822d4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"69e9a79f-6a3e-4c73-835d-ed0a34e822d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.245Z\", \"registration\": \"a303cbb4-917f-4d32-8c49-518ee3197a62\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GOTT G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Gottschall - Well Driller : 38000-25/DRI GOTT G"}}, {"model": "reversion.version", "pk": 4214, "fields": {"revision": 2158, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4215, "fields": {"revision": 2158, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4216, "fields": {"revision": 2158, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4217, "fields": {"revision": 2159, "object_id": "6a5eb49b-faf2-4a1a-bb17-66f43a7b1be0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6a5eb49b-faf2-4a1a-bb17-66f43a7b1be0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.252Z\", \"registration\": \"956ab3ef-4c78-4495-817e-b9890b87e040\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STOB D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Stober - Pump Installer : 38000-25/PUMP STOB D"}}, {"model": "reversion.version", "pk": 4218, "fields": {"revision": 2159, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4219, "fields": {"revision": 2159, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4220, "fields": {"revision": 2159, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4221, "fields": {"revision": 2160, "object_id": "6a863031-8017-4b3e-bd7c-f2527a97752e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6a863031-8017-4b3e-bd7c-f2527a97752e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.259Z\", \"registration\": \"715296ee-fb70-4fd8-a9ff-5610461021fa\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WYNN C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-07-16\", \"application_outcome_notification_date\": \"2015-07-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Craig Wynn - Pump Installer : 38000-25/PUMP WYNN C"}}, {"model": "reversion.version", "pk": 4222, "fields": {"revision": 2160, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4223, "fields": {"revision": 2160, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4224, "fields": {"revision": 2160, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 4225, "fields": {"revision": 2161, "object_id": "6aac0708-663f-4fd6-a9a6-bc0b191440ff", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6aac0708-663f-4fd6-a9a6-bc0b191440ff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.266Z\", \"registration\": \"62c508aa-6d3d-4c10-b818-060d455c86ae\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/WOOD S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0025-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stanley Woodford - Well Driller : 38000-25/WOOD S"}}, {"model": "reversion.version", "pk": 4226, "fields": {"revision": 2161, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4227, "fields": {"revision": 2161, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4228, "fields": {"revision": 2161, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4229, "fields": {"revision": 2162, "object_id": "6ab3e35e-09f9-4c71-ad3e-c8d2d49fa5ce", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6ab3e35e-09f9-4c71-ad3e-c8d2d49fa5ce\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.273Z\", \"registration\": \"d9434c08-eccc-405a-8344-f69f378b9305\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP OLMR G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-25\", \"application_outcome_notification_date\": \"2006-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Olmr - Pump Installer : 38000-25/PUMP OLMR G"}}, {"model": "reversion.version", "pk": 4230, "fields": {"revision": 2162, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4231, "fields": {"revision": 2162, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4232, "fields": {"revision": 2162, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4233, "fields": {"revision": 2163, "object_id": "6ada68a8-275e-4f65-ab2f-52621ed8a194", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6ada68a8-275e-4f65-ab2f-52621ed8a194\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.280Z\", \"registration\": \"e9c82c01-4986-4d9d-ad10-7b5300190e97\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ISER D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"primary_certificate_no\": \"00002-WW-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-02\", \"application_outcome_notification_date\": \"2017-06-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Isert - Well Driller : 38000-25/DRI ISER D"}}, {"model": "reversion.version", "pk": 4234, "fields": {"revision": 2163, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4235, "fields": {"revision": 2163, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4236, "fields": {"revision": 2163, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 4237, "fields": {"revision": 2164, "object_id": "6aee797c-1dd2-4819-a404-acb93ef8f353", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6aee797c-1dd2-4819-a404-acb93ef8f353\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.287Z\", \"registration\": \"1c4a697c-dc5d-4808-9120-b5f51c76dcab\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ABER D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Abercrombie - Well Driller : 38000-25/DRI ABER D"}}, {"model": "reversion.version", "pk": 4238, "fields": {"revision": 2164, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4239, "fields": {"revision": 2164, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4240, "fields": {"revision": 2164, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4241, "fields": {"revision": 2165, "object_id": "6b05fe36-3071-4a4e-8e99-5d04cfd2acd4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6b05fe36-3071-4a4e-8e99-5d04cfd2acd4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.294Z\", \"registration\": \"fd34f4c7-c1a6-44ee-b17d-c15053d8e26c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JORG B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Jorgensen - Pump Installer : 38000-25/PUMP JORG B"}}, {"model": "reversion.version", "pk": 4242, "fields": {"revision": 2165, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4243, "fields": {"revision": 2165, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4244, "fields": {"revision": 2165, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4245, "fields": {"revision": 2166, "object_id": "6b774226-bf6d-48a1-9f62-4374080580de", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6b774226-bf6d-48a1-9f62-4374080580de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.301Z\", \"registration\": \"9b4d4855-6e93-420d-88c2-8feb0433bf29\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCCO D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"primary_certificate_no\": \"00004-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-08-10\", \"application_outcome_notification_date\": \"2016-08-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas McConkey - Well Driller : 38000-25/DRI MCCO D"}}, {"model": "reversion.version", "pk": 4246, "fields": {"revision": 2166, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4247, "fields": {"revision": 2166, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4248, "fields": {"revision": 2166, "object_id": "a4b2e41c-3796-4c4c-ae28-eb6ad30202d9", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a4b2e41c-3796-4c4c-ae28-eb6ad30202d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Water Well Driller Certificate"}}, {"model": "reversion.version", "pk": 4249, "fields": {"revision": 2167, "object_id": "6b7c0f8b-30aa-4666-ad2f-0c48e7fbaf71", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6b7c0f8b-30aa-4666-ad2f-0c48e7fbaf71\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.309Z\", \"registration\": \"dface05c-f5ea-4d64-9965-88e7d3090d9d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BROW I\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-18\", \"application_outcome_notification_date\": \"2006-09-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ian Brown - Well Driller : 38000-25/DRI BROW I"}}, {"model": "reversion.version", "pk": 4250, "fields": {"revision": 2167, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4251, "fields": {"revision": 2167, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4252, "fields": {"revision": 2167, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4253, "fields": {"revision": 2168, "object_id": "6b8d82f4-f935-47f8-bca7-c7e420f66f64", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6b8d82f4-f935-47f8-bca7-c7e420f66f64\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.316Z\", \"registration\": \"a31afd6f-bca3-4c12-b7f4-ae6a97368b06\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CREA R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Creamer - Well Driller : 38000-25/DRI CREA R"}}, {"model": "reversion.version", "pk": 4254, "fields": {"revision": 2168, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4255, "fields": {"revision": 2168, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4256, "fields": {"revision": 2168, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4257, "fields": {"revision": 2169, "object_id": "6bb17ef3-b664-40ab-8369-d2ec7d79af56", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6bb17ef3-b664-40ab-8369-d2ec7d79af56\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.323Z\", \"registration\": \"29519eb9-114d-4a8b-acfe-f6e9d9720b7e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PERR W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0022-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Perry - Well Driller : 38000-25/DRI PERR W"}}, {"model": "reversion.version", "pk": 4258, "fields": {"revision": 2169, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4259, "fields": {"revision": 2169, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4260, "fields": {"revision": 2169, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4261, "fields": {"revision": 2170, "object_id": "6c06673a-d142-44e8-9249-7c2188d1a9d0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6c06673a-d142-44e8-9249-7c2188d1a9d0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.330Z\", \"registration\": \"c2c4b63b-17ee-4337-bd32-219b4fa6b819\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DOOR P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Patrick Doorn - Pump Installer : 38000-25/PUMP DOOR P"}}, {"model": "reversion.version", "pk": 4262, "fields": {"revision": 2170, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4263, "fields": {"revision": 2170, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4264, "fields": {"revision": 2170, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4265, "fields": {"revision": 2171, "object_id": "6c2e09d2-414c-4421-9082-2e445ff020f6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6c2e09d2-414c-4421-9082-2e445ff020f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.337Z\", \"registration\": \"39068332-353a-48f0-ac03-bb150eeeb497\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SPOO M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-02-02\", \"application_outcome_notification_date\": \"2011-02-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Matthew Spooner - Pump Installer : 38000-25/PUMP SPOO M"}}, {"model": "reversion.version", "pk": 4266, "fields": {"revision": 2171, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4267, "fields": {"revision": 2171, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4268, "fields": {"revision": 2171, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4269, "fields": {"revision": 2172, "object_id": "6ca0181b-678a-46d2-9576-ae67f9225dfd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6ca0181b-678a-46d2-9576-ae67f9225dfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.344Z\", \"registration\": \"927426dd-eef1-4031-ad9d-00525676f385\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DAVI G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Davidson - Pump Installer : 38000-25/PUMP DAVI G"}}, {"model": "reversion.version", "pk": 4270, "fields": {"revision": 2172, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4271, "fields": {"revision": 2172, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4272, "fields": {"revision": 2172, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4273, "fields": {"revision": 2173, "object_id": "6ca20ffa-3523-4d1c-8a5e-822c8dc4bcd2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6ca20ffa-3523-4d1c-8a5e-822c8dc4bcd2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.352Z\", \"registration\": \"abe546a2-b739-48f9-aca0-9b96d14591d5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BENS J\", \"proof_of_age\": null, \"registrar_notes\": \"prefers email contact over fax\", \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"35-J000059C\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-19\", \"application_outcome_notification_date\": \"2017-06-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Benson - Well Driller : 38000-25/DRI BENS J"}}, {"model": "reversion.version", "pk": 4274, "fields": {"revision": 2173, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4275, "fields": {"revision": 2173, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4276, "fields": {"revision": 2173, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 4277, "fields": {"revision": 2174, "object_id": "6d125a42-8e6c-4883-ab53-636515115dde", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6d125a42-8e6c-4883-ab53-636515115dde\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.359Z\", \"registration\": \"c5863e86-af89-4219-983f-e901c1a80de5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI TUYT B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-26\", \"application_outcome_notification_date\": \"2005-01-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Tuytel - Well Driller : 38000-25/DRI TUYT B"}}, {"model": "reversion.version", "pk": 4278, "fields": {"revision": 2174, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4279, "fields": {"revision": 2174, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4280, "fields": {"revision": 2174, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4281, "fields": {"revision": 2175, "object_id": "6d9a24f2-3cb3-419d-9653-7e561ae3fa21", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6d9a24f2-3cb3-419d-9653-7e561ae3fa21\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.366Z\", \"registration\": \"4a4a61dd-a44d-4395-8686-1eb8fe434459\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MOBE C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clarence Moberg - Well Driller : 38000-25/DRI MOBE C"}}, {"model": "reversion.version", "pk": 4282, "fields": {"revision": 2175, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4283, "fields": {"revision": 2175, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4284, "fields": {"revision": 2175, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4285, "fields": {"revision": 2176, "object_id": "6db4da7b-f8b6-454b-8c52-d69b77da9dd4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6db4da7b-f8b6-454b-8c52-d69b77da9dd4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.373Z\", \"registration\": \"9cb33182-e7a6-494d-a745-69220cb67120\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HALY J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-21\", \"application_outcome_notification_date\": \"2006-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Halyk - Well Driller : 38000-25/DRI HALY J"}}, {"model": "reversion.version", "pk": 4286, "fields": {"revision": 2176, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4287, "fields": {"revision": 2176, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4288, "fields": {"revision": 2176, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4289, "fields": {"revision": 2177, "object_id": "6e454000-a16e-4ca6-bd06-b7d445724f1f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6e454000-a16e-4ca6-bd06-b7d445724f1f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.380Z\", \"registration\": \"29519eb9-114d-4a8b-acfe-f6e9d9720b7e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PERR W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0022-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Perry - Well Driller : 38000-25/DRI PERR W"}}, {"model": "reversion.version", "pk": 4290, "fields": {"revision": 2177, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4291, "fields": {"revision": 2177, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4292, "fields": {"revision": 2177, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4293, "fields": {"revision": 2178, "object_id": "6e7f7f5d-0dd5-4d82-9019-879ed3b39429", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6e7f7f5d-0dd5-4d82-9019-879ed3b39429\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.387Z\", \"registration\": \"5b224240-76cc-47dc-b157-10bf4da82e02\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WEST G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gil Weston - Well Driller : 38000-25/DRI WEST G"}}, {"model": "reversion.version", "pk": 4294, "fields": {"revision": 2178, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4295, "fields": {"revision": 2178, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4296, "fields": {"revision": 2178, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4297, "fields": {"revision": 2179, "object_id": "6f1ce435-e841-4ac8-b238-31d60785478a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"6f1ce435-e841-4ac8-b238-31d60785478a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.394Z\", \"registration\": \"99772c19-ba11-4676-8e20-95cf9fb050fd\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI REEV P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-04-23\", \"application_outcome_notification_date\": \"2009-04-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Reeves - Well Driller : 38000-25/DRI REEV P"}}, {"model": "reversion.version", "pk": 4298, "fields": {"revision": 2179, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4299, "fields": {"revision": 2179, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4300, "fields": {"revision": 2179, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4301, "fields": {"revision": 2180, "object_id": "70753b82-cd19-40dd-aa94-dec360c26692", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"70753b82-cd19-40dd-aa94-dec360c26692\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.402Z\", \"registration\": \"9aae7e49-155d-48b3-ac48-890fdfcfe12e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI OOST A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-158\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-15\", \"application_outcome_notification_date\": \"2008-10-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Oostenbrink - Well Driller : 38000-25/DRI OOST A"}}, {"model": "reversion.version", "pk": 4302, "fields": {"revision": 2180, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4303, "fields": {"revision": 2180, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4304, "fields": {"revision": 2180, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4305, "fields": {"revision": 2181, "object_id": "707d3013-9824-4c2f-be3d-21becfbd5ac1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"707d3013-9824-4c2f-be3d-21becfbd5ac1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.411Z\", \"registration\": \"d979e941-017d-476b-9bd5-55238af6812c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PROS D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Prosser - Well Driller : 38000-25/DRI PROS D"}}, {"model": "reversion.version", "pk": 4306, "fields": {"revision": 2181, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4307, "fields": {"revision": 2181, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4308, "fields": {"revision": 2181, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4309, "fields": {"revision": 2182, "object_id": "70989177-d6c2-4f0d-a819-c8f50b643446", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"70989177-d6c2-4f0d-a819-c8f50b643446\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.421Z\", \"registration\": \"8e9ad741-cf13-4eac-b6b9-b56d55dad35f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JOHN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robin Johnson - Pump Installer : 38000-25/PUMP JOHN R"}}, {"model": "reversion.version", "pk": 4310, "fields": {"revision": 2182, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4311, "fields": {"revision": 2182, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4312, "fields": {"revision": 2182, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4313, "fields": {"revision": 2183, "object_id": "70e3447e-3b80-4a74-9e80-7388d28f9cc7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"70e3447e-3b80-4a74-9e80-7388d28f9cc7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.429Z\", \"registration\": \"11e35c0f-6607-477e-b477-4460ce587587\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CALD H\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Caldwell - Well Driller : 38000-25/DRI CALD H"}}, {"model": "reversion.version", "pk": 4314, "fields": {"revision": 2183, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4315, "fields": {"revision": 2183, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4316, "fields": {"revision": 2183, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4317, "fields": {"revision": 2184, "object_id": "70f5adb6-3bda-40ac-b41a-97d4a427d3e4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"70f5adb6-3bda-40ac-b41a-97d4a427d3e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.438Z\", \"registration\": \"b20a9d8f-4fbc-491d-a3a1-9cf954aeae2e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI DIXO B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ben Dixon - Well Driller : 38000-25/DRI DIXO B"}}, {"model": "reversion.version", "pk": 4318, "fields": {"revision": 2184, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4319, "fields": {"revision": 2184, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4320, "fields": {"revision": 2184, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4321, "fields": {"revision": 2185, "object_id": "7193fc89-bd46-427d-b91d-b5c26af4ec63", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7193fc89-bd46-427d-b91d-b5c26af4ec63\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.447Z\", \"registration\": \"c3b4bd14-3ea0-4f56-ac0f-f7626144a2e9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PALS B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-07-22\", \"application_outcome_notification_date\": \"2015-07-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bryan Palsson - Pump Installer : 38000-25/PUMP PALS B"}}, {"model": "reversion.version", "pk": 4322, "fields": {"revision": 2185, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4323, "fields": {"revision": 2185, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4324, "fields": {"revision": 2185, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4325, "fields": {"revision": 2186, "object_id": "721104aa-150d-437b-a4a3-9ae400099531", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"721104aa-150d-437b-a4a3-9ae400099531\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.456Z\", \"registration\": \"7371883e-e5d0-4c55-aa15-04c5209b6a19\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CURR C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00002-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-15\", \"application_outcome_notification_date\": \"2016-02-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cass Currie - Well Driller : 38000-25/DRI CURR C"}}, {"model": "reversion.version", "pk": 4326, "fields": {"revision": 2186, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4327, "fields": {"revision": 2186, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4328, "fields": {"revision": 2186, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4329, "fields": {"revision": 2187, "object_id": "72419348-0935-4310-8822-101274540db4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"72419348-0935-4310-8822-101274540db4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.465Z\", \"registration\": \"00744bf8-8c84-4fe2-aad7-d617b39f90bc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP THOM D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-08\", \"application_outcome_notification_date\": \"2005-02-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Thompson - Pump Installer : 38000-25/PUMP THOM D"}}, {"model": "reversion.version", "pk": 4330, "fields": {"revision": 2187, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4331, "fields": {"revision": 2187, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4332, "fields": {"revision": 2187, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4333, "fields": {"revision": 2188, "object_id": "7295e574-5353-4bb9-8c47-d6ce0fd27a69", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7295e574-5353-4bb9-8c47-d6ce0fd27a69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.475Z\", \"registration\": \"645c50a1-38d9-4cb3-bf75-20d51cf37f4d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI NELS R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2012-188\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-06-21\", \"application_outcome_notification_date\": \"2012-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Nelson - Well Driller : 38000-25/DRI NELS R"}}, {"model": "reversion.version", "pk": 4334, "fields": {"revision": 2188, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4335, "fields": {"revision": 2188, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4336, "fields": {"revision": 2188, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4337, "fields": {"revision": 2189, "object_id": "72cc1b60-d0cc-44b0-86b5-7a6382a998f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"72cc1b60-d0cc-44b0-86b5-7a6382a998f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.487Z\", \"registration\": \"b3ba6677-7c13-4c1f-a57d-2c0dc227a352\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WARD D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Ward - Well Driller : 38000-25/DRI WARD D"}}, {"model": "reversion.version", "pk": 4338, "fields": {"revision": 2189, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4339, "fields": {"revision": 2189, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4340, "fields": {"revision": 2189, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4341, "fields": {"revision": 2190, "object_id": "72ed5c9b-a406-48a5-be31-9f55bdd35184", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"72ed5c9b-a406-48a5-be31-9f55bdd35184\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.496Z\", \"registration\": \"f9b46ea0-37c9-400f-8c99-784e261f6f41\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GOES A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-09-19\", \"application_outcome_notification_date\": \"2013-09-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Aaron Goeson - Pump Installer : 38000-25/PUMP GOES A"}}, {"model": "reversion.version", "pk": 4342, "fields": {"revision": 2190, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4343, "fields": {"revision": 2190, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4344, "fields": {"revision": 2190, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4345, "fields": {"revision": 2191, "object_id": "7313b3e4-606f-4f13-bf6f-9067c74227ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7313b3e4-606f-4f13-bf6f-9067c74227ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.505Z\", \"registration\": \"6bcb902f-6488-44b5-8231-84349bfad7d7\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BARL D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dallas Barlow - Well Driller : 38000-25/DRI BARL D"}}, {"model": "reversion.version", "pk": 4346, "fields": {"revision": 2191, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4347, "fields": {"revision": 2191, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4348, "fields": {"revision": 2191, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4349, "fields": {"revision": 2192, "object_id": "738a443c-c278-4a80-afb4-8402f24829e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"738a443c-c278-4a80-afb4-8402f24829e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.514Z\", \"registration\": \"79965169-9640-4dd7-8074-24532c92cfa0\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI NEGG P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Neggers - Well Driller : 38000-25/DRI NEGG P"}}, {"model": "reversion.version", "pk": 4350, "fields": {"revision": 2192, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4351, "fields": {"revision": 2192, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4352, "fields": {"revision": 2192, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4353, "fields": {"revision": 2193, "object_id": "739e50bf-ca50-46b6-9918-49b7b8cc959e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"739e50bf-ca50-46b6-9918-49b7b8cc959e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.522Z\", \"registration\": \"bafd81e8-9857-417b-af6d-715a4ddd4920\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PHIL W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-05\", \"application_outcome_notification_date\": \"2006-07-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Philps - Well Driller : 38000-25/DRI PHIL W"}}, {"model": "reversion.version", "pk": 4354, "fields": {"revision": 2193, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4355, "fields": {"revision": 2193, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4356, "fields": {"revision": 2193, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4357, "fields": {"revision": 2194, "object_id": "73f6c5c6-e469-4499-baab-f18c3dbc2fc3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"73f6c5c6-e469-4499-baab-f18c3dbc2fc3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.532Z\", \"registration\": \"fdbe900d-c203-4100-aa2f-7ef068ad5811\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHR T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Schryvers - Well Driller : 38000-25/DRI SCHR T"}}, {"model": "reversion.version", "pk": 4358, "fields": {"revision": 2194, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4359, "fields": {"revision": 2194, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4360, "fields": {"revision": 2194, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4361, "fields": {"revision": 2195, "object_id": "74e0afb3-d925-4672-ab98-7432d87de524", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"74e0afb3-d925-4672-ab98-7432d87de524\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.540Z\", \"registration\": \"52c3cc91-2b35-4ba1-a31c-d19b4797f270\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HEAL J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Heal - Pump Installer : 38000-25/PUMP HEAL J"}}, {"model": "reversion.version", "pk": 4362, "fields": {"revision": 2195, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4363, "fields": {"revision": 2195, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4364, "fields": {"revision": 2195, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4365, "fields": {"revision": 2196, "object_id": "74e620f7-fac0-4e89-9e5b-4c4b5e39faf9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"74e620f7-fac0-4e89-9e5b-4c4b5e39faf9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.548Z\", \"registration\": \"a4281f58-21d2-4c3e-8fee-c7a58f0c0c58\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SMIT D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-149\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-04-20\", \"application_outcome_notification_date\": \"2011-04-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daryl Smith - Well Driller : 38000-25/DRI SMIT D"}}, {"model": "reversion.version", "pk": 4366, "fields": {"revision": 2196, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4367, "fields": {"revision": 2196, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4368, "fields": {"revision": 2196, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4369, "fields": {"revision": 2197, "object_id": "74eefd3c-2264-45a9-b763-53a77f368284", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"74eefd3c-2264-45a9-b763-53a77f368284\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.556Z\", \"registration\": \"e24cf686-8410-494e-92ad-aaaf88bd1b5e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WEST J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-10\", \"application_outcome_notification_date\": \"2005-02-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Weston - Well Driller : 38000-25/DRI WEST J"}}, {"model": "reversion.version", "pk": 4370, "fields": {"revision": 2197, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4371, "fields": {"revision": 2197, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4372, "fields": {"revision": 2197, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4373, "fields": {"revision": 2198, "object_id": "751588cb-7449-4d88-bfd7-daf8094caf08", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"751588cb-7449-4d88-bfd7-daf8094caf08\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.563Z\", \"registration\": \"0f91492c-4c5f-47fe-97fb-d720df0ec76f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STOO R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rusty Stooksberry - Pump Installer : 38000-25/PUMP STOO R"}}, {"model": "reversion.version", "pk": 4374, "fields": {"revision": 2198, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4375, "fields": {"revision": 2198, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4376, "fields": {"revision": 2198, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4377, "fields": {"revision": 2199, "object_id": "75771c24-0f38-493c-a756-10873563bfe7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75771c24-0f38-493c-a756-10873563bfe7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.570Z\", \"registration\": \"9e226453-a9eb-481b-8c5e-6af25120fd2d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LEMA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Lemal - Well Driller : 38000-25/DRI LEMA D"}}, {"model": "reversion.version", "pk": 4378, "fields": {"revision": 2199, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4379, "fields": {"revision": 2199, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4380, "fields": {"revision": 2199, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4381, "fields": {"revision": 2200, "object_id": "75952635-3fcd-4a10-b707-04179f6ca511", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75952635-3fcd-4a10-b707-04179f6ca511\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.578Z\", \"registration\": \"1e473954-bd2d-429c-a9ae-841cc84e13a2\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCIO B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-25\", \"application_outcome_notification_date\": \"2006-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill McIvor - Well Driller : 38000-25/DRI MCIO B"}}, {"model": "reversion.version", "pk": 4382, "fields": {"revision": 2200, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4383, "fields": {"revision": 2200, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4384, "fields": {"revision": 2200, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4385, "fields": {"revision": 2201, "object_id": "75a2dd4c-01b1-4487-9657-652c6851d608", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75a2dd4c-01b1-4487-9657-652c6851d608\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.586Z\", \"registration\": \"a31afd6f-bca3-4c12-b7f4-ae6a97368b06\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CREA R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Creamer - Well Driller : 38000-25/DRI CREA R"}}, {"model": "reversion.version", "pk": 4386, "fields": {"revision": 2201, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4387, "fields": {"revision": 2201, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4388, "fields": {"revision": 2201, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4389, "fields": {"revision": 2202, "object_id": "75b4faaf-d777-40c6-9e76-4c0617b562bd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75b4faaf-d777-40c6-9e76-4c0617b562bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.594Z\", \"registration\": \"0dfe97b7-03a9-4208-b454-7761e97324f7\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PEAR R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/905613-83061A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Riley Pearson - Well Driller : 38000-25/DRI PEAR R"}}, {"model": "reversion.version", "pk": 4390, "fields": {"revision": 2202, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4391, "fields": {"revision": 2202, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4392, "fields": {"revision": 2202, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4393, "fields": {"revision": 2203, "object_id": "75bcdd27-1a47-4b94-8f35-0fdb48729a4b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75bcdd27-1a47-4b94-8f35-0fdb48729a4b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.602Z\", \"registration\": \"9e5e6288-240b-4d04-90a5-6b6006a33b43\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCGI I\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-16\", \"application_outcome_notification_date\": \"2005-08-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ian McGill - Pump Installer : 38000-25/PUMP MCGI I"}}, {"model": "reversion.version", "pk": 4394, "fields": {"revision": 2203, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4395, "fields": {"revision": 2203, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4396, "fields": {"revision": 2203, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4397, "fields": {"revision": 2204, "object_id": "75cf3f10-29f6-4569-8cf9-1548f9f18197", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75cf3f10-29f6-4569-8cf9-1548f9f18197\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.609Z\", \"registration\": \"5f516168-4ccb-4a0f-8ac5-6b09f6ca409a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI JOHN T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Johnson - Well Driller : 38000-25/DRI JOHN T"}}, {"model": "reversion.version", "pk": 4398, "fields": {"revision": 2204, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4399, "fields": {"revision": 2204, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4400, "fields": {"revision": 2204, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4401, "fields": {"revision": 2205, "object_id": "75e2b576-b6b1-464e-878a-331044ef2487", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75e2b576-b6b1-464e-878a-331044ef2487\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.616Z\", \"registration\": \"e35e91ee-4d83-4620-9cb2-e56ff643873c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HARD R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Harden - Well Driller : 38000-25/DRI HARD R"}}, {"model": "reversion.version", "pk": 4402, "fields": {"revision": 2205, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4403, "fields": {"revision": 2205, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4404, "fields": {"revision": 2205, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4405, "fields": {"revision": 2206, "object_id": "75ef83cf-31f7-425c-be11-b7547877257a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"75ef83cf-31f7-425c-be11-b7547877257a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.624Z\", \"registration\": \"3725bec0-e294-4657-a407-a537e0de7d4c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SKIN N\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/1025515 - 139185A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-03\", \"application_outcome_notification_date\": \"2013-06-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Nick Skinner - Well Driller : 38000-25/DRI SKIN N"}}, {"model": "reversion.version", "pk": 4406, "fields": {"revision": 2206, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4407, "fields": {"revision": 2206, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4408, "fields": {"revision": 2206, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4409, "fields": {"revision": 2207, "object_id": "76471d2f-70e2-4d97-8470-bc57f3f3a79a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"76471d2f-70e2-4d97-8470-bc57f3f3a79a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.631Z\", \"registration\": \"b925f556-5a94-42dc-b658-9f63894067f6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MUIR A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Aaron Muir - Well Driller : 38000-25/DRI MUIR A"}}, {"model": "reversion.version", "pk": 4410, "fields": {"revision": 2207, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4411, "fields": {"revision": 2207, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4412, "fields": {"revision": 2207, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4413, "fields": {"revision": 2208, "object_id": "764861e0-d0fe-47e5-80f7-214fe0e5322e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"764861e0-d0fe-47e5-80f7-214fe0e5322e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.638Z\", \"registration\": \"f34fe6e0-584c-47cb-8e8e-58a445822ebc\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BERN L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-09\", \"application_outcome_notification_date\": \"2006-01-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lorne Bernard - Well Driller : 38000-25/DRI BERN L"}}, {"model": "reversion.version", "pk": 4414, "fields": {"revision": 2208, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4415, "fields": {"revision": 2208, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4416, "fields": {"revision": 2208, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4417, "fields": {"revision": 2209, "object_id": "764d728e-8c8d-4c7a-88d6-1b658d2b02de", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"764d728e-8c8d-4c7a-88d6-1b658d2b02de\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.645Z\", \"registration\": \"6c50bdf6-ae1a-40b5-85e2-9d022fbc54fa\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PAUL B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-179\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-08\", \"application_outcome_notification_date\": \"2010-09-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brandon Paulson - Well Driller : 38000-25/DRI PAUL B"}}, {"model": "reversion.version", "pk": 4418, "fields": {"revision": 2209, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4419, "fields": {"revision": 2209, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4420, "fields": {"revision": 2209, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4421, "fields": {"revision": 2210, "object_id": "766a9653-440b-4027-95b7-69bf47e7a580", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"766a9653-440b-4027-95b7-69bf47e7a580\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.654Z\", \"registration\": \"dffd5506-f1a0-435a-a009-385d16361d91\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP OBO D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-11\", \"application_outcome_notification_date\": \"2006-09-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Osborne - Pump Installer : 38000-25/PUMP OBO D"}}, {"model": "reversion.version", "pk": 4422, "fields": {"revision": 2210, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4423, "fields": {"revision": 2210, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4424, "fields": {"revision": 2210, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4425, "fields": {"revision": 2211, "object_id": "76aee94c-bc23-4a95-b1ec-862508a8cd4e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"76aee94c-bc23-4a95-b1ec-862508a8cd4e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.661Z\", \"registration\": \"f9906746-eba4-4a94-9a2f-20e60d1f55d9\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOUL G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-16\", \"application_outcome_notification_date\": \"2004-11-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Boulton - Well Driller : 38000-25/DRI BOUL G"}}, {"model": "reversion.version", "pk": 4426, "fields": {"revision": 2211, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4427, "fields": {"revision": 2211, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4428, "fields": {"revision": 2211, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4429, "fields": {"revision": 2212, "object_id": "76d698ac-0951-4051-ba6d-33a35106863a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"76d698ac-0951-4051-ba6d-33a35106863a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.669Z\", \"registration\": \"8f227db3-5117-45ff-af16-0b42447de2c9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CZEL B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2018-01-08\", \"application_outcome_notification_date\": \"2018-01-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brian Czelenski - Pump Installer : 38000-25/PUMP CZEL B"}}, {"model": "reversion.version", "pk": 4430, "fields": {"revision": 2212, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4431, "fields": {"revision": 2212, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4432, "fields": {"revision": 2212, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 4433, "fields": {"revision": 2213, "object_id": "76f47a58-0302-484d-9868-13a30f9eeacb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"76f47a58-0302-484d-9868-13a30f9eeacb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.676Z\", \"registration\": \"eef5988f-a5cc-4675-8b5c-0550877e88e6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CARL G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-165\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-21\", \"application_outcome_notification_date\": \"2010-09-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory Carlos - Well Driller : 38000-25/DRI CARL G"}}, {"model": "reversion.version", "pk": 4434, "fields": {"revision": 2213, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4435, "fields": {"revision": 2213, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4436, "fields": {"revision": 2213, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4437, "fields": {"revision": 2214, "object_id": "76f520d0-c4a8-4de4-bdfa-77bf297e963c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"76f520d0-c4a8-4de4-bdfa-77bf297e963c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.686Z\", \"registration\": \"a96f8e25-1885-4bc8-aebd-c210539a0b42\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHR D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-26\", \"application_outcome_notification_date\": \"2006-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schroeder - Well Driller : 38000-25/DRI SCHR D"}}, {"model": "reversion.version", "pk": 4438, "fields": {"revision": 2214, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4439, "fields": {"revision": 2214, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4440, "fields": {"revision": 2214, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4441, "fields": {"revision": 2215, "object_id": "7715f055-4992-4a6f-a4f9-afedb16361e9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7715f055-4992-4a6f-a4f9-afedb16361e9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.694Z\", \"registration\": \"0d3d3c80-648e-47af-a7e4-f0c0975f35a8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BERN A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Arthur Bernard - Pump Installer : 38000-25/PUMP BERN A"}}, {"model": "reversion.version", "pk": 4442, "fields": {"revision": 2215, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4443, "fields": {"revision": 2215, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4444, "fields": {"revision": 2215, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4445, "fields": {"revision": 2216, "object_id": "77239ceb-1602-4728-8341-91256ab44f60", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"77239ceb-1602-4728-8341-91256ab44f60\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.702Z\", \"registration\": \"5f516168-4ccb-4a0f-8ac5-6b09f6ca409a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI JOHN T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Johnson - Well Driller : 38000-25/DRI JOHN T"}}, {"model": "reversion.version", "pk": 4446, "fields": {"revision": 2216, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4447, "fields": {"revision": 2216, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4448, "fields": {"revision": 2216, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4449, "fields": {"revision": 2217, "object_id": "779a6fed-447f-406b-b44f-24e3434cec21", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"779a6fed-447f-406b-b44f-24e3434cec21\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.710Z\", \"registration\": \"16d366d0-a1f2-4fab-89ac-566429ffb8b2\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI VLCH K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kurt Vlchek - Well Driller : 38000-25/DRI VLCH K"}}, {"model": "reversion.version", "pk": 4450, "fields": {"revision": 2217, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4451, "fields": {"revision": 2217, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4452, "fields": {"revision": 2217, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4453, "fields": {"revision": 2218, "object_id": "780f23f7-30b2-4757-bc38-77c0587329a0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"780f23f7-30b2-4757-bc38-77c0587329a0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.718Z\", \"registration\": \"a28c31a7-3341-451b-806f-8c318925cc9d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ONEI J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-07-11\", \"application_outcome_notification_date\": \"2005-07-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jamie O'Neil - Pump Installer : 38000-25/PUMP ONEI J"}}, {"model": "reversion.version", "pk": 4454, "fields": {"revision": 2218, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4455, "fields": {"revision": 2218, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4456, "fields": {"revision": 2218, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4457, "fields": {"revision": 2219, "object_id": "78b67e04-65b6-4fb6-bb71-67619b28cb44", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"78b67e04-65b6-4fb6-bb71-67619b28cb44\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.725Z\", \"registration\": \"4a65e1c7-a6c1-4b67-8ae2-abf604dbe7b0\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LHEN J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John L'Henaff - Well Driller : 38000-25/DRI LHEN J"}}, {"model": "reversion.version", "pk": 4458, "fields": {"revision": 2219, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4459, "fields": {"revision": 2219, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4460, "fields": {"revision": 2219, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4461, "fields": {"revision": 2220, "object_id": "78f652fb-737d-467c-9bec-7ff4ee172171", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"78f652fb-737d-467c-9bec-7ff4ee172171\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.733Z\", \"registration\": \"becfc8a8-3261-4aa8-af93-730f7acd3a53\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHI D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0006-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schibli - Well Driller : 38000-25/DRI SCHI D"}}, {"model": "reversion.version", "pk": 4462, "fields": {"revision": 2220, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4463, "fields": {"revision": 2220, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4464, "fields": {"revision": 2220, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4465, "fields": {"revision": 2221, "object_id": "7973f5d5-7ad8-4349-be18-90de086796c2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7973f5d5-7ad8-4349-be18-90de086796c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.741Z\", \"registration\": \"4e753044-4cba-4447-951f-e37d5327c41f\", \"subactivity\": \"WATER\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dale VanDam - Well Driller : None"}}, {"model": "reversion.version", "pk": 4466, "fields": {"revision": 2221, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4467, "fields": {"revision": 2221, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4468, "fields": {"revision": 2221, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4469, "fields": {"revision": 2222, "object_id": "79755387-63a3-4492-a224-b7fec1dc3e96", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"79755387-63a3-4492-a224-b7fec1dc3e96\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.748Z\", \"registration\": \"b86bae2e-333e-41ce-a123-b6b82b804699\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ROBE D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Roberts - Well Driller : 38000-25/DRI ROBE D"}}, {"model": "reversion.version", "pk": 4470, "fields": {"revision": 2222, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4471, "fields": {"revision": 2222, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4472, "fields": {"revision": 2222, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4473, "fields": {"revision": 2223, "object_id": "7987ca5f-30bc-4c1b-8479-a614fe66c316", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7987ca5f-30bc-4c1b-8479-a614fe66c316\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.756Z\", \"registration\": \"8e39a016-3bf8-4f3e-8b57-37c30eac811e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MART T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-11-08\", \"application_outcome_notification_date\": \"2010-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tim Martin - Pump Installer : 38000-25/PUMP MART T"}}, {"model": "reversion.version", "pk": 4474, "fields": {"revision": 2223, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4475, "fields": {"revision": 2223, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4476, "fields": {"revision": 2223, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4477, "fields": {"revision": 2224, "object_id": "7a04eb29-c7db-466d-91da-cfb336c7a683", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7a04eb29-c7db-466d-91da-cfb336c7a683\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.764Z\", \"registration\": \"8f67edf6-5fd5-4c6a-8f9d-bb86d5e393de\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JOHN M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Malcolm Johnston - Pump Installer : 38000-25/PUMP JOHN M"}}, {"model": "reversion.version", "pk": 4478, "fields": {"revision": 2224, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4479, "fields": {"revision": 2224, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4480, "fields": {"revision": 2224, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4481, "fields": {"revision": 2225, "object_id": "7a61c0df-da37-4db8-94c7-625698554e4c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7a61c0df-da37-4db8-94c7-625698554e4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.773Z\", \"registration\": \"d2cfc824-4747-4c6d-834f-0b2ba03d11ce\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BALL G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-07\", \"application_outcome_notification_date\": \"2006-04-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garth Ballance - Pump Installer : 38000-25/PUMP BALL G"}}, {"model": "reversion.version", "pk": 4482, "fields": {"revision": 2225, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4483, "fields": {"revision": 2225, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4484, "fields": {"revision": 2225, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4485, "fields": {"revision": 2226, "object_id": "7a9e2534-7850-4b79-a75e-9a662128c376", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7a9e2534-7850-4b79-a75e-9a662128c376\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.781Z\", \"registration\": \"7d2ec4b0-f9b6-481b-8e55-128c6fc86cb3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOMB D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2005-130\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-06\", \"application_outcome_notification_date\": \"2006-03-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Don Bombardier - Well Driller : 38000-25/DRI BOMB D"}}, {"model": "reversion.version", "pk": 4486, "fields": {"revision": 2226, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4487, "fields": {"revision": 2226, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4488, "fields": {"revision": 2226, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4489, "fields": {"revision": 2227, "object_id": "7aae0fb6-601e-4058-97c3-06696d800ddb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7aae0fb6-601e-4058-97c3-06696d800ddb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.789Z\", \"registration\": \"dd1502a5-9421-49c8-88b6-fa209568df40\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ABER R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-26\", \"application_outcome_notification_date\": \"2006-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Abercrombie - Pump Installer : 38000-25/PUMP ABER R"}}, {"model": "reversion.version", "pk": 4490, "fields": {"revision": 2227, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4491, "fields": {"revision": 2227, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4492, "fields": {"revision": 2227, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4493, "fields": {"revision": 2228, "object_id": "7ac8c8cc-bd26-4d43-8cd1-5483ffe23ca5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7ac8c8cc-bd26-4d43-8cd1-5483ffe23ca5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.798Z\", \"registration\": \"7d2ec4b0-f9b6-481b-8e55-128c6fc86cb3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOMB D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2005-130\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-06\", \"application_outcome_notification_date\": \"2006-03-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Don Bombardier - Well Driller : 38000-25/DRI BOMB D"}}, {"model": "reversion.version", "pk": 4494, "fields": {"revision": 2228, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4495, "fields": {"revision": 2228, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4496, "fields": {"revision": 2228, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4497, "fields": {"revision": 2229, "object_id": "7af4dafe-1e52-4895-967a-c2785b7f1fac", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7af4dafe-1e52-4895-967a-c2785b7f1fac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.806Z\", \"registration\": \"9aae7e49-155d-48b3-ac48-890fdfcfe12e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI OOST A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-158\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-15\", \"application_outcome_notification_date\": \"2008-10-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Oostenbrink - Well Driller : 38000-25/DRI OOST A"}}, {"model": "reversion.version", "pk": 4498, "fields": {"revision": 2229, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4499, "fields": {"revision": 2229, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4500, "fields": {"revision": 2229, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4501, "fields": {"revision": 2230, "object_id": "7b045737-9ae5-4f72-9944-2da18b596aff", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7b045737-9ae5-4f72-9944-2da18b596aff\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.812Z\", \"registration\": \"885459c4-acc6-45d4-baff-7e6f43e0c086\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CROF R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Croft - Pump Installer : 38000-25/PUMP CROF R"}}, {"model": "reversion.version", "pk": 4502, "fields": {"revision": 2230, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4503, "fields": {"revision": 2230, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4504, "fields": {"revision": 2230, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4505, "fields": {"revision": 2231, "object_id": "7b516c4c-ea2e-428d-987a-051cde714fe9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7b516c4c-ea2e-428d-987a-051cde714fe9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.817Z\", \"registration\": \"7cb6a689-e97a-479c-a44c-1e1feeba51a0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHN E\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Edwin Schneider - Pump Installer : 38000-25/PUMP SCHN E"}}, {"model": "reversion.version", "pk": 4506, "fields": {"revision": 2231, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4507, "fields": {"revision": 2231, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4508, "fields": {"revision": 2231, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4509, "fields": {"revision": 2232, "object_id": "7bac543a-73c7-4fbf-8793-bb879e5d1854", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7bac543a-73c7-4fbf-8793-bb879e5d1854\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.824Z\", \"registration\": \"702da908-55ea-485e-ae4a-977911677a0d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MANK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Mankowski - Well Driller : 38000-25/DRI MANK J"}}, {"model": "reversion.version", "pk": 4510, "fields": {"revision": 2232, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4511, "fields": {"revision": 2232, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4512, "fields": {"revision": 2232, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4513, "fields": {"revision": 2233, "object_id": "7c314202-2c3d-4989-bc8e-1de05c9542c2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7c314202-2c3d-4989-bc8e-1de05c9542c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.230Z\", \"registration\": \"243d5ed0-745a-4832-879a-276e8ef8ea03\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SLEA G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-166\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-06\", \"application_outcome_notification_date\": \"2009-05-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Sleasman - Well Driller : 38000-25/DRI SLEA G"}}, {"model": "reversion.version", "pk": 4514, "fields": {"revision": 2233, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4515, "fields": {"revision": 2233, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4516, "fields": {"revision": 2233, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4517, "fields": {"revision": 2234, "object_id": "7c3c0b27-1c00-450e-980a-61bd659eae69", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7c3c0b27-1c00-450e-980a-61bd659eae69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.830Z\", \"registration\": \"fca7fc7b-ee3e-4906-b547-8462e54967e6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LANT C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-164\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-12-10\", \"application_outcome_notification_date\": \"2012-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Lanting - Well Driller : 38000-25/DRI LANT C"}}, {"model": "reversion.version", "pk": 4518, "fields": {"revision": 2234, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4519, "fields": {"revision": 2234, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4520, "fields": {"revision": 2234, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4521, "fields": {"revision": 2235, "object_id": "7c606457-c14e-43c1-950e-af5857e52f38", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7c606457-c14e-43c1-950e-af5857e52f38\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.837Z\", \"registration\": \"d9cd8f14-a80a-4d36-aeb7-c91051db64e2\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOLA M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-25\", \"application_outcome_notification_date\": \"2006-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Bolan - Well Driller : 38000-25/DRI BOLA M"}}, {"model": "reversion.version", "pk": 4522, "fields": {"revision": 2235, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4523, "fields": {"revision": 2235, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4524, "fields": {"revision": 2235, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4525, "fields": {"revision": 2236, "object_id": "7c7c819b-44b5-47cf-b822-5225930030d3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7c7c819b-44b5-47cf-b822-5225930030d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.843Z\", \"registration\": \"fca7fc7b-ee3e-4906-b547-8462e54967e6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LANT C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-164\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-12-10\", \"application_outcome_notification_date\": \"2012-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Lanting - Well Driller : 38000-25/DRI LANT C"}}, {"model": "reversion.version", "pk": 4526, "fields": {"revision": 2236, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4527, "fields": {"revision": 2236, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4528, "fields": {"revision": 2236, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4529, "fields": {"revision": 2237, "object_id": "7c7fb797-d93d-4277-8093-f55649790881", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7c7fb797-d93d-4277-8093-f55649790881\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.849Z\", \"registration\": \"a4beb47f-24b1-432b-83ce-53dfa5d77437\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MOON J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-08\", \"application_outcome_notification_date\": \"2005-02-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Moon - Pump Installer : 38000-25/PUMP MOON J"}}, {"model": "reversion.version", "pk": 4530, "fields": {"revision": 2237, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4531, "fields": {"revision": 2237, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4532, "fields": {"revision": 2237, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4533, "fields": {"revision": 2238, "object_id": "7cc52d5f-49df-4c50-9c3d-5299819f18d4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7cc52d5f-49df-4c50-9c3d-5299819f18d4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.855Z\", \"registration\": \"9e226453-a9eb-481b-8c5e-6af25120fd2d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LEMA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Lemal - Well Driller : 38000-25/DRI LEMA D"}}, {"model": "reversion.version", "pk": 4534, "fields": {"revision": 2238, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4535, "fields": {"revision": 2238, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4536, "fields": {"revision": 2238, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4537, "fields": {"revision": 2239, "object_id": "7cc5879e-3d97-462f-aa52-ec9370f8d54b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7cc5879e-3d97-462f-aa52-ec9370f8d54b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.860Z\", \"registration\": \"1e473954-bd2d-429c-a9ae-841cc84e13a2\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCIO B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-25\", \"application_outcome_notification_date\": \"2006-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill McIvor - Well Driller : 38000-25/DRI MCIO B"}}, {"model": "reversion.version", "pk": 4538, "fields": {"revision": 2239, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4539, "fields": {"revision": 2239, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4540, "fields": {"revision": 2239, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4541, "fields": {"revision": 2240, "object_id": "7cffa1d3-f3c6-4ac0-84f3-377dc8ef815e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7cffa1d3-f3c6-4ac0-84f3-377dc8ef815e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.866Z\", \"registration\": \"0cf7b6f8-8677-48c0-83e4-910c5b5be93c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CRON R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-13\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Cronin - Well Driller : 38000-25/DRI CRON R"}}, {"model": "reversion.version", "pk": 4542, "fields": {"revision": 2240, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4543, "fields": {"revision": 2240, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4544, "fields": {"revision": 2240, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4545, "fields": {"revision": 2241, "object_id": "7d40f439-035e-4bdd-8d01-77517fe8c01a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7d40f439-035e-4bdd-8d01-77517fe8c01a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.872Z\", \"registration\": \"e668ec6e-c6c2-46dd-b5aa-cfbed0b73d83\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI JANC P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-17\", \"application_outcome_notification_date\": \"2005-10-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Janczukowski - Well Driller : 38000-25/DRI JANC P"}}, {"model": "reversion.version", "pk": 4546, "fields": {"revision": 2241, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4547, "fields": {"revision": 2241, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4548, "fields": {"revision": 2241, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4549, "fields": {"revision": 2242, "object_id": "7d9ff3ab-b772-4ad1-9c97-a29d95c1809c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7d9ff3ab-b772-4ad1-9c97-a29d95c1809c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.878Z\", \"registration\": \"1ca87039-c58c-42f7-bc0e-38160ec88831\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI RIEH L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Riehl - Well Driller : 38000-25/DRI RIEH L"}}, {"model": "reversion.version", "pk": 4550, "fields": {"revision": 2242, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4551, "fields": {"revision": 2242, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4552, "fields": {"revision": 2242, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4553, "fields": {"revision": 2243, "object_id": "7e75f4cd-1c4c-437a-b1c3-81714325aa23", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7e75f4cd-1c4c-437a-b1c3-81714325aa23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.884Z\", \"registration\": \"445ad606-b9c8-4c45-8842-e1e8eafa7c05\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PATE G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2004-121\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Paterson - Well Driller : 38000-25/DRI PATE G"}}, {"model": "reversion.version", "pk": 4554, "fields": {"revision": 2243, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4555, "fields": {"revision": 2243, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4556, "fields": {"revision": 2243, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4557, "fields": {"revision": 2244, "object_id": "7ea78f7c-f2ca-4a13-980e-76c578422367", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7ea78f7c-f2ca-4a13-980e-76c578422367\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.890Z\", \"registration\": \"b657c8f4-053e-4c92-85a9-6e79e8e552d1\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIDA J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/483894 - 32379A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-10-31\", \"application_outcome_notification_date\": \"2011-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joey Widaiko - Well Driller : 38000-25/DRI WIDA J"}}, {"model": "reversion.version", "pk": 4558, "fields": {"revision": 2244, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4559, "fields": {"revision": 2244, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4560, "fields": {"revision": 2244, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4561, "fields": {"revision": 2245, "object_id": "7ee4a8fd-7422-4b9a-a412-f784f6f1cda8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7ee4a8fd-7422-4b9a-a412-f784f6f1cda8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.895Z\", \"registration\": \"9056e85a-a9b3-499d-b2a2-81aa67f7b4ee\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MERK P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Merkel - Pump Installer : 38000-25/PUMP MERK P"}}, {"model": "reversion.version", "pk": 4562, "fields": {"revision": 2245, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4563, "fields": {"revision": 2245, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4564, "fields": {"revision": 2245, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4565, "fields": {"revision": 2246, "object_id": "7f3e2045-3728-474c-9fcc-dbe88863695e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7f3e2045-3728-474c-9fcc-dbe88863695e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.901Z\", \"registration\": \"b4170f23-379f-4d8d-a923-02a86f6c4099\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KREN J\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Krenbrink - Well Driller : 38000-25/DRI KREN J"}}, {"model": "reversion.version", "pk": 4566, "fields": {"revision": 2246, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4567, "fields": {"revision": 2246, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4568, "fields": {"revision": 2246, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4569, "fields": {"revision": 2247, "object_id": "7f499839-cf09-4e60-a303-8dee70bae2bc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7f499839-cf09-4e60-a303-8dee70bae2bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.907Z\", \"registration\": \"59302955-228a-4c6a-9144-93b7e47c8bf3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI DIGG R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Diggle - Well Driller : 38000-25/DRI DIGG R"}}, {"model": "reversion.version", "pk": 4570, "fields": {"revision": 2247, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4571, "fields": {"revision": 2247, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4572, "fields": {"revision": 2247, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4573, "fields": {"revision": 2248, "object_id": "7f6546b4-feef-4d7c-aa1b-1a6993e285cd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7f6546b4-feef-4d7c-aa1b-1a6993e285cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.913Z\", \"registration\": \"bffd9bb5-f74d-4006-8802-43d7257b19e5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BENT A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andre Bentley - Well Driller : 38000-25/DRI BENT A"}}, {"model": "reversion.version", "pk": 4574, "fields": {"revision": 2248, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4575, "fields": {"revision": 2248, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4576, "fields": {"revision": 2248, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4577, "fields": {"revision": 2249, "object_id": "7fca3ee5-9768-4081-8a30-b452ff0e5d11", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7fca3ee5-9768-4081-8a30-b452ff0e5d11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.919Z\", \"registration\": \"38d3fe66-520f-4525-8ea7-e1ccb113a516\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KAYE AL\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Kaye - Well Driller : 38000-25/DRI KAYE AL"}}, {"model": "reversion.version", "pk": 4578, "fields": {"revision": 2249, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4579, "fields": {"revision": 2249, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4580, "fields": {"revision": 2249, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4581, "fields": {"revision": 2250, "object_id": "7ff0c00b-777c-4f41-a09a-41b5b33413ef", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7ff0c00b-777c-4f41-a09a-41b5b33413ef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.925Z\", \"registration\": \"afc8ddf7-7394-431d-8265-2c74fcbd59ca\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FRAN G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-12\", \"application_outcome_notification_date\": \"2005-10-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Francoeur - Pump Installer : 38000-25/PUMP FRAN G"}}, {"model": "reversion.version", "pk": 4582, "fields": {"revision": 2250, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4583, "fields": {"revision": 2250, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4584, "fields": {"revision": 2250, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4585, "fields": {"revision": 2251, "object_id": "7ff641f6-ce3e-4fdb-98ef-55dd5679bdfa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"7ff641f6-ce3e-4fdb-98ef-55dd5679bdfa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.931Z\", \"registration\": \"cf52cb3b-4435-46a0-a512-e233c02ffa0f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHL M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Marcus Schlick - Well Driller : 38000-25/DRI SCHL M"}}, {"model": "reversion.version", "pk": 4586, "fields": {"revision": 2251, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4587, "fields": {"revision": 2251, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4588, "fields": {"revision": 2251, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4589, "fields": {"revision": 2252, "object_id": "80117e65-811f-41f3-8913-bc6b9991bae1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"80117e65-811f-41f3-8913-bc6b9991bae1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.937Z\", \"registration\": \"3b2c3c73-528f-43be-9313-b6e67918f0a7\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI-SHEW S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00007-GN-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2018-01-10\", \"application_outcome_notification_date\": \"2018-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stephen Shewchuck - Well Driller : 38000-25/DRI-SHEW S"}}, {"model": "reversion.version", "pk": 4590, "fields": {"revision": 2252, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4591, "fields": {"revision": 2252, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4592, "fields": {"revision": 2252, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 4593, "fields": {"revision": 2253, "object_id": "80535cad-575f-4713-8cdd-91c806b9e875", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"80535cad-575f-4713-8cdd-91c806b9e875\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.943Z\", \"registration\": \"4e753044-4cba-4447-951f-e37d5327c41f\", \"subactivity\": \"GEOXCHG\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dale VanDam - Well Driller : None"}}, {"model": "reversion.version", "pk": 4594, "fields": {"revision": 2253, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4595, "fields": {"revision": 2253, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4596, "fields": {"revision": 2253, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4597, "fields": {"revision": 2254, "object_id": "80886e55-2561-4990-b5d2-a5808fa84c4f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"80886e55-2561-4990-b5d2-a5808fa84c4f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.948Z\", \"registration\": \"f898e03e-65e7-4d0e-b45e-98002ad9bacc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HARR S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-03-08\", \"application_outcome_notification_date\": \"2011-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Sterling Harrison - Pump Installer : 38000-25/PUMP HARR S"}}, {"model": "reversion.version", "pk": 4598, "fields": {"revision": 2254, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4599, "fields": {"revision": 2254, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4600, "fields": {"revision": 2254, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4601, "fields": {"revision": 2255, "object_id": "8148fab3-ce8f-4546-986b-aac0a93ca307", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8148fab3-ce8f-4546-986b-aac0a93ca307\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.954Z\", \"registration\": \"f706de15-4c46-49df-a073-9a6f6de996f3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SMAL M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Smallwood - Well Driller : 38000-25/DRI SMAL M"}}, {"model": "reversion.version", "pk": 4602, "fields": {"revision": 2255, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4603, "fields": {"revision": 2255, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4604, "fields": {"revision": 2255, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4605, "fields": {"revision": 2256, "object_id": "815835ce-7c95-4864-9115-7e2c4f3f5b35", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"815835ce-7c95-4864-9115-7e2c4f3f5b35\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.960Z\", \"registration\": \"b20a9d8f-4fbc-491d-a3a1-9cf954aeae2e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI DIXO B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ben Dixon - Well Driller : 38000-25/DRI DIXO B"}}, {"model": "reversion.version", "pk": 4606, "fields": {"revision": 2256, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4607, "fields": {"revision": 2256, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4608, "fields": {"revision": 2256, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4609, "fields": {"revision": 2257, "object_id": "817a8462-cbea-4587-bdab-21ac1b1161e4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"817a8462-cbea-4587-bdab-21ac1b1161e4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.966Z\", \"registration\": \"cf00939c-0ac5-4236-861d-07209cdc2b62\", \"subactivity\": \"WATER\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William John Williams - Well Driller : None"}}, {"model": "reversion.version", "pk": 4610, "fields": {"revision": 2257, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4611, "fields": {"revision": 2257, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4612, "fields": {"revision": 2257, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4613, "fields": {"revision": 2258, "object_id": "819f3064-3ea5-4ce2-b498-7b010ca50488", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"819f3064-3ea5-4ce2-b498-7b010ca50488\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.972Z\", \"registration\": \"d71ed169-7518-46a3-9405-336d32e3727a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCDO S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"primary_certificate_no\": \"00002-GX-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-08-23\", \"application_outcome_notification_date\": \"2016-08-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Sean McDonald - Well Driller : 38000-25/DRI MCDO S"}}, {"model": "reversion.version", "pk": 4614, "fields": {"revision": 2258, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4615, "fields": {"revision": 2258, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4616, "fields": {"revision": 2258, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 4617, "fields": {"revision": 2259, "object_id": "81b9cbe6-dc2f-49bb-94c1-e819040d9ae3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"81b9cbe6-dc2f-49bb-94c1-e819040d9ae3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.978Z\", \"registration\": \"4939f381-6b36-43b7-8e83-d48bb3c13f50\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WILS G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Wilson - Pump Installer : 38000-25/PUMP WILS G"}}, {"model": "reversion.version", "pk": 4618, "fields": {"revision": 2259, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4619, "fields": {"revision": 2259, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4620, "fields": {"revision": 2259, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4621, "fields": {"revision": 2260, "object_id": "82162579-f83f-4844-a033-67033e0d53bd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"82162579-f83f-4844-a033-67033e0d53bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.984Z\", \"registration\": \"59d67d57-3d57-45f8-a147-53c68e0ae298\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TOEW P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-05-25\", \"application_outcome_notification_date\": \"2012-05-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Toews - Pump Installer : 38000-25/PUMP TOEW P"}}, {"model": "reversion.version", "pk": 4622, "fields": {"revision": 2260, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4623, "fields": {"revision": 2260, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4624, "fields": {"revision": 2260, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4625, "fields": {"revision": 2261, "object_id": "82533b20-4759-4eec-b05b-458294b544e7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"82533b20-4759-4eec-b05b-458294b544e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.990Z\", \"registration\": \"4f7321b0-97e3-4ebd-8e9d-0f11d561f525\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CAME J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-155\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-02\", \"application_outcome_notification_date\": \"2011-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Cameron - Well Driller : 38000-25/DRI CAME J"}}, {"model": "reversion.version", "pk": 4626, "fields": {"revision": 2261, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4627, "fields": {"revision": 2261, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4628, "fields": {"revision": 2261, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4629, "fields": {"revision": 2262, "object_id": "827460c6-1225-491b-af3c-bc20d8a2228d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"827460c6-1225-491b-af3c-bc20d8a2228d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:00.995Z\", \"registration\": \"dd2047bf-958b-4e8c-8432-21832d6095a6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HOWE W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-10\", \"application_outcome_notification_date\": \"2005-08-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Howe - Well Driller : 38000-25/DRI HOWE W"}}, {"model": "reversion.version", "pk": 4630, "fields": {"revision": 2262, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4631, "fields": {"revision": 2262, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4632, "fields": {"revision": 2262, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4633, "fields": {"revision": 2263, "object_id": "8276e3e1-f070-4a2d-b885-2c5b41d5fb9f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8276e3e1-f070-4a2d-b885-2c5b41d5fb9f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.001Z\", \"registration\": \"bba47bec-2d89-4e06-9796-9cef587e48aa\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PARK R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0012-WW-98\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-19\", \"application_outcome_notification_date\": \"2005-05-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Parker - Well Driller : 38000-25/DRI PARK R"}}, {"model": "reversion.version", "pk": 4634, "fields": {"revision": 2263, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4635, "fields": {"revision": 2263, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4636, "fields": {"revision": 2263, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4637, "fields": {"revision": 2264, "object_id": "82c7d71f-5783-405f-8fd0-d2989c84081d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"82c7d71f-5783-405f-8fd0-d2989c84081d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.007Z\", \"registration\": \"2ca670aa-0a52-4c60-bf27-ed12146c0842\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GIBB G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Gibbons - Well Driller : 38000-25/DRI GIBB G"}}, {"model": "reversion.version", "pk": 4638, "fields": {"revision": 2264, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4639, "fields": {"revision": 2264, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4640, "fields": {"revision": 2264, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4641, "fields": {"revision": 2265, "object_id": "837ec79e-dd27-47c5-8b04-ad01b940e67b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"837ec79e-dd27-47c5-8b04-ad01b940e67b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.012Z\", \"registration\": \"b08a88d1-3f92-4d94-bbca-4add9ec9a394\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LAMB R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-13\", \"application_outcome_notification_date\": \"2005-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Lamb - Well Driller : 38000-25/DRI LAMB R"}}, {"model": "reversion.version", "pk": 4642, "fields": {"revision": 2265, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4643, "fields": {"revision": 2265, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4644, "fields": {"revision": 2265, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4645, "fields": {"revision": 2266, "object_id": "83c3f07e-433f-4f61-87bd-77401058736f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"83c3f07e-433f-4f61-87bd-77401058736f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.018Z\", \"registration\": \"9cb33182-e7a6-494d-a745-69220cb67120\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HALY J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-21\", \"application_outcome_notification_date\": \"2006-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Halyk - Well Driller : 38000-25/DRI HALY J"}}, {"model": "reversion.version", "pk": 4646, "fields": {"revision": 2266, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4647, "fields": {"revision": 2266, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4648, "fields": {"revision": 2266, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4649, "fields": {"revision": 2267, "object_id": "83e82910-53e2-4291-b651-999d52de9028", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"83e82910-53e2-4291-b651-999d52de9028\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.023Z\", \"registration\": \"43163655-7125-408d-9a35-53e20842c9fb\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP OOST A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-02-02\", \"application_outcome_notification_date\": \"2011-02-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Oostenbrink - Pump Installer : 38000-25/PUMP OOST A"}}, {"model": "reversion.version", "pk": 4650, "fields": {"revision": 2267, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4651, "fields": {"revision": 2267, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4652, "fields": {"revision": 2267, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4653, "fields": {"revision": 2268, "object_id": "83ef1869-f04b-4b01-8a55-0a8b6c4c50fc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"83ef1869-f04b-4b01-8a55-0a8b6c4c50fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.029Z\", \"registration\": \"2712176f-159f-4616-8372-ab6da2788ceb\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCIN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-24\", \"application_outcome_notification_date\": \"2005-08-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Reginald McInnes - Pump Installer : 38000-25/PUMP MCIN R"}}, {"model": "reversion.version", "pk": 4654, "fields": {"revision": 2268, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4655, "fields": {"revision": 2268, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4656, "fields": {"revision": 2268, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4657, "fields": {"revision": 2269, "object_id": "84d362a6-8e9d-4136-9d11-eb91be510962", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"84d362a6-8e9d-4136-9d11-eb91be510962\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.035Z\", \"registration\": \"8ce1a872-1462-4bfc-9fc1-5f6e96561a35\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PARN D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Parnell - Well Driller : 38000-25/DRI PARN D"}}, {"model": "reversion.version", "pk": 4658, "fields": {"revision": 2269, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4659, "fields": {"revision": 2269, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4660, "fields": {"revision": 2269, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4661, "fields": {"revision": 2270, "object_id": "8505ad7b-dbc8-4a20-bc89-5eac25f151b1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8505ad7b-dbc8-4a20-bc89-5eac25f151b1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.041Z\", \"registration\": \"7fe22d8d-32cf-487c-8ebf-136e931b654f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOMB H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-11\", \"application_outcome_notification_date\": \"2006-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harvey Bombardier - Well Driller : 38000-25/DRI BOMB H"}}, {"model": "reversion.version", "pk": 4662, "fields": {"revision": 2270, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4663, "fields": {"revision": 2270, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4664, "fields": {"revision": 2270, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4665, "fields": {"revision": 2271, "object_id": "85622aa6-7f09-465e-a950-25863b222186", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"85622aa6-7f09-465e-a950-25863b222186\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.047Z\", \"registration\": \"397c4165-9089-4da2-946c-6fdc6aff3a33\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JARR P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-24\", \"application_outcome_notification_date\": \"2005-02-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Jarratt - Pump Installer : 38000-25/PUMP JARR P"}}, {"model": "reversion.version", "pk": 4666, "fields": {"revision": 2271, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4667, "fields": {"revision": 2271, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4668, "fields": {"revision": 2271, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4669, "fields": {"revision": 2272, "object_id": "85ae8002-f147-4425-b143-7c4bdd67f34a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"85ae8002-f147-4425-b143-7c4bdd67f34a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.052Z\", \"registration\": \"5547c092-0e79-40d3-b095-a93f62c96220\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GRAF D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-02\", \"application_outcome_notification_date\": \"2006-06-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Grafton - Pump Installer : 38000-25/PUMP GRAF D"}}, {"model": "reversion.version", "pk": 4670, "fields": {"revision": 2272, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4671, "fields": {"revision": 2272, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4672, "fields": {"revision": 2272, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4673, "fields": {"revision": 2273, "object_id": "85e64673-c9dc-44ac-80aa-2ae1a2ae71f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"85e64673-c9dc-44ac-80aa-2ae1a2ae71f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.058Z\", \"registration\": \"d41033da-9a4d-4df4-a64d-ee407d1affbe\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FRAN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Franks - Pump Installer : 38000-25/PUMP FRAN R"}}, {"model": "reversion.version", "pk": 4674, "fields": {"revision": 2273, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4675, "fields": {"revision": 2273, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4676, "fields": {"revision": 2273, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4677, "fields": {"revision": 2274, "object_id": "85f2812c-3058-4bed-83c1-c0ed00763b5c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"85f2812c-3058-4bed-83c1-c0ed00763b5c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.064Z\", \"registration\": \"76e0946b-8e92-4a13-8a4d-72f0c464ce52\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI NOBE W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Nobes - Well Driller : 38000-25/DRI NOBE W"}}, {"model": "reversion.version", "pk": 4678, "fields": {"revision": 2274, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4679, "fields": {"revision": 2274, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4680, "fields": {"revision": 2274, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4681, "fields": {"revision": 2275, "object_id": "86740eaa-be7d-4666-bba1-2093986df00b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"86740eaa-be7d-4666-bba1-2093986df00b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.070Z\", \"registration\": \"14c0a113-35a7-40e1-ac46-943a2e26cb17\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CURI T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Thomas Curial - Pump Installer : 38000-25/PUMP CURI T"}}, {"model": "reversion.version", "pk": 4682, "fields": {"revision": 2275, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4683, "fields": {"revision": 2275, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4684, "fields": {"revision": 2275, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4685, "fields": {"revision": 2276, "object_id": "86b40bd0-a002-49fa-b096-c7f9dc97be98", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"86b40bd0-a002-49fa-b096-c7f9dc97be98\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.075Z\", \"registration\": \"059d1ec2-0359-4873-9998-5be382cab92a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCKE K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-08-18\", \"application_outcome_notification_date\": \"2008-08-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken McKellar - Pump Installer : 38000-25/PUMP MCKE K"}}, {"model": "reversion.version", "pk": 4686, "fields": {"revision": 2276, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4687, "fields": {"revision": 2276, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4688, "fields": {"revision": 2276, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4689, "fields": {"revision": 2277, "object_id": "86c06a54-97d2-4540-9c46-751930b34df7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"86c06a54-97d2-4540-9c46-751930b34df7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.081Z\", \"registration\": \"d5a9266b-0cbb-46ed-9318-98e6130f5213\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PETE A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-05\", \"application_outcome_notification_date\": \"2006-04-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andrew Petersen - Pump Installer : 38000-25/PUMP PETE A"}}, {"model": "reversion.version", "pk": 4690, "fields": {"revision": 2277, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4691, "fields": {"revision": 2277, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4692, "fields": {"revision": 2277, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4693, "fields": {"revision": 2278, "object_id": "86f0e10f-bfbf-4a7b-97b9-03533666693d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"86f0e10f-bfbf-4a7b-97b9-03533666693d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.087Z\", \"registration\": \"b4498c92-4e8f-427e-959f-224e7b8265df\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PRUD R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randal Pruden - Well Driller : 38000-25/DRI PRUD R"}}, {"model": "reversion.version", "pk": 4694, "fields": {"revision": 2278, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4695, "fields": {"revision": 2278, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4696, "fields": {"revision": 2278, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4697, "fields": {"revision": 2279, "object_id": "8731dfac-4a76-4835-ba7e-3f8e569a3048", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8731dfac-4a76-4835-ba7e-3f8e569a3048\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.093Z\", \"registration\": \"372bdf8c-c598-4c99-b504-3f81fd3f723a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SAVA S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stacy Savage - Pump Installer : 38000-25/PUMP SAVA S"}}, {"model": "reversion.version", "pk": 4698, "fields": {"revision": 2279, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4699, "fields": {"revision": 2279, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4700, "fields": {"revision": 2279, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4701, "fields": {"revision": 2280, "object_id": "878dc52c-1006-4703-adac-e848f137edc1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"878dc52c-1006-4703-adac-e848f137edc1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.098Z\", \"registration\": \"03c08164-1007-49f1-8ed0-1fbb9db3879c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WIND B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Barry Windecker - Well Driller : 38000-25/DRI WIND B"}}, {"model": "reversion.version", "pk": 4702, "fields": {"revision": 2280, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4703, "fields": {"revision": 2280, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4704, "fields": {"revision": 2280, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4705, "fields": {"revision": 2281, "object_id": "87d45f0c-555d-4d84-8f55-180f7a332e4f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"87d45f0c-555d-4d84-8f55-180f7a332e4f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.104Z\", \"registration\": \"e4316f20-7406-48de-89d8-95bcf2107142\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI OSTE T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-11\", \"application_outcome_notification_date\": \"2005-02-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Timothy Oster - Well Driller : 38000-25/DRI OSTE T"}}, {"model": "reversion.version", "pk": 4706, "fields": {"revision": 2281, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4707, "fields": {"revision": 2281, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4708, "fields": {"revision": 2281, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4709, "fields": {"revision": 2282, "object_id": "87e72a87-5266-47c4-a14f-e889e9857610", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"87e72a87-5266-47c4-a14f-e889e9857610\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.110Z\", \"registration\": \"237f1196-2cb0-4d02-acd7-d7e5bdee3ec3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI VLCH S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Steve Vlchek - Well Driller : 38000-25/DRI VLCH S"}}, {"model": "reversion.version", "pk": 4710, "fields": {"revision": 2282, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4711, "fields": {"revision": 2282, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4712, "fields": {"revision": 2282, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4713, "fields": {"revision": 2283, "object_id": "87f169ff-64b6-471b-8423-866cfeba9894", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"87f169ff-64b6-471b-8423-866cfeba9894\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.116Z\", \"registration\": \"118f0346-2a7c-47ea-8fa7-7a99d0c2f284\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BUEL P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/869974-92071A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-09-21\", \"application_outcome_notification_date\": \"2015-09-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Phillip Buelow - Well Driller : 38000-25/DRI BUEL P"}}, {"model": "reversion.version", "pk": 4714, "fields": {"revision": 2283, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4715, "fields": {"revision": 2283, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4716, "fields": {"revision": 2283, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4717, "fields": {"revision": 2284, "object_id": "888e0b20-4bb9-4820-837c-1a92384872e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"888e0b20-4bb9-4820-837c-1a92384872e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.121Z\", \"registration\": \"b08a88d1-3f92-4d94-bbca-4add9ec9a394\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LAMB R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-13\", \"application_outcome_notification_date\": \"2005-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Lamb - Well Driller : 38000-25/DRI LAMB R"}}, {"model": "reversion.version", "pk": 4718, "fields": {"revision": 2284, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4719, "fields": {"revision": 2284, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4720, "fields": {"revision": 2284, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4721, "fields": {"revision": 2285, "object_id": "88c9308b-0848-4262-aad8-4b4218f42609", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"88c9308b-0848-4262-aad8-4b4218f42609\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.127Z\", \"registration\": \"2ec57971-496e-48ef-9f5a-a35adc8be90a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BROW C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-16\", \"application_outcome_notification_date\": \"2006-09-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chad Brown - Well Driller : 38000-25/DRI BROW C"}}, {"model": "reversion.version", "pk": 4722, "fields": {"revision": 2285, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4723, "fields": {"revision": 2285, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4724, "fields": {"revision": 2285, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4725, "fields": {"revision": 2286, "object_id": "89773695-7ba6-4bc2-a6af-f77a96cd7387", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"89773695-7ba6-4bc2-a6af-f77a96cd7387\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.133Z\", \"registration\": \"d4a8e916-6682-4e9c-bd8f-ebb9fc6bb5a5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PEPP J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0035-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeffrey Peppler - Well Driller : 38000-25/DRI PEPP J"}}, {"model": "reversion.version", "pk": 4726, "fields": {"revision": 2286, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4727, "fields": {"revision": 2286, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4728, "fields": {"revision": 2286, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4729, "fields": {"revision": 2287, "object_id": "8a08330f-4025-4a06-a972-fdd3cea3660d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8a08330f-4025-4a06-a972-fdd3cea3660d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.139Z\", \"registration\": \"bc03d121-1c3f-4b67-88a1-540a94dc66a6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HALL M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Hall - Well Driller : 38000-25/DRI HALL M"}}, {"model": "reversion.version", "pk": 4730, "fields": {"revision": 2287, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4731, "fields": {"revision": 2287, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4732, "fields": {"revision": 2287, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4733, "fields": {"revision": 2288, "object_id": "8a28f235-c6e8-44ef-8d99-717642b761c4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8a28f235-c6e8-44ef-8d99-717642b761c4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.145Z\", \"registration\": \"790b68de-553a-4bfe-b0d2-92d1b5ba1626\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TREM C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-01-18\", \"application_outcome_notification_date\": \"2017-01-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Tremblay - Pump Installer : 38000-25/PUMP TREM C"}}, {"model": "reversion.version", "pk": 4734, "fields": {"revision": 2288, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4735, "fields": {"revision": 2288, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4736, "fields": {"revision": 2288, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4737, "fields": {"revision": 2289, "object_id": "8a4a1176-05e5-4e66-bf0c-87d8bbbcb34e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8a4a1176-05e5-4e66-bf0c-87d8bbbcb34e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.151Z\", \"registration\": \"bc6f99ac-0cc9-494d-9e3c-98d08044c19c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BARR O\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0002-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-02\", \"application_outcome_notification_date\": \"2008-04-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Owen Barrett - Well Driller : 38000-25/DRI BARR O"}}, {"model": "reversion.version", "pk": 4738, "fields": {"revision": 2289, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4739, "fields": {"revision": 2289, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4740, "fields": {"revision": 2289, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4741, "fields": {"revision": 2290, "object_id": "8a63f868-396b-4690-af08-4d5abe8298f2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8a63f868-396b-4690-af08-4d5abe8298f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.156Z\", \"registration\": \"d687fcc4-0442-445f-99fe-bff16dea81f3\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FYFE K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Fyfe - Pump Installer : 38000-25/PUMP FYFE K"}}, {"model": "reversion.version", "pk": 4742, "fields": {"revision": 2290, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4743, "fields": {"revision": 2290, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4744, "fields": {"revision": 2290, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4745, "fields": {"revision": 2291, "object_id": "8a6d0762-7c7f-4311-89e3-e6ee8d52c1df", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8a6d0762-7c7f-4311-89e3-e6ee8d52c1df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.162Z\", \"registration\": \"340de73b-8348-4cf8-a3dd-df7b61fb272c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MAI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rolf Mai - Well Driller : 38000-25/DRI MAI R"}}, {"model": "reversion.version", "pk": 4746, "fields": {"revision": 2291, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4747, "fields": {"revision": 2291, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4748, "fields": {"revision": 2291, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4749, "fields": {"revision": 2292, "object_id": "8a76a51f-c2f3-41f6-a104-56dcedac9a2a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8a76a51f-c2f3-41f6-a104-56dcedac9a2a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.168Z\", \"registration\": \"edd9e82e-8480-4c50-8d07-fbd2ba561cb5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BLAN G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-15\", \"application_outcome_notification_date\": \"2004-11-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garfield Bland - Well Driller : 38000-25/DRI BLAN G"}}, {"model": "reversion.version", "pk": 4750, "fields": {"revision": 2292, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4751, "fields": {"revision": 2292, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4752, "fields": {"revision": 2292, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4753, "fields": {"revision": 2293, "object_id": "8b138de3-efcb-4707-b1d4-0f141a7afc98", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8b138de3-efcb-4707-b1d4-0f141a7afc98\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.173Z\", \"registration\": \"7855f881-b8e1-43f5-bc36-bbc239b15ef7\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WIND D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Windecker - Well Driller : 38000-25/DRI WIND D"}}, {"model": "reversion.version", "pk": 4754, "fields": {"revision": 2293, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4755, "fields": {"revision": 2293, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4756, "fields": {"revision": 2293, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4757, "fields": {"revision": 2294, "object_id": "8b1ac87c-b262-4fef-8d27-1c1398309fb8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8b1ac87c-b262-4fef-8d27-1c1398309fb8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.179Z\", \"registration\": \"933f1cc5-53ca-4b0c-8c3a-f30240e91ecb\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PEPI A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-25\", \"application_outcome_notification_date\": \"2006-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alfred Pepin - Well Driller : 38000-25/DRI PEPI A"}}, {"model": "reversion.version", "pk": 4758, "fields": {"revision": 2294, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4759, "fields": {"revision": 2294, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4760, "fields": {"revision": 2294, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4761, "fields": {"revision": 2295, "object_id": "8b33ab1c-d933-400b-8823-92eb5d911b46", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8b33ab1c-d933-400b-8823-92eb5d911b46\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.185Z\", \"registration\": \"f82a942a-91cf-4626-8438-eee67d012980\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PETE J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-12\", \"application_outcome_notification_date\": \"2006-01-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Peters - Pump Installer : 38000-25/PUMP PETE J"}}, {"model": "reversion.version", "pk": 4762, "fields": {"revision": 2295, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4763, "fields": {"revision": 2295, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4764, "fields": {"revision": 2295, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4765, "fields": {"revision": 2296, "object_id": "8b45e0c0-2840-481d-9cb6-de9e4edb455a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8b45e0c0-2840-481d-9cb6-de9e4edb455a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.191Z\", \"registration\": \"2837bca7-578f-47cc-ab8f-7813d521f3e8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WANN A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-01-29\", \"application_outcome_notification_date\": \"2008-01-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andrew Wannop - Pump Installer : 38000-25/PUMP WANN A"}}, {"model": "reversion.version", "pk": 4766, "fields": {"revision": 2296, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4767, "fields": {"revision": 2296, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4768, "fields": {"revision": 2296, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4769, "fields": {"revision": 2297, "object_id": "8b59e8ac-aefa-461a-a305-f77e68a123b2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8b59e8ac-aefa-461a-a305-f77e68a123b2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.197Z\", \"registration\": \"3bb00cdd-11df-4016-8b4e-0817174c41fb\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CLAR J\", \"proof_of_age\": null, \"registrar_notes\": \"Contacted 2017-12-22; updated information. Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Clark - Well Driller : 38000-25/DRI CLAR J"}}, {"model": "reversion.version", "pk": 4770, "fields": {"revision": 2297, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4771, "fields": {"revision": 2297, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4772, "fields": {"revision": 2297, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4773, "fields": {"revision": 2298, "object_id": "8b5fbdb6-92ed-4f05-8b91-5e88fb21d591", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8b5fbdb6-92ed-4f05-8b91-5e88fb21d591\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.203Z\", \"registration\": \"645c50a1-38d9-4cb3-bf75-20d51cf37f4d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI NELS R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2012-188\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-06-21\", \"application_outcome_notification_date\": \"2012-06-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Nelson - Well Driller : 38000-25/DRI NELS R"}}, {"model": "reversion.version", "pk": 4774, "fields": {"revision": 2298, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4775, "fields": {"revision": 2298, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4776, "fields": {"revision": 2298, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4777, "fields": {"revision": 2299, "object_id": "8baccfe2-215c-4edd-9e51-e2aa537bea48", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8baccfe2-215c-4edd-9e51-e2aa537bea48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.208Z\", \"registration\": \"8d34090f-523c-4168-a8d9-a11ed7bb1232\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SLAD P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0027-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Slade - Well Driller : 38000-25/DRI SLAD P"}}, {"model": "reversion.version", "pk": 4778, "fields": {"revision": 2299, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4779, "fields": {"revision": 2299, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4780, "fields": {"revision": 2299, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4781, "fields": {"revision": 2300, "object_id": "8cf3ef50-e29f-482e-a56c-aece033dc14f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8cf3ef50-e29f-482e-a56c-aece033dc14f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.214Z\", \"registration\": \"8c8e69f1-7ea9-455f-b641-5bfa95cf8973\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CHER D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-17\", \"application_outcome_notification_date\": \"2005-10-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Cherry - Pump Installer : 38000-25/PUMP CHER D"}}, {"model": "reversion.version", "pk": 4782, "fields": {"revision": 2300, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4783, "fields": {"revision": 2300, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4784, "fields": {"revision": 2300, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4785, "fields": {"revision": 2301, "object_id": "8d1fdde4-8727-4008-8405-63d68bb491f8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8d1fdde4-8727-4008-8405-63d68bb491f8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.220Z\", \"registration\": \"573995fb-ac17-4b8a-97e1-7940389cbaa1\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BUMF T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Troy Bumford - Well Driller : 38000-25/DRI BUMF T"}}, {"model": "reversion.version", "pk": 4786, "fields": {"revision": 2301, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4787, "fields": {"revision": 2301, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4788, "fields": {"revision": 2301, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4789, "fields": {"revision": 2302, "object_id": "8da82662-66dd-46a4-a564-0e308ffffdcb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8da82662-66dd-46a4-a564-0e308ffffdcb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.226Z\", \"registration\": \"64940e1b-5091-40db-9818-77295ba7e2b1\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KALI R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ron Kalicum - Pump Installer : 38000-25/PUMP KALI R"}}, {"model": "reversion.version", "pk": 4790, "fields": {"revision": 2302, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4791, "fields": {"revision": 2302, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4792, "fields": {"revision": 2302, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4793, "fields": {"revision": 2303, "object_id": "8e324bdb-257f-47a2-95cf-d53431b7886d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8e324bdb-257f-47a2-95cf-d53431b7886d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.232Z\", \"registration\": \"1dccb43e-e582-4229-9cce-fcdde6872638\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WOLF S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0032-WW-89\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Simon Wolford - Well Driller : 38000-25/DRI WOLF S"}}, {"model": "reversion.version", "pk": 4794, "fields": {"revision": 2303, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4795, "fields": {"revision": 2303, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4796, "fields": {"revision": 2303, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4797, "fields": {"revision": 2304, "object_id": "8e3e639d-4a99-42c7-81ce-cba184409963", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8e3e639d-4a99-42c7-81ce-cba184409963\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.237Z\", \"registration\": \"91b1859d-c6cf-4120-81aa-bc81079c1378\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BLEI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bleich - Well Driller : 38000-25/DRI BLEI R"}}, {"model": "reversion.version", "pk": 4798, "fields": {"revision": 2304, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4799, "fields": {"revision": 2304, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4800, "fields": {"revision": 2304, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4801, "fields": {"revision": 2305, "object_id": "8edecfd3-2191-49c7-bd17-5ce2103f0377", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8edecfd3-2191-49c7-bd17-5ce2103f0377\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.243Z\", \"registration\": \"b19fadb6-550a-4143-84a1-9144abafd60e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI YEO R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roy Yeo - Well Driller : 38000-25/DRI YEO R"}}, {"model": "reversion.version", "pk": 4802, "fields": {"revision": 2305, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4803, "fields": {"revision": 2305, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4804, "fields": {"revision": 2305, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4805, "fields": {"revision": 2306, "object_id": "8f6fdb44-0e2a-4254-9f03-fc187877f884", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8f6fdb44-0e2a-4254-9f03-fc187877f884\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.249Z\", \"registration\": \"a3eadf9c-78e3-41bd-a90e-76c4be8da126\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI POST R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VB2770-35/00057\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-09-25\", \"application_outcome_notification_date\": \"2015-09-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Post - Well Driller : 38000-25/DRI POST R"}}, {"model": "reversion.version", "pk": 4806, "fields": {"revision": 2306, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4807, "fields": {"revision": 2306, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4808, "fields": {"revision": 2306, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4809, "fields": {"revision": 2307, "object_id": "8f7aaac8-9c96-4b6a-8a30-ad3047d166f2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8f7aaac8-9c96-4b6a-8a30-ad3047d166f2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.255Z\", \"registration\": \"f5d8a643-67b3-41a4-b2a4-8943516c02b3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SLAD S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00002-WW-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-20\", \"application_outcome_notification_date\": \"2015-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Slade - Well Driller : 38000-25/DRI SLAD S"}}, {"model": "reversion.version", "pk": 4810, "fields": {"revision": 2307, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4811, "fields": {"revision": 2307, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4812, "fields": {"revision": 2307, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4813, "fields": {"revision": 2308, "object_id": "8fe54793-d520-46d3-bede-a08f9476b826", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"8fe54793-d520-46d3-bede-a08f9476b826\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.260Z\", \"registration\": \"068507ec-badb-43c6-9841-6cdd4557a60c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HOCK S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-29\", \"application_outcome_notification_date\": \"2006-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Saul Hock - Pump Installer : 38000-25/PUMP HOCK S"}}, {"model": "reversion.version", "pk": 4814, "fields": {"revision": 2308, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4815, "fields": {"revision": 2308, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4816, "fields": {"revision": 2308, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4817, "fields": {"revision": 2309, "object_id": "9009b6d1-838a-49ac-97bf-2c8d6f00dc07", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9009b6d1-838a-49ac-97bf-2c8d6f00dc07\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.266Z\", \"registration\": \"edd9e82e-8480-4c50-8d07-fbd2ba561cb5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BLAN G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-15\", \"application_outcome_notification_date\": \"2004-11-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garfield Bland - Well Driller : 38000-25/DRI BLAN G"}}, {"model": "reversion.version", "pk": 4818, "fields": {"revision": 2309, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4819, "fields": {"revision": 2309, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4820, "fields": {"revision": 2309, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4821, "fields": {"revision": 2310, "object_id": "90234e08-e36a-438c-9e2f-2d93f3af17fd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"90234e08-e36a-438c-9e2f-2d93f3af17fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.272Z\", \"registration\": \"b925f556-5a94-42dc-b658-9f63894067f6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MUIR A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Aaron Muir - Well Driller : 38000-25/DRI MUIR A"}}, {"model": "reversion.version", "pk": 4822, "fields": {"revision": 2310, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4823, "fields": {"revision": 2310, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4824, "fields": {"revision": 2310, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4825, "fields": {"revision": 2311, "object_id": "90be0d87-8bc0-42eb-9ab7-8e31b7ad48a7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"90be0d87-8bc0-42eb-9ab7-8e31b7ad48a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.277Z\", \"registration\": \"94d03a08-9a7c-4d9b-b7bb-d103bc2aed0e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHI D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-29\", \"application_outcome_notification_date\": \"2005-10-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schibli - Pump Installer : 38000-25/PUMP SCHI D"}}, {"model": "reversion.version", "pk": 4826, "fields": {"revision": 2311, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4827, "fields": {"revision": 2311, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4828, "fields": {"revision": 2311, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4829, "fields": {"revision": 2312, "object_id": "90c04b08-ad33-45a4-b1ea-513441352a39", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"90c04b08-ad33-45a4-b1ea-513441352a39\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.283Z\", \"registration\": \"16d366d0-a1f2-4fab-89ac-566429ffb8b2\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI VLCH K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kurt Vlchek - Well Driller : 38000-25/DRI VLCH K"}}, {"model": "reversion.version", "pk": 4830, "fields": {"revision": 2312, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4831, "fields": {"revision": 2312, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4832, "fields": {"revision": 2312, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4833, "fields": {"revision": 2313, "object_id": "90ef1eea-afd8-4231-a9e4-b5bdc8f8afe4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"90ef1eea-afd8-4231-a9e4-b5bdc8f8afe4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.289Z\", \"registration\": \"7fe22d8d-32cf-487c-8ebf-136e931b654f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOMB H\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-11\", \"application_outcome_notification_date\": \"2006-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harvey Bombardier - Well Driller : 38000-25/DRI BOMB H"}}, {"model": "reversion.version", "pk": 4834, "fields": {"revision": 2313, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4835, "fields": {"revision": 2313, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4836, "fields": {"revision": 2313, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4837, "fields": {"revision": 2314, "object_id": "90fce331-cc6a-4dbc-8cd5-c17f4091eb0a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"90fce331-cc6a-4dbc-8cd5-c17f4091eb0a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.294Z\", \"registration\": \"678ccab1-eebc-46ae-89d5-c015539b1109\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI OTTO D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Otto - Well Driller : 38000-25/DRI OTTO D"}}, {"model": "reversion.version", "pk": 4838, "fields": {"revision": 2314, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4839, "fields": {"revision": 2314, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4840, "fields": {"revision": 2314, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4841, "fields": {"revision": 2315, "object_id": "90fff97a-b34e-4ae9-b52a-116129bd2e4b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"90fff97a-b34e-4ae9-b52a-116129bd2e4b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.300Z\", \"registration\": \"663e062c-ae86-4a6e-88c8-635b578cfa24\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI TAYL H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Henry Taylor - Well Driller : 38000-25/DRI TAYL H"}}, {"model": "reversion.version", "pk": 4842, "fields": {"revision": 2315, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4843, "fields": {"revision": 2315, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4844, "fields": {"revision": 2315, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4845, "fields": {"revision": 2316, "object_id": "911daeab-f499-455d-af8a-7270c5640925", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"911daeab-f499-455d-af8a-7270c5640925\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.306Z\", \"registration\": \"0cab9d71-4217-4203-b2e9-e81d27f5799b\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HEAL J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Heal - Well Driller : 38000-25/DRI HEAL J"}}, {"model": "reversion.version", "pk": 4846, "fields": {"revision": 2316, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4847, "fields": {"revision": 2316, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4848, "fields": {"revision": 2316, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4849, "fields": {"revision": 2317, "object_id": "9121946c-9eb8-4255-8ecf-e0c0356f357d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9121946c-9eb8-4255-8ecf-e0c0356f357d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.312Z\", \"registration\": \"1dccb43e-e582-4229-9cce-fcdde6872638\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WOLF S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0032-WW-89\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Simon Wolford - Well Driller : 38000-25/DRI WOLF S"}}, {"model": "reversion.version", "pk": 4850, "fields": {"revision": 2317, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4851, "fields": {"revision": 2317, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4852, "fields": {"revision": 2317, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4853, "fields": {"revision": 2318, "object_id": "9128c4a9-8f15-40c8-a949-e8ddc41e15b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9128c4a9-8f15-40c8-a949-e8ddc41e15b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.317Z\", \"registration\": \"6376d13d-7b24-43dc-98d9-3b641aeeebef\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BRAN L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Luciano Brancato - Well Driller : 38000-25/DRI BRAN L"}}, {"model": "reversion.version", "pk": 4854, "fields": {"revision": 2318, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4855, "fields": {"revision": 2318, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4856, "fields": {"revision": 2318, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4857, "fields": {"revision": 2319, "object_id": "915a14b5-d24b-4ed3-874a-875b09d2bf94", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"915a14b5-d24b-4ed3-874a-875b09d2bf94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.323Z\", \"registration\": \"9df1d3dc-6ee8-4add-b4af-a5d400d9df90\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI EHAL K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"a17cc1f8-62c7-4715-93fb-b4c66986d9a7\", \"primary_certificate_no\": \"122177\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-09-06\", \"application_outcome_notification_date\": \"2017-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Keldon Ehalt - Well Driller : 38000-25/DRI EHAL K"}}, {"model": "reversion.version", "pk": 4858, "fields": {"revision": 2319, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4859, "fields": {"revision": 2319, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4860, "fields": {"revision": 2319, "object_id": "a17cc1f8-62c7-4715-93fb-b4c66986d9a7", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a17cc1f8-62c7-4715-93fb-b4c66986d9a7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"SK\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Saskatchewan Journeyperson Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "SK Well Driller Water Well Driller, Saskatchewan Journeyperson Certificate"}}, {"model": "reversion.version", "pk": 4861, "fields": {"revision": 2320, "object_id": "91ed538e-df2a-44da-aa81-f5b1b3707c5b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"91ed538e-df2a-44da-aa81-f5b1b3707c5b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.329Z\", \"registration\": \"a0401b08-ab89-4425-9bec-5269f420d07b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP VANE J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-06\", \"application_outcome_notification_date\": \"2005-06-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Van Esch - Pump Installer : 38000-25/PUMP VANE J"}}, {"model": "reversion.version", "pk": 4862, "fields": {"revision": 2320, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4863, "fields": {"revision": 2320, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4864, "fields": {"revision": 2320, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4865, "fields": {"revision": 2321, "object_id": "921d3461-8207-409b-9774-9040ce17c8d6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"921d3461-8207-409b-9774-9040ce17c8d6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.335Z\", \"registration\": \"4a65e1c7-a6c1-4b67-8ae2-abf604dbe7b0\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LHEN J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John L'Henaff - Well Driller : 38000-25/DRI LHEN J"}}, {"model": "reversion.version", "pk": 4866, "fields": {"revision": 2321, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4867, "fields": {"revision": 2321, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4868, "fields": {"revision": 2321, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4869, "fields": {"revision": 2322, "object_id": "92baf9db-8a46-47d2-9355-c2db54e58396", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"92baf9db-8a46-47d2-9355-c2db54e58396\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.341Z\", \"registration\": \"61e6c6c0-63ae-41e2-9f58-6569d0fe7e58\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CHAP M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2011-185\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-02-21\", \"application_outcome_notification_date\": \"2012-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Matthew Chapman - Well Driller : 38000-25/DRI CHAP M"}}, {"model": "reversion.version", "pk": 4870, "fields": {"revision": 2322, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4871, "fields": {"revision": 2322, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4872, "fields": {"revision": 2322, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4873, "fields": {"revision": 2323, "object_id": "9419fb37-d3d1-4adf-ba16-0a064e6ecd7d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9419fb37-d3d1-4adf-ba16-0a064e6ecd7d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.347Z\", \"registration\": \"ebaa4fa7-a14c-43f1-acc0-5a0c41d2027f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI THOM D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00023-WW-02; GWDT-2002-092\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-01\", \"application_outcome_notification_date\": \"2005-02-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Thompson - Well Driller : 38000-25/DRI THOM D"}}, {"model": "reversion.version", "pk": 4874, "fields": {"revision": 2323, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4875, "fields": {"revision": 2323, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4876, "fields": {"revision": 2323, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4877, "fields": {"revision": 2324, "object_id": "9423f7ec-dd2a-4f68-aff2-a217cb656489", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9423f7ec-dd2a-4f68-aff2-a217cb656489\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.352Z\", \"registration\": \"f5d8a643-67b3-41a4-b2a4-8943516c02b3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SLAD S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00002-WW-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-20\", \"application_outcome_notification_date\": \"2015-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Slade - Well Driller : 38000-25/DRI SLAD S"}}, {"model": "reversion.version", "pk": 4878, "fields": {"revision": 2324, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4879, "fields": {"revision": 2324, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4880, "fields": {"revision": 2324, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4881, "fields": {"revision": 2325, "object_id": "94438ff1-b92d-491b-8b5f-d18f2e650b00", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"94438ff1-b92d-491b-8b5f-d18f2e650b00\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.358Z\", \"registration\": \"36d2ce33-c44d-4d34-976a-e4d0600db365\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACD L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Laurin Macdonald - Pump Installer : 38000-25/PUMP MACD L"}}, {"model": "reversion.version", "pk": 4882, "fields": {"revision": 2325, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4883, "fields": {"revision": 2325, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4884, "fields": {"revision": 2325, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4885, "fields": {"revision": 2326, "object_id": "945746d5-29be-4afa-880d-a01160a962ea", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"945746d5-29be-4afa-880d-a01160a962ea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.363Z\", \"registration\": \"2668ead0-8a86-4582-82ba-1d92c07ef155\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FYFE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0012-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Fyfe - Well Driller : 38000-25/DRI FYFE J"}}, {"model": "reversion.version", "pk": 4886, "fields": {"revision": 2326, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4887, "fields": {"revision": 2326, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4888, "fields": {"revision": 2326, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4889, "fields": {"revision": 2327, "object_id": "94b7261c-72b3-4334-8ecc-2efe33092662", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"94b7261c-72b3-4334-8ecc-2efe33092662\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.369Z\", \"registration\": \"e59033c5-ce14-42f8-96fc-592e67f1e9d9\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GROS D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Grossler - Pump Installer : 38000-25/PUMP GROS D"}}, {"model": "reversion.version", "pk": 4890, "fields": {"revision": 2327, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4891, "fields": {"revision": 2327, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4892, "fields": {"revision": 2327, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4893, "fields": {"revision": 2328, "object_id": "94cc1a48-8d2d-4cb2-a114-6802008d5757", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"94cc1a48-8d2d-4cb2-a114-6802008d5757\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.375Z\", \"registration\": \"4a4a61dd-a44d-4395-8686-1eb8fe434459\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MOBE C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clarence Moberg - Well Driller : 38000-25/DRI MOBE C"}}, {"model": "reversion.version", "pk": 4894, "fields": {"revision": 2328, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4895, "fields": {"revision": 2328, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4896, "fields": {"revision": 2328, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4897, "fields": {"revision": 2329, "object_id": "95101e72-6ffa-4c55-bdd8-162081756719", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"95101e72-6ffa-4c55-bdd8-162081756719\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.381Z\", \"registration\": \"f77add92-6aba-4547-b551-cf73d59c497f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CARO DO\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Denis Caron - Well Driller : 38000-25/DRI CARO DO"}}, {"model": "reversion.version", "pk": 4898, "fields": {"revision": 2329, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4899, "fields": {"revision": 2329, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4900, "fields": {"revision": 2329, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4901, "fields": {"revision": 2330, "object_id": "955dddf9-adbf-4711-aab6-670c6ee6b2fc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"955dddf9-adbf-4711-aab6-670c6ee6b2fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.387Z\", \"registration\": \"ef5b00c7-7631-4469-9a9e-79aab64596f0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WOOD M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Woods - Pump Installer : 38000-25/PUMP WOOD M"}}, {"model": "reversion.version", "pk": 4902, "fields": {"revision": 2330, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4903, "fields": {"revision": 2330, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4904, "fields": {"revision": 2330, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4905, "fields": {"revision": 2331, "object_id": "9572676b-7793-4901-b50c-2327892eabb9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9572676b-7793-4901-b50c-2327892eabb9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.394Z\", \"registration\": \"60ecd879-a21f-4d80-ae6f-b3329b876bb7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GRIM S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Grimshaw - Pump Installer : 38000-25/PUMP GRIM S"}}, {"model": "reversion.version", "pk": 4906, "fields": {"revision": 2331, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4907, "fields": {"revision": 2331, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4908, "fields": {"revision": 2331, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4909, "fields": {"revision": 2332, "object_id": "95b91d7e-c87c-4737-a3b0-c02dd5f29cfd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"95b91d7e-c87c-4737-a3b0-c02dd5f29cfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.400Z\", \"registration\": \"dface05c-f5ea-4d64-9965-88e7d3090d9d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BROW I\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-18\", \"application_outcome_notification_date\": \"2006-09-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ian Brown - Well Driller : 38000-25/DRI BROW I"}}, {"model": "reversion.version", "pk": 4910, "fields": {"revision": 2332, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4911, "fields": {"revision": 2332, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4912, "fields": {"revision": 2332, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4913, "fields": {"revision": 2333, "object_id": "95d5bee4-6d27-44e5-a9e9-be056045da63", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"95d5bee4-6d27-44e5-a9e9-be056045da63\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.405Z\", \"registration\": \"32ba06b9-8119-4109-80bb-28a56efa5d1a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI DWYE B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-09\", \"application_outcome_notification_date\": \"2016-02-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bradley Dwyer - Well Driller : 38000-25/DRI DWYE B"}}, {"model": "reversion.version", "pk": 4914, "fields": {"revision": 2333, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4915, "fields": {"revision": 2333, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4916, "fields": {"revision": 2333, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4917, "fields": {"revision": 2334, "object_id": "95f9868e-fe00-4e80-9577-4fd71832b5d7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"95f9868e-fe00-4e80-9577-4fd71832b5d7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.411Z\", \"registration\": \"619d9d7b-ca38-4465-b9e6-2ae9c967c66c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FYFE T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tom Fyfe - Well Driller : 38000-25/DRI FYFE T"}}, {"model": "reversion.version", "pk": 4918, "fields": {"revision": 2334, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4919, "fields": {"revision": 2334, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4920, "fields": {"revision": 2334, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4921, "fields": {"revision": 2335, "object_id": "96474e9c-dc54-4b8f-9356-03aa4640e3ca", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"96474e9c-dc54-4b8f-9356-03aa4640e3ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.417Z\", \"registration\": \"1a0d5e15-9816-4983-872b-19b7b6421b1b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SHAR L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Laverne Sharp - Pump Installer : 38000-25/PUMP SHAR L"}}, {"model": "reversion.version", "pk": 4922, "fields": {"revision": 2335, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4923, "fields": {"revision": 2335, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4924, "fields": {"revision": 2335, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4925, "fields": {"revision": 2336, "object_id": "966442c2-a3df-46ae-9718-dffc6d9fd45a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"966442c2-a3df-46ae-9718-dffc6d9fd45a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.423Z\", \"registration\": \"3dba7cce-fff1-4f95-b578-ad7fd13bc34f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CRAW L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-01-31\", \"application_outcome_notification_date\": \"2012-01-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Larry Crawford - Pump Installer : 38000-25/PUMP CRAW L"}}, {"model": "reversion.version", "pk": 4926, "fields": {"revision": 2336, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4927, "fields": {"revision": 2336, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4928, "fields": {"revision": 2336, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 4929, "fields": {"revision": 2337, "object_id": "96b179f8-08be-45e8-96b6-61f12903637e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"96b179f8-08be-45e8-96b6-61f12903637e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.428Z\", \"registration\": \"340de73b-8348-4cf8-a3dd-df7b61fb272c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MAI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rolf Mai - Well Driller : 38000-25/DRI MAI R"}}, {"model": "reversion.version", "pk": 4930, "fields": {"revision": 2337, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4931, "fields": {"revision": 2337, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4932, "fields": {"revision": 2337, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4933, "fields": {"revision": 2338, "object_id": "97724b8b-bd34-411a-b5a0-84e1f6666e61", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"97724b8b-bd34-411a-b5a0-84e1f6666e61\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.434Z\", \"registration\": \"3fd08156-4448-4f55-965e-1e80d552aa51\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SEYM B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brent Seymour - Well Driller : 38000-25/DRI SEYM B"}}, {"model": "reversion.version", "pk": 4934, "fields": {"revision": 2338, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4935, "fields": {"revision": 2338, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4936, "fields": {"revision": 2338, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4937, "fields": {"revision": 2339, "object_id": "979dc472-7453-4923-879c-e83fa7ebe1f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"979dc472-7453-4923-879c-e83fa7ebe1f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.440Z\", \"registration\": \"64c052c1-7ef0-4d87-a3dc-51ab65802c12\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ABER LD\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Abercrombie - Well Driller : 38000-25/DRI ABER LD"}}, {"model": "reversion.version", "pk": 4938, "fields": {"revision": 2339, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 4939, "fields": {"revision": 2339, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4940, "fields": {"revision": 2339, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4941, "fields": {"revision": 2340, "object_id": "97a3553b-a863-4572-8a9c-d861b7b8b36c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"97a3553b-a863-4572-8a9c-d861b7b8b36c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.446Z\", \"registration\": \"8d34090f-523c-4168-a8d9-a11ed7bb1232\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SLAD P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0027-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Slade - Well Driller : 38000-25/DRI SLAD P"}}, {"model": "reversion.version", "pk": 4942, "fields": {"revision": 2340, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4943, "fields": {"revision": 2340, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4944, "fields": {"revision": 2340, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4945, "fields": {"revision": 2341, "object_id": "97c2a658-6e63-4a43-89e8-aa9b0384b4bb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"97c2a658-6e63-4a43-89e8-aa9b0384b4bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.452Z\", \"registration\": \"1c9c1909-569c-4794-83ca-7f0a4a235b98\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ANDE P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2003-099\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Anderson - Well Driller : 38000-25/DRI ANDE P"}}, {"model": "reversion.version", "pk": 4946, "fields": {"revision": 2341, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4947, "fields": {"revision": 2341, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4948, "fields": {"revision": 2341, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4949, "fields": {"revision": 2342, "object_id": "9856e0da-1e5b-412a-a0d9-301190957815", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9856e0da-1e5b-412a-a0d9-301190957815\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.458Z\", \"registration\": \"83f87e7d-3e3b-4d27-968a-baec9b5f1e24\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LYPK J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Lypkie - Well Driller : 38000-25/DRI LYPK J"}}, {"model": "reversion.version", "pk": 4950, "fields": {"revision": 2342, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4951, "fields": {"revision": 2342, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4952, "fields": {"revision": 2342, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4953, "fields": {"revision": 2343, "object_id": "985814f5-1d71-4fea-bfd3-20f26cc2541a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"985814f5-1d71-4fea-bfd3-20f26cc2541a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.464Z\", \"registration\": \"e54890a2-3d0b-4bf2-84e6-f063a1394098\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CHIU D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dean Chiuppi - Well Driller : 38000-25/DRI CHIU D"}}, {"model": "reversion.version", "pk": 4954, "fields": {"revision": 2343, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4955, "fields": {"revision": 2343, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4956, "fields": {"revision": 2343, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4957, "fields": {"revision": 2344, "object_id": "988620dd-409f-4153-a99e-a5a51bda71ee", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"988620dd-409f-4153-a99e-a5a51bda71ee\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.470Z\", \"registration\": \"8c94ab27-6d8e-4b49-8dc0-ef092f2c9278\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI COAT R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Coates - Well Driller : 38000-25/DRI COAT R"}}, {"model": "reversion.version", "pk": 4958, "fields": {"revision": 2344, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4959, "fields": {"revision": 2344, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4960, "fields": {"revision": 2344, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4961, "fields": {"revision": 2345, "object_id": "98bbc171-9f47-4ba9-af5b-c4eac7df3e23", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"98bbc171-9f47-4ba9-af5b-c4eac7df3e23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.476Z\", \"registration\": \"f244e69b-fdf1-4814-a448-2f1ab1c3fabc\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BERN R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00016-WW-99\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rene Bernard - Well Driller : 38000-25/DRI BERN R"}}, {"model": "reversion.version", "pk": 4962, "fields": {"revision": 2345, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4963, "fields": {"revision": 2345, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4964, "fields": {"revision": 2345, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4965, "fields": {"revision": 2346, "object_id": "99387874-f7b6-4541-910a-d9ff0e5746bb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"99387874-f7b6-4541-910a-d9ff0e5746bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.482Z\", \"registration\": \"74dfcccd-5ebe-4c54-8da7-c9ae808aed48\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STAN R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Stanvick - Well Driller : 38000-25/DRI STAN R"}}, {"model": "reversion.version", "pk": 4966, "fields": {"revision": 2346, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4967, "fields": {"revision": 2346, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4968, "fields": {"revision": 2346, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4969, "fields": {"revision": 2347, "object_id": "998f46ed-fd49-44c1-9c01-df912365617d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"998f46ed-fd49-44c1-9c01-df912365617d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.488Z\", \"registration\": \"a48f4199-d1d3-4bf6-b2af-1b422c7d9b3d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BERN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rene Bernard - Pump Installer : 38000-25/PUMP BERN R"}}, {"model": "reversion.version", "pk": 4970, "fields": {"revision": 2347, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4971, "fields": {"revision": 2347, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4972, "fields": {"revision": 2347, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4973, "fields": {"revision": 2348, "object_id": "999ee4c9-594b-48ad-ae36-250715e257b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"999ee4c9-594b-48ad-ae36-250715e257b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.494Z\", \"registration\": \"c86766ae-0486-45e5-b16c-046c0ae7ad0f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TRAE R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-11\", \"application_outcome_notification_date\": \"2006-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Traer - Pump Installer : 38000-25/PUMP TRAE R"}}, {"model": "reversion.version", "pk": 4974, "fields": {"revision": 2348, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4975, "fields": {"revision": 2348, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4976, "fields": {"revision": 2348, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4977, "fields": {"revision": 2349, "object_id": "99a55a53-635c-40d9-b9f2-19104ec756df", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"99a55a53-635c-40d9-b9f2-19104ec756df\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.500Z\", \"registration\": \"019daf7d-5d01-4641-ba0d-7540b0a5c64c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PELLE K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2006-132\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-05-17\", \"application_outcome_notification_date\": \"2007-05-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Pelletier - Well Driller : 38000-25/DRI PELLE K"}}, {"model": "reversion.version", "pk": 4978, "fields": {"revision": 2349, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4979, "fields": {"revision": 2349, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4980, "fields": {"revision": 2349, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4981, "fields": {"revision": 2350, "object_id": "99c281b9-45eb-4e0a-95a8-1472facfe098", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"99c281b9-45eb-4e0a-95a8-1472facfe098\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.508Z\", \"registration\": \"58ec93a2-47d8-40a5-a5c1-73dd75f2370a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SMIT R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randall Smithson - Well Driller : 38000-25/DRI SMIT R"}}, {"model": "reversion.version", "pk": 4982, "fields": {"revision": 2350, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4983, "fields": {"revision": 2350, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4984, "fields": {"revision": 2350, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4985, "fields": {"revision": 2351, "object_id": "9a4c8d57-edd6-4c5e-beef-10df39475fdf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9a4c8d57-edd6-4c5e-beef-10df39475fdf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.520Z\", \"registration\": \"22043ec4-7189-46df-841f-1ac0f1a822cf\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WEAT L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-28\", \"application_outcome_notification_date\": \"2005-10-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Leo Weatherall - Pump Installer : 38000-25/PUMP WEAT L"}}, {"model": "reversion.version", "pk": 4986, "fields": {"revision": 2351, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 4987, "fields": {"revision": 2351, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4988, "fields": {"revision": 2351, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 4989, "fields": {"revision": 2352, "object_id": "9a52653e-ea6e-4769-ac66-ba3c05a5d4b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9a52653e-ea6e-4769-ac66-ba3c05a5d4b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.569Z\", \"registration\": \"9bae0b0c-ddd0-4969-999c-c513039222fa\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHW W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Schwartz - Well Driller : 38000-25/DRI SCHW W"}}, {"model": "reversion.version", "pk": 4990, "fields": {"revision": 2352, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4991, "fields": {"revision": 2352, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4992, "fields": {"revision": 2352, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4993, "fields": {"revision": 2353, "object_id": "9adcc581-f2a0-414e-a6f4-b3f45ad303b7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9adcc581-f2a0-414e-a6f4-b3f45ad303b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.598Z\", \"registration\": \"2ca670aa-0a52-4c60-bf27-ed12146c0842\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GIBB G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Gibbons - Well Driller : 38000-25/DRI GIBB G"}}, {"model": "reversion.version", "pk": 4994, "fields": {"revision": 2353, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 4995, "fields": {"revision": 2353, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 4996, "fields": {"revision": 2353, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 4997, "fields": {"revision": 2354, "object_id": "9b1ba4ee-e84c-4ff5-b675-c25835ec58fa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9b1ba4ee-e84c-4ff5-b675-c25835ec58fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.609Z\", \"registration\": \"b3ca92e5-997e-402c-8ae2-d83a3816d320\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FAAS P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-170\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-08\", \"application_outcome_notification_date\": \"2010-09-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Faasse - Well Driller : 38000-25/DRI FAAS P"}}, {"model": "reversion.version", "pk": 4998, "fields": {"revision": 2354, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 4999, "fields": {"revision": 2354, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5000, "fields": {"revision": 2354, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5001, "fields": {"revision": 2355, "object_id": "9b327480-178e-45c3-b869-747434164c76", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9b327480-178e-45c3-b869-747434164c76\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.618Z\", \"registration\": \"51c83b04-bf88-461a-8792-3ce433d62a72\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WIDD B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brian Widdows - Pump Installer : 38000-25/PUMP WIDD B"}}, {"model": "reversion.version", "pk": 5002, "fields": {"revision": 2355, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5003, "fields": {"revision": 2355, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5004, "fields": {"revision": 2355, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5005, "fields": {"revision": 2356, "object_id": "9b7de708-e72c-4a4f-9ad9-485153d061b8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9b7de708-e72c-4a4f-9ad9-485153d061b8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.628Z\", \"registration\": \"186b0433-fe72-4b5c-bdd9-d510a1d04cb6\", \"subactivity\": \"PUMPINST\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald James - Pump Installer : None"}}, {"model": "reversion.version", "pk": 5006, "fields": {"revision": 2356, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5007, "fields": {"revision": 2356, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5008, "fields": {"revision": 2356, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5009, "fields": {"revision": 2357, "object_id": "9c0f7236-7e0b-43b3-8e24-0a6dde13cc33", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9c0f7236-7e0b-43b3-8e24-0a6dde13cc33\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.639Z\", \"registration\": \"bdece737-9205-4bc0-af4f-d5687ba1e60e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RAMS S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shane Ramsey - Pump Installer : 38000-25/PUMP RAMS S"}}, {"model": "reversion.version", "pk": 5010, "fields": {"revision": 2357, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5011, "fields": {"revision": 2357, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5012, "fields": {"revision": 2357, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5013, "fields": {"revision": 2358, "object_id": "9c4f8a5c-11ca-4e39-9953-a48124f2c175", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9c4f8a5c-11ca-4e39-9953-a48124f2c175\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.650Z\", \"registration\": \"54763e20-8805-4eec-b7e2-a88917d20012\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI JACO A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-16\", \"application_outcome_notification_date\": \"2005-08-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Jacobson - Well Driller : 38000-25/DRI JACO A"}}, {"model": "reversion.version", "pk": 5014, "fields": {"revision": 2358, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5015, "fields": {"revision": 2358, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5016, "fields": {"revision": 2358, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5017, "fields": {"revision": 2359, "object_id": "9c868bb0-0d16-4097-bbc3-e2b9e3adba60", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9c868bb0-0d16-4097-bbc3-e2b9e3adba60\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.667Z\", \"registration\": \"d7afdb07-70f3-4376-a872-ac9537aa5dfa\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHM J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Schmidt - Pump Installer : 38000-25/PUMP SCHM J"}}, {"model": "reversion.version", "pk": 5018, "fields": {"revision": 2359, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5019, "fields": {"revision": 2359, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5020, "fields": {"revision": 2359, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5021, "fields": {"revision": 2360, "object_id": "9cb99226-5e63-4d10-93f7-380082829f86", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9cb99226-5e63-4d10-93f7-380082829f86\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.686Z\", \"registration\": \"e863888a-3c8b-47f4-88b4-c593b8344ad9\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FIEL L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Larry Field - Well Driller : 38000-25/DRI FIEL L"}}, {"model": "reversion.version", "pk": 5022, "fields": {"revision": 2360, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5023, "fields": {"revision": 2360, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5024, "fields": {"revision": 2360, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5025, "fields": {"revision": 2361, "object_id": "9dc9d99b-f95a-4976-bd28-165d97c88930", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9dc9d99b-f95a-4976-bd28-165d97c88930\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.698Z\", \"registration\": \"c22c3dd5-5f20-4da3-9fe0-566c26de4c4e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LAUC D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0036-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-06-18\", \"application_outcome_notification_date\": \"2008-06-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Lauckner - Well Driller : 38000-25/DRI LAUC D"}}, {"model": "reversion.version", "pk": 5026, "fields": {"revision": 2361, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5027, "fields": {"revision": 2361, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5028, "fields": {"revision": 2361, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5029, "fields": {"revision": 2362, "object_id": "9de4ed1f-578e-48e0-be6c-df81a03aa9ae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9de4ed1f-578e-48e0-be6c-df81a03aa9ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.706Z\", \"registration\": \"61e6c6c0-63ae-41e2-9f58-6569d0fe7e58\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CHAP M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2011-185\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-02-21\", \"application_outcome_notification_date\": \"2012-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Matthew Chapman - Well Driller : 38000-25/DRI CHAP M"}}, {"model": "reversion.version", "pk": 5030, "fields": {"revision": 2362, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5031, "fields": {"revision": 2362, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5032, "fields": {"revision": 2362, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5033, "fields": {"revision": 2363, "object_id": "9eb9c716-69d0-4b62-b53b-30e029fa8b6a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9eb9c716-69d0-4b62-b53b-30e029fa8b6a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.722Z\", \"registration\": \"4a65e1c7-a6c1-4b67-8ae2-abf604dbe7b0\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LHEN J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John L'Henaff - Well Driller : 38000-25/DRI LHEN J"}}, {"model": "reversion.version", "pk": 5034, "fields": {"revision": 2363, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5035, "fields": {"revision": 2363, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5036, "fields": {"revision": 2363, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5037, "fields": {"revision": 2364, "object_id": "9ec65da7-3e5f-4665-a6da-c258af528bfe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9ec65da7-3e5f-4665-a6da-c258af528bfe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.760Z\", \"registration\": \"a3eadf9c-78e3-41bd-a90e-76c4be8da126\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI POST R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VB2770-35/00057\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-09-25\", \"application_outcome_notification_date\": \"2015-09-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Post - Well Driller : 38000-25/DRI POST R"}}, {"model": "reversion.version", "pk": 5038, "fields": {"revision": 2364, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5039, "fields": {"revision": 2364, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5040, "fields": {"revision": 2364, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5041, "fields": {"revision": 2365, "object_id": "9f275a53-6878-4c0e-93e5-3ccfb4971f9e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9f275a53-6878-4c0e-93e5-3ccfb4971f9e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.795Z\", \"registration\": \"7ce85fdc-a857-41b2-9c24-21e98e1f2f43\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MYRA C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/168174-76443A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-01-06\", \"application_outcome_notification_date\": \"2015-01-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cecil Myram - Well Driller : 38000-25/DRI MYRA C"}}, {"model": "reversion.version", "pk": 5042, "fields": {"revision": 2365, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5043, "fields": {"revision": 2365, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5044, "fields": {"revision": 2365, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5045, "fields": {"revision": 2366, "object_id": "9fdea573-2869-4912-aaa5-ad74417f6b74", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"9fdea573-2869-4912-aaa5-ad74417f6b74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.843Z\", \"registration\": \"e1241ccb-7512-4f1a-ba54-768edd597ccc\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BRIN M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Brindley - Well Driller : 38000-25/DRI BRIN M"}}, {"model": "reversion.version", "pk": 5046, "fields": {"revision": 2366, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5047, "fields": {"revision": 2366, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5048, "fields": {"revision": 2366, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5049, "fields": {"revision": 2367, "object_id": "a005301c-399b-49a9-a96c-a70a6a0d70fc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a005301c-399b-49a9-a96c-a70a6a0d70fc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.854Z\", \"registration\": \"a31afd6f-bca3-4c12-b7f4-ae6a97368b06\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CREA R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Creamer - Well Driller : 38000-25/DRI CREA R"}}, {"model": "reversion.version", "pk": 5050, "fields": {"revision": 2367, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5051, "fields": {"revision": 2367, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5052, "fields": {"revision": 2367, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5053, "fields": {"revision": 2368, "object_id": "a00b3227-676f-473f-a516-cddad5b32aeb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a00b3227-676f-473f-a516-cddad5b32aeb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.862Z\", \"registration\": \"80e7f8ad-d613-46d8-b373-b9fd87cc18c5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HENN B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Henning - Well Driller : 38000-25/DRI HENN B"}}, {"model": "reversion.version", "pk": 5054, "fields": {"revision": 2368, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5055, "fields": {"revision": 2368, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5056, "fields": {"revision": 2368, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5057, "fields": {"revision": 2369, "object_id": "a00e3241-0a9e-4b3f-b644-c5583eb912a4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a00e3241-0a9e-4b3f-b644-c5583eb912a4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.882Z\", \"registration\": \"243d5ed0-745a-4832-879a-276e8ef8ea03\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SLEA G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-166\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-06\", \"application_outcome_notification_date\": \"2009-05-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Sleasman - Well Driller : 38000-25/DRI SLEA G"}}, {"model": "reversion.version", "pk": 5058, "fields": {"revision": 2369, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5059, "fields": {"revision": 2369, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5060, "fields": {"revision": 2369, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5061, "fields": {"revision": 2370, "object_id": "a01e7637-db96-44d8-9484-cbf375baeafe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a01e7637-db96-44d8-9484-cbf375baeafe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.919Z\", \"registration\": \"fbb4998c-be99-44b7-862d-73977c82c817\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RENT K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-02-21\", \"application_outcome_notification_date\": \"2012-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kurtis Rentz - Pump Installer : 38000-25/PUMP RENT K"}}, {"model": "reversion.version", "pk": 5062, "fields": {"revision": 2370, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5063, "fields": {"revision": 2370, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5064, "fields": {"revision": 2370, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5065, "fields": {"revision": 2371, "object_id": "a03c92dd-f14d-4ffd-aff4-e44822e2fe02", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a03c92dd-f14d-4ffd-aff4-e44822e2fe02\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.946Z\", \"registration\": \"bb895353-c658-4e6b-b019-dc387ac2b6f6\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JARV B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-16\", \"application_outcome_notification_date\": \"2005-08-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Blake Jarvis - Pump Installer : 38000-25/PUMP JARV B"}}, {"model": "reversion.version", "pk": 5066, "fields": {"revision": 2371, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5067, "fields": {"revision": 2371, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5068, "fields": {"revision": 2371, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5069, "fields": {"revision": 2372, "object_id": "a10621b5-d685-4e80-8bfa-c30896fe5cc3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a10621b5-d685-4e80-8bfa-c30896fe5cc3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.953Z\", \"registration\": \"0e69baae-ac99-40e4-9f8f-059ec7c617cf\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHN C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-12-14\", \"application_outcome_notification_date\": \"2017-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cody Schneider - Pump Installer : 38000-25/PUMP SCHN C"}}, {"model": "reversion.version", "pk": 5070, "fields": {"revision": 2372, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5071, "fields": {"revision": 2372, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5072, "fields": {"revision": 2372, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5073, "fields": {"revision": 2373, "object_id": "a111d4a9-0752-4db8-a7b6-52563c7b8259", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a111d4a9-0752-4db8-a7b6-52563c7b8259\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.971Z\", \"registration\": \"bec60f9c-e8c0-4564-b4e8-ec86ea7feb01\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MICH W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Michener - Pump Installer : 38000-25/PUMP MICH W"}}, {"model": "reversion.version", "pk": 5074, "fields": {"revision": 2373, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5075, "fields": {"revision": 2373, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5076, "fields": {"revision": 2373, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5077, "fields": {"revision": 2374, "object_id": "a127f6d4-66d7-4d5c-98bd-ca9be6bd473b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a127f6d4-66d7-4d5c-98bd-ca9be6bd473b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.979Z\", \"registration\": \"49714287-fef5-4d83-aa21-d309f6f8caaf\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BOUR J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Bourk - Pump Installer : 38000-25/PUMP BOUR J"}}, {"model": "reversion.version", "pk": 5078, "fields": {"revision": 2374, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5079, "fields": {"revision": 2374, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5080, "fields": {"revision": 2374, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5081, "fields": {"revision": 2375, "object_id": "a14217a3-6990-4a9d-bd43-194866d9c0bc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a14217a3-6990-4a9d-bd43-194866d9c0bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.986Z\", \"registration\": \"f1d0762d-ad7d-44d2-9ebf-1853b549414b\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ONGM J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-172\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-02-25\", \"application_outcome_notification_date\": \"2011-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Ongman - Well Driller : 38000-25/DRI ONGM J"}}, {"model": "reversion.version", "pk": 5082, "fields": {"revision": 2375, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5083, "fields": {"revision": 2375, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5084, "fields": {"revision": 2375, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5085, "fields": {"revision": 2376, "object_id": "a15c2a36-051f-44b8-8cc7-81a0c5aac42d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a15c2a36-051f-44b8-8cc7-81a0c5aac42d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:01.994Z\", \"registration\": \"193903b5-2821-43bd-b99d-119dcf1c8b80\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MANK J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Mankowski - Pump Installer : 38000-25/PUMP MANK J"}}, {"model": "reversion.version", "pk": 5086, "fields": {"revision": 2376, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5087, "fields": {"revision": 2376, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5088, "fields": {"revision": 2376, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5089, "fields": {"revision": 2377, "object_id": "a1b77356-e054-4d5c-b0b0-95fa6e9bdc5a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a1b77356-e054-4d5c-b0b0-95fa6e9bdc5a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.007Z\", \"registration\": \"e8d75874-1ee0-4d67-8ede-6ebacba27e76\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI UNRA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00022-WW-01\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-08\", \"application_outcome_notification_date\": \"2005-02-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Unrau - Well Driller : 38000-25/DRI UNRA D"}}, {"model": "reversion.version", "pk": 5090, "fields": {"revision": 2377, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5091, "fields": {"revision": 2377, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5092, "fields": {"revision": 2377, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5093, "fields": {"revision": 2378, "object_id": "a2288d83-c253-4f2b-afd8-30da470280c2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a2288d83-c253-4f2b-afd8-30da470280c2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.023Z\", \"registration\": \"f1d0762d-ad7d-44d2-9ebf-1853b549414b\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ONGM J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-172\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-02-25\", \"application_outcome_notification_date\": \"2011-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Ongman - Well Driller : 38000-25/DRI ONGM J"}}, {"model": "reversion.version", "pk": 5094, "fields": {"revision": 2378, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5095, "fields": {"revision": 2378, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5096, "fields": {"revision": 2378, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5097, "fields": {"revision": 2379, "object_id": "a258ef03-b067-4801-9420-1bfeb2d03d1c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a258ef03-b067-4801-9420-1bfeb2d03d1c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.030Z\", \"registration\": \"5d867f86-549f-41c4-97da-1af15cf687c4\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WIPF S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/805862-165564A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-26\", \"application_outcome_notification_date\": \"2015-05-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stephen Wipf - Well Driller : 38000-25/DRI WIPF S"}}, {"model": "reversion.version", "pk": 5098, "fields": {"revision": 2379, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5099, "fields": {"revision": 2379, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5100, "fields": {"revision": 2379, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5101, "fields": {"revision": 2380, "object_id": "a275c00d-d936-40b3-aa39-de6e011ab5e5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a275c00d-d936-40b3-aa39-de6e011ab5e5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.037Z\", \"registration\": \"ed26393c-3130-4dd4-9537-28ddad69853f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HEAT B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Heathcote - Pump Installer : 38000-25/PUMP HEAT B"}}, {"model": "reversion.version", "pk": 5102, "fields": {"revision": 2380, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5103, "fields": {"revision": 2380, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5104, "fields": {"revision": 2380, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5105, "fields": {"revision": 2381, "object_id": "a2a07673-2ab9-4555-8709-063f4e52144f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a2a07673-2ab9-4555-8709-063f4e52144f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.044Z\", \"registration\": \"b3ca92e5-997e-402c-8ae2-d83a3816d320\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FAAS P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-170\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-08\", \"application_outcome_notification_date\": \"2010-09-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Faasse - Well Driller : 38000-25/DRI FAAS P"}}, {"model": "reversion.version", "pk": 5106, "fields": {"revision": 2381, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5107, "fields": {"revision": 2381, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5108, "fields": {"revision": 2381, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5109, "fields": {"revision": 2382, "object_id": "a4038a9c-168d-4d16-9bc4-cd5aa951bc3a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a4038a9c-168d-4d16-9bc4-cd5aa951bc3a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.050Z\", \"registration\": \"902dd3bf-e4c6-4207-9bd7-c3be0e660a2c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BEIL W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Beil - Pump Installer : 38000-25/PUMP BEIL W"}}, {"model": "reversion.version", "pk": 5110, "fields": {"revision": 2382, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5111, "fields": {"revision": 2382, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5112, "fields": {"revision": 2382, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5113, "fields": {"revision": 2383, "object_id": "a440a555-87e9-48dd-ba97-9e8d0b971319", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a440a555-87e9-48dd-ba97-9e8d0b971319\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.056Z\", \"registration\": \"f54ebc89-b564-4551-af93-5353276a473c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ROBB K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-16\", \"application_outcome_notification_date\": \"2006-05-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Keith Robbins - Well Driller : 38000-25/DRI ROBB K"}}, {"model": "reversion.version", "pk": 5114, "fields": {"revision": 2383, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5115, "fields": {"revision": 2383, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5116, "fields": {"revision": 2383, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5117, "fields": {"revision": 2384, "object_id": "a4b5d8a0-2dbf-478f-8a5c-5db633c7451a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a4b5d8a0-2dbf-478f-8a5c-5db633c7451a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.063Z\", \"registration\": \"055091c6-dda1-4210-a70d-e64e6f2e7abf\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SPEE R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2018-04-17\", \"application_outcome_notification_date\": \"2018-04-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Speer - Pump Installer : 38000-25/PUMP SPEE R"}}, {"model": "reversion.version", "pk": 5118, "fields": {"revision": 2384, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5119, "fields": {"revision": 2384, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5120, "fields": {"revision": 2384, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 5121, "fields": {"revision": 2385, "object_id": "a4b7e090-af73-432d-86a0-d6af12a72dd0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a4b7e090-af73-432d-86a0-d6af12a72dd0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.070Z\", \"registration\": \"ac6660ed-56fe-4faa-9f93-b6d0bfd19518\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI NEUL B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brad Neuls - Well Driller : 38000-25/DRI NEUL B"}}, {"model": "reversion.version", "pk": 5122, "fields": {"revision": 2385, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5123, "fields": {"revision": 2385, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5124, "fields": {"revision": 2385, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5125, "fields": {"revision": 2386, "object_id": "a4c870dd-88e9-4ca9-bd99-0d2dd76d1f2e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a4c870dd-88e9-4ca9-bd99-0d2dd76d1f2e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.076Z\", \"registration\": \"5da05a22-9eb1-4208-b81e-bf9fa9c0c70e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RICK J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Ricketts - Pump Installer : 38000-25/PUMP RICK J"}}, {"model": "reversion.version", "pk": 5126, "fields": {"revision": 2386, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5127, "fields": {"revision": 2386, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5128, "fields": {"revision": 2386, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5129, "fields": {"revision": 2387, "object_id": "a4f7563c-ce84-4844-8bcc-25c6650774e0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a4f7563c-ce84-4844-8bcc-25c6650774e0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.082Z\", \"registration\": \"94c0f65e-2ee7-4fc6-8028-bc97218d6f49\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KAYE A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kaye - Well Driller : 38000-25/DRI KAYE A"}}, {"model": "reversion.version", "pk": 5130, "fields": {"revision": 2387, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5131, "fields": {"revision": 2387, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5132, "fields": {"revision": 2387, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5133, "fields": {"revision": 2388, "object_id": "a51b20bd-71dd-4ec7-9abf-3e38cb82a994", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a51b20bd-71dd-4ec7-9abf-3e38cb82a994\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.088Z\", \"registration\": \"3b57ec05-99b4-45c7-8021-1bf026fc5c68\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BENT D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Duane Bentley - Pump Installer : 38000-25/PUMP BENT D"}}, {"model": "reversion.version", "pk": 5134, "fields": {"revision": 2388, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5135, "fields": {"revision": 2388, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5136, "fields": {"revision": 2388, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5137, "fields": {"revision": 2389, "object_id": "a52975ef-d964-4dc2-8227-4865f4890c78", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a52975ef-d964-4dc2-8227-4865f4890c78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.095Z\", \"registration\": \"757636ea-877e-465c-914a-d87a09f61da2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MINT K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-02\", \"application_outcome_notification_date\": \"2008-04-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kevin Mintz - Pump Installer : 38000-25/PUMP MINT K"}}, {"model": "reversion.version", "pk": 5138, "fields": {"revision": 2389, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5139, "fields": {"revision": 2389, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5140, "fields": {"revision": 2389, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5141, "fields": {"revision": 2390, "object_id": "a53dffa4-b11f-4283-8ffd-48d505ded6d1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a53dffa4-b11f-4283-8ffd-48d505ded6d1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.101Z\", \"registration\": \"ce6839a9-9efb-4661-8482-2b2e1cf41112\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HART J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"035-0/835190-121442A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-05-31\", \"application_outcome_notification_date\": \"2016-05-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Josef Hartl - Well Driller : 38000-25/DRI HART J"}}, {"model": "reversion.version", "pk": 5142, "fields": {"revision": 2390, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5143, "fields": {"revision": 2390, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5144, "fields": {"revision": 2390, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 5145, "fields": {"revision": 2391, "object_id": "a576b8f4-274b-4e3f-a849-5cffd861696d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a576b8f4-274b-4e3f-a849-5cffd861696d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.108Z\", \"registration\": \"9b20d14d-bb7b-43fe-81e7-216b8b201a7c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GREY B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-27\", \"application_outcome_notification_date\": \"2005-09-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Grey - Pump Installer : 38000-25/PUMP GREY B"}}, {"model": "reversion.version", "pk": 5146, "fields": {"revision": 2391, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5147, "fields": {"revision": 2391, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5148, "fields": {"revision": 2391, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5149, "fields": {"revision": 2392, "object_id": "a58d60a9-9713-4403-bd8c-a9c1c21d486d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a58d60a9-9713-4403-bd8c-a9c1c21d486d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.114Z\", \"registration\": \"eaeee756-c48a-4fd9-b31a-05c4a5bc2369\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SPRIN D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Sprinkling - Pump Installer : 38000-25/PUMP SPRIN D"}}, {"model": "reversion.version", "pk": 5150, "fields": {"revision": 2392, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5151, "fields": {"revision": 2392, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5152, "fields": {"revision": 2392, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5153, "fields": {"revision": 2393, "object_id": "a5f47621-bcca-43aa-b9bc-13371e478c96", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a5f47621-bcca-43aa-b9bc-13371e478c96\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.121Z\", \"registration\": \"750133dc-389e-40b7-85c7-1087fd8fdd5e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCDO K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0002-WW-95\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly McGarry - Well Driller : 38000-25/DRI MCDO K"}}, {"model": "reversion.version", "pk": 5154, "fields": {"revision": 2393, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5155, "fields": {"revision": 2393, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5156, "fields": {"revision": 2393, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5157, "fields": {"revision": 2394, "object_id": "a5fc8555-0752-4f8a-8f74-142b5d38166d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a5fc8555-0752-4f8a-8f74-142b5d38166d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.128Z\", \"registration\": \"eaf0acad-e96c-484d-9f39-4dd7f6f33fba\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LAMB J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-28\", \"application_outcome_notification_date\": \"2005-10-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jody Lambert - Well Driller : 38000-25/DRI LAMB J"}}, {"model": "reversion.version", "pk": 5158, "fields": {"revision": 2394, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5159, "fields": {"revision": 2394, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5160, "fields": {"revision": 2394, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5161, "fields": {"revision": 2395, "object_id": "a65780f9-735d-480c-86fc-acb8b52d9a4b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a65780f9-735d-480c-86fc-acb8b52d9a4b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.135Z\", \"registration\": \"4f7321b0-97e3-4ebd-8e9d-0f11d561f525\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CAME J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-155\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-11-02\", \"application_outcome_notification_date\": \"2011-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Cameron - Well Driller : 38000-25/DRI CAME J"}}, {"model": "reversion.version", "pk": 5162, "fields": {"revision": 2395, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5163, "fields": {"revision": 2395, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5164, "fields": {"revision": 2395, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5165, "fields": {"revision": 2396, "object_id": "a65f2db8-22f1-4a7d-b488-8d20a3b38a78", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a65f2db8-22f1-4a7d-b488-8d20a3b38a78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.141Z\", \"registration\": \"e8d75874-1ee0-4d67-8ede-6ebacba27e76\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI UNRA D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00022-WW-01\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-08\", \"application_outcome_notification_date\": \"2005-02-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Unrau - Well Driller : 38000-25/DRI UNRA D"}}, {"model": "reversion.version", "pk": 5166, "fields": {"revision": 2396, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5167, "fields": {"revision": 2396, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5168, "fields": {"revision": 2396, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5169, "fields": {"revision": 2397, "object_id": "a6e76ff4-aaf3-4434-b768-be72152b890e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a6e76ff4-aaf3-4434-b768-be72152b890e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.147Z\", \"registration\": \"5ed14598-9d66-491f-a91f-76db80311859\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WILL W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-07\", \"application_outcome_notification_date\": \"2009-05-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William J.S. Williams - Pump Installer : 38000-25/PUMP WILL W"}}, {"model": "reversion.version", "pk": 5170, "fields": {"revision": 2397, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5171, "fields": {"revision": 2397, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5172, "fields": {"revision": 2397, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5173, "fields": {"revision": 2398, "object_id": "a78dfa9a-71f8-49ff-8665-e575d57bb6d2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a78dfa9a-71f8-49ff-8665-e575d57bb6d2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.153Z\", \"registration\": \"a5450948-d814-4231-90b9-bce97f25a2f8\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI RICH W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Richard - Well Driller : 38000-25/DRI RICH W"}}, {"model": "reversion.version", "pk": 5174, "fields": {"revision": 2398, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5175, "fields": {"revision": 2398, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5176, "fields": {"revision": 2398, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5177, "fields": {"revision": 2399, "object_id": "a81328eb-4286-4aef-8c2e-52c5a88526e7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a81328eb-4286-4aef-8c2e-52c5a88526e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.159Z\", \"registration\": \"0462ab68-b2d5-4b0c-820d-58963534d6c4\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PEAR M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Pearce - Pump Installer : 38000-25/PUMP PEAR M"}}, {"model": "reversion.version", "pk": 5178, "fields": {"revision": 2399, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5179, "fields": {"revision": 2399, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5180, "fields": {"revision": 2399, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5181, "fields": {"revision": 2400, "object_id": "a93fecac-bf65-4242-ac43-488a83149316", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a93fecac-bf65-4242-ac43-488a83149316\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.167Z\", \"registration\": \"333444ad-5540-45ab-be44-e0f71efb1dfd\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WALL J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Wallace - Well Driller : 38000-25/DRI WALL J"}}, {"model": "reversion.version", "pk": 5182, "fields": {"revision": 2400, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5183, "fields": {"revision": 2400, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5184, "fields": {"revision": 2400, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5185, "fields": {"revision": 2401, "object_id": "a975a0de-b6ed-4ada-bd57-84e0f1ed4e99", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a975a0de-b6ed-4ada-bd57-84e0f1ed4e99\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.173Z\", \"registration\": \"a303cbb4-917f-4d32-8c49-518ee3197a62\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GOTT G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Gottschall - Well Driller : 38000-25/DRI GOTT G"}}, {"model": "reversion.version", "pk": 5186, "fields": {"revision": 2401, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5187, "fields": {"revision": 2401, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5188, "fields": {"revision": 2401, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5189, "fields": {"revision": 2402, "object_id": "a9afa9d5-c563-4538-9945-482d933e0a2e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"a9afa9d5-c563-4538-9945-482d933e0a2e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.179Z\", \"registration\": \"bc6f99ac-0cc9-494d-9e3c-98d08044c19c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BARR O\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0002-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-02\", \"application_outcome_notification_date\": \"2008-04-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Owen Barrett - Well Driller : 38000-25/DRI BARR O"}}, {"model": "reversion.version", "pk": 5190, "fields": {"revision": 2402, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5191, "fields": {"revision": 2402, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5192, "fields": {"revision": 2402, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5193, "fields": {"revision": 2403, "object_id": "aa2a1aca-03d2-4d5b-94d3-7a09ebf380ae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aa2a1aca-03d2-4d5b-94d3-7a09ebf380ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.186Z\", \"registration\": \"76fab44b-dc5d-4a89-8f3b-da6fa6e1cfc7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WALL G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-11\", \"application_outcome_notification_date\": \"2006-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garth Wallace - Pump Installer : 38000-25/PUMP WALL G"}}, {"model": "reversion.version", "pk": 5194, "fields": {"revision": 2403, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5195, "fields": {"revision": 2403, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5196, "fields": {"revision": 2403, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5197, "fields": {"revision": 2404, "object_id": "aa4cc1b5-4016-4079-9943-ab5e770f2011", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aa4cc1b5-4016-4079-9943-ab5e770f2011\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.193Z\", \"registration\": \"aa3b40af-9de9-4801-8b2f-2916123ff0ef\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WEBB M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-146\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-13\", \"application_outcome_notification_date\": \"2010-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark Webb - Well Driller : 38000-25/DRI WEBB M"}}, {"model": "reversion.version", "pk": 5198, "fields": {"revision": 2404, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5199, "fields": {"revision": 2404, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5200, "fields": {"revision": 2404, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5201, "fields": {"revision": 2405, "object_id": "aa60c24c-e44c-4f7d-92ac-b5b44ebca2e6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aa60c24c-e44c-4f7d-92ac-b5b44ebca2e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.199Z\", \"registration\": \"320e9fc4-5292-472f-8e52-7cc36aa93053\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP AYRE M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Monte Ayre - Pump Installer : 38000-25/PUMP AYRE M"}}, {"model": "reversion.version", "pk": 5202, "fields": {"revision": 2405, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5203, "fields": {"revision": 2405, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5204, "fields": {"revision": 2405, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5205, "fields": {"revision": 2406, "object_id": "aac60936-8235-470a-9eac-7bec4255d80f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aac60936-8235-470a-9eac-7bec4255d80f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.205Z\", \"registration\": \"94c0f65e-2ee7-4fc6-8028-bc97218d6f49\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KAYE A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kaye - Well Driller : 38000-25/DRI KAYE A"}}, {"model": "reversion.version", "pk": 5206, "fields": {"revision": 2406, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5207, "fields": {"revision": 2406, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5208, "fields": {"revision": 2406, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5209, "fields": {"revision": 2407, "object_id": "aaf8871d-7010-4a38-8d53-09b2f34e082f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aaf8871d-7010-4a38-8d53-09b2f34e082f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.211Z\", \"registration\": \"676e537f-92f6-4c53-8c95-04b26698616d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DANI G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-02-21\", \"application_outcome_notification_date\": \"2013-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Geoff Danieluk - Pump Installer : 38000-25/PUMP DANI G"}}, {"model": "reversion.version", "pk": 5210, "fields": {"revision": 2407, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5211, "fields": {"revision": 2407, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5212, "fields": {"revision": 2407, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5213, "fields": {"revision": 2408, "object_id": "ab0482fc-2b4c-42d5-9a1f-5d9f68d3c2a8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ab0482fc-2b4c-42d5-9a1f-5d9f68d3c2a8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.216Z\", \"registration\": \"e1900e3d-63a8-48d9-a241-da0dec16aed5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WHEA S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Slade Wheatley - Pump Installer : 38000-25/PUMP WHEA S"}}, {"model": "reversion.version", "pk": 5214, "fields": {"revision": 2408, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5215, "fields": {"revision": 2408, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5216, "fields": {"revision": 2408, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5217, "fields": {"revision": 2409, "object_id": "ab0be013-c6c9-485f-8f34-edcdc94a9828", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ab0be013-c6c9-485f-8f34-edcdc94a9828\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.222Z\", \"registration\": \"2668ead0-8a86-4582-82ba-1d92c07ef155\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FYFE J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0012-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Fyfe - Well Driller : 38000-25/DRI FYFE J"}}, {"model": "reversion.version", "pk": 5218, "fields": {"revision": 2409, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5219, "fields": {"revision": 2409, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5220, "fields": {"revision": 2409, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5221, "fields": {"revision": 2410, "object_id": "ab1ce8c4-58a4-4dd1-86c4-1ad0a24733e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ab1ce8c4-58a4-4dd1-86c4-1ad0a24733e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.227Z\", \"registration\": \"b9bf5533-5eed-4081-ab24-ac2c73bfcae3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GOBE T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-08-04\", \"application_outcome_notification_date\": \"2006-08-04\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Gobert - Well Driller : 38000-25/DRI GOBE T"}}, {"model": "reversion.version", "pk": 5222, "fields": {"revision": 2410, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5223, "fields": {"revision": 2410, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5224, "fields": {"revision": 2410, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5225, "fields": {"revision": 2411, "object_id": "ab932e72-4c0b-47d3-a86e-0f8f18c23498", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ab932e72-4c0b-47d3-a86e-0f8f18c23498\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.233Z\", \"registration\": \"340de73b-8348-4cf8-a3dd-df7b61fb272c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MAI R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rolf Mai - Well Driller : 38000-25/DRI MAI R"}}, {"model": "reversion.version", "pk": 5226, "fields": {"revision": 2411, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5227, "fields": {"revision": 2411, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5228, "fields": {"revision": 2411, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5229, "fields": {"revision": 2412, "object_id": "aba5910a-fed5-4137-8714-2c3695db3a74", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aba5910a-fed5-4137-8714-2c3695db3a74\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.239Z\", \"registration\": \"43367549-ce46-48c6-9e79-af380d2d5c4e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KUYE D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-03-17\", \"application_outcome_notification_date\": \"2013-03-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Kuyek - Pump Installer : 38000-25/PUMP KUYE D"}}, {"model": "reversion.version", "pk": 5230, "fields": {"revision": 2412, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5231, "fields": {"revision": 2412, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5232, "fields": {"revision": 2412, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5233, "fields": {"revision": 2413, "object_id": "abbb8c5c-6c21-41b9-9419-420db126f5cf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"abbb8c5c-6c21-41b9-9419-420db126f5cf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.245Z\", \"registration\": \"a96f8e25-1885-4bc8-aebd-c210539a0b42\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHR D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-26\", \"application_outcome_notification_date\": \"2006-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schroeder - Well Driller : 38000-25/DRI SCHR D"}}, {"model": "reversion.version", "pk": 5234, "fields": {"revision": 2413, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5235, "fields": {"revision": 2413, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5236, "fields": {"revision": 2413, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5237, "fields": {"revision": 2414, "object_id": "abdb10a1-972e-4481-97ab-51ac0972fe96", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"abdb10a1-972e-4481-97ab-51ac0972fe96\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.250Z\", \"registration\": \"801f9da2-3c73-48a5-9e9e-91463d720c6e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI VLCH J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0007-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-25\", \"application_outcome_notification_date\": \"2005-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Vlchek - Well Driller : 38000-25/DRI VLCH J"}}, {"model": "reversion.version", "pk": 5238, "fields": {"revision": 2414, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5239, "fields": {"revision": 2414, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5240, "fields": {"revision": 2414, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5241, "fields": {"revision": 2415, "object_id": "ac10a888-3dbf-4ca5-8ce7-95472babfd4e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ac10a888-3dbf-4ca5-8ce7-95472babfd4e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.256Z\", \"registration\": \"71d134dd-fb8d-4258-bc6c-4979283a3f1d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ROMS D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Romses - Well Driller : 38000-25/DRI ROMS D"}}, {"model": "reversion.version", "pk": 5242, "fields": {"revision": 2415, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5243, "fields": {"revision": 2415, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5244, "fields": {"revision": 2415, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5245, "fields": {"revision": 2416, "object_id": "ac733477-3943-4468-b0c0-89b7a32ec34c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ac733477-3943-4468-b0c0-89b7a32ec34c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.262Z\", \"registration\": \"54763e20-8805-4eec-b7e2-a88917d20012\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI JACO A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-16\", \"application_outcome_notification_date\": \"2005-08-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Allan Jacobson - Well Driller : 38000-25/DRI JACO A"}}, {"model": "reversion.version", "pk": 5246, "fields": {"revision": 2416, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5247, "fields": {"revision": 2416, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5248, "fields": {"revision": 2416, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5249, "fields": {"revision": 2417, "object_id": "ace5f0d2-0c24-45cd-8ad0-49f9a636b7fd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ace5f0d2-0c24-45cd-8ad0-49f9a636b7fd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.267Z\", \"registration\": \"e3851f31-1568-4cfa-a010-801cdcd2d72c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI NETR D\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016. Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-12\", \"application_outcome_notification_date\": \"2006-01-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Netrefa - Well Driller : 38000-25/DRI NETR D"}}, {"model": "reversion.version", "pk": 5250, "fields": {"revision": 2417, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5251, "fields": {"revision": 2417, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5252, "fields": {"revision": 2417, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5253, "fields": {"revision": 2418, "object_id": "ace9b775-534b-4a6d-8fa8-15b75dfeb6b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ace9b775-534b-4a6d-8fa8-15b75dfeb6b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.273Z\", \"registration\": \"1e1df047-ff79-4ed0-8539-10e7e40e7349\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ABER D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Abercrombie - Pump Installer : 38000-25/PUMP ABER D"}}, {"model": "reversion.version", "pk": 5254, "fields": {"revision": 2418, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5255, "fields": {"revision": 2418, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5256, "fields": {"revision": 2418, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5257, "fields": {"revision": 2419, "object_id": "acf7974b-8c93-4c89-b430-415170949414", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"acf7974b-8c93-4c89-b430-415170949414\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.279Z\", \"registration\": \"e4316f20-7406-48de-89d8-95bcf2107142\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI OSTE T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-11\", \"application_outcome_notification_date\": \"2005-02-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Timothy Oster - Well Driller : 38000-25/DRI OSTE T"}}, {"model": "reversion.version", "pk": 5258, "fields": {"revision": 2419, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5259, "fields": {"revision": 2419, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5260, "fields": {"revision": 2419, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5261, "fields": {"revision": 2420, "object_id": "ad4cc57a-1bd9-44a4-b6cd-76c37975f765", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ad4cc57a-1bd9-44a4-b6cd-76c37975f765\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.284Z\", \"registration\": \"3fd08156-4448-4f55-965e-1e80d552aa51\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SEYM B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-28\", \"application_outcome_notification_date\": \"2005-09-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brent Seymour - Well Driller : 38000-25/DRI SEYM B"}}, {"model": "reversion.version", "pk": 5262, "fields": {"revision": 2420, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5263, "fields": {"revision": 2420, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5264, "fields": {"revision": 2420, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5265, "fields": {"revision": 2421, "object_id": "ada0f9f2-cf01-4f79-89ae-5c1cd2779f79", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ada0f9f2-cf01-4f79-89ae-5c1cd2779f79\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.290Z\", \"registration\": \"44b6be8c-0c09-41fb-8f4b-65c7041132bf\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOCH J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeffrey Bochek - Well Driller : 38000-25/DRI BOCH J"}}, {"model": "reversion.version", "pk": 5266, "fields": {"revision": 2421, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5267, "fields": {"revision": 2421, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5268, "fields": {"revision": 2421, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5269, "fields": {"revision": 2422, "object_id": "ade86781-93d2-4704-b12b-13c0c402e02b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ade86781-93d2-4704-b12b-13c0c402e02b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.296Z\", \"registration\": \"b19fadb6-550a-4143-84a1-9144abafd60e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI YEO R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roy Yeo - Well Driller : 38000-25/DRI YEO R"}}, {"model": "reversion.version", "pk": 5270, "fields": {"revision": 2422, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5271, "fields": {"revision": 2422, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5272, "fields": {"revision": 2422, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5273, "fields": {"revision": 2423, "object_id": "adf46dbc-6ced-4fe1-997c-cd43f0a9150b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"adf46dbc-6ced-4fe1-997c-cd43f0a9150b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.302Z\", \"registration\": \"11e35c0f-6607-477e-b477-4460ce587587\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CALD H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Caldwell - Well Driller : 38000-25/DRI CALD H"}}, {"model": "reversion.version", "pk": 5274, "fields": {"revision": 2423, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5275, "fields": {"revision": 2423, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5276, "fields": {"revision": 2423, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5277, "fields": {"revision": 2424, "object_id": "ae35cee8-7f11-49fb-8da2-0e8dc24db11a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ae35cee8-7f11-49fb-8da2-0e8dc24db11a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.308Z\", \"registration\": \"65913fa0-f10a-47ba-90f7-1bf6ced2814e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI REID R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Reid - Well Driller : 38000-25/DRI REID R"}}, {"model": "reversion.version", "pk": 5278, "fields": {"revision": 2424, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5279, "fields": {"revision": 2424, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5280, "fields": {"revision": 2424, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5281, "fields": {"revision": 2425, "object_id": "ae714986-bde4-40f8-a7d1-8cd01cebe23b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ae714986-bde4-40f8-a7d1-8cd01cebe23b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.314Z\", \"registration\": \"9db2f8a3-9461-42d6-bed9-3d8c1a9780c8\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SAMI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Samis - Well Driller : 38000-25/DRI SAMI R"}}, {"model": "reversion.version", "pk": 5282, "fields": {"revision": 2425, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5283, "fields": {"revision": 2425, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5284, "fields": {"revision": 2425, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5285, "fields": {"revision": 2426, "object_id": "ae79e942-48a0-4650-a55b-b63b77a8ef6d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ae79e942-48a0-4650-a55b-b63b77a8ef6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.320Z\", \"registration\": \"65913fa0-f10a-47ba-90f7-1bf6ced2814e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI REID R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Reid - Well Driller : 38000-25/DRI REID R"}}, {"model": "reversion.version", "pk": 5286, "fields": {"revision": 2426, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5287, "fields": {"revision": 2426, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5288, "fields": {"revision": 2426, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5289, "fields": {"revision": 2427, "object_id": "ae7ba196-911a-4889-bdd6-bf437e4ff2ac", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ae7ba196-911a-4889-bdd6-bf437e4ff2ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.325Z\", \"registration\": \"acce3f2c-acf3-4690-b6f5-ddd2ac6b5b36\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BAKE I\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ian Baker - Pump Installer : 38000-25/PUMP BAKE I"}}, {"model": "reversion.version", "pk": 5290, "fields": {"revision": 2427, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5291, "fields": {"revision": 2427, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5292, "fields": {"revision": 2427, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5293, "fields": {"revision": 2428, "object_id": "ae950b5a-ad76-4d43-93e1-a84e28435b28", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ae950b5a-ad76-4d43-93e1-a84e28435b28\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.331Z\", \"registration\": \"2e07a868-fe08-4770-97c5-14f376ba0370\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SKIB J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Skiba - Pump Installer : 38000-25/PUMP SKIB J"}}, {"model": "reversion.version", "pk": 5294, "fields": {"revision": 2428, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5295, "fields": {"revision": 2428, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5296, "fields": {"revision": 2428, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5297, "fields": {"revision": 2429, "object_id": "aea9411c-03dd-45ae-90fa-2b12b2eab56f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aea9411c-03dd-45ae-90fa-2b12b2eab56f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.337Z\", \"registration\": \"3f439fda-9623-486b-b576-b257db7d7bf4\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI QUIN C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/876523-48135A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-06\", \"application_outcome_notification_date\": \"2010-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Quinlan - Well Driller : 38000-25/DRI QUIN C"}}, {"model": "reversion.version", "pk": 5298, "fields": {"revision": 2429, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5299, "fields": {"revision": 2429, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5300, "fields": {"revision": 2429, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5301, "fields": {"revision": 2430, "object_id": "aec10c64-5719-4f98-97b1-c5b082315c4a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aec10c64-5719-4f98-97b1-c5b082315c4a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.343Z\", \"registration\": \"38d3fe66-520f-4525-8ea7-e1ccb113a516\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KAYE AL\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Kaye - Well Driller : 38000-25/DRI KAYE AL"}}, {"model": "reversion.version", "pk": 5302, "fields": {"revision": 2430, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5303, "fields": {"revision": 2430, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5304, "fields": {"revision": 2430, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5305, "fields": {"revision": 2431, "object_id": "aecf286a-6f69-412c-baac-3f5bbc3a2624", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aecf286a-6f69-412c-baac-3f5bbc3a2624\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.349Z\", \"registration\": \"118f0346-2a7c-47ea-8fa7-7a99d0c2f284\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BUEL P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/869974-92071A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-09-21\", \"application_outcome_notification_date\": \"2015-09-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Phillip Buelow - Well Driller : 38000-25/DRI BUEL P"}}, {"model": "reversion.version", "pk": 5306, "fields": {"revision": 2431, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5307, "fields": {"revision": 2431, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5308, "fields": {"revision": 2431, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5309, "fields": {"revision": 2432, "object_id": "aed432e1-723a-442c-bb25-aaea7d621ff8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aed432e1-723a-442c-bb25-aaea7d621ff8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.355Z\", \"registration\": \"b925f556-5a94-42dc-b658-9f63894067f6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MUIR A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Aaron Muir - Well Driller : 38000-25/DRI MUIR A"}}, {"model": "reversion.version", "pk": 5310, "fields": {"revision": 2432, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5311, "fields": {"revision": 2432, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5312, "fields": {"revision": 2432, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5313, "fields": {"revision": 2433, "object_id": "aee0fce1-bee7-4336-81e1-6d06c608ffaf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"aee0fce1-bee7-4336-81e1-6d06c608ffaf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.360Z\", \"registration\": \"c84644cf-99a1-455e-b574-980c158c9c50\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCGL D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0034-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-30\", \"application_outcome_notification_date\": \"2005-03-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek McGladdery - Well Driller : 38000-25/DRI MCGL D"}}, {"model": "reversion.version", "pk": 5314, "fields": {"revision": 2433, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5315, "fields": {"revision": 2433, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5316, "fields": {"revision": 2433, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5317, "fields": {"revision": 2434, "object_id": "af5f4a10-9121-4469-a63e-b5e198a675f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"af5f4a10-9121-4469-a63e-b5e198a675f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.366Z\", \"registration\": \"74dfcccd-5ebe-4c54-8da7-c9ae808aed48\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STAN R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Stanvick - Well Driller : 38000-25/DRI STAN R"}}, {"model": "reversion.version", "pk": 5318, "fields": {"revision": 2434, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5319, "fields": {"revision": 2434, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5320, "fields": {"revision": 2434, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5321, "fields": {"revision": 2435, "object_id": "afaec640-d809-485d-95fb-85a0bc659395", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"afaec640-d809-485d-95fb-85a0bc659395\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.372Z\", \"registration\": \"80e7f8ad-d613-46d8-b373-b9fd87cc18c5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HENN B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Henning - Well Driller : 38000-25/DRI HENN B"}}, {"model": "reversion.version", "pk": 5322, "fields": {"revision": 2435, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5323, "fields": {"revision": 2435, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5324, "fields": {"revision": 2435, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5325, "fields": {"revision": 2436, "object_id": "afcd73ad-2924-4617-85ec-7202f83e13e7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"afcd73ad-2924-4617-85ec-7202f83e13e7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.378Z\", \"registration\": \"ebb2910b-eb16-46c5-ba1e-f9ebe8aad172\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI IVEN B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Ivens - Well Driller : 38000-25/DRI IVEN B"}}, {"model": "reversion.version", "pk": 5326, "fields": {"revision": 2436, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5327, "fields": {"revision": 2436, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5328, "fields": {"revision": 2436, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5329, "fields": {"revision": 2437, "object_id": "b07bd3c8-161a-4cf8-a3eb-6bbbafdd6edd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b07bd3c8-161a-4cf8-a3eb-6bbbafdd6edd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.384Z\", \"registration\": \"2c17e7b3-5c01-4301-8529-c52907c7eccf\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KURT I\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2011-182\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-05-20\", \"application_outcome_notification_date\": \"2011-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ibrahim Kurtoglu - Well Driller : 38000-25/DRI KURT I"}}, {"model": "reversion.version", "pk": 5330, "fields": {"revision": 2437, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5331, "fields": {"revision": 2437, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5332, "fields": {"revision": 2437, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5333, "fields": {"revision": 2438, "object_id": "b15892b3-5834-4d51-b6f9-1868292df3bd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b15892b3-5834-4d51-b6f9-1868292df3bd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.390Z\", \"registration\": \"4867fc80-7fb9-4193-9ba4-bcb5d6db2b97\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FRAN RI\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-157\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-10-07\", \"application_outcome_notification_date\": \"2008-10-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick G. France - Well Driller : 38000-25/DRI FRAN RI"}}, {"model": "reversion.version", "pk": 5334, "fields": {"revision": 2438, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5335, "fields": {"revision": 2438, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5336, "fields": {"revision": 2438, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5337, "fields": {"revision": 2439, "object_id": "b268014d-b08e-4442-9e50-4fb929b445fb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b268014d-b08e-4442-9e50-4fb929b445fb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.396Z\", \"registration\": \"686f780f-fe15-4764-a225-2d19f26cc5db\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ROSE K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Rosehill - Well Driller : 38000-25/DRI ROSE K"}}, {"model": "reversion.version", "pk": 5338, "fields": {"revision": 2439, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5339, "fields": {"revision": 2439, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5340, "fields": {"revision": 2439, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5341, "fields": {"revision": 2440, "object_id": "b2b9760b-a14d-4144-b5b9-4a085ee5fa58", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b2b9760b-a14d-4144-b5b9-4a085ee5fa58\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.402Z\", \"registration\": \"a5d040e4-a830-4280-b306-e17f2aafa4c0\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIEB B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0010-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Wiebe - Well Driller : 38000-25/DRI WIEB B"}}, {"model": "reversion.version", "pk": 5342, "fields": {"revision": 2440, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5343, "fields": {"revision": 2440, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5344, "fields": {"revision": 2440, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5345, "fields": {"revision": 2441, "object_id": "b2d03560-b59e-4c53-9645-f0bc5bef97c1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b2d03560-b59e-4c53-9645-f0bc5bef97c1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.408Z\", \"registration\": \"13cd2a52-4312-4329-8502-a0defcf1b6d3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STAN D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Stanvick - Well Driller : 38000-25/DRI STAN D"}}, {"model": "reversion.version", "pk": 5346, "fields": {"revision": 2441, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5347, "fields": {"revision": 2441, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5348, "fields": {"revision": 2441, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5349, "fields": {"revision": 2442, "object_id": "b3066ecd-54ce-4bde-b3c1-af944d19cfbf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b3066ecd-54ce-4bde-b3c1-af944d19cfbf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.414Z\", \"registration\": \"7dc4db28-4122-44b9-8c4c-4744b60cd8f4\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STIN L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/913369-57644A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lyndon Stinson - Well Driller : 38000-25/DRI STIN L"}}, {"model": "reversion.version", "pk": 5350, "fields": {"revision": 2442, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5351, "fields": {"revision": 2442, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5352, "fields": {"revision": 2442, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5353, "fields": {"revision": 2443, "object_id": "b3933a6e-c444-4017-9763-dc1c15c6361d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b3933a6e-c444-4017-9763-dc1c15c6361d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.420Z\", \"registration\": \"36a5f9b7-ada6-4302-954c-3e3af65daa59\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HOLM A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alan Holmstrup - Well Driller : 38000-25/DRI HOLM A"}}, {"model": "reversion.version", "pk": 5354, "fields": {"revision": 2443, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5355, "fields": {"revision": 2443, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5356, "fields": {"revision": 2443, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5357, "fields": {"revision": 2444, "object_id": "b3b10e4f-1914-472f-8877-91d6ab86e546", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b3b10e4f-1914-472f-8877-91d6ab86e546\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.426Z\", \"registration\": \"35a36648-b789-4f32-a0b8-ede1e624d744\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HENR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-07\", \"application_outcome_notification_date\": \"2006-04-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Henry - Well Driller : 38000-25/DRI HENR J"}}, {"model": "reversion.version", "pk": 5358, "fields": {"revision": 2444, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5359, "fields": {"revision": 2444, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5360, "fields": {"revision": 2444, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5361, "fields": {"revision": 2445, "object_id": "b3bffafd-b3ce-4eb8-8939-7632875ca607", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b3bffafd-b3ce-4eb8-8939-7632875ca607\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.432Z\", \"registration\": \"d979e941-017d-476b-9bd5-55238af6812c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PROS D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-26\", \"application_outcome_notification_date\": \"2006-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Prosser - Well Driller : 38000-25/DRI PROS D"}}, {"model": "reversion.version", "pk": 5362, "fields": {"revision": 2445, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5363, "fields": {"revision": 2445, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5364, "fields": {"revision": 2445, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5365, "fields": {"revision": 2446, "object_id": "b41011fc-e340-4987-8ed1-e2fcd72e9a0c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b41011fc-e340-4987-8ed1-e2fcd72e9a0c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.438Z\", \"registration\": \"794558fb-27ff-476a-a94f-4892b76083bd\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP VLCH J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-25\", \"application_outcome_notification_date\": \"2005-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Vlchek - Pump Installer : 38000-25/PUMP VLCH J"}}, {"model": "reversion.version", "pk": 5366, "fields": {"revision": 2446, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5367, "fields": {"revision": 2446, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5368, "fields": {"revision": 2446, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5369, "fields": {"revision": 2447, "object_id": "b4a54c88-56a8-428c-a501-d9bedbe92491", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b4a54c88-56a8-428c-a501-d9bedbe92491\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.444Z\", \"registration\": \"8aaac0b3-10bb-45d8-acfe-fa7ee8d79770\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOUR J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Bourk - Well Driller : 38000-25/DRI BOUR J"}}, {"model": "reversion.version", "pk": 5370, "fields": {"revision": 2447, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5371, "fields": {"revision": 2447, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5372, "fields": {"revision": 2447, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5373, "fields": {"revision": 2448, "object_id": "b5069d8e-e313-4a7e-951f-9fbc37e55cc0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b5069d8e-e313-4a7e-951f-9fbc37e55cc0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.449Z\", \"registration\": \"8ce1a872-1462-4bfc-9fc1-5f6e96561a35\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PARN D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Parnell - Well Driller : 38000-25/DRI PARN D"}}, {"model": "reversion.version", "pk": 5374, "fields": {"revision": 2448, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5375, "fields": {"revision": 2448, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5376, "fields": {"revision": 2448, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5377, "fields": {"revision": 2449, "object_id": "b567d2c6-75ba-473b-b7d7-a87cd7769220", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b567d2c6-75ba-473b-b7d7-a87cd7769220\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.455Z\", \"registration\": \"53e57470-bf5c-4a41-9b5e-32f9a1086e7b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FORS M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-19\", \"application_outcome_notification_date\": \"2006-10-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mitch Forster - Pump Installer : 38000-25/PUMP FORS M"}}, {"model": "reversion.version", "pk": 5378, "fields": {"revision": 2449, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5379, "fields": {"revision": 2449, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5380, "fields": {"revision": 2449, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5381, "fields": {"revision": 2450, "object_id": "b58bb721-c048-44e5-a512-e8df476eab06", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b58bb721-c048-44e5-a512-e8df476eab06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.461Z\", \"registration\": \"797d56c3-e0d7-4799-8fa6-086c5c1a750f\", \"subactivity\": \"GEOTECH\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Vandal - Well Driller : None"}}, {"model": "reversion.version", "pk": 5382, "fields": {"revision": 2450, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5383, "fields": {"revision": 2450, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5384, "fields": {"revision": 2450, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5385, "fields": {"revision": 2451, "object_id": "b58e22f3-3844-4682-8bb6-1d98382b7053", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b58e22f3-3844-4682-8bb6-1d98382b7053\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.467Z\", \"registration\": \"3c6a214f-53e2-423c-9283-0d36d413ceca\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SHAR G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Sharp - Pump Installer : 38000-25/PUMP SHAR G"}}, {"model": "reversion.version", "pk": 5386, "fields": {"revision": 2451, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5387, "fields": {"revision": 2451, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5388, "fields": {"revision": 2451, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5389, "fields": {"revision": 2452, "object_id": "b5d3e43b-1150-4d6f-87ac-73720a5f9128", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b5d3e43b-1150-4d6f-87ac-73720a5f9128\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.473Z\", \"registration\": \"44b6be8c-0c09-41fb-8f4b-65c7041132bf\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOCH J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeffrey Bochek - Well Driller : 38000-25/DRI BOCH J"}}, {"model": "reversion.version", "pk": 5390, "fields": {"revision": 2452, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5391, "fields": {"revision": 2452, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5392, "fields": {"revision": 2452, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5393, "fields": {"revision": 2453, "object_id": "b60859a3-ab9d-42af-a3fa-4ade96de06e2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b60859a3-ab9d-42af-a3fa-4ade96de06e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.480Z\", \"registration\": \"be727216-42e5-4ae6-bad2-0f04411ce870\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SMIT A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Arnold Smithson - Well Driller : 38000-25/DRI SMIT A"}}, {"model": "reversion.version", "pk": 5394, "fields": {"revision": 2453, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5395, "fields": {"revision": 2453, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5396, "fields": {"revision": 2453, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5397, "fields": {"revision": 2454, "object_id": "b6ef04f9-dbda-423d-85f9-44325bf60e06", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b6ef04f9-dbda-423d-85f9-44325bf60e06\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.486Z\", \"registration\": \"a303cbb4-917f-4d32-8c49-518ee3197a62\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GOTT G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Gottschall - Well Driller : 38000-25/DRI GOTT G"}}, {"model": "reversion.version", "pk": 5398, "fields": {"revision": 2454, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5399, "fields": {"revision": 2454, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5400, "fields": {"revision": 2454, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5401, "fields": {"revision": 2455, "object_id": "b726711a-4508-4bf5-aea7-27d64c24190f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b726711a-4508-4bf5-aea7-27d64c24190f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.493Z\", \"registration\": \"aa3b40af-9de9-4801-8b2f-2916123ff0ef\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WEBB M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-146\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-13\", \"application_outcome_notification_date\": \"2010-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark Webb - Well Driller : 38000-25/DRI WEBB M"}}, {"model": "reversion.version", "pk": 5402, "fields": {"revision": 2455, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5403, "fields": {"revision": 2455, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5404, "fields": {"revision": 2455, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5405, "fields": {"revision": 2456, "object_id": "b75f9eb4-44c3-4682-a00b-f7bdae26d82c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b75f9eb4-44c3-4682-a00b-f7bdae26d82c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.499Z\", \"registration\": \"b52c43dd-80a1-448f-a607-ea86b4d7285f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WISH D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wishart - Well Driller : 38000-25/DRI WISH D"}}, {"model": "reversion.version", "pk": 5406, "fields": {"revision": 2456, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5407, "fields": {"revision": 2456, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5408, "fields": {"revision": 2456, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5409, "fields": {"revision": 2457, "object_id": "b7d74a41-1c95-4cc4-9175-88b83a14b927", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b7d74a41-1c95-4cc4-9175-88b83a14b927\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.506Z\", \"registration\": \"9abd3191-4796-44b4-8b59-799a1ab2ef46\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI YOUN J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/1033134-152877A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-11-26\", \"application_outcome_notification_date\": \"2014-11-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Young - Well Driller : 38000-25/DRI YOUN J"}}, {"model": "reversion.version", "pk": 5410, "fields": {"revision": 2457, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5411, "fields": {"revision": 2457, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5412, "fields": {"revision": 2457, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5413, "fields": {"revision": 2458, "object_id": "b7dbfe95-61aa-4091-8b47-04b8cf81a7c7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b7dbfe95-61aa-4091-8b47-04b8cf81a7c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.512Z\", \"registration\": \"1fbca652-c9a0-4873-ac5d-e58988016355\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KOHL A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kohlhauser - Well Driller : 38000-25/DRI KOHL A"}}, {"model": "reversion.version", "pk": 5414, "fields": {"revision": 2458, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5415, "fields": {"revision": 2458, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5416, "fields": {"revision": 2458, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5417, "fields": {"revision": 2459, "object_id": "b8938c73-8e12-4549-a14e-f4410de2acc1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b8938c73-8e12-4549-a14e-f4410de2acc1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.525Z\", \"registration\": \"7b1dc746-8187-40af-9da7-1fbb55e1fc6f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI REID A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alan Reid - Well Driller : 38000-25/DRI REID A"}}, {"model": "reversion.version", "pk": 5418, "fields": {"revision": 2459, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5419, "fields": {"revision": 2459, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5420, "fields": {"revision": 2459, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5421, "fields": {"revision": 2460, "object_id": "b8f2540c-3fff-49dc-8af4-34e85d6dbf24", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b8f2540c-3fff-49dc-8af4-34e85d6dbf24\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.531Z\", \"registration\": \"65913fa0-f10a-47ba-90f7-1bf6ced2814e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI REID R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Reid - Well Driller : 38000-25/DRI REID R"}}, {"model": "reversion.version", "pk": 5422, "fields": {"revision": 2460, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5423, "fields": {"revision": 2460, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5424, "fields": {"revision": 2460, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5425, "fields": {"revision": 2461, "object_id": "b8f58c27-0937-4a54-a22b-6a8fca939028", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b8f58c27-0937-4a54-a22b-6a8fca939028\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.537Z\", \"registration\": \"4b8d6657-0833-4b50-9494-8960d1a85c7e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GRAF D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-29\", \"application_outcome_notification_date\": \"2006-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Grafton - Well Driller : 38000-25/DRI GRAF D"}}, {"model": "reversion.version", "pk": 5426, "fields": {"revision": 2461, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5427, "fields": {"revision": 2461, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5428, "fields": {"revision": 2461, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5429, "fields": {"revision": 2462, "object_id": "b987410a-3b7b-46f9-b49f-d6136e75c66c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b987410a-3b7b-46f9-b49f-d6136e75c66c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.543Z\", \"registration\": \"8035aad5-198c-49ff-a863-6f50654aaf57\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FITZ W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Fitzgerald - Well Driller : 38000-25/DRI FITZ W"}}, {"model": "reversion.version", "pk": 5430, "fields": {"revision": 2462, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5431, "fields": {"revision": 2462, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5432, "fields": {"revision": 2462, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5433, "fields": {"revision": 2463, "object_id": "b992475d-4e8b-434c-a0a1-66a639895878", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b992475d-4e8b-434c-a0a1-66a639895878\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.548Z\", \"registration\": \"be727216-42e5-4ae6-bad2-0f04411ce870\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SMIT A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Arnold Smithson - Well Driller : 38000-25/DRI SMIT A"}}, {"model": "reversion.version", "pk": 5434, "fields": {"revision": 2463, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5435, "fields": {"revision": 2463, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5436, "fields": {"revision": 2463, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5437, "fields": {"revision": 2464, "object_id": "ba906c31-1b00-499d-8813-86e94a2c2c8f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ba906c31-1b00-499d-8813-86e94a2c2c8f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.554Z\", \"registration\": \"57ff647b-a321-4459-98b5-b637c0430719\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MURD J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Murdock - Well Driller : 38000-25/DRI MURD J"}}, {"model": "reversion.version", "pk": 5438, "fields": {"revision": 2464, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5439, "fields": {"revision": 2464, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5440, "fields": {"revision": 2464, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5441, "fields": {"revision": 2465, "object_id": "baa7ded3-e6ec-464c-a0de-1306b571f5e2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"baa7ded3-e6ec-464c-a0de-1306b571f5e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.560Z\", \"registration\": \"d52b9a21-28b6-4094-b201-ab1e0e9b7a23\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MCMA B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brennan McMahon - Well Driller : 38000-25/DRI MCMA B"}}, {"model": "reversion.version", "pk": 5442, "fields": {"revision": 2465, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5443, "fields": {"revision": 2465, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5444, "fields": {"revision": 2465, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5445, "fields": {"revision": 2466, "object_id": "bae38f11-eab4-4ddc-b887-c31ea61e4b92", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bae38f11-eab4-4ddc-b887-c31ea61e4b92\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.566Z\", \"registration\": \"43ebd7da-5a0b-4b35-aabf-5c5eadc484a5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BURF A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-19\", \"application_outcome_notification_date\": \"2013-06-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Arlyn Burfoot - Pump Installer : 38000-25/PUMP BURF A"}}, {"model": "reversion.version", "pk": 5446, "fields": {"revision": 2466, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5447, "fields": {"revision": 2466, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5448, "fields": {"revision": 2466, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5449, "fields": {"revision": 2467, "object_id": "bae747fd-0817-4b10-ba5b-f520dba0ab3e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bae747fd-0817-4b10-ba5b-f520dba0ab3e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.572Z\", \"registration\": \"220d9771-15a7-4b14-8a69-4e62d52fc5b8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JONE J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Jones - Pump Installer : 38000-25/PUMP JONE J"}}, {"model": "reversion.version", "pk": 5450, "fields": {"revision": 2467, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5451, "fields": {"revision": 2467, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5452, "fields": {"revision": 2467, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5453, "fields": {"revision": 2468, "object_id": "bb766ef5-f558-4c89-bd7a-d1b0f8389e0a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bb766ef5-f558-4c89-bd7a-d1b0f8389e0a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.578Z\", \"registration\": \"d9cd8f14-a80a-4d36-aeb7-c91051db64e2\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOLA M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-25\", \"application_outcome_notification_date\": \"2006-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Bolan - Well Driller : 38000-25/DRI BOLA M"}}, {"model": "reversion.version", "pk": 5454, "fields": {"revision": 2468, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5455, "fields": {"revision": 2468, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5456, "fields": {"revision": 2468, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5457, "fields": {"revision": 2469, "object_id": "bbea7820-1e99-4457-95c4-034d5a3d9b18", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bbea7820-1e99-4457-95c4-034d5a3d9b18\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.583Z\", \"registration\": \"a6ebe8cc-f90b-4f7c-b377-77b710896828\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STEIN G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Guy Steinborn - Pump Installer : 38000-25/PUMP STEIN G"}}, {"model": "reversion.version", "pk": 5458, "fields": {"revision": 2469, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5459, "fields": {"revision": 2469, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5460, "fields": {"revision": 2469, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5461, "fields": {"revision": 2470, "object_id": "bc6a5a98-375d-4aa8-b2a7-7629d65001e8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bc6a5a98-375d-4aa8-b2a7-7629d65001e8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.589Z\", \"registration\": \"afa2b466-7e52-4747-962a-21ee1f259bd7\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BUCH G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gray Buchanan - Well Driller : 38000-25/DRI BUCH G"}}, {"model": "reversion.version", "pk": 5462, "fields": {"revision": 2470, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5463, "fields": {"revision": 2470, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5464, "fields": {"revision": 2470, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5465, "fields": {"revision": 2471, "object_id": "bc735726-83aa-4d01-80b8-5794a0329d9d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bc735726-83aa-4d01-80b8-5794a0329d9d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.595Z\", \"registration\": \"dc400ac2-442c-4ce4-b9c5-9323bc8815a1\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCKE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-161\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-08-18\", \"application_outcome_notification_date\": \"2008-08-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken McKellar - Well Driller : 38000-25/DRI MCKE K"}}, {"model": "reversion.version", "pk": 5466, "fields": {"revision": 2471, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5467, "fields": {"revision": 2471, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5468, "fields": {"revision": 2471, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5469, "fields": {"revision": 2472, "object_id": "bce9ed59-4334-415a-9fd4-986335e4b59e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bce9ed59-4334-415a-9fd4-986335e4b59e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.601Z\", \"registration\": \"1fbca652-c9a0-4873-ac5d-e58988016355\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KOHL A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Anthony Kohlhauser - Well Driller : 38000-25/DRI KOHL A"}}, {"model": "reversion.version", "pk": 5470, "fields": {"revision": 2472, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5471, "fields": {"revision": 2472, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5472, "fields": {"revision": 2472, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5473, "fields": {"revision": 2473, "object_id": "bd168dc0-7d27-4c8c-a092-d36602f577bb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bd168dc0-7d27-4c8c-a092-d36602f577bb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.607Z\", \"registration\": \"138b90cf-b6ba-43b8-82cb-cc26bbd7116a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BANK K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VA2732\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-15\", \"application_outcome_notification_date\": \"2016-02-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Banks - Well Driller : 38000-25/DRI BANK K"}}, {"model": "reversion.version", "pk": 5474, "fields": {"revision": 2473, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5475, "fields": {"revision": 2473, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5476, "fields": {"revision": 2473, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5477, "fields": {"revision": 2474, "object_id": "bd1d052b-5615-4022-9287-32e1e599b360", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bd1d052b-5615-4022-9287-32e1e599b360\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.613Z\", \"registration\": \"f5d8a643-67b3-41a4-b2a4-8943516c02b3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SLAD S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00002-WW-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-20\", \"application_outcome_notification_date\": \"2015-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Slade - Well Driller : 38000-25/DRI SLAD S"}}, {"model": "reversion.version", "pk": 5478, "fields": {"revision": 2474, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5479, "fields": {"revision": 2474, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5480, "fields": {"revision": 2474, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5481, "fields": {"revision": 2475, "object_id": "bd419892-651e-4da0-8836-58041cfff87d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bd419892-651e-4da0-8836-58041cfff87d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.619Z\", \"registration\": \"7e6b82a7-367c-4292-be7a-4c7e92ae9c0f\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP DAVI CH\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-02-13\", \"application_outcome_notification_date\": \"2015-02-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Davies - Pump Installer : 38000-25/PUMP DAVI CH"}}, {"model": "reversion.version", "pk": 5482, "fields": {"revision": 2475, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5483, "fields": {"revision": 2475, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5484, "fields": {"revision": 2475, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5485, "fields": {"revision": 2476, "object_id": "bd4cf573-92a8-45f4-8e9f-550fbd6b40c7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bd4cf573-92a8-45f4-8e9f-550fbd6b40c7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.625Z\", \"registration\": \"de1599ed-f28f-497f-9a5c-32c316d1ec94\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HOCK M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Miles Hock - Pump Installer : 38000-25/PUMP HOCK M"}}, {"model": "reversion.version", "pk": 5486, "fields": {"revision": 2476, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5487, "fields": {"revision": 2476, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5488, "fields": {"revision": 2476, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5489, "fields": {"revision": 2477, "object_id": "bd56d67a-8d8b-4be0-abf2-85a75690145b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bd56d67a-8d8b-4be0-abf2-85a75690145b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.631Z\", \"registration\": \"750133dc-389e-40b7-85c7-1087fd8fdd5e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCDO K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0002-WW-95\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly McGarry - Well Driller : 38000-25/DRI MCDO K"}}, {"model": "reversion.version", "pk": 5490, "fields": {"revision": 2477, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5491, "fields": {"revision": 2477, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5492, "fields": {"revision": 2477, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5493, "fields": {"revision": 2478, "object_id": "bd8e8bf0-7df5-43b1-ab7b-8a0529d9d6b0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bd8e8bf0-7df5-43b1-ab7b-8a0529d9d6b0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.638Z\", \"registration\": \"6ace1a50-e98b-41d7-a75e-2591a08e1f8f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOUR R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0001-WW-96\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bourget - Well Driller : 38000-25/DRI BOUR R"}}, {"model": "reversion.version", "pk": 5494, "fields": {"revision": 2478, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5495, "fields": {"revision": 2478, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5496, "fields": {"revision": 2478, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5497, "fields": {"revision": 2479, "object_id": "be2e6e21-c2fd-4de0-8d60-bb447fbe3360", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"be2e6e21-c2fd-4de0-8d60-bb447fbe3360\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.645Z\", \"registration\": \"6c50bdf6-ae1a-40b5-85e2-9d022fbc54fa\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PAUL B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-179\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-08\", \"application_outcome_notification_date\": \"2010-09-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brandon Paulson - Well Driller : 38000-25/DRI PAUL B"}}, {"model": "reversion.version", "pk": 5498, "fields": {"revision": 2479, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5499, "fields": {"revision": 2479, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5500, "fields": {"revision": 2479, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5501, "fields": {"revision": 2480, "object_id": "be7e9fa7-65e7-460f-b5a2-280f89f6447c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"be7e9fa7-65e7-460f-b5a2-280f89f6447c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.651Z\", \"registration\": \"81a3e4be-7a29-41ad-8ca2-be79fcfeebab\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RITC D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Don Ritchey - Pump Installer : 38000-25/PUMP RITC D"}}, {"model": "reversion.version", "pk": 5502, "fields": {"revision": 2480, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5503, "fields": {"revision": 2480, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5504, "fields": {"revision": 2480, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5505, "fields": {"revision": 2481, "object_id": "bf624922-3c5f-4822-a20d-3718b9fcb26f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bf624922-3c5f-4822-a20d-3718b9fcb26f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.657Z\", \"registration\": \"c1159c6b-358f-4a46-9238-12d8e0587c60\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HOLM L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-25\", \"application_outcome_notification_date\": \"2005-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lauren Holman - Pump Installer : 38000-25/PUMP HOLM L"}}, {"model": "reversion.version", "pk": 5506, "fields": {"revision": 2481, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5507, "fields": {"revision": 2481, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5508, "fields": {"revision": 2481, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5509, "fields": {"revision": 2482, "object_id": "bf69e0d2-6742-48a6-83ed-10e83f5b43dc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bf69e0d2-6742-48a6-83ed-10e83f5b43dc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.662Z\", \"registration\": \"8aaac0b3-10bb-45d8-acfe-fa7ee8d79770\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOUR J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Bourk - Well Driller : 38000-25/DRI BOUR J"}}, {"model": "reversion.version", "pk": 5510, "fields": {"revision": 2482, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5511, "fields": {"revision": 2482, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5512, "fields": {"revision": 2482, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5513, "fields": {"revision": 2483, "object_id": "bfa63ba8-2fdd-4961-a448-cada8cdfa008", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bfa63ba8-2fdd-4961-a448-cada8cdfa008\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.668Z\", \"registration\": \"8c94ab27-6d8e-4b49-8dc0-ef092f2c9278\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI COAT R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Coates - Well Driller : 38000-25/DRI COAT R"}}, {"model": "reversion.version", "pk": 5514, "fields": {"revision": 2483, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5515, "fields": {"revision": 2483, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5516, "fields": {"revision": 2483, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5517, "fields": {"revision": 2484, "object_id": "bfc0cb35-8a3a-453f-ba54-6bcb9ddaa1f1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"bfc0cb35-8a3a-453f-ba54-6bcb9ddaa1f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.674Z\", \"registration\": \"db6a83d8-4171-4c15-bddf-75c4ec078657\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MARS B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brent Marsden - Pump Installer : 38000-25/PUMP MARS B"}}, {"model": "reversion.version", "pk": 5518, "fields": {"revision": 2484, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5519, "fields": {"revision": 2484, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5520, "fields": {"revision": 2484, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5521, "fields": {"revision": 2485, "object_id": "c004ea37-cff4-4e79-af7c-45de32577d4c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c004ea37-cff4-4e79-af7c-45de32577d4c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.680Z\", \"registration\": \"c533d5ac-9db1-428a-9b8d-03772f890049\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ENGL G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory English - Well Driller : 38000-25/DRI ENGL G"}}, {"model": "reversion.version", "pk": 5522, "fields": {"revision": 2485, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5523, "fields": {"revision": 2485, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5524, "fields": {"revision": 2485, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5525, "fields": {"revision": 2486, "object_id": "c041b0c3-410c-4d6f-872b-467dbf93fbe8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c041b0c3-410c-4d6f-872b-467dbf93fbe8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.686Z\", \"registration\": \"cb9f259b-a17a-4bbe-bb03-efe68d8edcbe\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACA C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Craig Macadam - Pump Installer : 38000-25/PUMP MACA C"}}, {"model": "reversion.version", "pk": 5526, "fields": {"revision": 2486, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5527, "fields": {"revision": 2486, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5528, "fields": {"revision": 2486, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5529, "fields": {"revision": 2487, "object_id": "c0761649-8ac8-414a-9a58-33bc02bb3d95", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c0761649-8ac8-414a-9a58-33bc02bb3d95\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.692Z\", \"registration\": \"d0f99d75-2149-4bee-bd9c-a7f4b0460ced\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HARD K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kim Hardy - Pump Installer : 38000-25/PUMP HARD K"}}, {"model": "reversion.version", "pk": 5530, "fields": {"revision": 2487, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5531, "fields": {"revision": 2487, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5532, "fields": {"revision": 2487, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5533, "fields": {"revision": 2488, "object_id": "c0bb014d-f36b-47eb-9c5b-974f900f7c0a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c0bb014d-f36b-47eb-9c5b-974f900f7c0a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.698Z\", \"registration\": \"bee54849-1bd1-4fc4-aaf5-9f8d1db4b0be\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KELL P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Pat Kelly - Well Driller : 38000-25/DRI KELL P"}}, {"model": "reversion.version", "pk": 5534, "fields": {"revision": 2488, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5535, "fields": {"revision": 2488, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5536, "fields": {"revision": 2488, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5537, "fields": {"revision": 2489, "object_id": "c154f823-c083-481b-8f57-644498a03ace", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c154f823-c083-481b-8f57-644498a03ace\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.705Z\", \"registration\": \"0cab9d71-4217-4203-b2e9-e81d27f5799b\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HEAL J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Heal - Well Driller : 38000-25/DRI HEAL J"}}, {"model": "reversion.version", "pk": 5538, "fields": {"revision": 2489, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5539, "fields": {"revision": 2489, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5540, "fields": {"revision": 2489, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5541, "fields": {"revision": 2490, "object_id": "c1e3f00d-7731-4c52-a6f4-ac761a0dae98", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c1e3f00d-7731-4c52-a6f4-ac761a0dae98\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.711Z\", \"registration\": \"83553c33-696c-49c3-a1fe-1840ff468ae5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCDO D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-08-04\", \"application_outcome_notification_date\": \"2006-08-04\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas McDonald - Well Driller : 38000-25/DRI MCDO D"}}, {"model": "reversion.version", "pk": 5542, "fields": {"revision": 2490, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5543, "fields": {"revision": 2490, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5544, "fields": {"revision": 2490, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5545, "fields": {"revision": 2491, "object_id": "c262ddd2-1f06-402b-861a-8fa2806cbbfd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c262ddd2-1f06-402b-861a-8fa2806cbbfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.717Z\", \"registration\": \"ce04889b-9237-44de-badf-6afbd351497e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MOON R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rob Moon - Pump Installer : 38000-25/PUMP MOON R"}}, {"model": "reversion.version", "pk": 5546, "fields": {"revision": 2491, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5547, "fields": {"revision": 2491, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5548, "fields": {"revision": 2491, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5549, "fields": {"revision": 2492, "object_id": "c3023bb6-7665-4e4e-955d-7a054e3fabf2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c3023bb6-7665-4e4e-955d-7a054e3fabf2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.723Z\", \"registration\": \"be5c01df-8b69-46ad-84dd-976a5fb879be\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HOPP B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VB2398\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-13\", \"application_outcome_notification_date\": \"2013-06-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Hopper - Well Driller : 38000-25/DRI HOPP B"}}, {"model": "reversion.version", "pk": 5550, "fields": {"revision": 2492, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5551, "fields": {"revision": 2492, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5552, "fields": {"revision": 2492, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5553, "fields": {"revision": 2493, "object_id": "c32f7e34-7627-4b85-9f84-afb3a4e86ae7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c32f7e34-7627-4b85-9f84-afb3a4e86ae7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.729Z\", \"registration\": \"5d867f86-549f-41c4-97da-1af15cf687c4\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WIPF S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/805862-165564A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-26\", \"application_outcome_notification_date\": \"2015-05-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stephen Wipf - Well Driller : 38000-25/DRI WIPF S"}}, {"model": "reversion.version", "pk": 5554, "fields": {"revision": 2493, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5555, "fields": {"revision": 2493, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5556, "fields": {"revision": 2493, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5557, "fields": {"revision": 2494, "object_id": "c3343426-9f7b-4f37-86a0-d51f16fd0060", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c3343426-9f7b-4f37-86a0-d51f16fd0060\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.735Z\", \"registration\": \"85806bac-53d1-492c-9d14-e46ea9d78cea\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MORR R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick Morritt - Pump Installer : 38000-25/PUMP MORR R"}}, {"model": "reversion.version", "pk": 5558, "fields": {"revision": 2494, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5559, "fields": {"revision": 2494, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5560, "fields": {"revision": 2494, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5561, "fields": {"revision": 2495, "object_id": "c361ab86-b46b-4fb7-ae8c-6ae0cf973182", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c361ab86-b46b-4fb7-ae8c-6ae0cf973182\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.741Z\", \"registration\": \"473bff11-a064-48a5-b3c0-ce7726d7c0dc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WILK G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Wilkins - Pump Installer : 38000-25/PUMP WILK G"}}, {"model": "reversion.version", "pk": 5562, "fields": {"revision": 2495, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5563, "fields": {"revision": 2495, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5564, "fields": {"revision": 2495, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5565, "fields": {"revision": 2496, "object_id": "c36e52f5-7e73-498e-9f0a-5bfde305a8f1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c36e52f5-7e73-498e-9f0a-5bfde305a8f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.518Z\", \"registration\": \"d24d1cbe-c69f-4efe-98a4-fa4c07e788a1\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SILV K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-04-24\", \"application_outcome_notification_date\": \"2017-04-24\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kevin Silvestri - Pump Installer : 38000-25/PUMP SILV K"}}, {"model": "reversion.version", "pk": 5566, "fields": {"revision": 2496, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5567, "fields": {"revision": 2496, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5568, "fields": {"revision": 2496, "object_id": "7bf968aa-c6e0-4f57-b4f4-58723214de80", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"7bf968aa-c6e0-4f57-b4f4-58723214de80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"PUMP\", \"name\": \"Well Pump Installer Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Pump Installer Well Pump Installer Certificate"}}, {"model": "reversion.version", "pk": 5569, "fields": {"revision": 2497, "object_id": "c3b4ca88-d2be-4beb-9362-8ddf86c9f389", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c3b4ca88-d2be-4beb-9362-8ddf86c9f389\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.753Z\", \"registration\": \"e625e390-8e7d-49e4-9968-1b96b1fa4667\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WING V\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-12\", \"application_outcome_notification_date\": \"2006-07-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Vern Winger - Pump Installer : 38000-25/PUMP WING V"}}, {"model": "reversion.version", "pk": 5570, "fields": {"revision": 2497, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5571, "fields": {"revision": 2497, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5572, "fields": {"revision": 2497, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5573, "fields": {"revision": 2498, "object_id": "c3f9712a-d2d2-4638-a019-b962721ec1b6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c3f9712a-d2d2-4638-a019-b962721ec1b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.759Z\", \"registration\": \"1c4a697c-dc5d-4808-9120-b5f51c76dcab\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ABER D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Abercrombie - Well Driller : 38000-25/DRI ABER D"}}, {"model": "reversion.version", "pk": 5574, "fields": {"revision": 2498, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5575, "fields": {"revision": 2498, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5576, "fields": {"revision": 2498, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5577, "fields": {"revision": 2499, "object_id": "c4152dd9-b403-4acb-8d1d-d31a7c01621c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c4152dd9-b403-4acb-8d1d-d31a7c01621c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.765Z\", \"registration\": \"6fe3bbd4-c659-4feb-a787-3e68f42eb652\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MCDO J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-03\", \"application_outcome_notification_date\": \"2004-11-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John McDonald - Well Driller : 38000-25/DRI MCDO J"}}, {"model": "reversion.version", "pk": 5578, "fields": {"revision": 2499, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5579, "fields": {"revision": 2499, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5580, "fields": {"revision": 2499, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5581, "fields": {"revision": 2500, "object_id": "c479fe24-b719-4609-8cde-9adaeba2af8b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c479fe24-b719-4609-8cde-9adaeba2af8b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.771Z\", \"registration\": \"702da908-55ea-485e-ae4a-977911677a0d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MANK J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Mankowski - Well Driller : 38000-25/DRI MANK J"}}, {"model": "reversion.version", "pk": 5582, "fields": {"revision": 2500, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5583, "fields": {"revision": 2500, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5584, "fields": {"revision": 2500, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5585, "fields": {"revision": 2501, "object_id": "c5478e22-77d6-4b4f-b0a8-d3826a577813", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c5478e22-77d6-4b4f-b0a8-d3826a577813\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.776Z\", \"registration\": \"fab5b7e3-be7f-476e-8aec-91b31bf07bd5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP INGR L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-10\", \"application_outcome_notification_date\": \"2005-08-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Ingram - Pump Installer : 38000-25/PUMP INGR L"}}, {"model": "reversion.version", "pk": 5586, "fields": {"revision": 2501, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5587, "fields": {"revision": 2501, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5588, "fields": {"revision": 2501, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5589, "fields": {"revision": 2502, "object_id": "c574da16-9087-43b2-aead-afa340be05da", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c574da16-9087-43b2-aead-afa340be05da\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.782Z\", \"registration\": \"436e24e3-34d1-4c89-abab-0e1414ed32a4\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STEA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darcy Stead - Well Driller : 38000-25/DRI STEA D"}}, {"model": "reversion.version", "pk": 5590, "fields": {"revision": 2502, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5591, "fields": {"revision": 2502, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5592, "fields": {"revision": 2502, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5593, "fields": {"revision": 2503, "object_id": "c58f9850-45bf-4950-a500-0257f16f7f31", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c58f9850-45bf-4950-a500-0257f16f7f31\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.788Z\", \"registration\": \"bee54849-1bd1-4fc4-aaf5-9f8d1db4b0be\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KELL P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Pat Kelly - Well Driller : 38000-25/DRI KELL P"}}, {"model": "reversion.version", "pk": 5594, "fields": {"revision": 2503, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5595, "fields": {"revision": 2503, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5596, "fields": {"revision": 2503, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5597, "fields": {"revision": 2504, "object_id": "c61b62d0-e6ba-47cb-8c12-79968560fa62", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c61b62d0-e6ba-47cb-8c12-79968560fa62\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.794Z\", \"registration\": \"38d3fe66-520f-4525-8ea7-e1ccb113a516\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KAYE AL\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Kaye - Well Driller : 38000-25/DRI KAYE AL"}}, {"model": "reversion.version", "pk": 5598, "fields": {"revision": 2504, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5599, "fields": {"revision": 2504, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5600, "fields": {"revision": 2504, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5601, "fields": {"revision": 2505, "object_id": "c6370b0e-d6ee-43cb-9575-5ea5b90f6ea3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c6370b0e-d6ee-43cb-9575-5ea5b90f6ea3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.800Z\", \"registration\": \"3d9cdb11-e66a-4990-a8a5-c3d9250d6c79\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KALI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ron Kalicum - Well Driller : 38000-25/DRI KALI R"}}, {"model": "reversion.version", "pk": 5602, "fields": {"revision": 2505, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5603, "fields": {"revision": 2505, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5604, "fields": {"revision": 2505, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5605, "fields": {"revision": 2506, "object_id": "c638f4cc-1ab7-4265-a021-3d9df0109db8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c638f4cc-1ab7-4265-a021-3d9df0109db8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.805Z\", \"registration\": \"db18c844-4f66-4144-923c-6461f18bc56c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MACE L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-07-11\", \"application_outcome_notification_date\": \"2005-07-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lucas MacEwan - Well Driller : 38000-25/DRI MACE L"}}, {"model": "reversion.version", "pk": 5606, "fields": {"revision": 2506, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5607, "fields": {"revision": 2506, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5608, "fields": {"revision": 2506, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5609, "fields": {"revision": 2507, "object_id": "c6b9120b-0409-4495-9d76-05da28bc4996", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c6b9120b-0409-4495-9d76-05da28bc4996\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.811Z\", \"registration\": \"619d9d7b-ca38-4465-b9e6-2ae9c967c66c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FYFE T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tom Fyfe - Well Driller : 38000-25/DRI FYFE T"}}, {"model": "reversion.version", "pk": 5610, "fields": {"revision": 2507, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5611, "fields": {"revision": 2507, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5612, "fields": {"revision": 2507, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5613, "fields": {"revision": 2508, "object_id": "c6b9e17a-f4c0-4733-8a98-89a08cfa24d9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c6b9e17a-f4c0-4733-8a98-89a08cfa24d9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.817Z\", \"registration\": \"a03629de-f417-4d49-a402-a7afe49d4558\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MITC D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-22\", \"application_outcome_notification_date\": \"2005-08-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darren Mitchell - Pump Installer : 38000-25/PUMP MITC D"}}, {"model": "reversion.version", "pk": 5614, "fields": {"revision": 2508, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5615, "fields": {"revision": 2508, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5616, "fields": {"revision": 2508, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5617, "fields": {"revision": 2509, "object_id": "c6bea4c7-b6ac-486f-8023-f47f1d56f4c3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c6bea4c7-b6ac-486f-8023-f47f1d56f4c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.823Z\", \"registration\": \"b19fadb6-550a-4143-84a1-9144abafd60e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI YEO R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roy Yeo - Well Driller : 38000-25/DRI YEO R"}}, {"model": "reversion.version", "pk": 5618, "fields": {"revision": 2509, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5619, "fields": {"revision": 2509, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5620, "fields": {"revision": 2509, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5621, "fields": {"revision": 2510, "object_id": "c6ea92a4-f0db-4642-81cb-d4dd487eb008", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c6ea92a4-f0db-4642-81cb-d4dd487eb008\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.828Z\", \"registration\": \"ed1349ee-05d1-4617-be6a-2179d31103a7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PAIS R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Paisley - Pump Installer : 38000-25/PUMP PAIS R"}}, {"model": "reversion.version", "pk": 5622, "fields": {"revision": 2510, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5623, "fields": {"revision": 2510, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5624, "fields": {"revision": 2510, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5625, "fields": {"revision": 2511, "object_id": "c6f44aea-e6a3-40be-857c-4d0cc57f5683", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c6f44aea-e6a3-40be-857c-4d0cc57f5683\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.834Z\", \"registration\": \"89333a3e-500f-4843-b2c7-5b16e81189d2\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CORL P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Corley - Well Driller : 38000-25/DRI CORL P"}}, {"model": "reversion.version", "pk": 5626, "fields": {"revision": 2511, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5627, "fields": {"revision": 2511, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5628, "fields": {"revision": 2511, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5629, "fields": {"revision": 2512, "object_id": "c7060682-d99c-4c8f-9232-271e0f0b8c8e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c7060682-d99c-4c8f-9232-271e0f0b8c8e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.840Z\", \"registration\": \"273be606-c12d-4904-b326-bf2abf805fc2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MATU B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-06\", \"application_outcome_notification_date\": \"2006-02-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Blaine Matuga - Pump Installer : 38000-25/PUMP MATU B"}}, {"model": "reversion.version", "pk": 5630, "fields": {"revision": 2512, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5631, "fields": {"revision": 2512, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5632, "fields": {"revision": 2512, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5633, "fields": {"revision": 2513, "object_id": "c7398047-cc0a-4e79-8a32-d720ec74021b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c7398047-cc0a-4e79-8a32-d720ec74021b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.845Z\", \"registration\": \"8e878171-79ac-4c89-ab28-182e30f3d048\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HAWK R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Hawksworth - Well Driller : 38000-25/DRI HAWK R"}}, {"model": "reversion.version", "pk": 5634, "fields": {"revision": 2513, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5635, "fields": {"revision": 2513, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5636, "fields": {"revision": 2513, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5637, "fields": {"revision": 2514, "object_id": "c74c2d9b-3bec-4622-86ab-521dc5b39ef2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c74c2d9b-3bec-4622-86ab-521dc5b39ef2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.851Z\", \"registration\": \"0cf7b6f8-8677-48c0-83e4-910c5b5be93c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CRON R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-13\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Cronin - Well Driller : 38000-25/DRI CRON R"}}, {"model": "reversion.version", "pk": 5638, "fields": {"revision": 2514, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5639, "fields": {"revision": 2514, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5640, "fields": {"revision": 2514, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5641, "fields": {"revision": 2515, "object_id": "c76a4ccc-a673-4b8b-a08a-ca70a524696f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c76a4ccc-a673-4b8b-a08a-ca70a524696f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.856Z\", \"registration\": \"7e13c9db-f033-4073-9ebc-6f803a18bd30\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BROW M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-25\", \"application_outcome_notification_date\": \"2005-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Brown - Well Driller : 38000-25/DRI BROW M"}}, {"model": "reversion.version", "pk": 5642, "fields": {"revision": 2515, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5643, "fields": {"revision": 2515, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5644, "fields": {"revision": 2515, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5645, "fields": {"revision": 2516, "object_id": "c78a23ca-0673-481d-a18d-07050f77c5a1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c78a23ca-0673-481d-a18d-07050f77c5a1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.862Z\", \"registration\": \"9972cfee-53a2-4306-839f-b9e6949879a6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI YEO G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Yeo - Well Driller : 38000-25/DRI YEO G"}}, {"model": "reversion.version", "pk": 5646, "fields": {"revision": 2516, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5647, "fields": {"revision": 2516, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5648, "fields": {"revision": 2516, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5649, "fields": {"revision": 2517, "object_id": "c7f0ff9e-bf5e-4d4e-9039-e7b65d1d7bb2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c7f0ff9e-bf5e-4d4e-9039-e7b65d1d7bb2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.867Z\", \"registration\": \"f745df85-cd68-4a54-b315-c13df5fa4b27\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KELL D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-02\", \"application_outcome_notification_date\": \"2006-06-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dylan Kelly - Well Driller : 38000-25/DRI KELL D"}}, {"model": "reversion.version", "pk": 5650, "fields": {"revision": 2517, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5651, "fields": {"revision": 2517, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5652, "fields": {"revision": 2517, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5653, "fields": {"revision": 2518, "object_id": "c80172c8-bf48-4070-a3a0-be93fe6a898d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c80172c8-bf48-4070-a3a0-be93fe6a898d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.873Z\", \"registration\": \"77d1e652-61e5-4cee-b4df-e133fe206cbe\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HOCK M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Miles Hock - Well Driller : 38000-25/DRI HOCK M"}}, {"model": "reversion.version", "pk": 5654, "fields": {"revision": 2518, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5655, "fields": {"revision": 2518, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5656, "fields": {"revision": 2518, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5657, "fields": {"revision": 2519, "object_id": "c8b3c131-b7b9-49e0-8ece-f5f28e00a320", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c8b3c131-b7b9-49e0-8ece-f5f28e00a320\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.879Z\", \"registration\": \"2128857d-cb8f-44c6-aae6-0ab08012e54a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KREN T\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Krenbrink - Well Driller : 38000-25/DRI KREN T"}}, {"model": "reversion.version", "pk": 5658, "fields": {"revision": 2519, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5659, "fields": {"revision": 2519, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5660, "fields": {"revision": 2519, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5661, "fields": {"revision": 2520, "object_id": "c8cb0435-0bc2-46e6-bfed-9d2168bd5cdf", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c8cb0435-0bc2-46e6-bfed-9d2168bd5cdf\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.884Z\", \"registration\": \"83f87e7d-3e3b-4d27-968a-baec9b5f1e24\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LYPK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Lypkie - Well Driller : 38000-25/DRI LYPK J"}}, {"model": "reversion.version", "pk": 5662, "fields": {"revision": 2520, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5663, "fields": {"revision": 2520, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5664, "fields": {"revision": 2520, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5665, "fields": {"revision": 2521, "object_id": "c8d9d856-6b05-48a5-842d-6dea47789aa3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c8d9d856-6b05-48a5-842d-6dea47789aa3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.890Z\", \"registration\": \"be1f47e2-ba14-43e0-9ce3-b1bc35a21f5e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCRA G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Carl Mellings - Pump Installer : 38000-25/PUMP MCRA G"}}, {"model": "reversion.version", "pk": 5666, "fields": {"revision": 2521, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5667, "fields": {"revision": 2521, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5668, "fields": {"revision": 2521, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5669, "fields": {"revision": 2522, "object_id": "c93b3362-89b3-4ca6-a524-97896a4be4b9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c93b3362-89b3-4ca6-a524-97896a4be4b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.896Z\", \"registration\": \"becfc8a8-3261-4aa8-af93-730f7acd3a53\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHI D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0006-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schibli - Well Driller : 38000-25/DRI SCHI D"}}, {"model": "reversion.version", "pk": 5670, "fields": {"revision": 2522, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5671, "fields": {"revision": 2522, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5672, "fields": {"revision": 2522, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5673, "fields": {"revision": 2523, "object_id": "c9453a30-c1e7-494f-b647-b8f064e3ab0f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c9453a30-c1e7-494f-b647-b8f064e3ab0f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.901Z\", \"registration\": \"2ec57971-496e-48ef-9f5a-a35adc8be90a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BROW C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-16\", \"application_outcome_notification_date\": \"2006-09-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chad Brown - Well Driller : 38000-25/DRI BROW C"}}, {"model": "reversion.version", "pk": 5674, "fields": {"revision": 2523, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5675, "fields": {"revision": 2523, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5676, "fields": {"revision": 2523, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5677, "fields": {"revision": 2524, "object_id": "c94ddd4e-ef61-44e3-afb6-b1785f4e20a2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c94ddd4e-ef61-44e3-afb6-b1785f4e20a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.907Z\", \"registration\": \"cd0b5677-b34e-4a8f-8cdf-f0080a5f3006\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MACK C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0005-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-15\", \"application_outcome_notification_date\": \"2004-12-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Carl MacKenzie - Well Driller : 38000-25/DRI MACK C"}}, {"model": "reversion.version", "pk": 5678, "fields": {"revision": 2524, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5679, "fields": {"revision": 2524, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5680, "fields": {"revision": 2524, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5681, "fields": {"revision": 2525, "object_id": "c9c02800-4402-4818-8e69-44bc775fbe80", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c9c02800-4402-4818-8e69-44bc775fbe80\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.913Z\", \"registration\": \"6d3ffe0c-60ea-42ef-8bab-82c822f3f8d6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI THOM A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andrew Thompson - Well Driller : 38000-25/DRI THOM A"}}, {"model": "reversion.version", "pk": 5682, "fields": {"revision": 2525, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5683, "fields": {"revision": 2525, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5684, "fields": {"revision": 2525, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5685, "fields": {"revision": 2526, "object_id": "c9cfbe4d-fd90-493b-bf80-e5fee355f3b9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"c9cfbe4d-fd90-493b-bf80-e5fee355f3b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.918Z\", \"registration\": \"3725bec0-e294-4657-a407-a537e0de7d4c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SKIN N\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/1025515 - 139185A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-03\", \"application_outcome_notification_date\": \"2013-06-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Nick Skinner - Well Driller : 38000-25/DRI SKIN N"}}, {"model": "reversion.version", "pk": 5686, "fields": {"revision": 2526, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5687, "fields": {"revision": 2526, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5688, "fields": {"revision": 2526, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5689, "fields": {"revision": 2527, "object_id": "ca1b8260-bc0d-43b8-be7f-203b27c91a9e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ca1b8260-bc0d-43b8-be7f-203b27c91a9e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.924Z\", \"registration\": \"a1b1dd78-a98d-4d87-840d-e5b9ff298ab0\", \"subactivity\": \"PUMPINST\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-25\", \"application_outcome_notification_date\": \"2005-08-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan James - Pump Installer : None"}}, {"model": "reversion.version", "pk": 5690, "fields": {"revision": 2527, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5691, "fields": {"revision": 2527, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5692, "fields": {"revision": 2527, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5693, "fields": {"revision": 2528, "object_id": "ca81aaad-763e-4c5e-ba63-da3d711435f8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ca81aaad-763e-4c5e-ba63-da3d711435f8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.929Z\", \"registration\": \"08b0ab1d-ca14-47ee-84f4-6dfe17ae8401\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FALL R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roy Fallon - Well Driller : 38000-25/DRI FALL R"}}, {"model": "reversion.version", "pk": 5694, "fields": {"revision": 2528, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5695, "fields": {"revision": 2528, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5696, "fields": {"revision": 2528, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5697, "fields": {"revision": 2529, "object_id": "caa932ca-e2ba-4113-8646-37670fa26fb5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"caa932ca-e2ba-4113-8646-37670fa26fb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.935Z\", \"registration\": \"0d485503-0ea7-48b3-95c4-d12ae5f674ac\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PARN D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrin Parnell - Pump Installer : 38000-25/PUMP PARN D"}}, {"model": "reversion.version", "pk": 5698, "fields": {"revision": 2529, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5699, "fields": {"revision": 2529, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5700, "fields": {"revision": 2529, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5701, "fields": {"revision": 2530, "object_id": "cab78199-8cd3-47d3-b24f-71fa16e68308", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cab78199-8cd3-47d3-b24f-71fa16e68308\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.941Z\", \"registration\": \"f57a8296-1946-4001-9f0c-19823c5bbd76\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCRA G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg McRae - Pump Installer : 38000-25/PUMP MCRA G"}}, {"model": "reversion.version", "pk": 5702, "fields": {"revision": 2530, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5703, "fields": {"revision": 2530, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5704, "fields": {"revision": 2530, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5705, "fields": {"revision": 2531, "object_id": "cab85a9a-d3c2-4d8a-b33e-6e4418f38160", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cab85a9a-d3c2-4d8a-b33e-6e4418f38160\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.946Z\", \"registration\": \"d3e43b2f-9594-4ba6-bbe2-ee003e8c87e9\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SOUD G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-06\", \"application_outcome_notification_date\": \"2006-03-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory Sound - Well Driller : 38000-25/DRI SOUD G"}}, {"model": "reversion.version", "pk": 5706, "fields": {"revision": 2531, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5707, "fields": {"revision": 2531, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5708, "fields": {"revision": 2531, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5709, "fields": {"revision": 2532, "object_id": "cb1da39a-040c-4b7d-b3b0-893cb1c8adae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cb1da39a-040c-4b7d-b3b0-893cb1c8adae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.952Z\", \"registration\": \"4a4a61dd-a44d-4395-8686-1eb8fe434459\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MOBE C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clarence Moberg - Well Driller : 38000-25/DRI MOBE C"}}, {"model": "reversion.version", "pk": 5710, "fields": {"revision": 2532, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5711, "fields": {"revision": 2532, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5712, "fields": {"revision": 2532, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5713, "fields": {"revision": 2533, "object_id": "cb3dc5d1-d03b-421d-b354-e67f42c8971f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cb3dc5d1-d03b-421d-b354-e67f42c8971f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.957Z\", \"registration\": \"200013a0-2b3d-40ed-9d5d-36cc787e80b8\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI TEDF M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Tedford - Well Driller : 38000-25/DRI TEDF M"}}, {"model": "reversion.version", "pk": 5714, "fields": {"revision": 2533, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5715, "fields": {"revision": 2533, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5716, "fields": {"revision": 2533, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5717, "fields": {"revision": 2534, "object_id": "cbc73809-d2c2-4627-97dd-4f7b41042744", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cbc73809-d2c2-4627-97dd-4f7b41042744\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.963Z\", \"registration\": \"b4498c92-4e8f-427e-959f-224e7b8265df\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PRUD R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randal Pruden - Well Driller : 38000-25/DRI PRUD R"}}, {"model": "reversion.version", "pk": 5718, "fields": {"revision": 2534, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5719, "fields": {"revision": 2534, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5720, "fields": {"revision": 2534, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5721, "fields": {"revision": 2535, "object_id": "cbd2e271-fba3-40c5-b4b7-76dee55569b7", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cbd2e271-fba3-40c5-b4b7-76dee55569b7\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.968Z\", \"registration\": \"3f196ab1-8493-4f2c-bdeb-edaaacf33584\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SOVD T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Terry Sovdi - Well Driller : 38000-25/DRI SOVD T"}}, {"model": "reversion.version", "pk": 5722, "fields": {"revision": 2535, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5723, "fields": {"revision": 2535, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5724, "fields": {"revision": 2535, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5725, "fields": {"revision": 2536, "object_id": "cc3cfc1f-2416-4e35-abca-d10ce42f1f9f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cc3cfc1f-2416-4e35-abca-d10ce42f1f9f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.974Z\", \"registration\": \"4e7a2e25-bd12-4978-a1be-10979948d9e5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP VAND J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Vanderkemp - Pump Installer : 38000-25/PUMP VAND J"}}, {"model": "reversion.version", "pk": 5726, "fields": {"revision": 2536, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5727, "fields": {"revision": 2536, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5728, "fields": {"revision": 2536, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5729, "fields": {"revision": 2537, "object_id": "cca7b835-001d-4472-b8bb-bf8f977316e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cca7b835-001d-4472-b8bb-bf8f977316e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.980Z\", \"registration\": \"9aa6c6d9-2296-4424-98b0-0b54c249da47\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP ROGE C\", \"proof_of_age\": null, \"registrar_notes\": \"Most recently Rogers Pump Solutions. Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-22\", \"application_outcome_notification_date\": \"2005-04-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Charles Rogers - Pump Installer : 38000-25/PUMP ROGE C"}}, {"model": "reversion.version", "pk": 5730, "fields": {"revision": 2537, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5731, "fields": {"revision": 2537, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5732, "fields": {"revision": 2537, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5733, "fields": {"revision": 2538, "object_id": "ccd20a0d-b9fb-45db-b70d-50279058f105", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ccd20a0d-b9fb-45db-b70d-50279058f105\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.985Z\", \"registration\": \"e3eec2c0-e20e-48dc-907b-b0e82e44d38e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BERN L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-09\", \"application_outcome_notification_date\": \"2006-01-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lorne Bernard - Pump Installer : 38000-25/PUMP BERN L"}}, {"model": "reversion.version", "pk": 5734, "fields": {"revision": 2538, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5735, "fields": {"revision": 2538, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5736, "fields": {"revision": 2538, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5737, "fields": {"revision": 2539, "object_id": "ccdc579a-1eb9-4b8b-a4f3-b10676bf62ac", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ccdc579a-1eb9-4b8b-a4f3-b10676bf62ac\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.991Z\", \"registration\": \"6376d13d-7b24-43dc-98d9-3b641aeeebef\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BRAN L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Luciano Brancato - Well Driller : 38000-25/DRI BRAN L"}}, {"model": "reversion.version", "pk": 5738, "fields": {"revision": 2539, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5739, "fields": {"revision": 2539, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5740, "fields": {"revision": 2539, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5741, "fields": {"revision": 2540, "object_id": "ccf059e0-60b0-4cd6-aed1-9226069d47ec", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ccf059e0-60b0-4cd6-aed1-9226069d47ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.997Z\", \"registration\": \"28c4ae7a-410a-4098-9ae6-2d04d7fd2e82\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI MART E\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00006-GN-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-08-14\", \"application_outcome_notification_date\": \"2017-08-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ethan Martin - Well Driller : 38000-25/DRI MART E"}}, {"model": "reversion.version", "pk": 5742, "fields": {"revision": 2540, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5743, "fields": {"revision": 2540, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5744, "fields": {"revision": 2540, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 5745, "fields": {"revision": 2541, "object_id": "cd26365f-347d-4220-a0b9-345bc36c7c11", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cd26365f-347d-4220-a0b9-345bc36c7c11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.003Z\", \"registration\": \"333444ad-5540-45ab-be44-e0f71efb1dfd\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WALL J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Wallace - Well Driller : 38000-25/DRI WALL J"}}, {"model": "reversion.version", "pk": 5746, "fields": {"revision": 2541, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5747, "fields": {"revision": 2541, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5748, "fields": {"revision": 2541, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5749, "fields": {"revision": 2542, "object_id": "cd31f90a-f34b-4854-a807-a19635d45ab4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cd31f90a-f34b-4854-a807-a19635d45ab4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.008Z\", \"registration\": \"f9906746-eba4-4a94-9a2f-20e60d1f55d9\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOUL G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-16\", \"application_outcome_notification_date\": \"2004-11-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Greg Boulton - Well Driller : 38000-25/DRI BOUL G"}}, {"model": "reversion.version", "pk": 5750, "fields": {"revision": 2542, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5751, "fields": {"revision": 2542, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5752, "fields": {"revision": 2542, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5753, "fields": {"revision": 2543, "object_id": "cd531902-96e4-47e4-8617-43c4b2abee39", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cd531902-96e4-47e4-8617-43c4b2abee39\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.014Z\", \"registration\": \"678ccab1-eebc-46ae-89d5-c015539b1109\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI OTTO D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Otto - Well Driller : 38000-25/DRI OTTO D"}}, {"model": "reversion.version", "pk": 5754, "fields": {"revision": 2543, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5755, "fields": {"revision": 2543, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5756, "fields": {"revision": 2543, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5757, "fields": {"revision": 2544, "object_id": "cd595173-f7c2-4dfb-bd86-bc5d1727b62a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cd595173-f7c2-4dfb-bd86-bc5d1727b62a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.019Z\", \"registration\": \"e3851f31-1568-4cfa-a010-801cdcd2d72c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI NETR D\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-12\", \"application_outcome_notification_date\": \"2006-01-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Netrefa - Well Driller : 38000-25/DRI NETR D"}}, {"model": "reversion.version", "pk": 5758, "fields": {"revision": 2544, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5759, "fields": {"revision": 2544, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5760, "fields": {"revision": 2544, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5761, "fields": {"revision": 2545, "object_id": "cd9bff0e-9c6c-4e12-81b8-60a3368ba1ec", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cd9bff0e-9c6c-4e12-81b8-60a3368ba1ec\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.025Z\", \"registration\": \"01893320-4045-4532-bf8d-615ee739e5e5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CHAM D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Chamberlayne - Well Driller : 38000-25/DRI CHAM D"}}, {"model": "reversion.version", "pk": 5762, "fields": {"revision": 2545, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5763, "fields": {"revision": 2545, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5764, "fields": {"revision": 2545, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5765, "fields": {"revision": 2546, "object_id": "cda3d30a-2a72-4456-a487-995a0e7a3a45", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cda3d30a-2a72-4456-a487-995a0e7a3a45\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.031Z\", \"registration\": \"7ce85fdc-a857-41b2-9c24-21e98e1f2f43\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MYRA C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/168174-76443A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-01-06\", \"application_outcome_notification_date\": \"2015-01-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cecil Myram - Well Driller : 38000-25/DRI MYRA C"}}, {"model": "reversion.version", "pk": 5766, "fields": {"revision": 2546, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5767, "fields": {"revision": 2546, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5768, "fields": {"revision": 2546, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5769, "fields": {"revision": 2547, "object_id": "cda95853-9821-4cf3-baef-3be1cfc155e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cda95853-9821-4cf3-baef-3be1cfc155e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.037Z\", \"registration\": \"5e946a02-a1d8-44cf-8622-9e6bb81e25d5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BUMF T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Troy Bumford - Pump Installer : 38000-25/PUMP BUMF T"}}, {"model": "reversion.version", "pk": 5770, "fields": {"revision": 2547, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5771, "fields": {"revision": 2547, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5772, "fields": {"revision": 2547, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5773, "fields": {"revision": 2548, "object_id": "cdad8d9e-b979-42a2-be36-6e4b3530ce64", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cdad8d9e-b979-42a2-be36-6e4b3530ce64\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.042Z\", \"registration\": \"01fef64c-9d6f-465a-8f0d-33a9eaded25a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI JONE L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lewis Jones - Well Driller : 38000-25/DRI JONE L"}}, {"model": "reversion.version", "pk": 5774, "fields": {"revision": 2548, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5775, "fields": {"revision": 2548, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5776, "fields": {"revision": 2548, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5777, "fields": {"revision": 2549, "object_id": "ce78353a-5d5c-4fd3-86c1-22af716bf9b5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ce78353a-5d5c-4fd3-86c1-22af716bf9b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.048Z\", \"registration\": \"e24cf686-8410-494e-92ad-aaaf88bd1b5e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WEST J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-10\", \"application_outcome_notification_date\": \"2005-02-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Weston - Well Driller : 38000-25/DRI WEST J"}}, {"model": "reversion.version", "pk": 5778, "fields": {"revision": 2549, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5779, "fields": {"revision": 2549, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5780, "fields": {"revision": 2549, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5781, "fields": {"revision": 2550, "object_id": "ce865a8d-133d-4e2c-9f83-cf0cf58070fb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ce865a8d-133d-4e2c-9f83-cf0cf58070fb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.053Z\", \"registration\": \"db2dfb75-b3da-40f6-9129-77674a8b96a6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STON S\", \"proof_of_age\": null, \"registrar_notes\": \"(867) 536-2009 (call first). Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Stone - Well Driller : 38000-25/DRI STON S"}}, {"model": "reversion.version", "pk": 5782, "fields": {"revision": 2550, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5783, "fields": {"revision": 2550, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5784, "fields": {"revision": 2550, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5785, "fields": {"revision": 2551, "object_id": "cf2e577b-9a55-4785-a7a8-0ed1263d1dd5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cf2e577b-9a55-4785-a7a8-0ed1263d1dd5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.059Z\", \"registration\": \"edd9e82e-8480-4c50-8d07-fbd2ba561cb5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BLAN G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-11-15\", \"application_outcome_notification_date\": \"2004-11-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garfield Bland - Well Driller : 38000-25/DRI BLAN G"}}, {"model": "reversion.version", "pk": 5786, "fields": {"revision": 2551, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5787, "fields": {"revision": 2551, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5788, "fields": {"revision": 2551, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5789, "fields": {"revision": 2552, "object_id": "cfdc484b-4920-4030-b15e-277ae4753e16", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"cfdc484b-4920-4030-b15e-277ae4753e16\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.064Z\", \"registration\": \"89333a3e-500f-4843-b2c7-5b16e81189d2\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CORL P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Corley - Well Driller : 38000-25/DRI CORL P"}}, {"model": "reversion.version", "pk": 5790, "fields": {"revision": 2552, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5791, "fields": {"revision": 2552, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5792, "fields": {"revision": 2552, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5793, "fields": {"revision": 2553, "object_id": "d00c3458-1a9f-4818-ba90-c1f9b27831ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d00c3458-1a9f-4818-ba90-c1f9b27831ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.070Z\", \"registration\": \"a5d040e4-a830-4280-b306-e17f2aafa4c0\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WIEB B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0010-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Wiebe - Well Driller : 38000-25/DRI WIEB B"}}, {"model": "reversion.version", "pk": 5794, "fields": {"revision": 2553, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5795, "fields": {"revision": 2553, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5796, "fields": {"revision": 2553, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5797, "fields": {"revision": 2554, "object_id": "d03ef160-8330-45c4-a0f8-afd5d36ce76c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d03ef160-8330-45c4-a0f8-afd5d36ce76c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.076Z\", \"registration\": \"f34fe6e0-584c-47cb-8e8e-58a445822ebc\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BERN L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-09\", \"application_outcome_notification_date\": \"2006-01-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lorne Bernard - Well Driller : 38000-25/DRI BERN L"}}, {"model": "reversion.version", "pk": 5798, "fields": {"revision": 2554, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5799, "fields": {"revision": 2554, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5800, "fields": {"revision": 2554, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5801, "fields": {"revision": 2555, "object_id": "d0493521-f344-4c15-8860-53b666e95035", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d0493521-f344-4c15-8860-53b666e95035\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.081Z\", \"registration\": \"d9cd8f14-a80a-4d36-aeb7-c91051db64e2\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOLA M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-25\", \"application_outcome_notification_date\": \"2006-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Bolan - Well Driller : 38000-25/DRI BOLA M"}}, {"model": "reversion.version", "pk": 5802, "fields": {"revision": 2555, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5803, "fields": {"revision": 2555, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5804, "fields": {"revision": 2555, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5805, "fields": {"revision": 2556, "object_id": "d0680bf9-56ee-4376-ad2a-3ea60496be42", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d0680bf9-56ee-4376-ad2a-3ea60496be42\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.087Z\", \"registration\": \"1cb2803f-b77f-4f40-8334-afb2768df6dd\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NELS R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-03\", \"application_outcome_notification_date\": \"2005-05-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Nelson - Pump Installer : 38000-25/PUMP NELS R"}}, {"model": "reversion.version", "pk": 5806, "fields": {"revision": 2556, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5807, "fields": {"revision": 2556, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5808, "fields": {"revision": 2556, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5809, "fields": {"revision": 2557, "object_id": "d06898dc-770f-45ff-b76a-1a8cba68b406", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d06898dc-770f-45ff-b76a-1a8cba68b406\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.092Z\", \"registration\": \"13cd2a52-4312-4329-8502-a0defcf1b6d3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STAN D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Stanvick - Well Driller : 38000-25/DRI STAN D"}}, {"model": "reversion.version", "pk": 5810, "fields": {"revision": 2557, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5811, "fields": {"revision": 2557, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5812, "fields": {"revision": 2557, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5813, "fields": {"revision": 2558, "object_id": "d090b5f2-dbb3-41ea-a6d9-54b542ef9f07", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d090b5f2-dbb3-41ea-a6d9-54b542ef9f07\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.099Z\", \"registration\": \"a1412182-4373-4562-83ff-f7d0cceb1050\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI DOBS C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Cory Dobson - Well Driller : 38000-25/DRI DOBS C"}}, {"model": "reversion.version", "pk": 5814, "fields": {"revision": 2558, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5815, "fields": {"revision": 2558, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5816, "fields": {"revision": 2558, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5817, "fields": {"revision": 2559, "object_id": "d0b05eea-3b0f-4c09-b57e-e038a1034752", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d0b05eea-3b0f-4c09-b57e-e038a1034752\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.105Z\", \"registration\": \"0c1b5c39-ea83-4505-8a9b-a11d0a2dac59\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TEIC B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Teichroeb - Pump Installer : 38000-25/PUMP TEIC B"}}, {"model": "reversion.version", "pk": 5818, "fields": {"revision": 2559, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5819, "fields": {"revision": 2559, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5820, "fields": {"revision": 2559, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5821, "fields": {"revision": 2560, "object_id": "d0c59a54-efe9-41c6-b3d6-0269b2b2bbda", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d0c59a54-efe9-41c6-b3d6-0269b2b2bbda\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.111Z\", \"registration\": \"cf00939c-0ac5-4236-861d-07209cdc2b62\", \"subactivity\": \"GEOTECH\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William John Williams - Well Driller : None"}}, {"model": "reversion.version", "pk": 5822, "fields": {"revision": 2560, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5823, "fields": {"revision": 2560, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5824, "fields": {"revision": 2560, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5825, "fields": {"revision": 2561, "object_id": "d13bfd72-59f2-435a-bfde-09feb4b0702f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d13bfd72-59f2-435a-bfde-09feb4b0702f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.117Z\", \"registration\": \"a8b6c219-e740-4434-a073-f23c84a13856\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MART K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelvin Marte - Well Driller : 38000-25/DRI MART K"}}, {"model": "reversion.version", "pk": 5826, "fields": {"revision": 2561, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5827, "fields": {"revision": 2561, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5828, "fields": {"revision": 2561, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5829, "fields": {"revision": 2562, "object_id": "d15dee61-49ab-49e1-853f-54bc6228756c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d15dee61-49ab-49e1-853f-54bc6228756c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.123Z\", \"registration\": \"404b69a6-283f-4ad7-a011-f646223c3edd\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MACK J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joe MacKenzie - Well Driller : 38000-25/DRI MACK J"}}, {"model": "reversion.version", "pk": 5830, "fields": {"revision": 2562, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5831, "fields": {"revision": 2562, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5832, "fields": {"revision": 2562, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5833, "fields": {"revision": 2563, "object_id": "d19a5826-a07b-4a7d-8eee-1ec547b86fbb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d19a5826-a07b-4a7d-8eee-1ec547b86fbb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.129Z\", \"registration\": \"32ba06b9-8119-4109-80bb-28a56efa5d1a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI DWYE B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-09\", \"application_outcome_notification_date\": \"2016-02-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bradley Dwyer - Well Driller : 38000-25/DRI DWYE B"}}, {"model": "reversion.version", "pk": 5834, "fields": {"revision": 2563, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5835, "fields": {"revision": 2563, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5836, "fields": {"revision": 2563, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5837, "fields": {"revision": 2564, "object_id": "d1c5c4b4-4358-42ac-8d84-bb46de408d15", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d1c5c4b4-4358-42ac-8d84-bb46de408d15\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.135Z\", \"registration\": \"9f94a481-3901-4c87-95b8-e01060c57633\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STEW B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Stewart - Well Driller : 38000-25/DRI STEW B"}}, {"model": "reversion.version", "pk": 5838, "fields": {"revision": 2564, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5839, "fields": {"revision": 2564, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5840, "fields": {"revision": 2564, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5841, "fields": {"revision": 2565, "object_id": "d2594af6-3639-4429-a106-1a39b7cc45aa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d2594af6-3639-4429-a106-1a39b7cc45aa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.140Z\", \"registration\": \"77d1e652-61e5-4cee-b4df-e133fe206cbe\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HOCK M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Miles Hock - Well Driller : 38000-25/DRI HOCK M"}}, {"model": "reversion.version", "pk": 5842, "fields": {"revision": 2565, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5843, "fields": {"revision": 2565, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5844, "fields": {"revision": 2565, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5845, "fields": {"revision": 2566, "object_id": "d28695fa-803e-457e-b90a-e638a94d0fdc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d28695fa-803e-457e-b90a-e638a94d0fdc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.146Z\", \"registration\": \"dc9ac37c-8146-4ace-81ba-35d49ec7140c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP VANL C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-07\", \"application_outcome_notification_date\": \"2005-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Curtis Vanlerberg - Pump Installer : 38000-25/PUMP VANL C"}}, {"model": "reversion.version", "pk": 5846, "fields": {"revision": 2566, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5847, "fields": {"revision": 2566, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5848, "fields": {"revision": 2566, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5849, "fields": {"revision": 2567, "object_id": "d28e58c9-0eb4-4af6-b35f-2616a4964cb5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d28e58c9-0eb4-4af6-b35f-2616a4964cb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.151Z\", \"registration\": \"3f439fda-9623-486b-b576-b257db7d7bf4\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI QUIN C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/876523-48135A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-06\", \"application_outcome_notification_date\": \"2010-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Quinlan - Well Driller : 38000-25/DRI QUIN C"}}, {"model": "reversion.version", "pk": 5850, "fields": {"revision": 2567, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5851, "fields": {"revision": 2567, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5852, "fields": {"revision": 2567, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5853, "fields": {"revision": 2568, "object_id": "d28fbb16-4c11-4af7-96ad-84f841f2463b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d28fbb16-4c11-4af7-96ad-84f841f2463b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.157Z\", \"registration\": \"a5450948-d814-4231-90b9-bce97f25a2f8\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI RICH W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Richard - Well Driller : 38000-25/DRI RICH W"}}, {"model": "reversion.version", "pk": 5854, "fields": {"revision": 2568, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5855, "fields": {"revision": 2568, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5856, "fields": {"revision": 2568, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5857, "fields": {"revision": 2569, "object_id": "d2cb8f30-8594-4cce-9db1-3828108f735c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d2cb8f30-8594-4cce-9db1-3828108f735c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.162Z\", \"registration\": \"801f9da2-3c73-48a5-9e9e-91463d720c6e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI VLCH J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0007-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-25\", \"application_outcome_notification_date\": \"2005-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Vlchek - Well Driller : 38000-25/DRI VLCH J"}}, {"model": "reversion.version", "pk": 5858, "fields": {"revision": 2569, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5859, "fields": {"revision": 2569, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5860, "fields": {"revision": 2569, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5861, "fields": {"revision": 2570, "object_id": "d2e1ed7b-8e26-44e7-8e1d-4a19954e7789", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d2e1ed7b-8e26-44e7-8e1d-4a19954e7789\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.168Z\", \"registration\": \"96a7d4fa-5a22-488d-9e63-b0904b4b7556\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI TOML D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-11\", \"application_outcome_notification_date\": \"2005-10-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek Tomlinson - Well Driller : 38000-25/DRI TOML D"}}, {"model": "reversion.version", "pk": 5862, "fields": {"revision": 2570, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5863, "fields": {"revision": 2570, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5864, "fields": {"revision": 2570, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5865, "fields": {"revision": 2571, "object_id": "d2f63475-b37d-4db0-8203-a231fc5e07ef", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d2f63475-b37d-4db0-8203-a231fc5e07ef\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.174Z\", \"registration\": \"f48a709f-008d-439f-90fa-e408df68dfb4\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ANDE R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00002-GN-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-27\", \"application_outcome_notification_date\": \"2017-06-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Anderson - Well Driller : 38000-25/DRI ANDE R"}}, {"model": "reversion.version", "pk": 5866, "fields": {"revision": 2571, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5867, "fields": {"revision": 2571, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5868, "fields": {"revision": 2571, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 5869, "fields": {"revision": 2572, "object_id": "d31d73b4-0cea-40d7-98f1-e49db403055a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d31d73b4-0cea-40d7-98f1-e49db403055a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.179Z\", \"registration\": \"ebaa4fa7-a14c-43f1-acc0-5a0c41d2027f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI THOM D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00023-WW-02; GWDT-2002-092\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-01\", \"application_outcome_notification_date\": \"2005-02-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Thompson - Well Driller : 38000-25/DRI THOM D"}}, {"model": "reversion.version", "pk": 5870, "fields": {"revision": 2572, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5871, "fields": {"revision": 2572, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5872, "fields": {"revision": 2572, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5873, "fields": {"revision": 2573, "object_id": "d342157b-2143-4951-8bcb-829b5f76cd19", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d342157b-2143-4951-8bcb-829b5f76cd19\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.185Z\", \"registration\": \"2128857d-cb8f-44c6-aae6-0ab08012e54a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI KREN T\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016. Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Krenbrink - Well Driller : 38000-25/DRI KREN T"}}, {"model": "reversion.version", "pk": 5874, "fields": {"revision": 2573, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5875, "fields": {"revision": 2573, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5876, "fields": {"revision": 2573, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5877, "fields": {"revision": 2574, "object_id": "d34d013c-54ab-4ebe-88e9-2b60d1d62243", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d34d013c-54ab-4ebe-88e9-2b60d1d62243\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:02.747Z\", \"registration\": \"7a46c5d8-d4ca-47bd-b713-31dab8a1bf71\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LOFT M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"035-0/1147933\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-05-31\", \"application_outcome_notification_date\": \"2017-05-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark Loftus - Well Driller : 38000-25/DRI LOFT M"}}, {"model": "reversion.version", "pk": 5878, "fields": {"revision": 2574, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5879, "fields": {"revision": 2574, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5880, "fields": {"revision": 2574, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 5881, "fields": {"revision": 2575, "object_id": "d397ee7c-809d-48f8-969a-acb36179131f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d397ee7c-809d-48f8-969a-acb36179131f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.191Z\", \"registration\": \"c86c05e8-4904-42fb-a020-9ba9e9740b75\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SMIT K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ken Smithson - Well Driller : 38000-25/DRI SMIT K"}}, {"model": "reversion.version", "pk": 5882, "fields": {"revision": 2575, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5883, "fields": {"revision": 2575, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5884, "fields": {"revision": 2575, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5885, "fields": {"revision": 2576, "object_id": "d3e68ef3-1406-4784-9507-269a95efdf3c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d3e68ef3-1406-4784-9507-269a95efdf3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.196Z\", \"registration\": \"e4316f20-7406-48de-89d8-95bcf2107142\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI OSTE T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-11\", \"application_outcome_notification_date\": \"2005-02-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Timothy Oster - Well Driller : 38000-25/DRI OSTE T"}}, {"model": "reversion.version", "pk": 5886, "fields": {"revision": 2576, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5887, "fields": {"revision": 2576, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5888, "fields": {"revision": 2576, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5889, "fields": {"revision": 2577, "object_id": "d44668e7-7fb5-42e9-9792-993e973c191a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d44668e7-7fb5-42e9-9792-993e973c191a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.202Z\", \"registration\": \"3725bec0-e294-4657-a407-a537e0de7d4c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SKIN N\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/1025515 - 139185A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-03\", \"application_outcome_notification_date\": \"2013-06-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Nick Skinner - Well Driller : 38000-25/DRI SKIN N"}}, {"model": "reversion.version", "pk": 5890, "fields": {"revision": 2577, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5891, "fields": {"revision": 2577, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5892, "fields": {"revision": 2577, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5893, "fields": {"revision": 2578, "object_id": "d447808c-0f4d-474f-9382-cf8c0a53ed05", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d447808c-0f4d-474f-9382-cf8c0a53ed05\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.208Z\", \"registration\": \"613901e8-6d84-43e0-b2b4-117058bd679e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NETR D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Netrefa - Pump Installer : 38000-25/PUMP NETR D"}}, {"model": "reversion.version", "pk": 5894, "fields": {"revision": 2578, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5895, "fields": {"revision": 2578, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5896, "fields": {"revision": 2578, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5897, "fields": {"revision": 2579, "object_id": "d45432f9-916b-43c8-9bfb-19d04328f316", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d45432f9-916b-43c8-9bfb-19d04328f316\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.213Z\", \"registration\": \"4bdf54e7-697d-4f5a-8089-6b9444523e3d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SHIN S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-05-03\", \"application_outcome_notification_date\": \"2011-05-03\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Sean Shingler - Pump Installer : 38000-25/PUMP SHIN S"}}, {"model": "reversion.version", "pk": 5898, "fields": {"revision": 2579, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5899, "fields": {"revision": 2579, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5900, "fields": {"revision": 2579, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5901, "fields": {"revision": 2580, "object_id": "d45d1c33-fdfb-45af-b787-d249a96fcb07", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d45d1c33-fdfb-45af-b787-d249a96fcb07\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.219Z\", \"registration\": \"07ccd1b2-a0bb-40de-b622-509e901f6f8e\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI DYCK B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00001-GN-17\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-09\", \"application_outcome_notification_date\": \"2017-06-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brennan Dyck - Well Driller : 38000-25/DRI DYCK B"}}, {"model": "reversion.version", "pk": 5902, "fields": {"revision": 2580, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5903, "fields": {"revision": 2580, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5904, "fields": {"revision": 2580, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 5905, "fields": {"revision": 2581, "object_id": "d4742f57-7aa7-48af-9205-228de957fb37", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d4742f57-7aa7-48af-9205-228de957fb37\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.225Z\", \"registration\": \"da64cbb6-68c7-406f-a79a-fbac8c0f0091\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ABER R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Abercrombie - Well Driller : 38000-25/DRI ABER R"}}, {"model": "reversion.version", "pk": 5906, "fields": {"revision": 2581, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5907, "fields": {"revision": 2581, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5908, "fields": {"revision": 2581, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5909, "fields": {"revision": 2582, "object_id": "d513fdaa-bb42-47e0-bdcd-b387ac837e32", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d513fdaa-bb42-47e0-bdcd-b387ac837e32\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.230Z\", \"registration\": \"7182d932-4c0a-4542-875a-cfebc80d4198\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HAIN D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Duncan Haines - Pump Installer : 38000-25/PUMP HAIN D"}}, {"model": "reversion.version", "pk": 5910, "fields": {"revision": 2582, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5911, "fields": {"revision": 2582, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5912, "fields": {"revision": 2582, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5913, "fields": {"revision": 2583, "object_id": "d5399701-434c-47e9-9dd1-ad297a9d743a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d5399701-434c-47e9-9dd1-ad297a9d743a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.236Z\", \"registration\": \"db2dfb75-b3da-40f6-9129-77674a8b96a6\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STON S\", \"proof_of_age\": null, \"registrar_notes\": \"(867) 536-2009 (call first)\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-08\", \"application_outcome_notification_date\": \"2005-03-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Shawn Stone - Well Driller : 38000-25/DRI STON S"}}, {"model": "reversion.version", "pk": 5914, "fields": {"revision": 2583, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5915, "fields": {"revision": 2583, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5916, "fields": {"revision": 2583, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5917, "fields": {"revision": 2584, "object_id": "d544d156-3094-485a-9e99-3394ea7cfcc0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d544d156-3094-485a-9e99-3394ea7cfcc0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.242Z\", \"registration\": \"6bcb902f-6488-44b5-8231-84349bfad7d7\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BARL D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dallas Barlow - Well Driller : 38000-25/DRI BARL D"}}, {"model": "reversion.version", "pk": 5918, "fields": {"revision": 2584, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5919, "fields": {"revision": 2584, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5920, "fields": {"revision": 2584, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5921, "fields": {"revision": 2585, "object_id": "d54ffbd8-13b0-4dc8-9052-04e67f55cb25", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d54ffbd8-13b0-4dc8-9052-04e67f55cb25\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.247Z\", \"registration\": \"801f9da2-3c73-48a5-9e9e-91463d720c6e\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI VLCH J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0007-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-25\", \"application_outcome_notification_date\": \"2005-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Vlchek - Well Driller : 38000-25/DRI VLCH J"}}, {"model": "reversion.version", "pk": 5922, "fields": {"revision": 2585, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5923, "fields": {"revision": 2585, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5924, "fields": {"revision": 2585, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5925, "fields": {"revision": 2586, "object_id": "d5507067-1b07-42ab-b6b8-97479bfe3421", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d5507067-1b07-42ab-b6b8-97479bfe3421\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.253Z\", \"registration\": \"716b037f-5e42-4319-a679-c6c8eb325ca1\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP OAKL D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek Oakley - Pump Installer : 38000-25/PUMP OAKL D"}}, {"model": "reversion.version", "pk": 5926, "fields": {"revision": 2586, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5927, "fields": {"revision": 2586, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5928, "fields": {"revision": 2586, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5929, "fields": {"revision": 2587, "object_id": "d553326d-bfcd-43fc-9edd-7fa6a5bd862f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d553326d-bfcd-43fc-9edd-7fa6a5bd862f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.258Z\", \"registration\": \"c15bf581-daff-4d8e-a6e4-2dfe6e61da15\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MITC D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-22\", \"application_outcome_notification_date\": \"2005-08-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darren Mitchell - Well Driller : 38000-25/DRI MITC D"}}, {"model": "reversion.version", "pk": 5930, "fields": {"revision": 2587, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5931, "fields": {"revision": 2587, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5932, "fields": {"revision": 2587, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5933, "fields": {"revision": 2588, "object_id": "d55ba706-9f02-4eb6-a47a-b23c45381a6d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d55ba706-9f02-4eb6-a47a-b23c45381a6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.264Z\", \"registration\": \"64c052c1-7ef0-4d87-a3dc-51ab65802c12\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI ABER LD\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Abercrombie - Well Driller : 38000-25/DRI ABER LD"}}, {"model": "reversion.version", "pk": 5934, "fields": {"revision": 2588, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5935, "fields": {"revision": 2588, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5936, "fields": {"revision": 2588, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5937, "fields": {"revision": 2589, "object_id": "d58480cf-4009-4757-961f-79fc8373feea", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d58480cf-4009-4757-961f-79fc8373feea\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.269Z\", \"registration\": \"7cb7c1ad-41c3-4688-9b1d-5149cc2a5c0f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI STRI B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-05\", \"application_outcome_notification_date\": \"2006-06-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Strijak - Well Driller : 38000-25/DRI STRI B"}}, {"model": "reversion.version", "pk": 5938, "fields": {"revision": 2589, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5939, "fields": {"revision": 2589, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5940, "fields": {"revision": 2589, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5941, "fields": {"revision": 2590, "object_id": "d75689e8-f5a4-4af6-8d6b-7b90ec86c34d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d75689e8-f5a4-4af6-8d6b-7b90ec86c34d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.275Z\", \"registration\": \"6a7caf24-4d97-4bd8-b775-0c65f01b0464\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MACL S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Steven MacLean - Pump Installer : 38000-25/PUMP MACL S"}}, {"model": "reversion.version", "pk": 5942, "fields": {"revision": 2590, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5943, "fields": {"revision": 2590, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5944, "fields": {"revision": 2590, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5945, "fields": {"revision": 2591, "object_id": "d8083c29-d2ce-46e4-87df-8d57c37ea1b3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d8083c29-d2ce-46e4-87df-8d57c37ea1b3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.281Z\", \"registration\": \"53033840-8565-4a85-a4d1-faf75e9037c7\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BRED P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Breadon - Well Driller : 38000-25/DRI BRED P"}}, {"model": "reversion.version", "pk": 5946, "fields": {"revision": 2591, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5947, "fields": {"revision": 2591, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5948, "fields": {"revision": 2591, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5949, "fields": {"revision": 2592, "object_id": "d898e475-1d59-4358-b40b-39612919ab63", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d898e475-1d59-4358-b40b-39612919ab63\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.287Z\", \"registration\": \"774506f4-782d-4bb1-b354-930ce382a535\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JOHN W\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-26\", \"application_outcome_notification_date\": \"2006-04-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Johnson - Pump Installer : 38000-25/PUMP JOHN W"}}, {"model": "reversion.version", "pk": 5950, "fields": {"revision": 2592, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5951, "fields": {"revision": 2592, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5952, "fields": {"revision": 2592, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5953, "fields": {"revision": 2593, "object_id": "d8c1ec7e-0c2b-47a9-8309-cf557cc33e83", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d8c1ec7e-0c2b-47a9-8309-cf557cc33e83\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.292Z\", \"registration\": \"96805b89-e47b-465d-8a6d-26823d2d37b2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FYFE G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Glen Fyfe - Pump Installer : 38000-25/PUMP FYFE G"}}, {"model": "reversion.version", "pk": 5954, "fields": {"revision": 2593, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5955, "fields": {"revision": 2593, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5956, "fields": {"revision": 2593, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5957, "fields": {"revision": 2594, "object_id": "d8d93b99-6f3f-4595-9f92-2ddec883f153", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d8d93b99-6f3f-4595-9f92-2ddec883f153\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.298Z\", \"registration\": \"a5d040e4-a830-4280-b306-e17f2aafa4c0\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WIEB B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0010-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Wiebe - Well Driller : 38000-25/DRI WIEB B"}}, {"model": "reversion.version", "pk": 5958, "fields": {"revision": 2594, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5959, "fields": {"revision": 2594, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5960, "fields": {"revision": 2594, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5961, "fields": {"revision": 2595, "object_id": "d92dbb23-911a-4aa7-9e64-286576454de3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d92dbb23-911a-4aa7-9e64-286576454de3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.303Z\", \"registration\": \"138b90cf-b6ba-43b8-82cb-cc26bbd7116a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BANK K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VA2732\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-15\", \"application_outcome_notification_date\": \"2016-02-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Banks - Well Driller : 38000-25/DRI BANK K"}}, {"model": "reversion.version", "pk": 5962, "fields": {"revision": 2595, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5963, "fields": {"revision": 2595, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5964, "fields": {"revision": 2595, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5965, "fields": {"revision": 2596, "object_id": "d9b87ba4-a77f-4558-8c71-635e9b30c872", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9b87ba4-a77f-4558-8c71-635e9b30c872\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.309Z\", \"registration\": \"532de9fd-1ff1-4ce8-81f8-7d150bb9a11f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HOEC T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-152\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-05-05\", \"application_outcome_notification_date\": \"2008-05-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Timothy Hoechsmann - Well Driller : 38000-25/DRI HOEC T"}}, {"model": "reversion.version", "pk": 5966, "fields": {"revision": 2596, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5967, "fields": {"revision": 2596, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5968, "fields": {"revision": 2596, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5969, "fields": {"revision": 2597, "object_id": "d9c702fc-86fe-49a1-92c9-793b0bb7dae4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9c702fc-86fe-49a1-92c9-793b0bb7dae4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.315Z\", \"registration\": \"a0ca1894-e686-4c86-ab75-d53d4e841816\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HOET R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-09-26\", \"application_outcome_notification_date\": \"2013-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Romain Hoet - Pump Installer : 38000-25/PUMP HOET R"}}, {"model": "reversion.version", "pk": 5970, "fields": {"revision": 2597, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5971, "fields": {"revision": 2597, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5972, "fields": {"revision": 2597, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 5973, "fields": {"revision": 2598, "object_id": "d9c98f43-fec2-4db3-8c28-18fd88355755", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9c98f43-fec2-4db3-8c28-18fd88355755\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.320Z\", \"registration\": \"adb43b01-2019-466f-b776-605ddb2a3417\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WINT S\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-07-22\", \"application_outcome_notification_date\": \"2005-07-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Steven Winthrope - Pump Installer : 38000-25/PUMP WINT S"}}, {"model": "reversion.version", "pk": 5974, "fields": {"revision": 2598, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5975, "fields": {"revision": 2598, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5976, "fields": {"revision": 2598, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5977, "fields": {"revision": 2599, "object_id": "d9d8ebac-dafe-43bf-afed-0c554905ab1a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9d8ebac-dafe-43bf-afed-0c554905ab1a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.326Z\", \"registration\": \"82b29c30-51fa-45a5-8c95-8da3f6c580d8\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GART M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Garthwaite - Pump Installer : 38000-25/PUMP GART M"}}, {"model": "reversion.version", "pk": 5978, "fields": {"revision": 2599, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 5979, "fields": {"revision": 2599, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5980, "fields": {"revision": 2599, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 5981, "fields": {"revision": 2600, "object_id": "d9e66ba0-b9ba-4f90-b2ff-db4feed73c3d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9e66ba0-b9ba-4f90-b2ff-db4feed73c3d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.332Z\", \"registration\": \"01263d8a-a212-487c-8dd0-89a9a0da3105\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GILB J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/951707-4708NQ\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-01-11\", \"application_outcome_notification_date\": \"2011-01-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jonathan Gilbert - Well Driller : 38000-25/DRI GILB J"}}, {"model": "reversion.version", "pk": 5982, "fields": {"revision": 2600, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 5983, "fields": {"revision": 2600, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5984, "fields": {"revision": 2600, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5985, "fields": {"revision": 2601, "object_id": "d9ea6198-6dac-42e5-a6e2-e764f2d21b03", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9ea6198-6dac-42e5-a6e2-e764f2d21b03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.337Z\", \"registration\": \"933f1cc5-53ca-4b0c-8c3a-f30240e91ecb\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PEPI A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-25\", \"application_outcome_notification_date\": \"2006-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alfred Pepin - Well Driller : 38000-25/DRI PEPI A"}}, {"model": "reversion.version", "pk": 5986, "fields": {"revision": 2601, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5987, "fields": {"revision": 2601, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5988, "fields": {"revision": 2601, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5989, "fields": {"revision": 2602, "object_id": "d9fab2d8-868a-4345-a5e0-3852f6c370f6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"d9fab2d8-868a-4345-a5e0-3852f6c370f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.343Z\", \"registration\": \"a8b6c219-e740-4434-a073-f23c84a13856\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MART K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-19\", \"application_outcome_notification_date\": \"2006-04-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelvin Marte - Well Driller : 38000-25/DRI MART K"}}, {"model": "reversion.version", "pk": 5990, "fields": {"revision": 2602, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5991, "fields": {"revision": 2602, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5992, "fields": {"revision": 2602, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5993, "fields": {"revision": 2603, "object_id": "da04d306-6001-4b1b-a078-ffed94860710", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"da04d306-6001-4b1b-a078-ffed94860710\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.349Z\", \"registration\": \"e863888a-3c8b-47f4-88b4-c593b8344ad9\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FIEL L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Larry Field - Well Driller : 38000-25/DRI FIEL L"}}, {"model": "reversion.version", "pk": 5994, "fields": {"revision": 2603, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 5995, "fields": {"revision": 2603, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 5996, "fields": {"revision": 2603, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 5997, "fields": {"revision": 2604, "object_id": "da1c8fcd-ba3d-4bf0-a304-39ca6c7dbefb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"da1c8fcd-ba3d-4bf0-a304-39ca6c7dbefb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.354Z\", \"registration\": \"248b32d4-7ff2-420c-a244-545597e63dcc\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HAYN B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00001-WW-15\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-11-06\", \"application_outcome_notification_date\": \"2015-11-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Haynes - Well Driller : 38000-25/DRI HAYN B"}}, {"model": "reversion.version", "pk": 5998, "fields": {"revision": 2604, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 5999, "fields": {"revision": 2604, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6000, "fields": {"revision": 2604, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6001, "fields": {"revision": 2605, "object_id": "da3d5e71-3f20-4591-b838-f180d89f0ffc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"da3d5e71-3f20-4591-b838-f180d89f0ffc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.360Z\", \"registration\": \"0cb97728-189c-4184-8a75-915f2da211f4\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOMB M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2007-139\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-09-19\", \"application_outcome_notification_date\": \"2007-09-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Bombardier - Well Driller : 38000-25/DRI BOMB M"}}, {"model": "reversion.version", "pk": 6002, "fields": {"revision": 2605, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6003, "fields": {"revision": 2605, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6004, "fields": {"revision": 2605, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6005, "fields": {"revision": 2606, "object_id": "da960f10-a8bb-4cf5-a22b-9b68695e1b0b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"da960f10-a8bb-4cf5-a22b-9b68695e1b0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.365Z\", \"registration\": \"fad967d7-8fe9-4399-821f-ca1f19a41b7d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KRIS G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gunnar Kristensen - Pump Installer : 38000-25/PUMP KRIS G"}}, {"model": "reversion.version", "pk": 6006, "fields": {"revision": 2606, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6007, "fields": {"revision": 2606, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6008, "fields": {"revision": 2606, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6009, "fields": {"revision": 2607, "object_id": "dab0d958-0b58-466e-8786-a8205a8ef517", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dab0d958-0b58-466e-8786-a8205a8ef517\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.371Z\", \"registration\": \"a4281f58-21d2-4c3e-8fee-c7a58f0c0c58\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SMIT D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-149\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-04-20\", \"application_outcome_notification_date\": \"2011-04-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daryl Smith - Well Driller : 38000-25/DRI SMIT D"}}, {"model": "reversion.version", "pk": 6010, "fields": {"revision": 2607, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6011, "fields": {"revision": 2607, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6012, "fields": {"revision": 2607, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6013, "fields": {"revision": 2608, "object_id": "dac6e1ee-c778-4831-a948-e3073bf12126", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dac6e1ee-c778-4831-a948-e3073bf12126\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.377Z\", \"registration\": \"becfc8a8-3261-4aa8-af93-730f7acd3a53\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHI D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0006-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schibli - Well Driller : 38000-25/DRI SCHI D"}}, {"model": "reversion.version", "pk": 6014, "fields": {"revision": 2608, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6015, "fields": {"revision": 2608, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6016, "fields": {"revision": 2608, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6017, "fields": {"revision": 2609, "object_id": "dae31d7a-f845-414e-811f-5a290a28e706", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dae31d7a-f845-414e-811f-5a290a28e706\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.382Z\", \"registration\": \"670e7ec7-0207-48bb-9bd2-ba9152d574ca\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP YEMM RO\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-20\", \"application_outcome_notification_date\": \"2009-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Yemm - Pump Installer : 38000-25/PUMP YEMM RO"}}, {"model": "reversion.version", "pk": 6018, "fields": {"revision": 2609, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6019, "fields": {"revision": 2609, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6020, "fields": {"revision": 2609, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6021, "fields": {"revision": 2610, "object_id": "db115b7d-b498-41af-850f-bc7c43fa8c3f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"db115b7d-b498-41af-850f-bc7c43fa8c3f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.388Z\", \"registration\": \"be5c01df-8b69-46ad-84dd-976a5fb879be\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HOPP B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VB2398\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-06-13\", \"application_outcome_notification_date\": \"2013-06-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bernard Hopper - Well Driller : 38000-25/DRI HOPP B"}}, {"model": "reversion.version", "pk": 6022, "fields": {"revision": 2610, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6023, "fields": {"revision": 2610, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6024, "fields": {"revision": 2610, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6025, "fields": {"revision": 2611, "object_id": "db3142b8-253a-4583-a020-0b7f78413844", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"db3142b8-253a-4583-a020-0b7f78413844\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.394Z\", \"registration\": \"e2a56b93-ae4f-4f1f-9930-27a98d772e12\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TRAE G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gary Traer - Pump Installer : 38000-25/PUMP TRAE G"}}, {"model": "reversion.version", "pk": 6026, "fields": {"revision": 2611, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6027, "fields": {"revision": 2611, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6028, "fields": {"revision": 2611, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6029, "fields": {"revision": 2612, "object_id": "db674712-94c6-4384-8634-c5fd4b76af5e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"db674712-94c6-4384-8634-c5fd4b76af5e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.400Z\", \"registration\": \"ffeaec06-28f0-4455-beed-8e5cc2b1d50c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MISE P\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0031-WW-89\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-09\", \"application_outcome_notification_date\": \"2005-02-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Misek - Well Driller : 38000-25/DRI MISE P"}}, {"model": "reversion.version", "pk": 6030, "fields": {"revision": 2612, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6031, "fields": {"revision": 2612, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6032, "fields": {"revision": 2612, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6033, "fields": {"revision": 2613, "object_id": "db95d458-bf3a-4761-ae35-4d76e7ead81e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"db95d458-bf3a-4761-ae35-4d76e7ead81e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.406Z\", \"registration\": \"3a85e825-a3ef-49ef-8e72-b8faff5670df\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CRAM R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rob Crampton - Well Driller : 38000-25/DRI CRAM R"}}, {"model": "reversion.version", "pk": 6034, "fields": {"revision": 2613, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6035, "fields": {"revision": 2613, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6036, "fields": {"revision": 2613, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6037, "fields": {"revision": 2614, "object_id": "dc4058d0-21b6-4152-844f-1b9d3fa0520a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dc4058d0-21b6-4152-844f-1b9d3fa0520a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.412Z\", \"registration\": \"f6b4ac19-8bc5-4d6a-8719-eb5e9b645a73\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI HORB G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Horbay - Well Driller : 38000-25/DRI HORB G"}}, {"model": "reversion.version", "pk": 6038, "fields": {"revision": 2614, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6039, "fields": {"revision": 2614, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6040, "fields": {"revision": 2614, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6041, "fields": {"revision": 2615, "object_id": "dc641075-c108-433e-8211-badd33557f2f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dc641075-c108-433e-8211-badd33557f2f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.418Z\", \"registration\": \"9db2f8a3-9461-42d6-bed9-3d8c1a9780c8\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SAMI R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Samis - Well Driller : 38000-25/DRI SAMI R"}}, {"model": "reversion.version", "pk": 6042, "fields": {"revision": 2615, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6043, "fields": {"revision": 2615, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6044, "fields": {"revision": 2615, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6045, "fields": {"revision": 2616, "object_id": "dc82e932-3542-449e-9550-96ccbfd57955", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dc82e932-3542-449e-9550-96ccbfd57955\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.423Z\", \"registration\": \"ebaa4fa7-a14c-43f1-acc0-5a0c41d2027f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI THOM D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00023-WW-02; GWDT-2002-092\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-01\", \"application_outcome_notification_date\": \"2005-02-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dennis Thompson - Well Driller : 38000-25/DRI THOM D"}}, {"model": "reversion.version", "pk": 6046, "fields": {"revision": 2616, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6047, "fields": {"revision": 2616, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6048, "fields": {"revision": 2616, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6049, "fields": {"revision": 2617, "object_id": "dcd70dbd-b7fd-432e-9454-dbb564861b7e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dcd70dbd-b7fd-432e-9454-dbb564861b7e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.429Z\", \"registration\": \"535e602f-fd6f-43a8-a54c-933038132530\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FULO E\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ed Fulop - Well Driller : 38000-25/DRI FULO E"}}, {"model": "reversion.version", "pk": 6050, "fields": {"revision": 2617, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6051, "fields": {"revision": 2617, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6052, "fields": {"revision": 2617, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6053, "fields": {"revision": 2618, "object_id": "dd4ede07-fe9b-49c7-a5d8-eb3a02d0cc36", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dd4ede07-fe9b-49c7-a5d8-eb3a02d0cc36\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.434Z\", \"registration\": \"dc993ec3-cd14-4ad4-8c92-0d4f1612205c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MELN G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garry Melnichuk - Pump Installer : 38000-25/PUMP MELN G"}}, {"model": "reversion.version", "pk": 6054, "fields": {"revision": 2618, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6055, "fields": {"revision": 2618, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6056, "fields": {"revision": 2618, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6057, "fields": {"revision": 2619, "object_id": "dd549cd7-0eff-46a8-b510-52484faacf92", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dd549cd7-0eff-46a8-b510-52484faacf92\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.440Z\", \"registration\": \"abe546a2-b739-48f9-aca0-9b96d14591d5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BENS J\", \"proof_of_age\": null, \"registrar_notes\": \"prefers email contact over fax\", \"reason_denied\": null, \"primary_certificate\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"primary_certificate_no\": \"35-J000059C\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-06-19\", \"application_outcome_notification_date\": \"2017-06-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Benson - Well Driller : 38000-25/DRI BENS J"}}, {"model": "reversion.version", "pk": 6058, "fields": {"revision": 2619, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6059, "fields": {"revision": 2619, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6060, "fields": {"revision": 2619, "object_id": "5856eb50-7ea3-45c7-b882-a8863cc36b73", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"5856eb50-7ea3-45c7-b882-a8863cc36b73\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"AB\", \"registries_activity\": \"DRILL\", \"name\": \"Water Well Driller, Alberta Journeyman Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "AB Well Driller Water Well Driller, Alberta Journeyman Certificate"}}, {"model": "reversion.version", "pk": 6061, "fields": {"revision": 2620, "object_id": "ddccb19b-a120-4998-8e15-106d0733f7a2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ddccb19b-a120-4998-8e15-106d0733f7a2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.446Z\", \"registration\": \"b2a6d684-5eb7-4eb2-8f12-f969ec25bfc4\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FOLE D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dan Foley - Pump Installer : 38000-25/PUMP FOLE D"}}, {"model": "reversion.version", "pk": 6062, "fields": {"revision": 2620, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6063, "fields": {"revision": 2620, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6064, "fields": {"revision": 2620, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6065, "fields": {"revision": 2621, "object_id": "ddf98551-23c2-4fad-b7f1-b8606183b403", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ddf98551-23c2-4fad-b7f1-b8606183b403\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.452Z\", \"registration\": \"eddf67d6-b655-430c-911e-402af8778c98\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FAIR N\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"primary_certificate_no\": \"00001-GN-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2017-07-25\", \"application_outcome_notification_date\": \"2017-07-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Nick Fairney - Well Driller : 38000-25/DRI FAIR N"}}, {"model": "reversion.version", "pk": 6066, "fields": {"revision": 2621, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6067, "fields": {"revision": 2621, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6068, "fields": {"revision": 2621, "object_id": "da85087a-9764-410b-908e-b2b65f3dfb48", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"da85087a-9764-410b-908e-b2b65f3dfb48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geotechnical/Environmental Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geotechnical/Environmental Driller Certificate"}}, {"model": "reversion.version", "pk": 6069, "fields": {"revision": 2622, "object_id": "de50ae84-ae3b-40ca-8f48-4770bc31f32f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"de50ae84-ae3b-40ca-8f48-4770bc31f32f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.457Z\", \"registration\": \"42030fd4-50e0-4140-95f0-0c5af1146ad5\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KVIS D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dale Kvisle - Pump Installer : 38000-25/PUMP KVIS D"}}, {"model": "reversion.version", "pk": 6070, "fields": {"revision": 2622, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6071, "fields": {"revision": 2622, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6072, "fields": {"revision": 2622, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6073, "fields": {"revision": 2623, "object_id": "de5cc6fa-aa5a-4a9d-9cbb-280c97328b20", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"de5cc6fa-aa5a-4a9d-9cbb-280c97328b20\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.463Z\", \"registration\": \"83f87e7d-3e3b-4d27-968a-baec9b5f1e24\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LYPK J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-27\", \"application_outcome_notification_date\": \"2006-10-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Lypkie - Well Driller : 38000-25/DRI LYPK J"}}, {"model": "reversion.version", "pk": 6074, "fields": {"revision": 2623, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6075, "fields": {"revision": 2623, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6076, "fields": {"revision": 2623, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6077, "fields": {"revision": 2624, "object_id": "de80e6f4-5705-42b7-a62f-00b34d23acc6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"de80e6f4-5705-42b7-a62f-00b34d23acc6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.469Z\", \"registration\": \"7d2ec4b0-f9b6-481b-8e55-128c6fc86cb3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BOMB D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2005-130\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-06\", \"application_outcome_notification_date\": \"2006-03-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Don Bombardier - Well Driller : 38000-25/DRI BOMB D"}}, {"model": "reversion.version", "pk": 6078, "fields": {"revision": 2624, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6079, "fields": {"revision": 2624, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6080, "fields": {"revision": 2624, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6081, "fields": {"revision": 2625, "object_id": "de9812cf-996d-428a-a0cc-7b86edb20ed8", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"de9812cf-996d-428a-a0cc-7b86edb20ed8\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.475Z\", \"registration\": \"35ab739e-0970-4a66-a26e-8a641d082eb0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BAST R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-31\", \"application_outcome_notification_date\": \"2005-03-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bastiannsen - Pump Installer : 38000-25/PUMP BAST R"}}, {"model": "reversion.version", "pk": 6082, "fields": {"revision": 2625, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6083, "fields": {"revision": 2625, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6084, "fields": {"revision": 2625, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6085, "fields": {"revision": 2626, "object_id": "deb442b1-b61d-4728-b96f-c1ab7a05f4ad", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"deb442b1-b61d-4728-b96f-c1ab7a05f4ad\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.482Z\", \"registration\": \"e1c4e0f4-cb55-4d9f-b18f-63e3c5efd747\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI OPPE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-150\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-05-21\", \"application_outcome_notification_date\": \"2008-05-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Opper - Well Driller : 38000-25/DRI OPPE J"}}, {"model": "reversion.version", "pk": 6086, "fields": {"revision": 2626, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6087, "fields": {"revision": 2626, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6088, "fields": {"revision": 2626, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6089, "fields": {"revision": 2627, "object_id": "df3d5788-2462-4d10-82af-7715091dab52", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"df3d5788-2462-4d10-82af-7715091dab52\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.488Z\", \"registration\": \"7855f881-b8e1-43f5-bc36-bbc239b15ef7\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIND D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Windecker - Well Driller : 38000-25/DRI WIND D"}}, {"model": "reversion.version", "pk": 6090, "fields": {"revision": 2627, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6091, "fields": {"revision": 2627, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6092, "fields": {"revision": 2627, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6093, "fields": {"revision": 2628, "object_id": "df47dfdf-9de5-4eb7-8f36-b12321b1e499", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"df47dfdf-9de5-4eb7-8f36-b12321b1e499\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.494Z\", \"registration\": \"dd2047bf-958b-4e8c-8432-21832d6095a6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HOWE W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-10\", \"application_outcome_notification_date\": \"2005-08-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Howe - Well Driller : 38000-25/DRI HOWE W"}}, {"model": "reversion.version", "pk": 6094, "fields": {"revision": 2628, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6095, "fields": {"revision": 2628, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6096, "fields": {"revision": 2628, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6097, "fields": {"revision": 2629, "object_id": "df4e9c04-89f0-4f1f-a0e9-518c8b04568d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"df4e9c04-89f0-4f1f-a0e9-518c8b04568d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.500Z\", \"registration\": \"2c17e7b3-5c01-4301-8529-c52907c7eccf\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI KURT I\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2011-182\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-05-20\", \"application_outcome_notification_date\": \"2011-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ibrahim Kurtoglu - Well Driller : 38000-25/DRI KURT I"}}, {"model": "reversion.version", "pk": 6098, "fields": {"revision": 2629, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6099, "fields": {"revision": 2629, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6100, "fields": {"revision": 2629, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6101, "fields": {"revision": 2630, "object_id": "df97f9a5-075d-489b-a686-d499b76104bc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"df97f9a5-075d-489b-a686-d499b76104bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.507Z\", \"registration\": \"e668ec6e-c6c2-46dd-b5aa-cfbed0b73d83\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI JANC P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-17\", \"application_outcome_notification_date\": \"2005-10-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Janczukowski - Well Driller : 38000-25/DRI JANC P"}}, {"model": "reversion.version", "pk": 6102, "fields": {"revision": 2630, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6103, "fields": {"revision": 2630, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6104, "fields": {"revision": 2630, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6105, "fields": {"revision": 2631, "object_id": "dfaf9944-0b8a-475d-aaf2-f63366c99ca6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"dfaf9944-0b8a-475d-aaf2-f63366c99ca6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.513Z\", \"registration\": \"138b90cf-b6ba-43b8-82cb-cc26bbd7116a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BANK K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"VA2732\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-02-15\", \"application_outcome_notification_date\": \"2016-02-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Banks - Well Driller : 38000-25/DRI BANK K"}}, {"model": "reversion.version", "pk": 6106, "fields": {"revision": 2631, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6107, "fields": {"revision": 2631, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6108, "fields": {"revision": 2631, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6109, "fields": {"revision": 2632, "object_id": "e01d0157-f20f-4a59-85bf-0f73ed349e24", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e01d0157-f20f-4a59-85bf-0f73ed349e24\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.519Z\", \"registration\": \"64c052c1-7ef0-4d87-a3dc-51ab65802c12\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ABER LD\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Abercrombie - Well Driller : 38000-25/DRI ABER LD"}}, {"model": "reversion.version", "pk": 6110, "fields": {"revision": 2632, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6111, "fields": {"revision": 2632, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6112, "fields": {"revision": 2632, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6113, "fields": {"revision": 2633, "object_id": "e02675e6-7742-4ce9-ae58-4ef4c66aaf87", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e02675e6-7742-4ce9-ae58-4ef4c66aaf87\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.525Z\", \"registration\": \"c5863e86-af89-4219-983f-e901c1a80de5\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI TUYT B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-26\", \"application_outcome_notification_date\": \"2005-01-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Tuytel - Well Driller : 38000-25/DRI TUYT B"}}, {"model": "reversion.version", "pk": 6114, "fields": {"revision": 2633, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6115, "fields": {"revision": 2633, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6116, "fields": {"revision": 2633, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6117, "fields": {"revision": 2634, "object_id": "e049b9fd-282f-444c-ac12-a0670f83e614", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e049b9fd-282f-444c-ac12-a0670f83e614\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.531Z\", \"registration\": \"2bd1031b-69cb-416d-81ad-405b5c9bb57d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GRIBB R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Gribbon - Pump Installer : 38000-25/PUMP GRIBB R"}}, {"model": "reversion.version", "pk": 6118, "fields": {"revision": 2634, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6119, "fields": {"revision": 2634, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6120, "fields": {"revision": 2634, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6121, "fields": {"revision": 2635, "object_id": "e0599eda-d979-4d34-a9cd-003d065efca0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e0599eda-d979-4d34-a9cd-003d065efca0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.537Z\", \"registration\": \"ac6660ed-56fe-4faa-9f93-b6d0bfd19518\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI NEUL B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brad Neuls - Well Driller : 38000-25/DRI NEUL B"}}, {"model": "reversion.version", "pk": 6122, "fields": {"revision": 2635, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6123, "fields": {"revision": 2635, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6124, "fields": {"revision": 2635, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6125, "fields": {"revision": 2636, "object_id": "e05f2013-50c5-4976-9eb5-9485fac66fda", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e05f2013-50c5-4976-9eb5-9485fac66fda\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.542Z\", \"registration\": \"6ace1a50-e98b-41d7-a75e-2591a08e1f8f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BOUR R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0001-WW-96\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Bourget - Well Driller : 38000-25/DRI BOUR R"}}, {"model": "reversion.version", "pk": 6126, "fields": {"revision": 2636, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6127, "fields": {"revision": 2636, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6128, "fields": {"revision": 2636, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6129, "fields": {"revision": 2637, "object_id": "e07ab807-3e76-4c5a-91b5-09ef8d2ddfc2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e07ab807-3e76-4c5a-91b5-09ef8d2ddfc2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.548Z\", \"registration\": \"dce084b1-0a18-47b2-91a8-ecb28ec1a340\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FYFE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Fyfe - Well Driller : 38000-25/DRI FYFE K"}}, {"model": "reversion.version", "pk": 6130, "fields": {"revision": 2637, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6131, "fields": {"revision": 2637, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6132, "fields": {"revision": 2637, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6133, "fields": {"revision": 2638, "object_id": "e0da2029-1497-4ef5-9c38-7d00d02e92e2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e0da2029-1497-4ef5-9c38-7d00d02e92e2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.553Z\", \"registration\": \"535e602f-fd6f-43a8-a54c-933038132530\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FULO E\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ed Fulop - Well Driller : 38000-25/DRI FULO E"}}, {"model": "reversion.version", "pk": 6134, "fields": {"revision": 2638, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6135, "fields": {"revision": 2638, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6136, "fields": {"revision": 2638, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6137, "fields": {"revision": 2639, "object_id": "e0dea5be-9098-4a2c-9a2a-9015d119a784", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e0dea5be-9098-4a2c-9a2a-9015d119a784\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.559Z\", \"registration\": \"e3851f31-1568-4cfa-a010-801cdcd2d72c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI NETR D\", \"proof_of_age\": null, \"registrar_notes\": \"No contact info Apr 21 2016\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-12\", \"application_outcome_notification_date\": \"2006-01-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Netrefa - Well Driller : 38000-25/DRI NETR D"}}, {"model": "reversion.version", "pk": 6138, "fields": {"revision": 2639, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6139, "fields": {"revision": 2639, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6140, "fields": {"revision": 2639, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6141, "fields": {"revision": 2640, "object_id": "e1f66dd8-3300-41bc-bc54-47c6ec9fa326", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e1f66dd8-3300-41bc-bc54-47c6ec9fa326\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.564Z\", \"registration\": \"9f94a481-3901-4c87-95b8-e01060c57633\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STEW B\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-15\", \"application_outcome_notification_date\": \"2005-08-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bruce Stewart - Well Driller : 38000-25/DRI STEW B"}}, {"model": "reversion.version", "pk": 6142, "fields": {"revision": 2640, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6143, "fields": {"revision": 2640, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6144, "fields": {"revision": 2640, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6145, "fields": {"revision": 2641, "object_id": "e230fc1c-b12c-4fbd-9be9-cf426798fe3c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e230fc1c-b12c-4fbd-9be9-cf426798fe3c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.570Z\", \"registration\": \"ce996c69-c466-4a9a-92c3-ed8ab4a4b616\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MELL D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-25\", \"application_outcome_notification_date\": \"2005-02-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Mellis - Pump Installer : 38000-25/PUMP MELL D"}}, {"model": "reversion.version", "pk": 6146, "fields": {"revision": 2641, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6147, "fields": {"revision": 2641, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6148, "fields": {"revision": 2641, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6149, "fields": {"revision": 2642, "object_id": "e241cba2-3c41-4b5c-8d53-45225b1b9e81", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e241cba2-3c41-4b5c-8d53-45225b1b9e81\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.576Z\", \"registration\": \"5d6c27ee-633e-45da-ae22-95f9e6439cab\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BARL C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00026-WW-08\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-03-23\", \"application_outcome_notification_date\": \"2009-03-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Barling - Well Driller : 38000-25/DRI BARL C"}}, {"model": "reversion.version", "pk": 6150, "fields": {"revision": 2642, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6151, "fields": {"revision": 2642, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6152, "fields": {"revision": 2642, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6153, "fields": {"revision": 2643, "object_id": "e25a59a7-dfab-4e0e-a170-404ba08a65b6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e25a59a7-dfab-4e0e-a170-404ba08a65b6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.583Z\", \"registration\": \"aa64101d-a6b5-4991-9360-02693e351e5c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PITT R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ross Pitt - Pump Installer : 38000-25/PUMP PITT R"}}, {"model": "reversion.version", "pk": 6154, "fields": {"revision": 2643, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6155, "fields": {"revision": 2643, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6156, "fields": {"revision": 2643, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6157, "fields": {"revision": 2644, "object_id": "e2e489aa-1533-46be-ab04-bcce58784d44", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e2e489aa-1533-46be-ab04-bcce58784d44\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.588Z\", \"registration\": \"9e226453-a9eb-481b-8c5e-6af25120fd2d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LEMA D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Lemal - Well Driller : 38000-25/DRI LEMA D"}}, {"model": "reversion.version", "pk": 6158, "fields": {"revision": 2644, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6159, "fields": {"revision": 2644, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6160, "fields": {"revision": 2644, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6161, "fields": {"revision": 2645, "object_id": "e2e980db-7b51-4421-b77c-9875f5090c39", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e2e980db-7b51-4421-b77c-9875f5090c39\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.595Z\", \"registration\": \"0128970c-4170-4e9c-869e-ac0d798bd3ff\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NYE G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-25\", \"application_outcome_notification_date\": \"2006-10-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garth Nye - Pump Installer : 38000-25/PUMP NYE G"}}, {"model": "reversion.version", "pk": 6162, "fields": {"revision": 2645, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6163, "fields": {"revision": 2645, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6164, "fields": {"revision": 2645, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6165, "fields": {"revision": 2646, "object_id": "e325b975-dd5b-4971-880f-bda0edbee1d3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e325b975-dd5b-4971-880f-bda0edbee1d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.601Z\", \"registration\": \"1c1a5b1f-1abd-49f6-a390-5f879039696a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MAGE R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Magee - Well Driller : 38000-25/DRI MAGE R"}}, {"model": "reversion.version", "pk": 6166, "fields": {"revision": 2646, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6167, "fields": {"revision": 2646, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6168, "fields": {"revision": 2646, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6169, "fields": {"revision": 2647, "object_id": "e3400f57-faaa-470b-ac08-6fe287fc6481", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e3400f57-faaa-470b-ac08-6fe287fc6481\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.607Z\", \"registration\": \"7608e662-24eb-4bd8-9aca-ec09fe7ba55a\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP QUIN C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-11-08\", \"application_outcome_notification_date\": \"2010-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Quinlan - Pump Installer : 38000-25/PUMP QUIN C"}}, {"model": "reversion.version", "pk": 6170, "fields": {"revision": 2647, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6171, "fields": {"revision": 2647, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6172, "fields": {"revision": 2647, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6173, "fields": {"revision": 2648, "object_id": "e35c04fa-c2aa-46f8-beb6-b9a4a35eeb11", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e35c04fa-c2aa-46f8-beb6-b9a4a35eeb11\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.612Z\", \"registration\": \"a4a429ed-f1cf-4c76-89b2-9b9db86de9bb\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHI M\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Max Schibli - Well Driller : 38000-25/DRI SCHI M"}}, {"model": "reversion.version", "pk": 6174, "fields": {"revision": 2648, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6175, "fields": {"revision": 2648, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6176, "fields": {"revision": 2648, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6177, "fields": {"revision": 2649, "object_id": "e382649e-9e31-4bf0-ba37-59b6849ecf69", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e382649e-9e31-4bf0-ba37-59b6849ecf69\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.618Z\", \"registration\": \"eb3f344f-e0c6-4f02-92d9-85afb27c3f9a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CUDL F\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0015-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-16\", \"application_outcome_notification_date\": \"2008-04-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Fred Cudlipp - Well Driller : 38000-25/DRI CUDL F"}}, {"model": "reversion.version", "pk": 6178, "fields": {"revision": 2649, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6179, "fields": {"revision": 2649, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6180, "fields": {"revision": 2649, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6181, "fields": {"revision": 2650, "object_id": "e38d05d9-66c3-4efc-9b8f-9cdd87e86d31", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e38d05d9-66c3-4efc-9b8f-9cdd87e86d31\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.625Z\", \"registration\": \"20ca3db9-812d-4ddb-94e3-cc15c408d751\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FRIE R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rick Friedel - Well Driller : 38000-25/DRI FRIE R"}}, {"model": "reversion.version", "pk": 6182, "fields": {"revision": 2650, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6183, "fields": {"revision": 2650, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6184, "fields": {"revision": 2650, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6185, "fields": {"revision": 2651, "object_id": "e3d84d52-272a-4949-b8e9-8005d5adf881", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e3d84d52-272a-4949-b8e9-8005d5adf881\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.633Z\", \"registration\": \"8d6fe9aa-3613-42df-ad87-e71292d972c2\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BAUE C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"primary_certificate_no\": \"00001-GX-16\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-08-22\", \"application_outcome_notification_date\": \"2016-08-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Christopher Bauer - Well Driller : 38000-25/DRI BAUE C"}}, {"model": "reversion.version", "pk": 6186, "fields": {"revision": 2651, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6187, "fields": {"revision": 2651, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6188, "fields": {"revision": 2651, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 6189, "fields": {"revision": 2652, "object_id": "e3e839d7-814d-4efc-abd1-226c52b75ef3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e3e839d7-814d-4efc-abd1-226c52b75ef3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.643Z\", \"registration\": \"85a5b9d0-782e-430c-97b6-2fab5449073b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TOWN J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2013-05-22\", \"application_outcome_notification_date\": \"2013-05-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeff Townsend - Pump Installer : 38000-25/PUMP TOWN J"}}, {"model": "reversion.version", "pk": 6190, "fields": {"revision": 2652, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6191, "fields": {"revision": 2652, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6192, "fields": {"revision": 2652, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6193, "fields": {"revision": 2653, "object_id": "e43addb0-bc0c-4529-9549-02dba6f44a1e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e43addb0-bc0c-4529-9549-02dba6f44a1e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.652Z\", \"registration\": \"b78d354f-5a6b-4bb7-80ed-ab0d5def9fcc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP KAYE A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Albert Kaye - Pump Installer : 38000-25/PUMP KAYE A"}}, {"model": "reversion.version", "pk": 6194, "fields": {"revision": 2653, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6195, "fields": {"revision": 2653, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6196, "fields": {"revision": 2653, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6197, "fields": {"revision": 2654, "object_id": "e43e3e07-6dce-4d32-a57b-f22d7d699cb3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e43e3e07-6dce-4d32-a57b-f22d7d699cb3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.661Z\", \"registration\": \"b31bba88-4c8e-4cf2-a0f1-f6cf2bce4995\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP JAUN J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-10\", \"application_outcome_notification_date\": \"2004-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jay Jaundrew - Pump Installer : 38000-25/PUMP JAUN J"}}, {"model": "reversion.version", "pk": 6198, "fields": {"revision": 2654, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6199, "fields": {"revision": 2654, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6200, "fields": {"revision": 2654, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6201, "fields": {"revision": 2655, "object_id": "e4979e59-4d70-4acf-b15b-d52dd3e877a1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e4979e59-4d70-4acf-b15b-d52dd3e877a1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.670Z\", \"registration\": \"132827b8-dfe7-459f-b6af-607fadc6c34c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHM J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0041-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-19\", \"application_outcome_notification_date\": \"2005-11-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Schmidt - Well Driller : 38000-25/DRI SCHM J"}}, {"model": "reversion.version", "pk": 6202, "fields": {"revision": 2655, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6203, "fields": {"revision": 2655, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6204, "fields": {"revision": 2655, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6205, "fields": {"revision": 2656, "object_id": "e4e37069-1968-4e25-b955-0705eef24c24", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e4e37069-1968-4e25-b955-0705eef24c24\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.679Z\", \"registration\": \"76e0946b-8e92-4a13-8a4d-72f0c464ce52\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI NOBE W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Walter Nobes - Well Driller : 38000-25/DRI NOBE W"}}, {"model": "reversion.version", "pk": 6206, "fields": {"revision": 2656, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6207, "fields": {"revision": 2656, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6208, "fields": {"revision": 2656, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6209, "fields": {"revision": 2657, "object_id": "e51cc665-805f-401e-aaed-3576b77aecfd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e51cc665-805f-401e-aaed-3576b77aecfd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.688Z\", \"registration\": \"fe8b27e1-8d88-4a34-8e80-77e47da22b08\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PETE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-07\", \"application_outcome_notification_date\": \"2005-12-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Peters - Well Driller : 38000-25/DRI PETE J"}}, {"model": "reversion.version", "pk": 6210, "fields": {"revision": 2657, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6211, "fields": {"revision": 2657, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6212, "fields": {"revision": 2657, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6213, "fields": {"revision": 2658, "object_id": "e5235eed-2298-4167-a61d-2cc0c2b8c2af", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e5235eed-2298-4167-a61d-2cc0c2b8c2af\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.696Z\", \"registration\": \"db18c844-4f66-4144-923c-6461f18bc56c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MACE L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-07-11\", \"application_outcome_notification_date\": \"2005-07-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lucas MacEwan - Well Driller : 38000-25/DRI MACE L"}}, {"model": "reversion.version", "pk": 6214, "fields": {"revision": 2658, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6215, "fields": {"revision": 2658, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6216, "fields": {"revision": 2658, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6217, "fields": {"revision": 2659, "object_id": "e52ab78e-ff28-4d99-9bca-f086890b2d98", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e52ab78e-ff28-4d99-9bca-f086890b2d98\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.704Z\", \"registration\": \"2772cbcc-2827-4de5-b927-c6b8e6ed191c\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25 DRI HOLI R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Holiove - Well Driller : 38000-25 DRI HOLI R"}}, {"model": "reversion.version", "pk": 6218, "fields": {"revision": 2659, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6219, "fields": {"revision": 2659, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6220, "fields": {"revision": 2659, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6221, "fields": {"revision": 2660, "object_id": "e52d812b-6e74-4a4d-88e3-f339c22e1e1f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e52d812b-6e74-4a4d-88e3-f339c22e1e1f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.711Z\", \"registration\": \"df6a5d45-956e-497e-b1c2-782c00af825c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI WATT J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0009-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-05\", \"application_outcome_notification_date\": \"2006-04-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Watts - Well Driller : 38000-25/DRI WATT J"}}, {"model": "reversion.version", "pk": 6222, "fields": {"revision": 2660, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6223, "fields": {"revision": 2660, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6224, "fields": {"revision": 2660, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6225, "fields": {"revision": 2661, "object_id": "e5b1510b-9006-496e-9cf5-7ac67c343e9c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e5b1510b-9006-496e-9cf5-7ac67c343e9c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.718Z\", \"registration\": \"c22c3dd5-5f20-4da3-9fe0-566c26de4c4e\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LAUC D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0036-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-06-18\", \"application_outcome_notification_date\": \"2008-06-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Lauckner - Well Driller : 38000-25/DRI LAUC D"}}, {"model": "reversion.version", "pk": 6226, "fields": {"revision": 2661, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6227, "fields": {"revision": 2661, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6228, "fields": {"revision": 2661, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6229, "fields": {"revision": 2662, "object_id": "e5ccfb46-3b98-4001-b458-ef92746448a4", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e5ccfb46-3b98-4001-b458-ef92746448a4\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.724Z\", \"registration\": \"0cab9d71-4217-4203-b2e9-e81d27f5799b\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HEAL J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jerry Heal - Well Driller : 38000-25/DRI HEAL J"}}, {"model": "reversion.version", "pk": 6230, "fields": {"revision": 2662, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6231, "fields": {"revision": 2662, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6232, "fields": {"revision": 2662, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6233, "fields": {"revision": 2663, "object_id": "e5ddfe9e-30df-4b1e-9182-f31462a1770f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e5ddfe9e-30df-4b1e-9182-f31462a1770f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.731Z\", \"registration\": \"7feeb12f-b87e-4b20-8679-4242400f0713\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FAAS J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-171\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-07-14\", \"application_outcome_notification_date\": \"2011-07-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Justin Faasse - Well Driller : 38000-25/DRI FAAS J"}}, {"model": "reversion.version", "pk": 6234, "fields": {"revision": 2663, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6235, "fields": {"revision": 2663, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6236, "fields": {"revision": 2663, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6237, "fields": {"revision": 2664, "object_id": "e6103455-32da-4ada-b1cf-9748ac7fa2cb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e6103455-32da-4ada-b1cf-9748ac7fa2cb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.738Z\", \"registration\": \"64689170-8c1a-4667-bdd0-fe0088d34752\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP EISN B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-05-20\", \"application_outcome_notification_date\": \"2009-05-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brent Eisner - Pump Installer : 38000-25/PUMP EISN B"}}, {"model": "reversion.version", "pk": 6238, "fields": {"revision": 2664, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6239, "fields": {"revision": 2664, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6240, "fields": {"revision": 2664, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6241, "fields": {"revision": 2665, "object_id": "e647b3f0-79ce-4882-9b0c-656da149a520", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e647b3f0-79ce-4882-9b0c-656da149a520\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.744Z\", \"registration\": \"535e602f-fd6f-43a8-a54c-933038132530\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI FULO E\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ed Fulop - Well Driller : 38000-25/DRI FULO E"}}, {"model": "reversion.version", "pk": 6242, "fields": {"revision": 2665, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6243, "fields": {"revision": 2665, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6244, "fields": {"revision": 2665, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6245, "fields": {"revision": 2666, "object_id": "e6ba24d7-c381-4519-8544-c65c0abdba53", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e6ba24d7-c381-4519-8544-c65c0abdba53\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.750Z\", \"registration\": \"bafd81e8-9857-417b-af6d-715a4ddd4920\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PHIL W\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-05\", \"application_outcome_notification_date\": \"2006-07-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Philps - Well Driller : 38000-25/DRI PHIL W"}}, {"model": "reversion.version", "pk": 6246, "fields": {"revision": 2666, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6247, "fields": {"revision": 2666, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6248, "fields": {"revision": 2666, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6249, "fields": {"revision": 2667, "object_id": "e71e08e5-4a2b-4c00-ad16-25da052f05d0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e71e08e5-4a2b-4c00-ad16-25da052f05d0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.756Z\", \"registration\": \"27a95ea8-8f83-41fd-bd97-541fb18a4ecc\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SLAD C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-11\", \"application_outcome_notification_date\": \"2006-05-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Calvin Slade - Pump Installer : 38000-25/PUMP SLAD C"}}, {"model": "reversion.version", "pk": 6250, "fields": {"revision": 2667, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6251, "fields": {"revision": 2667, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6252, "fields": {"revision": 2667, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6253, "fields": {"revision": 2668, "object_id": "e75b0efa-714f-4741-8128-618619c0d341", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e75b0efa-714f-4741-8128-618619c0d341\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.761Z\", \"registration\": \"90c7e102-3af5-4e21-ac18-664b62622b8a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CLAD M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Caldwell - Well Driller : 38000-25/DRI CLAD M"}}, {"model": "reversion.version", "pk": 6254, "fields": {"revision": 2668, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6255, "fields": {"revision": 2668, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6256, "fields": {"revision": 2668, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6257, "fields": {"revision": 2669, "object_id": "e76cdcc9-545c-4560-9182-27c92c844a95", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e76cdcc9-545c-4560-9182-27c92c844a95\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.767Z\", \"registration\": \"e1c42124-8b4a-4a9e-8cd6-9248c0c11ed2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PECK R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-07\", \"application_outcome_notification_date\": \"2006-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Peck - Pump Installer : 38000-25/PUMP PECK R"}}, {"model": "reversion.version", "pk": 6258, "fields": {"revision": 2669, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6259, "fields": {"revision": 2669, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6260, "fields": {"revision": 2669, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6261, "fields": {"revision": 2670, "object_id": "e7afd574-9532-47b6-92e4-786ac2477182", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e7afd574-9532-47b6-92e4-786ac2477182\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.773Z\", \"registration\": \"573995fb-ac17-4b8a-97e1-7940389cbaa1\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BUMF T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Troy Bumford - Well Driller : 38000-25/DRI BUMF T"}}, {"model": "reversion.version", "pk": 6262, "fields": {"revision": 2670, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6263, "fields": {"revision": 2670, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6264, "fields": {"revision": 2670, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6265, "fields": {"revision": 2671, "object_id": "e7eb9f7f-d794-43f6-b0c8-35452c690ad6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e7eb9f7f-d794-43f6-b0c8-35452c690ad6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.779Z\", \"registration\": \"5d867f86-549f-41c4-97da-1af15cf687c4\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WIPF S\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/805862-165564A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2015-05-26\", \"application_outcome_notification_date\": \"2015-05-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Stephen Wipf - Well Driller : 38000-25/DRI WIPF S"}}, {"model": "reversion.version", "pk": 6266, "fields": {"revision": 2671, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6267, "fields": {"revision": 2671, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6268, "fields": {"revision": 2671, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6269, "fields": {"revision": 2672, "object_id": "e8178bef-bd10-4caa-a42c-38b10f786e75", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e8178bef-bd10-4caa-a42c-38b10f786e75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.785Z\", \"registration\": \"b08a88d1-3f92-4d94-bbca-4add9ec9a394\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI LAMB R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-13\", \"application_outcome_notification_date\": \"2005-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randy Lamb - Well Driller : 38000-25/DRI LAMB R"}}, {"model": "reversion.version", "pk": 6270, "fields": {"revision": 2672, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6271, "fields": {"revision": 2672, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6272, "fields": {"revision": 2672, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6273, "fields": {"revision": 2673, "object_id": "e8e6b5f1-bd1e-4736-95be-cb67726db171", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e8e6b5f1-bd1e-4736-95be-cb67726db171\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.791Z\", \"registration\": \"d4a8e916-6682-4e9c-bd8f-ebb9fc6bb5a5\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PEPP J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0035-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-13\", \"application_outcome_notification_date\": \"2005-04-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jeffrey Peppler - Well Driller : 38000-25/DRI PEPP J"}}, {"model": "reversion.version", "pk": 6274, "fields": {"revision": 2673, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6275, "fields": {"revision": 2673, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6276, "fields": {"revision": 2673, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6277, "fields": {"revision": 2674, "object_id": "e94eb22b-4d1c-42c6-b95b-54d8866240bc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e94eb22b-4d1c-42c6-b95b-54d8866240bc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.797Z\", \"registration\": \"6918ff6b-5a6f-4ea3-9c27-6917cac2434d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WAAR B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Barry Waardenburg - Pump Installer : 38000-25/PUMP WAAR B"}}, {"model": "reversion.version", "pk": 6278, "fields": {"revision": 2674, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6279, "fields": {"revision": 2674, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6280, "fields": {"revision": 2674, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6281, "fields": {"revision": 2675, "object_id": "e979c89f-cdf9-4a4b-bbc7-c66aafa894c3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e979c89f-cdf9-4a4b-bbc7-c66aafa894c3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.802Z\", \"registration\": \"61a62600-3bc0-44d4-b902-349f259acd99\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NADE D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daniel Nadeau - Pump Installer : 38000-25/PUMP NADE D"}}, {"model": "reversion.version", "pk": 6282, "fields": {"revision": 2675, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6283, "fields": {"revision": 2675, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6284, "fields": {"revision": 2675, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6285, "fields": {"revision": 2676, "object_id": "e9828d0d-940d-41cf-8c75-c60686f5708b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e9828d0d-940d-41cf-8c75-c60686f5708b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.808Z\", \"registration\": \"3cfb2f8c-c455-469f-ac56-2dc9d9affbaf\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP YOUN G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Young - Pump Installer : 38000-25/PUMP YOUN G"}}, {"model": "reversion.version", "pk": 6286, "fields": {"revision": 2676, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6287, "fields": {"revision": 2676, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6288, "fields": {"revision": 2676, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6289, "fields": {"revision": 2677, "object_id": "e9a92086-cd86-463d-b010-5e5f26ae0c41", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e9a92086-cd86-463d-b010-5e5f26ae0c41\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.814Z\", \"registration\": \"bffd9bb5-f74d-4006-8802-43d7257b19e5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BENT A\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andre Bentley - Well Driller : 38000-25/DRI BENT A"}}, {"model": "reversion.version", "pk": 6290, "fields": {"revision": 2677, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6291, "fields": {"revision": 2677, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6292, "fields": {"revision": 2677, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6293, "fields": {"revision": 2678, "object_id": "e9b2bd28-2657-4109-a276-95d975bbff8f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e9b2bd28-2657-4109-a276-95d975bbff8f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.820Z\", \"registration\": \"0cb97728-189c-4184-8a75-915f2da211f4\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BOMB M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2007-139\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-09-19\", \"application_outcome_notification_date\": \"2007-09-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Bombardier - Well Driller : 38000-25/DRI BOMB M"}}, {"model": "reversion.version", "pk": 6294, "fields": {"revision": 2678, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6295, "fields": {"revision": 2678, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6296, "fields": {"revision": 2678, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6297, "fields": {"revision": 2679, "object_id": "e9b8374c-09da-4081-bfd2-2e3b9ff8f7d3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e9b8374c-09da-4081-bfd2-2e3b9ff8f7d3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.826Z\", \"registration\": \"7bdddd58-e057-4a4b-90ff-66c561dcaf82\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI INGR L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-10\", \"application_outcome_notification_date\": \"2006-01-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lloyd Ingram - Well Driller : 38000-25/DRI INGR L"}}, {"model": "reversion.version", "pk": 6298, "fields": {"revision": 2679, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6299, "fields": {"revision": 2679, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6300, "fields": {"revision": 2679, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6301, "fields": {"revision": 2680, "object_id": "e9f2c6b8-ed8d-4101-b8b9-d6d5509a30e6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"e9f2c6b8-ed8d-4101-b8b9-d6d5509a30e6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.832Z\", \"registration\": \"339ccb1b-3034-42d4-b4ac-bea5b07cd5ca\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LENA D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Lenard - Well Driller : 38000-25/DRI LENA D"}}, {"model": "reversion.version", "pk": 6302, "fields": {"revision": 2680, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6303, "fields": {"revision": 2680, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6304, "fields": {"revision": 2680, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6305, "fields": {"revision": 2681, "object_id": "ea159c73-d508-41dd-8336-964041c25177", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ea159c73-d508-41dd-8336-964041c25177\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.838Z\", \"registration\": \"626d4ab3-5fb5-4ad1-a07c-fa0969362d4d\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PETE JA\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Peterson - Well Driller : 38000-25/DRI PETE JA"}}, {"model": "reversion.version", "pk": 6306, "fields": {"revision": 2681, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6307, "fields": {"revision": 2681, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6308, "fields": {"revision": 2681, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6309, "fields": {"revision": 2682, "object_id": "ea554a4e-160b-464c-b9d5-b2f8fdc1d536", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ea554a4e-160b-464c-b9d5-b2f8fdc1d536\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.844Z\", \"registration\": \"528d10eb-c15b-4fc4-b3a2-5030910e19c4\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP HAGA C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-07\", \"application_outcome_notification_date\": \"2005-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chuck Hagan - Pump Installer : 38000-25/PUMP HAGA C"}}, {"model": "reversion.version", "pk": 6310, "fields": {"revision": 2682, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6311, "fields": {"revision": 2682, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6312, "fields": {"revision": 2682, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6313, "fields": {"revision": 2683, "object_id": "ea5b93e7-e8a9-4b2d-a440-0aa8fda1c36b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ea5b93e7-e8a9-4b2d-a440-0aa8fda1c36b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.850Z\", \"registration\": \"fdbe900d-c203-4100-aa2f-7ef068ad5811\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SCHR T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Travis Schryvers - Well Driller : 38000-25/DRI SCHR T"}}, {"model": "reversion.version", "pk": 6314, "fields": {"revision": 2683, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6315, "fields": {"revision": 2683, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6316, "fields": {"revision": 2683, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6317, "fields": {"revision": 2684, "object_id": "ea957eb0-f3d2-43b3-ba96-4433569e135d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ea957eb0-f3d2-43b3-ba96-4433569e135d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.855Z\", \"registration\": \"019daf7d-5d01-4641-ba0d-7540b0a5c64c\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PELLE K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2006-132\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-05-17\", \"application_outcome_notification_date\": \"2007-05-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Pelletier - Well Driller : 38000-25/DRI PELLE K"}}, {"model": "reversion.version", "pk": 6318, "fields": {"revision": 2684, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6319, "fields": {"revision": 2684, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6320, "fields": {"revision": 2684, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6321, "fields": {"revision": 2685, "object_id": "eabacac8-0a3c-4c7f-a37b-b1b4bd855754", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eabacac8-0a3c-4c7f-a37b-b1b4bd855754\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.861Z\", \"registration\": \"f244e69b-fdf1-4814-a448-2f1ab1c3fabc\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI BERN R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00016-WW-99\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rene Bernard - Well Driller : 38000-25/DRI BERN R"}}, {"model": "reversion.version", "pk": 6322, "fields": {"revision": 2685, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6323, "fields": {"revision": 2685, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6324, "fields": {"revision": 2685, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6325, "fields": {"revision": 2686, "object_id": "eac1d0d7-28c3-4106-b296-a97fe1770061", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eac1d0d7-28c3-4106-b296-a97fe1770061\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.867Z\", \"registration\": \"569b64a9-e45b-41ec-a4bd-b6651dd503e6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GARD R\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-173\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-26\", \"application_outcome_notification_date\": \"2010-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Gardiner - Well Driller : 38000-25/DRI GARD R"}}, {"model": "reversion.version", "pk": 6326, "fields": {"revision": 2686, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6327, "fields": {"revision": 2686, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6328, "fields": {"revision": 2686, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6329, "fields": {"revision": 2687, "object_id": "eb178e12-79bd-4658-996f-3de524c701fe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eb178e12-79bd-4658-996f-3de524c701fe\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.873Z\", \"registration\": \"362ec95e-e55f-45f7-9a15-ce8588ed22c1\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MASO H\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-05-16\", \"application_outcome_notification_date\": \"2006-05-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Mason - Pump Installer : 38000-25/PUMP MASO H"}}, {"model": "reversion.version", "pk": 6330, "fields": {"revision": 2687, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6331, "fields": {"revision": 2687, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6332, "fields": {"revision": 2687, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6333, "fields": {"revision": 2688, "object_id": "eb237a11-bc31-4c61-9461-ff689a6bb854", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eb237a11-bc31-4c61-9461-ff689a6bb854\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.878Z\", \"registration\": \"3f439fda-9623-486b-b576-b257db7d7bf4\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI QUIN C\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/876523-48135A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-06\", \"application_outcome_notification_date\": \"2010-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Quinlan - Well Driller : 38000-25/DRI QUIN C"}}, {"model": "reversion.version", "pk": 6334, "fields": {"revision": 2688, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6335, "fields": {"revision": 2688, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6336, "fields": {"revision": 2688, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6337, "fields": {"revision": 2689, "object_id": "eb88ad33-21a1-4920-a838-dc86afb90614", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eb88ad33-21a1-4920-a838-dc86afb90614\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.884Z\", \"registration\": \"3bb00cdd-11df-4016-8b4e-0817174c41fb\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI CLAR J\", \"proof_of_age\": null, \"registrar_notes\": \"Contacted 2017-12-22; updated information\", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Clark - Well Driller : 38000-25/DRI CLAR J"}}, {"model": "reversion.version", "pk": 6338, "fields": {"revision": 2689, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6339, "fields": {"revision": 2689, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6340, "fields": {"revision": 2689, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6341, "fields": {"revision": 2690, "object_id": "ebae8359-c607-4a0e-bd1d-3cfa92827a61", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ebae8359-c607-4a0e-bd1d-3cfa92827a61\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.890Z\", \"registration\": \"5682c2d3-0d9e-4e3a-afb9-4a45cfe0e4fd\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BOUR G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-01\", \"application_outcome_notification_date\": \"2006-02-01\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gerard Bourdin - Pump Installer : 38000-25/PUMP BOUR G"}}, {"model": "reversion.version", "pk": 6342, "fields": {"revision": 2690, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6343, "fields": {"revision": 2690, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6344, "fields": {"revision": 2690, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6345, "fields": {"revision": 2691, "object_id": "ebd376d5-3c8c-48bb-a804-110b42f57b75", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ebd376d5-3c8c-48bb-a804-110b42f57b75\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.896Z\", \"registration\": \"d8b77afe-1244-4ba6-b9ea-50a833af19b7\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP EMPE R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Empey - Pump Installer : 38000-25/PUMP EMPE R"}}, {"model": "reversion.version", "pk": 6346, "fields": {"revision": 2691, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6347, "fields": {"revision": 2691, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6348, "fields": {"revision": 2691, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6349, "fields": {"revision": 2692, "object_id": "ebd6703d-65d5-48b3-9733-08df53635a55", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ebd6703d-65d5-48b3-9733-08df53635a55\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.901Z\", \"registration\": \"e12168c8-68e5-4b0c-a546-f637fb640213\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CROK J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-21\", \"application_outcome_notification_date\": \"2008-04-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Croken - Pump Installer : 38000-25/PUMP CROK J"}}, {"model": "reversion.version", "pk": 6350, "fields": {"revision": 2692, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6351, "fields": {"revision": 2692, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6352, "fields": {"revision": 2692, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6353, "fields": {"revision": 2693, "object_id": "ebde3377-d3cc-43ed-87cf-2ba4a59e9cca", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ebde3377-d3cc-43ed-87cf-2ba4a59e9cca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.908Z\", \"registration\": \"d3e43b2f-9594-4ba6-bbe2-ee003e8c87e9\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SOUD G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-06\", \"application_outcome_notification_date\": \"2006-03-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory Sound - Well Driller : 38000-25/DRI SOUD G"}}, {"model": "reversion.version", "pk": 6354, "fields": {"revision": 2693, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6355, "fields": {"revision": 2693, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6356, "fields": {"revision": 2693, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6357, "fields": {"revision": 2694, "object_id": "ec12e289-7ee6-4e08-a282-8df62925b2f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ec12e289-7ee6-4e08-a282-8df62925b2f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.914Z\", \"registration\": \"afa2b466-7e52-4747-962a-21ee1f259bd7\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BUCH G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gray Buchanan - Well Driller : 38000-25/DRI BUCH G"}}, {"model": "reversion.version", "pk": 6358, "fields": {"revision": 2694, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6359, "fields": {"revision": 2694, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6360, "fields": {"revision": 2694, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6361, "fields": {"revision": 2695, "object_id": "ec2f1c94-6ff4-407e-a986-d28046376c48", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ec2f1c94-6ff4-407e-a986-d28046376c48\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.919Z\", \"registration\": \"838375df-fedd-4a1b-be1a-c118580ae654\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP NESB M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mike Nesbit - Pump Installer : 38000-25/PUMP NESB M"}}, {"model": "reversion.version", "pk": 6362, "fields": {"revision": 2695, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6363, "fields": {"revision": 2695, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6364, "fields": {"revision": 2695, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6365, "fields": {"revision": 2696, "object_id": "ec8b371f-c063-41c2-8532-bff8fc48a5ae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ec8b371f-c063-41c2-8532-bff8fc48a5ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.925Z\", \"registration\": \"68c7f908-47c2-400c-ae4a-49d2e675ccb1\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MISE P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-25\", \"application_outcome_notification_date\": \"2006-01-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Peter Misek - Pump Installer : 38000-25/PUMP MISE P"}}, {"model": "reversion.version", "pk": 6366, "fields": {"revision": 2696, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6367, "fields": {"revision": 2696, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6368, "fields": {"revision": 2696, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6369, "fields": {"revision": 2697, "object_id": "ec9bfa15-7a88-48e8-9848-81668968a046", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ec9bfa15-7a88-48e8-9848-81668968a046\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.931Z\", \"registration\": \"72eed8d9-65b7-4493-9b6d-42a29b5c9e66\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SLAD D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0017-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Slade - Well Driller : 38000-25/DRI SLAD D"}}, {"model": "reversion.version", "pk": 6370, "fields": {"revision": 2697, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6371, "fields": {"revision": 2697, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6372, "fields": {"revision": 2697, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6373, "fields": {"revision": 2698, "object_id": "eca72ac7-8892-4879-a916-df4e050cb4ab", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eca72ac7-8892-4879-a916-df4e050cb4ab\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.937Z\", \"registration\": \"7e79a319-be09-4bfa-b22d-8798808fba04\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHW D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2012-187\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-12-07\", \"application_outcome_notification_date\": \"2016-12-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Schwartz - Well Driller : 38000-25/DRI SCHW D"}}, {"model": "reversion.version", "pk": 6374, "fields": {"revision": 2698, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6375, "fields": {"revision": 2698, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6376, "fields": {"revision": 2698, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6377, "fields": {"revision": 2699, "object_id": "ed3cdff3-7ee1-4c86-adc7-1fde05fa9725", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ed3cdff3-7ee1-4c86-adc7-1fde05fa9725\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.943Z\", \"registration\": \"ddf0b7fb-d4a8-405d-a62e-af3c13d5887c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STOB R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-14\", \"application_outcome_notification_date\": \"2005-02-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Stober - Pump Installer : 38000-25/PUMP STOB R"}}, {"model": "reversion.version", "pk": 6378, "fields": {"revision": 2699, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6379, "fields": {"revision": 2699, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6380, "fields": {"revision": 2699, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6381, "fields": {"revision": 2700, "object_id": "eda76213-3fe9-4127-8cec-abedf1839b2c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eda76213-3fe9-4127-8cec-abedf1839b2c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.948Z\", \"registration\": \"9352f16d-fb74-4462-aebb-cb658be71137\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP TRIT R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-02-21\", \"application_outcome_notification_date\": \"2012-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rudy Tritt - Pump Installer : 38000-25/PUMP TRIT R"}}, {"model": "reversion.version", "pk": 6382, "fields": {"revision": 2700, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6383, "fields": {"revision": 2700, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6384, "fields": {"revision": 2700, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6385, "fields": {"revision": 2701, "object_id": "ede276af-82be-4bf6-9741-ed926459f554", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ede276af-82be-4bf6-9741-ed926459f554\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.954Z\", \"registration\": \"78121cae-0b0c-4294-81ca-69fbe4ab091e\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP FARI M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Farina - Pump Installer : 38000-25/PUMP FARI M"}}, {"model": "reversion.version", "pk": 6386, "fields": {"revision": 2701, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6387, "fields": {"revision": 2701, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6388, "fields": {"revision": 2701, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6389, "fields": {"revision": 2702, "object_id": "ee6119dc-6a87-45be-a602-ca92ca30e383", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ee6119dc-6a87-45be-a602-ca92ca30e383\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.960Z\", \"registration\": \"36237d32-33cd-43ff-afbd-b0c67d6a7a71\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WATT D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0037-WW-93\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2004-12-14\", \"application_outcome_notification_date\": \"2004-12-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Watt - Well Driller : 38000-25/DRI WATT D"}}, {"model": "reversion.version", "pk": 6390, "fields": {"revision": 2702, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6391, "fields": {"revision": 2702, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6392, "fields": {"revision": 2702, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6393, "fields": {"revision": 2703, "object_id": "ee670837-217e-4dfc-a9c0-d12436f17478", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ee670837-217e-4dfc-a9c0-d12436f17478\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.965Z\", \"registration\": \"a298c140-0cc7-4db4-bdb8-0040ca69e308\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP STRA B\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-12\", \"application_outcome_notification_date\": \"2006-04-12\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Brian Strachan - Pump Installer : 38000-25/PUMP STRA B"}}, {"model": "reversion.version", "pk": 6394, "fields": {"revision": 2703, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6395, "fields": {"revision": 2703, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6396, "fields": {"revision": 2703, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6397, "fields": {"revision": 2704, "object_id": "ee6ac191-4460-4557-b3e2-ec3dca2e923f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ee6ac191-4460-4557-b3e2-ec3dca2e923f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.971Z\", \"registration\": \"58996b1d-86e4-4f86-99e8-0ea1d09bfac2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP REED J\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-31\", \"application_outcome_notification_date\": \"2006-10-31\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Reed - Pump Installer : 38000-25/PUMP REED J"}}, {"model": "reversion.version", "pk": 6398, "fields": {"revision": 2704, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6399, "fields": {"revision": 2704, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6400, "fields": {"revision": 2704, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6401, "fields": {"revision": 2705, "object_id": "ee98ef93-7679-4e63-97ce-2ad88fb00a0b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ee98ef93-7679-4e63-97ce-2ad88fb00a0b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.977Z\", \"registration\": \"b251ef0f-0a66-4087-a790-9a1923732941\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BLAN G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-01-14\", \"application_outcome_notification_date\": \"2005-01-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Garfield Bland - Pump Installer : 38000-25/PUMP BLAN G"}}, {"model": "reversion.version", "pk": 6402, "fields": {"revision": 2705, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6403, "fields": {"revision": 2705, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6404, "fields": {"revision": 2705, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6405, "fields": {"revision": 2706, "object_id": "eebd7837-b219-43f4-ac2f-e4c57e93886d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eebd7837-b219-43f4-ac2f-e4c57e93886d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.983Z\", \"registration\": \"d3e43b2f-9594-4ba6-bbe2-ee003e8c87e9\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SOUD G\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-06\", \"application_outcome_notification_date\": \"2006-03-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory Sound - Well Driller : 38000-25/DRI SOUD G"}}, {"model": "reversion.version", "pk": 6406, "fields": {"revision": 2706, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6407, "fields": {"revision": 2706, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6408, "fields": {"revision": 2706, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6409, "fields": {"revision": 2707, "object_id": "efa25e6d-b3d2-41a8-b64a-6faaba32cee3", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"efa25e6d-b3d2-41a8-b64a-6faaba32cee3\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.989Z\", \"registration\": \"32097004-8f9b-4f62-a6e5-b37ca0494aec\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GILL J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent; 0011-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joel Gillin - Well Driller : 38000-25/DRI GILL J"}}, {"model": "reversion.version", "pk": 6410, "fields": {"revision": 2707, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6411, "fields": {"revision": 2707, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6412, "fields": {"revision": 2707, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6413, "fields": {"revision": 2708, "object_id": "efccd69b-1ff3-4c6c-941c-27bdc14986f1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"efccd69b-1ff3-4c6c-941c-27bdc14986f1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:03.995Z\", \"registration\": \"f244e69b-fdf1-4814-a448-2f1ab1c3fabc\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BERN R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00016-WW-99\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rene Bernard - Well Driller : 38000-25/DRI BERN R"}}, {"model": "reversion.version", "pk": 6414, "fields": {"revision": 2708, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6415, "fields": {"revision": 2708, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6416, "fields": {"revision": 2708, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6417, "fields": {"revision": 2709, "object_id": "eff4add5-97c3-4865-a3b3-7f0da426777e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"eff4add5-97c3-4865-a3b3-7f0da426777e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04Z\", \"registration\": \"a68169a2-838d-4147-b476-57d53b089efb\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LEMA D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-02-21\", \"application_outcome_notification_date\": \"2005-02-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Doug Lemal - Pump Installer : 38000-25/PUMP LEMA D"}}, {"model": "reversion.version", "pk": 6418, "fields": {"revision": 2709, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6419, "fields": {"revision": 2709, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6420, "fields": {"revision": 2709, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6421, "fields": {"revision": 2710, "object_id": "f0514904-0a59-4c3f-8422-2a1ca227efd6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f0514904-0a59-4c3f-8422-2a1ca227efd6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.006Z\", \"registration\": \"99772c19-ba11-4676-8e20-95cf9fb050fd\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI REEV P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2009-04-23\", \"application_outcome_notification_date\": \"2009-04-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Philip Reeves - Well Driller : 38000-25/DRI REEV P"}}, {"model": "reversion.version", "pk": 6422, "fields": {"revision": 2710, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6423, "fields": {"revision": 2710, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6424, "fields": {"revision": 2710, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6425, "fields": {"revision": 2711, "object_id": "f07db9d5-8c57-4d19-8b1d-9632e0bf7dba", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f07db9d5-8c57-4d19-8b1d-9632e0bf7dba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.012Z\", \"registration\": \"54ba45af-3130-41db-a405-7a5004314389\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP WARD T\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Tim Warden - Pump Installer : 38000-25/PUMP WARD T"}}, {"model": "reversion.version", "pk": 6426, "fields": {"revision": 2711, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6427, "fields": {"revision": 2711, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6428, "fields": {"revision": 2711, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6429, "fields": {"revision": 2712, "object_id": "f0bd1128-b027-4a65-8880-e1757573e089", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f0bd1128-b027-4a65-8880-e1757573e089\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.018Z\", \"registration\": \"009942e2-8069-4886-a747-8947832186b2\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SORE K\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kelly Sorenson - Pump Installer : 38000-25/PUMP SORE K"}}, {"model": "reversion.version", "pk": 6430, "fields": {"revision": 2712, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6431, "fields": {"revision": 2712, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6432, "fields": {"revision": 2712, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6433, "fields": {"revision": 2713, "object_id": "f107d04b-2f96-4053-b338-4d41a0b334c9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f107d04b-2f96-4053-b338-4d41a0b334c9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.024Z\", \"registration\": \"9abd3191-4796-44b4-8b59-799a1ab2ef46\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI YOUN J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035-0/1033134-152877A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-11-26\", \"application_outcome_notification_date\": \"2014-11-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "John Young - Well Driller : 38000-25/DRI YOUN J"}}, {"model": "reversion.version", "pk": 6434, "fields": {"revision": 2713, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6435, "fields": {"revision": 2713, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6436, "fields": {"revision": 2713, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6437, "fields": {"revision": 2714, "object_id": "f1437e11-78fa-43f0-9106-15b5febdde43", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f1437e11-78fa-43f0-9106-15b5febdde43\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.029Z\", \"registration\": \"132827b8-dfe7-459f-b6af-607fadc6c34c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SCHM J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0041-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-19\", \"application_outcome_notification_date\": \"2005-11-19\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Schmidt - Well Driller : 38000-25/DRI SCHM J"}}, {"model": "reversion.version", "pk": 6438, "fields": {"revision": 2714, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6439, "fields": {"revision": 2714, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6440, "fields": {"revision": 2714, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6441, "fields": {"revision": 2715, "object_id": "f148621b-4a0f-4766-a16a-8c9fbb3e5722", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f148621b-4a0f-4766-a16a-8c9fbb3e5722\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.035Z\", \"registration\": \"01893320-4045-4532-bf8d-615ee739e5e5\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CHAM D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-05\", \"application_outcome_notification_date\": \"2006-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Chamberlayne - Well Driller : 38000-25/DRI CHAM D"}}, {"model": "reversion.version", "pk": 6442, "fields": {"revision": 2715, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6443, "fields": {"revision": 2715, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6444, "fields": {"revision": 2715, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6445, "fields": {"revision": 2716, "object_id": "f1553098-324b-44ef-9e8a-7de12aba946b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f1553098-324b-44ef-9e8a-7de12aba946b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.041Z\", \"registration\": \"196c0c79-f6a5-4ee8-aefe-4c85ff192f2b\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP RIEH C\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Clayton Riehl - Pump Installer : 38000-25/PUMP RIEH C"}}, {"model": "reversion.version", "pk": 6446, "fields": {"revision": 2716, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6447, "fields": {"revision": 2716, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6448, "fields": {"revision": 2716, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6449, "fields": {"revision": 2717, "object_id": "f1cb32a5-e8fb-4d9a-9a3b-3c719c0b2221", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f1cb32a5-e8fb-4d9a-9a3b-3c719c0b2221\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.046Z\", \"registration\": \"445ad606-b9c8-4c45-8842-e1e8eafa7c05\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PATE G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2004-121\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-05\", \"application_outcome_notification_date\": \"2005-10-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "George Paterson - Well Driller : 38000-25/DRI PATE G"}}, {"model": "reversion.version", "pk": 6450, "fields": {"revision": 2717, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6451, "fields": {"revision": 2717, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6452, "fields": {"revision": 2717, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6453, "fields": {"revision": 2718, "object_id": "f27229e0-7f05-4979-8b30-6aeae8e8bfc9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f27229e0-7f05-4979-8b30-6aeae8e8bfc9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.052Z\", \"registration\": \"6fb735f1-702c-44c1-b5df-be93aa63d998\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BARR A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-13\", \"application_outcome_notification_date\": \"2006-07-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Art Barr - Pump Installer : 38000-25/PUMP BARR A"}}, {"model": "reversion.version", "pk": 6454, "fields": {"revision": 2718, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6455, "fields": {"revision": 2718, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6456, "fields": {"revision": 2718, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6457, "fields": {"revision": 2719, "object_id": "f27df6bb-0272-409f-b1de-337902a0553a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f27df6bb-0272-409f-b1de-337902a0553a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.058Z\", \"registration\": \"bafd81e8-9857-417b-af6d-715a4ddd4920\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI PHIL W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-07-05\", \"application_outcome_notification_date\": \"2006-07-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Wayne Philps - Well Driller : 38000-25/DRI PHIL W"}}, {"model": "reversion.version", "pk": 6458, "fields": {"revision": 2719, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6459, "fields": {"revision": 2719, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6460, "fields": {"revision": 2719, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6461, "fields": {"revision": 2720, "object_id": "f3876ec8-90c3-468f-9001-e9ee6326bebb", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f3876ec8-90c3-468f-9001-e9ee6326bebb\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.064Z\", \"registration\": \"c5739f53-465f-4601-b7b1-d2040efa9ee3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STOO R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-16\", \"application_outcome_notification_date\": \"2006-10-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Rusty Stooksberry - Well Driller : 38000-25/DRI STOO R"}}, {"model": "reversion.version", "pk": 6462, "fields": {"revision": 2720, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6463, "fields": {"revision": 2720, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6464, "fields": {"revision": 2720, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6465, "fields": {"revision": 2721, "object_id": "f3ce8549-a1c7-464d-8117-c989f2193323", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f3ce8549-a1c7-464d-8117-c989f2193323\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.069Z\", \"registration\": \"c84644cf-99a1-455e-b574-980c158c9c50\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MCGL D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0034-WW-90\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-30\", \"application_outcome_notification_date\": \"2005-03-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Derek McGladdery - Well Driller : 38000-25/DRI MCGL D"}}, {"model": "reversion.version", "pk": 6466, "fields": {"revision": 2721, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6467, "fields": {"revision": 2721, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6468, "fields": {"revision": 2721, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6469, "fields": {"revision": 2722, "object_id": "f3e4a703-a579-4ade-9b30-3a50c15ae2ae", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f3e4a703-a579-4ade-9b30-3a50c15ae2ae\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.075Z\", \"registration\": \"94f8d756-5fdd-4fc9-81d4-04fe4bc71cd0\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SMIT D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2007-10-02\", \"application_outcome_notification_date\": \"2007-10-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dave Smith - Pump Installer : 38000-25/PUMP SMIT D"}}, {"model": "reversion.version", "pk": 6470, "fields": {"revision": 2722, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6471, "fields": {"revision": 2722, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6472, "fields": {"revision": 2722, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6473, "fields": {"revision": 2723, "object_id": "f4045355-3617-4a85-b0fd-ef3d1c200aa2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f4045355-3617-4a85-b0fd-ef3d1c200aa2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.081Z\", \"registration\": \"49c91f6c-6cb1-4f5f-aa5e-8cfa0f18e765\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHA A\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Al Schaeffer - Pump Installer : 38000-25/PUMP SCHA A"}}, {"model": "reversion.version", "pk": 6474, "fields": {"revision": 2723, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6475, "fields": {"revision": 2723, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6476, "fields": {"revision": 2723, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6477, "fields": {"revision": 2724, "object_id": "f442be13-88b9-48cd-a77a-b1737a69731c", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f442be13-88b9-48cd-a77a-b1737a69731c\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.087Z\", \"registration\": \"cb31aa4e-e560-46e4-8374-cb1b434c1657\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MEWS K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-07\", \"application_outcome_notification_date\": \"2005-09-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kevin Mews - Well Driller : 38000-25/DRI MEWS K"}}, {"model": "reversion.version", "pk": 6478, "fields": {"revision": 2724, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6479, "fields": {"revision": 2724, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6480, "fields": {"revision": 2724, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6481, "fields": {"revision": 2725, "object_id": "f47020dc-ebac-4466-a2d6-8a93aecf3b42", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f47020dc-ebac-4466-a2d6-8a93aecf3b42\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.093Z\", \"registration\": \"626d4ab3-5fb5-4ad1-a07c-fa0969362d4d\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI PETE JA\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-30\", \"application_outcome_notification_date\": \"2006-10-30\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jason Peterson - Well Driller : 38000-25/DRI PETE JA"}}, {"model": "reversion.version", "pk": 6482, "fields": {"revision": 2725, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6483, "fields": {"revision": 2725, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6484, "fields": {"revision": 2725, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6485, "fields": {"revision": 2726, "object_id": "f48b601f-3706-4147-919d-ecef849ea581", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f48b601f-3706-4147-919d-ecef849ea581\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.098Z\", \"registration\": \"2352686a-02d4-4239-a64f-21bf4777543a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI YEO L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-13\", \"application_outcome_notification_date\": \"2005-12-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lyle Yeo - Well Driller : 38000-25/DRI YEO L"}}, {"model": "reversion.version", "pk": 6486, "fields": {"revision": 2726, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6487, "fields": {"revision": 2726, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6488, "fields": {"revision": 2726, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6489, "fields": {"revision": 2727, "object_id": "f4f8143c-c615-45bc-90b4-a874ac3d0bf2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f4f8143c-c615-45bc-90b4-a874ac3d0bf2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.104Z\", \"registration\": \"aa3b40af-9de9-4801-8b2f-2916123ff0ef\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WEBB M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-146\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-13\", \"application_outcome_notification_date\": \"2010-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark Webb - Well Driller : 38000-25/DRI WEBB M"}}, {"model": "reversion.version", "pk": 6490, "fields": {"revision": 2727, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6491, "fields": {"revision": 2727, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6492, "fields": {"revision": 2727, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6493, "fields": {"revision": 2728, "object_id": "f58c4f82-1f68-4e8a-b50c-62aedb7d3ee1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f58c4f82-1f68-4e8a-b50c-62aedb7d3ee1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.110Z\", \"registration\": \"bc6f99ac-0cc9-494d-9e3c-98d08044c19c\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BARR O\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0002-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-02\", \"application_outcome_notification_date\": \"2008-04-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Owen Barrett - Well Driller : 38000-25/DRI BARR O"}}, {"model": "reversion.version", "pk": 6494, "fields": {"revision": 2728, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6495, "fields": {"revision": 2728, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6496, "fields": {"revision": 2728, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6497, "fields": {"revision": 2729, "object_id": "f5d4df4f-01c7-4f4d-afa7-e43362711c19", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f5d4df4f-01c7-4f4d-afa7-e43362711c19\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.116Z\", \"registration\": \"7b96c8d0-1a41-4f0b-b1fa-fa7b4ae256f3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI BATE D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-02\", \"application_outcome_notification_date\": \"2005-12-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darryl Bates - Well Driller : 38000-25/DRI BATE D"}}, {"model": "reversion.version", "pk": 6498, "fields": {"revision": 2729, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6499, "fields": {"revision": 2729, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6500, "fields": {"revision": 2729, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6501, "fields": {"revision": 2730, "object_id": "f64b69ee-c243-48d9-9a0b-697e8348c4f0", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f64b69ee-c243-48d9-9a0b-697e8348c4f0\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.121Z\", \"registration\": \"edfcf2a8-f379-4db0-942a-7ef453a88c50\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI WANG D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0040-WW-94\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-09-26\", \"application_outcome_notification_date\": \"2005-09-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darrell Wangler - Well Driller : 38000-25/DRI WANG D"}}, {"model": "reversion.version", "pk": 6502, "fields": {"revision": 2730, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6503, "fields": {"revision": 2730, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6504, "fields": {"revision": 2730, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6505, "fields": {"revision": 2731, "object_id": "f64bb7d4-176a-460d-8c70-dec7a1b485b9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f64bb7d4-176a-460d-8c70-dec7a1b485b9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.127Z\", \"registration\": \"5fd1d660-ee90-4bc2-8603-ef027d29f02a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI STEW S\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-151\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-12-10\", \"application_outcome_notification_date\": \"2008-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Scott Steward - Well Driller : 38000-25/DRI STEW S"}}, {"model": "reversion.version", "pk": 6506, "fields": {"revision": 2731, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6507, "fields": {"revision": 2731, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6508, "fields": {"revision": 2731, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6509, "fields": {"revision": 2732, "object_id": "f66a045b-9c76-4f51-9247-615f0fd3031b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f66a045b-9c76-4f51-9247-615f0fd3031b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.133Z\", \"registration\": \"58ec93a2-47d8-40a5-a5c1-73dd75f2370a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI SMIT R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-02-26\", \"application_outcome_notification_date\": \"2006-02-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Randall Smithson - Well Driller : 38000-25/DRI SMIT R"}}, {"model": "reversion.version", "pk": 6510, "fields": {"revision": 2732, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6511, "fields": {"revision": 2732, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6512, "fields": {"revision": 2732, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6513, "fields": {"revision": 2733, "object_id": "f77d4d92-f7ab-436c-991f-af66e811cc0a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f77d4d92-f7ab-436c-991f-af66e811cc0a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.139Z\", \"registration\": \"6d3ffe0c-60ea-42ef-8bab-82c822f3f8d6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI THOM A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Andrew Thompson - Well Driller : 38000-25/DRI THOM A"}}, {"model": "reversion.version", "pk": 6514, "fields": {"revision": 2733, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6515, "fields": {"revision": 2733, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6516, "fields": {"revision": 2733, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6517, "fields": {"revision": 2734, "object_id": "f78fbeda-cbfe-4ec4-b2da-6ee671984792", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f78fbeda-cbfe-4ec4-b2da-6ee671984792\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.144Z\", \"registration\": \"2ca670aa-0a52-4c60-bf27-ed12146c0842\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI GIBB G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-02\", \"application_outcome_notification_date\": \"2005-11-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Gibbons - Well Driller : 38000-25/DRI GIBB G"}}, {"model": "reversion.version", "pk": 6518, "fields": {"revision": 2734, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6519, "fields": {"revision": 2734, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6520, "fields": {"revision": 2734, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6521, "fields": {"revision": 2735, "object_id": "f7a4974d-8071-400f-aad8-1d2d0abf4095", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f7a4974d-8071-400f-aad8-1d2d0abf4095\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.150Z\", \"registration\": \"db325d9f-5ecc-41cd-b177-11492436c8be\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP INGR M\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-12-05\", \"application_outcome_notification_date\": \"2012-12-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Makenzie Ingram - Pump Installer : 38000-25/PUMP INGR M"}}, {"model": "reversion.version", "pk": 6522, "fields": {"revision": 2735, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6523, "fields": {"revision": 2735, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6524, "fields": {"revision": 2735, "object_id": "1886daa8-e799-49f0-9034-33d02bad543d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"1886daa8-e799-49f0-9034-33d02bad543d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"PUMP\", \"name\": \"Ground Water Pump Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Pump Installer Ground Water Pump Technician Certificate"}}, {"model": "reversion.version", "pk": 6525, "fields": {"revision": 2736, "object_id": "f7a6b250-6b79-4fb8-8c04-c7924adbeb23", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f7a6b250-6b79-4fb8-8c04-c7924adbeb23\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.156Z\", \"registration\": \"532de9fd-1ff1-4ce8-81f8-7d150bb9a11f\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI HOEC T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-152\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-05-05\", \"application_outcome_notification_date\": \"2008-05-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Timothy Hoechsmann - Well Driller : 38000-25/DRI HOEC T"}}, {"model": "reversion.version", "pk": 6526, "fields": {"revision": 2736, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6527, "fields": {"revision": 2736, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6528, "fields": {"revision": 2736, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6529, "fields": {"revision": 2737, "object_id": "f8390e2a-1f17-4867-b7e2-e4c6319ea3db", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f8390e2a-1f17-4867-b7e2-e4c6319ea3db\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.161Z\", \"registration\": \"13cd2a52-4312-4329-8502-a0defcf1b6d3\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STAN D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Douglas Stanvick - Well Driller : 38000-25/DRI STAN D"}}, {"model": "reversion.version", "pk": 6530, "fields": {"revision": 2737, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6531, "fields": {"revision": 2737, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6532, "fields": {"revision": 2737, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6533, "fields": {"revision": 2738, "object_id": "f881bb11-f6af-428f-ab02-1fbf65f14d85", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f881bb11-f6af-428f-ab02-1fbf65f14d85\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.167Z\", \"registration\": \"339ccb1b-3034-42d4-b4ac-bea5b07cd5ca\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI LENA D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-20\", \"application_outcome_notification_date\": \"2006-10-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Donald Lenard - Well Driller : 38000-25/DRI LENA D"}}, {"model": "reversion.version", "pk": 6534, "fields": {"revision": 2738, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6535, "fields": {"revision": 2738, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6536, "fields": {"revision": 2738, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6537, "fields": {"revision": 2739, "object_id": "f8cef9e0-cec2-41ed-9262-af39fa6e1e78", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f8cef9e0-cec2-41ed-9262-af39fa6e1e78\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.173Z\", \"registration\": \"fe8b27e1-8d88-4a34-8e80-77e47da22b08\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI PETE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-12-07\", \"application_outcome_notification_date\": \"2005-12-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jacob Peters - Well Driller : 38000-25/DRI PETE J"}}, {"model": "reversion.version", "pk": 6538, "fields": {"revision": 2739, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6539, "fields": {"revision": 2739, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6540, "fields": {"revision": 2739, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6541, "fields": {"revision": 2740, "object_id": "f8cfcaae-398e-4958-8345-3847f9db3318", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f8cfcaae-398e-4958-8345-3847f9db3318\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.179Z\", \"registration\": \"97edce28-ed3b-4629-9f7e-6cb4d8408aa8\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FLET L\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"00025-WW-08\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-25\", \"application_outcome_notification_date\": \"2008-04-25\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Logan Flett - Well Driller : 38000-25/DRI FLET L"}}, {"model": "reversion.version", "pk": 6542, "fields": {"revision": 2740, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6543, "fields": {"revision": 2740, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6544, "fields": {"revision": 2740, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6545, "fields": {"revision": 2741, "object_id": "f93aa960-43c0-40de-b8d9-dfbab930f26e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f93aa960-43c0-40de-b8d9-dfbab930f26e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.185Z\", \"registration\": \"ebb2910b-eb16-46c5-ba1e-f9ebe8aad172\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI IVEN B\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bill Ivens - Well Driller : 38000-25/DRI IVEN B"}}, {"model": "reversion.version", "pk": 6546, "fields": {"revision": 2741, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6547, "fields": {"revision": 2741, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6548, "fields": {"revision": 2741, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6549, "fields": {"revision": 2742, "object_id": "f9878569-ed3c-4a5f-b9b4-a9254c32a72a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f9878569-ed3c-4a5f-b9b4-a9254c32a72a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.190Z\", \"registration\": \"1c9c1909-569c-4794-83ca-7f0a4a235b98\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ANDE P\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2003-099\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-15\", \"application_outcome_notification_date\": \"2006-06-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Paul Anderson - Well Driller : 38000-25/DRI ANDE P"}}, {"model": "reversion.version", "pk": 6550, "fields": {"revision": 2742, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6551, "fields": {"revision": 2742, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6552, "fields": {"revision": 2742, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6553, "fields": {"revision": 2743, "object_id": "f9ab4ec6-ba5e-4645-ba5f-bd1da57dba41", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f9ab4ec6-ba5e-4645-ba5f-bd1da57dba41\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.196Z\", \"registration\": \"cc2518d1-cbfb-401a-8be0-3dffd3a03d73\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP BLEN R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-18\", \"application_outcome_notification_date\": \"2006-09-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Roger Blenkarn - Pump Installer : 38000-25/PUMP BLEN R"}}, {"model": "reversion.version", "pk": 6554, "fields": {"revision": 2743, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6555, "fields": {"revision": 2743, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6556, "fields": {"revision": 2743, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6557, "fields": {"revision": 2744, "object_id": "f9b63e0b-d7ef-4e68-9bd9-2e9f8b31b4ca", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"f9b63e0b-d7ef-4e68-9bd9-2e9f8b31b4ca\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.202Z\", \"registration\": \"eb3f344f-e0c6-4f02-92d9-85afb27c3f9a\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI CUDL F\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0015-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-04-16\", \"application_outcome_notification_date\": \"2008-04-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Fred Cudlipp - Well Driller : 38000-25/DRI CUDL F"}}, {"model": "reversion.version", "pk": 6558, "fields": {"revision": 2744, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6559, "fields": {"revision": 2744, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6560, "fields": {"revision": 2744, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6561, "fields": {"revision": 2745, "object_id": "fa1044ab-f0f3-4081-be23-4c6cc729a46e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fa1044ab-f0f3-4081-be23-4c6cc729a46e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.208Z\", \"registration\": \"32097004-8f9b-4f62-a6e5-b37ca0494aec\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GILL J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent; 0011-WW-97\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Joel Gillin - Well Driller : 38000-25/DRI GILL J"}}, {"model": "reversion.version", "pk": 6562, "fields": {"revision": 2745, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6563, "fields": {"revision": 2745, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6564, "fields": {"revision": 2745, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6565, "fields": {"revision": 2746, "object_id": "fa7b1eb6-9fdd-4c03-9823-bba06396e536", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fa7b1eb6-9fdd-4c03-9823-bba06396e536\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.214Z\", \"registration\": \"b52c43dd-80a1-448f-a607-ea86b4d7285f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI WISH D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-13\", \"application_outcome_notification_date\": \"2006-09-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Wishart - Well Driller : 38000-25/DRI WISH D"}}, {"model": "reversion.version", "pk": 6566, "fields": {"revision": 2746, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6567, "fields": {"revision": 2746, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6568, "fields": {"revision": 2746, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6569, "fields": {"revision": 2747, "object_id": "faaa8707-40c6-4089-80d5-b9a6255c6a7b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"faaa8707-40c6-4089-80d5-b9a6255c6a7b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.220Z\", \"registration\": \"cf52cb3b-4435-46a0-a512-e233c02ffa0f\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHL M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-23\", \"application_outcome_notification_date\": \"2005-11-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Marcus Schlick - Well Driller : 38000-25/DRI SCHL M"}}, {"model": "reversion.version", "pk": 6570, "fields": {"revision": 2747, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6571, "fields": {"revision": 2747, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6572, "fields": {"revision": 2747, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6573, "fields": {"revision": 2748, "object_id": "fab030c3-945f-4753-96f8-de2de3b64682", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fab030c3-945f-4753-96f8-de2de3b64682\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.225Z\", \"registration\": \"3f047bfe-2d0a-4c81-8e60-88d5b3a6d52d\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI SCHI K\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"035/696889-40628A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2014-03-20\", \"application_outcome_notification_date\": \"2014-03-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kris Schindel - Well Driller : 38000-25/DRI SCHI K"}}, {"model": "reversion.version", "pk": 6574, "fields": {"revision": 2748, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6575, "fields": {"revision": 2748, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6576, "fields": {"revision": 2748, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6577, "fields": {"revision": 2749, "object_id": "fb4153c9-bf4d-48a3-ac1b-221ea5a2e22e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fb4153c9-bf4d-48a3-ac1b-221ea5a2e22e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.232Z\", \"registration\": \"36a5f9b7-ada6-4302-954c-3e3af65daa59\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HOLM A\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-04-15\", \"application_outcome_notification_date\": \"2005-04-15\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Alan Holmstrup - Well Driller : 38000-25/DRI HOLM A"}}, {"model": "reversion.version", "pk": 6578, "fields": {"revision": 2749, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6579, "fields": {"revision": 2749, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6580, "fields": {"revision": 2749, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6581, "fields": {"revision": 2750, "object_id": "fb4c7499-f5a1-4f0e-a7b4-c329e75abd94", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fb4c7499-f5a1-4f0e-a7b4-c329e75abd94\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.237Z\", \"registration\": \"2957083a-bbb5-4b86-b7da-e077d36ceb11\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP GRIFF G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-11\", \"application_outcome_notification_date\": \"2006-09-11\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gordon Griffiths - Pump Installer : 38000-25/PUMP GRIFF G"}}, {"model": "reversion.version", "pk": 6582, "fields": {"revision": 2750, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6583, "fields": {"revision": 2750, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6584, "fields": {"revision": 2750, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6585, "fields": {"revision": 2751, "object_id": "fba4dd6c-8b3a-4e5f-844e-018f8deab1cd", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fba4dd6c-8b3a-4e5f-844e-018f8deab1cd\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.243Z\", \"registration\": \"59302955-228a-4c6a-9144-93b7e47c8bf3\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI DIGG R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-13\", \"application_outcome_notification_date\": \"2006-10-13\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Richard Diggle - Well Driller : 38000-25/DRI DIGG R"}}, {"model": "reversion.version", "pk": 6586, "fields": {"revision": 2751, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6587, "fields": {"revision": 2751, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6588, "fields": {"revision": 2751, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6589, "fields": {"revision": 2752, "object_id": "fbeeaeff-5e69-4fd4-9a2e-ac74f97e6873", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fbeeaeff-5e69-4fd4-9a2e-ac74f97e6873\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.249Z\", \"registration\": \"1651d08a-658e-401b-93ba-551d3e761b6d\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP PRIC P\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-04-07\", \"application_outcome_notification_date\": \"2006-04-07\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Patrick Price - Pump Installer : 38000-25/PUMP PRIC P"}}, {"model": "reversion.version", "pk": 6590, "fields": {"revision": 2752, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6591, "fields": {"revision": 2752, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6592, "fields": {"revision": 2752, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6593, "fields": {"revision": 2753, "object_id": "fc0c38e0-6d3c-484d-9b53-04de9a3d0fcc", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fc0c38e0-6d3c-484d-9b53-04de9a3d0fcc\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.255Z\", \"registration\": \"01fef64c-9d6f-465a-8f0d-33a9eaded25a\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI JONE L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lewis Jones - Well Driller : 38000-25/DRI JONE L"}}, {"model": "reversion.version", "pk": 6594, "fields": {"revision": 2753, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6595, "fields": {"revision": 2753, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6596, "fields": {"revision": 2753, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6597, "fields": {"revision": 2754, "object_id": "fc1cae14-3690-493c-a61c-f399437ad88e", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fc1cae14-3690-493c-a61c-f399437ad88e\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.260Z\", \"registration\": \"f745df85-cd68-4a54-b315-c13df5fa4b27\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI KELL D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-06-02\", \"application_outcome_notification_date\": \"2006-06-02\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Dylan Kelly - Well Driller : 38000-25/DRI KELL D"}}, {"model": "reversion.version", "pk": 6598, "fields": {"revision": 2754, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6599, "fields": {"revision": 2754, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6600, "fields": {"revision": 2754, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6601, "fields": {"revision": 2755, "object_id": "fc4b7bbe-be42-46c3-936d-57d0f725418d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fc4b7bbe-be42-46c3-936d-57d0f725418d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.266Z\", \"registration\": \"a4281f58-21d2-4c3e-8fee-c7a58f0c0c58\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI SMIT D\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-149\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-04-20\", \"application_outcome_notification_date\": \"2011-04-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Daryl Smith - Well Driller : 38000-25/DRI SMIT D"}}, {"model": "reversion.version", "pk": 6602, "fields": {"revision": 2755, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6603, "fields": {"revision": 2755, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6604, "fields": {"revision": 2755, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6605, "fields": {"revision": 2756, "object_id": "fcb59abd-fcfd-4b5d-bdc5-3b3d255a53ba", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fcb59abd-fcfd-4b5d-bdc5-3b3d255a53ba\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.272Z\", \"registration\": \"46f089d2-f74e-45d6-a716-d15c7ccbb707\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP MCRA G\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-18\", \"application_outcome_notification_date\": \"2006-10-18\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Michael Meier - Pump Installer : 38000-25/PUMP MCRA G"}}, {"model": "reversion.version", "pk": 6606, "fields": {"revision": 2756, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6607, "fields": {"revision": 2756, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6608, "fields": {"revision": 2756, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6609, "fields": {"revision": 2757, "object_id": "fceddcf2-693c-44b6-bdcd-82999c2953e1", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fceddcf2-693c-44b6-bdcd-82999c2953e1\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.277Z\", \"registration\": \"8035aad5-198c-49ff-a863-6f50654aaf57\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FITZ W\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "William Fitzgerald - Well Driller : 38000-25/DRI FITZ W"}}, {"model": "reversion.version", "pk": 6610, "fields": {"revision": 2757, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6611, "fields": {"revision": 2757, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6612, "fields": {"revision": 2757, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6613, "fields": {"revision": 2758, "object_id": "fd0bc1cd-61bc-45b0-8b81-c980621b6fe2", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fd0bc1cd-61bc-45b0-8b81-c980621b6fe2\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.283Z\", \"registration\": \"8da20afd-1043-41f6-b57f-999193824f50\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MACN M\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"4a059930-265f-43f5-9dbb-c71862ccc5b5\", \"primary_certificate_no\": \"GWDT-2011-181\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2016-04-27\", \"application_outcome_notification_date\": \"2016-04-27\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Mark MacNeil - Well Driller : 38000-25/DRI MACN M"}}, {"model": "reversion.version", "pk": 6614, "fields": {"revision": 2758, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6615, "fields": {"revision": 2758, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6616, "fields": {"revision": 2758, "object_id": "4a059930-265f-43f5-9dbb-c71862ccc5b5", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"4a059930-265f-43f5-9dbb-c71862ccc5b5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"CGWA\", \"registries_activity\": \"DRILL\", \"name\": \"Ground Water Drilling Technician Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "CGWA Well Driller Ground Water Drilling Technician Certificate"}}, {"model": "reversion.version", "pk": 6617, "fields": {"revision": 2759, "object_id": "fd31452a-0876-4195-bc07-d596f0a13845", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fd31452a-0876-4195-bc07-d596f0a13845\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.289Z\", \"registration\": \"b9bf5533-5eed-4081-ab24-ac2c73bfcae3\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI GOBE T\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-08-04\", \"application_outcome_notification_date\": \"2006-08-04\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Trevor Gobert - Well Driller : 38000-25/DRI GOBE T"}}, {"model": "reversion.version", "pk": 6618, "fields": {"revision": 2759, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6619, "fields": {"revision": 2759, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6620, "fields": {"revision": 2759, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6621, "fields": {"revision": 2760, "object_id": "fd6adab2-4e65-4edd-974e-56ae84b53cb5", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fd6adab2-4e65-4edd-974e-56ae84b53cb5\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.295Z\", \"registration\": \"fca7fc7b-ee3e-4906-b547-8462e54967e6\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI LANT C\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-164\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2012-12-10\", \"application_outcome_notification_date\": \"2012-12-10\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Chris Lanting - Well Driller : 38000-25/DRI LANT C"}}, {"model": "reversion.version", "pk": 6622, "fields": {"revision": 2760, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6623, "fields": {"revision": 2760, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6624, "fields": {"revision": 2760, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6625, "fields": {"revision": 2761, "object_id": "fda2199d-af25-4e26-8bfe-bc9af85f76fa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fda2199d-af25-4e26-8bfe-bc9af85f76fa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.300Z\", \"registration\": \"11e35c0f-6607-477e-b477-4460ce587587\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CALD H\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-05-29\", \"application_outcome_notification_date\": \"2005-05-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Harry Caldwell - Well Driller : 38000-25/DRI CALD H"}}, {"model": "reversion.version", "pk": 6626, "fields": {"revision": 2761, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6627, "fields": {"revision": 2761, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6628, "fields": {"revision": 2761, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6629, "fields": {"revision": 2762, "object_id": "fda9d6a5-cc06-484f-aeda-bd164c414b49", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fda9d6a5-cc06-484f-aeda-bd164c414b49\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.307Z\", \"registration\": \"266cbbc4-d70f-4312-b9ba-8bba25f41956\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP SCHR D\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-16\", \"application_outcome_notification_date\": \"2006-09-16\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "David Schroeder - Pump Installer : 38000-25/PUMP SCHR D"}}, {"model": "reversion.version", "pk": 6630, "fields": {"revision": 2762, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6631, "fields": {"revision": 2762, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6632, "fields": {"revision": 2762, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6633, "fields": {"revision": 2763, "object_id": "fdb0be3a-4acb-48b1-a9ea-50ee36cc3e22", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fdb0be3a-4acb-48b1-a9ea-50ee36cc3e22\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.313Z\", \"registration\": \"01fef64c-9d6f-465a-8f0d-33a9eaded25a\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI JONE L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-23\", \"application_outcome_notification_date\": \"2006-10-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lewis Jones - Well Driller : 38000-25/DRI JONE L"}}, {"model": "reversion.version", "pk": 6634, "fields": {"revision": 2763, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6635, "fields": {"revision": 2763, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6636, "fields": {"revision": 2763, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6637, "fields": {"revision": 2764, "object_id": "fdb760a9-55ef-4c54-932b-660b707bcf03", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fdb760a9-55ef-4c54-932b-660b707bcf03\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.319Z\", \"registration\": \"74dfcccd-5ebe-4c54-8da7-c9ae808aed48\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI STAN R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-03-28\", \"application_outcome_notification_date\": \"2006-03-28\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Stanvick - Well Driller : 38000-25/DRI STAN R"}}, {"model": "reversion.version", "pk": 6638, "fields": {"revision": 2764, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6639, "fields": {"revision": 2764, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6640, "fields": {"revision": 2764, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6641, "fields": {"revision": 2765, "object_id": "fdc59c57-a89e-4522-b399-206e443f115b", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fdc59c57-a89e-4522-b399-206e443f115b\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.324Z\", \"registration\": \"dce084b1-0a18-47b2-91a8-ecb28ec1a340\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FYFE K\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-10-06\", \"application_outcome_notification_date\": \"2006-10-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Kenneth Fyfe - Well Driller : 38000-25/DRI FYFE K"}}, {"model": "reversion.version", "pk": 6642, "fields": {"revision": 2765, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6643, "fields": {"revision": 2765, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6644, "fields": {"revision": 2765, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6645, "fields": {"revision": 2766, "object_id": "fe1ac632-cf57-4b36-b1db-55ca5535ddfa", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fe1ac632-cf57-4b36-b1db-55ca5535ddfa\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.330Z\", \"registration\": \"57ff647b-a321-4459-98b5-b637c0430719\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI MURD J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-09-06\", \"application_outcome_notification_date\": \"2006-09-06\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Jim Murdock - Well Driller : 38000-25/DRI MURD J"}}, {"model": "reversion.version", "pk": 6646, "fields": {"revision": 2766, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6647, "fields": {"revision": 2766, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6648, "fields": {"revision": 2766, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6649, "fields": {"revision": 2767, "object_id": "fe2b9c07-2451-4f01-9f85-95d16aeeb5f6", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fe2b9c07-2451-4f01-9f85-95d16aeeb5f6\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.335Z\", \"registration\": \"ed94d274-04a3-4205-a59f-b45063da1593\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GENE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-06-23\", \"application_outcome_notification_date\": \"2005-06-23\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Genereux - Well Driller : 38000-25/DRI GENE J"}}, {"model": "reversion.version", "pk": 6650, "fields": {"revision": 2767, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6651, "fields": {"revision": 2767, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6652, "fields": {"revision": 2767, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6653, "fields": {"revision": 2768, "object_id": "fe6eaf87-612f-4d85-b68f-0b93b81ae027", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fe6eaf87-612f-4d85-b68f-0b93b81ae027\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.341Z\", \"registration\": \"532de9fd-1ff1-4ce8-81f8-7d150bb9a11f\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI HOEC T\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2008-152\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2008-05-05\", \"application_outcome_notification_date\": \"2008-05-05\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Timothy Hoechsmann - Well Driller : 38000-25/DRI HOEC T"}}, {"model": "reversion.version", "pk": 6654, "fields": {"revision": 2768, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6655, "fields": {"revision": 2768, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6656, "fields": {"revision": 2768, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6657, "fields": {"revision": 2769, "object_id": "fe82dce5-25a9-4cca-aa93-877dbff72029", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fe82dce5-25a9-4cca-aa93-877dbff72029\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.347Z\", \"registration\": \"1961ddde-48d7-433d-a18a-5aee0dd47a13\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP LEFR L\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-11-20\", \"application_outcome_notification_date\": \"2006-11-20\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Larry Le Francois - Pump Installer : 38000-25/PUMP LEFR L"}}, {"model": "reversion.version", "pk": 6658, "fields": {"revision": 2769, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6659, "fields": {"revision": 2769, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6660, "fields": {"revision": 2769, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6661, "fields": {"revision": 2770, "object_id": "fe90edc8-4d0a-476c-ac04-30252a679386", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fe90edc8-4d0a-476c-ac04-30252a679386\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.352Z\", \"registration\": \"eef5988f-a5cc-4675-8b5c-0550877e88e6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI CARL G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2009-165\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-09-21\", \"application_outcome_notification_date\": \"2010-09-21\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory Carlos - Well Driller : 38000-25/DRI CARL G"}}, {"model": "reversion.version", "pk": 6662, "fields": {"revision": 2770, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6663, "fields": {"revision": 2770, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6664, "fields": {"revision": 2770, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6665, "fields": {"revision": 2771, "object_id": "fea4a6a9-6504-4616-806c-9de2f245507d", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fea4a6a9-6504-4616-806c-9de2f245507d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.358Z\", \"registration\": \"da64cbb6-68c7-406f-a79a-fbac8c0f0091\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI ABER R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-08\", \"application_outcome_notification_date\": \"2005-08-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ronald Abercrombie - Well Driller : 38000-25/DRI ABER R"}}, {"model": "reversion.version", "pk": 6666, "fields": {"revision": 2771, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6667, "fields": {"revision": 2771, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6668, "fields": {"revision": 2771, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6669, "fields": {"revision": 2772, "object_id": "feb4513d-9202-426c-8eea-01c7798a9242", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"feb4513d-9202-426c-8eea-01c7798a9242\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.363Z\", \"registration\": \"b7999ea0-bc30-446f-9cc6-b55305341e8c\", \"subactivity\": \"PUMPINST\", \"file_no\": \"38000-25/PUMP CROS R\", \"proof_of_age\": null, \"registrar_notes\": \"Pseudo-Applications until ACTION_TRACKING tables are fixed. \", \"reason_denied\": null, \"primary_certificate\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"primary_certificate_no\": \"N/A\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-03-29\", \"application_outcome_notification_date\": \"2005-03-29\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ron Crosby - Pump Installer : 38000-25/PUMP CROS R"}}, {"model": "reversion.version", "pk": 6670, "fields": {"revision": 2772, "object_id": "PUMPINST", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"PUMPINST\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"PUMP\", \"description\": \"Pump Installer\", \"display_order\": 8, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Pump Installer"}}, {"model": "reversion.version", "pk": 6671, "fields": {"revision": 2772, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6672, "fields": {"revision": 2772, "object_id": "a53d3f1e-65eb-46b7-8999-e662d654df77", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"a53d3f1e-65eb-46b7-8999-e662d654df77\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"PUMP\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Pump Installer Grand-parent"}}, {"model": "reversion.version", "pk": 6673, "fields": {"revision": 2773, "object_id": "fee909b7-c823-4e23-b226-bb1347c699f9", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"fee909b7-c823-4e23-b226-bb1347c699f9\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.369Z\", \"registration\": \"2668ead0-8a86-4582-82ba-1d92c07ef155\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI FYFE J\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"0012-WW-87\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-10-14\", \"application_outcome_notification_date\": \"2005-10-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "James Fyfe - Well Driller : 38000-25/DRI FYFE J"}}, {"model": "reversion.version", "pk": 6674, "fields": {"revision": 2773, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6675, "fields": {"revision": 2773, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6676, "fields": {"revision": 2773, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6677, "fields": {"revision": 2774, "object_id": "feea3857-8fd0-44e9-9c46-7a11d596a21f", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"feea3857-8fd0-44e9-9c46-7a11d596a21f\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.375Z\", \"registration\": \"c533d5ac-9db1-428a-9b8d-03772f890049\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI ENGL G\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-08\", \"application_outcome_notification_date\": \"2005-11-08\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Gregory English - Well Driller : 38000-25/DRI ENGL G"}}, {"model": "reversion.version", "pk": 6678, "fields": {"revision": 2774, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6679, "fields": {"revision": 2774, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6680, "fields": {"revision": 2774, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6681, "fields": {"revision": 2775, "object_id": "ff134690-8cc1-40bd-bb28-eb8c9d72b580", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ff134690-8cc1-40bd-bb28-eb8c9d72b580\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.380Z\", \"registration\": \"f34fe6e0-584c-47cb-8e8e-58a445822ebc\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI BERN L\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2006-01-09\", \"application_outcome_notification_date\": \"2006-01-09\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Lorne Bernard - Well Driller : 38000-25/DRI BERN L"}}, {"model": "reversion.version", "pk": 6682, "fields": {"revision": 2775, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6683, "fields": {"revision": 2775, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6684, "fields": {"revision": 2775, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6685, "fields": {"revision": 2776, "object_id": "ff701bc3-3379-43c8-9154-c5635c5a1e8a", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ff701bc3-3379-43c8-9154-c5635c5a1e8a\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.386Z\", \"registration\": \"569b64a9-e45b-41ec-a4bd-b6651dd503e6\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI GARD R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-173\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2010-10-26\", \"application_outcome_notification_date\": \"2010-10-26\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Ryan Gardiner - Well Driller : 38000-25/DRI GARD R"}}, {"model": "reversion.version", "pk": 6686, "fields": {"revision": 2776, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6687, "fields": {"revision": 2776, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6688, "fields": {"revision": 2776, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6689, "fields": {"revision": 2777, "object_id": "ffa86efa-3e99-4ccd-8f28-a104ee013406", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ffa86efa-3e99-4ccd-8f28-a104ee013406\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.392Z\", \"registration\": \"7feeb12f-b87e-4b20-8679-4242400f0713\", \"subactivity\": \"WATER\", \"file_no\": \"38000-25/DRI FAAS J\", \"proof_of_age\": null, \"registrar_notes\": \"Registered prior to 2016-FEB-29, assigned all Driller Classes and qualified to drill \", \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"GWDT-2010-171\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2011-07-14\", \"application_outcome_notification_date\": \"2011-07-14\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Justin Faasse - Well Driller : 38000-25/DRI FAAS J"}}, {"model": "reversion.version", "pk": 6690, "fields": {"revision": 2777, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6691, "fields": {"revision": 2777, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6692, "fields": {"revision": 2777, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6693, "fields": {"revision": 2778, "object_id": "ffd78fb9-c130-4c23-b522-60adaaf8a733", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ffd78fb9-c130-4c23-b522-60adaaf8a733\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.398Z\", \"registration\": \"c15bf581-daff-4d8e-a6e4-2dfe6e61da15\", \"subactivity\": \"GEOXCHG\", \"file_no\": \"38000-25/DRI MITC D\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-08-22\", \"application_outcome_notification_date\": \"2005-08-22\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Darren Mitchell - Well Driller : 38000-25/DRI MITC D"}}, {"model": "reversion.version", "pk": 6694, "fields": {"revision": 2778, "object_id": "GEOXCHG", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOXCHG\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geoexchange Driller\", \"display_order\": 6, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geoexchange Driller"}}, {"model": "reversion.version", "pk": 6695, "fields": {"revision": 2778, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6696, "fields": {"revision": 2778, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6697, "fields": {"revision": 2779, "object_id": "ffe7c363-55b5-40b3-9259-dcb92eaaf3ed", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"ffe7c363-55b5-40b3-9259-dcb92eaaf3ed\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-06-09T00:38:04.404Z\", \"registration\": \"8c94ab27-6d8e-4b49-8dc0-ef092f2c9278\", \"subactivity\": \"GEOTECH\", \"file_no\": \"38000-25/DRI COAT R\", \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"primary_certificate_no\": \"grand-parent\", \"current_status\": \"A\", \"application_recieved_date\": null, \"application_outcome_date\": \"2005-11-17\", \"application_outcome_notification_date\": \"2005-11-17\", \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Robert Coates - Well Driller : 38000-25/DRI COAT R"}}, {"model": "reversion.version", "pk": 6698, "fields": {"revision": 2779, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6699, "fields": {"revision": 2779, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6700, "fields": {"revision": 2779, "object_id": "e368e066-137b-491a-af2a-da3bf2936e6d", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"e368e066-137b-491a-af2a-da3bf2936e6d\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"N/A\", \"registries_activity\": \"DRILL\", \"name\": \"Grand-parent\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "N/A Well Driller Grand-parent"}}, {"model": "reversion.version", "pk": 6701, "fields": {"revision": 2780, "object_id": "05a28055-a385-495b-b021-38209718823d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"05a28055-a385-495b-b021-38209718823d\", \"fields\": {\"create_user\": \"d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43\", \"create_date\": \"2018-09-26T21:50:02.159Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:02.159Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": \"company@example.com\"}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6702, "fields": {"revision": 2781, "object_id": "05a28055-a385-495b-b021-38209718823d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"05a28055-a385-495b-b021-38209718823d\", \"fields\": {\"create_user\": \"d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43\", \"create_date\": \"2018-09-26T21:50:02.159Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:04.812Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": \"company@example.com\"}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6703, "fields": {"revision": 2782, "object_id": "a47edc50-b57c-47f9-8c13-0a19d558bbf6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a47edc50-b57c-47f9-8c13-0a19d558bbf6\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:05.286Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:05.286Z\", \"name\": \"Drilling Co'; rest of name\\\\\\\\/*\\\\\\\";more name\", \"street_address\": \"address\\\\\\\";\\\\/*-- \\\\'\\\\\\\\';rest of address\", \"city\": \"1') or '1';\", \"province_state\": \"BC\", \"postal_code\": \"\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Drilling Co'; rest of name\\\\/*\\\";more name"}}, {"model": "reversion.version", "pk": 6704, "fields": {"revision": 2783, "object_id": "a47edc50-b57c-47f9-8c13-0a19d558bbf6", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"a47edc50-b57c-47f9-8c13-0a19d558bbf6\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:05.286Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:05.579Z\", \"name\": \"Drilling Co'; rest of name\\\\\\\\/*\\\\\\\";more name\", \"street_address\": \"address\\\\\\\";\\\\/*-- \\\\'\\\\\\\\';rest of address\", \"city\": \"1') or '1';\", \"province_state\": \"BC\", \"postal_code\": \"\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": \"2018-09-26T21:50:05.579Z\", \"email\": null}}]", "object_repr": "Drilling Co'; rest of name\\\\/*\\\";more name"}}, {"model": "reversion.version", "pk": 6705, "fields": {"revision": 2784, "object_id": "304fa083-802b-47ca-80ab-89853c60d3a2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"304fa083-802b-47ca-80ab-89853c60d3a2\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.154Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.154Z\", \"first_name\": \"Bobby\", \"surname\": \"Driller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": \"(555) 555-1234\", \"contact_cell\": null, \"contact_email\": \"bobby@example.com\", \"effective_date\": \"2018-09-26\", \"expired_date\": null}}]", "object_repr": "Bobby Driller"}}, {"model": "reversion.version", "pk": 6706, "fields": {"revision": 2784, "object_id": "dfefdb77-a688-44d7-9230-24f6a4a2f052", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"dfefdb77-a688-44d7-9230-24f6a4a2f052\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.161Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.161Z\", \"registries_activity\": \"DRILL\", \"person\": \"304fa083-802b-47ca-80ab-89853c60d3a2\", \"organization\": \"05a28055-a385-495b-b021-38209718823d\", \"registration_no\": null}}]", "object_repr": "Bobby Driller - Well Driller"}}, {"model": "reversion.version", "pk": 6707, "fields": {"revision": 2784, "object_id": "05a28055-a385-495b-b021-38209718823d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"05a28055-a385-495b-b021-38209718823d\", \"fields\": {\"create_user\": \"d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43\", \"create_date\": \"2018-09-26T21:50:02.159Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:04.812Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": \"company@example.com\"}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6708, "fields": {"revision": 2784, "object_id": "b8eccd20-63ff-408f-8452-d93dc9df8547", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"b8eccd20-63ff-408f-8452-d93dc9df8547\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.165Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.165Z\", \"registration\": \"dfefdb77-a688-44d7-9230-24f6a4a2f052\", \"subactivity\": \"WATER\", \"file_no\": null, \"proof_of_age\": \"PASSPORT\", \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"primary_certificate_no\": \"12345\", \"current_status\": \"P\", \"application_recieved_date\": \"2018-05-02\", \"application_outcome_date\": null, \"application_outcome_notification_date\": null, \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bobby Driller - Well Driller : None"}}, {"model": "reversion.version", "pk": 6709, "fields": {"revision": 2784, "object_id": "PASSPORT", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"PASSPORT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Passport\", \"display_order\": 2, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "PASSPORT"}}, {"model": "reversion.version", "pk": 6710, "fields": {"revision": 2784, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6711, "fields": {"revision": 2784, "object_id": "P", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"P\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Pending\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Pending"}}, {"model": "reversion.version", "pk": 6712, "fields": {"revision": 2784, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 6713, "fields": {"revision": 2784, "object_id": "53087874-51c5-4951-bb8e-a02b995001fe", "content_type": 38, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesapplication\", \"pk\": \"53087874-51c5-4951-bb8e-a02b995001fe\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.182Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.182Z\", \"registration\": \"dfefdb77-a688-44d7-9230-24f6a4a2f052\", \"subactivity\": \"WATER\", \"file_no\": null, \"proof_of_age\": null, \"registrar_notes\": null, \"reason_denied\": null, \"primary_certificate\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"primary_certificate_no\": \"67890\", \"current_status\": \"P\", \"application_recieved_date\": null, \"application_outcome_date\": null, \"application_outcome_notification_date\": null, \"removal_date\": null, \"removal_reason\": null}}]", "object_repr": "Bobby Driller - Well Driller : None"}}, {"model": "reversion.version", "pk": 6714, "fields": {"revision": 2785, "object_id": "304fa083-802b-47ca-80ab-89853c60d3a2", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"304fa083-802b-47ca-80ab-89853c60d3a2\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.154Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.479Z\", \"first_name\": \"Bobby\", \"surname\": \"Driller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": \"(555) 555-1234\", \"contact_cell\": null, \"contact_email\": \"bobby@example.com\", \"effective_date\": \"2018-09-26\", \"expired_date\": \"2018-09-26T21:50:06.479Z\"}}]", "object_repr": "Bobby Driller"}}, {"model": "reversion.version", "pk": 6715, "fields": {"revision": 2786, "object_id": "66074821-b8c6-4d49-9b35-82edb9bb9677", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"66074821-b8c6-4d49-9b35-82edb9bb9677\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.653Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.653Z\", \"first_name\": \"Bobby\", \"surname\": \"Driller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": null}}]", "object_repr": "Bobby Driller"}}, {"model": "reversion.version", "pk": 6716, "fields": {"revision": 2786, "object_id": "5b11709c-9f1d-483e-8fa4-a2001ca78e57", "content_type": 35, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.register\", \"pk\": \"5b11709c-9f1d-483e-8fa4-a2001ca78e57\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.655Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:06.655Z\", \"registries_activity\": \"DRILL\", \"person\": \"66074821-b8c6-4d49-9b35-82edb9bb9677\", \"organization\": \"05a28055-a385-495b-b021-38209718823d\", \"registration_no\": null}}]", "object_repr": "Bobby Driller - Well Driller"}}, {"model": "reversion.version", "pk": 6717, "fields": {"revision": 2786, "object_id": "05a28055-a385-495b-b021-38209718823d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"05a28055-a385-495b-b021-38209718823d\", \"fields\": {\"create_user\": \"d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43\", \"create_date\": \"2018-09-26T21:50:02.159Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:04.812Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": \"company@example.com\"}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6718, "fields": {"revision": 2787, "object_id": "66074821-b8c6-4d49-9b35-82edb9bb9677", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"66074821-b8c6-4d49-9b35-82edb9bb9677\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.653Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:08.305Z\", \"first_name\": \"Bobby\", \"surname\": \"Drillerson\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": null}}]", "object_repr": "Bobby Drillerson"}}, {"model": "reversion.version", "pk": 6719, "fields": {"revision": 2788, "object_id": "66074821-b8c6-4d49-9b35-82edb9bb9677", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"66074821-b8c6-4d49-9b35-82edb9bb9677\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.653Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:08.884Z\", \"first_name\": \"Scott\", \"surname\": \"Wells\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": null}}]", "object_repr": "Scott Wells"}}, {"model": "reversion.version", "pk": 6720, "fields": {"revision": 2789, "object_id": "66074821-b8c6-4d49-9b35-82edb9bb9677", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"66074821-b8c6-4d49-9b35-82edb9bb9677\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:06.653Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:09.271Z\", \"first_name\": \"Scott\", \"surname\": \"Wells\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": \"2018-09-26T21:50:09.271Z\"}}]", "object_repr": "Scott Wells"}}, {"model": "reversion.version", "pk": 6721, "fields": {"revision": 2790, "object_id": "05a28055-a385-495b-b021-38209718823d", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"05a28055-a385-495b-b021-38209718823d\", \"fields\": {\"create_user\": \"d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43\", \"create_date\": \"2018-09-26T21:50:02.159Z\", \"update_user\": \"testuser\", \"update_date\": \"2018-09-26T21:50:09.499Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Victoria\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": \"2018-09-26T21:50:09.499Z\", \"email\": \"company@example.com\"}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6722, "fields": {"revision": 2791, "object_id": "7711cdfd-fdf9-49b6-ae41-043dab02a78c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7711cdfd-fdf9-49b6-ae41-043dab02a78c\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:12.425Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:12.425Z\", \"first_name\": \"Bobby\", \"surname\": \"Driller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": null}}]", "object_repr": "Bobby Driller"}}, {"model": "reversion.version", "pk": 6724, "fields": {"revision": 2793, "object_id": "1eb356f2-d45d-4b83-9215-c2d6f17e62b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1eb356f2-d45d-4b83-9215-c2d6f17e62b1\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:12.685Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:12.685Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Drillerville\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6726, "fields": {"revision": 2794, "object_id": "1eb356f2-d45d-4b83-9215-c2d6f17e62b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1eb356f2-d45d-4b83-9215-c2d6f17e62b1\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:12.685Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:12.685Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Drillerville\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": null, \"email\": null}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6728, "fields": {"revision": 2795, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6729, "fields": {"revision": 2795, "object_id": "P", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"P\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Pending\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Pending"}}, {"model": "reversion.version", "pk": 6731, "fields": {"revision": 2796, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6732, "fields": {"revision": 2796, "object_id": "P", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"P\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Pending\", \"display_order\": 2, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Pending"}}, {"model": "reversion.version", "pk": 6734, "fields": {"revision": 2797, "object_id": "GEOTECH", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"GEOTECH\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Geotechnical/Environmental Driller\", \"display_order\": 4, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Geotechnical/Environmental Driller"}}, {"model": "reversion.version", "pk": 6735, "fields": {"revision": 2797, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6737, "fields": {"revision": 2798, "object_id": "PASSPORT", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"PASSPORT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Passport\", \"display_order\": 2, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "PASSPORT"}}, {"model": "reversion.version", "pk": 6738, "fields": {"revision": 2798, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6739, "fields": {"revision": 2798, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6740, "fields": {"revision": 2798, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 6742, "fields": {"revision": 2799, "object_id": "PASSPORT", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"PASSPORT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Passport\", \"display_order\": 2, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "PASSPORT"}}, {"model": "reversion.version", "pk": 6743, "fields": {"revision": 2799, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6744, "fields": {"revision": 2799, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6745, "fields": {"revision": 2799, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 6746, "fields": {"revision": 2799, "object_id": "NLACT", "content_type": 34, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.registriesremovalreason\", \"pk\": \"NLACT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"No longer actively working in Canada\", \"display_order\": 1, \"effective_date\": \"2018-06-11\", \"expired_date\": null}}]", "object_repr": "No longer actively working in Canada"}}, {"model": "reversion.version", "pk": 6748, "fields": {"revision": 2800, "object_id": "PASSPORT", "content_type": 37, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.proofofagecode\", \"pk\": \"PASSPORT\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Passport\", \"display_order\": 2, \"effective_date\": \"2018-04-26\", \"expired_date\": null}}]", "object_repr": "PASSPORT"}}, {"model": "reversion.version", "pk": 6749, "fields": {"revision": 2800, "object_id": "WATER", "content_type": 27, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.subactivitycode\", \"pk\": \"WATER\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"registries_activity\": \"DRILL\", \"description\": \"Water Well Driller\", \"display_order\": 2, \"effective_date\": \"2018-01-01\", \"expired_date\": null}}]", "object_repr": "Water Well Driller"}}, {"model": "reversion.version", "pk": 6750, "fields": {"revision": 2800, "object_id": "A", "content_type": 36, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.applicationstatuscode\", \"pk\": \"A\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"description\": \"Registered\", \"display_order\": 4, \"effective_date\": \"2018-05-25\", \"expired_date\": null}}]", "object_repr": "Registered"}}, {"model": "reversion.version", "pk": 6751, "fields": {"revision": 2800, "object_id": "28bf8730-dbb7-4218-8e9f-06bd51f60161", "content_type": 29, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.accreditedcertificatecode\", \"pk\": \"28bf8730-dbb7-4218-8e9f-06bd51f60161\", \"fields\": {\"create_user\": \"DATALOAD_USER\", \"create_date\": \"2018-01-01T08:00:00Z\", \"update_user\": \"DATALOAD_USER\", \"update_date\": \"2018-01-01T08:00:00Z\", \"cert_auth\": \"BC\", \"registries_activity\": \"DRILL\", \"name\": \"Geoexchange Driller Certificate\", \"description\": null, \"effective_date\": \"1970-01-01\", \"expired_date\": null}}]", "object_repr": "BC Well Driller Geoexchange Driller Certificate"}}, {"model": "reversion.version", "pk": 6752, "fields": {"revision": 2801, "object_id": "7711cdfd-fdf9-49b6-ae41-043dab02a78c", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"7711cdfd-fdf9-49b6-ae41-043dab02a78c\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:12.425Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:15.933Z\", \"first_name\": \"Bobby\", \"surname\": \"Driller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": \"2018-09-26T21:50:15.933Z\"}}]", "object_repr": "Bobby Driller"}}, {"model": "reversion.version", "pk": 6753, "fields": {"revision": 2802, "object_id": "1eb356f2-d45d-4b83-9215-c2d6f17e62b1", "content_type": 30, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.organization\", \"pk\": \"1eb356f2-d45d-4b83-9215-c2d6f17e62b1\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:12.685Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:16.003Z\", \"name\": \"Steve's Drilling Inc.\", \"street_address\": \"1012 Douglas\", \"city\": \"Drillerville\", \"province_state\": \"BC\", \"postal_code\": \"a1a 1a1\", \"main_tel\": \"\", \"fax_tel\": \"\", \"website_url\": \"\", \"effective_date\": \"2018-09-26\", \"expired_date\": \"2018-09-26T21:50:16.003Z\", \"email\": null}}]", "object_repr": "Steve's Drilling Inc."}}, {"model": "reversion.version", "pk": 6754, "fields": {"revision": 2803, "object_id": "96de5639-6dd4-46ae-a4bb-b0602f4be6af", "content_type": 31, "db": "default", "format": "json", "serialized_data": "[{\"model\": \"registries.person\", \"pk\": \"96de5639-6dd4-46ae-a4bb-b0602f4be6af\", \"fields\": {\"create_user\": \"testuser\", \"create_date\": \"2018-09-26T21:50:25.180Z\", \"update_user\": null, \"update_date\": \"2018-09-26T21:50:25.180Z\", \"first_name\": \"Bobby\", \"surname\": \"Driller\", \"well_driller_orcs_no\": null, \"pump_installer_orcs_no\": null, \"contact_tel\": null, \"contact_cell\": null, \"contact_email\": null, \"effective_date\": \"2018-09-26\", \"expired_date\": null}}]", "object_repr": "Bobby Driller"}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add log entry", "content_type": 1, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change log entry", "content_type": 1, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete log entry", "content_type": 1, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can add permission", "content_type": 2, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can change permission", "content_type": 2, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can delete permission", "content_type": 2, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can add group", "content_type": 3, "codename": "add_group"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can change group", "content_type": 3, "codename": "change_group"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can delete group", "content_type": 3, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add user", "content_type": 4, "codename": "add_user"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change user", "content_type": 4, "codename": "change_user"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete user", "content_type": 4, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can add content type", "content_type": 5, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can change content type", "content_type": 5, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can delete content type", "content_type": 5, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can add session", "content_type": 6, "codename": "add_session"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can change session", "content_type": 6, "codename": "change_session"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can delete session", "content_type": 6, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can add province state code", "content_type": 7, "codename": "add_provincestatecode"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can change province state code", "content_type": 7, "codename": "change_provincestatecode"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can delete province state code", "content_type": 7, "codename": "delete_provincestatecode"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add screen type code", "content_type": 8, "codename": "add_screentypecode"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change screen type code", "content_type": 8, "codename": "change_screentypecode"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete screen type code", "content_type": 8, "codename": "delete_screentypecode"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can add screen assembly type code", "content_type": 9, "codename": "add_screenassemblytypecode"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can change screen assembly type code", "content_type": 9, "codename": "change_screenassemblytypecode"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can delete screen assembly type code", "content_type": 9, "codename": "delete_screenassemblytypecode"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can add screen bottom code", "content_type": 10, "codename": "add_screenbottomcode"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can change screen bottom code", "content_type": 10, "codename": "change_screenbottomcode"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can delete screen bottom code", "content_type": 10, "codename": "delete_screenbottomcode"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can add screen intake method code", "content_type": 11, "codename": "add_screenintakemethodcode"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can change screen intake method code", "content_type": 11, "codename": "change_screenintakemethodcode"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can delete screen intake method code", "content_type": 11, "codename": "delete_screenintakemethodcode"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add screen material code", "content_type": 12, "codename": "add_screenmaterialcode"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change screen material code", "content_type": 12, "codename": "change_screenmaterialcode"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete screen material code", "content_type": 12, "codename": "delete_screenmaterialcode"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can add screen opening code", "content_type": 13, "codename": "add_screenopeningcode"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can change screen opening code", "content_type": 13, "codename": "change_screenopeningcode"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can delete screen opening code", "content_type": 13, "codename": "delete_screenopeningcode"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can add survey", "content_type": 14, "codename": "add_survey"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can change survey", "content_type": 14, "codename": "change_survey"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can delete survey", "content_type": 14, "codename": "delete_survey"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can add online survey", "content_type": 15, "codename": "add_onlinesurvey"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can change online survey", "content_type": 15, "codename": "change_onlinesurvey"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can delete online survey", "content_type": 15, "codename": "delete_onlinesurvey"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add profile", "content_type": 16, "codename": "add_profile"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change profile", "content_type": 16, "codename": "change_profile"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete profile", "content_type": 16, "codename": "delete_profile"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can add bedrock material descriptor code", "content_type": 17, "codename": "add_bedrockmaterialdescriptorcode"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can change bedrock material descriptor code", "content_type": 17, "codename": "change_bedrockmaterialdescriptorcode"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can delete bedrock material descriptor code", "content_type": 17, "codename": "delete_bedrockmaterialdescriptorcode"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can add bedrock material code", "content_type": 18, "codename": "add_bedrockmaterialcode"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can change bedrock material code", "content_type": 18, "codename": "change_bedrockmaterialcode"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can delete bedrock material code", "content_type": 18, "codename": "delete_bedrockmaterialcode"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can add surficial material code", "content_type": 19, "codename": "add_surficialmaterialcode"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can change surficial material code", "content_type": 19, "codename": "change_surficialmaterialcode"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can delete surficial material code", "content_type": 19, "codename": "delete_surficialmaterialcode"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add lithology colour code", "content_type": 20, "codename": "add_lithologycolourcode"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change lithology colour code", "content_type": 20, "codename": "change_lithologycolourcode"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete lithology colour code", "content_type": 20, "codename": "delete_lithologycolourcode"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can add lithology description code", "content_type": 21, "codename": "add_lithologydescriptioncode"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can change lithology description code", "content_type": 21, "codename": "change_lithologydescriptioncode"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can delete lithology description code", "content_type": 21, "codename": "delete_lithologydescriptioncode"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can add lithology hardness code", "content_type": 22, "codename": "add_lithologyhardnesscode"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can change lithology hardness code", "content_type": 22, "codename": "change_lithologyhardnesscode"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can delete lithology hardness code", "content_type": 22, "codename": "delete_lithologyhardnesscode"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can add lithology material code", "content_type": 23, "codename": "add_lithologymaterialcode"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can change lithology material code", "content_type": 23, "codename": "change_lithologymaterialcode"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can delete lithology material code", "content_type": 23, "codename": "delete_lithologymaterialcode"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add lithology structure code", "content_type": 24, "codename": "add_lithologystructurecode"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change lithology structure code", "content_type": 24, "codename": "change_lithologystructurecode"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete lithology structure code", "content_type": 24, "codename": "delete_lithologystructurecode"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can add lithology moisture code", "content_type": 25, "codename": "add_lithologymoisturecode"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can change lithology moisture code", "content_type": 25, "codename": "change_lithologymoisturecode"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can delete lithology moisture code", "content_type": 25, "codename": "delete_lithologymoisturecode"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can add activity code", "content_type": 26, "codename": "add_activitycode"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can change activity code", "content_type": 26, "codename": "change_activitycode"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can delete activity code", "content_type": 26, "codename": "delete_activitycode"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can add subactivity code", "content_type": 27, "codename": "add_subactivitycode"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can change subactivity code", "content_type": 27, "codename": "change_subactivitycode"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can delete subactivity code", "content_type": 27, "codename": "delete_subactivitycode"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add certifying authority code", "content_type": 28, "codename": "add_certifyingauthoritycode"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change certifying authority code", "content_type": 28, "codename": "change_certifyingauthoritycode"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete certifying authority code", "content_type": 28, "codename": "delete_certifyingauthoritycode"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can add accredited certificate code", "content_type": 29, "codename": "add_accreditedcertificatecode"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can change accredited certificate code", "content_type": 29, "codename": "change_accreditedcertificatecode"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can delete accredited certificate code", "content_type": 29, "codename": "delete_accreditedcertificatecode"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can add organization", "content_type": 30, "codename": "add_organization"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can change organization", "content_type": 30, "codename": "change_organization"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can delete organization", "content_type": 30, "codename": "delete_organization"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can add person", "content_type": 31, "codename": "add_person"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can change person", "content_type": 31, "codename": "change_person"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can delete person", "content_type": 31, "codename": "delete_person"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add well class code", "content_type": 32, "codename": "add_wellclasscode"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change well class code", "content_type": 32, "codename": "change_wellclasscode"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete well class code", "content_type": 32, "codename": "delete_wellclasscode"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can add qualification", "content_type": 33, "codename": "add_qualification"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can change qualification", "content_type": 33, "codename": "change_qualification"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can delete qualification", "content_type": 33, "codename": "delete_qualification"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can add registries removal reason", "content_type": 34, "codename": "add_registriesremovalreason"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can change registries removal reason", "content_type": 34, "codename": "change_registriesremovalreason"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can delete registries removal reason", "content_type": 34, "codename": "delete_registriesremovalreason"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can add register", "content_type": 35, "codename": "add_register"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can change register", "content_type": 35, "codename": "change_register"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can delete register", "content_type": 35, "codename": "delete_register"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add application status code", "content_type": 36, "codename": "add_applicationstatuscode"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change application status code", "content_type": 36, "codename": "change_applicationstatuscode"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete application status code", "content_type": 36, "codename": "delete_applicationstatuscode"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can add proof of age code", "content_type": 37, "codename": "add_proofofagecode"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can change proof of age code", "content_type": 37, "codename": "change_proofofagecode"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can delete proof of age code", "content_type": 37, "codename": "delete_proofofagecode"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can add registries application", "content_type": 38, "codename": "add_registriesapplication"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can change registries application", "content_type": 38, "codename": "change_registriesapplication"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can delete registries application", "content_type": 38, "codename": "delete_registriesapplication"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can add register_ note", "content_type": 39, "codename": "add_register_note"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can change register_ note", "content_type": 39, "codename": "change_register_note"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can delete register_ note", "content_type": 39, "codename": "delete_register_note"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add organization note", "content_type": 40, "codename": "add_organizationnote"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change organization note", "content_type": 40, "codename": "change_organizationnote"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete organization note", "content_type": 40, "codename": "delete_organizationnote"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can add person note", "content_type": 41, "codename": "add_personnote"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can change person note", "content_type": 41, "codename": "change_personnote"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can delete person note", "content_type": 41, "codename": "delete_personnote"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add Registries Well Class", "content_type": 42, "codename": "add_vw_well_class"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change Registries Well Class", "content_type": 42, "codename": "change_vw_well_class"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete Registries Well Class", "content_type": 42, "codename": "delete_vw_well_class"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can add decommission method code", "content_type": 43, "codename": "add_decommissionmethodcode"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can change decommission method code", "content_type": 43, "codename": "change_decommissionmethodcode"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can delete decommission method code", "content_type": 43, "codename": "delete_decommissionmethodcode"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add bcg s_ numbers", "content_type": 44, "codename": "add_bcgs_numbers"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change bcg s_ numbers", "content_type": 44, "codename": "change_bcgs_numbers"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete bcg s_ numbers", "content_type": 44, "codename": "delete_bcgs_numbers"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can add obs well status code", "content_type": 45, "codename": "add_obswellstatuscode"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can change obs well status code", "content_type": 45, "codename": "change_obswellstatuscode"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can delete obs well status code", "content_type": 45, "codename": "delete_obswellstatuscode"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add yield estimation method code", "content_type": 46, "codename": "add_yieldestimationmethodcode"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change yield estimation method code", "content_type": 46, "codename": "change_yieldestimationmethodcode"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete yield estimation method code", "content_type": 46, "codename": "delete_yieldestimationmethodcode"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can add water quality characteristic", "content_type": 47, "codename": "add_waterqualitycharacteristic"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can change water quality characteristic", "content_type": 47, "codename": "change_waterqualitycharacteristic"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can delete water quality characteristic", "content_type": 47, "codename": "delete_waterqualitycharacteristic"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add development method code", "content_type": 48, "codename": "add_developmentmethodcode"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change development method code", "content_type": 48, "codename": "change_developmentmethodcode"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete development method code", "content_type": 48, "codename": "delete_developmentmethodcode"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can add filter pack material size code", "content_type": 49, "codename": "add_filterpackmaterialsizecode"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can change filter pack material size code", "content_type": 49, "codename": "change_filterpackmaterialsizecode"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can delete filter pack material size code", "content_type": 49, "codename": "delete_filterpackmaterialsizecode"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add filter pack material code", "content_type": 50, "codename": "add_filterpackmaterialcode"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change filter pack material code", "content_type": 50, "codename": "change_filterpackmaterialcode"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete filter pack material code", "content_type": 50, "codename": "delete_filterpackmaterialcode"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can add liner material code", "content_type": 51, "codename": "add_linermaterialcode"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can change liner material code", "content_type": 51, "codename": "change_linermaterialcode"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can delete liner material code", "content_type": 51, "codename": "delete_linermaterialcode"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can add surface seal method code", "content_type": 52, "codename": "add_surfacesealmethodcode"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can change surface seal method code", "content_type": 52, "codename": "change_surfacesealmethodcode"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can delete surface seal method code", "content_type": 52, "codename": "delete_surfacesealmethodcode"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can add surface seal material code", "content_type": 53, "codename": "add_surfacesealmaterialcode"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can change surface seal material code", "content_type": 53, "codename": "change_surfacesealmaterialcode"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can delete surface seal material code", "content_type": 53, "codename": "delete_surfacesealmaterialcode"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can add drilling method code", "content_type": 54, "codename": "add_drillingmethodcode"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can change drilling method code", "content_type": 54, "codename": "change_drillingmethodcode"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can delete drilling method code", "content_type": 54, "codename": "delete_drillingmethodcode"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can add drilling company", "content_type": 55, "codename": "add_drillingcompany"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can change drilling company", "content_type": 55, "codename": "change_drillingcompany"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can delete drilling company", "content_type": 55, "codename": "delete_drillingcompany"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can add land district code", "content_type": 56, "codename": "add_landdistrictcode"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can change land district code", "content_type": 56, "codename": "change_landdistrictcode"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can delete land district code", "content_type": 56, "codename": "delete_landdistrictcode"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can add licenced status code", "content_type": 57, "codename": "add_licencedstatuscode"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can change licenced status code", "content_type": 57, "codename": "change_licencedstatuscode"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can delete licenced status code", "content_type": 57, "codename": "delete_licencedstatuscode"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can add intended water use code", "content_type": 58, "codename": "add_intendedwaterusecode"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can change intended water use code", "content_type": 58, "codename": "change_intendedwaterusecode"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can delete intended water use code", "content_type": 58, "codename": "delete_intendedwaterusecode"}}, {"model": "auth.permission", "pk": 175, "fields": {"name": "Can add ground elevation method code", "content_type": 59, "codename": "add_groundelevationmethodcode"}}, {"model": "auth.permission", "pk": 176, "fields": {"name": "Can change ground elevation method code", "content_type": 59, "codename": "change_groundelevationmethodcode"}}, {"model": "auth.permission", "pk": 177, "fields": {"name": "Can delete ground elevation method code", "content_type": 59, "codename": "delete_groundelevationmethodcode"}}, {"model": "auth.permission", "pk": 178, "fields": {"name": "Can add well class code", "content_type": 60, "codename": "add_wellclasscode"}}, {"model": "auth.permission", "pk": 179, "fields": {"name": "Can change well class code", "content_type": 60, "codename": "change_wellclasscode"}}, {"model": "auth.permission", "pk": 180, "fields": {"name": "Can delete well class code", "content_type": 60, "codename": "delete_wellclasscode"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can add well status code", "content_type": 61, "codename": "add_wellstatuscode"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can change well status code", "content_type": 61, "codename": "change_wellstatuscode"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can delete well status code", "content_type": 61, "codename": "delete_wellstatuscode"}}, {"model": "auth.permission", "pk": 184, "fields": {"name": "Can add well subclass code", "content_type": 62, "codename": "add_wellsubclasscode"}}, {"model": "auth.permission", "pk": 185, "fields": {"name": "Can change well subclass code", "content_type": 62, "codename": "change_wellsubclasscode"}}, {"model": "auth.permission", "pk": 186, "fields": {"name": "Can delete well subclass code", "content_type": 62, "codename": "delete_wellsubclasscode"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can add well yield unit code", "content_type": 63, "codename": "add_wellyieldunitcode"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can change well yield unit code", "content_type": 63, "codename": "change_wellyieldunitcode"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can delete well yield unit code", "content_type": 63, "codename": "delete_wellyieldunitcode"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can add well", "content_type": 64, "codename": "add_well"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can change well", "content_type": 64, "codename": "change_well"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can delete well", "content_type": 64, "codename": "delete_well"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can add perforation", "content_type": 65, "codename": "add_perforation"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can change perforation", "content_type": 65, "codename": "change_perforation"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can delete perforation", "content_type": 65, "codename": "delete_perforation"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can add ltsa owner", "content_type": 66, "codename": "add_ltsaowner"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can change ltsa owner", "content_type": 66, "codename": "change_ltsaowner"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can delete ltsa owner", "content_type": 66, "codename": "delete_ltsaowner"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can add casing material code", "content_type": 67, "codename": "add_casingmaterialcode"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can change casing material code", "content_type": 67, "codename": "change_casingmaterialcode"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can delete casing material code", "content_type": 67, "codename": "delete_casingmaterialcode"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can add casing code", "content_type": 68, "codename": "add_casingcode"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can change casing code", "content_type": 68, "codename": "change_casingcode"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can delete casing code", "content_type": 68, "codename": "delete_casingcode"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can add aquifer well", "content_type": 69, "codename": "add_aquiferwell"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can change aquifer well", "content_type": 69, "codename": "change_aquiferwell"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can delete aquifer well", "content_type": 69, "codename": "delete_aquiferwell"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can add activity submission", "content_type": 70, "codename": "add_activitysubmission"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can change activity submission", "content_type": 70, "codename": "change_activitysubmission"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can delete activity submission", "content_type": 70, "codename": "delete_activitysubmission"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can add lithology description", "content_type": 71, "codename": "add_lithologydescription"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can change lithology description", "content_type": 71, "codename": "change_lithologydescription"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can delete lithology description", "content_type": 71, "codename": "delete_lithologydescription"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can add production data", "content_type": 72, "codename": "add_productiondata"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can change production data", "content_type": 72, "codename": "change_productiondata"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can delete production data", "content_type": 72, "codename": "delete_productiondata"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can add liner perforation", "content_type": 73, "codename": "add_linerperforation"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can change liner perforation", "content_type": 73, "codename": "change_linerperforation"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can delete liner perforation", "content_type": 73, "codename": "delete_linerperforation"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can add casing", "content_type": 74, "codename": "add_casing"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can change casing", "content_type": 74, "codename": "change_casing"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can delete casing", "content_type": 74, "codename": "delete_casing"}}, {"model": "auth.permission", "pk": 223, "fields": {"name": "Can add screen", "content_type": 75, "codename": "add_screen"}}, {"model": "auth.permission", "pk": 224, "fields": {"name": "Can change screen", "content_type": 75, "codename": "change_screen"}}, {"model": "auth.permission", "pk": 225, "fields": {"name": "Can delete screen", "content_type": 75, "codename": "delete_screen"}}, {"model": "auth.permission", "pk": 226, "fields": {"name": "Can add aquifer vulnerability code", "content_type": 76, "codename": "add_aquifervulnerabilitycode"}}, {"model": "auth.permission", "pk": 227, "fields": {"name": "Can change aquifer vulnerability code", "content_type": 76, "codename": "change_aquifervulnerabilitycode"}}, {"model": "auth.permission", "pk": 228, "fields": {"name": "Can delete aquifer vulnerability code", "content_type": 76, "codename": "delete_aquifervulnerabilitycode"}}, {"model": "auth.permission", "pk": 229, "fields": {"name": "Can add water quality colour", "content_type": 77, "codename": "add_waterqualitycolour"}}, {"model": "auth.permission", "pk": 230, "fields": {"name": "Can change water quality colour", "content_type": 77, "codename": "change_waterqualitycolour"}}, {"model": "auth.permission", "pk": 231, "fields": {"name": "Can delete water quality colour", "content_type": 77, "codename": "delete_waterqualitycolour"}}, {"model": "auth.permission", "pk": 232, "fields": {"name": "Can add hydraulic property", "content_type": 78, "codename": "add_hydraulicproperty"}}, {"model": "auth.permission", "pk": 233, "fields": {"name": "Can change hydraulic property", "content_type": 78, "codename": "change_hydraulicproperty"}}, {"model": "auth.permission", "pk": 234, "fields": {"name": "Can delete hydraulic property", "content_type": 78, "codename": "delete_hydraulicproperty"}}, {"model": "auth.permission", "pk": 235, "fields": {"name": "Can add well activity code", "content_type": 79, "codename": "add_wellactivitycode"}}, {"model": "auth.permission", "pk": 236, "fields": {"name": "Can change well activity code", "content_type": 79, "codename": "change_wellactivitycode"}}, {"model": "auth.permission", "pk": 237, "fields": {"name": "Can delete well activity code", "content_type": 79, "codename": "delete_wellactivitycode"}}, {"model": "auth.permission", "pk": 238, "fields": {"name": "Can add aquifer material", "content_type": 80, "codename": "add_aquifermaterial"}}, {"model": "auth.permission", "pk": 239, "fields": {"name": "Can change aquifer material", "content_type": 80, "codename": "change_aquifermaterial"}}, {"model": "auth.permission", "pk": 240, "fields": {"name": "Can delete aquifer material", "content_type": 80, "codename": "delete_aquifermaterial"}}, {"model": "auth.permission", "pk": 241, "fields": {"name": "Can add aquifer subtype", "content_type": 81, "codename": "add_aquifersubtype"}}, {"model": "auth.permission", "pk": 242, "fields": {"name": "Can change aquifer subtype", "content_type": 81, "codename": "change_aquifersubtype"}}, {"model": "auth.permission", "pk": 243, "fields": {"name": "Can delete aquifer subtype", "content_type": 81, "codename": "delete_aquifersubtype"}}, {"model": "auth.permission", "pk": 244, "fields": {"name": "Can add aquifer productivity", "content_type": 82, "codename": "add_aquiferproductivity"}}, {"model": "auth.permission", "pk": 245, "fields": {"name": "Can change aquifer productivity", "content_type": 82, "codename": "change_aquiferproductivity"}}, {"model": "auth.permission", "pk": 246, "fields": {"name": "Can delete aquifer productivity", "content_type": 82, "codename": "delete_aquiferproductivity"}}, {"model": "auth.permission", "pk": 247, "fields": {"name": "Can add aquifer demand", "content_type": 83, "codename": "add_aquiferdemand"}}, {"model": "auth.permission", "pk": 248, "fields": {"name": "Can change aquifer demand", "content_type": 83, "codename": "change_aquiferdemand"}}, {"model": "auth.permission", "pk": 249, "fields": {"name": "Can delete aquifer demand", "content_type": 83, "codename": "delete_aquiferdemand"}}, {"model": "auth.permission", "pk": 250, "fields": {"name": "Can add water use", "content_type": 84, "codename": "add_wateruse"}}, {"model": "auth.permission", "pk": 251, "fields": {"name": "Can change water use", "content_type": 84, "codename": "change_wateruse"}}, {"model": "auth.permission", "pk": 252, "fields": {"name": "Can delete water use", "content_type": 84, "codename": "delete_wateruse"}}, {"model": "auth.permission", "pk": 253, "fields": {"name": "Can add quality concern", "content_type": 85, "codename": "add_qualityconcern"}}, {"model": "auth.permission", "pk": 254, "fields": {"name": "Can change quality concern", "content_type": 85, "codename": "change_qualityconcern"}}, {"model": "auth.permission", "pk": 255, "fields": {"name": "Can delete quality concern", "content_type": 85, "codename": "delete_qualityconcern"}}, {"model": "auth.permission", "pk": 256, "fields": {"name": "Can add aquifer", "content_type": 86, "codename": "add_aquifer"}}, {"model": "auth.permission", "pk": 257, "fields": {"name": "Can change aquifer", "content_type": 86, "codename": "change_aquifer"}}, {"model": "auth.permission", "pk": 258, "fields": {"name": "Can delete aquifer", "content_type": 86, "codename": "delete_aquifer"}}, {"model": "auth.permission", "pk": 259, "fields": {"name": "Can add revision", "content_type": 87, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 260, "fields": {"name": "Can change revision", "content_type": 87, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 261, "fields": {"name": "Can delete revision", "content_type": 87, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 262, "fields": {"name": "Can add version", "content_type": 88, "codename": "add_version"}}, {"model": "auth.permission", "pk": 263, "fields": {"name": "Can change version", "content_type": 88, "codename": "change_version"}}, {"model": "auth.permission", "pk": 264, "fields": {"name": "Can delete version", "content_type": 88, "codename": "delete_version"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "gwells_admin", "permissions": [88, 89, 90, 118, 119, 120, 91, 92, 93, 121, 122, 123, 103, 104, 105, 112, 113, 114, 208, 209, 210]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "registries_adjudicator", "permissions": [88, 89, 90, 118, 119, 120, 91, 92, 93, 121, 122, 123, 103, 104, 105, 112, 113, 114, 208, 209, 210]}}, {"model": "auth.group", "pk": 3, "fields": {"name": "registries_statutory_authority", "permissions": [88, 89, 90, 118, 119, 120, 91, 92, 93, 121, 122, 123, 103, 104, 105, 112, 113, 114, 208, 209, 210]}}, {"model": "auth.group", "pk": 4, "fields": {"name": "registries_viewer", "permissions": []}}, {"model": "auth.group", "pk": 5, "fields": {"name": "wells_viewer", "permissions": []}}, {"model": "auth.group", "pk": 6, "fields": {"name": "wells_edit", "permissions": [208, 209, 210]}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$36000$JtiVh8xuXxTl$TxLC+O70H+kHrn68SP24xTFAbGkzGOuj3/bi+iXtuJg=", "last_login": null, "is_superuser": true, "username": "admin", "first_name": "", "last_name": "", "email": "gwells@gov.bc.ca", "is_staff": true, "is_active": true, "date_joined": "2018-09-26T21:14:54.590Z", "groups": [], "user_permissions": []}}, {"model": "auth.user", "pk": 2, "fields": {"password": "pbkdf2_sha256$36000$1QMqBjubFFrn$dpr7Fl+kxgXBxC1SMsKA11Jui0rGWuDz78DybbMGuTk=", "last_login": null, "is_superuser": false, "username": "d84e0ea9-e9f4-4cf8-a4ac-53ebd1c4fb43", "first_name": "", "last_name": "", "email": "test@example.com", "is_staff": false, "is_active": true, "date_joined": "2018-09-26T21:50:01.858Z", "groups": [1, 2, 3, 4, 5, 6], "user_permissions": []}}, {"model": "registries.organizationnote", "pk": "f4abaa91-eab1-4480-b5e5-89788df45aa8", "fields": {"create_user": "testuser", "create_date": "2018-09-26T21:50:04.638Z", "update_user": null, "update_date": "2018-09-26T21:50:04.638Z", "author": 2, "organization": "05a28055-a385-495b-b021-38209718823d", "date": "2018-09-26T21:50:04.638Z", "note": "This is a company note!"}}, {"model": "reversion.revision", "pk": 1, "fields": {"date_created": "2018-09-26T21:48:38.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2, "fields": {"date_created": "2018-09-26T21:48:38.318Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 3, "fields": {"date_created": "2018-09-26T21:48:38.333Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 4, "fields": {"date_created": "2018-09-26T21:48:38.336Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 5, "fields": {"date_created": "2018-09-26T21:48:38.338Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 6, "fields": {"date_created": "2018-09-26T21:48:38.341Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 7, "fields": {"date_created": "2018-09-26T21:48:38.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 8, "fields": {"date_created": "2018-09-26T21:48:38.374Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 9, "fields": {"date_created": "2018-09-26T21:48:38.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 10, "fields": {"date_created": "2018-09-26T21:48:38.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 11, "fields": {"date_created": "2018-09-26T21:48:38.384Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 12, "fields": {"date_created": "2018-09-26T21:48:38.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 13, "fields": {"date_created": "2018-09-26T21:48:38.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 14, "fields": {"date_created": "2018-09-26T21:48:38.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 15, "fields": {"date_created": "2018-09-26T21:48:38.412Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 16, "fields": {"date_created": "2018-09-26T21:48:38.418Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 17, "fields": {"date_created": "2018-09-26T21:48:38.467Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 18, "fields": {"date_created": "2018-09-26T21:48:38.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 19, "fields": {"date_created": "2018-09-26T21:48:38.484Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 20, "fields": {"date_created": "2018-09-26T21:48:38.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 21, "fields": {"date_created": "2018-09-26T21:48:38.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 22, "fields": {"date_created": "2018-09-26T21:48:38.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 23, "fields": {"date_created": "2018-09-26T21:48:38.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 24, "fields": {"date_created": "2018-09-26T21:48:38.510Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 25, "fields": {"date_created": "2018-09-26T21:48:38.515Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 26, "fields": {"date_created": "2018-09-26T21:48:38.567Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 27, "fields": {"date_created": "2018-09-26T21:48:38.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 28, "fields": {"date_created": "2018-09-26T21:48:38.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 29, "fields": {"date_created": "2018-09-26T21:48:38.673Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 30, "fields": {"date_created": "2018-09-26T21:48:38.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 31, "fields": {"date_created": "2018-09-26T21:48:38.680Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 32, "fields": {"date_created": "2018-09-26T21:48:38.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 33, "fields": {"date_created": "2018-09-26T21:48:38.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 34, "fields": {"date_created": "2018-09-26T21:48:38.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 35, "fields": {"date_created": "2018-09-26T21:48:38.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 36, "fields": {"date_created": "2018-09-26T21:48:38.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 37, "fields": {"date_created": "2018-09-26T21:48:38.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 38, "fields": {"date_created": "2018-09-26T21:48:38.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 39, "fields": {"date_created": "2018-09-26T21:48:38.762Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 40, "fields": {"date_created": "2018-09-26T21:48:38.766Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 41, "fields": {"date_created": "2018-09-26T21:48:38.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 42, "fields": {"date_created": "2018-09-26T21:48:38.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 43, "fields": {"date_created": "2018-09-26T21:48:38.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 44, "fields": {"date_created": "2018-09-26T21:48:38.780Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 45, "fields": {"date_created": "2018-09-26T21:48:38.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 46, "fields": {"date_created": "2018-09-26T21:48:38.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 47, "fields": {"date_created": "2018-09-26T21:48:38.789Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 48, "fields": {"date_created": "2018-09-26T21:48:38.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 49, "fields": {"date_created": "2018-09-26T21:48:38.797Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 50, "fields": {"date_created": "2018-09-26T21:48:38.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 51, "fields": {"date_created": "2018-09-26T21:48:38.803Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 52, "fields": {"date_created": "2018-09-26T21:48:38.864Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 53, "fields": {"date_created": "2018-09-26T21:48:38.868Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 54, "fields": {"date_created": "2018-09-26T21:48:38.871Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 55, "fields": {"date_created": "2018-09-26T21:48:38.874Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 56, "fields": {"date_created": "2018-09-26T21:48:38.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 57, "fields": {"date_created": "2018-09-26T21:48:38.880Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 58, "fields": {"date_created": "2018-09-26T21:48:38.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 59, "fields": {"date_created": "2018-09-26T21:48:38.886Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 60, "fields": {"date_created": "2018-09-26T21:48:38.889Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 61, "fields": {"date_created": "2018-09-26T21:48:38.892Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 62, "fields": {"date_created": "2018-09-26T21:48:38.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 63, "fields": {"date_created": "2018-09-26T21:48:38.898Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 64, "fields": {"date_created": "2018-09-26T21:48:38.901Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 65, "fields": {"date_created": "2018-09-26T21:48:38.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 66, "fields": {"date_created": "2018-09-26T21:48:38.907Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 67, "fields": {"date_created": "2018-09-26T21:48:38.965Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 68, "fields": {"date_created": "2018-09-26T21:48:38.969Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 69, "fields": {"date_created": "2018-09-26T21:48:38.972Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 70, "fields": {"date_created": "2018-09-26T21:48:38.975Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 71, "fields": {"date_created": "2018-09-26T21:48:38.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 72, "fields": {"date_created": "2018-09-26T21:48:38.982Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 73, "fields": {"date_created": "2018-09-26T21:48:38.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 74, "fields": {"date_created": "2018-09-26T21:48:38.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 75, "fields": {"date_created": "2018-09-26T21:48:38.990Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 76, "fields": {"date_created": "2018-09-26T21:48:38.993Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 77, "fields": {"date_created": "2018-09-26T21:48:38.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 78, "fields": {"date_created": "2018-09-26T21:48:38.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 79, "fields": {"date_created": "2018-09-26T21:48:39.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 80, "fields": {"date_created": "2018-09-26T21:48:39.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 81, "fields": {"date_created": "2018-09-26T21:48:39.009Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 82, "fields": {"date_created": "2018-09-26T21:48:39.065Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 83, "fields": {"date_created": "2018-09-26T21:48:39.068Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 84, "fields": {"date_created": "2018-09-26T21:48:39.071Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 85, "fields": {"date_created": "2018-09-26T21:48:39.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 86, "fields": {"date_created": "2018-09-26T21:48:39.077Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 87, "fields": {"date_created": "2018-09-26T21:48:39.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 88, "fields": {"date_created": "2018-09-26T21:48:39.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 89, "fields": {"date_created": "2018-09-26T21:48:39.086Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 90, "fields": {"date_created": "2018-09-26T21:48:39.089Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 91, "fields": {"date_created": "2018-09-26T21:48:39.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 92, "fields": {"date_created": "2018-09-26T21:48:39.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 93, "fields": {"date_created": "2018-09-26T21:48:39.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 94, "fields": {"date_created": "2018-09-26T21:48:39.102Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 95, "fields": {"date_created": "2018-09-26T21:48:39.106Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 96, "fields": {"date_created": "2018-09-26T21:48:39.109Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 97, "fields": {"date_created": "2018-09-26T21:48:39.163Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 98, "fields": {"date_created": "2018-09-26T21:48:39.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 99, "fields": {"date_created": "2018-09-26T21:48:39.170Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 100, "fields": {"date_created": "2018-09-26T21:48:39.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 101, "fields": {"date_created": "2018-09-26T21:48:39.176Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 102, "fields": {"date_created": "2018-09-26T21:48:39.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 103, "fields": {"date_created": "2018-09-26T21:48:39.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 104, "fields": {"date_created": "2018-09-26T21:48:39.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 105, "fields": {"date_created": "2018-09-26T21:48:39.188Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 106, "fields": {"date_created": "2018-09-26T21:48:39.191Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 107, "fields": {"date_created": "2018-09-26T21:48:39.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 108, "fields": {"date_created": "2018-09-26T21:48:39.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 109, "fields": {"date_created": "2018-09-26T21:48:39.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 110, "fields": {"date_created": "2018-09-26T21:48:39.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 111, "fields": {"date_created": "2018-09-26T21:48:39.207Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 112, "fields": {"date_created": "2018-09-26T21:48:39.263Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 113, "fields": {"date_created": "2018-09-26T21:48:39.267Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 114, "fields": {"date_created": "2018-09-26T21:48:39.270Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 115, "fields": {"date_created": "2018-09-26T21:48:39.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 116, "fields": {"date_created": "2018-09-26T21:48:39.277Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 117, "fields": {"date_created": "2018-09-26T21:48:39.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 118, "fields": {"date_created": "2018-09-26T21:48:39.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 119, "fields": {"date_created": "2018-09-26T21:48:39.287Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 120, "fields": {"date_created": "2018-09-26T21:48:39.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 121, "fields": {"date_created": "2018-09-26T21:48:39.294Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 122, "fields": {"date_created": "2018-09-26T21:48:39.309Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 123, "fields": {"date_created": "2018-09-26T21:48:39.312Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 124, "fields": {"date_created": "2018-09-26T21:48:39.316Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 125, "fields": {"date_created": "2018-09-26T21:48:39.319Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 126, "fields": {"date_created": "2018-09-26T21:48:39.362Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 127, "fields": {"date_created": "2018-09-26T21:48:39.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 128, "fields": {"date_created": "2018-09-26T21:48:39.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 129, "fields": {"date_created": "2018-09-26T21:48:39.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 130, "fields": {"date_created": "2018-09-26T21:48:39.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 131, "fields": {"date_created": "2018-09-26T21:48:39.451Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 132, "fields": {"date_created": "2018-09-26T21:48:39.455Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 133, "fields": {"date_created": "2018-09-26T21:48:39.458Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 134, "fields": {"date_created": "2018-09-26T21:48:39.461Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 135, "fields": {"date_created": "2018-09-26T21:48:39.464Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 136, "fields": {"date_created": "2018-09-26T21:48:39.467Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 137, "fields": {"date_created": "2018-09-26T21:48:39.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 138, "fields": {"date_created": "2018-09-26T21:48:39.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 139, "fields": {"date_created": "2018-09-26T21:48:39.477Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 140, "fields": {"date_created": "2018-09-26T21:48:39.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 141, "fields": {"date_created": "2018-09-26T21:48:39.483Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 142, "fields": {"date_created": "2018-09-26T21:48:39.486Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 143, "fields": {"date_created": "2018-09-26T21:48:39.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 144, "fields": {"date_created": "2018-09-26T21:48:39.492Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 145, "fields": {"date_created": "2018-09-26T21:48:39.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 146, "fields": {"date_created": "2018-09-26T21:48:39.552Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 147, "fields": {"date_created": "2018-09-26T21:48:39.556Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 148, "fields": {"date_created": "2018-09-26T21:48:39.560Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 149, "fields": {"date_created": "2018-09-26T21:48:39.564Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 150, "fields": {"date_created": "2018-09-26T21:48:39.568Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 151, "fields": {"date_created": "2018-09-26T21:48:39.572Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 152, "fields": {"date_created": "2018-09-26T21:48:39.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 153, "fields": {"date_created": "2018-09-26T21:48:39.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 154, "fields": {"date_created": "2018-09-26T21:48:39.583Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 155, "fields": {"date_created": "2018-09-26T21:48:39.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 156, "fields": {"date_created": "2018-09-26T21:48:39.590Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 157, "fields": {"date_created": "2018-09-26T21:48:39.593Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 158, "fields": {"date_created": "2018-09-26T21:48:39.596Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 159, "fields": {"date_created": "2018-09-26T21:48:39.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 160, "fields": {"date_created": "2018-09-26T21:48:39.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 161, "fields": {"date_created": "2018-09-26T21:48:39.606Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 162, "fields": {"date_created": "2018-09-26T21:48:39.663Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 163, "fields": {"date_created": "2018-09-26T21:48:39.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 164, "fields": {"date_created": "2018-09-26T21:48:39.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 165, "fields": {"date_created": "2018-09-26T21:48:39.679Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 166, "fields": {"date_created": "2018-09-26T21:48:39.682Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 167, "fields": {"date_created": "2018-09-26T21:48:39.686Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 168, "fields": {"date_created": "2018-09-26T21:48:39.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 169, "fields": {"date_created": "2018-09-26T21:48:39.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 170, "fields": {"date_created": "2018-09-26T21:48:39.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 171, "fields": {"date_created": "2018-09-26T21:48:39.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 172, "fields": {"date_created": "2018-09-26T21:48:39.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 173, "fields": {"date_created": "2018-09-26T21:48:39.704Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 174, "fields": {"date_created": "2018-09-26T21:48:39.707Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 175, "fields": {"date_created": "2018-09-26T21:48:39.763Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 176, "fields": {"date_created": "2018-09-26T21:48:39.768Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 177, "fields": {"date_created": "2018-09-26T21:48:39.772Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 178, "fields": {"date_created": "2018-09-26T21:48:39.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 179, "fields": {"date_created": "2018-09-26T21:48:39.779Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 180, "fields": {"date_created": "2018-09-26T21:48:39.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 181, "fields": {"date_created": "2018-09-26T21:48:39.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 182, "fields": {"date_created": "2018-09-26T21:48:39.789Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 183, "fields": {"date_created": "2018-09-26T21:48:39.792Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 184, "fields": {"date_created": "2018-09-26T21:48:39.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 185, "fields": {"date_created": "2018-09-26T21:48:39.798Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 186, "fields": {"date_created": "2018-09-26T21:48:39.801Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 187, "fields": {"date_created": "2018-09-26T21:48:39.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 188, "fields": {"date_created": "2018-09-26T21:48:39.807Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 189, "fields": {"date_created": "2018-09-26T21:48:39.864Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 190, "fields": {"date_created": "2018-09-26T21:48:39.868Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 191, "fields": {"date_created": "2018-09-26T21:48:39.871Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 192, "fields": {"date_created": "2018-09-26T21:48:39.874Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 193, "fields": {"date_created": "2018-09-26T21:48:39.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 194, "fields": {"date_created": "2018-09-26T21:48:39.881Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 195, "fields": {"date_created": "2018-09-26T21:48:39.884Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 196, "fields": {"date_created": "2018-09-26T21:48:39.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 197, "fields": {"date_created": "2018-09-26T21:48:39.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 198, "fields": {"date_created": "2018-09-26T21:48:39.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 199, "fields": {"date_created": "2018-09-26T21:48:39.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 200, "fields": {"date_created": "2018-09-26T21:48:39.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 201, "fields": {"date_created": "2018-09-26T21:48:39.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 202, "fields": {"date_created": "2018-09-26T21:48:39.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 203, "fields": {"date_created": "2018-09-26T21:48:39.907Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 204, "fields": {"date_created": "2018-09-26T21:48:39.965Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 205, "fields": {"date_created": "2018-09-26T21:48:39.968Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 206, "fields": {"date_created": "2018-09-26T21:48:39.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 207, "fields": {"date_created": "2018-09-26T21:48:39.974Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 208, "fields": {"date_created": "2018-09-26T21:48:39.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 209, "fields": {"date_created": "2018-09-26T21:48:39.981Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 210, "fields": {"date_created": "2018-09-26T21:48:39.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 211, "fields": {"date_created": "2018-09-26T21:48:39.987Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 212, "fields": {"date_created": "2018-09-26T21:48:39.993Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 213, "fields": {"date_created": "2018-09-26T21:48:39.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 214, "fields": {"date_created": "2018-09-26T21:48:39.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 215, "fields": {"date_created": "2018-09-26T21:48:40.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 216, "fields": {"date_created": "2018-09-26T21:48:40.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 217, "fields": {"date_created": "2018-09-26T21:48:40.065Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 218, "fields": {"date_created": "2018-09-26T21:48:40.069Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 219, "fields": {"date_created": "2018-09-26T21:48:40.072Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 220, "fields": {"date_created": "2018-09-26T21:48:40.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 221, "fields": {"date_created": "2018-09-26T21:48:40.078Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 222, "fields": {"date_created": "2018-09-26T21:48:40.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 223, "fields": {"date_created": "2018-09-26T21:48:40.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 224, "fields": {"date_created": "2018-09-26T21:48:40.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 225, "fields": {"date_created": "2018-09-26T21:48:40.091Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 226, "fields": {"date_created": "2018-09-26T21:48:40.094Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 227, "fields": {"date_created": "2018-09-26T21:48:40.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 228, "fields": {"date_created": "2018-09-26T21:48:40.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 229, "fields": {"date_created": "2018-09-26T21:48:40.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 230, "fields": {"date_created": "2018-09-26T21:48:40.106Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 231, "fields": {"date_created": "2018-09-26T21:48:40.162Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 232, "fields": {"date_created": "2018-09-26T21:48:40.167Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 233, "fields": {"date_created": "2018-09-26T21:48:40.170Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 234, "fields": {"date_created": "2018-09-26T21:48:40.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 235, "fields": {"date_created": "2018-09-26T21:48:40.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 236, "fields": {"date_created": "2018-09-26T21:48:40.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 237, "fields": {"date_created": "2018-09-26T21:48:40.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 238, "fields": {"date_created": "2018-09-26T21:48:40.188Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 239, "fields": {"date_created": "2018-09-26T21:48:40.191Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 240, "fields": {"date_created": "2018-09-26T21:48:40.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 241, "fields": {"date_created": "2018-09-26T21:48:40.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 242, "fields": {"date_created": "2018-09-26T21:48:40.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 243, "fields": {"date_created": "2018-09-26T21:48:40.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 244, "fields": {"date_created": "2018-09-26T21:48:40.206Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 245, "fields": {"date_created": "2018-09-26T21:48:40.209Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 246, "fields": {"date_created": "2018-09-26T21:48:40.264Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 247, "fields": {"date_created": "2018-09-26T21:48:40.269Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 248, "fields": {"date_created": "2018-09-26T21:48:40.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 249, "fields": {"date_created": "2018-09-26T21:48:40.276Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 250, "fields": {"date_created": "2018-09-26T21:48:40.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 251, "fields": {"date_created": "2018-09-26T21:48:40.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 252, "fields": {"date_created": "2018-09-26T21:48:40.285Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 253, "fields": {"date_created": "2018-09-26T21:48:40.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 254, "fields": {"date_created": "2018-09-26T21:48:40.291Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 255, "fields": {"date_created": "2018-09-26T21:48:40.294Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 256, "fields": {"date_created": "2018-09-26T21:48:40.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 257, "fields": {"date_created": "2018-09-26T21:48:40.301Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 258, "fields": {"date_created": "2018-09-26T21:48:40.304Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 259, "fields": {"date_created": "2018-09-26T21:48:40.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 260, "fields": {"date_created": "2018-09-26T21:48:40.367Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 261, "fields": {"date_created": "2018-09-26T21:48:40.370Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 262, "fields": {"date_created": "2018-09-26T21:48:40.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 263, "fields": {"date_created": "2018-09-26T21:48:40.376Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 264, "fields": {"date_created": "2018-09-26T21:48:40.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 265, "fields": {"date_created": "2018-09-26T21:48:40.383Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 266, "fields": {"date_created": "2018-09-26T21:48:40.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 267, "fields": {"date_created": "2018-09-26T21:48:40.389Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 268, "fields": {"date_created": "2018-09-26T21:48:40.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 269, "fields": {"date_created": "2018-09-26T21:48:40.396Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 270, "fields": {"date_created": "2018-09-26T21:48:40.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 271, "fields": {"date_created": "2018-09-26T21:48:40.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 272, "fields": {"date_created": "2018-09-26T21:48:40.405Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 273, "fields": {"date_created": "2018-09-26T21:48:40.408Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 274, "fields": {"date_created": "2018-09-26T21:48:40.466Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 275, "fields": {"date_created": "2018-09-26T21:48:40.471Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 276, "fields": {"date_created": "2018-09-26T21:48:40.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 277, "fields": {"date_created": "2018-09-26T21:48:40.477Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 278, "fields": {"date_created": "2018-09-26T21:48:40.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 279, "fields": {"date_created": "2018-09-26T21:48:40.484Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 280, "fields": {"date_created": "2018-09-26T21:48:40.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 281, "fields": {"date_created": "2018-09-26T21:48:40.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 282, "fields": {"date_created": "2018-09-26T21:48:40.493Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 283, "fields": {"date_created": "2018-09-26T21:48:40.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 284, "fields": {"date_created": "2018-09-26T21:48:40.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 285, "fields": {"date_created": "2018-09-26T21:48:40.503Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 286, "fields": {"date_created": "2018-09-26T21:48:40.506Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 287, "fields": {"date_created": "2018-09-26T21:48:40.567Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 288, "fields": {"date_created": "2018-09-26T21:48:40.571Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 289, "fields": {"date_created": "2018-09-26T21:48:40.574Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 290, "fields": {"date_created": "2018-09-26T21:48:40.577Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 291, "fields": {"date_created": "2018-09-26T21:48:40.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 292, "fields": {"date_created": "2018-09-26T21:48:40.584Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 293, "fields": {"date_created": "2018-09-26T21:48:40.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 294, "fields": {"date_created": "2018-09-26T21:48:40.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 295, "fields": {"date_created": "2018-09-26T21:48:40.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 296, "fields": {"date_created": "2018-09-26T21:48:40.598Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 297, "fields": {"date_created": "2018-09-26T21:48:40.601Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 298, "fields": {"date_created": "2018-09-26T21:48:40.605Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 299, "fields": {"date_created": "2018-09-26T21:48:40.608Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 300, "fields": {"date_created": "2018-09-26T21:48:40.663Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 301, "fields": {"date_created": "2018-09-26T21:48:40.668Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 302, "fields": {"date_created": "2018-09-26T21:48:40.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 303, "fields": {"date_created": "2018-09-26T21:48:40.674Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 304, "fields": {"date_created": "2018-09-26T21:48:40.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 305, "fields": {"date_created": "2018-09-26T21:48:40.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 306, "fields": {"date_created": "2018-09-26T21:48:40.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 307, "fields": {"date_created": "2018-09-26T21:48:40.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 308, "fields": {"date_created": "2018-09-26T21:48:40.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 309, "fields": {"date_created": "2018-09-26T21:48:40.694Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 310, "fields": {"date_created": "2018-09-26T21:48:40.697Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 311, "fields": {"date_created": "2018-09-26T21:48:40.700Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 312, "fields": {"date_created": "2018-09-26T21:48:40.704Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 313, "fields": {"date_created": "2018-09-26T21:48:40.707Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 314, "fields": {"date_created": "2018-09-26T21:48:40.764Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 315, "fields": {"date_created": "2018-09-26T21:48:40.768Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 316, "fields": {"date_created": "2018-09-26T21:48:40.772Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 317, "fields": {"date_created": "2018-09-26T21:48:40.775Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 318, "fields": {"date_created": "2018-09-26T21:48:40.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 319, "fields": {"date_created": "2018-09-26T21:48:40.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 320, "fields": {"date_created": "2018-09-26T21:48:40.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 321, "fields": {"date_created": "2018-09-26T21:48:40.788Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 322, "fields": {"date_created": "2018-09-26T21:48:40.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 323, "fields": {"date_created": "2018-09-26T21:48:40.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 324, "fields": {"date_created": "2018-09-26T21:48:40.797Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 325, "fields": {"date_created": "2018-09-26T21:48:40.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 326, "fields": {"date_created": "2018-09-26T21:48:40.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 327, "fields": {"date_created": "2018-09-26T21:48:40.807Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 328, "fields": {"date_created": "2018-09-26T21:48:40.863Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 329, "fields": {"date_created": "2018-09-26T21:48:40.867Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 330, "fields": {"date_created": "2018-09-26T21:48:40.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 331, "fields": {"date_created": "2018-09-26T21:48:40.873Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 332, "fields": {"date_created": "2018-09-26T21:48:40.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 333, "fields": {"date_created": "2018-09-26T21:48:40.880Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 334, "fields": {"date_created": "2018-09-26T21:48:40.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 335, "fields": {"date_created": "2018-09-26T21:48:40.886Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 336, "fields": {"date_created": "2018-09-26T21:48:40.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 337, "fields": {"date_created": "2018-09-26T21:48:40.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 338, "fields": {"date_created": "2018-09-26T21:48:40.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 339, "fields": {"date_created": "2018-09-26T21:48:40.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 340, "fields": {"date_created": "2018-09-26T21:48:40.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 341, "fields": {"date_created": "2018-09-26T21:48:40.909Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 342, "fields": {"date_created": "2018-09-26T21:48:40.912Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 343, "fields": {"date_created": "2018-09-26T21:48:40.966Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 344, "fields": {"date_created": "2018-09-26T21:48:40.970Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 345, "fields": {"date_created": "2018-09-26T21:48:40.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 346, "fields": {"date_created": "2018-09-26T21:48:40.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 347, "fields": {"date_created": "2018-09-26T21:48:40.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 348, "fields": {"date_created": "2018-09-26T21:48:40.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 349, "fields": {"date_created": "2018-09-26T21:48:40.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 350, "fields": {"date_created": "2018-09-26T21:48:40.990Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 351, "fields": {"date_created": "2018-09-26T21:48:40.993Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 352, "fields": {"date_created": "2018-09-26T21:48:40.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 353, "fields": {"date_created": "2018-09-26T21:48:41.000Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 354, "fields": {"date_created": "2018-09-26T21:48:41.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 355, "fields": {"date_created": "2018-09-26T21:48:41.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 356, "fields": {"date_created": "2018-09-26T21:48:41.064Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 357, "fields": {"date_created": "2018-09-26T21:48:41.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 358, "fields": {"date_created": "2018-09-26T21:48:41.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 359, "fields": {"date_created": "2018-09-26T21:48:41.078Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 360, "fields": {"date_created": "2018-09-26T21:48:41.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 361, "fields": {"date_created": "2018-09-26T21:48:41.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 362, "fields": {"date_created": "2018-09-26T21:48:41.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 363, "fields": {"date_created": "2018-09-26T21:48:41.091Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 364, "fields": {"date_created": "2018-09-26T21:48:41.094Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 365, "fields": {"date_created": "2018-09-26T21:48:41.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 366, "fields": {"date_created": "2018-09-26T21:48:41.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 367, "fields": {"date_created": "2018-09-26T21:48:41.104Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 368, "fields": {"date_created": "2018-09-26T21:48:41.108Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 369, "fields": {"date_created": "2018-09-26T21:48:41.165Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 370, "fields": {"date_created": "2018-09-26T21:48:41.169Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 371, "fields": {"date_created": "2018-09-26T21:48:41.172Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 372, "fields": {"date_created": "2018-09-26T21:48:41.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 373, "fields": {"date_created": "2018-09-26T21:48:41.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 374, "fields": {"date_created": "2018-09-26T21:48:41.183Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 375, "fields": {"date_created": "2018-09-26T21:48:41.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 376, "fields": {"date_created": "2018-09-26T21:48:41.189Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 377, "fields": {"date_created": "2018-09-26T21:48:41.192Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 378, "fields": {"date_created": "2018-09-26T21:48:41.196Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 379, "fields": {"date_created": "2018-09-26T21:48:41.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 380, "fields": {"date_created": "2018-09-26T21:48:41.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 381, "fields": {"date_created": "2018-09-26T21:48:41.206Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 382, "fields": {"date_created": "2018-09-26T21:48:41.262Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 383, "fields": {"date_created": "2018-09-26T21:48:41.267Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 384, "fields": {"date_created": "2018-09-26T21:48:41.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 385, "fields": {"date_created": "2018-09-26T21:48:41.274Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 386, "fields": {"date_created": "2018-09-26T21:48:41.277Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 387, "fields": {"date_created": "2018-09-26T21:48:41.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 388, "fields": {"date_created": "2018-09-26T21:48:41.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 389, "fields": {"date_created": "2018-09-26T21:48:41.287Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 390, "fields": {"date_created": "2018-09-26T21:48:41.353Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 391, "fields": {"date_created": "2018-09-26T21:48:41.362Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 392, "fields": {"date_created": "2018-09-26T21:48:41.367Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 393, "fields": {"date_created": "2018-09-26T21:48:41.370Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 394, "fields": {"date_created": "2018-09-26T21:48:41.374Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 395, "fields": {"date_created": "2018-09-26T21:48:41.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 396, "fields": {"date_created": "2018-09-26T21:48:41.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 397, "fields": {"date_created": "2018-09-26T21:48:41.383Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 398, "fields": {"date_created": "2018-09-26T21:48:41.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 399, "fields": {"date_created": "2018-09-26T21:48:41.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 400, "fields": {"date_created": "2018-09-26T21:48:41.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 401, "fields": {"date_created": "2018-09-26T21:48:41.397Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 402, "fields": {"date_created": "2018-09-26T21:48:41.400Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 403, "fields": {"date_created": "2018-09-26T21:48:41.403Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 404, "fields": {"date_created": "2018-09-26T21:48:41.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 405, "fields": {"date_created": "2018-09-26T21:48:41.463Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 406, "fields": {"date_created": "2018-09-26T21:48:41.468Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 407, "fields": {"date_created": "2018-09-26T21:48:41.471Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 408, "fields": {"date_created": "2018-09-26T21:48:41.475Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 409, "fields": {"date_created": "2018-09-26T21:48:41.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 410, "fields": {"date_created": "2018-09-26T21:48:41.498Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 411, "fields": {"date_created": "2018-09-26T21:48:41.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 412, "fields": {"date_created": "2018-09-26T21:48:41.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 413, "fields": {"date_created": "2018-09-26T21:48:41.508Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 414, "fields": {"date_created": "2018-09-26T21:48:41.511Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 415, "fields": {"date_created": "2018-09-26T21:48:41.514Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 416, "fields": {"date_created": "2018-09-26T21:48:41.517Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 417, "fields": {"date_created": "2018-09-26T21:48:41.520Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 418, "fields": {"date_created": "2018-09-26T21:48:41.524Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 419, "fields": {"date_created": "2018-09-26T21:48:41.565Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 420, "fields": {"date_created": "2018-09-26T21:48:41.569Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 421, "fields": {"date_created": "2018-09-26T21:48:41.577Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 422, "fields": {"date_created": "2018-09-26T21:48:41.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 423, "fields": {"date_created": "2018-09-26T21:48:41.590Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 424, "fields": {"date_created": "2018-09-26T21:48:41.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 425, "fields": {"date_created": "2018-09-26T21:48:41.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 426, "fields": {"date_created": "2018-09-26T21:48:41.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 427, "fields": {"date_created": "2018-09-26T21:48:41.664Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 428, "fields": {"date_created": "2018-09-26T21:48:41.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 429, "fields": {"date_created": "2018-09-26T21:48:41.673Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 430, "fields": {"date_created": "2018-09-26T21:48:41.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 431, "fields": {"date_created": "2018-09-26T21:48:41.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 432, "fields": {"date_created": "2018-09-26T21:48:41.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 433, "fields": {"date_created": "2018-09-26T21:48:41.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 434, "fields": {"date_created": "2018-09-26T21:48:41.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 435, "fields": {"date_created": "2018-09-26T21:48:41.693Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 436, "fields": {"date_created": "2018-09-26T21:48:41.697Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 437, "fields": {"date_created": "2018-09-26T21:48:41.700Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 438, "fields": {"date_created": "2018-09-26T21:48:41.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 439, "fields": {"date_created": "2018-09-26T21:48:41.706Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 440, "fields": {"date_created": "2018-09-26T21:48:41.767Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 441, "fields": {"date_created": "2018-09-26T21:48:41.771Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 442, "fields": {"date_created": "2018-09-26T21:48:41.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 443, "fields": {"date_created": "2018-09-26T21:48:41.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 444, "fields": {"date_created": "2018-09-26T21:48:41.781Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 445, "fields": {"date_created": "2018-09-26T21:48:41.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 446, "fields": {"date_created": "2018-09-26T21:48:41.788Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 447, "fields": {"date_created": "2018-09-26T21:48:41.792Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 448, "fields": {"date_created": "2018-09-26T21:48:41.797Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 449, "fields": {"date_created": "2018-09-26T21:48:41.801Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 450, "fields": {"date_created": "2018-09-26T21:48:41.805Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 451, "fields": {"date_created": "2018-09-26T21:48:41.808Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 452, "fields": {"date_created": "2018-09-26T21:48:41.865Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 453, "fields": {"date_created": "2018-09-26T21:48:41.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 454, "fields": {"date_created": "2018-09-26T21:48:41.874Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 455, "fields": {"date_created": "2018-09-26T21:48:41.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 456, "fields": {"date_created": "2018-09-26T21:48:41.881Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 457, "fields": {"date_created": "2018-09-26T21:48:41.884Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 458, "fields": {"date_created": "2018-09-26T21:48:41.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 459, "fields": {"date_created": "2018-09-26T21:48:41.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 460, "fields": {"date_created": "2018-09-26T21:48:41.894Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 461, "fields": {"date_created": "2018-09-26T21:48:41.897Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 462, "fields": {"date_created": "2018-09-26T21:48:41.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 463, "fields": {"date_created": "2018-09-26T21:48:41.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 464, "fields": {"date_created": "2018-09-26T21:48:41.965Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 465, "fields": {"date_created": "2018-09-26T21:48:41.970Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 466, "fields": {"date_created": "2018-09-26T21:48:41.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 467, "fields": {"date_created": "2018-09-26T21:48:41.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 468, "fields": {"date_created": "2018-09-26T21:48:41.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 469, "fields": {"date_created": "2018-09-26T21:48:41.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 470, "fields": {"date_created": "2018-09-26T21:48:41.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 471, "fields": {"date_created": "2018-09-26T21:48:41.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 472, "fields": {"date_created": "2018-09-26T21:48:41.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 473, "fields": {"date_created": "2018-09-26T21:48:41.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 474, "fields": {"date_created": "2018-09-26T21:48:41.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 475, "fields": {"date_created": "2018-09-26T21:48:42.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 476, "fields": {"date_created": "2018-09-26T21:48:42.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 477, "fields": {"date_created": "2018-09-26T21:48:42.066Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 478, "fields": {"date_created": "2018-09-26T21:48:42.069Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 479, "fields": {"date_created": "2018-09-26T21:48:42.072Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 480, "fields": {"date_created": "2018-09-26T21:48:42.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 481, "fields": {"date_created": "2018-09-26T21:48:42.078Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 482, "fields": {"date_created": "2018-09-26T21:48:42.082Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 483, "fields": {"date_created": "2018-09-26T21:48:42.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 484, "fields": {"date_created": "2018-09-26T21:48:42.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 485, "fields": {"date_created": "2018-09-26T21:48:42.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 486, "fields": {"date_created": "2018-09-26T21:48:42.095Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 487, "fields": {"date_created": "2018-09-26T21:48:42.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 488, "fields": {"date_created": "2018-09-26T21:48:42.102Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 489, "fields": {"date_created": "2018-09-26T21:48:42.262Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 490, "fields": {"date_created": "2018-09-26T21:48:42.267Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 491, "fields": {"date_created": "2018-09-26T21:48:42.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 492, "fields": {"date_created": "2018-09-26T21:48:42.274Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 493, "fields": {"date_created": "2018-09-26T21:48:42.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 494, "fields": {"date_created": "2018-09-26T21:48:42.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 495, "fields": {"date_created": "2018-09-26T21:48:42.285Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 496, "fields": {"date_created": "2018-09-26T21:48:42.289Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 497, "fields": {"date_created": "2018-09-26T21:48:42.292Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 498, "fields": {"date_created": "2018-09-26T21:48:42.295Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 499, "fields": {"date_created": "2018-09-26T21:48:42.298Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 500, "fields": {"date_created": "2018-09-26T21:48:42.301Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 501, "fields": {"date_created": "2018-09-26T21:48:42.304Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 502, "fields": {"date_created": "2018-09-26T21:48:42.364Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 503, "fields": {"date_created": "2018-09-26T21:48:42.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 504, "fields": {"date_created": "2018-09-26T21:48:42.372Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 505, "fields": {"date_created": "2018-09-26T21:48:42.375Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 506, "fields": {"date_created": "2018-09-26T21:48:42.378Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 507, "fields": {"date_created": "2018-09-26T21:48:42.384Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 508, "fields": {"date_created": "2018-09-26T21:48:42.388Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 509, "fields": {"date_created": "2018-09-26T21:48:42.391Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 510, "fields": {"date_created": "2018-09-26T21:48:42.394Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 511, "fields": {"date_created": "2018-09-26T21:48:42.397Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 512, "fields": {"date_created": "2018-09-26T21:48:42.400Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 513, "fields": {"date_created": "2018-09-26T21:48:42.403Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 514, "fields": {"date_created": "2018-09-26T21:48:42.406Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 515, "fields": {"date_created": "2018-09-26T21:48:42.465Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 516, "fields": {"date_created": "2018-09-26T21:48:42.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 517, "fields": {"date_created": "2018-09-26T21:48:42.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 518, "fields": {"date_created": "2018-09-26T21:48:42.475Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 519, "fields": {"date_created": "2018-09-26T21:48:42.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 520, "fields": {"date_created": "2018-09-26T21:48:42.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 521, "fields": {"date_created": "2018-09-26T21:48:42.485Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 522, "fields": {"date_created": "2018-09-26T21:48:42.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 523, "fields": {"date_created": "2018-09-26T21:48:42.491Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 524, "fields": {"date_created": "2018-09-26T21:48:42.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 525, "fields": {"date_created": "2018-09-26T21:48:42.498Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 526, "fields": {"date_created": "2018-09-26T21:48:42.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 527, "fields": {"date_created": "2018-09-26T21:48:42.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 528, "fields": {"date_created": "2018-09-26T21:48:42.562Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 529, "fields": {"date_created": "2018-09-26T21:48:42.567Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 530, "fields": {"date_created": "2018-09-26T21:48:42.570Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 531, "fields": {"date_created": "2018-09-26T21:48:42.574Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 532, "fields": {"date_created": "2018-09-26T21:48:42.577Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 533, "fields": {"date_created": "2018-09-26T21:48:42.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 534, "fields": {"date_created": "2018-09-26T21:48:42.583Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 535, "fields": {"date_created": "2018-09-26T21:48:42.586Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 536, "fields": {"date_created": "2018-09-26T21:48:42.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 537, "fields": {"date_created": "2018-09-26T21:48:42.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 538, "fields": {"date_created": "2018-09-26T21:48:42.596Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 539, "fields": {"date_created": "2018-09-26T21:48:42.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 540, "fields": {"date_created": "2018-09-26T21:48:42.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 541, "fields": {"date_created": "2018-09-26T21:48:42.605Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 542, "fields": {"date_created": "2018-09-26T21:48:42.663Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 543, "fields": {"date_created": "2018-09-26T21:48:42.667Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 544, "fields": {"date_created": "2018-09-26T21:48:42.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 545, "fields": {"date_created": "2018-09-26T21:48:42.674Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 546, "fields": {"date_created": "2018-09-26T21:48:42.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 547, "fields": {"date_created": "2018-09-26T21:48:42.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 548, "fields": {"date_created": "2018-09-26T21:48:42.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 549, "fields": {"date_created": "2018-09-26T21:48:42.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 550, "fields": {"date_created": "2018-09-26T21:48:42.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 551, "fields": {"date_created": "2018-09-26T21:48:42.693Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 552, "fields": {"date_created": "2018-09-26T21:48:42.696Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 553, "fields": {"date_created": "2018-09-26T21:48:42.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 554, "fields": {"date_created": "2018-09-26T21:48:42.702Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 555, "fields": {"date_created": "2018-09-26T21:48:42.706Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 556, "fields": {"date_created": "2018-09-26T21:48:42.710Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 557, "fields": {"date_created": "2018-09-26T21:48:42.766Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 558, "fields": {"date_created": "2018-09-26T21:48:42.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 559, "fields": {"date_created": "2018-09-26T21:48:42.772Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 560, "fields": {"date_created": "2018-09-26T21:48:42.775Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 561, "fields": {"date_created": "2018-09-26T21:48:42.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 562, "fields": {"date_created": "2018-09-26T21:48:42.781Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 563, "fields": {"date_created": "2018-09-26T21:48:42.784Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 564, "fields": {"date_created": "2018-09-26T21:48:42.787Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 565, "fields": {"date_created": "2018-09-26T21:48:42.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 566, "fields": {"date_created": "2018-09-26T21:48:42.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 567, "fields": {"date_created": "2018-09-26T21:48:42.796Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 568, "fields": {"date_created": "2018-09-26T21:48:42.799Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 569, "fields": {"date_created": "2018-09-26T21:48:42.802Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 570, "fields": {"date_created": "2018-09-26T21:48:42.805Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 571, "fields": {"date_created": "2018-09-26T21:48:42.808Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 572, "fields": {"date_created": "2018-09-26T21:48:42.863Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 573, "fields": {"date_created": "2018-09-26T21:48:42.866Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 574, "fields": {"date_created": "2018-09-26T21:48:42.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 575, "fields": {"date_created": "2018-09-26T21:48:42.872Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 576, "fields": {"date_created": "2018-09-26T21:48:42.875Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 577, "fields": {"date_created": "2018-09-26T21:48:42.878Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 578, "fields": {"date_created": "2018-09-26T21:48:42.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 579, "fields": {"date_created": "2018-09-26T21:48:42.885Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 580, "fields": {"date_created": "2018-09-26T21:48:42.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 581, "fields": {"date_created": "2018-09-26T21:48:42.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 582, "fields": {"date_created": "2018-09-26T21:48:42.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 583, "fields": {"date_created": "2018-09-26T21:48:42.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 584, "fields": {"date_created": "2018-09-26T21:48:42.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 585, "fields": {"date_created": "2018-09-26T21:48:42.903Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 586, "fields": {"date_created": "2018-09-26T21:48:42.906Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 587, "fields": {"date_created": "2018-09-26T21:48:42.964Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 588, "fields": {"date_created": "2018-09-26T21:48:42.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 589, "fields": {"date_created": "2018-09-26T21:48:42.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 590, "fields": {"date_created": "2018-09-26T21:48:42.974Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 591, "fields": {"date_created": "2018-09-26T21:48:42.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 592, "fields": {"date_created": "2018-09-26T21:48:42.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 593, "fields": {"date_created": "2018-09-26T21:48:42.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 594, "fields": {"date_created": "2018-09-26T21:48:42.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 595, "fields": {"date_created": "2018-09-26T21:48:42.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 596, "fields": {"date_created": "2018-09-26T21:48:42.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 597, "fields": {"date_created": "2018-09-26T21:48:42.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 598, "fields": {"date_created": "2018-09-26T21:48:42.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 599, "fields": {"date_created": "2018-09-26T21:48:43.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 600, "fields": {"date_created": "2018-09-26T21:48:43.005Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 601, "fields": {"date_created": "2018-09-26T21:48:43.008Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 602, "fields": {"date_created": "2018-09-26T21:48:43.066Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 603, "fields": {"date_created": "2018-09-26T21:48:43.069Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 604, "fields": {"date_created": "2018-09-26T21:48:43.073Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 605, "fields": {"date_created": "2018-09-26T21:48:43.076Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 606, "fields": {"date_created": "2018-09-26T21:48:43.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 607, "fields": {"date_created": "2018-09-26T21:48:43.082Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 608, "fields": {"date_created": "2018-09-26T21:48:43.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 609, "fields": {"date_created": "2018-09-26T21:48:43.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 610, "fields": {"date_created": "2018-09-26T21:48:43.091Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 611, "fields": {"date_created": "2018-09-26T21:48:43.094Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 612, "fields": {"date_created": "2018-09-26T21:48:43.097Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 613, "fields": {"date_created": "2018-09-26T21:48:43.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 614, "fields": {"date_created": "2018-09-26T21:48:43.104Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 615, "fields": {"date_created": "2018-09-26T21:48:43.106Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 616, "fields": {"date_created": "2018-09-26T21:48:43.109Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 617, "fields": {"date_created": "2018-09-26T21:48:43.164Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 618, "fields": {"date_created": "2018-09-26T21:48:43.167Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 619, "fields": {"date_created": "2018-09-26T21:48:43.170Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 620, "fields": {"date_created": "2018-09-26T21:48:43.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 621, "fields": {"date_created": "2018-09-26T21:48:43.177Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 622, "fields": {"date_created": "2018-09-26T21:48:43.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 623, "fields": {"date_created": "2018-09-26T21:48:43.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 624, "fields": {"date_created": "2018-09-26T21:48:43.188Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 625, "fields": {"date_created": "2018-09-26T21:48:43.191Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 626, "fields": {"date_created": "2018-09-26T21:48:43.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 627, "fields": {"date_created": "2018-09-26T21:48:43.198Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 628, "fields": {"date_created": "2018-09-26T21:48:43.201Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 629, "fields": {"date_created": "2018-09-26T21:48:43.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 630, "fields": {"date_created": "2018-09-26T21:48:43.207Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 631, "fields": {"date_created": "2018-09-26T21:48:43.263Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 632, "fields": {"date_created": "2018-09-26T21:48:43.266Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 633, "fields": {"date_created": "2018-09-26T21:48:43.269Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 634, "fields": {"date_created": "2018-09-26T21:48:43.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 635, "fields": {"date_created": "2018-09-26T21:48:43.275Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 636, "fields": {"date_created": "2018-09-26T21:48:43.278Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 637, "fields": {"date_created": "2018-09-26T21:48:43.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 638, "fields": {"date_created": "2018-09-26T21:48:43.285Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 639, "fields": {"date_created": "2018-09-26T21:48:43.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 640, "fields": {"date_created": "2018-09-26T21:48:43.291Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 641, "fields": {"date_created": "2018-09-26T21:48:43.294Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 642, "fields": {"date_created": "2018-09-26T21:48:43.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 643, "fields": {"date_created": "2018-09-26T21:48:43.300Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 644, "fields": {"date_created": "2018-09-26T21:48:43.303Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 645, "fields": {"date_created": "2018-09-26T21:48:43.306Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 646, "fields": {"date_created": "2018-09-26T21:48:43.309Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 647, "fields": {"date_created": "2018-09-26T21:48:43.364Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 648, "fields": {"date_created": "2018-09-26T21:48:43.368Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 649, "fields": {"date_created": "2018-09-26T21:48:43.371Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 650, "fields": {"date_created": "2018-09-26T21:48:43.374Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 651, "fields": {"date_created": "2018-09-26T21:48:43.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 652, "fields": {"date_created": "2018-09-26T21:48:43.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 653, "fields": {"date_created": "2018-09-26T21:48:43.383Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 654, "fields": {"date_created": "2018-09-26T21:48:43.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 655, "fields": {"date_created": "2018-09-26T21:48:43.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 656, "fields": {"date_created": "2018-09-26T21:48:43.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 657, "fields": {"date_created": "2018-09-26T21:48:43.395Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 658, "fields": {"date_created": "2018-09-26T21:48:43.398Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 659, "fields": {"date_created": "2018-09-26T21:48:43.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 660, "fields": {"date_created": "2018-09-26T21:48:43.404Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 661, "fields": {"date_created": "2018-09-26T21:48:43.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 662, "fields": {"date_created": "2018-09-26T21:48:43.463Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 663, "fields": {"date_created": "2018-09-26T21:48:43.467Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 664, "fields": {"date_created": "2018-09-26T21:48:43.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 665, "fields": {"date_created": "2018-09-26T21:48:43.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 666, "fields": {"date_created": "2018-09-26T21:48:43.477Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 667, "fields": {"date_created": "2018-09-26T21:48:43.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 668, "fields": {"date_created": "2018-09-26T21:48:43.483Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 669, "fields": {"date_created": "2018-09-26T21:48:43.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 670, "fields": {"date_created": "2018-09-26T21:48:43.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 671, "fields": {"date_created": "2018-09-26T21:48:43.493Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 672, "fields": {"date_created": "2018-09-26T21:48:43.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 673, "fields": {"date_created": "2018-09-26T21:48:43.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 674, "fields": {"date_created": "2018-09-26T21:48:43.502Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 675, "fields": {"date_created": "2018-09-26T21:48:43.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 676, "fields": {"date_created": "2018-09-26T21:48:43.564Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 677, "fields": {"date_created": "2018-09-26T21:48:43.567Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 678, "fields": {"date_created": "2018-09-26T21:48:43.570Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 679, "fields": {"date_created": "2018-09-26T21:48:43.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 680, "fields": {"date_created": "2018-09-26T21:48:43.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 681, "fields": {"date_created": "2018-09-26T21:48:43.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 682, "fields": {"date_created": "2018-09-26T21:48:43.582Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 683, "fields": {"date_created": "2018-09-26T21:48:43.586Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 684, "fields": {"date_created": "2018-09-26T21:48:43.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 685, "fields": {"date_created": "2018-09-26T21:48:43.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 686, "fields": {"date_created": "2018-09-26T21:48:43.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 687, "fields": {"date_created": "2018-09-26T21:48:43.598Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 688, "fields": {"date_created": "2018-09-26T21:48:43.601Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 689, "fields": {"date_created": "2018-09-26T21:48:43.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 690, "fields": {"date_created": "2018-09-26T21:48:43.606Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 691, "fields": {"date_created": "2018-09-26T21:48:43.663Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 692, "fields": {"date_created": "2018-09-26T21:48:43.668Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 693, "fields": {"date_created": "2018-09-26T21:48:43.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 694, "fields": {"date_created": "2018-09-26T21:48:43.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 695, "fields": {"date_created": "2018-09-26T21:48:43.679Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 696, "fields": {"date_created": "2018-09-26T21:48:43.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 697, "fields": {"date_created": "2018-09-26T21:48:43.685Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 698, "fields": {"date_created": "2018-09-26T21:48:43.688Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 699, "fields": {"date_created": "2018-09-26T21:48:43.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 700, "fields": {"date_created": "2018-09-26T21:48:43.694Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 701, "fields": {"date_created": "2018-09-26T21:48:43.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 702, "fields": {"date_created": "2018-09-26T21:48:43.702Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 703, "fields": {"date_created": "2018-09-26T21:48:43.762Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 704, "fields": {"date_created": "2018-09-26T21:48:43.767Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 705, "fields": {"date_created": "2018-09-26T21:48:43.770Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 706, "fields": {"date_created": "2018-09-26T21:48:43.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 707, "fields": {"date_created": "2018-09-26T21:48:43.777Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 708, "fields": {"date_created": "2018-09-26T21:48:43.780Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 709, "fields": {"date_created": "2018-09-26T21:48:43.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 710, "fields": {"date_created": "2018-09-26T21:48:43.787Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 711, "fields": {"date_created": "2018-09-26T21:48:43.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 712, "fields": {"date_created": "2018-09-26T21:48:43.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 713, "fields": {"date_created": "2018-09-26T21:48:43.798Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 714, "fields": {"date_created": "2018-09-26T21:48:43.803Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 715, "fields": {"date_created": "2018-09-26T21:48:43.806Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 716, "fields": {"date_created": "2018-09-26T21:48:43.863Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 717, "fields": {"date_created": "2018-09-26T21:48:43.867Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 718, "fields": {"date_created": "2018-09-26T21:48:43.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 719, "fields": {"date_created": "2018-09-26T21:48:43.874Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 720, "fields": {"date_created": "2018-09-26T21:48:43.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 721, "fields": {"date_created": "2018-09-26T21:48:43.880Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 722, "fields": {"date_created": "2018-09-26T21:48:43.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 723, "fields": {"date_created": "2018-09-26T21:48:43.886Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 724, "fields": {"date_created": "2018-09-26T21:48:43.889Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 725, "fields": {"date_created": "2018-09-26T21:48:43.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 726, "fields": {"date_created": "2018-09-26T21:48:43.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 727, "fields": {"date_created": "2018-09-26T21:48:43.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 728, "fields": {"date_created": "2018-09-26T21:48:43.903Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 729, "fields": {"date_created": "2018-09-26T21:48:43.906Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 730, "fields": {"date_created": "2018-09-26T21:48:43.964Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 731, "fields": {"date_created": "2018-09-26T21:48:43.968Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 732, "fields": {"date_created": "2018-09-26T21:48:43.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 733, "fields": {"date_created": "2018-09-26T21:48:43.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 734, "fields": {"date_created": "2018-09-26T21:48:43.981Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 735, "fields": {"date_created": "2018-09-26T21:48:43.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 736, "fields": {"date_created": "2018-09-26T21:48:43.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 737, "fields": {"date_created": "2018-09-26T21:48:43.991Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 738, "fields": {"date_created": "2018-09-26T21:48:43.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 739, "fields": {"date_created": "2018-09-26T21:48:43.997Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 740, "fields": {"date_created": "2018-09-26T21:48:44.001Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 741, "fields": {"date_created": "2018-09-26T21:48:44.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 742, "fields": {"date_created": "2018-09-26T21:48:44.064Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 743, "fields": {"date_created": "2018-09-26T21:48:44.068Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 744, "fields": {"date_created": "2018-09-26T21:48:44.071Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 745, "fields": {"date_created": "2018-09-26T21:48:44.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 746, "fields": {"date_created": "2018-09-26T21:48:44.077Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 747, "fields": {"date_created": "2018-09-26T21:48:44.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 748, "fields": {"date_created": "2018-09-26T21:48:44.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 749, "fields": {"date_created": "2018-09-26T21:48:44.086Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 750, "fields": {"date_created": "2018-09-26T21:48:44.090Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 751, "fields": {"date_created": "2018-09-26T21:48:44.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 752, "fields": {"date_created": "2018-09-26T21:48:44.095Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 753, "fields": {"date_created": "2018-09-26T21:48:44.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 754, "fields": {"date_created": "2018-09-26T21:48:44.102Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 755, "fields": {"date_created": "2018-09-26T21:48:44.105Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 756, "fields": {"date_created": "2018-09-26T21:48:44.108Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 757, "fields": {"date_created": "2018-09-26T21:48:44.167Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 758, "fields": {"date_created": "2018-09-26T21:48:44.171Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 759, "fields": {"date_created": "2018-09-26T21:48:44.174Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 760, "fields": {"date_created": "2018-09-26T21:48:44.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 761, "fields": {"date_created": "2018-09-26T21:48:44.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 762, "fields": {"date_created": "2018-09-26T21:48:44.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 763, "fields": {"date_created": "2018-09-26T21:48:44.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 764, "fields": {"date_created": "2018-09-26T21:48:44.193Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 765, "fields": {"date_created": "2018-09-26T21:48:44.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 766, "fields": {"date_created": "2018-09-26T21:48:44.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 767, "fields": {"date_created": "2018-09-26T21:48:44.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 768, "fields": {"date_created": "2018-09-26T21:48:44.207Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 769, "fields": {"date_created": "2018-09-26T21:48:44.265Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 770, "fields": {"date_created": "2018-09-26T21:48:44.269Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 771, "fields": {"date_created": "2018-09-26T21:48:44.272Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 772, "fields": {"date_created": "2018-09-26T21:48:44.276Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 773, "fields": {"date_created": "2018-09-26T21:48:44.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 774, "fields": {"date_created": "2018-09-26T21:48:44.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 775, "fields": {"date_created": "2018-09-26T21:48:44.291Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 776, "fields": {"date_created": "2018-09-26T21:48:44.294Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 777, "fields": {"date_created": "2018-09-26T21:48:44.298Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 778, "fields": {"date_created": "2018-09-26T21:48:44.301Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 779, "fields": {"date_created": "2018-09-26T21:48:44.305Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 780, "fields": {"date_created": "2018-09-26T21:48:44.308Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 781, "fields": {"date_created": "2018-09-26T21:48:44.312Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 782, "fields": {"date_created": "2018-09-26T21:48:44.315Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 783, "fields": {"date_created": "2018-09-26T21:48:44.365Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 784, "fields": {"date_created": "2018-09-26T21:48:44.368Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 785, "fields": {"date_created": "2018-09-26T21:48:44.372Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 786, "fields": {"date_created": "2018-09-26T21:48:44.375Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 787, "fields": {"date_created": "2018-09-26T21:48:44.378Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 788, "fields": {"date_created": "2018-09-26T21:48:44.381Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 789, "fields": {"date_created": "2018-09-26T21:48:44.385Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 790, "fields": {"date_created": "2018-09-26T21:48:44.451Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 791, "fields": {"date_created": "2018-09-26T21:48:44.454Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 792, "fields": {"date_created": "2018-09-26T21:48:44.464Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 793, "fields": {"date_created": "2018-09-26T21:48:44.467Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 794, "fields": {"date_created": "2018-09-26T21:48:44.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 795, "fields": {"date_created": "2018-09-26T21:48:44.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 796, "fields": {"date_created": "2018-09-26T21:48:44.478Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 797, "fields": {"date_created": "2018-09-26T21:48:44.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 798, "fields": {"date_created": "2018-09-26T21:48:44.485Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 799, "fields": {"date_created": "2018-09-26T21:48:44.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 800, "fields": {"date_created": "2018-09-26T21:48:44.491Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 801, "fields": {"date_created": "2018-09-26T21:48:44.494Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 802, "fields": {"date_created": "2018-09-26T21:48:44.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 803, "fields": {"date_created": "2018-09-26T21:48:44.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 804, "fields": {"date_created": "2018-09-26T21:48:44.503Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 805, "fields": {"date_created": "2018-09-26T21:48:44.507Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 806, "fields": {"date_created": "2018-09-26T21:48:44.563Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 807, "fields": {"date_created": "2018-09-26T21:48:44.567Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 808, "fields": {"date_created": "2018-09-26T21:48:44.571Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 809, "fields": {"date_created": "2018-09-26T21:48:44.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 810, "fields": {"date_created": "2018-09-26T21:48:44.578Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 811, "fields": {"date_created": "2018-09-26T21:48:44.582Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 812, "fields": {"date_created": "2018-09-26T21:48:44.585Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 813, "fields": {"date_created": "2018-09-26T21:48:44.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 814, "fields": {"date_created": "2018-09-26T21:48:44.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 815, "fields": {"date_created": "2018-09-26T21:48:44.597Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 816, "fields": {"date_created": "2018-09-26T21:48:44.601Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 817, "fields": {"date_created": "2018-09-26T21:48:44.604Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 818, "fields": {"date_created": "2018-09-26T21:48:44.607Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 819, "fields": {"date_created": "2018-09-26T21:48:44.610Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 820, "fields": {"date_created": "2018-09-26T21:48:44.665Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 821, "fields": {"date_created": "2018-09-26T21:48:44.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 822, "fields": {"date_created": "2018-09-26T21:48:44.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 823, "fields": {"date_created": "2018-09-26T21:48:44.676Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 824, "fields": {"date_created": "2018-09-26T21:48:44.679Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 825, "fields": {"date_created": "2018-09-26T21:48:44.682Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 826, "fields": {"date_created": "2018-09-26T21:48:44.685Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 827, "fields": {"date_created": "2018-09-26T21:48:44.688Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 828, "fields": {"date_created": "2018-09-26T21:48:44.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 829, "fields": {"date_created": "2018-09-26T21:48:44.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 830, "fields": {"date_created": "2018-09-26T21:48:44.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 831, "fields": {"date_created": "2018-09-26T21:48:44.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 832, "fields": {"date_created": "2018-09-26T21:48:44.704Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 833, "fields": {"date_created": "2018-09-26T21:48:44.763Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 834, "fields": {"date_created": "2018-09-26T21:48:44.767Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 835, "fields": {"date_created": "2018-09-26T21:48:44.770Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 836, "fields": {"date_created": "2018-09-26T21:48:44.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 837, "fields": {"date_created": "2018-09-26T21:48:44.777Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 838, "fields": {"date_created": "2018-09-26T21:48:44.780Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 839, "fields": {"date_created": "2018-09-26T21:48:44.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 840, "fields": {"date_created": "2018-09-26T21:48:44.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 841, "fields": {"date_created": "2018-09-26T21:48:44.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 842, "fields": {"date_created": "2018-09-26T21:48:44.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 843, "fields": {"date_created": "2018-09-26T21:48:44.797Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 844, "fields": {"date_created": "2018-09-26T21:48:44.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 845, "fields": {"date_created": "2018-09-26T21:48:44.803Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 846, "fields": {"date_created": "2018-09-26T21:48:44.806Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 847, "fields": {"date_created": "2018-09-26T21:48:44.862Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 848, "fields": {"date_created": "2018-09-26T21:48:44.866Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 849, "fields": {"date_created": "2018-09-26T21:48:44.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 850, "fields": {"date_created": "2018-09-26T21:48:44.872Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 851, "fields": {"date_created": "2018-09-26T21:48:44.876Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 852, "fields": {"date_created": "2018-09-26T21:48:44.879Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 853, "fields": {"date_created": "2018-09-26T21:48:44.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 854, "fields": {"date_created": "2018-09-26T21:48:44.885Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 855, "fields": {"date_created": "2018-09-26T21:48:44.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 856, "fields": {"date_created": "2018-09-26T21:48:44.891Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 857, "fields": {"date_created": "2018-09-26T21:48:44.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 858, "fields": {"date_created": "2018-09-26T21:48:44.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 859, "fields": {"date_created": "2018-09-26T21:48:44.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 860, "fields": {"date_created": "2018-09-26T21:48:44.906Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 861, "fields": {"date_created": "2018-09-26T21:48:44.962Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 862, "fields": {"date_created": "2018-09-26T21:48:44.966Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 863, "fields": {"date_created": "2018-09-26T21:48:44.969Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 864, "fields": {"date_created": "2018-09-26T21:48:44.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 865, "fields": {"date_created": "2018-09-26T21:48:44.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 866, "fields": {"date_created": "2018-09-26T21:48:44.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 867, "fields": {"date_created": "2018-09-26T21:48:44.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 868, "fields": {"date_created": "2018-09-26T21:48:44.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 869, "fields": {"date_created": "2018-09-26T21:48:44.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 870, "fields": {"date_created": "2018-09-26T21:48:44.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 871, "fields": {"date_created": "2018-09-26T21:48:44.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 872, "fields": {"date_created": "2018-09-26T21:48:44.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 873, "fields": {"date_created": "2018-09-26T21:48:45.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 874, "fields": {"date_created": "2018-09-26T21:48:45.005Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 875, "fields": {"date_created": "2018-09-26T21:48:45.064Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 876, "fields": {"date_created": "2018-09-26T21:48:45.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 877, "fields": {"date_created": "2018-09-26T21:48:45.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 878, "fields": {"date_created": "2018-09-26T21:48:45.077Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 879, "fields": {"date_created": "2018-09-26T21:48:45.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 880, "fields": {"date_created": "2018-09-26T21:48:45.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 881, "fields": {"date_created": "2018-09-26T21:48:45.087Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 882, "fields": {"date_created": "2018-09-26T21:48:45.090Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 883, "fields": {"date_created": "2018-09-26T21:48:45.093Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 884, "fields": {"date_created": "2018-09-26T21:48:45.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 885, "fields": {"date_created": "2018-09-26T21:48:45.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 886, "fields": {"date_created": "2018-09-26T21:48:45.102Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 887, "fields": {"date_created": "2018-09-26T21:48:45.105Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 888, "fields": {"date_created": "2018-09-26T21:48:45.162Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 889, "fields": {"date_created": "2018-09-26T21:48:45.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 890, "fields": {"date_created": "2018-09-26T21:48:45.169Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 891, "fields": {"date_created": "2018-09-26T21:48:45.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 892, "fields": {"date_created": "2018-09-26T21:48:45.176Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 893, "fields": {"date_created": "2018-09-26T21:48:45.181Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 894, "fields": {"date_created": "2018-09-26T21:48:45.184Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 895, "fields": {"date_created": "2018-09-26T21:48:45.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 896, "fields": {"date_created": "2018-09-26T21:48:45.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 897, "fields": {"date_created": "2018-09-26T21:48:45.193Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 898, "fields": {"date_created": "2018-09-26T21:48:45.196Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 899, "fields": {"date_created": "2018-09-26T21:48:45.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 900, "fields": {"date_created": "2018-09-26T21:48:45.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 901, "fields": {"date_created": "2018-09-26T21:48:45.205Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 902, "fields": {"date_created": "2018-09-26T21:48:45.264Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 903, "fields": {"date_created": "2018-09-26T21:48:45.268Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 904, "fields": {"date_created": "2018-09-26T21:48:45.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 905, "fields": {"date_created": "2018-09-26T21:48:45.275Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 906, "fields": {"date_created": "2018-09-26T21:48:45.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 907, "fields": {"date_created": "2018-09-26T21:48:45.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 908, "fields": {"date_created": "2018-09-26T21:48:45.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 909, "fields": {"date_created": "2018-09-26T21:48:45.289Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 910, "fields": {"date_created": "2018-09-26T21:48:45.293Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 911, "fields": {"date_created": "2018-09-26T21:48:45.296Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 912, "fields": {"date_created": "2018-09-26T21:48:45.299Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 913, "fields": {"date_created": "2018-09-26T21:48:45.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 914, "fields": {"date_created": "2018-09-26T21:48:45.306Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 915, "fields": {"date_created": "2018-09-26T21:48:45.365Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 916, "fields": {"date_created": "2018-09-26T21:48:45.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 917, "fields": {"date_created": "2018-09-26T21:48:45.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 918, "fields": {"date_created": "2018-09-26T21:48:45.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 919, "fields": {"date_created": "2018-09-26T21:48:45.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 920, "fields": {"date_created": "2018-09-26T21:48:45.383Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 921, "fields": {"date_created": "2018-09-26T21:48:45.387Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 922, "fields": {"date_created": "2018-09-26T21:48:45.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 923, "fields": {"date_created": "2018-09-26T21:48:45.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 924, "fields": {"date_created": "2018-09-26T21:48:45.396Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 925, "fields": {"date_created": "2018-09-26T21:48:45.400Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 926, "fields": {"date_created": "2018-09-26T21:48:45.403Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 927, "fields": {"date_created": "2018-09-26T21:48:45.406Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 928, "fields": {"date_created": "2018-09-26T21:48:45.409Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 929, "fields": {"date_created": "2018-09-26T21:48:45.466Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 930, "fields": {"date_created": "2018-09-26T21:48:45.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 931, "fields": {"date_created": "2018-09-26T21:48:45.473Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 932, "fields": {"date_created": "2018-09-26T21:48:45.476Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 933, "fields": {"date_created": "2018-09-26T21:48:45.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 934, "fields": {"date_created": "2018-09-26T21:48:45.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 935, "fields": {"date_created": "2018-09-26T21:48:45.485Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 936, "fields": {"date_created": "2018-09-26T21:48:45.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 937, "fields": {"date_created": "2018-09-26T21:48:45.491Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 938, "fields": {"date_created": "2018-09-26T21:48:45.494Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 939, "fields": {"date_created": "2018-09-26T21:48:45.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 940, "fields": {"date_created": "2018-09-26T21:48:45.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 941, "fields": {"date_created": "2018-09-26T21:48:45.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 942, "fields": {"date_created": "2018-09-26T21:48:45.507Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 943, "fields": {"date_created": "2018-09-26T21:48:45.565Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 944, "fields": {"date_created": "2018-09-26T21:48:45.568Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 945, "fields": {"date_created": "2018-09-26T21:48:45.571Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 946, "fields": {"date_created": "2018-09-26T21:48:45.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 947, "fields": {"date_created": "2018-09-26T21:48:45.578Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 948, "fields": {"date_created": "2018-09-26T21:48:45.581Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 949, "fields": {"date_created": "2018-09-26T21:48:45.585Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 950, "fields": {"date_created": "2018-09-26T21:48:45.588Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 951, "fields": {"date_created": "2018-09-26T21:48:45.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 952, "fields": {"date_created": "2018-09-26T21:48:45.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 953, "fields": {"date_created": "2018-09-26T21:48:45.597Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 954, "fields": {"date_created": "2018-09-26T21:48:45.600Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 955, "fields": {"date_created": "2018-09-26T21:48:45.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 956, "fields": {"date_created": "2018-09-26T21:48:45.606Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 957, "fields": {"date_created": "2018-09-26T21:48:45.609Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 958, "fields": {"date_created": "2018-09-26T21:48:45.666Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 959, "fields": {"date_created": "2018-09-26T21:48:45.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 960, "fields": {"date_created": "2018-09-26T21:48:45.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 961, "fields": {"date_created": "2018-09-26T21:48:45.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 962, "fields": {"date_created": "2018-09-26T21:48:45.679Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 963, "fields": {"date_created": "2018-09-26T21:48:45.683Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 964, "fields": {"date_created": "2018-09-26T21:48:45.686Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 965, "fields": {"date_created": "2018-09-26T21:48:45.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 966, "fields": {"date_created": "2018-09-26T21:48:45.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 967, "fields": {"date_created": "2018-09-26T21:48:45.696Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 968, "fields": {"date_created": "2018-09-26T21:48:45.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 969, "fields": {"date_created": "2018-09-26T21:48:45.702Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 970, "fields": {"date_created": "2018-09-26T21:48:45.705Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 971, "fields": {"date_created": "2018-09-26T21:48:45.708Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 972, "fields": {"date_created": "2018-09-26T21:48:45.766Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 973, "fields": {"date_created": "2018-09-26T21:48:45.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 974, "fields": {"date_created": "2018-09-26T21:48:45.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 975, "fields": {"date_created": "2018-09-26T21:48:45.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 976, "fields": {"date_created": "2018-09-26T21:48:45.779Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 977, "fields": {"date_created": "2018-09-26T21:48:45.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 978, "fields": {"date_created": "2018-09-26T21:48:45.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 979, "fields": {"date_created": "2018-09-26T21:48:45.789Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 980, "fields": {"date_created": "2018-09-26T21:48:45.792Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 981, "fields": {"date_created": "2018-09-26T21:48:45.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 982, "fields": {"date_created": "2018-09-26T21:48:45.799Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 983, "fields": {"date_created": "2018-09-26T21:48:45.805Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 984, "fields": {"date_created": "2018-09-26T21:48:45.808Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 985, "fields": {"date_created": "2018-09-26T21:48:45.811Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 986, "fields": {"date_created": "2018-09-26T21:48:45.865Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 987, "fields": {"date_created": "2018-09-26T21:48:45.868Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 988, "fields": {"date_created": "2018-09-26T21:48:45.871Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 989, "fields": {"date_created": "2018-09-26T21:48:45.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 990, "fields": {"date_created": "2018-09-26T21:48:45.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 991, "fields": {"date_created": "2018-09-26T21:48:45.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 992, "fields": {"date_created": "2018-09-26T21:48:45.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 993, "fields": {"date_created": "2018-09-26T21:48:45.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 994, "fields": {"date_created": "2018-09-26T21:48:45.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 995, "fields": {"date_created": "2018-09-26T21:48:45.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 996, "fields": {"date_created": "2018-09-26T21:48:45.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 997, "fields": {"date_created": "2018-09-26T21:48:45.908Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 998, "fields": {"date_created": "2018-09-26T21:48:45.966Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 999, "fields": {"date_created": "2018-09-26T21:48:45.969Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1000, "fields": {"date_created": "2018-09-26T21:48:45.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1001, "fields": {"date_created": "2018-09-26T21:48:45.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1002, "fields": {"date_created": "2018-09-26T21:48:45.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1003, "fields": {"date_created": "2018-09-26T21:48:45.982Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1004, "fields": {"date_created": "2018-09-26T21:48:45.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1005, "fields": {"date_created": "2018-09-26T21:48:45.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1006, "fields": {"date_created": "2018-09-26T21:48:45.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1007, "fields": {"date_created": "2018-09-26T21:48:45.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1008, "fields": {"date_created": "2018-09-26T21:48:45.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1009, "fields": {"date_created": "2018-09-26T21:48:46.001Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1010, "fields": {"date_created": "2018-09-26T21:48:46.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1011, "fields": {"date_created": "2018-09-26T21:48:46.065Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1012, "fields": {"date_created": "2018-09-26T21:48:46.069Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1013, "fields": {"date_created": "2018-09-26T21:48:46.073Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1014, "fields": {"date_created": "2018-09-26T21:48:46.076Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1015, "fields": {"date_created": "2018-09-26T21:48:46.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1016, "fields": {"date_created": "2018-09-26T21:48:46.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1017, "fields": {"date_created": "2018-09-26T21:48:46.086Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1018, "fields": {"date_created": "2018-09-26T21:48:46.089Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1019, "fields": {"date_created": "2018-09-26T21:48:46.093Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1020, "fields": {"date_created": "2018-09-26T21:48:46.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1021, "fields": {"date_created": "2018-09-26T21:48:46.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1022, "fields": {"date_created": "2018-09-26T21:48:46.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1023, "fields": {"date_created": "2018-09-26T21:48:46.106Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1024, "fields": {"date_created": "2018-09-26T21:48:46.163Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1025, "fields": {"date_created": "2018-09-26T21:48:46.167Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1026, "fields": {"date_created": "2018-09-26T21:48:46.170Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1027, "fields": {"date_created": "2018-09-26T21:48:46.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1028, "fields": {"date_created": "2018-09-26T21:48:46.176Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1029, "fields": {"date_created": "2018-09-26T21:48:46.180Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1030, "fields": {"date_created": "2018-09-26T21:48:46.183Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1031, "fields": {"date_created": "2018-09-26T21:48:46.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1032, "fields": {"date_created": "2018-09-26T21:48:46.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1033, "fields": {"date_created": "2018-09-26T21:48:46.210Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1034, "fields": {"date_created": "2018-09-26T21:48:46.220Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1035, "fields": {"date_created": "2018-09-26T21:48:46.263Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1036, "fields": {"date_created": "2018-09-26T21:48:46.268Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1037, "fields": {"date_created": "2018-09-26T21:48:46.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1038, "fields": {"date_created": "2018-09-26T21:48:46.277Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1039, "fields": {"date_created": "2018-09-26T21:48:46.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1040, "fields": {"date_created": "2018-09-26T21:48:46.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1041, "fields": {"date_created": "2018-09-26T21:48:46.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1042, "fields": {"date_created": "2018-09-26T21:48:46.294Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1043, "fields": {"date_created": "2018-09-26T21:48:46.298Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1044, "fields": {"date_created": "2018-09-26T21:48:46.310Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1045, "fields": {"date_created": "2018-09-26T21:48:46.366Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1046, "fields": {"date_created": "2018-09-26T21:48:46.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1047, "fields": {"date_created": "2018-09-26T21:48:46.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1048, "fields": {"date_created": "2018-09-26T21:48:46.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1049, "fields": {"date_created": "2018-09-26T21:48:46.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1050, "fields": {"date_created": "2018-09-26T21:48:46.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1051, "fields": {"date_created": "2018-09-26T21:48:46.564Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1052, "fields": {"date_created": "2018-09-26T21:48:46.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1053, "fields": {"date_created": "2018-09-26T21:48:46.581Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1054, "fields": {"date_created": "2018-09-26T21:48:46.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1055, "fields": {"date_created": "2018-09-26T21:48:46.596Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1056, "fields": {"date_created": "2018-09-26T21:48:46.662Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1057, "fields": {"date_created": "2018-09-26T21:48:46.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1058, "fields": {"date_created": "2018-09-26T21:48:46.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1059, "fields": {"date_created": "2018-09-26T21:48:46.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1060, "fields": {"date_created": "2018-09-26T21:48:46.697Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1061, "fields": {"date_created": "2018-09-26T21:48:46.702Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1062, "fields": {"date_created": "2018-09-26T21:48:46.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1063, "fields": {"date_created": "2018-09-26T21:48:46.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1064, "fields": {"date_created": "2018-09-26T21:48:46.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1065, "fields": {"date_created": "2018-09-26T21:48:46.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1066, "fields": {"date_created": "2018-09-26T21:48:46.802Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1067, "fields": {"date_created": "2018-09-26T21:48:46.868Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1068, "fields": {"date_created": "2018-09-26T21:48:46.873Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1069, "fields": {"date_created": "2018-09-26T21:48:46.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1070, "fields": {"date_created": "2018-09-26T21:48:46.891Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1071, "fields": {"date_created": "2018-09-26T21:48:46.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1072, "fields": {"date_created": "2018-09-26T21:48:46.964Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1073, "fields": {"date_created": "2018-09-26T21:48:46.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1074, "fields": {"date_created": "2018-09-26T21:48:46.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1075, "fields": {"date_created": "2018-09-26T21:48:46.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1076, "fields": {"date_created": "2018-09-26T21:48:46.997Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1077, "fields": {"date_created": "2018-09-26T21:48:47.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1078, "fields": {"date_created": "2018-09-26T21:48:47.067Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1079, "fields": {"date_created": "2018-09-26T21:48:47.076Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1080, "fields": {"date_created": "2018-09-26T21:48:47.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1081, "fields": {"date_created": "2018-09-26T21:48:47.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1082, "fields": {"date_created": "2018-09-26T21:48:47.100Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1083, "fields": {"date_created": "2018-09-26T21:48:47.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1084, "fields": {"date_created": "2018-09-26T21:48:47.174Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1085, "fields": {"date_created": "2018-09-26T21:48:47.183Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1086, "fields": {"date_created": "2018-09-26T21:48:47.191Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1087, "fields": {"date_created": "2018-09-26T21:48:47.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1088, "fields": {"date_created": "2018-09-26T21:48:47.262Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1089, "fields": {"date_created": "2018-09-26T21:48:47.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1090, "fields": {"date_created": "2018-09-26T21:48:47.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1091, "fields": {"date_created": "2018-09-26T21:48:47.289Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1092, "fields": {"date_created": "2018-09-26T21:48:47.299Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1093, "fields": {"date_created": "2018-09-26T21:48:47.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1094, "fields": {"date_created": "2018-09-26T21:48:47.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1095, "fields": {"date_created": "2018-09-26T21:48:47.374Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1096, "fields": {"date_created": "2018-09-26T21:48:47.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1097, "fields": {"date_created": "2018-09-26T21:48:47.395Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1098, "fields": {"date_created": "2018-09-26T21:48:47.403Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1099, "fields": {"date_created": "2018-09-26T21:48:47.464Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1100, "fields": {"date_created": "2018-09-26T21:48:47.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1101, "fields": {"date_created": "2018-09-26T21:48:47.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1102, "fields": {"date_created": "2018-09-26T21:48:47.492Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1103, "fields": {"date_created": "2018-09-26T21:48:47.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1104, "fields": {"date_created": "2018-09-26T21:48:47.509Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1105, "fields": {"date_created": "2018-09-26T21:48:47.571Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1106, "fields": {"date_created": "2018-09-26T21:48:47.579Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1107, "fields": {"date_created": "2018-09-26T21:48:47.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1108, "fields": {"date_created": "2018-09-26T21:48:47.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1109, "fields": {"date_created": "2018-09-26T21:48:47.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1110, "fields": {"date_created": "2018-09-26T21:48:47.670Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1111, "fields": {"date_created": "2018-09-26T21:48:47.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1112, "fields": {"date_created": "2018-09-26T21:48:47.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1113, "fields": {"date_created": "2018-09-26T21:48:47.696Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1114, "fields": {"date_created": "2018-09-26T21:48:47.764Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1115, "fields": {"date_created": "2018-09-26T21:48:47.854Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1116, "fields": {"date_created": "2018-09-26T21:48:47.862Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1117, "fields": {"date_created": "2018-09-26T21:48:47.871Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1118, "fields": {"date_created": "2018-09-26T21:48:47.879Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1119, "fields": {"date_created": "2018-09-26T21:48:47.953Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1120, "fields": {"date_created": "2018-09-26T21:48:47.963Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1121, "fields": {"date_created": "2018-09-26T21:48:47.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1122, "fields": {"date_created": "2018-09-26T21:48:47.982Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1123, "fields": {"date_created": "2018-09-26T21:48:47.990Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1124, "fields": {"date_created": "2018-09-26T21:48:47.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1125, "fields": {"date_created": "2018-09-26T21:48:48.062Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1126, "fields": {"date_created": "2018-09-26T21:48:48.072Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1127, "fields": {"date_created": "2018-09-26T21:48:48.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1128, "fields": {"date_created": "2018-09-26T21:48:48.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1129, "fields": {"date_created": "2018-09-26T21:48:48.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1130, "fields": {"date_created": "2018-09-26T21:48:48.164Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1131, "fields": {"date_created": "2018-09-26T21:48:48.171Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1132, "fields": {"date_created": "2018-09-26T21:48:48.181Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1133, "fields": {"date_created": "2018-09-26T21:48:48.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1134, "fields": {"date_created": "2018-09-26T21:48:48.198Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1135, "fields": {"date_created": "2018-09-26T21:48:48.264Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1136, "fields": {"date_created": "2018-09-26T21:48:48.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1137, "fields": {"date_created": "2018-09-26T21:48:48.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1138, "fields": {"date_created": "2018-09-26T21:48:48.291Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1139, "fields": {"date_created": "2018-09-26T21:48:48.296Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1140, "fields": {"date_created": "2018-09-26T21:48:48.304Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1141, "fields": {"date_created": "2018-09-26T21:48:48.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1142, "fields": {"date_created": "2018-09-26T21:48:48.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1143, "fields": {"date_created": "2018-09-26T21:48:48.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1144, "fields": {"date_created": "2018-09-26T21:48:48.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1145, "fields": {"date_created": "2018-09-26T21:48:48.409Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1146, "fields": {"date_created": "2018-09-26T21:48:48.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1147, "fields": {"date_created": "2018-09-26T21:48:48.478Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1148, "fields": {"date_created": "2018-09-26T21:48:48.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1149, "fields": {"date_created": "2018-09-26T21:48:48.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1150, "fields": {"date_created": "2018-09-26T21:48:48.506Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1151, "fields": {"date_created": "2018-09-26T21:48:48.566Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1152, "fields": {"date_created": "2018-09-26T21:48:48.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1153, "fields": {"date_created": "2018-09-26T21:48:48.584Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1154, "fields": {"date_created": "2018-09-26T21:48:48.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1155, "fields": {"date_created": "2018-09-26T21:48:48.600Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1156, "fields": {"date_created": "2018-09-26T21:48:48.664Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1157, "fields": {"date_created": "2018-09-26T21:48:48.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1158, "fields": {"date_created": "2018-09-26T21:48:48.678Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1159, "fields": {"date_created": "2018-09-26T21:48:48.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1160, "fields": {"date_created": "2018-09-26T21:48:48.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1161, "fields": {"date_created": "2018-09-26T21:48:48.700Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1162, "fields": {"date_created": "2018-09-26T21:48:48.765Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1163, "fields": {"date_created": "2018-09-26T21:48:48.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1164, "fields": {"date_created": "2018-09-26T21:48:48.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1165, "fields": {"date_created": "2018-09-26T21:48:48.788Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1166, "fields": {"date_created": "2018-09-26T21:48:48.796Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1167, "fields": {"date_created": "2018-09-26T21:48:48.862Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1168, "fields": {"date_created": "2018-09-26T21:48:48.872Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1169, "fields": {"date_created": "2018-09-26T21:48:48.880Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1170, "fields": {"date_created": "2018-09-26T21:48:48.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1171, "fields": {"date_created": "2018-09-26T21:48:48.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1172, "fields": {"date_created": "2018-09-26T21:48:48.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1173, "fields": {"date_created": "2018-09-26T21:48:48.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1174, "fields": {"date_created": "2018-09-26T21:48:48.978Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1175, "fields": {"date_created": "2018-09-26T21:48:48.987Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1176, "fields": {"date_created": "2018-09-26T21:48:48.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1177, "fields": {"date_created": "2018-09-26T21:48:49.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1178, "fields": {"date_created": "2018-09-26T21:48:49.065Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1179, "fields": {"date_created": "2018-09-26T21:48:49.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1180, "fields": {"date_created": "2018-09-26T21:48:49.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1181, "fields": {"date_created": "2018-09-26T21:48:49.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1182, "fields": {"date_created": "2018-09-26T21:48:49.100Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1183, "fields": {"date_created": "2018-09-26T21:48:49.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1184, "fields": {"date_created": "2018-09-26T21:48:49.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1185, "fields": {"date_created": "2018-09-26T21:48:49.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1186, "fields": {"date_created": "2018-09-26T21:48:49.193Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1187, "fields": {"date_created": "2018-09-26T21:48:49.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1188, "fields": {"date_created": "2018-09-26T21:48:49.270Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1189, "fields": {"date_created": "2018-09-26T21:48:49.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1190, "fields": {"date_created": "2018-09-26T21:48:49.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1191, "fields": {"date_created": "2018-09-26T21:48:49.296Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1192, "fields": {"date_created": "2018-09-26T21:48:49.365Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1193, "fields": {"date_created": "2018-09-26T21:48:49.375Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1194, "fields": {"date_created": "2018-09-26T21:48:49.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1195, "fields": {"date_created": "2018-09-26T21:48:49.389Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1196, "fields": {"date_created": "2018-09-26T21:48:49.465Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1197, "fields": {"date_created": "2018-09-26T21:48:49.475Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1198, "fields": {"date_created": "2018-09-26T21:48:49.485Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1199, "fields": {"date_created": "2018-09-26T21:48:49.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1200, "fields": {"date_created": "2018-09-26T21:48:49.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1201, "fields": {"date_created": "2018-09-26T21:48:49.563Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1202, "fields": {"date_created": "2018-09-26T21:48:49.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1203, "fields": {"date_created": "2018-09-26T21:48:49.586Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1204, "fields": {"date_created": "2018-09-26T21:48:49.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1205, "fields": {"date_created": "2018-09-26T21:48:49.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1206, "fields": {"date_created": "2018-09-26T21:48:49.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1207, "fields": {"date_created": "2018-09-26T21:48:49.678Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1208, "fields": {"date_created": "2018-09-26T21:48:49.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1209, "fields": {"date_created": "2018-09-26T21:48:49.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1210, "fields": {"date_created": "2018-09-26T21:48:49.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1211, "fields": {"date_created": "2018-09-26T21:48:49.768Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1212, "fields": {"date_created": "2018-09-26T21:48:49.777Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1213, "fields": {"date_created": "2018-09-26T21:48:49.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1214, "fields": {"date_created": "2018-09-26T21:48:49.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1215, "fields": {"date_created": "2018-09-26T21:48:49.802Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1216, "fields": {"date_created": "2018-09-26T21:48:49.867Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1217, "fields": {"date_created": "2018-09-26T21:48:49.878Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1218, "fields": {"date_created": "2018-09-26T21:48:49.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1219, "fields": {"date_created": "2018-09-26T21:48:49.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1220, "fields": {"date_created": "2018-09-26T21:48:49.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1221, "fields": {"date_created": "2018-09-26T21:48:49.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1222, "fields": {"date_created": "2018-09-26T21:48:49.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1223, "fields": {"date_created": "2018-09-26T21:48:49.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1224, "fields": {"date_created": "2018-09-26T21:48:50.000Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1225, "fields": {"date_created": "2018-09-26T21:48:50.068Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1226, "fields": {"date_created": "2018-09-26T21:48:50.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1227, "fields": {"date_created": "2018-09-26T21:48:50.089Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1228, "fields": {"date_created": "2018-09-26T21:48:50.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1229, "fields": {"date_created": "2018-09-26T21:48:50.164Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1230, "fields": {"date_created": "2018-09-26T21:48:50.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1231, "fields": {"date_created": "2018-09-26T21:48:50.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1232, "fields": {"date_created": "2018-09-26T21:48:50.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1233, "fields": {"date_created": "2018-09-26T21:48:50.263Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1234, "fields": {"date_created": "2018-09-26T21:48:50.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1235, "fields": {"date_created": "2018-09-26T21:48:50.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1236, "fields": {"date_created": "2018-09-26T21:48:50.296Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1237, "fields": {"date_created": "2018-09-26T21:48:50.304Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1238, "fields": {"date_created": "2018-09-26T21:48:50.378Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1239, "fields": {"date_created": "2018-09-26T21:48:50.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1240, "fields": {"date_created": "2018-09-26T21:48:50.395Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1241, "fields": {"date_created": "2018-09-26T21:48:50.404Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1242, "fields": {"date_created": "2018-09-26T21:48:50.412Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1243, "fields": {"date_created": "2018-09-26T21:48:50.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1244, "fields": {"date_created": "2018-09-26T21:48:50.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1245, "fields": {"date_created": "2018-09-26T21:48:50.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1246, "fields": {"date_created": "2018-09-26T21:48:50.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1247, "fields": {"date_created": "2018-09-26T21:48:50.506Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1248, "fields": {"date_created": "2018-09-26T21:48:50.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1249, "fields": {"date_created": "2018-09-26T21:48:50.578Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1250, "fields": {"date_created": "2018-09-26T21:48:50.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1251, "fields": {"date_created": "2018-09-26T21:48:50.596Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1252, "fields": {"date_created": "2018-09-26T21:48:50.673Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1253, "fields": {"date_created": "2018-09-26T21:48:50.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1254, "fields": {"date_created": "2018-09-26T21:48:50.693Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1255, "fields": {"date_created": "2018-09-26T21:48:50.700Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1256, "fields": {"date_created": "2018-09-26T21:48:50.709Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1257, "fields": {"date_created": "2018-09-26T21:48:50.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1258, "fields": {"date_created": "2018-09-26T21:48:50.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1259, "fields": {"date_created": "2018-09-26T21:48:50.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1260, "fields": {"date_created": "2018-09-26T21:48:50.796Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1261, "fields": {"date_created": "2018-09-26T21:48:50.863Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1262, "fields": {"date_created": "2018-09-26T21:48:50.874Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1263, "fields": {"date_created": "2018-09-26T21:48:50.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1264, "fields": {"date_created": "2018-09-26T21:48:50.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1265, "fields": {"date_created": "2018-09-26T21:48:50.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1266, "fields": {"date_created": "2018-09-26T21:48:50.965Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1267, "fields": {"date_created": "2018-09-26T21:48:50.978Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1268, "fields": {"date_created": "2018-09-26T21:48:50.987Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1269, "fields": {"date_created": "2018-09-26T21:48:50.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1270, "fields": {"date_created": "2018-09-26T21:48:51.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1271, "fields": {"date_created": "2018-09-26T21:48:51.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1272, "fields": {"date_created": "2018-09-26T21:48:51.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1273, "fields": {"date_created": "2018-09-26T21:48:51.087Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1274, "fields": {"date_created": "2018-09-26T21:48:51.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1275, "fields": {"date_created": "2018-09-26T21:48:51.163Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1276, "fields": {"date_created": "2018-09-26T21:48:51.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1277, "fields": {"date_created": "2018-09-26T21:48:51.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1278, "fields": {"date_created": "2018-09-26T21:48:51.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1279, "fields": {"date_created": "2018-09-26T21:48:51.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1280, "fields": {"date_created": "2018-09-26T21:48:51.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1281, "fields": {"date_created": "2018-09-26T21:48:51.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1282, "fields": {"date_created": "2018-09-26T21:48:51.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1283, "fields": {"date_created": "2018-09-26T21:48:51.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1284, "fields": {"date_created": "2018-09-26T21:48:51.367Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1285, "fields": {"date_created": "2018-09-26T21:48:51.379Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1286, "fields": {"date_created": "2018-09-26T21:48:51.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1287, "fields": {"date_created": "2018-09-26T21:48:51.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1288, "fields": {"date_created": "2018-09-26T21:48:51.484Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1289, "fields": {"date_created": "2018-09-26T21:48:51.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1290, "fields": {"date_created": "2018-09-26T21:48:51.506Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1291, "fields": {"date_created": "2018-09-26T21:48:51.566Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1292, "fields": {"date_created": "2018-09-26T21:48:51.579Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1293, "fields": {"date_created": "2018-09-26T21:48:51.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1294, "fields": {"date_created": "2018-09-26T21:48:51.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1295, "fields": {"date_created": "2018-09-26T21:48:51.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1296, "fields": {"date_created": "2018-09-26T21:48:51.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1297, "fields": {"date_created": "2018-09-26T21:48:51.682Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1298, "fields": {"date_created": "2018-09-26T21:48:51.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1299, "fields": {"date_created": "2018-09-26T21:48:51.697Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1300, "fields": {"date_created": "2018-09-26T21:48:51.705Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1301, "fields": {"date_created": "2018-09-26T21:48:51.777Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1302, "fields": {"date_created": "2018-09-26T21:48:51.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1303, "fields": {"date_created": "2018-09-26T21:48:51.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1304, "fields": {"date_created": "2018-09-26T21:48:51.801Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1305, "fields": {"date_created": "2018-09-26T21:48:51.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1306, "fields": {"date_created": "2018-09-26T21:48:51.879Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1307, "fields": {"date_created": "2018-09-26T21:48:51.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1308, "fields": {"date_created": "2018-09-26T21:48:51.892Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1309, "fields": {"date_created": "2018-09-26T21:48:51.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1310, "fields": {"date_created": "2018-09-26T21:48:51.908Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1311, "fields": {"date_created": "2018-09-26T21:48:51.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1312, "fields": {"date_created": "2018-09-26T21:48:51.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1313, "fields": {"date_created": "2018-09-26T21:48:51.991Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1314, "fields": {"date_created": "2018-09-26T21:48:51.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1315, "fields": {"date_created": "2018-09-26T21:48:52.069Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1316, "fields": {"date_created": "2018-09-26T21:48:52.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1317, "fields": {"date_created": "2018-09-26T21:48:52.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1318, "fields": {"date_created": "2018-09-26T21:48:52.097Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1319, "fields": {"date_created": "2018-09-26T21:48:52.169Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1320, "fields": {"date_created": "2018-09-26T21:48:52.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1321, "fields": {"date_created": "2018-09-26T21:48:52.188Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1322, "fields": {"date_created": "2018-09-26T21:48:52.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1323, "fields": {"date_created": "2018-09-26T21:48:52.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1324, "fields": {"date_created": "2018-09-26T21:48:52.268Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1325, "fields": {"date_created": "2018-09-26T21:48:52.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1326, "fields": {"date_created": "2018-09-26T21:48:52.289Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1327, "fields": {"date_created": "2018-09-26T21:48:52.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1328, "fields": {"date_created": "2018-09-26T21:48:52.362Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1329, "fields": {"date_created": "2018-09-26T21:48:52.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1330, "fields": {"date_created": "2018-09-26T21:48:52.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1331, "fields": {"date_created": "2018-09-26T21:48:52.394Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1332, "fields": {"date_created": "2018-09-26T21:48:52.403Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1333, "fields": {"date_created": "2018-09-26T21:48:52.475Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1334, "fields": {"date_created": "2018-09-26T21:48:52.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1335, "fields": {"date_created": "2018-09-26T21:48:52.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1336, "fields": {"date_created": "2018-09-26T21:48:52.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1337, "fields": {"date_created": "2018-09-26T21:48:52.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1338, "fields": {"date_created": "2018-09-26T21:48:52.586Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1339, "fields": {"date_created": "2018-09-26T21:48:52.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1340, "fields": {"date_created": "2018-09-26T21:48:52.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1341, "fields": {"date_created": "2018-09-26T21:48:52.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1342, "fields": {"date_created": "2018-09-26T21:48:52.682Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1343, "fields": {"date_created": "2018-09-26T21:48:52.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1344, "fields": {"date_created": "2018-09-26T21:48:52.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1345, "fields": {"date_created": "2018-09-26T21:48:52.764Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1346, "fields": {"date_created": "2018-09-26T21:48:52.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1347, "fields": {"date_created": "2018-09-26T21:48:52.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1348, "fields": {"date_created": "2018-09-26T21:48:52.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1349, "fields": {"date_created": "2018-09-26T21:48:52.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1350, "fields": {"date_created": "2018-09-26T21:48:52.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1351, "fields": {"date_created": "2018-09-26T21:48:52.865Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1352, "fields": {"date_created": "2018-09-26T21:48:52.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1353, "fields": {"date_created": "2018-09-26T21:48:52.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1354, "fields": {"date_created": "2018-09-26T21:48:52.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1355, "fields": {"date_created": "2018-09-26T21:48:52.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1356, "fields": {"date_created": "2018-09-26T21:48:52.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1357, "fields": {"date_created": "2018-09-26T21:48:52.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1358, "fields": {"date_created": "2018-09-26T21:48:52.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1359, "fields": {"date_created": "2018-09-26T21:48:52.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1360, "fields": {"date_created": "2018-09-26T21:48:52.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1361, "fields": {"date_created": "2018-09-26T21:48:53.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1362, "fields": {"date_created": "2018-09-26T21:48:53.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1363, "fields": {"date_created": "2018-09-26T21:48:53.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1364, "fields": {"date_created": "2018-09-26T21:48:53.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1365, "fields": {"date_created": "2018-09-26T21:48:53.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1366, "fields": {"date_created": "2018-09-26T21:48:53.172Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1367, "fields": {"date_created": "2018-09-26T21:48:53.180Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1368, "fields": {"date_created": "2018-09-26T21:48:53.189Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1369, "fields": {"date_created": "2018-09-26T21:48:53.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1370, "fields": {"date_created": "2018-09-26T21:48:53.205Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1371, "fields": {"date_created": "2018-09-26T21:48:53.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1372, "fields": {"date_created": "2018-09-26T21:48:53.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1373, "fields": {"date_created": "2018-09-26T21:48:53.296Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1374, "fields": {"date_created": "2018-09-26T21:48:53.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1375, "fields": {"date_created": "2018-09-26T21:48:53.371Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1376, "fields": {"date_created": "2018-09-26T21:48:53.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1377, "fields": {"date_created": "2018-09-26T21:48:53.385Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1378, "fields": {"date_created": "2018-09-26T21:48:53.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1379, "fields": {"date_created": "2018-09-26T21:48:53.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1380, "fields": {"date_created": "2018-09-26T21:48:53.462Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1381, "fields": {"date_created": "2018-09-26T21:48:53.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1382, "fields": {"date_created": "2018-09-26T21:48:53.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1383, "fields": {"date_created": "2018-09-26T21:48:53.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1384, "fields": {"date_created": "2018-09-26T21:48:53.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1385, "fields": {"date_created": "2018-09-26T21:48:53.571Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1386, "fields": {"date_created": "2018-09-26T21:48:53.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1387, "fields": {"date_created": "2018-09-26T21:48:53.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1388, "fields": {"date_created": "2018-09-26T21:48:53.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1389, "fields": {"date_created": "2018-09-26T21:48:53.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1390, "fields": {"date_created": "2018-09-26T21:48:53.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1391, "fields": {"date_created": "2018-09-26T21:48:53.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1392, "fields": {"date_created": "2018-09-26T21:48:53.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1393, "fields": {"date_created": "2018-09-26T21:48:53.706Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1394, "fields": {"date_created": "2018-09-26T21:48:53.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1395, "fields": {"date_created": "2018-09-26T21:48:53.784Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1396, "fields": {"date_created": "2018-09-26T21:48:53.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1397, "fields": {"date_created": "2018-09-26T21:48:53.799Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1398, "fields": {"date_created": "2018-09-26T21:48:53.810Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1399, "fields": {"date_created": "2018-09-26T21:48:53.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1400, "fields": {"date_created": "2018-09-26T21:48:53.881Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1401, "fields": {"date_created": "2018-09-26T21:48:53.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1402, "fields": {"date_created": "2018-09-26T21:48:53.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1403, "fields": {"date_created": "2018-09-26T21:48:53.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1404, "fields": {"date_created": "2018-09-26T21:48:53.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1405, "fields": {"date_created": "2018-09-26T21:48:53.990Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1406, "fields": {"date_created": "2018-09-26T21:48:53.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1407, "fields": {"date_created": "2018-09-26T21:48:54.073Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1408, "fields": {"date_created": "2018-09-26T21:48:54.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1409, "fields": {"date_created": "2018-09-26T21:48:54.087Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1410, "fields": {"date_created": "2018-09-26T21:48:54.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1411, "fields": {"date_created": "2018-09-26T21:48:54.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1412, "fields": {"date_created": "2018-09-26T21:48:54.167Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1413, "fields": {"date_created": "2018-09-26T21:48:54.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1414, "fields": {"date_created": "2018-09-26T21:48:54.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1415, "fields": {"date_created": "2018-09-26T21:48:54.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1416, "fields": {"date_created": "2018-09-26T21:48:54.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1417, "fields": {"date_created": "2018-09-26T21:48:54.272Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1418, "fields": {"date_created": "2018-09-26T21:48:54.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1419, "fields": {"date_created": "2018-09-26T21:48:54.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1420, "fields": {"date_created": "2018-09-26T21:48:54.299Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1421, "fields": {"date_created": "2018-09-26T21:48:54.370Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1422, "fields": {"date_created": "2018-09-26T21:48:54.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1423, "fields": {"date_created": "2018-09-26T21:48:54.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1424, "fields": {"date_created": "2018-09-26T21:48:54.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1425, "fields": {"date_created": "2018-09-26T21:48:54.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1426, "fields": {"date_created": "2018-09-26T21:48:54.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1427, "fields": {"date_created": "2018-09-26T21:48:54.492Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1428, "fields": {"date_created": "2018-09-26T21:48:54.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1429, "fields": {"date_created": "2018-09-26T21:48:54.509Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1430, "fields": {"date_created": "2018-09-26T21:48:54.574Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1431, "fields": {"date_created": "2018-09-26T21:48:54.584Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1432, "fields": {"date_created": "2018-09-26T21:48:54.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1433, "fields": {"date_created": "2018-09-26T21:48:54.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1434, "fields": {"date_created": "2018-09-26T21:48:54.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1435, "fields": {"date_created": "2018-09-26T21:48:54.682Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1436, "fields": {"date_created": "2018-09-26T21:48:54.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1437, "fields": {"date_created": "2018-09-26T21:48:54.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1438, "fields": {"date_created": "2018-09-26T21:48:54.707Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1439, "fields": {"date_created": "2018-09-26T21:48:54.768Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1440, "fields": {"date_created": "2018-09-26T21:48:54.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1441, "fields": {"date_created": "2018-09-26T21:48:54.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1442, "fields": {"date_created": "2018-09-26T21:48:54.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1443, "fields": {"date_created": "2018-09-26T21:48:54.802Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1444, "fields": {"date_created": "2018-09-26T21:48:54.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1445, "fields": {"date_created": "2018-09-26T21:48:54.879Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1446, "fields": {"date_created": "2018-09-26T21:48:54.886Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1447, "fields": {"date_created": "2018-09-26T21:48:54.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1448, "fields": {"date_created": "2018-09-26T21:48:54.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1449, "fields": {"date_created": "2018-09-26T21:48:54.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1450, "fields": {"date_created": "2018-09-26T21:48:54.987Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1451, "fields": {"date_created": "2018-09-26T21:48:54.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1452, "fields": {"date_created": "2018-09-26T21:48:55.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1453, "fields": {"date_created": "2018-09-26T21:48:55.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1454, "fields": {"date_created": "2018-09-26T21:48:55.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1455, "fields": {"date_created": "2018-09-26T21:48:55.093Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1456, "fields": {"date_created": "2018-09-26T21:48:55.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1457, "fields": {"date_created": "2018-09-26T21:48:55.172Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1458, "fields": {"date_created": "2018-09-26T21:48:55.184Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1459, "fields": {"date_created": "2018-09-26T21:48:55.192Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1460, "fields": {"date_created": "2018-09-26T21:48:55.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1461, "fields": {"date_created": "2018-09-26T21:48:55.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1462, "fields": {"date_created": "2018-09-26T21:48:55.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1463, "fields": {"date_created": "2018-09-26T21:48:55.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1464, "fields": {"date_created": "2018-09-26T21:48:55.299Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1465, "fields": {"date_created": "2018-09-26T21:48:55.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1466, "fields": {"date_created": "2018-09-26T21:48:55.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1467, "fields": {"date_created": "2018-09-26T21:48:55.388Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1468, "fields": {"date_created": "2018-09-26T21:48:55.397Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1469, "fields": {"date_created": "2018-09-26T21:48:55.462Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1470, "fields": {"date_created": "2018-09-26T21:48:55.473Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1471, "fields": {"date_created": "2018-09-26T21:48:55.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1472, "fields": {"date_created": "2018-09-26T21:48:55.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1473, "fields": {"date_created": "2018-09-26T21:48:55.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1474, "fields": {"date_created": "2018-09-26T21:48:55.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1475, "fields": {"date_created": "2018-09-26T21:48:55.572Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1476, "fields": {"date_created": "2018-09-26T21:48:55.582Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1477, "fields": {"date_created": "2018-09-26T21:48:55.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1478, "fields": {"date_created": "2018-09-26T21:48:55.604Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1479, "fields": {"date_created": "2018-09-26T21:48:55.665Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1480, "fields": {"date_created": "2018-09-26T21:48:55.678Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1481, "fields": {"date_created": "2018-09-26T21:48:55.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1482, "fields": {"date_created": "2018-09-26T21:48:55.696Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1483, "fields": {"date_created": "2018-09-26T21:48:55.763Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1484, "fields": {"date_created": "2018-09-26T21:48:55.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1485, "fields": {"date_created": "2018-09-26T21:48:55.784Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1486, "fields": {"date_created": "2018-09-26T21:48:55.792Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1487, "fields": {"date_created": "2018-09-26T21:48:55.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1488, "fields": {"date_created": "2018-09-26T21:48:55.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1489, "fields": {"date_created": "2018-09-26T21:48:55.880Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1490, "fields": {"date_created": "2018-09-26T21:48:55.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1491, "fields": {"date_created": "2018-09-26T21:48:55.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1492, "fields": {"date_created": "2018-09-26T21:48:55.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1493, "fields": {"date_created": "2018-09-26T21:48:55.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1494, "fields": {"date_created": "2018-09-26T21:48:55.978Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1495, "fields": {"date_created": "2018-09-26T21:48:55.987Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1496, "fields": {"date_created": "2018-09-26T21:48:55.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1497, "fields": {"date_created": "2018-09-26T21:48:56.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1498, "fields": {"date_created": "2018-09-26T21:48:56.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1499, "fields": {"date_created": "2018-09-26T21:48:56.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1500, "fields": {"date_created": "2018-09-26T21:48:56.091Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1501, "fields": {"date_created": "2018-09-26T21:48:56.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1502, "fields": {"date_created": "2018-09-26T21:48:56.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1503, "fields": {"date_created": "2018-09-26T21:48:56.176Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1504, "fields": {"date_created": "2018-09-26T21:48:56.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1505, "fields": {"date_created": "2018-09-26T21:48:56.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1506, "fields": {"date_created": "2018-09-26T21:48:56.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1507, "fields": {"date_created": "2018-09-26T21:48:56.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1508, "fields": {"date_created": "2018-09-26T21:48:56.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1509, "fields": {"date_created": "2018-09-26T21:48:56.292Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1510, "fields": {"date_created": "2018-09-26T21:48:56.301Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1511, "fields": {"date_created": "2018-09-26T21:48:56.363Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1512, "fields": {"date_created": "2018-09-26T21:48:56.370Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1513, "fields": {"date_created": "2018-09-26T21:48:56.379Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1514, "fields": {"date_created": "2018-09-26T21:48:56.388Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1515, "fields": {"date_created": "2018-09-26T21:48:56.396Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1516, "fields": {"date_created": "2018-09-26T21:48:56.405Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1517, "fields": {"date_created": "2018-09-26T21:48:56.468Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1518, "fields": {"date_created": "2018-09-26T21:48:56.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1519, "fields": {"date_created": "2018-09-26T21:48:56.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1520, "fields": {"date_created": "2018-09-26T21:48:56.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1521, "fields": {"date_created": "2018-09-26T21:48:56.566Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1522, "fields": {"date_created": "2018-09-26T21:48:56.577Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1523, "fields": {"date_created": "2018-09-26T21:48:56.585Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1524, "fields": {"date_created": "2018-09-26T21:48:56.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1525, "fields": {"date_created": "2018-09-26T21:48:56.604Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1526, "fields": {"date_created": "2018-09-26T21:48:56.668Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1527, "fields": {"date_created": "2018-09-26T21:48:56.679Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1528, "fields": {"date_created": "2018-09-26T21:48:56.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1529, "fields": {"date_created": "2018-09-26T21:48:56.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1530, "fields": {"date_created": "2018-09-26T21:48:56.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1531, "fields": {"date_created": "2018-09-26T21:48:56.771Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1532, "fields": {"date_created": "2018-09-26T21:48:56.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1533, "fields": {"date_created": "2018-09-26T21:48:56.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1534, "fields": {"date_created": "2018-09-26T21:48:56.799Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1535, "fields": {"date_created": "2018-09-26T21:48:56.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1536, "fields": {"date_created": "2018-09-26T21:48:56.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1537, "fields": {"date_created": "2018-09-26T21:48:56.892Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1538, "fields": {"date_created": "2018-09-26T21:48:56.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1539, "fields": {"date_created": "2018-09-26T21:48:56.974Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1540, "fields": {"date_created": "2018-09-26T21:48:56.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1541, "fields": {"date_created": "2018-09-26T21:48:56.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1542, "fields": {"date_created": "2018-09-26T21:48:56.997Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1543, "fields": {"date_created": "2018-09-26T21:48:57.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1544, "fields": {"date_created": "2018-09-26T21:48:57.007Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1545, "fields": {"date_created": "2018-09-26T21:48:57.071Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1546, "fields": {"date_created": "2018-09-26T21:48:57.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1547, "fields": {"date_created": "2018-09-26T21:48:57.100Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1548, "fields": {"date_created": "2018-09-26T21:48:57.174Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1549, "fields": {"date_created": "2018-09-26T21:48:57.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1550, "fields": {"date_created": "2018-09-26T21:48:57.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1551, "fields": {"date_created": "2018-09-26T21:48:57.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1552, "fields": {"date_created": "2018-09-26T21:48:57.272Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1553, "fields": {"date_created": "2018-09-26T21:48:57.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1554, "fields": {"date_created": "2018-09-26T21:48:57.292Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1555, "fields": {"date_created": "2018-09-26T21:48:57.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1556, "fields": {"date_created": "2018-09-26T21:48:57.306Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1557, "fields": {"date_created": "2018-09-26T21:48:57.374Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1558, "fields": {"date_created": "2018-09-26T21:48:57.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1559, "fields": {"date_created": "2018-09-26T21:48:57.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1560, "fields": {"date_created": "2018-09-26T21:48:57.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1561, "fields": {"date_created": "2018-09-26T21:48:57.467Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1562, "fields": {"date_created": "2018-09-26T21:48:57.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1563, "fields": {"date_created": "2018-09-26T21:48:57.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1564, "fields": {"date_created": "2018-09-26T21:48:57.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1565, "fields": {"date_created": "2018-09-26T21:48:57.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1566, "fields": {"date_created": "2018-09-26T21:48:57.569Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1567, "fields": {"date_created": "2018-09-26T21:48:57.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1568, "fields": {"date_created": "2018-09-26T21:48:57.590Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1569, "fields": {"date_created": "2018-09-26T21:48:57.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1570, "fields": {"date_created": "2018-09-26T21:48:57.609Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1571, "fields": {"date_created": "2018-09-26T21:48:57.666Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1572, "fields": {"date_created": "2018-09-26T21:48:57.676Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1573, "fields": {"date_created": "2018-09-26T21:48:57.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1574, "fields": {"date_created": "2018-09-26T21:48:57.693Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1575, "fields": {"date_created": "2018-09-26T21:48:57.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1576, "fields": {"date_created": "2018-09-26T21:48:57.765Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1577, "fields": {"date_created": "2018-09-26T21:48:57.859Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1578, "fields": {"date_created": "2018-09-26T21:48:57.954Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1579, "fields": {"date_created": "2018-09-26T21:48:57.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1580, "fields": {"date_created": "2018-09-26T21:48:57.981Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1581, "fields": {"date_created": "2018-09-26T21:48:57.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1582, "fields": {"date_created": "2018-09-26T21:48:57.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1583, "fields": {"date_created": "2018-09-26T21:48:58.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1584, "fields": {"date_created": "2018-09-26T21:48:58.072Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1585, "fields": {"date_created": "2018-09-26T21:48:58.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1586, "fields": {"date_created": "2018-09-26T21:48:58.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1587, "fields": {"date_created": "2018-09-26T21:48:58.100Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1588, "fields": {"date_created": "2018-09-26T21:48:58.108Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1589, "fields": {"date_created": "2018-09-26T21:48:58.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1590, "fields": {"date_created": "2018-09-26T21:48:58.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1591, "fields": {"date_created": "2018-09-26T21:48:58.196Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1592, "fields": {"date_created": "2018-09-26T21:48:58.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1593, "fields": {"date_created": "2018-09-26T21:48:58.211Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1594, "fields": {"date_created": "2018-09-26T21:48:58.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1595, "fields": {"date_created": "2018-09-26T21:48:58.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1596, "fields": {"date_created": "2018-09-26T21:48:58.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1597, "fields": {"date_created": "2018-09-26T21:48:58.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1598, "fields": {"date_created": "2018-09-26T21:48:58.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1599, "fields": {"date_created": "2018-09-26T21:48:58.376Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1600, "fields": {"date_created": "2018-09-26T21:48:58.385Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1601, "fields": {"date_created": "2018-09-26T21:48:58.394Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1602, "fields": {"date_created": "2018-09-26T21:48:58.402Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1603, "fields": {"date_created": "2018-09-26T21:48:58.409Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1604, "fields": {"date_created": "2018-09-26T21:48:58.473Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1605, "fields": {"date_created": "2018-09-26T21:48:58.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1606, "fields": {"date_created": "2018-09-26T21:48:58.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1607, "fields": {"date_created": "2018-09-26T21:48:58.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1608, "fields": {"date_created": "2018-09-26T21:48:58.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1609, "fields": {"date_created": "2018-09-26T21:48:58.512Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1610, "fields": {"date_created": "2018-09-26T21:48:58.583Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1611, "fields": {"date_created": "2018-09-26T21:48:58.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1612, "fields": {"date_created": "2018-09-26T21:48:58.598Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1613, "fields": {"date_created": "2018-09-26T21:48:58.607Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1614, "fields": {"date_created": "2018-09-26T21:48:58.617Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1615, "fields": {"date_created": "2018-09-26T21:48:58.666Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1616, "fields": {"date_created": "2018-09-26T21:48:58.676Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1617, "fields": {"date_created": "2018-09-26T21:48:58.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1618, "fields": {"date_created": "2018-09-26T21:48:58.698Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1619, "fields": {"date_created": "2018-09-26T21:48:58.762Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1620, "fields": {"date_created": "2018-09-26T21:48:58.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1621, "fields": {"date_created": "2018-09-26T21:48:58.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1622, "fields": {"date_created": "2018-09-26T21:48:58.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1623, "fields": {"date_created": "2018-09-26T21:48:58.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1624, "fields": {"date_created": "2018-09-26T21:48:58.872Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1625, "fields": {"date_created": "2018-09-26T21:48:58.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1626, "fields": {"date_created": "2018-09-26T21:48:58.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1627, "fields": {"date_created": "2018-09-26T21:48:58.903Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1628, "fields": {"date_created": "2018-09-26T21:48:58.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1629, "fields": {"date_created": "2018-09-26T21:48:58.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1630, "fields": {"date_created": "2018-09-26T21:48:58.987Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1631, "fields": {"date_created": "2018-09-26T21:48:58.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1632, "fields": {"date_created": "2018-09-26T21:48:59.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1633, "fields": {"date_created": "2018-09-26T21:48:59.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1634, "fields": {"date_created": "2018-09-26T21:48:59.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1635, "fields": {"date_created": "2018-09-26T21:48:59.087Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1636, "fields": {"date_created": "2018-09-26T21:48:59.095Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1637, "fields": {"date_created": "2018-09-26T21:48:59.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1638, "fields": {"date_created": "2018-09-26T21:48:59.111Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1639, "fields": {"date_created": "2018-09-26T21:48:59.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1640, "fields": {"date_created": "2018-09-26T21:48:59.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1641, "fields": {"date_created": "2018-09-26T21:48:59.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1642, "fields": {"date_created": "2018-09-26T21:48:59.198Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1643, "fields": {"date_created": "2018-09-26T21:48:59.271Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1644, "fields": {"date_created": "2018-09-26T21:48:59.281Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1645, "fields": {"date_created": "2018-09-26T21:48:59.289Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1646, "fields": {"date_created": "2018-09-26T21:48:59.298Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1647, "fields": {"date_created": "2018-09-26T21:48:59.306Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1648, "fields": {"date_created": "2018-09-26T21:48:59.372Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1649, "fields": {"date_created": "2018-09-26T21:48:59.381Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1650, "fields": {"date_created": "2018-09-26T21:48:59.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1651, "fields": {"date_created": "2018-09-26T21:48:59.464Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1652, "fields": {"date_created": "2018-09-26T21:48:59.491Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1653, "fields": {"date_created": "2018-09-26T21:48:59.494Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1654, "fields": {"date_created": "2018-09-26T21:48:59.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1655, "fields": {"date_created": "2018-09-26T21:48:59.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1656, "fields": {"date_created": "2018-09-26T21:48:59.513Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1657, "fields": {"date_created": "2018-09-26T21:48:59.570Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1658, "fields": {"date_created": "2018-09-26T21:48:59.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1659, "fields": {"date_created": "2018-09-26T21:48:59.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1660, "fields": {"date_created": "2018-09-26T21:48:59.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1661, "fields": {"date_created": "2018-09-26T21:48:59.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1662, "fields": {"date_created": "2018-09-26T21:49:00.078Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1663, "fields": {"date_created": "2018-09-26T21:49:00.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1664, "fields": {"date_created": "2018-09-26T21:49:00.170Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1665, "fields": {"date_created": "2018-09-26T21:49:00.198Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1666, "fields": {"date_created": "2018-09-26T21:49:00.216Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1667, "fields": {"date_created": "2018-09-26T21:49:00.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1668, "fields": {"date_created": "2018-09-26T21:49:00.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1669, "fields": {"date_created": "2018-09-26T21:49:00.389Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1670, "fields": {"date_created": "2018-09-26T21:49:00.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1671, "fields": {"date_created": "2018-09-26T21:49:00.484Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1672, "fields": {"date_created": "2018-09-26T21:49:00.502Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1673, "fields": {"date_created": "2018-09-26T21:49:00.585Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1674, "fields": {"date_created": "2018-09-26T21:49:00.606Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1675, "fields": {"date_created": "2018-09-26T21:49:00.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1676, "fields": {"date_created": "2018-09-26T21:49:00.694Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1677, "fields": {"date_created": "2018-09-26T21:49:00.770Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1678, "fields": {"date_created": "2018-09-26T21:49:00.788Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1679, "fields": {"date_created": "2018-09-26T21:49:00.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1680, "fields": {"date_created": "2018-09-26T21:49:00.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1681, "fields": {"date_created": "2018-09-26T21:49:00.914Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1682, "fields": {"date_created": "2018-09-26T21:49:00.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1683, "fields": {"date_created": "2018-09-26T21:49:01.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1684, "fields": {"date_created": "2018-09-26T21:49:01.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1685, "fields": {"date_created": "2018-09-26T21:49:01.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1686, "fields": {"date_created": "2018-09-26T21:49:01.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1687, "fields": {"date_created": "2018-09-26T21:49:01.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1688, "fields": {"date_created": "2018-09-26T21:49:01.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1689, "fields": {"date_created": "2018-09-26T21:49:01.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1690, "fields": {"date_created": "2018-09-26T21:49:01.391Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1691, "fields": {"date_created": "2018-09-26T21:49:01.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1692, "fields": {"date_created": "2018-09-26T21:49:01.491Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1693, "fields": {"date_created": "2018-09-26T21:49:01.509Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1694, "fields": {"date_created": "2018-09-26T21:49:01.585Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1695, "fields": {"date_created": "2018-09-26T21:49:01.601Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1696, "fields": {"date_created": "2018-09-26T21:49:01.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1697, "fields": {"date_created": "2018-09-26T21:49:01.707Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1698, "fields": {"date_created": "2018-09-26T21:49:01.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1699, "fields": {"date_created": "2018-09-26T21:49:01.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1700, "fields": {"date_created": "2018-09-26T21:49:01.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1701, "fields": {"date_created": "2018-09-26T21:49:01.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1702, "fields": {"date_created": "2018-09-26T21:49:01.981Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1703, "fields": {"date_created": "2018-09-26T21:49:01.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1704, "fields": {"date_created": "2018-09-26T21:49:02.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1705, "fields": {"date_created": "2018-09-26T21:49:02.091Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1706, "fields": {"date_created": "2018-09-26T21:49:02.162Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1707, "fields": {"date_created": "2018-09-26T21:49:02.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1708, "fields": {"date_created": "2018-09-26T21:49:02.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1709, "fields": {"date_created": "2018-09-26T21:49:02.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1710, "fields": {"date_created": "2018-09-26T21:49:02.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1711, "fields": {"date_created": "2018-09-26T21:49:02.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1712, "fields": {"date_created": "2018-09-26T21:49:02.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1713, "fields": {"date_created": "2018-09-26T21:49:02.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1714, "fields": {"date_created": "2018-09-26T21:49:02.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1715, "fields": {"date_created": "2018-09-26T21:49:02.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1716, "fields": {"date_created": "2018-09-26T21:49:02.597Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1717, "fields": {"date_created": "2018-09-26T21:49:02.676Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1718, "fields": {"date_created": "2018-09-26T21:49:02.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1719, "fields": {"date_created": "2018-09-26T21:49:02.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1720, "fields": {"date_created": "2018-09-26T21:49:02.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1721, "fields": {"date_created": "2018-09-26T21:49:02.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1722, "fields": {"date_created": "2018-09-26T21:49:02.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1723, "fields": {"date_created": "2018-09-26T21:49:02.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1724, "fields": {"date_created": "2018-09-26T21:49:02.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1725, "fields": {"date_created": "2018-09-26T21:49:03.005Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1726, "fields": {"date_created": "2018-09-26T21:49:03.077Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1727, "fields": {"date_created": "2018-09-26T21:49:03.095Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1728, "fields": {"date_created": "2018-09-26T21:49:03.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1729, "fields": {"date_created": "2018-09-26T21:49:03.191Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1730, "fields": {"date_created": "2018-09-26T21:49:03.269Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1731, "fields": {"date_created": "2018-09-26T21:49:03.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1732, "fields": {"date_created": "2018-09-26T21:49:03.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1733, "fields": {"date_created": "2018-09-26T21:49:03.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1734, "fields": {"date_created": "2018-09-26T21:49:03.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1735, "fields": {"date_created": "2018-09-26T21:49:03.481Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1736, "fields": {"date_created": "2018-09-26T21:49:03.498Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1737, "fields": {"date_created": "2018-09-26T21:49:03.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1738, "fields": {"date_created": "2018-09-26T21:49:03.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1739, "fields": {"date_created": "2018-09-26T21:49:03.665Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1740, "fields": {"date_created": "2018-09-26T21:49:03.688Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1741, "fields": {"date_created": "2018-09-26T21:49:03.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1742, "fields": {"date_created": "2018-09-26T21:49:03.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1743, "fields": {"date_created": "2018-09-26T21:49:03.809Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1744, "fields": {"date_created": "2018-09-26T21:49:03.885Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1745, "fields": {"date_created": "2018-09-26T21:49:03.962Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1746, "fields": {"date_created": "2018-09-26T21:49:03.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1747, "fields": {"date_created": "2018-09-26T21:49:04.009Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1748, "fields": {"date_created": "2018-09-26T21:49:04.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1749, "fields": {"date_created": "2018-09-26T21:49:04.096Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1750, "fields": {"date_created": "2018-09-26T21:49:04.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1751, "fields": {"date_created": "2018-09-26T21:49:04.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1752, "fields": {"date_created": "2018-09-26T21:49:04.277Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1753, "fields": {"date_created": "2018-09-26T21:49:04.295Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1754, "fields": {"date_created": "2018-09-26T21:49:04.378Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1755, "fields": {"date_created": "2018-09-26T21:49:04.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1756, "fields": {"date_created": "2018-09-26T21:49:04.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1757, "fields": {"date_created": "2018-09-26T21:49:04.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1758, "fields": {"date_created": "2018-09-26T21:49:04.593Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1759, "fields": {"date_created": "2018-09-26T21:49:04.668Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1760, "fields": {"date_created": "2018-09-26T21:49:04.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1761, "fields": {"date_created": "2018-09-26T21:49:04.770Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1762, "fields": {"date_created": "2018-09-26T21:49:04.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1763, "fields": {"date_created": "2018-09-26T21:49:04.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1764, "fields": {"date_created": "2018-09-26T21:49:04.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1765, "fields": {"date_created": "2018-09-26T21:49:04.970Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1766, "fields": {"date_created": "2018-09-26T21:49:05.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1767, "fields": {"date_created": "2018-09-26T21:49:05.073Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1768, "fields": {"date_created": "2018-09-26T21:49:05.091Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1769, "fields": {"date_created": "2018-09-26T21:49:05.171Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1770, "fields": {"date_created": "2018-09-26T21:49:05.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1771, "fields": {"date_created": "2018-09-26T21:49:05.207Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1772, "fields": {"date_created": "2018-09-26T21:49:05.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1773, "fields": {"date_created": "2018-09-26T21:49:05.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1774, "fields": {"date_created": "2018-09-26T21:49:05.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1775, "fields": {"date_created": "2018-09-26T21:49:05.408Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1776, "fields": {"date_created": "2018-09-26T21:49:05.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1777, "fields": {"date_created": "2018-09-26T21:49:05.498Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1778, "fields": {"date_created": "2018-09-26T21:49:05.577Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1779, "fields": {"date_created": "2018-09-26T21:49:05.597Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1780, "fields": {"date_created": "2018-09-26T21:49:05.679Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1781, "fields": {"date_created": "2018-09-26T21:49:05.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1782, "fields": {"date_created": "2018-09-26T21:49:05.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1783, "fields": {"date_created": "2018-09-26T21:49:05.799Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1784, "fields": {"date_created": "2018-09-26T21:49:05.878Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1785, "fields": {"date_created": "2018-09-26T21:49:05.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1786, "fields": {"date_created": "2018-09-26T21:49:05.974Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1787, "fields": {"date_created": "2018-09-26T21:49:05.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1788, "fields": {"date_created": "2018-09-26T21:49:06.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1789, "fields": {"date_created": "2018-09-26T21:49:06.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1790, "fields": {"date_created": "2018-09-26T21:49:06.183Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1791, "fields": {"date_created": "2018-09-26T21:49:06.270Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1792, "fields": {"date_created": "2018-09-26T21:49:06.292Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1793, "fields": {"date_created": "2018-09-26T21:49:06.374Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1794, "fields": {"date_created": "2018-09-26T21:49:06.391Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1795, "fields": {"date_created": "2018-09-26T21:49:06.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1796, "fields": {"date_created": "2018-09-26T21:49:06.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1797, "fields": {"date_created": "2018-09-26T21:49:06.572Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1798, "fields": {"date_created": "2018-09-26T21:49:06.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1799, "fields": {"date_created": "2018-09-26T21:49:06.658Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1800, "fields": {"date_created": "2018-09-26T21:49:06.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1801, "fields": {"date_created": "2018-09-26T21:49:06.764Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1802, "fields": {"date_created": "2018-09-26T21:49:06.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1803, "fields": {"date_created": "2018-09-26T21:49:06.863Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1804, "fields": {"date_created": "2018-09-26T21:49:06.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1805, "fields": {"date_created": "2018-09-26T21:49:06.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1806, "fields": {"date_created": "2018-09-26T21:49:06.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1807, "fields": {"date_created": "2018-09-26T21:49:07.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1808, "fields": {"date_created": "2018-09-26T21:49:07.078Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1809, "fields": {"date_created": "2018-09-26T21:49:07.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1810, "fields": {"date_created": "2018-09-26T21:49:07.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1811, "fields": {"date_created": "2018-09-26T21:49:07.201Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1812, "fields": {"date_created": "2018-09-26T21:49:07.274Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1813, "fields": {"date_created": "2018-09-26T21:49:07.295Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1814, "fields": {"date_created": "2018-09-26T21:49:07.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1815, "fields": {"date_created": "2018-09-26T21:49:07.397Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1816, "fields": {"date_created": "2018-09-26T21:49:07.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1817, "fields": {"date_created": "2018-09-26T21:49:07.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1818, "fields": {"date_created": "2018-09-26T21:49:07.572Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1819, "fields": {"date_created": "2018-09-26T21:49:07.593Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1820, "fields": {"date_created": "2018-09-26T21:49:07.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1821, "fields": {"date_created": "2018-09-26T21:49:07.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1822, "fields": {"date_created": "2018-09-26T21:49:07.851Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1823, "fields": {"date_created": "2018-09-26T21:49:07.876Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1824, "fields": {"date_created": "2018-09-26T21:49:07.951Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1825, "fields": {"date_created": "2018-09-26T21:49:07.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1826, "fields": {"date_created": "2018-09-26T21:49:08.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1827, "fields": {"date_created": "2018-09-26T21:49:08.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1828, "fields": {"date_created": "2018-09-26T21:49:08.097Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1829, "fields": {"date_created": "2018-09-26T21:49:08.176Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1830, "fields": {"date_created": "2018-09-26T21:49:08.198Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1831, "fields": {"date_created": "2018-09-26T21:49:08.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1832, "fields": {"date_created": "2018-09-26T21:49:08.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1833, "fields": {"date_created": "2018-09-26T21:49:08.384Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1834, "fields": {"date_created": "2018-09-26T21:49:08.462Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1835, "fields": {"date_created": "2018-09-26T21:49:08.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1836, "fields": {"date_created": "2018-09-26T21:49:08.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1837, "fields": {"date_created": "2018-09-26T21:49:08.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1838, "fields": {"date_created": "2018-09-26T21:49:08.676Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1839, "fields": {"date_created": "2018-09-26T21:49:08.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1840, "fields": {"date_created": "2018-09-26T21:49:08.771Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1841, "fields": {"date_created": "2018-09-26T21:49:08.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1842, "fields": {"date_created": "2018-09-26T21:49:08.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1843, "fields": {"date_created": "2018-09-26T21:49:08.893Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1844, "fields": {"date_created": "2018-09-26T21:49:08.911Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1845, "fields": {"date_created": "2018-09-26T21:49:08.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1846, "fields": {"date_created": "2018-09-26T21:49:09.010Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1847, "fields": {"date_created": "2018-09-26T21:49:09.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1848, "fields": {"date_created": "2018-09-26T21:49:09.105Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1849, "fields": {"date_created": "2018-09-26T21:49:09.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1850, "fields": {"date_created": "2018-09-26T21:49:09.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1851, "fields": {"date_created": "2018-09-26T21:49:09.277Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1852, "fields": {"date_created": "2018-09-26T21:49:09.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1853, "fields": {"date_created": "2018-09-26T21:49:09.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1854, "fields": {"date_created": "2018-09-26T21:49:09.467Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1855, "fields": {"date_created": "2018-09-26T21:49:09.493Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1856, "fields": {"date_created": "2018-09-26T21:49:09.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1857, "fields": {"date_created": "2018-09-26T21:49:09.601Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1858, "fields": {"date_created": "2018-09-26T21:49:09.686Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1859, "fields": {"date_created": "2018-09-26T21:49:09.767Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1860, "fields": {"date_created": "2018-09-26T21:49:09.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1861, "fields": {"date_created": "2018-09-26T21:49:09.867Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1862, "fields": {"date_created": "2018-09-26T21:49:09.889Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1863, "fields": {"date_created": "2018-09-26T21:49:09.969Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1864, "fields": {"date_created": "2018-09-26T21:49:09.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1865, "fields": {"date_created": "2018-09-26T21:49:10.013Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1866, "fields": {"date_created": "2018-09-26T21:49:10.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1867, "fields": {"date_created": "2018-09-26T21:49:10.100Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1868, "fields": {"date_created": "2018-09-26T21:49:10.181Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1869, "fields": {"date_created": "2018-09-26T21:49:10.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1870, "fields": {"date_created": "2018-09-26T21:49:10.278Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1871, "fields": {"date_created": "2018-09-26T21:49:10.296Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1872, "fields": {"date_created": "2018-09-26T21:49:10.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1873, "fields": {"date_created": "2018-09-26T21:49:10.401Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1874, "fields": {"date_created": "2018-09-26T21:49:10.477Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1875, "fields": {"date_created": "2018-09-26T21:49:10.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1876, "fields": {"date_created": "2018-09-26T21:49:10.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1877, "fields": {"date_created": "2018-09-26T21:49:10.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1878, "fields": {"date_created": "2018-09-26T21:49:10.668Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1879, "fields": {"date_created": "2018-09-26T21:49:10.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1880, "fields": {"date_created": "2018-09-26T21:49:10.766Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1881, "fields": {"date_created": "2018-09-26T21:49:10.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1882, "fields": {"date_created": "2018-09-26T21:49:10.862Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1883, "fields": {"date_created": "2018-09-26T21:49:10.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1884, "fields": {"date_created": "2018-09-26T21:49:10.903Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1885, "fields": {"date_created": "2018-09-26T21:49:10.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1886, "fields": {"date_created": "2018-09-26T21:49:11.005Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1887, "fields": {"date_created": "2018-09-26T21:49:11.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1888, "fields": {"date_created": "2018-09-26T21:49:11.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1889, "fields": {"date_created": "2018-09-26T21:49:11.184Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1890, "fields": {"date_created": "2018-09-26T21:49:11.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1891, "fields": {"date_created": "2018-09-26T21:49:11.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1892, "fields": {"date_created": "2018-09-26T21:49:11.371Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1893, "fields": {"date_created": "2018-09-26T21:49:11.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1894, "fields": {"date_created": "2018-09-26T21:49:11.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1895, "fields": {"date_created": "2018-09-26T21:49:11.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1896, "fields": {"date_created": "2018-09-26T21:49:11.571Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1897, "fields": {"date_created": "2018-09-26T21:49:11.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1898, "fields": {"date_created": "2018-09-26T21:49:11.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1899, "fields": {"date_created": "2018-09-26T21:49:11.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1900, "fields": {"date_created": "2018-09-26T21:49:11.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1901, "fields": {"date_created": "2018-09-26T21:49:11.797Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1902, "fields": {"date_created": "2018-09-26T21:49:11.876Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1903, "fields": {"date_created": "2018-09-26T21:49:11.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1904, "fields": {"date_created": "2018-09-26T21:49:11.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1905, "fields": {"date_created": "2018-09-26T21:49:12.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1906, "fields": {"date_created": "2018-09-26T21:49:12.086Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1907, "fields": {"date_created": "2018-09-26T21:49:12.107Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1908, "fields": {"date_created": "2018-09-26T21:49:12.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1909, "fields": {"date_created": "2018-09-26T21:49:12.201Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1910, "fields": {"date_created": "2018-09-26T21:49:12.276Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1911, "fields": {"date_created": "2018-09-26T21:49:12.295Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1912, "fields": {"date_created": "2018-09-26T21:49:12.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1913, "fields": {"date_created": "2018-09-26T21:49:12.395Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1914, "fields": {"date_created": "2018-09-26T21:49:12.478Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1915, "fields": {"date_created": "2018-09-26T21:49:12.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1916, "fields": {"date_created": "2018-09-26T21:49:12.579Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1917, "fields": {"date_created": "2018-09-26T21:49:12.597Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1918, "fields": {"date_created": "2018-09-26T21:49:12.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1919, "fields": {"date_created": "2018-09-26T21:49:12.689Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1920, "fields": {"date_created": "2018-09-26T21:49:12.706Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1921, "fields": {"date_created": "2018-09-26T21:49:12.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1922, "fields": {"date_created": "2018-09-26T21:49:12.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1923, "fields": {"date_created": "2018-09-26T21:49:12.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1924, "fields": {"date_created": "2018-09-26T21:49:12.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1925, "fields": {"date_created": "2018-09-26T21:49:12.981Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1926, "fields": {"date_created": "2018-09-26T21:49:12.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1927, "fields": {"date_created": "2018-09-26T21:49:13.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1928, "fields": {"date_created": "2018-09-26T21:49:13.104Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1929, "fields": {"date_created": "2018-09-26T21:49:13.180Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1930, "fields": {"date_created": "2018-09-26T21:49:13.198Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1931, "fields": {"date_created": "2018-09-26T21:49:13.274Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1932, "fields": {"date_created": "2018-09-26T21:49:13.293Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1933, "fields": {"date_created": "2018-09-26T21:49:13.376Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1934, "fields": {"date_created": "2018-09-26T21:49:13.398Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1935, "fields": {"date_created": "2018-09-26T21:49:13.479Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1936, "fields": {"date_created": "2018-09-26T21:49:13.497Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1937, "fields": {"date_created": "2018-09-26T21:49:13.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1938, "fields": {"date_created": "2018-09-26T21:49:13.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1939, "fields": {"date_created": "2018-09-26T21:49:13.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1940, "fields": {"date_created": "2018-09-26T21:49:13.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1941, "fields": {"date_created": "2018-09-26T21:49:13.767Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1942, "fields": {"date_created": "2018-09-26T21:49:13.787Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1943, "fields": {"date_created": "2018-09-26T21:49:13.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1944, "fields": {"date_created": "2018-09-26T21:49:13.884Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1945, "fields": {"date_created": "2018-09-26T21:49:13.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1946, "fields": {"date_created": "2018-09-26T21:49:13.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1947, "fields": {"date_created": "2018-09-26T21:49:13.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1948, "fields": {"date_created": "2018-09-26T21:49:14.089Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1949, "fields": {"date_created": "2018-09-26T21:49:14.107Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1950, "fields": {"date_created": "2018-09-26T21:49:14.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1951, "fields": {"date_created": "2018-09-26T21:49:14.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1952, "fields": {"date_created": "2018-09-26T21:49:14.272Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1953, "fields": {"date_created": "2018-09-26T21:49:14.293Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1954, "fields": {"date_created": "2018-09-26T21:49:14.369Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1955, "fields": {"date_created": "2018-09-26T21:49:14.389Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1956, "fields": {"date_created": "2018-09-26T21:49:14.481Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1957, "fields": {"date_created": "2018-09-26T21:49:14.502Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1958, "fields": {"date_created": "2018-09-26T21:49:14.584Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1959, "fields": {"date_created": "2018-09-26T21:49:14.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1960, "fields": {"date_created": "2018-09-26T21:49:14.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1961, "fields": {"date_created": "2018-09-26T21:49:14.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1962, "fields": {"date_created": "2018-09-26T21:49:14.779Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1963, "fields": {"date_created": "2018-09-26T21:49:14.798Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1964, "fields": {"date_created": "2018-09-26T21:49:14.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1965, "fields": {"date_created": "2018-09-26T21:49:14.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1966, "fields": {"date_created": "2018-09-26T21:49:14.978Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1967, "fields": {"date_created": "2018-09-26T21:49:14.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1968, "fields": {"date_created": "2018-09-26T21:49:15.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1969, "fields": {"date_created": "2018-09-26T21:49:15.111Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1970, "fields": {"date_created": "2018-09-26T21:49:15.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1971, "fields": {"date_created": "2018-09-26T21:49:15.196Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1972, "fields": {"date_created": "2018-09-26T21:49:15.265Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1973, "fields": {"date_created": "2018-09-26T21:49:15.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1974, "fields": {"date_created": "2018-09-26T21:49:15.368Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1975, "fields": {"date_created": "2018-09-26T21:49:15.389Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1976, "fields": {"date_created": "2018-09-26T21:49:15.466Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1977, "fields": {"date_created": "2018-09-26T21:49:15.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1978, "fields": {"date_created": "2018-09-26T21:49:15.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1979, "fields": {"date_created": "2018-09-26T21:49:15.581Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1980, "fields": {"date_created": "2018-09-26T21:49:15.600Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1981, "fields": {"date_created": "2018-09-26T21:49:15.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1982, "fields": {"date_created": "2018-09-26T21:49:15.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1983, "fields": {"date_created": "2018-09-26T21:49:15.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1984, "fields": {"date_created": "2018-09-26T21:49:15.792Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1985, "fields": {"date_created": "2018-09-26T21:49:15.871Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1986, "fields": {"date_created": "2018-09-26T21:49:15.889Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1987, "fields": {"date_created": "2018-09-26T21:49:15.907Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1988, "fields": {"date_created": "2018-09-26T21:49:15.983Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1989, "fields": {"date_created": "2018-09-26T21:49:16.000Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1990, "fields": {"date_created": "2018-09-26T21:49:16.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1991, "fields": {"date_created": "2018-09-26T21:49:16.108Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1992, "fields": {"date_created": "2018-09-26T21:49:16.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1993, "fields": {"date_created": "2018-09-26T21:49:16.196Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1994, "fields": {"date_created": "2018-09-26T21:49:16.268Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1995, "fields": {"date_created": "2018-09-26T21:49:16.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1996, "fields": {"date_created": "2018-09-26T21:49:16.371Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1997, "fields": {"date_created": "2018-09-26T21:49:16.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1998, "fields": {"date_created": "2018-09-26T21:49:16.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 1999, "fields": {"date_created": "2018-09-26T21:49:16.484Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2000, "fields": {"date_created": "2018-09-26T21:49:16.502Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2001, "fields": {"date_created": "2018-09-26T21:49:16.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2002, "fields": {"date_created": "2018-09-26T21:49:16.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2003, "fields": {"date_created": "2018-09-26T21:49:16.673Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2004, "fields": {"date_created": "2018-09-26T21:49:16.694Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2005, "fields": {"date_created": "2018-09-26T21:49:16.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2006, "fields": {"date_created": "2018-09-26T21:49:16.788Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2007, "fields": {"date_created": "2018-09-26T21:49:16.805Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2008, "fields": {"date_created": "2018-09-26T21:49:16.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2009, "fields": {"date_created": "2018-09-26T21:49:16.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2010, "fields": {"date_created": "2018-09-26T21:49:16.975Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2011, "fields": {"date_created": "2018-09-26T21:49:16.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2012, "fields": {"date_created": "2018-09-26T21:49:17.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2013, "fields": {"date_created": "2018-09-26T21:49:17.093Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2014, "fields": {"date_created": "2018-09-26T21:49:17.177Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2015, "fields": {"date_created": "2018-09-26T21:49:17.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2016, "fields": {"date_created": "2018-09-26T21:49:17.265Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2017, "fields": {"date_created": "2018-09-26T21:49:17.287Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2018, "fields": {"date_created": "2018-09-26T21:49:17.304Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2019, "fields": {"date_created": "2018-09-26T21:49:17.384Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2020, "fields": {"date_created": "2018-09-26T21:49:17.403Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2021, "fields": {"date_created": "2018-09-26T21:49:17.483Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2022, "fields": {"date_created": "2018-09-26T21:49:17.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2023, "fields": {"date_created": "2018-09-26T21:49:17.581Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2024, "fields": {"date_created": "2018-09-26T21:49:17.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2025, "fields": {"date_created": "2018-09-26T21:49:17.678Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2026, "fields": {"date_created": "2018-09-26T21:49:17.696Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2027, "fields": {"date_created": "2018-09-26T21:49:17.859Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2028, "fields": {"date_created": "2018-09-26T21:49:17.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2029, "fields": {"date_created": "2018-09-26T21:49:17.954Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2030, "fields": {"date_created": "2018-09-26T21:49:17.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2031, "fields": {"date_created": "2018-09-26T21:49:18.000Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2032, "fields": {"date_created": "2018-09-26T21:49:18.078Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2033, "fields": {"date_created": "2018-09-26T21:49:18.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2034, "fields": {"date_created": "2018-09-26T21:49:18.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2035, "fields": {"date_created": "2018-09-26T21:49:18.208Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2036, "fields": {"date_created": "2018-09-26T21:49:18.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2037, "fields": {"date_created": "2018-09-26T21:49:18.291Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2038, "fields": {"date_created": "2018-09-26T21:49:18.367Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2039, "fields": {"date_created": "2018-09-26T21:49:18.388Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2040, "fields": {"date_created": "2018-09-26T21:49:18.465Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2041, "fields": {"date_created": "2018-09-26T21:49:18.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2042, "fields": {"date_created": "2018-09-26T21:49:18.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2043, "fields": {"date_created": "2018-09-26T21:49:18.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2044, "fields": {"date_created": "2018-09-26T21:49:18.598Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2045, "fields": {"date_created": "2018-09-26T21:49:18.673Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2046, "fields": {"date_created": "2018-09-26T21:49:18.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2047, "fields": {"date_created": "2018-09-26T21:49:18.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2048, "fields": {"date_created": "2018-09-26T21:49:18.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2049, "fields": {"date_created": "2018-09-26T21:49:18.812Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2050, "fields": {"date_created": "2018-09-26T21:49:18.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2051, "fields": {"date_created": "2018-09-26T21:49:18.906Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2052, "fields": {"date_created": "2018-09-26T21:49:18.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2053, "fields": {"date_created": "2018-09-26T21:49:18.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2054, "fields": {"date_created": "2018-09-26T21:49:19.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2055, "fields": {"date_created": "2018-09-26T21:49:19.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2056, "fields": {"date_created": "2018-09-26T21:49:19.168Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2057, "fields": {"date_created": "2018-09-26T21:49:19.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2058, "fields": {"date_created": "2018-09-26T21:49:19.215Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2059, "fields": {"date_created": "2018-09-26T21:49:19.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2060, "fields": {"date_created": "2018-09-26T21:49:19.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2061, "fields": {"date_created": "2018-09-26T21:49:19.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2062, "fields": {"date_created": "2018-09-26T21:49:19.466Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2063, "fields": {"date_created": "2018-09-26T21:49:19.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2064, "fields": {"date_created": "2018-09-26T21:49:19.570Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2065, "fields": {"date_created": "2018-09-26T21:49:19.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2066, "fields": {"date_created": "2018-09-26T21:49:19.667Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2067, "fields": {"date_created": "2018-09-26T21:49:19.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2068, "fields": {"date_created": "2018-09-26T21:49:19.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2069, "fields": {"date_created": "2018-09-26T21:49:19.789Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2070, "fields": {"date_created": "2018-09-26T21:49:19.866Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2071, "fields": {"date_created": "2018-09-26T21:49:19.889Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2072, "fields": {"date_created": "2018-09-26T21:49:19.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2073, "fields": {"date_created": "2018-09-26T21:49:19.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2074, "fields": {"date_created": "2018-09-26T21:49:20.066Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2075, "fields": {"date_created": "2018-09-26T21:49:20.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2076, "fields": {"date_created": "2018-09-26T21:49:20.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2077, "fields": {"date_created": "2018-09-26T21:49:20.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2078, "fields": {"date_created": "2018-09-26T21:49:20.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2079, "fields": {"date_created": "2018-09-26T21:49:20.303Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2080, "fields": {"date_created": "2018-09-26T21:49:20.385Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2081, "fields": {"date_created": "2018-09-26T21:49:20.465Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2082, "fields": {"date_created": "2018-09-26T21:49:20.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2083, "fields": {"date_created": "2018-09-26T21:49:20.566Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2084, "fields": {"date_created": "2018-09-26T21:49:20.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2085, "fields": {"date_created": "2018-09-26T21:49:20.674Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2086, "fields": {"date_created": "2018-09-26T21:49:20.762Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2087, "fields": {"date_created": "2018-09-26T21:49:20.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2088, "fields": {"date_created": "2018-09-26T21:49:20.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2089, "fields": {"date_created": "2018-09-26T21:49:20.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2090, "fields": {"date_created": "2018-09-26T21:49:20.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2091, "fields": {"date_created": "2018-09-26T21:49:21.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2092, "fields": {"date_created": "2018-09-26T21:49:21.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2093, "fields": {"date_created": "2018-09-26T21:49:21.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2094, "fields": {"date_created": "2018-09-26T21:49:21.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2095, "fields": {"date_created": "2018-09-26T21:49:21.209Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2096, "fields": {"date_created": "2018-09-26T21:49:21.285Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2097, "fields": {"date_created": "2018-09-26T21:49:21.376Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2098, "fields": {"date_created": "2018-09-26T21:49:21.394Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2099, "fields": {"date_created": "2018-09-26T21:49:21.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2100, "fields": {"date_created": "2018-09-26T21:49:21.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2101, "fields": {"date_created": "2018-09-26T21:49:21.566Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2102, "fields": {"date_created": "2018-09-26T21:49:21.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2103, "fields": {"date_created": "2018-09-26T21:49:21.604Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2104, "fields": {"date_created": "2018-09-26T21:49:21.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2105, "fields": {"date_created": "2018-09-26T21:49:21.700Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2106, "fields": {"date_created": "2018-09-26T21:49:21.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2107, "fields": {"date_created": "2018-09-26T21:49:21.798Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2108, "fields": {"date_created": "2018-09-26T21:49:21.878Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2109, "fields": {"date_created": "2018-09-26T21:49:21.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2110, "fields": {"date_created": "2018-09-26T21:49:21.967Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2111, "fields": {"date_created": "2018-09-26T21:49:21.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2112, "fields": {"date_created": "2018-09-26T21:49:22.065Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2113, "fields": {"date_created": "2018-09-26T21:49:22.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2114, "fields": {"date_created": "2018-09-26T21:49:22.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2115, "fields": {"date_created": "2018-09-26T21:49:22.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2116, "fields": {"date_created": "2018-09-26T21:49:22.208Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2117, "fields": {"date_created": "2018-09-26T21:49:22.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2118, "fields": {"date_created": "2018-09-26T21:49:22.305Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2119, "fields": {"date_created": "2018-09-26T21:49:22.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2120, "fields": {"date_created": "2018-09-26T21:49:22.396Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2121, "fields": {"date_created": "2018-09-26T21:49:22.478Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2122, "fields": {"date_created": "2018-09-26T21:49:22.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2123, "fields": {"date_created": "2018-09-26T21:49:22.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2124, "fields": {"date_created": "2018-09-26T21:49:22.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2125, "fields": {"date_created": "2018-09-26T21:49:22.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2126, "fields": {"date_created": "2018-09-26T21:49:22.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2127, "fields": {"date_created": "2018-09-26T21:49:22.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2128, "fields": {"date_created": "2018-09-26T21:49:22.776Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2129, "fields": {"date_created": "2018-09-26T21:49:22.794Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2130, "fields": {"date_created": "2018-09-26T21:49:22.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2131, "fields": {"date_created": "2018-09-26T21:49:22.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2132, "fields": {"date_created": "2018-09-26T21:49:22.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2133, "fields": {"date_created": "2018-09-26T21:49:22.984Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2134, "fields": {"date_created": "2018-09-26T21:49:23.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2135, "fields": {"date_created": "2018-09-26T21:49:23.076Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2136, "fields": {"date_created": "2018-09-26T21:49:23.097Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2137, "fields": {"date_created": "2018-09-26T21:49:23.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2138, "fields": {"date_created": "2018-09-26T21:49:23.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2139, "fields": {"date_created": "2018-09-26T21:49:23.216Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2140, "fields": {"date_created": "2018-09-26T21:49:23.288Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2141, "fields": {"date_created": "2018-09-26T21:49:23.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2142, "fields": {"date_created": "2018-09-26T21:49:23.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2143, "fields": {"date_created": "2018-09-26T21:49:23.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2144, "fields": {"date_created": "2018-09-26T21:49:23.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2145, "fields": {"date_created": "2018-09-26T21:49:23.484Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2146, "fields": {"date_created": "2018-09-26T21:49:23.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2147, "fields": {"date_created": "2018-09-26T21:49:23.576Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2148, "fields": {"date_created": "2018-09-26T21:49:23.593Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2149, "fields": {"date_created": "2018-09-26T21:49:23.609Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2150, "fields": {"date_created": "2018-09-26T21:49:23.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2151, "fields": {"date_created": "2018-09-26T21:49:23.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2152, "fields": {"date_created": "2018-09-26T21:49:23.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2153, "fields": {"date_created": "2018-09-26T21:49:23.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2154, "fields": {"date_created": "2018-09-26T21:49:23.875Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2155, "fields": {"date_created": "2018-09-26T21:49:23.894Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2156, "fields": {"date_created": "2018-09-26T21:49:23.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2157, "fields": {"date_created": "2018-09-26T21:49:23.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2158, "fields": {"date_created": "2018-09-26T21:49:24.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2159, "fields": {"date_created": "2018-09-26T21:49:24.188Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2160, "fields": {"date_created": "2018-09-26T21:49:24.266Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2161, "fields": {"date_created": "2018-09-26T21:49:24.291Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2162, "fields": {"date_created": "2018-09-26T21:49:24.312Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2163, "fields": {"date_created": "2018-09-26T21:49:24.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2164, "fields": {"date_created": "2018-09-26T21:49:24.477Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2165, "fields": {"date_created": "2018-09-26T21:49:24.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2166, "fields": {"date_created": "2018-09-26T21:49:24.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2167, "fields": {"date_created": "2018-09-26T21:49:24.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2168, "fields": {"date_created": "2018-09-26T21:49:24.669Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2169, "fields": {"date_created": "2018-09-26T21:49:24.688Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2170, "fields": {"date_created": "2018-09-26T21:49:24.708Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2171, "fields": {"date_created": "2018-09-26T21:49:24.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2172, "fields": {"date_created": "2018-09-26T21:49:24.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2173, "fields": {"date_created": "2018-09-26T21:49:24.878Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2174, "fields": {"date_created": "2018-09-26T21:49:24.897Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2175, "fields": {"date_created": "2018-09-26T21:49:24.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2176, "fields": {"date_created": "2018-09-26T21:49:24.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2177, "fields": {"date_created": "2018-09-26T21:49:25.071Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2178, "fields": {"date_created": "2018-09-26T21:49:25.090Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2179, "fields": {"date_created": "2018-09-26T21:49:25.106Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2180, "fields": {"date_created": "2018-09-26T21:49:25.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2181, "fields": {"date_created": "2018-09-26T21:49:25.205Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2182, "fields": {"date_created": "2018-09-26T21:49:25.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2183, "fields": {"date_created": "2018-09-26T21:49:25.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2184, "fields": {"date_created": "2018-09-26T21:49:25.381Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2185, "fields": {"date_created": "2018-09-26T21:49:25.398Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2186, "fields": {"date_created": "2018-09-26T21:49:25.477Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2187, "fields": {"date_created": "2018-09-26T21:49:25.495Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2188, "fields": {"date_created": "2018-09-26T21:49:25.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2189, "fields": {"date_created": "2018-09-26T21:49:25.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2190, "fields": {"date_created": "2018-09-26T21:49:25.668Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2191, "fields": {"date_created": "2018-09-26T21:49:25.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2192, "fields": {"date_created": "2018-09-26T21:49:25.769Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2193, "fields": {"date_created": "2018-09-26T21:49:25.789Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2194, "fields": {"date_created": "2018-09-26T21:49:25.873Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2195, "fields": {"date_created": "2018-09-26T21:49:25.894Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2196, "fields": {"date_created": "2018-09-26T21:49:25.966Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2197, "fields": {"date_created": "2018-09-26T21:49:25.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2198, "fields": {"date_created": "2018-09-26T21:49:26.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2199, "fields": {"date_created": "2018-09-26T21:49:26.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2200, "fields": {"date_created": "2018-09-26T21:49:26.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2201, "fields": {"date_created": "2018-09-26T21:49:26.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2202, "fields": {"date_created": "2018-09-26T21:49:26.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2203, "fields": {"date_created": "2018-09-26T21:49:26.299Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2204, "fields": {"date_created": "2018-09-26T21:49:26.376Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2205, "fields": {"date_created": "2018-09-26T21:49:26.396Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2206, "fields": {"date_created": "2018-09-26T21:49:26.463Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2207, "fields": {"date_created": "2018-09-26T21:49:26.483Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2208, "fields": {"date_created": "2018-09-26T21:49:26.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2209, "fields": {"date_created": "2018-09-26T21:49:26.574Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2210, "fields": {"date_created": "2018-09-26T21:49:26.592Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2211, "fields": {"date_created": "2018-09-26T21:49:26.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2212, "fields": {"date_created": "2018-09-26T21:49:26.694Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2213, "fields": {"date_created": "2018-09-26T21:49:26.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2214, "fields": {"date_created": "2018-09-26T21:49:26.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2215, "fields": {"date_created": "2018-09-26T21:49:26.870Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2216, "fields": {"date_created": "2018-09-26T21:49:26.892Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2217, "fields": {"date_created": "2018-09-26T21:49:26.968Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2218, "fields": {"date_created": "2018-09-26T21:49:26.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2219, "fields": {"date_created": "2018-09-26T21:49:27.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2220, "fields": {"date_created": "2018-09-26T21:49:27.090Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2221, "fields": {"date_created": "2018-09-26T21:49:27.109Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2222, "fields": {"date_created": "2018-09-26T21:49:27.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2223, "fields": {"date_created": "2018-09-26T21:49:27.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2224, "fields": {"date_created": "2018-09-26T21:49:27.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2225, "fields": {"date_created": "2018-09-26T21:49:27.303Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2226, "fields": {"date_created": "2018-09-26T21:49:27.388Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2227, "fields": {"date_created": "2018-09-26T21:49:27.408Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2228, "fields": {"date_created": "2018-09-26T21:49:27.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2229, "fields": {"date_created": "2018-09-26T21:49:27.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2230, "fields": {"date_created": "2018-09-26T21:49:27.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2231, "fields": {"date_created": "2018-09-26T21:49:27.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2232, "fields": {"date_created": "2018-09-26T21:49:27.674Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2233, "fields": {"date_created": "2018-09-26T21:49:27.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2234, "fields": {"date_created": "2018-09-26T21:49:27.710Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2235, "fields": {"date_created": "2018-09-26T21:49:27.861Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2236, "fields": {"date_created": "2018-09-26T21:49:27.960Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2237, "fields": {"date_created": "2018-09-26T21:49:27.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2238, "fields": {"date_created": "2018-09-26T21:49:28.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2239, "fields": {"date_created": "2018-09-26T21:49:28.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2240, "fields": {"date_created": "2018-09-26T21:49:28.209Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2241, "fields": {"date_created": "2018-09-26T21:49:28.263Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2242, "fields": {"date_created": "2018-09-26T21:49:28.290Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2243, "fields": {"date_created": "2018-09-26T21:49:28.309Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2244, "fields": {"date_created": "2018-09-26T21:49:28.381Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2245, "fields": {"date_created": "2018-09-26T21:49:28.404Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2246, "fields": {"date_created": "2018-09-26T21:49:28.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2247, "fields": {"date_created": "2018-09-26T21:49:28.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2248, "fields": {"date_created": "2018-09-26T21:49:28.578Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2249, "fields": {"date_created": "2018-09-26T21:49:28.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2250, "fields": {"date_created": "2018-09-26T21:49:28.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2251, "fields": {"date_created": "2018-09-26T21:49:28.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2252, "fields": {"date_created": "2018-09-26T21:49:28.706Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2253, "fields": {"date_created": "2018-09-26T21:49:28.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2254, "fields": {"date_created": "2018-09-26T21:49:28.799Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2255, "fields": {"date_created": "2018-09-26T21:49:28.879Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2256, "fields": {"date_created": "2018-09-26T21:49:28.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2257, "fields": {"date_created": "2018-09-26T21:49:28.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2258, "fields": {"date_created": "2018-09-26T21:49:29.062Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2259, "fields": {"date_created": "2018-09-26T21:49:29.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2260, "fields": {"date_created": "2018-09-26T21:49:29.101Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2261, "fields": {"date_created": "2018-09-26T21:49:29.180Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2262, "fields": {"date_created": "2018-09-26T21:49:29.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2263, "fields": {"date_created": "2018-09-26T21:49:29.276Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2264, "fields": {"date_created": "2018-09-26T21:49:29.298Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2265, "fields": {"date_created": "2018-09-26T21:49:29.370Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2266, "fields": {"date_created": "2018-09-26T21:49:29.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2267, "fields": {"date_created": "2018-09-26T21:49:29.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2268, "fields": {"date_created": "2018-09-26T21:49:29.506Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2269, "fields": {"date_created": "2018-09-26T21:49:29.581Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2270, "fields": {"date_created": "2018-09-26T21:49:29.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2271, "fields": {"date_created": "2018-09-26T21:49:29.685Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2272, "fields": {"date_created": "2018-09-26T21:49:29.702Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2273, "fields": {"date_created": "2018-09-26T21:49:29.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2274, "fields": {"date_created": "2018-09-26T21:49:29.866Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2275, "fields": {"date_created": "2018-09-26T21:49:29.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2276, "fields": {"date_created": "2018-09-26T21:49:29.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2277, "fields": {"date_created": "2018-09-26T21:49:29.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2278, "fields": {"date_created": "2018-09-26T21:49:30.002Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2279, "fields": {"date_created": "2018-09-26T21:49:30.085Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2280, "fields": {"date_created": "2018-09-26T21:49:30.104Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2281, "fields": {"date_created": "2018-09-26T21:49:30.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2282, "fields": {"date_created": "2018-09-26T21:49:30.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2283, "fields": {"date_created": "2018-09-26T21:49:30.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2284, "fields": {"date_created": "2018-09-26T21:49:30.308Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2285, "fields": {"date_created": "2018-09-26T21:49:30.381Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2286, "fields": {"date_created": "2018-09-26T21:49:30.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2287, "fields": {"date_created": "2018-09-26T21:49:30.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2288, "fields": {"date_created": "2018-09-26T21:49:30.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2289, "fields": {"date_created": "2018-09-26T21:49:30.582Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2290, "fields": {"date_created": "2018-09-26T21:49:30.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2291, "fields": {"date_created": "2018-09-26T21:49:30.680Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2292, "fields": {"date_created": "2018-09-26T21:49:30.697Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2293, "fields": {"date_created": "2018-09-26T21:49:30.772Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2294, "fields": {"date_created": "2018-09-26T21:49:30.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2295, "fields": {"date_created": "2018-09-26T21:49:30.872Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2296, "fields": {"date_created": "2018-09-26T21:49:30.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2297, "fields": {"date_created": "2018-09-26T21:49:30.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2298, "fields": {"date_created": "2018-09-26T21:49:30.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2299, "fields": {"date_created": "2018-09-26T21:49:31.384Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2300, "fields": {"date_created": "2018-09-26T21:49:31.400Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2301, "fields": {"date_created": "2018-09-26T21:49:31.474Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2302, "fields": {"date_created": "2018-09-26T21:49:31.494Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2303, "fields": {"date_created": "2018-09-26T21:49:31.566Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2304, "fields": {"date_created": "2018-09-26T21:49:31.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2305, "fields": {"date_created": "2018-09-26T21:49:31.651Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2306, "fields": {"date_created": "2018-09-26T21:49:31.685Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2307, "fields": {"date_created": "2018-09-26T21:49:31.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2308, "fields": {"date_created": "2018-09-26T21:49:31.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2309, "fields": {"date_created": "2018-09-26T21:49:31.803Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2310, "fields": {"date_created": "2018-09-26T21:49:31.884Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2311, "fields": {"date_created": "2018-09-26T21:49:31.901Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2312, "fields": {"date_created": "2018-09-26T21:49:31.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2313, "fields": {"date_created": "2018-09-26T21:49:32.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2314, "fields": {"date_created": "2018-09-26T21:49:32.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2315, "fields": {"date_created": "2018-09-26T21:49:32.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2316, "fields": {"date_created": "2018-09-26T21:49:32.175Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2317, "fields": {"date_created": "2018-09-26T21:49:32.194Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2318, "fields": {"date_created": "2018-09-26T21:49:32.266Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2319, "fields": {"date_created": "2018-09-26T21:49:32.287Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2320, "fields": {"date_created": "2018-09-26T21:49:32.306Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2321, "fields": {"date_created": "2018-09-26T21:49:32.389Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2322, "fields": {"date_created": "2018-09-26T21:49:32.407Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2323, "fields": {"date_created": "2018-09-26T21:49:32.485Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2324, "fields": {"date_created": "2018-09-26T21:49:32.501Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2325, "fields": {"date_created": "2018-09-26T21:49:32.581Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2326, "fields": {"date_created": "2018-09-26T21:49:32.598Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2327, "fields": {"date_created": "2018-09-26T21:49:32.673Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2328, "fields": {"date_created": "2018-09-26T21:49:32.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2329, "fields": {"date_created": "2018-09-26T21:49:32.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2330, "fields": {"date_created": "2018-09-26T21:49:32.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2331, "fields": {"date_created": "2018-09-26T21:49:32.807Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2332, "fields": {"date_created": "2018-09-26T21:49:32.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2333, "fields": {"date_created": "2018-09-26T21:49:32.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2334, "fields": {"date_created": "2018-09-26T21:49:32.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2335, "fields": {"date_created": "2018-09-26T21:49:33.070Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2336, "fields": {"date_created": "2018-09-26T21:49:33.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2337, "fields": {"date_created": "2018-09-26T21:49:33.109Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2338, "fields": {"date_created": "2018-09-26T21:49:33.184Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2339, "fields": {"date_created": "2018-09-26T21:49:33.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2340, "fields": {"date_created": "2018-09-26T21:49:33.282Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2341, "fields": {"date_created": "2018-09-26T21:49:33.301Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2342, "fields": {"date_created": "2018-09-26T21:49:33.377Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2343, "fields": {"date_created": "2018-09-26T21:49:33.400Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2344, "fields": {"date_created": "2018-09-26T21:49:33.473Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2345, "fields": {"date_created": "2018-09-26T21:49:33.491Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2346, "fields": {"date_created": "2018-09-26T21:49:33.508Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2347, "fields": {"date_created": "2018-09-26T21:49:33.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2348, "fields": {"date_created": "2018-09-26T21:49:33.605Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2349, "fields": {"date_created": "2018-09-26T21:49:33.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2350, "fields": {"date_created": "2018-09-26T21:49:33.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2351, "fields": {"date_created": "2018-09-26T21:49:33.781Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2352, "fields": {"date_created": "2018-09-26T21:49:33.800Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2353, "fields": {"date_created": "2018-09-26T21:49:33.872Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2354, "fields": {"date_created": "2018-09-26T21:49:33.890Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2355, "fields": {"date_created": "2018-09-26T21:49:33.971Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2356, "fields": {"date_created": "2018-09-26T21:49:33.991Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2357, "fields": {"date_created": "2018-09-26T21:49:34.068Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2358, "fields": {"date_created": "2018-09-26T21:49:34.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2359, "fields": {"date_created": "2018-09-26T21:49:34.107Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2360, "fields": {"date_created": "2018-09-26T21:49:34.184Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2361, "fields": {"date_created": "2018-09-26T21:49:34.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2362, "fields": {"date_created": "2018-09-26T21:49:34.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2363, "fields": {"date_created": "2018-09-26T21:49:34.298Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2364, "fields": {"date_created": "2018-09-26T21:49:34.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2365, "fields": {"date_created": "2018-09-26T21:49:34.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2366, "fields": {"date_created": "2018-09-26T21:49:34.493Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2367, "fields": {"date_created": "2018-09-26T21:49:34.562Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2368, "fields": {"date_created": "2018-09-26T21:49:34.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2369, "fields": {"date_created": "2018-09-26T21:49:34.613Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2370, "fields": {"date_created": "2018-09-26T21:49:34.686Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2371, "fields": {"date_created": "2018-09-26T21:49:34.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2372, "fields": {"date_created": "2018-09-26T21:49:34.781Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2373, "fields": {"date_created": "2018-09-26T21:49:34.798Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2374, "fields": {"date_created": "2018-09-26T21:49:34.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2375, "fields": {"date_created": "2018-09-26T21:49:34.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2376, "fields": {"date_created": "2018-09-26T21:49:34.975Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2377, "fields": {"date_created": "2018-09-26T21:49:34.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2378, "fields": {"date_created": "2018-09-26T21:49:35.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2379, "fields": {"date_created": "2018-09-26T21:49:35.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2380, "fields": {"date_created": "2018-09-26T21:49:35.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2381, "fields": {"date_created": "2018-09-26T21:49:35.192Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2382, "fields": {"date_created": "2018-09-26T21:49:35.208Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2383, "fields": {"date_created": "2018-09-26T21:49:35.284Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2384, "fields": {"date_created": "2018-09-26T21:49:35.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2385, "fields": {"date_created": "2018-09-26T21:49:35.381Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2386, "fields": {"date_created": "2018-09-26T21:49:35.402Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2387, "fields": {"date_created": "2018-09-26T21:49:35.478Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2388, "fields": {"date_created": "2018-09-26T21:49:35.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2389, "fields": {"date_created": "2018-09-26T21:49:35.579Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2390, "fields": {"date_created": "2018-09-26T21:49:35.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2391, "fields": {"date_created": "2018-09-26T21:49:35.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2392, "fields": {"date_created": "2018-09-26T21:49:35.693Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2393, "fields": {"date_created": "2018-09-26T21:49:35.778Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2394, "fields": {"date_created": "2018-09-26T21:49:35.796Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2395, "fields": {"date_created": "2018-09-26T21:49:35.862Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2396, "fields": {"date_created": "2018-09-26T21:49:35.883Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2397, "fields": {"date_created": "2018-09-26T21:49:35.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2398, "fields": {"date_created": "2018-09-26T21:49:35.976Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2399, "fields": {"date_created": "2018-09-26T21:49:35.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2400, "fields": {"date_created": "2018-09-26T21:49:36.074Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2401, "fields": {"date_created": "2018-09-26T21:49:36.095Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2402, "fields": {"date_created": "2018-09-26T21:49:36.176Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2403, "fields": {"date_created": "2018-09-26T21:49:36.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2404, "fields": {"date_created": "2018-09-26T21:49:36.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2405, "fields": {"date_created": "2018-09-26T21:49:36.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2406, "fields": {"date_created": "2018-09-26T21:49:36.375Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2407, "fields": {"date_created": "2018-09-26T21:49:36.394Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2408, "fields": {"date_created": "2018-09-26T21:49:36.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2409, "fields": {"date_created": "2018-09-26T21:49:36.490Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2410, "fields": {"date_created": "2018-09-26T21:49:36.569Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2411, "fields": {"date_created": "2018-09-26T21:49:36.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2412, "fields": {"date_created": "2018-09-26T21:49:36.674Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2413, "fields": {"date_created": "2018-09-26T21:49:36.693Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2414, "fields": {"date_created": "2018-09-26T21:49:36.771Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2415, "fields": {"date_created": "2018-09-26T21:49:36.790Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2416, "fields": {"date_created": "2018-09-26T21:49:36.808Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2417, "fields": {"date_created": "2018-09-26T21:49:36.886Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2418, "fields": {"date_created": "2018-09-26T21:49:36.904Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2419, "fields": {"date_created": "2018-09-26T21:49:36.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2420, "fields": {"date_created": "2018-09-26T21:49:36.997Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2421, "fields": {"date_created": "2018-09-26T21:49:37.076Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2422, "fields": {"date_created": "2018-09-26T21:49:37.093Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2423, "fields": {"date_created": "2018-09-26T21:49:37.171Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2424, "fields": {"date_created": "2018-09-26T21:49:37.189Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2425, "fields": {"date_created": "2018-09-26T21:49:37.264Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2426, "fields": {"date_created": "2018-09-26T21:49:37.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2427, "fields": {"date_created": "2018-09-26T21:49:37.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2428, "fields": {"date_created": "2018-09-26T21:49:37.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2429, "fields": {"date_created": "2018-09-26T21:49:37.400Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2430, "fields": {"date_created": "2018-09-26T21:49:37.481Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2431, "fields": {"date_created": "2018-09-26T21:49:37.498Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2432, "fields": {"date_created": "2018-09-26T21:49:37.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2433, "fields": {"date_created": "2018-09-26T21:49:37.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2434, "fields": {"date_created": "2018-09-26T21:49:37.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2435, "fields": {"date_created": "2018-09-26T21:49:37.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2436, "fields": {"date_created": "2018-09-26T21:49:37.712Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2437, "fields": {"date_created": "2018-09-26T21:49:37.866Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2438, "fields": {"date_created": "2018-09-26T21:49:37.953Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2439, "fields": {"date_created": "2018-09-26T21:49:37.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2440, "fields": {"date_created": "2018-09-26T21:49:37.995Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2441, "fields": {"date_created": "2018-09-26T21:49:38.071Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2442, "fields": {"date_created": "2018-09-26T21:49:38.092Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2443, "fields": {"date_created": "2018-09-26T21:49:38.170Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2444, "fields": {"date_created": "2018-09-26T21:49:38.191Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2445, "fields": {"date_created": "2018-09-26T21:49:38.266Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2446, "fields": {"date_created": "2018-09-26T21:49:38.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2447, "fields": {"date_created": "2018-09-26T21:49:38.303Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2448, "fields": {"date_created": "2018-09-26T21:49:38.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2449, "fields": {"date_created": "2018-09-26T21:49:38.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2450, "fields": {"date_created": "2018-09-26T21:49:38.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2451, "fields": {"date_created": "2018-09-26T21:49:38.498Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2452, "fields": {"date_created": "2018-09-26T21:49:38.570Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2453, "fields": {"date_created": "2018-09-26T21:49:38.591Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2454, "fields": {"date_created": "2018-09-26T21:49:38.664Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2455, "fields": {"date_created": "2018-09-26T21:49:38.687Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2456, "fields": {"date_created": "2018-09-26T21:49:38.709Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2457, "fields": {"date_created": "2018-09-26T21:49:38.783Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2458, "fields": {"date_created": "2018-09-26T21:49:38.801Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2459, "fields": {"date_created": "2018-09-26T21:49:38.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2460, "fields": {"date_created": "2018-09-26T21:49:38.963Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2461, "fields": {"date_created": "2018-09-26T21:49:38.988Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2462, "fields": {"date_created": "2018-09-26T21:49:39.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2463, "fields": {"date_created": "2018-09-26T21:49:39.090Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2464, "fields": {"date_created": "2018-09-26T21:49:39.107Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2465, "fields": {"date_created": "2018-09-26T21:49:39.177Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2466, "fields": {"date_created": "2018-09-26T21:49:39.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2467, "fields": {"date_created": "2018-09-26T21:49:39.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2468, "fields": {"date_created": "2018-09-26T21:49:39.292Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2469, "fields": {"date_created": "2018-09-26T21:49:39.372Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2470, "fields": {"date_created": "2018-09-26T21:49:39.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2471, "fields": {"date_created": "2018-09-26T21:49:39.485Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2472, "fields": {"date_created": "2018-09-26T21:49:39.505Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2473, "fields": {"date_created": "2018-09-26T21:49:39.584Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2474, "fields": {"date_created": "2018-09-26T21:49:39.606Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2475, "fields": {"date_created": "2018-09-26T21:49:39.685Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2476, "fields": {"date_created": "2018-09-26T21:49:39.704Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2477, "fields": {"date_created": "2018-09-26T21:49:39.789Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2478, "fields": {"date_created": "2018-09-26T21:49:39.807Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2479, "fields": {"date_created": "2018-09-26T21:49:39.884Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2480, "fields": {"date_created": "2018-09-26T21:49:39.902Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2481, "fields": {"date_created": "2018-09-26T21:49:39.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2482, "fields": {"date_created": "2018-09-26T21:49:40.062Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2483, "fields": {"date_created": "2018-09-26T21:49:40.086Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2484, "fields": {"date_created": "2018-09-26T21:49:40.162Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2485, "fields": {"date_created": "2018-09-26T21:49:40.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2486, "fields": {"date_created": "2018-09-26T21:49:40.202Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2487, "fields": {"date_created": "2018-09-26T21:49:40.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2488, "fields": {"date_created": "2018-09-26T21:49:40.305Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2489, "fields": {"date_created": "2018-09-26T21:49:40.380Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2490, "fields": {"date_created": "2018-09-26T21:49:40.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2491, "fields": {"date_created": "2018-09-26T21:49:40.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2492, "fields": {"date_created": "2018-09-26T21:49:40.502Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2493, "fields": {"date_created": "2018-09-26T21:49:40.584Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2494, "fields": {"date_created": "2018-09-26T21:49:40.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2495, "fields": {"date_created": "2018-09-26T21:49:40.681Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2496, "fields": {"date_created": "2018-09-26T21:49:40.699Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2497, "fields": {"date_created": "2018-09-26T21:49:40.779Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2498, "fields": {"date_created": "2018-09-26T21:49:40.802Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2499, "fields": {"date_created": "2018-09-26T21:49:40.886Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2500, "fields": {"date_created": "2018-09-26T21:49:40.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2501, "fields": {"date_created": "2018-09-26T21:49:40.989Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2502, "fields": {"date_created": "2018-09-26T21:49:41.008Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2503, "fields": {"date_created": "2018-09-26T21:49:41.084Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2504, "fields": {"date_created": "2018-09-26T21:49:41.104Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2505, "fields": {"date_created": "2018-09-26T21:49:41.185Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2506, "fields": {"date_created": "2018-09-26T21:49:41.203Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2507, "fields": {"date_created": "2018-09-26T21:49:41.285Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2508, "fields": {"date_created": "2018-09-26T21:49:41.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2509, "fields": {"date_created": "2018-09-26T21:49:41.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2510, "fields": {"date_created": "2018-09-26T21:49:41.473Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2511, "fields": {"date_created": "2018-09-26T21:49:41.496Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2512, "fields": {"date_created": "2018-09-26T21:49:41.573Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2513, "fields": {"date_created": "2018-09-26T21:49:41.594Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2514, "fields": {"date_created": "2018-09-26T21:49:41.675Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2515, "fields": {"date_created": "2018-09-26T21:49:41.700Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2516, "fields": {"date_created": "2018-09-26T21:49:41.782Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2517, "fields": {"date_created": "2018-09-26T21:49:41.863Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2518, "fields": {"date_created": "2018-09-26T21:49:41.889Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2519, "fields": {"date_created": "2018-09-26T21:49:41.968Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2520, "fields": {"date_created": "2018-09-26T21:49:41.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2521, "fields": {"date_created": "2018-09-26T21:49:42.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2522, "fields": {"date_created": "2018-09-26T21:49:42.097Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2523, "fields": {"date_created": "2018-09-26T21:49:42.181Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2524, "fields": {"date_created": "2018-09-26T21:49:42.265Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2525, "fields": {"date_created": "2018-09-26T21:49:42.293Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2526, "fields": {"date_created": "2018-09-26T21:49:42.375Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2527, "fields": {"date_created": "2018-09-26T21:49:42.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2528, "fields": {"date_created": "2018-09-26T21:49:42.481Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2529, "fields": {"date_created": "2018-09-26T21:49:42.503Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2530, "fields": {"date_created": "2018-09-26T21:49:42.582Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2531, "fields": {"date_created": "2018-09-26T21:49:42.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2532, "fields": {"date_created": "2018-09-26T21:49:42.690Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2533, "fields": {"date_created": "2018-09-26T21:49:42.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2534, "fields": {"date_created": "2018-09-26T21:49:42.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2535, "fields": {"date_created": "2018-09-26T21:49:42.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2536, "fields": {"date_created": "2018-09-26T21:49:42.900Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2537, "fields": {"date_created": "2018-09-26T21:49:42.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2538, "fields": {"date_created": "2018-09-26T21:49:42.998Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2539, "fields": {"date_created": "2018-09-26T21:49:43.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2540, "fields": {"date_created": "2018-09-26T21:49:43.097Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2541, "fields": {"date_created": "2018-09-26T21:49:43.177Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2542, "fields": {"date_created": "2018-09-26T21:49:43.195Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2543, "fields": {"date_created": "2018-09-26T21:49:43.273Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2544, "fields": {"date_created": "2018-09-26T21:49:43.295Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2545, "fields": {"date_created": "2018-09-26T21:49:43.379Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2546, "fields": {"date_created": "2018-09-26T21:49:43.405Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2547, "fields": {"date_created": "2018-09-26T21:49:43.480Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2548, "fields": {"date_created": "2018-09-26T21:49:43.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2549, "fields": {"date_created": "2018-09-26T21:49:43.580Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2550, "fields": {"date_created": "2018-09-26T21:49:43.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2551, "fields": {"date_created": "2018-09-26T21:49:43.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2552, "fields": {"date_created": "2018-09-26T21:49:43.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2553, "fields": {"date_created": "2018-09-26T21:49:43.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2554, "fields": {"date_created": "2018-09-26T21:49:43.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2555, "fields": {"date_created": "2018-09-26T21:49:43.871Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2556, "fields": {"date_created": "2018-09-26T21:49:43.896Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2557, "fields": {"date_created": "2018-09-26T21:49:43.969Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2558, "fields": {"date_created": "2018-09-26T21:49:43.991Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2559, "fields": {"date_created": "2018-09-26T21:49:44.066Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2560, "fields": {"date_created": "2018-09-26T21:49:44.088Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2561, "fields": {"date_created": "2018-09-26T21:49:44.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2562, "fields": {"date_created": "2018-09-26T21:49:44.187Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2563, "fields": {"date_created": "2018-09-26T21:49:44.265Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2564, "fields": {"date_created": "2018-09-26T21:49:44.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2565, "fields": {"date_created": "2018-09-26T21:49:44.302Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2566, "fields": {"date_created": "2018-09-26T21:49:44.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2567, "fields": {"date_created": "2018-09-26T21:49:44.472Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2568, "fields": {"date_created": "2018-09-26T21:49:44.492Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2569, "fields": {"date_created": "2018-09-26T21:49:44.579Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2570, "fields": {"date_created": "2018-09-26T21:49:44.602Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2571, "fields": {"date_created": "2018-09-26T21:49:44.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2572, "fields": {"date_created": "2018-09-26T21:49:44.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2573, "fields": {"date_created": "2018-09-26T21:49:44.777Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2574, "fields": {"date_created": "2018-09-26T21:49:44.795Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2575, "fields": {"date_created": "2018-09-26T21:49:44.877Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2576, "fields": {"date_created": "2018-09-26T21:49:44.962Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2577, "fields": {"date_created": "2018-09-26T21:49:44.982Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2578, "fields": {"date_created": "2018-09-26T21:49:45.000Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2579, "fields": {"date_created": "2018-09-26T21:49:45.081Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2580, "fields": {"date_created": "2018-09-26T21:49:45.102Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2581, "fields": {"date_created": "2018-09-26T21:49:45.179Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2582, "fields": {"date_created": "2018-09-26T21:49:45.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2583, "fields": {"date_created": "2018-09-26T21:49:45.280Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2584, "fields": {"date_created": "2018-09-26T21:49:45.300Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2585, "fields": {"date_created": "2018-09-26T21:49:45.370Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2586, "fields": {"date_created": "2018-09-26T21:49:45.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2587, "fields": {"date_created": "2018-09-26T21:49:45.468Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2588, "fields": {"date_created": "2018-09-26T21:49:45.487Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2589, "fields": {"date_created": "2018-09-26T21:49:45.504Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2590, "fields": {"date_created": "2018-09-26T21:49:45.599Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2591, "fields": {"date_created": "2018-09-26T21:49:45.618Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2592, "fields": {"date_created": "2018-09-26T21:49:45.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2593, "fields": {"date_created": "2018-09-26T21:49:45.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2594, "fields": {"date_created": "2018-09-26T21:49:45.774Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2595, "fields": {"date_created": "2018-09-26T21:49:45.793Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2596, "fields": {"date_created": "2018-09-26T21:49:45.869Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2597, "fields": {"date_created": "2018-09-26T21:49:45.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2598, "fields": {"date_created": "2018-09-26T21:49:45.910Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2599, "fields": {"date_created": "2018-09-26T21:49:45.977Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2600, "fields": {"date_created": "2018-09-26T21:49:45.994Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2601, "fields": {"date_created": "2018-09-26T21:49:46.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2602, "fields": {"date_created": "2018-09-26T21:49:46.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2603, "fields": {"date_created": "2018-09-26T21:49:46.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2604, "fields": {"date_created": "2018-09-26T21:49:46.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2605, "fields": {"date_created": "2018-09-26T21:49:46.278Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2606, "fields": {"date_created": "2018-09-26T21:49:46.297Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2607, "fields": {"date_created": "2018-09-26T21:49:46.371Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2608, "fields": {"date_created": "2018-09-26T21:49:46.391Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2609, "fields": {"date_created": "2018-09-26T21:49:46.462Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2610, "fields": {"date_created": "2018-09-26T21:49:46.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2611, "fields": {"date_created": "2018-09-26T21:49:46.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2612, "fields": {"date_created": "2018-09-26T21:49:46.579Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2613, "fields": {"date_created": "2018-09-26T21:49:46.598Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2614, "fields": {"date_created": "2018-09-26T21:49:46.671Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2615, "fields": {"date_created": "2018-09-26T21:49:46.691Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2616, "fields": {"date_created": "2018-09-26T21:49:46.768Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2617, "fields": {"date_created": "2018-09-26T21:49:46.787Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2618, "fields": {"date_created": "2018-09-26T21:49:46.805Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2619, "fields": {"date_created": "2018-09-26T21:49:46.881Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2620, "fields": {"date_created": "2018-09-26T21:49:46.899Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2621, "fields": {"date_created": "2018-09-26T21:49:46.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2622, "fields": {"date_created": "2018-09-26T21:49:47.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2623, "fields": {"date_created": "2018-09-26T21:49:47.086Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2624, "fields": {"date_created": "2018-09-26T21:49:47.166Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2625, "fields": {"date_created": "2018-09-26T21:49:47.188Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2626, "fields": {"date_created": "2018-09-26T21:49:47.270Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2627, "fields": {"date_created": "2018-09-26T21:49:47.289Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2628, "fields": {"date_created": "2018-09-26T21:49:47.307Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2629, "fields": {"date_created": "2018-09-26T21:49:47.388Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2630, "fields": {"date_created": "2018-09-26T21:49:47.405Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2631, "fields": {"date_created": "2018-09-26T21:49:47.481Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2632, "fields": {"date_created": "2018-09-26T21:49:47.499Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2633, "fields": {"date_created": "2018-09-26T21:49:47.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2634, "fields": {"date_created": "2018-09-26T21:49:47.596Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2635, "fields": {"date_created": "2018-09-26T21:49:47.613Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2636, "fields": {"date_created": "2018-09-26T21:49:47.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2637, "fields": {"date_created": "2018-09-26T21:49:47.701Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2638, "fields": {"date_created": "2018-09-26T21:49:47.857Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2639, "fields": {"date_created": "2018-09-26T21:49:47.881Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2640, "fields": {"date_created": "2018-09-26T21:49:47.953Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2641, "fields": {"date_created": "2018-09-26T21:49:47.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2642, "fields": {"date_created": "2018-09-26T21:49:48.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2643, "fields": {"date_created": "2018-09-26T21:49:48.080Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2644, "fields": {"date_created": "2018-09-26T21:49:48.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2645, "fields": {"date_created": "2018-09-26T21:49:48.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2646, "fields": {"date_created": "2018-09-26T21:49:48.197Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2647, "fields": {"date_created": "2018-09-26T21:49:48.276Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2648, "fields": {"date_created": "2018-09-26T21:49:48.293Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2649, "fields": {"date_created": "2018-09-26T21:49:48.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2650, "fields": {"date_created": "2018-09-26T21:49:48.392Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2651, "fields": {"date_created": "2018-09-26T21:49:48.468Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2652, "fields": {"date_created": "2018-09-26T21:49:48.488Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2653, "fields": {"date_created": "2018-09-26T21:49:48.567Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2654, "fields": {"date_created": "2018-09-26T21:49:48.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2655, "fields": {"date_created": "2018-09-26T21:49:48.609Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2656, "fields": {"date_created": "2018-09-26T21:49:48.678Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2657, "fields": {"date_created": "2018-09-26T21:49:48.695Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2658, "fields": {"date_created": "2018-09-26T21:49:48.771Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2659, "fields": {"date_created": "2018-09-26T21:49:48.864Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2660, "fields": {"date_created": "2018-09-26T21:49:48.884Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2661, "fields": {"date_created": "2018-09-26T21:49:48.901Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2662, "fields": {"date_created": "2018-09-26T21:49:48.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2663, "fields": {"date_created": "2018-09-26T21:49:49.006Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2664, "fields": {"date_created": "2018-09-26T21:49:49.076Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2665, "fields": {"date_created": "2018-09-26T21:49:49.093Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2666, "fields": {"date_created": "2018-09-26T21:49:49.172Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2667, "fields": {"date_created": "2018-09-26T21:49:49.190Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2668, "fields": {"date_created": "2018-09-26T21:49:49.265Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2669, "fields": {"date_created": "2018-09-26T21:49:49.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2670, "fields": {"date_created": "2018-09-26T21:49:49.363Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2671, "fields": {"date_created": "2018-09-26T21:49:49.386Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2672, "fields": {"date_created": "2018-09-26T21:49:49.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2673, "fields": {"date_created": "2018-09-26T21:49:49.492Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2674, "fields": {"date_created": "2018-09-26T21:49:49.565Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2675, "fields": {"date_created": "2018-09-26T21:49:49.587Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2676, "fields": {"date_created": "2018-09-26T21:49:49.662Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2677, "fields": {"date_created": "2018-09-26T21:49:49.684Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2678, "fields": {"date_created": "2018-09-26T21:49:49.703Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2679, "fields": {"date_created": "2018-09-26T21:49:49.784Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2680, "fields": {"date_created": "2018-09-26T21:49:49.802Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2681, "fields": {"date_created": "2018-09-26T21:49:49.882Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2682, "fields": {"date_created": "2018-09-26T21:49:49.901Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2683, "fields": {"date_created": "2018-09-26T21:49:49.980Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2684, "fields": {"date_created": "2018-09-26T21:49:49.999Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2685, "fields": {"date_created": "2018-09-26T21:49:50.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2686, "fields": {"date_created": "2018-09-26T21:49:50.103Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2687, "fields": {"date_created": "2018-09-26T21:49:50.173Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2688, "fields": {"date_created": "2018-09-26T21:49:50.193Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2689, "fields": {"date_created": "2018-09-26T21:49:50.270Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2690, "fields": {"date_created": "2018-09-26T21:49:50.292Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2691, "fields": {"date_created": "2018-09-26T21:49:50.373Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2692, "fields": {"date_created": "2018-09-26T21:49:50.399Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2693, "fields": {"date_created": "2018-09-26T21:49:50.481Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2694, "fields": {"date_created": "2018-09-26T21:49:50.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2695, "fields": {"date_created": "2018-09-26T21:49:50.577Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2696, "fields": {"date_created": "2018-09-26T21:49:50.595Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2697, "fields": {"date_created": "2018-09-26T21:49:50.677Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2698, "fields": {"date_created": "2018-09-26T21:49:50.696Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2699, "fields": {"date_created": "2018-09-26T21:49:50.773Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2700, "fields": {"date_created": "2018-09-26T21:49:50.791Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2701, "fields": {"date_created": "2018-09-26T21:49:50.868Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2702, "fields": {"date_created": "2018-09-26T21:49:50.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2703, "fields": {"date_created": "2018-09-26T21:49:50.906Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2704, "fields": {"date_created": "2018-09-26T21:49:50.985Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2705, "fields": {"date_created": "2018-09-26T21:49:51.003Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2706, "fields": {"date_created": "2018-09-26T21:49:51.087Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2707, "fields": {"date_created": "2018-09-26T21:49:51.162Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2708, "fields": {"date_created": "2018-09-26T21:49:51.192Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2709, "fields": {"date_created": "2018-09-26T21:49:51.211Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2710, "fields": {"date_created": "2018-09-26T21:49:51.286Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2711, "fields": {"date_created": "2018-09-26T21:49:51.372Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2712, "fields": {"date_created": "2018-09-26T21:49:51.390Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2713, "fields": {"date_created": "2018-09-26T21:49:51.469Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2714, "fields": {"date_created": "2018-09-26T21:49:51.489Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2715, "fields": {"date_created": "2018-09-26T21:49:51.563Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2716, "fields": {"date_created": "2018-09-26T21:49:51.585Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2717, "fields": {"date_created": "2018-09-26T21:49:51.603Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2718, "fields": {"date_created": "2018-09-26T21:49:51.688Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2719, "fields": {"date_created": "2018-09-26T21:49:51.706Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2720, "fields": {"date_created": "2018-09-26T21:49:51.779Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2721, "fields": {"date_created": "2018-09-26T21:49:51.796Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2722, "fields": {"date_created": "2018-09-26T21:49:51.875Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2723, "fields": {"date_created": "2018-09-26T21:49:51.895Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2724, "fields": {"date_created": "2018-09-26T21:49:51.973Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2725, "fields": {"date_created": "2018-09-26T21:49:51.992Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2726, "fields": {"date_created": "2018-09-26T21:49:52.075Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2727, "fields": {"date_created": "2018-09-26T21:49:52.099Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2728, "fields": {"date_created": "2018-09-26T21:49:52.165Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2729, "fields": {"date_created": "2018-09-26T21:49:52.186Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2730, "fields": {"date_created": "2018-09-26T21:49:52.204Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2731, "fields": {"date_created": "2018-09-26T21:49:52.283Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2732, "fields": {"date_created": "2018-09-26T21:49:52.301Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2733, "fields": {"date_created": "2018-09-26T21:49:52.383Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2734, "fields": {"date_created": "2018-09-26T21:49:52.402Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2735, "fields": {"date_created": "2018-09-26T21:49:52.482Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2736, "fields": {"date_created": "2018-09-26T21:49:52.500Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2737, "fields": {"date_created": "2018-09-26T21:49:52.575Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2738, "fields": {"date_created": "2018-09-26T21:49:52.593Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2739, "fields": {"date_created": "2018-09-26T21:49:52.672Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2740, "fields": {"date_created": "2018-09-26T21:49:52.692Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2741, "fields": {"date_created": "2018-09-26T21:49:52.767Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2742, "fields": {"date_created": "2018-09-26T21:49:52.786Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2743, "fields": {"date_created": "2018-09-26T21:49:52.868Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2744, "fields": {"date_created": "2018-09-26T21:49:52.888Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2745, "fields": {"date_created": "2018-09-26T21:49:52.965Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2746, "fields": {"date_created": "2018-09-26T21:49:52.986Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2747, "fields": {"date_created": "2018-09-26T21:49:53.004Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2748, "fields": {"date_created": "2018-09-26T21:49:53.083Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2749, "fields": {"date_created": "2018-09-26T21:49:53.100Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2750, "fields": {"date_created": "2018-09-26T21:49:53.178Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2751, "fields": {"date_created": "2018-09-26T21:49:53.199Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2752, "fields": {"date_created": "2018-09-26T21:49:53.275Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2753, "fields": {"date_created": "2018-09-26T21:49:53.295Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2754, "fields": {"date_created": "2018-09-26T21:49:53.375Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2755, "fields": {"date_created": "2018-09-26T21:49:53.393Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2756, "fields": {"date_created": "2018-09-26T21:49:53.470Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2757, "fields": {"date_created": "2018-09-26T21:49:53.492Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2758, "fields": {"date_created": "2018-09-26T21:49:53.510Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2759, "fields": {"date_created": "2018-09-26T21:49:53.589Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2760, "fields": {"date_created": "2018-09-26T21:49:53.606Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2761, "fields": {"date_created": "2018-09-26T21:49:53.685Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2762, "fields": {"date_created": "2018-09-26T21:49:53.707Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2763, "fields": {"date_created": "2018-09-26T21:49:53.785Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2764, "fields": {"date_created": "2018-09-26T21:49:53.804Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2765, "fields": {"date_created": "2018-09-26T21:49:53.887Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2766, "fields": {"date_created": "2018-09-26T21:49:53.905Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2767, "fields": {"date_created": "2018-09-26T21:49:53.979Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2768, "fields": {"date_created": "2018-09-26T21:49:53.996Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2769, "fields": {"date_created": "2018-09-26T21:49:54.079Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2770, "fields": {"date_created": "2018-09-26T21:49:54.098Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2771, "fields": {"date_created": "2018-09-26T21:49:54.182Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2772, "fields": {"date_created": "2018-09-26T21:49:54.200Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2773, "fields": {"date_created": "2018-09-26T21:49:54.279Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2774, "fields": {"date_created": "2018-09-26T21:49:54.300Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2775, "fields": {"date_created": "2018-09-26T21:49:54.382Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2776, "fields": {"date_created": "2018-09-26T21:49:54.466Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2777, "fields": {"date_created": "2018-09-26T21:49:54.493Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2778, "fields": {"date_created": "2018-09-26T21:49:54.570Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2779, "fields": {"date_created": "2018-09-26T21:49:54.597Z", "user": null, "comment": "Initial version."}}, {"model": "reversion.revision", "pk": 2780, "fields": {"date_created": "2018-09-26T21:50:01.188Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2781, "fields": {"date_created": "2018-09-26T21:50:04.770Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2782, "fields": {"date_created": "2018-09-26T21:50:05.221Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2783, "fields": {"date_created": "2018-09-26T21:50:05.510Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2784, "fields": {"date_created": "2018-09-26T21:50:06.019Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2785, "fields": {"date_created": "2018-09-26T21:50:06.353Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2786, "fields": {"date_created": "2018-09-26T21:50:06.516Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2787, "fields": {"date_created": "2018-09-26T21:50:08.215Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2788, "fields": {"date_created": "2018-09-26T21:50:08.795Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2789, "fields": {"date_created": "2018-09-26T21:50:09.206Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2790, "fields": {"date_created": "2018-09-26T21:50:09.310Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2791, "fields": {"date_created": "2018-09-26T21:50:12.389Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2792, "fields": {"date_created": "2018-09-26T21:50:12.498Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2793, "fields": {"date_created": "2018-09-26T21:50:12.607Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2794, "fields": {"date_created": "2018-09-26T21:50:12.728Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2795, "fields": {"date_created": "2018-09-26T21:50:14.074Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2796, "fields": {"date_created": "2018-09-26T21:50:14.240Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2797, "fields": {"date_created": "2018-09-26T21:50:14.400Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2798, "fields": {"date_created": "2018-09-26T21:50:14.595Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2799, "fields": {"date_created": "2018-09-26T21:50:14.803Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2800, "fields": {"date_created": "2018-09-26T21:50:15.096Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2801, "fields": {"date_created": "2018-09-26T21:50:15.890Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2802, "fields": {"date_created": "2018-09-26T21:50:15.966Z", "user": 2, "comment": ""}}, {"model": "reversion.revision", "pk": 2803, "fields": {"date_created": "2018-09-26T21:50:24.902Z", "user": 2, "comment": ""}}] \ No newline at end of file diff --git a/app/backend/aquifers/fixtures/aquifers.json b/app/backend/aquifers/fixtures/aquifers.json new file mode 100644 index 0000000000..387c62cc3f --- /dev/null +++ b/app/backend/aquifers/fixtures/aquifers.json @@ -0,0 +1,28726 @@ +[ + { + "model": "aquifers.aquifer", + "pk": 1, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:07:39Z", + "aquifer_name": null, + "location_description": "Floods; Harrison; Hope", + "material": "SG", + "subtype": "1a", + "area": "7.8", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments; glaciofluvial and fluvial gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 2, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:31:59Z", + "aquifer_name": null, + "location_description": "Chawathil", + "material": "SG", + "subtype": "1a", + "area": "7.1", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser River Sediments; Glacial, glaciofluvial and fluvial gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 3, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:32:20Z", + "aquifer_name": null, + "location_description": "Laidlaw", + "material": "SG", + "subtype": "1a", + "area": "9.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 4, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:32:32Z", + "aquifer_name": "Aggasiz", + "location_description": "Aggasiz/Sea Bird Island", + "material": "SG", + "subtype": "1a", + "area": "63.3", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 5, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:32:42Z", + "aquifer_name": null, + "location_description": "Chehalis", + "material": "SG", + "subtype": "3", + "area": "16.1", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 6, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:07:19Z", + "aquifer_name": "Chilliwack-Rosedale", + "location_description": "Chilliwack-Rosedale", + "material": "SG", + "subtype": "1a", + "area": "141.5", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments; Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 7, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:53:01Z", + "aquifer_name": null, + "location_description": "Harrison Mills", + "material": "SG", + "subtype": "1a", + "area": "6.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 8, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:53:12Z", + "aquifer_name": "Vedder River Fan", + "location_description": "Vedder Crossing", + "material": "SG", + "subtype": "3", + "area": "53.8", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 9, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:53:22Z", + "aquifer_name": null, + "location_description": "Chilliwack River; Cultus Lake", + "material": "SG", + "subtype": "1b", + "area": "14.0", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Channel gravel & sand, outwash gravel; Salish Sediments; Sumas Drift", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 10, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T11:53:33Z", + "aquifer_name": null, + "location_description": "Mouth of Sleese Creek", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 11, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T13:42:22Z", + "aquifer_name": null, + "location_description": "Lake Erroch/Deroche Creek", + "material": "SG", + "subtype": "4a", + "area": "13.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Sumas Drift", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 12, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T13:42:33Z", + "aquifer_name": "Nicomen Slough", + "location_description": "Nicomen Slough", + "material": "SG", + "subtype": "1a", + "area": "60.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 13, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T13:42:45Z", + "aquifer_name": null, + "location_description": "Norrish Creek", + "material": "SG", + "subtype": "3", + "area": "2.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 14, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:03:31Z", + "aquifer_name": "Hatzic Prairie", + "location_description": "Hatzic Prairie", + "material": "SG", + "subtype": "1a", + "area": "10.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Salish Sediments; Fraser River Sediments", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 15, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-07-20T12:20:59Z", + "aquifer_name": "Abbotsford-Sumas", + "location_description": "Abbotsford -Sumas", + "material": "SG", + "subtype": "4a", + "area": "94.9", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Sumas Drift; glacial outwash", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 16, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T13:54:14Z", + "aquifer_name": null, + "location_description": "Mount Lehman", + "material": "SG", + "subtype": "4a", + "area": "5.8", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Sumas Drift", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 17, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:02:45Z", + "aquifer_name": null, + "location_description": "Mission Floodplain", + "material": "SG", + "subtype": "1a", + "area": "7.0", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 18, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T14:59:04Z", + "aquifer_name": null, + "location_description": "Mission", + "material": "B", + "subtype": "5a", + "area": "49.0", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Tertiary bedrock", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 19, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:08:44Z", + "aquifer_name": "Grant Hill", + "location_description": "Grant Hill", + "material": "B", + "subtype": "5a", + "area": "56.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Tertiary bedrock", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 20, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T13:55:00Z", + "aquifer_name": "Columbia Valley", + "location_description": "Columbia Valley", + "material": "SG", + "subtype": "4a", + "area": "15.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Sumas Drift; Salish Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 21, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:16:22Z", + "aquifer_name": "Sumas Prairie", + "location_description": "Sumas Prairie", + "material": "SG", + "subtype": "1a", + "area": "97.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments; Fraser River Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 22, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T14:06:46Z", + "aquifer_name": null, + "location_description": "Matsqui Prairie", + "material": "SG", + "subtype": "1a", + "area": "45.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments; Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 23, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T14:06:56Z", + "aquifer_name": null, + "location_description": "North of Abbotsford", + "material": "SG", + "subtype": "4a", + "area": "3.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sumas Drift", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 24, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-07-20T12:21:25Z", + "aquifer_name": null, + "location_description": "Glen Valley", + "material": "SG", + "subtype": "1a", + "area": "19.2", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fraser River Sediments; Salish Sediments", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 25, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:02:08Z", + "aquifer_name": null, + "location_description": "Miracle Valley", + "material": "SG", + "subtype": "4b", + "area": "14.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fort Langley Formation? Vashon Drift?", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 26, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:05:44Z", + "aquifer_name": null, + "location_description": "Kanaka/Whonnock Creek", + "material": "SG", + "subtype": "4b", + "area": "15.0", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drfit? Fort Langley Formation?", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 27, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:21:19Z", + "aquifer_name": "Aldergrove AB", + "location_description": "Aldergrove AB", + "material": "SG", + "subtype": "4c", + "area": null, + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 28, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:18:28Z", + "aquifer_name": null, + "location_description": "Northwest of Clearbrook", + "material": "SG", + "subtype": "4b", + "area": "68.7", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 29, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:00:05Z", + "aquifer_name": null, + "location_description": "North of Mt. Lehman", + "material": "SG", + "subtype": "4b", + "area": "3.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 30, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T14:28:48Z", + "aquifer_name": null, + "location_description": "North of Dennison", + "material": "SG", + "subtype": "4b", + "area": "4.8", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 31, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:09:49Z", + "aquifer_name": null, + "location_description": "Glen Valley (Lower)", + "material": "SG", + "subtype": "4c", + "area": "17.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Mainly sand, sand and gravel of estuarine, marine and fluvial origin", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 32, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-01-25T10:53:39Z", + "aquifer_name": null, + "location_description": "Beaver River", + "material": "SG", + "subtype": "4c", + "area": "50.0", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Early Fort Langley or late Vashon glaciofluvial/glaciomarine outwash", + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 33, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-11-03T15:32:25Z", + "aquifer_name": "West of Aldergrove", + "location_description": "West of Aldergrove", + "material": "SG", + "subtype": "4b", + "area": "73.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Early Fort Langley or Vashon intertill glaciofluvial/glaciomarine outwash", + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 34, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:10:24Z", + "aquifer_name": null, + "location_description": "South of Aldergrove", + "material": "SG", + "subtype": "4b", + "area": "10.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 35, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:09:13Z", + "aquifer_name": "Hopington AB", + "location_description": "Hopington - Township of Langley", + "material": "SG", + "subtype": "4a", + "area": "23.9", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Sumas glaciofluvial deltaic", + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 36, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-12-12T13:58:56Z", + "aquifer_name": "Fort Langley B", + "location_description": "Fort Langley", + "material": "SG", + "subtype": "1a", + "area": "1.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 37, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-12-12T13:59:08Z", + "aquifer_name": "Fort Langley AC", + "location_description": "Fort Langley Upland", + "material": "SG", + "subtype": "4a", + "area": "3.9", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Sumas Drift; Raised proglacial deltaic gravel and sand", + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 38, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:14:36Z", + "aquifer_name": null, + "location_description": "Alouette", + "material": "SG", + "subtype": "1b", + "area": "17.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments; Fort Langley Formation", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 39, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:11:15Z", + "aquifer_name": null, + "location_description": "East Pitt River", + "material": "SG", + "subtype": "1a", + "area": "84.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 40, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:11:25Z", + "aquifer_name": null, + "location_description": "Barnston Island", + "material": "SG", + "subtype": "1a", + "area": "6.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 41, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:22:45Z", + "aquifer_name": "Brookswood", + "location_description": "Langley/Surrey", + "material": "SG", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Sumas Drift & Fort Langley", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 42, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:38:56Z", + "aquifer_name": null, + "location_description": "South Fraser River Delta", + "material": "SG", + "subtype": "1a", + "area": "142.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 43, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:42:00Z", + "aquifer_name": null, + "location_description": "Annacis Island", + "material": "SG", + "subtype": "1a", + "area": "5.5", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 44, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:39:17Z", + "aquifer_name": null, + "location_description": "Lulu Island", + "material": "SG", + "subtype": "1a", + "area": "109.8", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 45, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:39:29Z", + "aquifer_name": null, + "location_description": "North Arm Delta", + "material": "SG", + "subtype": "1a", + "area": "16.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 46, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:39:39Z", + "aquifer_name": null, + "location_description": "Coquitlam River Floodplain", + "material": "SG", + "subtype": "1a", + "area": "9.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "I", + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 47, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:39:49Z", + "aquifer_name": null, + "location_description": "Boundary Avenue near Border Sand & Gravel", + "material": "SG", + "subtype": "4a", + "area": "4.8", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 48, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:39:59Z", + "aquifer_name": null, + "location_description": "Fraser River Junction", + "material": "SG", + "subtype": "1a", + "area": "9.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 49, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T15:40:09Z", + "aquifer_name": null, + "location_description": "Vancouver-Quadra Sands", + "material": "SG", + "subtype": "4b", + "area": "195.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Quadra Sands", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 50, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:23:37Z", + "aquifer_name": "South of Hopington", + "location_description": "South of Hopington", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 51, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:24:36Z", + "aquifer_name": "South of Murrayville AC", + "location_description": "South of Murrayville", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 52, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:25:32Z", + "aquifer_name": "Langley Upland", + "location_description": "Langley Upland/Inter-till", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 53, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:20:57Z", + "aquifer_name": null, + "location_description": "Hazelmere Valley", + "material": "SG", + "subtype": "4c", + "area": "18.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 54, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:21:07Z", + "aquifer_name": null, + "location_description": "Hazelmere", + "material": "SG", + "subtype": "4b", + "area": "2.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 55, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:21:25Z", + "aquifer_name": null, + "location_description": "Grandview", + "material": "SG", + "subtype": "4c", + "area": "20.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 56, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:21:34Z", + "aquifer_name": null, + "location_description": "NE of Whiterock", + "material": "SG", + "subtype": "4b", + "area": "1.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 57, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:21:43Z", + "aquifer_name": null, + "location_description": "Whiterock", + "material": "SG", + "subtype": "4b", + "area": "40.2", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 58, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-01-25T10:52:47Z", + "aquifer_name": "Nicomekl-Serpentine", + "location_description": "Nicomekl-Serpentine", + "material": "SG", + "subtype": "4c", + "area": "216.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Glaciomarine outwash (Semiahmoo/pre-Semiahmoo)", + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 59, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-07-20T12:22:22Z", + "aquifer_name": null, + "location_description": "Clayton Upland (Upper)", + "material": "SG", + "subtype": "4b", + "area": "35.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 60, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:22:12Z", + "aquifer_name": null, + "location_description": "Clayton Upland (Lower)", + "material": "SG", + "subtype": "4c", + "area": "13.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 61, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:29:21Z", + "aquifer_name": null, + "location_description": "Newton Upland", + "material": "SG", + "subtype": "4b", + "area": "137.4", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Quadra Sands", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 62, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:36:54Z", + "aquifer_name": null, + "location_description": "Tsawwassen", + "material": "SG", + "subtype": "4b", + "area": "6.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 63, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:37:02Z", + "aquifer_name": null, + "location_description": "Westham Island", + "material": "SG", + "subtype": "1a", + "area": "10.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 64, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:37:10Z", + "aquifer_name": null, + "location_description": "Mitchel Island", + "material": "SG", + "subtype": "1a", + "area": "1.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 65, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T16:37:18Z", + "aquifer_name": null, + "location_description": "Sea Island", + "material": "SG", + "subtype": "1a", + "area": "15.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 66, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:23:44Z", + "aquifer_name": null, + "location_description": "Capilano River", + "material": "SG", + "subtype": "2", + "area": "5.4", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 67, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:23:55Z", + "aquifer_name": null, + "location_description": "Seymour River/Lynn Creek", + "material": "SG", + "subtype": "2", + "area": "5.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 68, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:24:06Z", + "aquifer_name": null, + "location_description": "Belcarra", + "material": "B", + "subtype": "6b", + "area": "1.8", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Coast Plutonic diorite; Pre-Jurassic Twin Island Group", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 69, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:24:28Z", + "aquifer_name": null, + "location_description": "Port Moody", + "material": "SG", + "subtype": "1a", + "area": "2.8", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 70, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:24:40Z", + "aquifer_name": null, + "location_description": "Coquitlam River", + "material": "SG", + "subtype": "1b", + "area": "25.1", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments; Capilano Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 71, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:24:53Z", + "aquifer_name": null, + "location_description": "West Pitt River", + "material": "SG", + "subtype": "1a", + "area": "14.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 72, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:25:03Z", + "aquifer_name": null, + "location_description": "McMillan Island", + "material": "SG", + "subtype": "1a", + "area": "2.5", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 73, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T09:25:22Z", + "aquifer_name": null, + "location_description": "Matsqui Island", + "material": "SG", + "subtype": "1a", + "area": "3.7", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Fraser River Sediments", + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 74, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:21:41Z", + "aquifer_name": "Upper Merritt", + "location_description": "Merritt", + "material": "SG", + "subtype": "1c", + "area": "7.0", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 75, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:21:32Z", + "aquifer_name": "Joeyaska Deep", + "location_description": "Joeyaska", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 76, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:26:35Z", + "aquifer_name": "Stumbles Creek", + "location_description": "Stumbles Creek", + "material": "SG", + "subtype": "3", + "area": "12.9", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 77, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:26:14Z", + "aquifer_name": "Lower Nicola", + "location_description": "Lower Nicola", + "material": "SG", + "subtype": "4b", + "area": "5.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 78, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:28:34Z", + "aquifer_name": null, + "location_description": "West End of Nicola Lake", + "material": "SG", + "subtype": "3", + "area": "1.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1993, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 79, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:27:44Z", + "aquifer_name": "Unicola", + "location_description": "Lower Clapperton Creek", + "material": "SG", + "subtype": "3", + "area": "8.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 80, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:28:54Z", + "aquifer_name": "Conicola", + "location_description": "Nicola", + "material": "SG", + "subtype": "4b", + "area": "6.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 81, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:29:02Z", + "aquifer_name": null, + "location_description": "14 kilometres northeast of Prince George", + "material": "B", + "subtype": "5a", + "area": "6.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 82, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:29:11Z", + "aquifer_name": null, + "location_description": "12 kilometres northeast of Prince George", + "material": "SG", + "subtype": "4b", + "area": "2.0", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 83, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-19T09:35:17Z", + "aquifer_name": null, + "location_description": "10 kilometres northeast of Prince Georg", + "material": "SG", + "subtype": "4b", + "area": "3.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 84, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:29:28Z", + "aquifer_name": null, + "location_description": "North and west of Tabor Lake", + "material": "B", + "subtype": "5a", + "area": "4.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 85, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-19T10:05:11Z", + "aquifer_name": null, + "location_description": "West of south end of Tabor Lake", + "material": "SG", + "subtype": "4b", + "area": "5.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 86, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:29:47Z", + "aquifer_name": "Pineview", + "location_description": "Pineview to Buckhorn", + "material": "SG", + "subtype": "4b", + "area": "142.8", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Tertiary channel sand and gravel deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 87, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:30:06Z", + "aquifer_name": null, + "location_description": "Miller to Tabor", + "material": "SG", + "subtype": "4b", + "area": "12.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 88, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T10:17:52Z", + "aquifer_name": null, + "location_description": "College Heights, South of Prince George", + "material": "B", + "subtype": "6b", + "area": "7.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily volcanic rk; Witch Lake Formation; Mesozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 89, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:30:25Z", + "aquifer_name": null, + "location_description": "Vanway South", + "material": "B", + "subtype": "6b", + "area": "7.5", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 90, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T10:30:38Z", + "aquifer_name": null, + "location_description": "Beaverley", + "material": "SG", + "subtype": "4b", + "area": "46.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 91, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:31:46Z", + "aquifer_name": null, + "location_description": "Northwest of Beaverley", + "material": "B", + "subtype": "6b", + "area": "4.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 92, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-19T10:24:22Z", + "aquifer_name": "Lower Nechako River", + "location_description": "Lower Nechako River Valley", + "material": "SG", + "subtype": "1b", + "area": "51.7", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Present day alluvial sands and gravels", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 93, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-19T10:45:15Z", + "aquifer_name": null, + "location_description": "Cranbrook Hill", + "material": "B", + "subtype": "6b", + "area": "9.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 94, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-19T10:56:07Z", + "aquifer_name": null, + "location_description": "Hart Highlands", + "material": "SG", + "subtype": "4a", + "area": "11.0", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 95, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T10:25:34Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 94", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 96, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:32:38Z", + "aquifer_name": null, + "location_description": "Spa Creek", + "material": "B", + "subtype": "4a", + "area": "1.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 97, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-28T12:19:01Z", + "aquifer_name": "Salmon River - Upper Aquifer", + "location_description": "Salmon River from Falkland to Salmon arm", + "material": "SG", + "subtype": "1a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 98, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-28T12:19:13Z", + "aquifer_name": "Salmon River - Lower Aquifer", + "location_description": "Salmon River - Westwold to Salmon Arm", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 99, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:33:07Z", + "aquifer_name": null, + "location_description": "Switsemalph", + "material": "B", + "subtype": "6b", + "area": "2.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 100, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:48:37Z", + "aquifer_name": "Gleneden", + "location_description": "Gleneden", + "material": "G", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 101, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T16:02:47Z", + "aquifer_name": null, + "location_description": "Mount Tappen", + "material": "B", + "subtype": "6b", + "area": "0.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 102, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-10-13T11:47:30Z", + "aquifer_name": "Hullcar Confined Aquifer", + "location_description": "Hullcar", + "material": "S", + "subtype": "4b", + "area": "15.1", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 103, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-10-13T11:47:38Z", + "aquifer_name": "Hullcar Unconfined Aquifer", + "location_description": "Parkinson Lake", + "material": "S", + "subtype": "4a", + "area": "21.7", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 104, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:59:07Z", + "aquifer_name": null, + "location_description": "1 kilometre northwest of Hullcar", + "material": "B", + "subtype": "6b", + "area": "1.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 105, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:59:23Z", + "aquifer_name": null, + "location_description": "Hillcrest", + "material": "B", + "subtype": "5a", + "area": "1.7", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 106, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:59:33Z", + "aquifer_name": null, + "location_description": "Southwest of Leduc Creek", + "material": "B", + "subtype": "6b", + "area": "16.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 107, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T15:59:44Z", + "aquifer_name": null, + "location_description": "Gardom Lake to Enderby", + "material": "B", + "subtype": "6b", + "area": "21.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 108, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:38:59Z", + "aquifer_name": "Tuhok Unconfined Aquifer", + "location_description": "4 kilometres southeast of Salmon Arm", + "material": "SG", + "subtype": "4a", + "area": "25.4", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 109, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:39:08Z", + "aquifer_name": "Tuhok Confined Aquifer", + "location_description": "Highway 97B", + "material": "G", + "subtype": "4b", + "area": "27.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 110, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T16:03:56Z", + "aquifer_name": null, + "location_description": "Grandview Bench", + "material": "B", + "subtype": "6b", + "area": "13.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 111, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:39:18Z", + "aquifer_name": "Spallumcheen Unconfined Aquifer", + "location_description": "Lower Shuswap River Valley", + "material": "SG", + "subtype": "4a", + "area": "101.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 112, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-12T16:04:13Z", + "aquifer_name": null, + "location_description": "2 kilometres northeast of Enderby", + "material": "B", + "subtype": "5a", + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 113, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:39:27Z", + "aquifer_name": "Ashton Creek Confined", + "location_description": "Ashton Creek", + "material": "SG", + "subtype": "4b", + "area": "13.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 114, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:39:36Z", + "aquifer_name": "Mara Aquifer", + "location_description": "South of Mara Lake", + "material": "SG", + "subtype": "3", + "area": "3.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 115, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-27T15:02:34Z", + "aquifer_name": null, + "location_description": "Northeast of Quesnel", + "material": "SG", + "subtype": "4b", + "area": "188.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Modern alluvium", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 116, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T10:49:03Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 115", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 117, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-27T14:56:30Z", + "aquifer_name": null, + "location_description": "Red Bluff south of Quesnel", + "material": "S", + "subtype": "4a", + "area": "6.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 118, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T10:52:14Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 115", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 119, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T10:53:06Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 115", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 120, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:04:07Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 115", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 121, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:34:01Z", + "aquifer_name": null, + "location_description": "Kersley", + "material": "SG", + "subtype": "4a", + "area": "1.4", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 122, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:34:11Z", + "aquifer_name": null, + "location_description": "Sardine Flats", + "material": "SG", + "subtype": "4b", + "area": "10.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 123, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:05:18Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 115", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 124, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:34:31Z", + "aquifer_name": "Fraser Plateau Lava", + "location_description": "70 Mile House to 108 Mile Lake", + "material": "B", + "subtype": "6a", + "area": "6545.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Cenozoic, Tertiary, Miocene and/or Pliocene Epochs", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 125, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:41:22Z", + "aquifer_name": null, + "location_description": "Pressy Lake", + "material": "SG", + "subtype": "4a", + "area": "5.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 126, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:41:35Z", + "aquifer_name": "108 Mile Limestone", + "location_description": "Simon Lake", + "material": "B", + "subtype": "6b", + "area": "250.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Mesozoic, Late Triassic, Karnian & Norian Epochs, Nicola Group", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 127, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:51:53Z", + "aquifer_name": null, + "location_description": "Buffalo Creek", + "material": "B", + "subtype": "6a", + "area": "17.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Cenozoic, Tertiary, Eocene and ? Oligocene Epochs, Kamloops Group, Skull Hill", + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 128, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:23:38Z", + "aquifer_name": null, + "location_description": "West end of Horse Lake", + "material": "SG", + "subtype": "4b", + "area": "5.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 129, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:24:19Z", + "aquifer_name": null, + "location_description": "South central shore of Horse Lake", + "material": "SG", + "subtype": "4b", + "area": "1.2", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 130, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T09:35:00Z", + "aquifer_name": null, + "location_description": "East end of Horse Lake", + "material": "SG", + "subtype": "4b", + "area": "9.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 131, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:24:38Z", + "aquifer_name": null, + "location_description": "105 Mile Lake", + "material": "SG", + "subtype": "4b", + "area": "10.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 132, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:24:48Z", + "aquifer_name": null, + "location_description": "Buffalo Creek", + "material": "SG", + "subtype": "4b", + "area": "22.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 133, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:01:26Z", + "aquifer_name": null, + "location_description": "Cache Creek to Scottie Creek", + "material": "SG", + "subtype": "4b", + "area": "16.5", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 134, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:00:49Z", + "aquifer_name": null, + "location_description": "Cache Creek to north of Maiden Creek", + "material": "SG", + "subtype": "1c", + "area": "15.2", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 135, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:25:19Z", + "aquifer_name": null, + "location_description": "Semlin Valley", + "material": "SG", + "subtype": "4b", + "area": "10.0", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 136, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:25:39Z", + "aquifer_name": null, + "location_description": "Mauvais Rocher IR#5", + "material": "SG", + "subtype": "3", + "area": "3.6", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 137, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:25:50Z", + "aquifer_name": null, + "location_description": "Minton Creek", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 138, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:26:00Z", + "aquifer_name": null, + "location_description": "Upper Missioner/Minton Creek Valleys", + "material": "B", + "subtype": "6b", + "area": "0.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 139, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:26:13Z", + "aquifer_name": null, + "location_description": "Missioner Creek Valley", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 140, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:26:23Z", + "aquifer_name": null, + "location_description": "North side of lower Missioner Creek Valley", + "material": "B", + "subtype": "6b", + "area": "2.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 141, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-13T14:26:32Z", + "aquifer_name": null, + "location_description": "Between Williams Lake and Missioner Creek", + "material": "B", + "subtype": "6a", + "area": "18.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 142, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T15:05:03Z", + "aquifer_name": null, + "location_description": "Southwest side of Williams Lake", + "material": "B", + "subtype": "6b", + "area": "1.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 143, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T15:50:36Z", + "aquifer_name": null, + "location_description": "Southwest side of Williams Lake", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 144, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T15:50:46Z", + "aquifer_name": null, + "location_description": "Southeast side of Williams Lake", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 145, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:00:01Z", + "aquifer_name": null, + "location_description": "Northeast side of Williams Lake", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 146, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:00:12Z", + "aquifer_name": null, + "location_description": "West and northwest side of Williams Lake", + "material": "SG", + "subtype": "4b", + "area": "3.0", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 147, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Hill southwest of Williams Lake townsite", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 148, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Between Chimney Creek and Williams Lake", + "material": "B", + "subtype": "6a", + "area": "30.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 149, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Chimney Creek Valley", + "material": "SG", + "subtype": "4b", + "area": "6.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 150, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "South of Williams Lake on Dog Creek Road", + "material": "SG", + "subtype": "4b", + "area": "1.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 151, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Frost Creek", + "material": "SG", + "subtype": "4b", + "area": "1.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 152, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T12:51:24Z", + "aquifer_name": null, + "location_description": "South of Williams Lake on Dog Creek Road", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 153, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Lower Pablo Creek", + "material": "B", + "subtype": "6b", + "area": "3.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1994, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 154, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-29T15:17:33Z", + "aquifer_name": null, + "location_description": "NW of Whonnock Lake", + "material": "B", + "subtype": "6b", + "area": "36.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 155, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:15:58Z", + "aquifer_name": null, + "location_description": "Walker Hook, Saltspring Island", + "material": "SG", + "subtype": "4b", + "area": "1.2", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 156, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:16:08Z", + "aquifer_name": null, + "location_description": "Ganges Harbour, Saltspring Island", + "material": "SG", + "subtype": "4b", + "area": "3.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 157, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:16:19Z", + "aquifer_name": null, + "location_description": "Fulford Harbour, Saltspring Island", + "material": "SG", + "subtype": "4b", + "area": "3.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 158, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:16:28Z", + "aquifer_name": "Grand Forks", + "location_description": "Grand Forks", + "material": "SG", + "subtype": "1b", + "area": "38.8", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 159, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:16:38Z", + "aquifer_name": "Lost Shoe Creek", + "location_description": "Ucluelet", + "material": "SG", + "subtype": "2", + "area": "12.4", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 160, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:16:51Z", + "aquifer_name": "Lower Cassidy", + "location_description": "Cassidy", + "material": "SG", + "subtype": "4b", + "area": "8.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-Fluvial (Vashon)", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 161, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:16:59Z", + "aquifer_name": "Cassidy", + "location_description": "Cassidy", + "material": "SG", + "subtype": "1b", + "area": "31.2", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Capilano Sediments and Salish Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 162, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-18T16:17:08Z", + "aquifer_name": "162", + "location_description": "Cedar, Yellow Point, N. Oyster (Ladysmith)", + "material": "B", + "subtype": "5a", + "area": "84.2", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Cedar & DeCourcey Formation (Nanaimo Series)", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 163, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:19:47Z", + "aquifer_name": null, + "location_description": "Cedar, North Holden Lake", + "material": "SG", + "subtype": "4b", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Quadra Sands", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 164, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:19:56Z", + "aquifer_name": "164", + "location_description": "Harewood Lake", + "material": "B", + "subtype": "5a", + "area": "6.3", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Extension Formation (Nanaimo Series)", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 165, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:20:06Z", + "aquifer_name": "165", + "location_description": "South Wellington", + "material": "B", + "subtype": "5a", + "area": "17.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Nanaimo Series, Upper Cretaceous", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 166, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:20:17Z", + "aquifer_name": null, + "location_description": "Stevenson Point, Nanaimo", + "material": "B", + "subtype": "6b", + "area": "12.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Vancouver Volcanics", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 167, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:20:25Z", + "aquifer_name": "167", + "location_description": "Westwood Lake, Nanaimo", + "material": "SG", + "subtype": "4b", + "area": "14.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Either glacio-fluvial Vashon Drift or Quadra Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 168, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:20:34Z", + "aquifer_name": "168", + "location_description": "Ladysmith", + "material": "B", + "subtype": "5a", + "area": "6.7", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Nanaimo Series, Cretaceous Era", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 169, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:20:43Z", + "aquifer_name": null, + "location_description": "Saltair, South Ladysmith", + "material": "S", + "subtype": "4b", + "area": "9.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 170, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:20:53Z", + "aquifer_name": null, + "location_description": "Panorama Ridge, Chemainus", + "material": "B", + "subtype": "6b", + "area": "1.9", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sicker Volcanics", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 171, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:21:04Z", + "aquifer_name": null, + "location_description": "Mount Sicker, Crofton - Chemainus", + "material": "B", + "subtype": "5a", + "area": "14.5", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Haslam Formation", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 172, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T09:21:13Z", + "aquifer_name": null, + "location_description": "Chemainus and Crofton", + "material": "SG", + "subtype": "1b", + "area": "7.5", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 173, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:08:57Z", + "aquifer_name": null, + "location_description": "Maple Mountain, Crofton - Maple Bay", + "material": "B", + "subtype": "6b", + "area": "34.1", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sicker Volcanics", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 174, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:09:09Z", + "aquifer_name": null, + "location_description": "North Duncan", + "material": "S", + "subtype": "4b", + "area": "1.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 175, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:09:20Z", + "aquifer_name": null, + "location_description": "North Duncan", + "material": "B", + "subtype": "5a", + "area": "42.9", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Haslam Formation", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 176, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:09:30Z", + "aquifer_name": null, + "location_description": "East Duncan - Maple Bay", + "material": "B", + "subtype": "5a", + "area": "15.5", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sicker Volcanics & Haslam Formation", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 177, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:09:40Z", + "aquifer_name": null, + "location_description": "East Duncan - Maple Bay", + "material": "B", + "subtype": "5a", + "area": "7.7", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sicker Volcanics & Haslam Formation", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 178, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:09:48Z", + "aquifer_name": null, + "location_description": "Skutz Falls, Lake Cowichan, Paldi", + "material": "SG", + "subtype": "4b", + "area": "17.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Vashon Drift; Likely advance glacial outwash", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 179, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:09:58Z", + "aquifer_name": null, + "location_description": "Sahtlam", + "material": "SG", + "subtype": "1b", + "area": "7.6", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 180, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:10:08Z", + "aquifer_name": null, + "location_description": "Sahtlam", + "material": "SG", + "subtype": "4b", + "area": "8.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 181, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:10:16Z", + "aquifer_name": null, + "location_description": "West Duncan", + "material": "B", + "subtype": "5a", + "area": "1.3", + "vulnerability": "L", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Duncan Formation", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 182, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:10:24Z", + "aquifer_name": null, + "location_description": "Paldi - Sahtlam", + "material": "B", + "subtype": "5a", + "area": "31.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Duncan Formation", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 183, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:17:12Z", + "aquifer_name": null, + "location_description": "West Duncan", + "material": "SG", + "subtype": "4b", + "area": "6.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 184, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:41:54Z", + "aquifer_name": null, + "location_description": "West Duncan", + "material": "G", + "subtype": "4a", + "area": "2.6", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 185, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:42:03Z", + "aquifer_name": null, + "location_description": "Deerholm, South Duncan", + "material": "SG", + "subtype": "4b", + "area": "14.9", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 186, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:42:13Z", + "aquifer_name": "Lower Cowichan River A", + "location_description": "Duncan", + "material": "SG", + "subtype": "1b", + "area": "17.0", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 187, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:42:23Z", + "aquifer_name": "Lower Cowichan River B", + "location_description": "Duncan", + "material": "SG", + "subtype": "1b", + "area": "11.4", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Capilano Sediments", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 188, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:42:31Z", + "aquifer_name": "Lower Cowichan River C", + "location_description": "Duncan", + "material": "SG", + "subtype": "4b", + "area": "8.7", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift?", + "mapping_year": 1995, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 189, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:42:49Z", + "aquifer_name": null, + "location_description": "Honeymoon Bay & Mesachie Lake", + "material": "S", + "subtype": "2", + "area": "10.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments; fluvial, alluvial & glacio-fluvial sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 190, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:43:04Z", + "aquifer_name": null, + "location_description": "Youbou", + "material": "SG", + "subtype": "2", + "area": "2.8", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely ice contact deltas of Vashon Drift", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 191, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:43:15Z", + "aquifer_name": null, + "location_description": "North Lake Cowichan", + "material": "SG", + "subtype": "2", + "area": "3.4", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments; Fluvial and Glaciofluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 192, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:43:24Z", + "aquifer_name": null, + "location_description": "North Lake Cowichan", + "material": "SG", + "subtype": "4b", + "area": "8.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Galcial outwash sand & gravel; Vashon Drift", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 193, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:43:32Z", + "aquifer_name": "Osoyoos West", + "location_description": "West Osoyoos", + "material": "SG", + "subtype": "4a", + "area": "14.0", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Glacial deposits, Kettle outwash", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 194, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:43:43Z", + "aquifer_name": null, + "location_description": "Osoyoos East", + "material": "SG", + "subtype": "4a", + "area": "5.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 195, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:43:54Z", + "aquifer_name": null, + "location_description": "Osoyoos East", + "material": "SG", + "subtype": "4b", + "area": "0.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 196, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:44:03Z", + "aquifer_name": null, + "location_description": "Deerholm / Duncan", + "material": "B", + "subtype": "5a", + "area": "46.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Nanaimo Series", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 197, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-04-06T15:56:59Z", + "aquifer_name": null, + "location_description": "Cowichan Bay / Cobble Hill", + "material": "SG", + "subtype": "4b", + "area": "39.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 198, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:44:21Z", + "aquifer_name": null, + "location_description": "Cowichan Station / Duncan", + "material": "B", + "subtype": "5a", + "area": "6.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Nanaimo Series", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 199, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:44:40Z", + "aquifer_name": null, + "location_description": "Cowichan Station", + "material": "SG", + "subtype": "4b", + "area": "3.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 200, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:51:33Z", + "aquifer_name": null, + "location_description": "Cobble Hill / Duncan", + "material": "B", + "subtype": "6b", + "area": "26.9", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sicker Volcanics", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 201, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:51:40Z", + "aquifer_name": null, + "location_description": "Cobble Hill", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 202, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:51:49Z", + "aquifer_name": null, + "location_description": "Shawnigan Lake / Cobble Hill", + "material": "B", + "subtype": "6b", + "area": "21.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Bonanza Group and Sicker Volcanics", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 203, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:51:55Z", + "aquifer_name": null, + "location_description": "Shawnigan Lake / Cobble Hill", + "material": "B", + "subtype": "6b", + "area": "31.0", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Wark and Colquitz Gneiss and Bonanza Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 204, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:52:04Z", + "aquifer_name": null, + "location_description": "Cobble Hill / Mill Bay", + "material": "B", + "subtype": "6b", + "area": "16.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Lower to Middle Jurassic Island Intrusions", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 205, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:58:23Z", + "aquifer_name": null, + "location_description": "Cobble Hill / Shawnigan Lake", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 206, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:58:34Z", + "aquifer_name": null, + "location_description": "Mill Bay", + "material": "SG", + "subtype": "4a", + "area": "2.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 207, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:58:43Z", + "aquifer_name": null, + "location_description": "Mill Bay / Shawnigan Lake", + "material": "B", + "subtype": "6b", + "area": "25.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Bonanza Group and Lower to Middle Island Intrusions", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 208, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:58:51Z", + "aquifer_name": null, + "location_description": "Spectacle Lake / Malahat", + "material": "B", + "subtype": "6b", + "area": "31.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Wark Gneiss & Leech River Formations", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 209, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:58:59Z", + "aquifer_name": "209", + "location_description": "Errington; Morison Creek area", + "material": "SG", + "subtype": "4b", + "area": "10.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Confined glaciofluvial sand and gravel - likely Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 210, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:09Z", + "aquifer_name": "210", + "location_description": "Nanoose Bay", + "material": "B", + "subtype": "5a", + "area": "5.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary Rks, Fourth Lk. Form.; Intrusive Rk., Mount Hall Gabbro", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 211, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:16Z", + "aquifer_name": "211", + "location_description": "Nanaimo", + "material": "B", + "subtype": "6b", + "area": "29.6", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Triassic basalts, Karmutsen Form; Sedimentary Rks, Nanaimo Grp.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 212, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:25Z", + "aquifer_name": null, + "location_description": "Parksville", + "material": "B", + "subtype": "5a", + "area": "5.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Nanaimo Group", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 213, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:33Z", + "aquifer_name": null, + "location_description": "Lantzville", + "material": "B", + "subtype": "6b", + "area": "42.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Vancouver Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 214, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:41Z", + "aquifer_name": "214", + "location_description": "Madrona Point / Parksville", + "material": "B", + "subtype": "5a", + "area": "30.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Nanaimo Group: Extension Form. & Comox Form.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 215, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:49Z", + "aquifer_name": null, + "location_description": "Lantzville", + "material": "SG", + "subtype": "4b", + "area": "14.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Quadra Sand", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 216, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T10:59:57Z", + "aquifer_name": null, + "location_description": "Parksville", + "material": "SG", + "subtype": "4b", + "area": "25.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 217, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:00:05Z", + "aquifer_name": null, + "location_description": "Qualicum", + "material": "SG", + "subtype": "4b", + "area": "42.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 218, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:00:12Z", + "aquifer_name": null, + "location_description": "Nanoose Hill", + "material": "B", + "subtype": "5a", + "area": "15.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Benson Formation", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 219, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:00:19Z", + "aquifer_name": null, + "location_description": "Nanoose Creek", + "material": "SG", + "subtype": "4b", + "area": "27.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 220, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:00:27Z", + "aquifer_name": "220", + "location_description": "Errington", + "material": "B", + "subtype": "5a", + "area": "59.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Haslam Formation of the Nanaimo Group", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 221, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:00:35Z", + "aquifer_name": null, + "location_description": "Parksville", + "material": "SG", + "subtype": "2", + "area": "4.0", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 222, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:00:42Z", + "aquifer_name": null, + "location_description": "Sorrento / Notch Hill", + "material": "SG", + "subtype": "4b", + "area": "14.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Lacustrine and Fluvial Deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 223, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:01:07Z", + "aquifer_name": null, + "location_description": "Celista", + "material": "SG", + "subtype": "4b", + "area": "13.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Lacustrine Deposit", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 224, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:01:15Z", + "aquifer_name": null, + "location_description": "Eagle Bay", + "material": "B", + "subtype": "6b", + "area": "21.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Eagle Bay Assemblage", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 225, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:01:23Z", + "aquifer_name": null, + "location_description": "Sicamous (Mara Lake)", + "material": "SG", + "subtype": "2", + "area": "1.0", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Lacustrine and Modern Fan Deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 226, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:01:30Z", + "aquifer_name": null, + "location_description": "Scotch Creek to Anglemont", + "material": "B", + "subtype": "6b", + "area": "75.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Johnson Lake Unit", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 227, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:01:39Z", + "aquifer_name": null, + "location_description": "Sorrento / Notch Hill", + "material": "B", + "subtype": "5b", + "area": "18.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Sicamous Formation", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 228, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:01:47Z", + "aquifer_name": null, + "location_description": "Celista", + "material": "SG", + "subtype": "2", + "area": "2.9", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Modern Alluvium Fan and Fraser Glaciation Terraced Delta", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 229, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T12:57:10Z", + "aquifer_name": null, + "location_description": "Scotch Creek", + "material": "SG", + "subtype": "2", + "area": "11.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Modern Alluvium Fan and Fraser Glaciation Terraced Delta", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 230, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:02:02Z", + "aquifer_name": null, + "location_description": "Squilax / Tappen", + "material": "SG", + "subtype": "3", + "area": "17.5", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 231, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:48:50Z", + "aquifer_name": "Sunnybrae", + "location_description": "Sunnybrae", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "Pre-Glacial Fan", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 232, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:49:01Z", + "aquifer_name": "Tappen", + "location_description": "Tappen", + "material": "G", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "preglacial fan, Bessette alluvium and possibly basal aquifer", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 233, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:02:26Z", + "aquifer_name": null, + "location_description": "Blind Bay / White Lake", + "material": "B", + "subtype": "6b", + "area": "52.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Sicamous Formation, Skwaam Bay and Woolford Creek Units", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 234, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:02:33Z", + "aquifer_name": null, + "location_description": "Squilax", + "material": "SG", + "subtype": "2", + "area": "19.1", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments and Modern Alluvium", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 235, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:02:41Z", + "aquifer_name": null, + "location_description": "Whitecroft", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 236, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:02:48Z", + "aquifer_name": null, + "location_description": "Chase", + "material": "SG", + "subtype": "1b", + "area": "11.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Sediments", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 237, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:02:57Z", + "aquifer_name": null, + "location_description": "Chase", + "material": "SG", + "subtype": "1b", + "area": "7.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Lacustrine Deposit", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 238, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:03:05Z", + "aquifer_name": null, + "location_description": "Spotted Lake, Osoyoos", + "material": "B", + "subtype": "6b", + "area": "7.0", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Kobau Group", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 239, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Fraser Lake", + "material": "B", + "subtype": "6a", + "area": "48.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Cache Creek and Endako Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 240, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "SG", + "subtype": "4a", + "area": "28.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation Glacio-Fluvial Deposit", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 241, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "B", + "subtype": "5a", + "area": "15.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Cache Creek Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 242, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "SG", + "subtype": "4b", + "area": "332.1", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Pre-Fraser Glaciation Deposit", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 243, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:07:53Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "B", + "subtype": "6b", + "area": "375.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Miocene and Pliocene Basalts", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 244, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "SG", + "subtype": "1b", + "area": "40.2", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Post galcial alluvial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 245, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "SG", + "subtype": "4b", + "area": "18.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Pre-Fraser Glaciation deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 246, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "SG", + "subtype": "4b", + "area": "184.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Pre-Fraser Glaciation", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 247, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Vanderhoof", + "material": "SG", + "subtype": "4b", + "area": "7.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Pre-Fraser Glaciation", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 248, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:04:06Z", + "aquifer_name": null, + "location_description": "Spotted Lake, Osoyoos", + "material": "B", + "subtype": "6b", + "area": "4.4", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kobau Group", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 249, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:08:23Z", + "aquifer_name": null, + "location_description": "Duck Range / Pritchard / Monte Lake", + "material": "B", + "subtype": "6b", + "area": "197.3", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 250, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:04:27Z", + "aquifer_name": null, + "location_description": "Pinantan Lake / Pritchard", + "material": "B", + "subtype": "6b", + "area": "132.9", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops and Nicola Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 251, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:20:26Z", + "aquifer_name": null, + "location_description": "Pritchard", + "material": "SG", + "subtype": "4b", + "area": "12.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 252, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:20:34Z", + "aquifer_name": null, + "location_description": "Monte Creek", + "material": "SG", + "subtype": "4b", + "area": "4.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 253, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:20:49Z", + "aquifer_name": null, + "location_description": "Monte Lake", + "material": "SG", + "subtype": "4b", + "area": "3.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 254, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T11:01:08Z", + "aquifer_name": null, + "location_description": "Osoyoos Lake to southwest of Tug Lake", + "material": "SG", + "subtype": "1a", + "area": "29.0", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Recent and Fraser Glaciation fluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 255, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:08:46Z", + "aquifer_name": null, + "location_description": "North of Tug Lake to Vaseux Lake", + "material": "SG", + "subtype": "1a", + "area": "14.0", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Recent and Fraser Glaciation fluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 256, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:09:04Z", + "aquifer_name": null, + "location_description": "Testalinden Creek to Reed Creek", + "material": "SG", + "subtype": "3", + "area": "16.0", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Recent and Fraser Glaciation fluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 257, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:09:16Z", + "aquifer_name": null, + "location_description": "Meyers Flat", + "material": "SG", + "subtype": "4b", + "area": "8.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Fraser Glaciation fluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 258, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:21:33Z", + "aquifer_name": null, + "location_description": "Richter Pass", + "material": "SG", + "subtype": "3", + "area": "7.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Recent Fraser Glaciation - Alluvial Fan deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 259, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-11T16:00:23Z", + "aquifer_name": "Similkameen River Aquifer", + "location_description": "US Border to Princeton", + "material": "SG", + "subtype": "1a", + "area": "120.0", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Unconfined alluvium; Fraser Glaciation", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 260, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:09:55Z", + "aquifer_name": null, + "location_description": "Marron Valley northwest of Okanagan Falls", + "material": "B", + "subtype": "6b", + "area": "62.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Basal Volcanics (Marron Formation)", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 261, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:21:59Z", + "aquifer_name": null, + "location_description": "Marron Valley northwest of Okanagan Falls", + "material": "SG", + "subtype": "4a", + "area": "3.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Recent Fraser Glaciation", + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 262, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:22:12Z", + "aquifer_name": null, + "location_description": "White Lake Basin 35 km south of Penticton", + "material": "SG", + "subtype": "4a", + "area": "1.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": null, + "litho_stratographic_unit": "Recent Fraser Glaciation", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 263, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:22:21Z", + "aquifer_name": null, + "location_description": "North of Okanagan Falls/ shore of Skaha Lk", + "material": "B", + "subtype": null, + "area": "8.4", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Nelson Plutonic", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 264, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:22:30Z", + "aquifer_name": null, + "location_description": "Okanagan Falls and east of Okanagan Falls", + "material": "SG", + "subtype": "4a", + "area": "9.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Glaciofluvial Deposits", + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 265, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:10:04Z", + "aquifer_name": null, + "location_description": "Between OK Falls and Vaseux Lk", + "material": "SG", + "subtype": "1a", + "area": "5.5", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Glaciofluvial Deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 266, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:22:45Z", + "aquifer_name": null, + "location_description": "Stafford Creek southwest of Penticton", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Glaciofluvial Deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 267, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:22:53Z", + "aquifer_name": null, + "location_description": "Shingle Creek", + "material": "SG", + "subtype": "3", + "area": "6.8", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Alluvial and Glaciofluvial Deposits", + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 268, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:23:03Z", + "aquifer_name": null, + "location_description": "Penticton East and east shore of Skaha Lk.", + "material": "B", + "subtype": "6b", + "area": "26.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Nelson Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 269, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:23:10Z", + "aquifer_name": null, + "location_description": "Ellis Creek", + "material": "B", + "subtype": "6b", + "area": "10.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Monashee Group", + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 270, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:23:18Z", + "aquifer_name": null, + "location_description": "Ellis Creek", + "material": "SG", + "subtype": "3", + "area": "4.7", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Alluvium (Floodplain Deposits)", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 271, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:23:40Z", + "aquifer_name": null, + "location_description": "North Thompson River floodplain", + "material": "SG", + "subtype": "1b", + "area": "7.5", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Alluvium (floodplain) and Fan Deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 272, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:09:28Z", + "aquifer_name": null, + "location_description": "North-east of Kamloops", + "material": "B", + "subtype": "5a", + "area": "672.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Cache Creek Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 273, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:10:12Z", + "aquifer_name": null, + "location_description": "Rose Hill / Barnhartvale / Shumway Lake", + "material": "B", + "subtype": "5a", + "area": "172.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Cache Creek and Nicola Groups", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 274, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Brigade Lake", + "material": "B", + "subtype": "6b", + "area": "76.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 275, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Knutsford", + "material": "B", + "subtype": "6b", + "area": "1.0", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops Group", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 276, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:00:16Z", + "aquifer_name": null, + "location_description": "Sugarloaf Hill southwest of Kamloops", + "material": "B", + "subtype": "6b", + "area": "64.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Coast Intrusions: Iron Mask Batholith", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 277, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Davidson Creek", + "material": "SG", + "subtype": "4a", + "area": "1.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 278, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Peterson Creek", + "material": "SG", + "subtype": "4a", + "area": "2.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 279, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Buse Lake", + "material": "SG", + "subtype": "4b", + "area": "5.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops Drift; Pre- and Post-Fraser glacial and non-glacial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 280, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "2 km west of Barnhartvale", + "material": "SG", + "subtype": "4b", + "area": "1.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops Drift; Pre-Fraser glacial and non-glacial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 281, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Paul Lake", + "material": "SG", + "subtype": "4b", + "area": "1.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Kamloops drift; Pre-Fraser glacial and non-glacial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 282, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Kamloops Airport", + "material": "SG", + "subtype": "1b", + "area": "23.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Recent alluvial", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 283, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "North Thompson River north of Kamloops", + "material": "SG", + "subtype": "1b", + "area": "79.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Modern alluvium and Fan deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 284, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Pulmill southwest of Kamloops", + "material": "SG", + "subtype": "1b", + "area": "2.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Recent alluvial deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 285, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Campbell Creek", + "material": "SG", + "subtype": "4b", + "area": "3.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Recent alluvial and older Kamloops Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 286, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Lower South Thompson River", + "material": "SG", + "subtype": "1b", + "area": "33.2", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Recent alluvial and older Kamloops Drift", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 287, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Heffley and Edward Creek confluence", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Lacustrine complex", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 288, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Louis and Fraser Creek Valleys", + "material": "SG", + "subtype": "3", + "area": "26.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Alluvium-Fan complex", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 289, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:49:12Z", + "aquifer_name": "Westwold", + "location_description": "Westwold Valley", + "material": "SG", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "glacial outwash and post-Fraser alluvium", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 290, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Dixon and Sargent Creek Valleys", + "material": "SG", + "subtype": "3", + "area": "5.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Alluvium-Fan complex", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 291, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:16:45Z", + "aquifer_name": null, + "location_description": "Dixon, Sargent and Jet Creek Valleys", + "material": "B", + "subtype": "6b", + "area": "50.3", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": "Upper Triassic or earlier", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 292, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Louis Creek and North Thompson confluence", + "material": "SG", + "subtype": "1b", + "area": "2.3", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Modern alluvium and fan deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 293, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "North Thompson River; north of Barriere", + "material": "SG", + "subtype": "1b", + "area": "51.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Modern alluvium and fan deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 294, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Lower Barriere River Valley", + "material": "SG", + "subtype": "1c", + "area": "11.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 295, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Christian Creek Valley", + "material": "SG", + "subtype": "4b", + "area": "5.2", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Lacustrine complex and hummocky gravels", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 296, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Little Fort", + "material": "SG", + "subtype": "1c", + "area": "5.4", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Modern alluvium and fan deposits", + "mapping_year": 1996, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 297, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:41:23Z", + "aquifer_name": null, + "location_description": "Summerland, Trout Creek", + "material": "SG", + "subtype": "2", + "area": "2.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 298, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:41:34Z", + "aquifer_name": null, + "location_description": "Naramata", + "material": "B", + "subtype": "6b", + "area": "202.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 299, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:41:41Z", + "aquifer_name": null, + "location_description": "Fauder (Meadow Valley)", + "material": "SG", + "subtype": "4b", + "area": "7.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 300, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:41:52Z", + "aquifer_name": null, + "location_description": "Faulder (Enesas Creek)", + "material": "B", + "subtype": "6b", + "area": "55.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 301, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:01Z", + "aquifer_name": "Shannon Lake", + "location_description": "Shannon Lake", + "material": "SG", + "subtype": "4a", + "area": "1.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 302, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:13Z", + "aquifer_name": "Powers Ck Deltaic", + "location_description": "South of Westbank adjacent to Okanagan Lk.", + "material": "SG", + "subtype": "2", + "area": "1.6", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 303, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:21Z", + "aquifer_name": "McDougall Creek Deltaic", + "location_description": "Southeast of Westbank adj. to Okanagan Lk.", + "material": "S", + "subtype": "2", + "area": "2.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 304, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:28Z", + "aquifer_name": null, + "location_description": "West side of Okanagan Lk, west of Kelowna", + "material": "B", + "subtype": "5a", + "area": "19.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 305, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:35Z", + "aquifer_name": null, + "location_description": "West side of Okanagon Lk, west of Kelowna", + "material": "B", + "subtype": "5a", + "area": "23.3", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 306, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:42Z", + "aquifer_name": null, + "location_description": "East of Westbank, parallel to Mt. Boucher", + "material": "SG", + "subtype": "4b", + "area": "3.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 307, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:51Z", + "aquifer_name": "Eagle River", + "location_description": "Malakwa", + "material": "SG", + "subtype": "1b", + "area": "45.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 308, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:42:58Z", + "aquifer_name": null, + "location_description": "West of Sicamous", + "material": "B", + "subtype": "6b", + "area": "4.7", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 309, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:43:05Z", + "aquifer_name": null, + "location_description": "South of Sicamous", + "material": "SG", + "subtype": "3", + "area": "0.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1997, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 310, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:49:22Z", + "aquifer_name": "Creighton", + "location_description": "Creighton Valley", + "material": "SG", + "subtype": "1c", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "mixed kame, fan and modern alluvium", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 311, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:49:32Z", + "aquifer_name": "Upper Cherryville", + "location_description": "South of Cherryville", + "material": "G", + "subtype": "4b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "preglacial, early Bessette", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 312, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:43:33Z", + "aquifer_name": null, + "location_description": "Cherryville", + "material": "B", + "subtype": "6b", + "area": "45.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 313, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:43:42Z", + "aquifer_name": null, + "location_description": "Cherryville", + "material": "B", + "subtype": "6b", + "area": "14.7", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 314, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:49:44Z", + "aquifer_name": "Lumby - Lower Aquifer", + "location_description": "Lumby", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "deep basal (early Bessette)", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 315, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T15:30:38Z", + "aquifer_name": "Merged with 314", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 316, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:49:57Z", + "aquifer_name": "Lumby - Upper Aquifer", + "location_description": "Lavington to Lumby", + "material": "SG", + "subtype": "1c", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 317, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T15:33:33Z", + "aquifer_name": "Merged with 316", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 318, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:50:10Z", + "aquifer_name": "Bessette Creek", + "location_description": "Lumby to Shuswap Falls", + "material": "G", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "deep basal (early Bessette)", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 319, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:50:24Z", + "aquifer_name": "Trinity Valley", + "location_description": "North of Lumby", + "material": "G", + "subtype": "1c", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "late Bessette to early glacial", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 320, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:44:34Z", + "aquifer_name": null, + "location_description": "Galiano Island", + "material": "B", + "subtype": "5a", + "area": "58.2", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Upper Cretaceous Nanaimo Group", + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 321, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:44:42Z", + "aquifer_name": "Upper Gates River", + "location_description": "Birken", + "material": "SG", + "subtype": "1b", + "area": "4.6", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 322, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:44:50Z", + "aquifer_name": "Lower Gates River", + "location_description": "D'Arcy", + "material": "SG", + "subtype": "1b", + "area": "7.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 323, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:44:58Z", + "aquifer_name": "Seton Portage", + "location_description": "Seton Portage", + "material": "SG", + "subtype": "1b", + "area": "1.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 324, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:45:07Z", + "aquifer_name": null, + "location_description": "Lillooet", + "material": "SG", + "subtype": "4b", + "area": "7.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 325, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T11:45:15Z", + "aquifer_name": null, + "location_description": "Lillooet", + "material": "SG", + "subtype": "1c", + "area": "4.4", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 326, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:16:38Z", + "aquifer_name": null, + "location_description": "Pemberton", + "material": "SG", + "subtype": "1b", + "area": "32.7", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 327, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:02Z", + "aquifer_name": null, + "location_description": "Prince George", + "material": "SG", + "subtype": "1b", + "area": "3.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 328, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:11Z", + "aquifer_name": null, + "location_description": "Prince George", + "material": "SG", + "subtype": "4b", + "area": "20.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 329, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:19Z", + "aquifer_name": null, + "location_description": "Prince George", + "material": "B", + "subtype": "6b", + "area": "45.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 330, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:32Z", + "aquifer_name": null, + "location_description": "Prince George", + "material": "SG", + "subtype": "4b", + "area": "5.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 331, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:39Z", + "aquifer_name": null, + "location_description": "Prince George", + "material": "SG", + "subtype": "4b", + "area": "7.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 332, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:47Z", + "aquifer_name": null, + "location_description": "Prince George", + "material": "SG", + "subtype": "4b", + "area": "309.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 333, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:04:55Z", + "aquifer_name": null, + "location_description": "Hixon", + "material": "SG", + "subtype": "1c", + "area": "23.4", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 334, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:05:03Z", + "aquifer_name": null, + "location_description": "Hixon", + "material": "SG", + "subtype": "1a", + "area": "0.6", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Post-glacial, Quatenary,alluvial deposits(Learning and Armstrong,1969)", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 335, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:05:11Z", + "aquifer_name": null, + "location_description": "Hixon", + "material": "SG", + "subtype": "4b", + "area": "108.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser glaciation, Quaternary, glaciofluvual deposits (Learming and Armstrong,", + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 336, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:05:21Z", + "aquifer_name": null, + "location_description": "Hixon", + "material": "SG", + "subtype": "4b", + "area": "3.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 337, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:14Z", + "aquifer_name": null, + "location_description": "Timothy Lake", + "material": "SG", + "subtype": "4b", + "area": "1.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Post Fraser Glaciation and non-glacial deposits", + "mapping_year": 1998, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 338, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:05:54Z", + "aquifer_name": null, + "location_description": "McLeod Lake", + "material": "SG", + "subtype": "4b", + "area": "5.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 339, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:05Z", + "aquifer_name": null, + "location_description": "North of Prince George", + "material": "B", + "subtype": "6b", + "area": "29.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 340, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:14Z", + "aquifer_name": null, + "location_description": "East of Vanderhoof/north of Prince George", + "material": "SG", + "subtype": "1c", + "area": "1.5", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 341, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:24Z", + "aquifer_name": null, + "location_description": "East of Vanderhoof /norht of Prince George", + "material": "SG", + "subtype": "4b", + "area": "3.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 342, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:34Z", + "aquifer_name": null, + "location_description": "East of Vanderhoof/north of Prince George", + "material": "SG", + "subtype": "4a", + "area": "2.7", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 343, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:43Z", + "aquifer_name": null, + "location_description": "North of Prince George", + "material": "SG", + "subtype": "4b", + "area": "34.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 344, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:51Z", + "aquifer_name": null, + "location_description": "Ellison Lake to Wood Lake", + "material": "SG", + "subtype": "4b", + "area": "8.7", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 345, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:06:59Z", + "aquifer_name": null, + "location_description": "Oyama", + "material": "SG", + "subtype": "4a", + "area": "6.2", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 346, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:39:44Z", + "aquifer_name": "South Vernon Unconfined Aquifer", + "location_description": "Kalamalka Lake to Vernon", + "material": "SG", + "subtype": "4a", + "area": "14.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Likely alluvium or stream terrace deposits", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 347, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-14T16:53:21Z", + "aquifer_name": "South Vernon Confined Aquifer", + "location_description": "Vernon to Okanagan Lake", + "material": "SG", + "subtype": "4b", + "area": "6.8", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sand and gravels from alluvium or stream terrace deposits", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 348, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:39:54Z", + "aquifer_name": "Swan Lake Confined Aquifer", + "location_description": "Just north of Vernon to north of Swan Lake", + "material": "SG", + "subtype": "4b", + "area": "13.8", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 349, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:07:35Z", + "aquifer_name": null, + "location_description": "Northeast of Vernon along BX Creek", + "material": "SG", + "subtype": "4b", + "area": "25.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 350, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:07:44Z", + "aquifer_name": null, + "location_description": "NE of Vernon and to the south of BX Creek", + "material": "B", + "subtype": "5a", + "area": "7.0", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 351, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:07:54Z", + "aquifer_name": null, + "location_description": "NE of Vernon and to the north of BX Creek", + "material": "B", + "subtype": "6b", + "area": "21.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 352, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:50:36Z", + "aquifer_name": "Coldstream", + "location_description": "Coldstream to Lavington", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "reworked Bessette, early glacial outwash", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 353, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:40:12Z", + "aquifer_name": "Eagle Rock Aquifer", + "location_description": "SE of Armstrong", + "material": "SG", + "subtype": "3", + "area": "7.7", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Pre-Glacial, Reworked Pre-Glacial, Syn-Glacial", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 354, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:40:21Z", + "aquifer_name": "O\u2019Keefe Unconfined Aquifer", + "location_description": "O'Keefe Valley and Grandview Flats", + "material": "SG", + "subtype": "4a", + "area": "23.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Pre-Glacial, Reworked Pre-Glacial, Syn-Glacial", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 355, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:08:31Z", + "aquifer_name": null, + "location_description": "West of Deep Creek, NW of Armstrong", + "material": "B", + "subtype": "6b", + "area": "15.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 356, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:08:39Z", + "aquifer_name": null, + "location_description": "Mouth of Deep Creek", + "material": "SG", + "subtype": "4b", + "area": "3.4", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 357, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:08:52Z", + "aquifer_name": null, + "location_description": "Whiteman Creek Fan", + "material": "SG", + "subtype": "3", + "area": "2.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan deposits", + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 358, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:09:01Z", + "aquifer_name": null, + "location_description": "Fintry Fan, Short Creek", + "material": "SG", + "subtype": "3", + "area": "0.9", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan sediments", + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 359, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:17:36Z", + "aquifer_name": null, + "location_description": "Quesnel, west side of Fraser River", + "material": "SG", + "subtype": "4b", + "area": "10.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 360, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:09:19Z", + "aquifer_name": null, + "location_description": "West of Bouchie Lake, northwest of Quesnel", + "material": "B", + "subtype": "6b", + "area": "47.3", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary rk, Cache Creek Complex, Paleozoic to Mesozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 361, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:09:32Z", + "aquifer_name": null, + "location_description": "East of Milburn Lake and nw of Quesnel", + "material": "SG", + "subtype": "4a", + "area": "5.7", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 362, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:09:47Z", + "aquifer_name": null, + "location_description": "North of Quesnel and south of Strathnaver", + "material": "SG", + "subtype": "1b", + "area": "5.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 363, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:09:56Z", + "aquifer_name": null, + "location_description": "NW of Quesnel and north of Bouchie Lake", + "material": "SG", + "subtype": "4b", + "area": "11.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 364, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:10:06Z", + "aquifer_name": null, + "location_description": "NW of Quesnel and west of Moose Heights", + "material": "SG", + "subtype": "4b", + "area": "3.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 365, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:10:16Z", + "aquifer_name": null, + "location_description": "NW of Quesnel and E shoreline of Bouchie L", + "material": "SG", + "subtype": "4b", + "area": "17.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 366, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:10:24Z", + "aquifer_name": null, + "location_description": "Northwest of Quesnel and east of Bouchie L", + "material": "SG", + "subtype": "4b", + "area": "2.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 367, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:10:33Z", + "aquifer_name": null, + "location_description": "Northwset of Quesnel", + "material": "SG", + "subtype": "1a", + "area": "1.6", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 368, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:10:42Z", + "aquifer_name": null, + "location_description": "2 km. north of Quesnel", + "material": "B", + "subtype": "6b", + "area": "32.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 369, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:10:50Z", + "aquifer_name": null, + "location_description": "2 km. north of Quesnel Airport", + "material": "SG", + "subtype": "4b", + "area": "1.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 370, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T12:56:38Z", + "aquifer_name": null, + "location_description": "Area west of Quesnel", + "material": "SG", + "subtype": "1b", + "area": "6.7", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 371, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:11:08Z", + "aquifer_name": null, + "location_description": "E of Quesnel Airport and S of Ten Mile L.", + "material": "SG", + "subtype": "4b", + "area": "26.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 372, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:11:18Z", + "aquifer_name": null, + "location_description": "Northwest of Ten Mile Lake, Quesnel", + "material": "SG", + "subtype": "4b", + "area": "29.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 373, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:11:30Z", + "aquifer_name": null, + "location_description": "Rt. St. James at mouth of Stuart L", + "material": "SG", + "subtype": "4b", + "area": "14.1", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 374, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:11:44Z", + "aquifer_name": null, + "location_description": "Ft st James bounded by Stuart L and Pitka", + "material": "B", + "subtype": "5b", + "area": "19.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Late Proterozioc to Oligocene of Later-Cache Creek Group", + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 375, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:11:52Z", + "aquifer_name": null, + "location_description": "Ft St James bound by Necoslie R and Stuart", + "material": "B", + "subtype": "5b", + "area": "3.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 376, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:12:01Z", + "aquifer_name": null, + "location_description": "Ft St James-south of Stuart L shoreli", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 377, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:12:11Z", + "aquifer_name": null, + "location_description": "Ft. St. James-west of Sruart R.", + "material": "SG", + "subtype": "4b", + "area": "11.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 378, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:12:22Z", + "aquifer_name": null, + "location_description": "Ft. St. James - east of Stuart River", + "material": "SG", + "subtype": "4b", + "area": "0.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 1999, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 379, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:12:31Z", + "aquifer_name": null, + "location_description": "Horsefly, B.C.", + "material": "SG", + "subtype": "4b", + "area": "6.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 380, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:12:39Z", + "aquifer_name": null, + "location_description": "14 km North of William Lake", + "material": "SG", + "subtype": "4b", + "area": "6.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 381, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-12T15:29:10Z", + "aquifer_name": null, + "location_description": "McLeese L. 30km north of Williams Lake", + "material": "SG", + "subtype": "4b", + "area": "6.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 382, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-12T15:29:19Z", + "aquifer_name": null, + "location_description": "Soda Cr. 26 km north of Williams Lake", + "material": "SG", + "subtype": "1b", + "area": "5.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 383, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:05Z", + "aquifer_name": null, + "location_description": "Dugan Lake, 7km north of 150 Mile House", + "material": "SG", + "subtype": "4a", + "area": "14.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 384, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:13Z", + "aquifer_name": null, + "location_description": "150 Mile House, B. C.", + "material": "SG", + "subtype": "4b", + "area": "12.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 385, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:22Z", + "aquifer_name": null, + "location_description": "4.5 km. sw of McKenzie", + "material": "SG", + "subtype": "4b", + "area": "20.4", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 386, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:30Z", + "aquifer_name": null, + "location_description": "Miocene, Northeast of 150 Mile House", + "material": "B", + "subtype": "6b", + "area": "65.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 387, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:38Z", + "aquifer_name": null, + "location_description": "Alliuvial Fan of Fitzsimmons Cr.,Whistler", + "material": "SG", + "subtype": "3", + "area": "2.6", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 388, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:51Z", + "aquifer_name": null, + "location_description": "SW end of Green Lake at Nineteen Mile Cr.", + "material": "SG", + "subtype": "3", + "area": "1.2", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 389, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:13:59Z", + "aquifer_name": null, + "location_description": "Valley from Alta Lk to Green Lk, Whistler", + "material": "SG", + "subtype": "4b", + "area": "3.2", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 390, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:07Z", + "aquifer_name": null, + "location_description": "W side of Green Lk opposite Parkhurst", + "material": "SG", + "subtype": "1b", + "area": "0.1", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 391, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:16Z", + "aquifer_name": null, + "location_description": "Bdrk aq above and on the NW side of valley", + "material": "B", + "subtype": "6b", + "area": "45.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 392, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:24Z", + "aquifer_name": null, + "location_description": "Bdrk aq above and on the SW side of valley", + "material": "B", + "subtype": "6b", + "area": "74.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 393, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:31Z", + "aquifer_name": null, + "location_description": "At Whislter Cr between Nita Lk and Alpha L", + "material": "SG", + "subtype": "3", + "area": "0.4", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 394, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:38Z", + "aquifer_name": null, + "location_description": "Sproatt Cr Fan, w end of Alpha Lk,Whistler", + "material": "SG", + "subtype": "3", + "area": "0.1", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 395, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:46Z", + "aquifer_name": null, + "location_description": "Appr 2km w of Alpha Lk at Sproatt", + "material": "SG", + "subtype": "1b", + "area": "1.2", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 396, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:14:55Z", + "aquifer_name": null, + "location_description": "Cheekye Fan", + "material": "SG", + "subtype": "1b", + "area": "5.1", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 397, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:15:04Z", + "aquifer_name": null, + "location_description": "Powerhouse Springs Mamguan R E of Squamish", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 398, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:15:11Z", + "aquifer_name": null, + "location_description": "Mamquam Valley", + "material": "SG", + "subtype": "1b", + "area": "6.0", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 399, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:15:20Z", + "aquifer_name": null, + "location_description": "Squamish River Squamish to Brackendale", + "material": "SG", + "subtype": "1b", + "area": "12.0", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 400, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T14:15:27Z", + "aquifer_name": null, + "location_description": "Confluence - Squamish, Cheakamus, Cheekye", + "material": "SG", + "subtype": "3", + "area": "8.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 401, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:15:17Z", + "aquifer_name": null, + "location_description": "22 km north along the Cheakamus River", + "material": "SG", + "subtype": "1b", + "area": "6.4", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 402, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T16:16:30Z", + "aquifer_name": null, + "location_description": "Stawamus R valley, Squamish", + "material": "SG", + "subtype": "3", + "area": "2.3", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 403, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:44:21Z", + "aquifer_name": null, + "location_description": "Shannon Falls, south of Squamish", + "material": "SG", + "subtype": "3", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 404, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:44:30Z", + "aquifer_name": null, + "location_description": "Furry Creek", + "material": "SG", + "subtype": "3", + "area": "0.5", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 405, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:44:44Z", + "aquifer_name": null, + "location_description": "D'Arcy Creek Alluvial Fan", + "material": "SG", + "subtype": "3", + "area": "1.0", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 406, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:44:53Z", + "aquifer_name": null, + "location_description": "Approximately 11 km NE of 150 Mile house", + "material": "SG", + "subtype": "4b", + "area": "1.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 407, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:45:03Z", + "aquifer_name": null, + "location_description": "Point Holmes, east of the Town of Comox.", + "material": "SG", + "subtype": "2", + "area": "1.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 408, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:45:12Z", + "aquifer_name": null, + "location_description": "Comox Harbour to 10 km north of Merville", + "material": "SG", + "subtype": "4b", + "area": "147.7", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Quadra Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 409, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:45:26Z", + "aquifer_name": null, + "location_description": "Little River deltaic deposit", + "material": "SG", + "subtype": "2", + "area": "1.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 410, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:45:36Z", + "aquifer_name": null, + "location_description": "Southern bank of Oyster River delta", + "material": "SG", + "subtype": "2", + "area": "1.7", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 411, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:45:44Z", + "aquifer_name": null, + "location_description": "1 km S. of Oyster R. Vancounver Is.", + "material": "B", + "subtype": "5a", + "area": "4.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Nanaimo group", + "mapping_year": 2009, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 412, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:45:52Z", + "aquifer_name": null, + "location_description": "Kahushan Point, north bank of Oyster R.", + "material": "SG", + "subtype": "2", + "area": "3.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 413, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:00Z", + "aquifer_name": null, + "location_description": "West of Royston, north to Puntledge River", + "material": "B", + "subtype": "5a", + "area": "35.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Nanaimo Group; likely the Comox Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 414, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:11Z", + "aquifer_name": null, + "location_description": "Alluvial fan at the mouth of Rosewall Cr.", + "material": "SG", + "subtype": "2", + "area": "1.5", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 415, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:20Z", + "aquifer_name": null, + "location_description": "Tsable River delta deposit", + "material": "SG", + "subtype": "2", + "area": "0.8", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 416, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:28Z", + "aquifer_name": null, + "location_description": "Thames River to Maplegaurd Point", + "material": "SG", + "subtype": "4b", + "area": "13.7", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 417, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:36Z", + "aquifer_name": null, + "location_description": "North of Cumberland, to Puntledge R.", + "material": "SG", + "subtype": "4a", + "area": "14.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Capilano Sediments and possibly Quadra sands in places", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 418, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:45Z", + "aquifer_name": null, + "location_description": "South bank at Oyster-Little R. confluence", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sediments?", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 419, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:46:53Z", + "aquifer_name": null, + "location_description": "Wilfred Creek delta, south of Fanny Bay", + "material": "SG", + "subtype": "2", + "area": "4.3", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 420, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:47:00Z", + "aquifer_name": null, + "location_description": "1 km south of Oyster River mouth", + "material": "B", + "subtype": "5a", + "area": "0.4", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Nanaimo Group", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 421, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T16:22:21Z", + "aquifer_name": null, + "location_description": "Nile Creek to Thames Creek", + "material": "SG", + "subtype": "4b", + "area": "6.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 422, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:47:15Z", + "aquifer_name": null, + "location_description": "Porteau Cove, Howe Sound", + "material": "SG", + "subtype": "3", + "area": "0.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sediments", + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 423, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:52:54Z", + "aquifer_name": null, + "location_description": "North shore of La Hache Lake", + "material": "SG", + "subtype": "4a", + "area": "12.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 424, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:03Z", + "aquifer_name": null, + "location_description": "eastside of Bridge Lake", + "material": "SG", + "subtype": "4b", + "area": "6.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 425, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:12Z", + "aquifer_name": null, + "location_description": "south of Bridge Lake", + "material": "B", + "subtype": "6b", + "area": "45.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 426, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:21Z", + "aquifer_name": null, + "location_description": "Eagle Creek", + "material": "SG", + "subtype": "4b", + "area": "5.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 427, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:29Z", + "aquifer_name": null, + "location_description": "southern tip of Canim Lake", + "material": "SG", + "subtype": "4b", + "area": "15.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 428, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:36Z", + "aquifer_name": null, + "location_description": "San Jose River and Knife Creek", + "material": "SG", + "subtype": "4b", + "area": "1.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 429, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:44Z", + "aquifer_name": null, + "location_description": "near Ruth Lake", + "material": "SG", + "subtype": "4b", + "area": "4.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 430, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:53:52Z", + "aquifer_name": null, + "location_description": "West shore of Canim Lake", + "material": "SG", + "subtype": "4b", + "area": "0.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2000, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 431, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:00Z", + "aquifer_name": null, + "location_description": "Mackenzie", + "material": "SG", + "subtype": "4a", + "area": "1.5", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 432, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:07Z", + "aquifer_name": null, + "location_description": "Mackenzie", + "material": "SG", + "subtype": "3", + "area": "3.1", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 433, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:15Z", + "aquifer_name": null, + "location_description": "McLeod Lake", + "material": "SG", + "subtype": "4a", + "area": "10.3", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 434, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:22Z", + "aquifer_name": null, + "location_description": "Appr 6km NE of Tudyah Lakes", + "material": "SG", + "subtype": "1b", + "area": "15.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 435, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:29Z", + "aquifer_name": null, + "location_description": "Whaling Station Bay, Hornby Island", + "material": "B", + "subtype": "5a", + "area": "3.8", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 436, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:36Z", + "aquifer_name": null, + "location_description": "Shingle Spit-Phipps Point, Hornby Island", + "material": "B", + "subtype": "5a", + "area": "5.2", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 437, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:44Z", + "aquifer_name": null, + "location_description": "Ford Cove-Norman Point, Hornby Island", + "material": "B", + "subtype": "5a", + "area": "2.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 438, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:54:52Z", + "aquifer_name": null, + "location_description": "Mt. Geoffrey, Hornby Island", + "material": "B", + "subtype": "5a", + "area": "18.8", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 439, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:55:00Z", + "aquifer_name": null, + "location_description": "Jim Smith Lake", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 440, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-19T15:55:07Z", + "aquifer_name": null, + "location_description": "Hudson Hope", + "material": "SG", + "subtype": "1b", + "area": "13.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "High energy glaciofluvial sand & gravel", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 441, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:07:40Z", + "aquifer_name": null, + "location_description": "Lynx Ck.; 7 km NE of Hudson Hope", + "material": "B", + "subtype": "5a", + "area": "13.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 442, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:07:50Z", + "aquifer_name": null, + "location_description": "3.5 km W. of Taylor", + "material": "SG", + "subtype": "1b", + "area": "1.8", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "sand and gravel", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 443, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:07:59Z", + "aquifer_name": null, + "location_description": "Taylor townsite N. of peace R.", + "material": "G", + "subtype": "4a", + "area": "11.9", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 444, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-09-14T15:17:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:08:08Z", + "aquifer_name": null, + "location_description": "2 km W. of Ft. St. John", + "material": "SG", + "subtype": "4a", + "area": "75.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "buried valley glacial fluvial deposits", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 445, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:10:20Z", + "aquifer_name": null, + "location_description": "NW of Cranbrook; near Hospital Ck", + "material": "SG", + "subtype": "4b", + "area": "5.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 446, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:10:32Z", + "aquifer_name": null, + "location_description": "Booth Creek, NW of Cranbrook", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 447, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:08:35Z", + "aquifer_name": null, + "location_description": "Georgina Pt - Hall Hill, Mayne Island N.", + "material": "B", + "subtype": "5a", + "area": "3.7", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Upper Cretaceous; Nanimo Grp; Gabriola & Spray Formations", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 448, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:08:42Z", + "aquifer_name": null, + "location_description": "Clayhurst", + "material": "B", + "subtype": "5a", + "area": "90.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Smoky Group , Wapiti Formation", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 449, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:08:59Z", + "aquifer_name": null, + "location_description": "West of Sooke at Orveas Bay", + "material": "B", + "subtype": "5a", + "area": "28.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sooke Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 450, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:09:07Z", + "aquifer_name": null, + "location_description": "Nicholson; Stacey Ck. Fan and South", + "material": "SG", + "subtype": "4b", + "area": "3.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 451, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:09:15Z", + "aquifer_name": null, + "location_description": "Between Ft. St. John & Blueberry Ck.", + "material": "B", + "subtype": "5a", + "area": "3286.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 452, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:09:24Z", + "aquifer_name": null, + "location_description": "E. of Invermere; E. side of Columbia R.", + "material": "SG", + "subtype": "4b", + "area": "1.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 453, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:10:45Z", + "aquifer_name": null, + "location_description": "Windermere; E. side of Windermere LK.", + "material": "SG", + "subtype": "4b", + "area": "65.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Glaciofluvial; Multiple stacked aquifers?", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 454, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:09:39Z", + "aquifer_name": null, + "location_description": "S. of Golden; across R. from Nicholson", + "material": "SG", + "subtype": "1b", + "area": "4.0", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 455, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:09:46Z", + "aquifer_name": null, + "location_description": "Hospital Creek near Golden", + "material": "SG", + "subtype": "4b", + "area": "0.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 456, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:09:54Z", + "aquifer_name": null, + "location_description": "Golden, confluence of 2 rivers", + "material": "SG", + "subtype": "1b", + "area": "10.2", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 457, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:10:02Z", + "aquifer_name": null, + "location_description": "NE of Invermere; E. side of River", + "material": "SG", + "subtype": "4b", + "area": "0.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 458, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:10:56Z", + "aquifer_name": null, + "location_description": "Fairmont Hotsprings; W. side of R.", + "material": "SG", + "subtype": "1b", + "area": "15.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 459, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:10:16Z", + "aquifer_name": null, + "location_description": "Fairmont Hot Springs", + "material": "SG", + "subtype": "4b", + "area": "3.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 460, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:10:24Z", + "aquifer_name": null, + "location_description": "Madias Ck.; N. of Fairmont Hotsprings", + "material": "SG", + "subtype": "3", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 461, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": null, + "location_description": "Upper Mission Creek", + "material": "SG", + "subtype": "4b", + "area": "15.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 462, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:09:20Z", + "aquifer_name": "Bellevue fan aquifer", + "location_description": "Upper Mission in south Kelowna", + "material": "SG", + "subtype": "3", + "area": "23.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 463, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:31:51Z", + "aquifer_name": "merged with aquifer 464 in 2018", + "location_description": "S, E, NE of Kelowna; S & E side of valley", + "material": "SG", + "subtype": "4b", + "area": "64.2", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 464, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:17:45Z", + "aquifer_name": "Greater Kelowna Aquifer", + "location_description": "Below Kelowna to Ellison Lake", + "material": "SG", + "subtype": "4b", + "area": "93.6", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 465, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:32:37Z", + "aquifer_name": "Merged with 464 in 2018", + "location_description": "S. Kelowna; possibly E. to Rutland", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": null, + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 466, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:33:01Z", + "aquifer_name": "merged with 464 in 2018", + "location_description": "6 km SE of Kelowna", + "material": "SG", + "subtype": "4a", + "area": "0.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 467, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:22:27Z", + "aquifer_name": "Mission Creek Aquifer", + "location_description": "East Kelowna and Rutland area", + "material": "SG", + "subtype": "1c", + "area": "41.7", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 468, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:34:00Z", + "aquifer_name": "merged with 464 in 2018", + "location_description": "2 km N of Kelowna; Clifton Rd. area", + "material": "SG", + "subtype": "4a", + "area": "0.2", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 469, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:24:46Z", + "aquifer_name": "Glemmore Basal Aquifer", + "location_description": "Glenmore Valley, N. of Kelowna", + "material": "SG", + "subtype": "4b", + "area": "11.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 470, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:11:59Z", + "aquifer_name": "470", + "location_description": "Kelowna north to Ellison Lake", + "material": "B", + "subtype": "6b", + "area": "52.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic Rk, Penticton Grp, Cenozoic Era & Harper Ranch Grp, Paleozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 471, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:12:06Z", + "aquifer_name": null, + "location_description": "West of Ellison Lake", + "material": "B", + "subtype": "6b", + "area": "127.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Intrusive rks; Mesozoic Era; Granite & Alkali feldspar granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 472, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:12:14Z", + "aquifer_name": "472", + "location_description": "Southeast of Ellison Lake", + "material": "B", + "subtype": "6b", + "area": "18.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Metamorphic Rk, Shuswap Assemblage, Proterozoic to Paleozoic Era", + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 473, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-21T11:19:17Z", + "aquifer_name": null, + "location_description": "Mission, Daves & Cardinal Ck area", + "material": "B", + "subtype": "6b", + "area": "39.4", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 474, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:12:48Z", + "aquifer_name": null, + "location_description": "Kettle Valley - Rock Creek", + "material": "SG", + "subtype": "1b", + "area": "1.4", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 475, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:12:55Z", + "aquifer_name": null, + "location_description": "Bedrock slope north of Rock Creek", + "material": "B", + "subtype": "6b", + "area": "0.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 476, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:01Z", + "aquifer_name": null, + "location_description": "Low lying area northeast of Rock Creek", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 477, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:09Z", + "aquifer_name": null, + "location_description": "Kettle R., eastward from Rock Ck.", + "material": "SG", + "subtype": "1c", + "area": "5.8", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 478, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:18Z", + "aquifer_name": null, + "location_description": "Midway", + "material": "SG", + "subtype": "3", + "area": "3.6", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 479, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:31Z", + "aquifer_name": null, + "location_description": "Kettle River Valley near Christina Lake", + "material": "SG", + "subtype": "4b", + "area": "9.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 480, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:39Z", + "aquifer_name": null, + "location_description": "South end of Christina Lk.", + "material": "SG", + "subtype": "3", + "area": "0.9", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 481, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:46Z", + "aquifer_name": null, + "location_description": "Kettle River Valley at West ridge", + "material": "SG", + "subtype": "1c", + "area": "6.1", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 482, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:13:53Z", + "aquifer_name": null, + "location_description": "Kettle river Valley near Beaverdell", + "material": "SG", + "subtype": "1c", + "area": "15.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 483, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:00Z", + "aquifer_name": null, + "location_description": "Trail Townsite", + "material": "SG", + "subtype": "1b", + "area": "1.3", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 484, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:12Z", + "aquifer_name": null, + "location_description": "Waneta Junction/southeast of Trail", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 485, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:19Z", + "aquifer_name": null, + "location_description": "Southwest of the Village of Montrose", + "material": "SG", + "subtype": "3", + "area": "0.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 486, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:27Z", + "aquifer_name": null, + "location_description": "Columbia Gardens northwards to Kelly Ck.", + "material": "B", + "subtype": "6b", + "area": "21.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 487, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:34Z", + "aquifer_name": null, + "location_description": "Goat River Floodplain near Creston", + "material": "SG", + "subtype": "4a", + "area": "10.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 488, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:43Z", + "aquifer_name": null, + "location_description": "Lister, South of Creston", + "material": "B", + "subtype": "6b", + "area": "77.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 489, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:52Z", + "aquifer_name": null, + "location_description": "Canyon, SE of Creston", + "material": "SG", + "subtype": "3", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 490, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:14:59Z", + "aquifer_name": null, + "location_description": "Rykerts Lake", + "material": "SG", + "subtype": "3", + "area": "0.7", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 491, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:06Z", + "aquifer_name": null, + "location_description": "Southern area of the Moyie R.", + "material": "SG", + "subtype": "1b", + "area": "3.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 492, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:13Z", + "aquifer_name": null, + "location_description": "Yahk", + "material": "SG", + "subtype": "1b", + "area": "1.4", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 493, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:19Z", + "aquifer_name": null, + "location_description": "Ross Spur, North", + "material": "B", + "subtype": "5a", + "area": "6.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 494, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:26Z", + "aquifer_name": null, + "location_description": "Ross Spur, South", + "material": "B", + "subtype": "6b", + "area": "20.4", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 495, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:33Z", + "aquifer_name": null, + "location_description": "Fruitvale Creek", + "material": "B", + "subtype": "6b", + "area": "11.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 496, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:42Z", + "aquifer_name": null, + "location_description": "Salmo River", + "material": "SG", + "subtype": "1b", + "area": "15.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 497, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:50Z", + "aquifer_name": null, + "location_description": "Erie 1, Salmo", + "material": "SG", + "subtype": "1c", + "area": "1.3", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 498, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:15:59Z", + "aquifer_name": null, + "location_description": "Erie 2, Salmo", + "material": "SG", + "subtype": "3", + "area": "1.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 499, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:16:07Z", + "aquifer_name": "504", + "location_description": "Alice Siding, north of Creston", + "material": "B", + "subtype": "6b", + "area": "35.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary & dolomitic rks, Creston, Kitchener & Aldridge Formations", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 500, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:16:14Z", + "aquifer_name": null, + "location_description": "Blueberry, between China Ck. and Kinnaird", + "material": "B", + "subtype": "6b", + "area": "14.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 501, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:37:19Z", + "aquifer_name": null, + "location_description": "Lower China Creek", + "material": "SG", + "subtype": "4a", + "area": "1.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 502, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:37:26Z", + "aquifer_name": "502", + "location_description": "Robson, N of Columbia R. & W of Castlegar", + "material": "SG", + "subtype": "4a", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial sand and gravels", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 503, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:37:32Z", + "aquifer_name": null, + "location_description": "Robson - South", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 504, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:37:39Z", + "aquifer_name": "504", + "location_description": "Raspberry Village", + "material": "SG", + "subtype": "4a", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Post glacial floodplain", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 505, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:37:45Z", + "aquifer_name": "505", + "location_description": "Castlegar Townsite North", + "material": "SG", + "subtype": "4b", + "area": "1.9", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 506, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-21T10:02:14Z", + "aquifer_name": "506", + "location_description": "Brilliant, Kootenay & Columbia Rivers", + "material": "SG", + "subtype": "1b", + "area": "0.8", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial sand and gravels", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 507, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:37:58Z", + "aquifer_name": null, + "location_description": "Airport Creek", + "material": "SG", + "subtype": "4a", + "area": "1.9", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 508, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:38:08Z", + "aquifer_name": null, + "location_description": "Selkirk Colledge, Southeast of Castlegar", + "material": "SG", + "subtype": "4b", + "area": "1.4", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 509, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:38:16Z", + "aquifer_name": null, + "location_description": "Castlegar - South", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 510, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:38:22Z", + "aquifer_name": null, + "location_description": "Castlegar - Airport", + "material": "SG", + "subtype": "4b", + "area": "6.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 511, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:11:12Z", + "aquifer_name": null, + "location_description": "Fortynine Creek", + "material": "B", + "subtype": "6b", + "area": "23.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 512, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:11:25Z", + "aquifer_name": null, + "location_description": "Falls Creek near West Arm, Kootenay Lake", + "material": "B", + "subtype": "6b", + "area": "31.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 513, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:11:37Z", + "aquifer_name": null, + "location_description": "Krestova B. R.", + "material": "B", + "subtype": "6b", + "area": "12.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 514, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:11:49Z", + "aquifer_name": null, + "location_description": "Crescent Valley", + "material": "SG", + "subtype": "4b", + "area": "15.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 515, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:38:58Z", + "aquifer_name": null, + "location_description": "Krestova - Surficial", + "material": "SG", + "subtype": "4a", + "area": "0.8", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 516, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:04Z", + "aquifer_name": null, + "location_description": "Willow Point", + "material": "SG", + "subtype": "3", + "area": "0.8", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 517, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:11Z", + "aquifer_name": null, + "location_description": "Roberts Bay - Cedar Point", + "material": "SG", + "subtype": "4b", + "area": "2.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 518, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:19Z", + "aquifer_name": null, + "location_description": "Mt. Nelson", + "material": "B", + "subtype": "6b", + "area": "1.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 519, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:26Z", + "aquifer_name": null, + "location_description": "Baynes Lake - East 1", + "material": "SG", + "subtype": "4b", + "area": "6.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 520, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:35Z", + "aquifer_name": null, + "location_description": "Baynes Lake - East 2", + "material": "SG", + "subtype": "4a", + "area": "4.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 521, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:41Z", + "aquifer_name": null, + "location_description": "Jaffray", + "material": "SG", + "subtype": "4a", + "area": "5.2", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 522, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:47Z", + "aquifer_name": null, + "location_description": "Rosen Lake - South", + "material": "SG", + "subtype": "4a", + "area": "0.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 523, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:53Z", + "aquifer_name": null, + "location_description": "Cranbrook S., B. R.", + "material": "B", + "subtype": "5a", + "area": "28.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 524, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:39:59Z", + "aquifer_name": null, + "location_description": "Cranbrook", + "material": "SG", + "subtype": "4b", + "area": "21.8", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Glaciofluvial", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 525, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:12:03Z", + "aquifer_name": null, + "location_description": "Cranbrook - West St. Mary River", + "material": "SG", + "subtype": "4b", + "area": "30.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 526, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:40:15Z", + "aquifer_name": null, + "location_description": "Cranbrook - East", + "material": "SG", + "subtype": "4b", + "area": "10.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 527, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:40:23Z", + "aquifer_name": null, + "location_description": "Bull River", + "material": "SG", + "subtype": "4b", + "area": "4.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvioglacial; possibly stacked aquifers", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 528, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:40:36Z", + "aquifer_name": null, + "location_description": "Wardner", + "material": "SG", + "subtype": "1b", + "area": "8.0", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 529, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:40:42Z", + "aquifer_name": null, + "location_description": "Wardner", + "material": "B", + "subtype": "5b", + "area": "46.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sed rock; Banff, Exshaw, Palliser, Sassenach, Alexo form.; Paleozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 530, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:40:49Z", + "aquifer_name": null, + "location_description": "Rosen Lake - North", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 531, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:40:58Z", + "aquifer_name": null, + "location_description": "Tie Lake", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 532, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:41:06Z", + "aquifer_name": null, + "location_description": "Elk River", + "material": "SG", + "subtype": "4b", + "area": "20.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 533, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:46:53Z", + "aquifer_name": null, + "location_description": "Combined with aquifer 532 in 2015", + "material": null, + "subtype": "4b", + "area": null, + "vulnerability": null, + "productivity": null, + "demand": "H", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 534, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:47:15Z", + "aquifer_name": null, + "location_description": "Fernie S. B. R.", + "material": "B", + "subtype": "5a", + "area": "6.9", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 535, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:12:25Z", + "aquifer_name": null, + "location_description": "Cranbrook Northwest", + "material": "B", + "subtype": "5a", + "area": "115.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Indurated sedimentary rocks; siltstone and argillite", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 536, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:12:35Z", + "aquifer_name": null, + "location_description": "Wycliffe", + "material": "B", + "subtype": "5a", + "area": "54.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 537, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:12:48Z", + "aquifer_name": null, + "location_description": "Kimberley, B.R.", + "material": "B", + "subtype": "5a", + "area": "25.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 538, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:13:00Z", + "aquifer_name": null, + "location_description": "St. Mary River IR", + "material": "SG", + "subtype": "1a", + "area": "11.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 539, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:13:12Z", + "aquifer_name": null, + "location_description": "Mather Creek", + "material": "SG", + "subtype": "4b", + "area": "11.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 540, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:03Z", + "aquifer_name": null, + "location_description": "Wasa Lake", + "material": "SG", + "subtype": "1b", + "area": "10.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 541, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:10Z", + "aquifer_name": null, + "location_description": "Ta Ta Creek", + "material": "SG", + "subtype": "4b", + "area": "3.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 542, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:17Z", + "aquifer_name": null, + "location_description": "North of Wasa Lake", + "material": "SG", + "subtype": "4b", + "area": "4.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 543, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:27Z", + "aquifer_name": null, + "location_description": "Skookumchuk S.", + "material": "SG", + "subtype": "4b", + "area": "23.0", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 544, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:35Z", + "aquifer_name": null, + "location_description": "Skookumchuk E.", + "material": "SG", + "subtype": "1c", + "area": "0.5", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 545, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:43Z", + "aquifer_name": null, + "location_description": "NE of Skookumchuck", + "material": "SG", + "subtype": "1c", + "area": "6.3", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 546, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:51Z", + "aquifer_name": null, + "location_description": "Moyie River - South near Glenlily", + "material": "SG", + "subtype": "1b", + "area": "3.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 547, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:48:58Z", + "aquifer_name": null, + "location_description": "SE portion of Keats Island", + "material": "SG", + "subtype": "4c", + "area": "0.7", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 548, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:06Z", + "aquifer_name": null, + "location_description": "Keats Island", + "material": "B", + "subtype": "6b", + "area": "6.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 549, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:13Z", + "aquifer_name": null, + "location_description": "Southwestern portion of Gambier Island", + "material": "B", + "subtype": "6b", + "area": "4.1", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 550, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:21Z", + "aquifer_name": null, + "location_description": "Carmelo Point, Gambier Island", + "material": "B", + "subtype": "6b", + "area": "2.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2001, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 551, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:28Z", + "aquifer_name": null, + "location_description": "Northeast portion of Gambier Island", + "material": "B", + "subtype": "6b", + "area": "5.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2002, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 552, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:34Z", + "aquifer_name": null, + "location_description": "Langdale", + "material": "SG", + "subtype": "2", + "area": "0.6", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 553, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:41Z", + "aquifer_name": null, + "location_description": "Soames Point", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 554, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:48Z", + "aquifer_name": null, + "location_description": "Gibsons Landing", + "material": "SG", + "subtype": "4b", + "area": "0.5", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Capiliano Sediments", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 555, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:49:55Z", + "aquifer_name": null, + "location_description": "Sechelt", + "material": "B", + "subtype": "6b", + "area": "24.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 556, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:01Z", + "aquifer_name": null, + "location_description": "Chapman Creek", + "material": "SG", + "subtype": "2", + "area": "0.9", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 557, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:07Z", + "aquifer_name": null, + "location_description": "Sargeant Bay, Sunshine Coast", + "material": "SG", + "subtype": "4c", + "area": "3.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Recent fluvial and glacio-marine sediments; Capilano Sediments", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 558, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:15Z", + "aquifer_name": null, + "location_description": "Halfmoon Bay", + "material": "B", + "subtype": "6b", + "area": "10.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 559, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:21Z", + "aquifer_name": null, + "location_description": "Sakinaw Lake; Mixel Lake", + "material": "B", + "subtype": "6b", + "area": "14.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Bedrock \u0096 fractured granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 560, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:29Z", + "aquifer_name": "Gibson\u0092s Lower Aquifer", + "location_description": "Chaster Creek", + "material": "SG", + "subtype": "4b", + "area": "10.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 561, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:38Z", + "aquifer_name": null, + "location_description": "Kleindale", + "material": "B", + "subtype": "6b", + "area": "4.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 562, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:45Z", + "aquifer_name": null, + "location_description": "Wakefield Creek, Sechelt", + "material": "B", + "subtype": "6b", + "area": "9.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Fractured granite; occasionally black basalt; likely the Late Jurassic Period", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 563, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:51Z", + "aquifer_name": null, + "location_description": "Wakefield Creek, Sechelt", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Recent glacio-fluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 564, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:50:59Z", + "aquifer_name": null, + "location_description": "Porpoise Bay", + "material": "B", + "subtype": "6b", + "area": "0.4", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 565, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:51:05Z", + "aquifer_name": null, + "location_description": "Francis Penninsula", + "material": "B", + "subtype": "6b", + "area": "3.7", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Bedrock; fractured basalt or granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 566, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:51:14Z", + "aquifer_name": null, + "location_description": "Angus Creek", + "material": "SG", + "subtype": "3", + "area": "1.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Salish Sediments", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 567, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:06:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:51:22Z", + "aquifer_name": null, + "location_description": "East of south end of Windermere Lk", + "material": "SG", + "subtype": "4b", + "area": "0.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 568, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:06:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:51:30Z", + "aquifer_name": null, + "location_description": "Shuswap Ck. area; NE of Invermere", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 569, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:51:37Z", + "aquifer_name": null, + "location_description": "Confluence of Telkwa and Bulkley Rivers", + "material": "SG", + "subtype": "4b", + "area": "2.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 570, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:27:48Z", + "aquifer_name": null, + "location_description": "Terrace - SE; Jack Pine Flats", + "material": "SG", + "subtype": "3", + "area": "4.9", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 571, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:27:56Z", + "aquifer_name": null, + "location_description": "E. of Terrace - Thornhill; E. of River", + "material": "SG", + "subtype": "1b", + "area": "6.8", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 572, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:28:06Z", + "aquifer_name": null, + "location_description": "E. of Terrace - Thornhill; E. side of R.", + "material": "SG", + "subtype": "4b", + "area": "6.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 573, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:28:14Z", + "aquifer_name": null, + "location_description": "Terrace - North", + "material": "SG", + "subtype": "4b", + "area": "13.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 574, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:28:23Z", + "aquifer_name": null, + "location_description": "Gossan Creek; E. of Terrace", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 575, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:28:31Z", + "aquifer_name": null, + "location_description": "Terrace - South", + "material": "SG", + "subtype": "4b", + "area": "9.9", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 576, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:52:34Z", + "aquifer_name": null, + "location_description": "S. of Telkwa; SE side of Telkwa River", + "material": "SG", + "subtype": "4b", + "area": "5.0", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 577, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:52:41Z", + "aquifer_name": null, + "location_description": "E. of Smithers; E. side of Bulkley River", + "material": "SG", + "subtype": "4b", + "area": "13.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 578, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:52:47Z", + "aquifer_name": null, + "location_description": "E. of Smithers; E. side of Bulkley River", + "material": "B", + "subtype": "5a", + "area": "159.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 579, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:52:54Z", + "aquifer_name": null, + "location_description": "E. of Smithers; E. side of Bulkley River", + "material": "B", + "subtype": "5a", + "area": "62.3", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 580, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:01Z", + "aquifer_name": null, + "location_description": "Smithers - North; W. side of Bulkley River", + "material": "B", + "subtype": "5a", + "area": "5.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 581, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:07Z", + "aquifer_name": null, + "location_description": "S of Telkwa & Bulkley R. confluence", + "material": "SG", + "subtype": "4b", + "area": "26.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 582, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:14Z", + "aquifer_name": null, + "location_description": "Confluence of Telkwa & Bulkley R", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 583, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:21Z", + "aquifer_name": null, + "location_description": "East side of Telkwa River", + "material": "SG", + "subtype": "4a", + "area": "2.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 584, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:30Z", + "aquifer_name": null, + "location_description": "Smithers - North; E. side of Bulkley River", + "material": "SG", + "subtype": "4b", + "area": "20.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 585, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:37Z", + "aquifer_name": null, + "location_description": "Smithers - South; W. side of Bulkley River", + "material": "SG", + "subtype": "4b", + "area": "9.8", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 586, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:45Z", + "aquifer_name": null, + "location_description": "Smithers; Between Beavery & John Brown Cks", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 587, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:53:51Z", + "aquifer_name": null, + "location_description": "Smithers - East; E. side of Bulkley River", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 588, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-17T10:51:17Z", + "aquifer_name": "Merged with 575 - Not in Use", + "location_description": "Terrace - West; Kitsumkalum I.R.", + "material": "G", + "subtype": "1b", + "area": "0.6", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 589, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:54:06Z", + "aquifer_name": null, + "location_description": "East of Pine and Murray River confluence", + "material": "B", + "subtype": "5a", + "area": "19.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 590, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:29:10Z", + "aquifer_name": null, + "location_description": "South Groundbirch", + "material": "SG", + "subtype": "4b", + "area": "49.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 591, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-14T07:48:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:29:50Z", + "aquifer_name": null, + "location_description": "Groundbirch, Willow Valley, Sunset Prairie", + "material": "B", + "subtype": "5a", + "area": "519.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Smoky Group, Kaskapau Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 592, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T09:47:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:54:27Z", + "aquifer_name": null, + "location_description": "Willow Valley near Sunset Prairie", + "material": "SG", + "subtype": "4b", + "area": "63.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 593, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T11:07:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:30:13Z", + "aquifer_name": null, + "location_description": "Bear Mountain, Dawson Creek area", + "material": "B", + "subtype": "5a", + "area": "1146.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Kaskapau Formation, Smoky Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 594, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T14:48:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:54:42Z", + "aquifer_name": null, + "location_description": "Groundbirch Buried Channel", + "material": "SG", + "subtype": "4b", + "area": "53.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Wisconsinan sediments", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 595, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T14:51:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:54:51Z", + "aquifer_name": null, + "location_description": "North of Sunset Creek, Sunset Prarie", + "material": "B", + "subtype": "5a", + "area": "69.6", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 596, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T15:00:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:54:59Z", + "aquifer_name": null, + "location_description": "Progress", + "material": "SG", + "subtype": "4b", + "area": "125.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Laurentide Glacial lake", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 597, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T15:04:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:55:06Z", + "aquifer_name": null, + "location_description": "Arras Buried Channels", + "material": "SG", + "subtype": "4b", + "area": "40.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Wisconsinan sediments", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 598, + "fields": { + "create_user": "WELLS", + "create_date": "2003-08-22T15:08:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:55:13Z", + "aquifer_name": null, + "location_description": "Pouce Coupe", + "material": "SG", + "subtype": null, + "area": "3.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "recent fluvial deposits", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 599, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:05:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:55:20Z", + "aquifer_name": null, + "location_description": "Sooke R floodplain, west to Kemp Lk", + "material": "SG", + "subtype": "4b", + "area": "19.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Capilano sediments and Vashon till", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 600, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:08:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T11:55:28Z", + "aquifer_name": null, + "location_description": "Horse Creek Fan S. of Nicholson", + "material": "SG", + "subtype": "3", + "area": "2.4", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 601, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:09:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:51:33Z", + "aquifer_name": null, + "location_description": "5 km S. of Radium Hot Springs", + "material": "SG", + "subtype": "1b", + "area": "0.1", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 602, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:12:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:41:34Z", + "aquifer_name": null, + "location_description": "from Radium towards Columbia River", + "material": "SG", + "subtype": "1b", + "area": "1.2", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 603, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:13:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:13:24Z", + "aquifer_name": null, + "location_description": "Invermere 3km N and S", + "material": "SG", + "subtype": "1b", + "area": "13.0", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 604, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:16:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:41:51Z", + "aquifer_name": null, + "location_description": "East of Sooke around Young Lake", + "material": "SG", + "subtype": "4b", + "area": "2.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand and Saanichton gravel", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 605, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:18:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:41:59Z", + "aquifer_name": null, + "location_description": "South of Broom Hill NE of Sooke Bay", + "material": "SG", + "subtype": "4b", + "area": "0.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand and Saanichton gravel", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 606, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:33:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:07Z", + "aquifer_name": "Sooke-Metchosin", + "location_description": "Colwood, Langford, Metchosin, Sooke", + "material": "B", + "subtype": "6b", + "area": "537.6", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Metchosin Igneous Complex; Gabbroic, basaltic & volcanic rock", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 607, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:37:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:15Z", + "aquifer_name": null, + "location_description": "North end of Saanich Peninsula", + "material": "B", + "subtype": "5a", + "area": "9.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Nanaimo Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 608, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:37:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:25Z", + "aquifer_name": "North Central Saanich", + "location_description": "North Saanich to Elk Lake", + "material": "B", + "subtype": "6b", + "area": "79.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Island Plutonic Suite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 609, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:38:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:33Z", + "aquifer_name": null, + "location_description": "Littlewood Rd N of Victoria Intl Airport", + "material": "SG", + "subtype": "4b", + "area": "0.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 610, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:39:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:40Z", + "aquifer_name": null, + "location_description": "North Saanich, Bazan Bay", + "material": "SG", + "subtype": "4b", + "area": "1.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 611, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:40:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:47Z", + "aquifer_name": "Hagan Aquifer", + "location_description": "Saanichton, Central Saanich", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand & gravel; Upper unit of the Cowichan Head formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 612, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:40:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:42:56Z", + "aquifer_name": "Keating", + "location_description": "Central Saanich, Keating", + "material": "SG", + "subtype": "4b", + "area": "8.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sand & gravel; Upper unit of the Cowichan Head Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 613, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:41:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:06Z", + "aquifer_name": "Durrance", + "location_description": "Durrance Rd, Saanich", + "material": "SG", + "subtype": "4b", + "area": "0.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand & gravel; Upper unit of the Cowichan Head Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 614, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:41:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:13Z", + "aquifer_name": "Karmutsen", + "location_description": "Saanich between Cordova and Brentwood Bay", + "material": "B", + "subtype": "6b", + "area": "17.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Karmutsen Formation; A basaltic unit with minor breccia, tuff & limestone", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 615, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:42:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:20Z", + "aquifer_name": null, + "location_description": "East side of Saanich Peninsula", + "material": "SG", + "subtype": "4b", + "area": "3.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "I", + "litho_stratographic_unit": "Quadra sand, Cowichan Head Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 616, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:43:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:27Z", + "aquifer_name": "Cordova Bay", + "location_description": "Elk Lake to Cordova Bay, Saanich", + "material": "SG", + "subtype": "4b", + "area": "7.9", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 617, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:44:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:34Z", + "aquifer_name": "West Saanich Road", + "location_description": "West Saanich Rd at Wallace Dr", + "material": "SG", + "subtype": "4b", + "area": "0.1", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand & gravel; Upper unit of the Cowichan Head Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 618, + "fields": { + "create_user": "WELLS", + "create_date": "2004-01-12T13:45:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:41Z", + "aquifer_name": null, + "location_description": "Port Renfrew, south side of San Juan River", + "material": "B", + "subtype": "6b", + "area": "5.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Leech River Formation", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 619, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:07:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:48Z", + "aquifer_name": null, + "location_description": "Mayne Island", + "material": "B", + "subtype": "5a", + "area": "8.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 620, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:07:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:43:56Z", + "aquifer_name": null, + "location_description": "Mayne Island", + "material": "B", + "subtype": "5a", + "area": "7.7", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 621, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:07:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:44:02Z", + "aquifer_name": null, + "location_description": "Kelly Lake", + "material": "B", + "subtype": "5a", + "area": "27.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Wapiti Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 622, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:07:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:44:09Z", + "aquifer_name": null, + "location_description": "South of Pouce Coupe", + "material": "B", + "subtype": "5a", + "area": "280.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Dowling, Thistle, Hanson and Muskiki Members", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 623, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:14:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:44:16Z", + "aquifer_name": null, + "location_description": "Lone Prairie area", + "material": "SG", + "subtype": "5a", + "area": "17.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "S & gr of glacial or pre-glacial origin", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 624, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:07:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:44:23Z", + "aquifer_name": null, + "location_description": "Wildmore Ck.; Chetwind - Groundbirch", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan and glaciofluvial deposits-intermixed", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 625, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-08-26T14:07:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T14:44:30Z", + "aquifer_name": null, + "location_description": "Bissett Ck. SW of Chetwynd", + "material": "SG", + "subtype": "3", + "area": "0.9", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 626, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:29:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:02Z", + "aquifer_name": null, + "location_description": "N. of Pine River; Chetwynd area", + "material": "SG", + "subtype": "4b", + "area": "2.9", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 627, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:30:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:08Z", + "aquifer_name": null, + "location_description": "Dhetwynd area; W. of Dokie Siding", + "material": "B", + "subtype": "5a", + "area": "7.8", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Cruiser Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 628, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:31:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:15Z", + "aquifer_name": null, + "location_description": "Chetwyn; N. of Pine R.", + "material": "SG", + "subtype": "3", + "area": "1.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 629, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:31:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:33Z", + "aquifer_name": null, + "location_description": "Chetwynd area", + "material": "SG", + "subtype": "3", + "area": "0.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 630, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:33:02Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:41Z", + "aquifer_name": null, + "location_description": "Jackfish Lake", + "material": "SG", + "subtype": "4b", + "area": "8.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 631, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:33:25Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:48Z", + "aquifer_name": null, + "location_description": "S. of the Peace R.", + "material": "B", + "subtype": "5a", + "area": "43.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Kaskapau and Dunvegan Formations", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 632, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:33:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:13:56Z", + "aquifer_name": null, + "location_description": "Navy Channel, S. Mayne Is.", + "material": "B", + "subtype": "5a", + "area": "3.9", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Upper Cretaceous; Nanimo Group; Gabriola & Spray Formations", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 633, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:34:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:02Z", + "aquifer_name": null, + "location_description": "South of the Peace River", + "material": "B", + "subtype": "5a", + "area": "44.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Kaskapau and Dunvegan Formations", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 634, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:34:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:10Z", + "aquifer_name": null, + "location_description": "Taylor; S. of Peace River", + "material": "B", + "subtype": "5a", + "area": "83.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 635, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:35:02Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:17Z", + "aquifer_name": null, + "location_description": "SW of Tumbler Ridge townsite", + "material": "G", + "subtype": null, + "area": "0.9", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 636, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:35:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:23Z", + "aquifer_name": null, + "location_description": "Goodlow; E. of Ft. St. John", + "material": "SG", + "subtype": "4b", + "area": "3.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 637, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:35:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:30Z", + "aquifer_name": null, + "location_description": "Between Prespatou & Umbach Cks.", + "material": "SG", + "subtype": "4b", + "area": "83.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "till with minor sand & gravel deposits", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 638, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:37:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:36Z", + "aquifer_name": null, + "location_description": "Between Snyder & Buic Cks.", + "material": "SG", + "subtype": "4b", + "area": "20.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 639, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:39:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:42Z", + "aquifer_name": null, + "location_description": "NW of Rose Prarie; N. of Blueberry R.", + "material": "B", + "subtype": "5a", + "area": "844.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 640, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:40:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:49Z", + "aquifer_name": null, + "location_description": "E. of Tumbler Ridge; N. of Flatbed Ck.", + "material": "SG", + "subtype": "4a", + "area": "2.5", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 641, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:40:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:14:56Z", + "aquifer_name": null, + "location_description": "Between Francois and Tchesinkut Lakes", + "material": "SG", + "subtype": "4b", + "area": "15.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 642, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:41:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:09Z", + "aquifer_name": null, + "location_description": "Between Francois and Tchesinkut Lakes", + "material": "B", + "subtype": "6a", + "area": "41.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Cenozoic Era Basalts", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 643, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:41:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:15Z", + "aquifer_name": null, + "location_description": "Endako; N. of Endako R.", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 644, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:41:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:22Z", + "aquifer_name": null, + "location_description": "NE of burns and Decker Lakes", + "material": "B", + "subtype": "6b", + "area": "19.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; granitic intrusions", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 645, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:42:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:30Z", + "aquifer_name": null, + "location_description": "Gerow Is. & S. shore of Burns Lk.", + "material": "SG", + "subtype": "4b", + "area": "3.0", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 646, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:42:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:36Z", + "aquifer_name": null, + "location_description": "Between Burns and Tchesinkut Lakes", + "material": "B", + "subtype": "6b", + "area": "9.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; granitic intrusions", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 647, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:42:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:43Z", + "aquifer_name": null, + "location_description": "E. shore of Decker Lake", + "material": "SG", + "subtype": "4b", + "area": "3.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 648, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:42:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:49Z", + "aquifer_name": null, + "location_description": "N. of Decker Lake", + "material": "SG", + "subtype": "4b", + "area": "7.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 649, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:46:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:15:56Z", + "aquifer_name": null, + "location_description": "N. shore of Burns Lk.", + "material": "SG", + "subtype": "4b", + "area": "3.8", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 650, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:47:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:03Z", + "aquifer_name": null, + "location_description": "Simon Bay; N. shore of Fraser Lk.", + "material": "B", + "subtype": "6a", + "area": "3.1", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Endako Group Volcanics", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 651, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:47:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:10Z", + "aquifer_name": null, + "location_description": "N. shore of Burns Lake", + "material": "B", + "subtype": null, + "area": "3.1", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; granitic intrusions", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 652, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:48:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:17Z", + "aquifer_name": null, + "location_description": "NW of Burns Lk.; S. of Old Woman Lk", + "material": "B", + "subtype": "6a", + "area": "4.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Endako Group Volcanics", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 653, + "fields": { + "create_user": "SYSTEM", + "create_date": "2004-09-14T15:44:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:24Z", + "aquifer_name": null, + "location_description": "Rose Lk.; NW of Burns Lk.", + "material": "SG", + "subtype": "4b", + "area": "1.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 654, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:49:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:31Z", + "aquifer_name": null, + "location_description": "NE of Huston; W. of Topley", + "material": "B", + "subtype": "6a", + "area": "15.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Endako Group Volcanics", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 655, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:49:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:38Z", + "aquifer_name": null, + "location_description": "NE of Huston; W. of Topley", + "material": "SG", + "subtype": "4b", + "area": "12.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 656, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:49:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:45Z", + "aquifer_name": null, + "location_description": "Topley Landing; W. of Babine lk.", + "material": "SG", + "subtype": "4b", + "area": "0.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 657, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:50:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:16:52Z", + "aquifer_name": null, + "location_description": "Confluence of Nechako & Cheslatta Rivers", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 658, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:50:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:02Z", + "aquifer_name": null, + "location_description": "S. of Bulkley R. nr. Huston", + "material": "B", + "subtype": "6b", + "area": "9.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; Hazelton Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 659, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:50:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:09Z", + "aquifer_name": null, + "location_description": "S. of Bulkley R. nr. Huston", + "material": "SG", + "subtype": "1b", + "area": "11.8", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 660, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:51:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:16Z", + "aquifer_name": null, + "location_description": "S. of Bulkley R. nr. Huston", + "material": "SG", + "subtype": "4b", + "area": "6.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits; Buried sand & gravel channel deposits", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 661, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:51:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:23Z", + "aquifer_name": null, + "location_description": "Spider Lk nr Horne Lk", + "material": "SG", + "subtype": "4a", + "area": "3.8", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Kame Feature", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 662, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:52:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:30Z", + "aquifer_name": null, + "location_description": "Between Big & Little Qualicum Rivers", + "material": "SG", + "subtype": "4b", + "area": "53.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Quadra", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 663, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:52:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:38Z", + "aquifer_name": "663", + "location_description": "Upper reaches of Whisky Creek", + "material": "SG", + "subtype": "4a", + "area": "9.8", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Kame terrace and delta glacio-fluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 664, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:53:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:45Z", + "aquifer_name": null, + "location_description": "Little Qualicum R. valley & delta", + "material": "SG", + "subtype": "1b", + "area": "5.0", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Salish sediments", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 665, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:53:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:51Z", + "aquifer_name": null, + "location_description": "Between Big Qualicum R. & Thames Ck.", + "material": "SG", + "subtype": "4b", + "area": "22.8", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Capilano Sediments", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 666, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:54:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:17:58Z", + "aquifer_name": null, + "location_description": "N. shore Stuart Lk.; NW of Ft. St. James", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 667, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:54:37Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:05Z", + "aquifer_name": null, + "location_description": "W. end of Fraser Lk.; W. bank of Perry Ck.", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 668, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:54:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:13Z", + "aquifer_name": null, + "location_description": "Stellako; W. end of Fraser k.", + "material": "SG", + "subtype": "4b", + "area": "2.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 669, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:56:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:19Z", + "aquifer_name": null, + "location_description": "W. end of Fraser Lk.; S. bank of Endako R.", + "material": "SG", + "subtype": "4b", + "area": "4.5", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 670, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:56:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:26Z", + "aquifer_name": null, + "location_description": "SW side of Fraser Lk.", + "material": "SG", + "subtype": "4b", + "area": "2.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 671, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:56:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:35Z", + "aquifer_name": null, + "location_description": "SW side of Dry William Lk; S of Fraser Lk", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 672, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:56:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:45Z", + "aquifer_name": null, + "location_description": "SW side of Fraser Lk.", + "material": "B", + "subtype": "6a", + "area": "15.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; Endako Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 673, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:56:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:52Z", + "aquifer_name": null, + "location_description": "S. side of Fraser Lake", + "material": "B", + "subtype": "6b", + "area": "61.7", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Topley Intrusions; Granitic", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 674, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:57:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:18:59Z", + "aquifer_name": null, + "location_description": "NW side of Fraser Lake", + "material": "B", + "subtype": "6a", + "area": "13.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; Endako Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 675, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:57:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-21T16:19:05Z", + "aquifer_name": null, + "location_description": "Dunalter Lake; NW. of Huston", + "material": "B", + "subtype": "6b", + "area": "10.7", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; Hazelton Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 676, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:57:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:07:15Z", + "aquifer_name": null, + "location_description": "S. of Mathews Lk. W. of Huston", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacioalcusterine deposits", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 677, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:57:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:07:22Z", + "aquifer_name": null, + "location_description": "N. of Huston; NW of Bulkley R.", + "material": "SG", + "subtype": "4b", + "area": "4.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacioalcusterine and glaciofluvial deposits", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 678, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:57:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:07:29Z", + "aquifer_name": null, + "location_description": "S. & SW of Francois Lk.; W. of Fraser Lk.", + "material": "B", + "subtype": "6b", + "area": "110.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic; Hazelton Group", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 679, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:58:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:07:36Z", + "aquifer_name": null, + "location_description": "N. of Cheslatta R.; S. of Francois Lk.", + "material": "SG", + "subtype": "4b", + "area": "19.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacioalcusterine and glacial moraine deposits", + "mapping_year": 2003, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 680, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:58:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:11:29Z", + "aquifer_name": "Wark-Colquitz", + "location_description": "Victoria S of Elk Lake, E of Finlayson Arm", + "material": "B", + "subtype": "6b", + "area": "209.0", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Wark-Colquitz Complex; Paleozoic; Crystalline igneous and meta-igneous rocks", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 681, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:59:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:11:36Z", + "aquifer_name": null, + "location_description": "Willis Point, SE side of Saanich Inlet", + "material": "B", + "subtype": "6b", + "area": "7.9", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Bonanza Group volcanics; Lower Jurassic", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 682, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T16:59:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:11:59Z", + "aquifer_name": null, + "location_description": "Colwood, Langford, Metchosin", + "material": "SG", + "subtype": "4a", + "area": "24.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Colwood Delta Formation", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 683, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:00:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:12:30Z", + "aquifer_name": null, + "location_description": "Metchosin, from Parry Bay inland 3 km", + "material": "SG", + "subtype": "4b", + "area": "9.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand, Parry Bay Formation", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 684, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:00:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:12:38Z", + "aquifer_name": null, + "location_description": "Goldstream River mouth, Finlayson Arm", + "material": "SG", + "subtype": "1c", + "area": "0.3", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Capilano and Salish sediments", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 685, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:01:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:12:45Z", + "aquifer_name": "Pacheedaht", + "location_description": "San Juan River floodplain, Port Renfrew", + "material": "SG", + "subtype": "1b", + "area": "41.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Capilano and Salish sediments", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 686, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:03:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:12:53Z", + "aquifer_name": null, + "location_description": "Gordon Head, Saanich", + "material": "SG", + "subtype": "4b", + "area": "7.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sand", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 687, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:06:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:13:00Z", + "aquifer_name": null, + "location_description": "Taylor Flats; SE of Ft. St. John", + "material": "SG", + "subtype": "3", + "area": "1.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 688, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:06:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-18T15:23:31Z", + "aquifer_name": null, + "location_description": "E. of Chetwynd; N. of Pine R.", + "material": "B", + "subtype": "5a", + "area": "17.9", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation (Upper Cretaceous)", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 689, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:07:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:13:14Z", + "aquifer_name": null, + "location_description": "SE of Chetwynd; S. of Pine R.", + "material": "B", + "subtype": "5a", + "area": "75.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 690, + "fields": { + "create_user": "WELLS", + "create_date": "2004-08-24T17:07:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:13:24Z", + "aquifer_name": null, + "location_description": "Clayhurst area", + "material": "SG", + "subtype": "4b", + "area": "23.8", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 691, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T13:04:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:13:32Z", + "aquifer_name": null, + "location_description": "East of Ash River", + "material": "B", + "subtype": "5a", + "area": "29.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 692, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T13:05:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:13:40Z", + "aquifer_name": null, + "location_description": "Bear Creek; N of Stamp River Falls", + "material": "SG", + "subtype": "4a", + "area": "1.6", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 693, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T13:05:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:13:48Z", + "aquifer_name": null, + "location_description": "Stamp River; d/s from Great Central Lake", + "material": "SG", + "subtype": "4a", + "area": "0.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 694, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T13:05:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:01Z", + "aquifer_name": null, + "location_description": "Stamp River; E side of Stamp Falls", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 695, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T13:05:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:10Z", + "aquifer_name": null, + "location_description": "N shore of Sproat Lake; close to Kleecoot", + "material": "SG", + "subtype": "4b", + "area": "1.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 696, + "fields": { + "create_user": "WELLS", + "create_date": "2004-09-21T09:46:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:23Z", + "aquifer_name": null, + "location_description": "East of Stamp Falls", + "material": "B", + "subtype": "5a", + "area": "4.3", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Cretaceous sandstone and shale", + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 697, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T12:12:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:32Z", + "aquifer_name": null, + "location_description": "East side of Alberni Valley", + "material": "B", + "subtype": "5a", + "area": "42.2", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 698, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T12:27:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:42Z", + "aquifer_name": null, + "location_description": "North shore of Sproat Lake at Kleecoot", + "material": "B", + "subtype": "6b", + "area": "5.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 699, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T12:31:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:49Z", + "aquifer_name": null, + "location_description": "N sh of Sproat Lk; 8 km W of Port Alberni", + "material": "B", + "subtype": "6b", + "area": "1.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 700, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T12:33:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:14:56Z", + "aquifer_name": null, + "location_description": "N shore of Sproat Lake at Kleecoot", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 701, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T12:34:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:04Z", + "aquifer_name": null, + "location_description": "Eagle Point SW of Kleecoot", + "material": "B", + "subtype": "6b", + "area": "2.4", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 702, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:26:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:10Z", + "aquifer_name": null, + "location_description": "McCoy Lake; W of Port Alberni", + "material": "B", + "subtype": "6b", + "area": "18.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 703, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:27:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:16Z", + "aquifer_name": null, + "location_description": "W bank of Somass River", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 704, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:30:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:23Z", + "aquifer_name": null, + "location_description": "E bank of Somass River", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 705, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:32:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:29Z", + "aquifer_name": null, + "location_description": "Polly Point; 4km S of Port Alberni; E side", + "material": "SG", + "subtype": "3", + "area": "0.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 706, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:34:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:36Z", + "aquifer_name": null, + "location_description": "Gabriola; Northern area", + "material": "B", + "subtype": "5a", + "area": "5.9", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 707, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:40:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:43Z", + "aquifer_name": null, + "location_description": "China Cr; E Alb. In; 8km S of Pt Alberni", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 708, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:42:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:50Z", + "aquifer_name": null, + "location_description": "E side Alberni In; 8 km S of Port Alberni", + "material": "B", + "subtype": "6b", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 709, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:44:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:15:59Z", + "aquifer_name": null, + "location_description": "Gabriola; excluding northern portion", + "material": "B", + "subtype": "5a", + "area": "46.8", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 710, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:46:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:06Z", + "aquifer_name": null, + "location_description": "South Pender", + "material": "B", + "subtype": "5a", + "area": "9.1", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 711, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:48:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:12Z", + "aquifer_name": null, + "location_description": "North Pender; northern area", + "material": "B", + "subtype": "5a", + "area": "11.3", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 712, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:49:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:21Z", + "aquifer_name": null, + "location_description": "North Pender; Port Browning", + "material": "B", + "subtype": "5a", + "area": "6.3", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 713, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:50:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:28Z", + "aquifer_name": null, + "location_description": "Quilchena Cr; S shore of Nicola Lake", + "material": "SG", + "subtype": "1c", + "area": "3.5", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 714, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:53:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:37Z", + "aquifer_name": null, + "location_description": "Nicola Lake Indian Reserve", + "material": "SG", + "subtype": "1c", + "area": "3.1", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 715, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:55:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:45Z", + "aquifer_name": null, + "location_description": "mouths of Moore and Stumplake Creeks", + "material": "SG", + "subtype": "1b", + "area": "4.3", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 716, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T14:58:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:30:07Z", + "aquifer_name": "Spences Bridge", + "location_description": "confluence of Nicola and Thompson Rivers", + "material": "SG", + "subtype": "1b", + "area": "0.4", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 717, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:00:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:16:58Z", + "aquifer_name": null, + "location_description": "S of Ashcroft; E side of Thompson River", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 718, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:02:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:17:09Z", + "aquifer_name": null, + "location_description": "Ashcroft; Ashcroft Ranch", + "material": "SG", + "subtype": "4a", + "area": "3.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 719, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:04:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:17:16Z", + "aquifer_name": null, + "location_description": "Ashcroft; W side of Thompson River", + "material": "SG", + "subtype": "1b", + "area": "7.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 720, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:06:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:17:23Z", + "aquifer_name": null, + "location_description": "North Pender; southern portioin", + "material": "B", + "subtype": "5a", + "area": "9.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 721, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:08:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:17:32Z", + "aquifer_name": null, + "location_description": "Saltspring Island; north part", + "material": "B", + "subtype": "5a", + "area": "47.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2005, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 722, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:11:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:17:39Z", + "aquifer_name": null, + "location_description": "Saltspring Is; central part; Ganges area", + "material": "B", + "subtype": "6b", + "area": "84.4", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2005, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 723, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:17:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:17:46Z", + "aquifer_name": null, + "location_description": "Saltspring Island", + "material": "B", + "subtype": "6b", + "area": "51.3", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2005, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 724, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:19:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:31:35Z", + "aquifer_name": "West of Merritt", + "location_description": "Nicola R fldpln between Canford & Coyle", + "material": "SG", + "subtype": "1c", + "area": "5.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 725, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:21:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:47:00Z", + "aquifer_name": "Spius Creek West of Canford", + "location_description": "s of Nicola R & Spius Cr con; W of Canford", + "material": "B", + "subtype": "6b", + "area": "9.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 726, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:23:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:48:33Z", + "aquifer_name": "Canford", + "location_description": "Nicola R & Spius Cr con; w of Canford", + "material": "SG", + "subtype": "4b", + "area": "5.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 727, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:24:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:18:17Z", + "aquifer_name": null, + "location_description": "Cherry Cr valley; SW of Kamloops", + "material": "B", + "subtype": "6b", + "area": "29.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 728, + "fields": { + "create_user": "WELLS", + "create_date": "2005-07-05T15:26:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:18:25Z", + "aquifer_name": null, + "location_description": "Cherry Cr valley; SW of Kamloops", + "material": "SG", + "subtype": "4b", + "area": "8.4", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2004, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 729, + "fields": { + "create_user": "WELLS", + "create_date": "2005-10-11T10:24:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:18:32Z", + "aquifer_name": null, + "location_description": "South Thetis Island", + "material": "B", + "subtype": "5a", + "area": "0.6", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Mesozoic, upper cretaceous", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 730, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-06T15:25:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:18:40Z", + "aquifer_name": "730", + "location_description": "South East Thetis Island", + "material": "B", + "subtype": "5a", + "area": "2.7", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Northumberland Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 731, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-06T15:28:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:18:47Z", + "aquifer_name": "731", + "location_description": "Thetis Island", + "material": "B", + "subtype": "5a", + "area": "6.8", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 732, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:40:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:18:55Z", + "aquifer_name": "732", + "location_description": "Thetis Island", + "material": "B", + "subtype": "5a", + "area": "1.3", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 733, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:44:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:02Z", + "aquifer_name": null, + "location_description": "Norway Island", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "M", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous De Courcy Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 734, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:46:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:11Z", + "aquifer_name": null, + "location_description": "Dayman Island", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 735, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:49:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:17Z", + "aquifer_name": null, + "location_description": "Saturna Island - east", + "material": "B", + "subtype": "5a", + "area": "1.4", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Mesozoic, Geoffrey Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 736, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:49:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:25Z", + "aquifer_name": null, + "location_description": "Saturna Island - north", + "material": "B", + "subtype": "5a", + "area": "2.6", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Geoffrey Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 737, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:55:02Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:31Z", + "aquifer_name": null, + "location_description": "Saturna Island - west", + "material": "B", + "subtype": "5a", + "area": "2.9", + "vulnerability": "M", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Mesozoic, Northumberland Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 738, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:57:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:38Z", + "aquifer_name": null, + "location_description": "Saturna Island - west", + "material": "B", + "subtype": "5a", + "area": "0.3", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Northumberland Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 739, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T09:58:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:45Z", + "aquifer_name": null, + "location_description": "Denman Island - east", + "material": "SG", + "subtype": "4b", + "area": "4.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Cenozoic, Quaternary glacial and post glacial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 740, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:00:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:52Z", + "aquifer_name": null, + "location_description": "Denman Island", + "material": "B", + "subtype": "5a", + "area": "47.7", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Mesozoic, upper cretaceous De Courcy", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 741, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:03:02Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:19:59Z", + "aquifer_name": null, + "location_description": "Hudson Island", + "material": "B", + "subtype": "5a", + "area": "0.2", + "vulnerability": "M", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous De Courcy Formation", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 742, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:45:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:06Z", + "aquifer_name": null, + "location_description": "Scot Island", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "M", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, upper cretaceous De Courcy", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 743, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:47:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:12Z", + "aquifer_name": null, + "location_description": "Bowen Island, Gafton Lake Valley", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial and glacio-fluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 744, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:50:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:24Z", + "aquifer_name": null, + "location_description": "Bowen Island - SW", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial and glacio-fluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 745, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:53:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:27Z", + "aquifer_name": null, + "location_description": "Bowen Island - North", + "material": "B", + "subtype": "6b", + "area": "10.4", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 746, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:54:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:35Z", + "aquifer_name": null, + "location_description": "Central Bowen Island", + "material": "B", + "subtype": "6b", + "area": "14.9", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Lower to Middle Jurassic", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 747, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:56:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:42Z", + "aquifer_name": null, + "location_description": "Bowen Island - South and SE", + "material": "B", + "subtype": "6b", + "area": "15.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 748, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T10:58:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:49Z", + "aquifer_name": null, + "location_description": "Bowen Island - west", + "material": "B", + "subtype": "6b", + "area": "5.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 749, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:00:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:20:56Z", + "aquifer_name": null, + "location_description": "Bowen Island - SW", + "material": "B", + "subtype": "6b", + "area": "4.1", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Lower Jurassic to Middle Jurassic Bowen Island Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 750, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:01:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:21:03Z", + "aquifer_name": null, + "location_description": "Mayne Island, east of Village Bay", + "material": "SG", + "subtype": "4b", + "area": "0.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 751, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:03:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:50:19Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 752, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:06:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:50:25Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 753, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:08:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:50:33Z", + "aquifer_name": "753", + "location_description": "Quadra Island, Quatheiaski Cove", + "material": "SG", + "subtype": "4b", + "area": "3.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 754, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:12:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:50:41Z", + "aquifer_name": "754", + "location_description": "Quathiaski Cove, Quadra Island", + "material": "B", + "subtype": "6b", + "area": "2.3", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic Rk, Late Mesozoic; noted as basalt on well records", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 755, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:15:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:50:49Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 756, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:17:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:02Z", + "aquifer_name": "756", + "location_description": "Quadra Is between Gowlland & Drew Harbours", + "material": "B", + "subtype": "6b", + "area": "5.7", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic Rk, Late Mesozoic; Noted as Basalt or Granite on well records.", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 757, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:18:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:09Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "B", + "subtype": "6b", + "area": "0.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Late mesozoic", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 758, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:20:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:17Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "B", + "subtype": "6b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Late Mesozoic", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 759, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:21:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:25Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "B", + "subtype": "6b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Late Mesozoic", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 760, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:23:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:33Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "B", + "subtype": "6b", + "area": "0.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Late Mesozoic", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 761, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:25:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:41Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "SG", + "subtype": "3", + "area": "0.1", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial Fan", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 762, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:26:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:48Z", + "aquifer_name": null, + "location_description": "Quadra Island", + "material": "SG", + "subtype": "4b", + "area": "1.6", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fraser glacial drift - probably Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 763, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:28:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:51:55Z", + "aquifer_name": null, + "location_description": "Port McNeil", + "material": "B", + "subtype": "5a", + "area": "0.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Mesozoic, Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 764, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:29:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:02Z", + "aquifer_name": null, + "location_description": "Port McNeil - east", + "material": "SG", + "subtype": "4b", + "area": "3.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Likely glacio-fluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 765, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:32:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:09Z", + "aquifer_name": null, + "location_description": "South of Tumbler Ridge", + "material": "B", + "subtype": null, + "area": "2.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Fort St. John Group", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 766, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:34:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:17Z", + "aquifer_name": null, + "location_description": "Anahim- E of Tweedsmuir Park", + "material": "SG", + "subtype": "4b", + "area": "2.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Outwash gravel and glaciolacustrine deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 767, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:37:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:23Z", + "aquifer_name": null, + "location_description": "Anahim \u0096 east of Tweedsmuir Park", + "material": "B", + "subtype": "6a", + "area": "0.7", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "unknown", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 768, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:38:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:30Z", + "aquifer_name": null, + "location_description": "Anahim \u0096 east of Tweedsmuir Park", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 769, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:40:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:37Z", + "aquifer_name": null, + "location_description": "Clearwater \u0096 North of Kamloops", + "material": "SG", + "subtype": "3", + "area": "9.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Alluvial fans", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 770, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:41:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:45Z", + "aquifer_name": null, + "location_description": "Clearwater \u0096 North of Kamloops", + "material": "SG", + "subtype": "1b", + "area": "2.6", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 771, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:43:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:52Z", + "aquifer_name": null, + "location_description": "Clearwater \u0096 North of Kamloops", + "material": "B", + "subtype": "6b", + "area": "11.3", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely outwash gravel and glacio-lacustrine deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 772, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:44:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:52:59Z", + "aquifer_name": null, + "location_description": "Clearwater \u0096 North of Kamloops", + "material": "B", + "subtype": "6b", + "area": "2.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely outwash gravel and glacio-lacustrine deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 773, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:48:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:06Z", + "aquifer_name": null, + "location_description": "Clearwater \u0096 North of Kamloops", + "material": "SG", + "subtype": "4b", + "area": "1.7", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely outwash gravel and glacio-lacustrine deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 774, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:49:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:13Z", + "aquifer_name": null, + "location_description": "Upland area SW of Houston", + "material": "SG", + "subtype": "4b", + "area": "3.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 775, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:50:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:19Z", + "aquifer_name": null, + "location_description": "NE of Houston", + "material": "B", + "subtype": "6b", + "area": "1.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Jurassic and Cretaceous- Hazelton Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 776, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:50:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:27Z", + "aquifer_name": null, + "location_description": "Egmont", + "material": "B", + "subtype": "6b", + "area": "1.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Upper Cretaceous period and earlier, Mesozoic and Cenozoic era", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 777, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:50:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:34Z", + "aquifer_name": null, + "location_description": "Deadman Valley NW of Kamloops", + "material": "SG", + "subtype": "1c", + "area": "7.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Quaternary, post-Fraser Glaciation fluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 778, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:50:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:41Z", + "aquifer_name": null, + "location_description": "Pym Island, N of Swartz Bay", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 779, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:51:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:49Z", + "aquifer_name": null, + "location_description": "Knapp Island, N of Swartz Bay", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 780, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:53:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:53:56Z", + "aquifer_name": null, + "location_description": "Goudge Island, east of Swartz Bay", + "material": "B", + "subtype": "5a", + "area": "0.2", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 781, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:54:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:03Z", + "aquifer_name": null, + "location_description": "Kolb Island, East of Swartz Bay", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 782, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:56:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:12Z", + "aquifer_name": null, + "location_description": "Fernie Island, East of Swartz Bay", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 783, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:57:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:20Z", + "aquifer_name": null, + "location_description": "Coal Island, N of Swartz Bay", + "material": "B", + "subtype": "5a", + "area": "1.4", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 784, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T11:58:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:28Z", + "aquifer_name": null, + "location_description": "Forrest Island, East of Sidney", + "material": "B", + "subtype": "5a", + "area": "0.2", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 785, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:00:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:36Z", + "aquifer_name": null, + "location_description": "Comet Island, East of Sidney", + "material": "B", + "subtype": "5a", + "area": "0.1", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured sedimentary bedrock of Upper Cretaceous Nanaimo Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 786, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:01:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:45Z", + "aquifer_name": null, + "location_description": "Sidney Island, North End", + "material": "S", + "subtype": "4b", + "area": "2.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Possibly Quadra Sand", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 787, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:03:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:54:53Z", + "aquifer_name": null, + "location_description": "Sidney Island, South End", + "material": "B", + "subtype": "6b", + "area": "4.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Fractured rocks; mapped as Vancouver Volcanics of Lower Jurassic", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 788, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:05:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:28:50Z", + "aquifer_name": null, + "location_description": "SW of Terrace, northshore of Skeena River", + "material": "B", + "subtype": "6b", + "area": "1.9", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured bedrock, Lower Jurassic Hazleton Group", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 789, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:07:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:56:27Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 788", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 790, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:09:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:50:39Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 575", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 791, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:10:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:55:25Z", + "aquifer_name": null, + "location_description": "South of Terrace, near Terrace Airport", + "material": "SG", + "subtype": "4b", + "area": "3.1", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 792, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:12:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:55:31Z", + "aquifer_name": null, + "location_description": "West shore of Lakelse Lake", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 793, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:13:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:55:39Z", + "aquifer_name": null, + "location_description": "East shore of Lakelse Lake", + "material": "SG", + "subtype": "4a", + "area": "2.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial floodlplain deposits", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 794, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:14:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:55:46Z", + "aquifer_name": null, + "location_description": "South of Lakelse Lake", + "material": "SG", + "subtype": "4a", + "area": "11.7", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 795, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:16:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:55:55Z", + "aquifer_name": null, + "location_description": "Two Mile, NW of New Hazleton", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 796, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:18:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:56:02Z", + "aquifer_name": null, + "location_description": "New Hazleton", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 797, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:19:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:56:09Z", + "aquifer_name": null, + "location_description": "Kispiox Village", + "material": "SG", + "subtype": "1c", + "area": "1.2", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial terrace deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 798, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:21:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:56:18Z", + "aquifer_name": null, + "location_description": "North of Kispiox Village", + "material": "SG", + "subtype": "1c", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial terrace deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 799, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T12:23:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T13:56:25Z", + "aquifer_name": null, + "location_description": "Valemont", + "material": "SG", + "subtype": "4b", + "area": "7.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits, fan deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 800, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:39:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:10:58Z", + "aquifer_name": "South Valemont", + "location_description": "Valemont", + "material": "SG", + "subtype": "4b", + "area": "17.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 801, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:42:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:11:05Z", + "aquifer_name": null, + "location_description": "Revelstoke \u0096 West", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 802, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:44:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:11:13Z", + "aquifer_name": null, + "location_description": "Revelstoke \u0096 South", + "material": "SG", + "subtype": "4a", + "area": "2.2", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 803, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:45:49Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:11:42Z", + "aquifer_name": null, + "location_description": "Revelstoke \u0096 Townsite", + "material": "SG", + "subtype": "3", + "area": "0.6", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvium material", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 804, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:47:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:11:49Z", + "aquifer_name": null, + "location_description": "Shuswap River \u0096 east of Enderby", + "material": "B", + "subtype": "6b", + "area": "5.7", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "unknown", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 805, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:48:49Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:11:55Z", + "aquifer_name": null, + "location_description": "West of Mabel Lake \u0096 East of Enderby", + "material": "B", + "subtype": "6b", + "area": "2.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "unknown", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 806, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:50:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:12:02Z", + "aquifer_name": null, + "location_description": "Shuswap River - east of Enderby", + "material": "SG", + "subtype": "4b", + "area": "1.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 807, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:52:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:12:08Z", + "aquifer_name": null, + "location_description": "N Thompson River", + "material": "SG", + "subtype": "1b", + "area": "16.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 808, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:54:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:12:14Z", + "aquifer_name": "Anarchist Mountain", + "location_description": "East of Osoyoos, Anarchist Mountain", + "material": "B", + "subtype": "6b", + "area": "18.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Metamorphic rock; Mesozoic era; granite and alkali", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 809, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:55:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:12:22Z", + "aquifer_name": null, + "location_description": "East of Osoyoos", + "material": "SG", + "subtype": "4b", + "area": "2.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 810, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:57:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:12:57Z", + "aquifer_name": "810", + "location_description": "East of Osoyoos", + "material": "B", + "subtype": "6b", + "area": "7.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Metamorphic; Anarchist Form; Paleozoic; greenstone & greenschist.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 811, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T13:59:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:10Z", + "aquifer_name": null, + "location_description": "North of Grand Forks", + "material": "SG", + "subtype": "1b", + "area": "2.0", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 812, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:00:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:17Z", + "aquifer_name": null, + "location_description": "North of Grand Forks", + "material": "B", + "subtype": "6b", + "area": "1.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Attwood Group (north), Grand Forks Group (south)", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 813, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:02:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:23Z", + "aquifer_name": null, + "location_description": "North of Grand Forks", + "material": "B", + "subtype": "6b", + "area": "1.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Brooklyn Formation and Grand Forks Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 814, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:04:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:30Z", + "aquifer_name": null, + "location_description": "North of Grand Forks", + "material": "B", + "subtype": "6b", + "area": "0.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Carboniferous or Permian; Knob Hill Group", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 815, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:06:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:37Z", + "aquifer_name": null, + "location_description": "North of Grand Forks", + "material": "SG", + "subtype": "1b", + "area": "3.0", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial and glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 816, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:08:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:44Z", + "aquifer_name": null, + "location_description": "Canal Flats", + "material": "SG", + "subtype": "1a", + "area": "7.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial and glaciofluvial deposits", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 817, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:09:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:51Z", + "aquifer_name": null, + "location_description": "NE of Edgewater, Columbia River Valley", + "material": "SG", + "subtype": "4b", + "area": "4.5", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 818, + "fields": { + "create_user": "WELLS", + "create_date": "2006-04-10T14:11:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:13:58Z", + "aquifer_name": null, + "location_description": "South of Lakelse Lake", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 819, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:07:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:04Z", + "aquifer_name": null, + "location_description": "Highland Valley \u0096 W. of Logan Lk", + "material": "SG", + "subtype": "4b", + "area": "6.1", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 820, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:12:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:10Z", + "aquifer_name": null, + "location_description": "Highland Valley \u0096 W of Logan Lk", + "material": "SG", + "subtype": "4b", + "area": "6.0", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciaofluvial", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 821, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:17:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:16Z", + "aquifer_name": null, + "location_description": "Highland Valley \u0096 W of Logan Lk", + "material": "SG", + "subtype": "4b", + "area": "14.0", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 822, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:27:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:23Z", + "aquifer_name": null, + "location_description": "Logan Lake / SW of Kamloops", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 823, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:52:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:32Z", + "aquifer_name": null, + "location_description": "Logan Lake / SWof Kamloops", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 824, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:55:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:39Z", + "aquifer_name": null, + "location_description": "Highland Valley near Award Creek", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 825, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T10:57:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T12:58:32Z", + "aquifer_name": null, + "location_description": "Blue River- S of Valemont", + "material": "SG", + "subtype": "4a", + "area": "8.5", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 826, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:02:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:14:54Z", + "aquifer_name": "Nivek", + "location_description": "Guichon Creek \u0096S of Kamloops", + "material": "SG", + "subtype": "3", + "area": "0.7", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 827, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:03:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:01Z", + "aquifer_name": "Guichon Creek", + "location_description": "South of Mamit Lake", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 828, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:05:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:07Z", + "aquifer_name": null, + "location_description": "Dease Lake", + "material": "SG", + "subtype": "4b", + "area": "6.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 829, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:08:37Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:14Z", + "aquifer_name": null, + "location_description": "Wells", + "material": "SG", + "subtype": "4b", + "area": "0.9", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 830, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:15:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:21Z", + "aquifer_name": null, + "location_description": "S of Bella Coola R./ E of Bella Coola", + "material": "SG", + "subtype": "3", + "area": "2.7", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 831, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:17:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:27Z", + "aquifer_name": null, + "location_description": "S of Bella Coola R./ E of Bella Coola", + "material": "SG", + "subtype": "3", + "area": "1.1", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 832, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:20:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:33Z", + "aquifer_name": null, + "location_description": "S of Bella Coola R./ E of Bella Coola", + "material": "SG", + "subtype": "3", + "area": "3.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 833, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:23:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:38Z", + "aquifer_name": null, + "location_description": "S of Bella Coola R. /E of Nusatsum R.", + "material": "SG", + "subtype": "1b", + "area": "2.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 834, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:24:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:44Z", + "aquifer_name": null, + "location_description": "Savary Island", + "material": "SG", + "subtype": "4a", + "area": "4.9", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Quaternary Quadra Sands and Vashon Drift, sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 835, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:34:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:50Z", + "aquifer_name": null, + "location_description": "Mermaid Cove / E of Powell River", + "material": "B", + "subtype": "6b", + "area": "2.2", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Granite bedrock", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 836, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:36:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:15:57Z", + "aquifer_name": null, + "location_description": "Powell River,", + "material": "SG", + "subtype": "4b", + "area": "19.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 837, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:37:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:16:05Z", + "aquifer_name": null, + "location_description": "Powell River East", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 838, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:38:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:16:11Z", + "aquifer_name": null, + "location_description": "Powell River", + "material": "SG", + "subtype": "4b", + "area": "11.9", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial depsits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 839, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:40:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T10:19:12Z", + "aquifer_name": null, + "location_description": "Powell River", + "material": "SG", + "subtype": "4b", + "area": "12.9", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 840, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:43:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:16:25Z", + "aquifer_name": null, + "location_description": "Powell River, BC", + "material": "B", + "subtype": "6b", + "area": "30.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": "intrusive igneous granidiorite", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 841, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:45:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:16:32Z", + "aquifer_name": null, + "location_description": "S Cortes Island", + "material": "SG", + "subtype": "4b", + "area": "9.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 842, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:46:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:16:47Z", + "aquifer_name": null, + "location_description": "Cortes Island", + "material": "B", + "subtype": "6b", + "area": "2.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "intrusive igneous granidiorite", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 843, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:48:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:16:53Z", + "aquifer_name": null, + "location_description": "Cortes Island", + "material": "B", + "subtype": "6b", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "intrusive igneous granidiorite", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 844, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:50:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:17:01Z", + "aquifer_name": null, + "location_description": "Cortes Island", + "material": "B", + "subtype": "6b", + "area": "2.4", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "intrusive igneous granidiorite", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 845, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:52:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:17:07Z", + "aquifer_name": null, + "location_description": "Cortes Island", + "material": "B", + "subtype": "6b", + "area": "0.3", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "intrusive igneous granidiorite", + "mapping_year": 2006, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 846, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:53:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:17:14Z", + "aquifer_name": null, + "location_description": "Cortes Island", + "material": "B", + "subtype": "6b", + "area": "2.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "intrusive igneous granidiorite", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 847, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:55:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:17:20Z", + "aquifer_name": null, + "location_description": "Campbell River (south)", + "material": "SG", + "subtype": "4b", + "area": "14.3", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quadra sands", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 848, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:57:57Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": "848", + "location_description": null, + "material": null, + "subtype": "5a", + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 849, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:58:25Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": "Fortune Creek", + "location_description": "NE of Armstrong", + "material": "SG", + "subtype": null, + "area": "13.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 850, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:58:36Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": null, + "location_description": "Fellers Heights", + "material": "SG", + "subtype": null, + "area": "4.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "sand & gravel with some clay", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 851, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T11:58:48Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": null, + "location_description": "Dawson Creek", + "material": "SG", + "subtype": null, + "area": "866.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Confined sand and gravel aquifers of glacial or pre-glacial origin", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 852, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:07:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:17:48Z", + "aquifer_name": null, + "location_description": "Simms Creek S of Campbell River", + "material": "SG", + "subtype": "4b", + "area": "1.3", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 853, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:10:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:17:56Z", + "aquifer_name": null, + "location_description": "Willow Pt/Shelter Pt S of Campbell River", + "material": "SG", + "subtype": "4b", + "area": "3.4", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 854, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:12:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:02Z", + "aquifer_name": null, + "location_description": "Oyster Bay S of Campbell River", + "material": "SG", + "subtype": "4b", + "area": "1.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 855, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:12:41Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": "Reserve Aquifer 4 T Values", + "location_description": "Reserve Aquifer 4 T Values", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 856, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:13:55Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": "No Aquifer Defined", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 857, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:15:19Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": null, + "location_description": "Campbell River Airport", + "material": "SG", + "subtype": "4b", + "area": "2.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 858, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:16:37Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:24Z", + "aquifer_name": null, + "location_description": "Alert Bay \u0096 Cormorant Island", + "material": "SG", + "subtype": "4b", + "area": "4.5", + "vulnerability": "M", + "productivity": "H", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 859, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:17:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:31Z", + "aquifer_name": null, + "location_description": "Mitchell Bay / Malcolm Island", + "material": "SG", + "subtype": "4b", + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 860, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:19:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:37Z", + "aquifer_name": null, + "location_description": "Mouth of Peachland Creek, SW of Peachland", + "material": "SG", + "subtype": "4a", + "area": "0.1", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and fluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 861, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:21:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:44Z", + "aquifer_name": null, + "location_description": "Lower Peachland Creek watershed", + "material": "B", + "subtype": "6a", + "area": "7.0", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": "Triassic/Jurassic intrusive grandioritic rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 862, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:23:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:52Z", + "aquifer_name": null, + "location_description": "Mouth of Trepanier Creek NE of Peachland", + "material": "SG", + "subtype": "4b", + "area": "1.5", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 863, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:25:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:18:59Z", + "aquifer_name": null, + "location_description": "N Trepanier Creek Valley N of Peachland", + "material": "B", + "subtype": "6b", + "area": "8.8", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Penticton Group", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 864, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:29:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:05Z", + "aquifer_name": null, + "location_description": "Trepanier Cr. and Jack Cr, N of Peachland", + "material": "SG", + "subtype": "4b", + "area": "1.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 865, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:31:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:11Z", + "aquifer_name": null, + "location_description": "Heber R. and Gold R.", + "material": "SG", + "subtype": "1b", + "area": "0.3", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and fluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 866, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:34:25Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:18Z", + "aquifer_name": null, + "location_description": "Ashby Point,, Shuswap Lake", + "material": "B", + "subtype": "5b", + "area": "1.9", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Lower Paleozoic", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 867, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:36:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:24Z", + "aquifer_name": null, + "location_description": "Ashby Point, Shuswap Lake", + "material": "SG", + "subtype": "4a", + "area": "0.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and fluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 868, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:38:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:31Z", + "aquifer_name": null, + "location_description": "W of Paradise Point, Shuswap Lake", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 869, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:40:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:38Z", + "aquifer_name": null, + "location_description": "W of Paradise Point, Shuswap Lake", + "material": "B", + "subtype": "6b", + "area": "0.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Hydrinian to Paleozoic sedimentary", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 870, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:42:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:45Z", + "aquifer_name": null, + "location_description": "Knight Cr. at Paradise Point, Shuswap Lake", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 871, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:44:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:19:54Z", + "aquifer_name": null, + "location_description": "Lower Canoe Cr, E side of valley", + "material": "B", + "subtype": "5b", + "area": "2.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Lower Paleozoic", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 872, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:45:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:20:02Z", + "aquifer_name": null, + "location_description": "Canoe Creek, at Shuswap Lake", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 873, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:47:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:20:08Z", + "aquifer_name": null, + "location_description": "Edgewood", + "material": "SG", + "subtype": "4a", + "area": "3.9", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 874, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:48:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:20:15Z", + "aquifer_name": "874", + "location_description": "Edgewood", + "material": "SG", + "subtype": "4b", + "area": "1.8", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 875, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:50:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:20:22Z", + "aquifer_name": "875", + "location_description": "S of Radium, E side of Columbia Valley", + "material": "SG", + "subtype": "4b", + "area": "0.2", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 876, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:51:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:20:30Z", + "aquifer_name": "876", + "location_description": "Dry Gulch Creek, E side of Columbia Valley", + "material": "SG", + "subtype": "4b", + "area": "0.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 877, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:53:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:20:37Z", + "aquifer_name": "877", + "location_description": "Stoddart Creek, E side of Columbia Valley", + "material": "SG", + "subtype": "4b", + "area": "1.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 878, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:56:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:13:35Z", + "aquifer_name": "878", + "location_description": "Wilmer", + "material": "SG", + "subtype": "4b", + "area": "15.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 879, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:58:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:13:46Z", + "aquifer_name": "879", + "location_description": "Lillian Lake, NW of Wilmer Creek", + "material": "B", + "subtype": "5a", + "area": "89.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Upper Paleozoic", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 880, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T13:59:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:24:32Z", + "aquifer_name": "880", + "location_description": "Silverdale Cr, W of Mission City", + "material": "SG", + "subtype": "4b", + "area": "8.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 881, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:01:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:24:43Z", + "aquifer_name": "881", + "location_description": "NE of Mission City", + "material": "SG", + "subtype": "4b", + "area": "12.0", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 882, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:02:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:21:42Z", + "aquifer_name": "882", + "location_description": "NE of Mission City", + "material": "B", + "subtype": "6b", + "area": "16.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "fractured quartz diorite of Coast Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 883, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:04:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:21:49Z", + "aquifer_name": "883", + "location_description": "Iron Mt, E of Whonnock Lk", + "material": "B", + "subtype": "6b", + "area": "3.9", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "fractured quartz diorite of Coast Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 884, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:05:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-12-18T11:49:18Z", + "aquifer_name": "884", + "location_description": "Northshore Hayward Lake to Stave Lake", + "material": "SG", + "subtype": "4c", + "area": "14.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 885, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:07:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:22:03Z", + "aquifer_name": "885", + "location_description": "Northshore of Hayward Lake", + "material": "B", + "subtype": "6b", + "area": "1.7", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 886, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:09:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:25:05Z", + "aquifer_name": "886", + "location_description": "E of Hayward Lake, N of Hairsine Creek", + "material": "B", + "subtype": "6b", + "area": "32.0", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 887, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:10:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:25:16Z", + "aquifer_name": "887", + "location_description": "E of Stave Falls, Steelhead Creek", + "material": "B", + "subtype": "6b", + "area": "26.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 888, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:12:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:25:25Z", + "aquifer_name": "888", + "location_description": "Steelhead Valley", + "material": "SG", + "subtype": "4b", + "area": "6.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 889, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:13:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:25:35Z", + "aquifer_name": "889", + "location_description": "N end of Hatzic Valley", + "material": "SG", + "subtype": "4a", + "area": "4.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 890, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:17:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:22:40Z", + "aquifer_name": "890", + "location_description": "Mt Tom area, SE of Chilliwack", + "material": "B", + "subtype": "5a", + "area": "12.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Upper Jurassic Kent fromation", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 891, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:19:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:22:47Z", + "aquifer_name": "891", + "location_description": "Upper Young Cr. SE of Chilliwack", + "material": "B", + "subtype": "5a", + "area": "6.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Chilliwack Group", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 892, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:20:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:22:54Z", + "aquifer_name": "892", + "location_description": "N side of Chilliwack River Valley", + "material": "SG", + "subtype": "4b", + "area": "1.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 893, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:22:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:05Z", + "aquifer_name": "893", + "location_description": "N side of Chilliwack River Valley", + "material": "SG", + "subtype": "4b", + "area": "1.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 894, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:25:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:11Z", + "aquifer_name": "894", + "location_description": "N side of Chilliwack River Valley", + "material": "SG", + "subtype": "4b", + "area": "2.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 895, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:26:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:18Z", + "aquifer_name": "895", + "location_description": "N side of Chilliwack River Valley", + "material": "SG", + "subtype": "4b", + "area": "1.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 896, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:27:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:26Z", + "aquifer_name": "896", + "location_description": "E of Steelhead", + "material": "B", + "subtype": "6b", + "area": "0.7", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 897, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:28:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:25:46Z", + "aquifer_name": "897", + "location_description": "N shore Allouette River", + "material": "B", + "subtype": "6b", + "area": "8.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 898, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:30:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:43Z", + "aquifer_name": "898", + "location_description": "Westside N Allouette River", + "material": "B", + "subtype": "6b", + "area": "0.4", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 899, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:31:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:51Z", + "aquifer_name": "899", + "location_description": "Ford Creek area, SE of Chilliwack", + "material": "B", + "subtype": "5a", + "area": "8.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Chilliwack Group", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 900, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:33:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:23:58Z", + "aquifer_name": "900", + "location_description": "Sointula / Malcolm Island", + "material": "SG", + "subtype": "4b", + "area": "3.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 901, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:35:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:04Z", + "aquifer_name": "901", + "location_description": "Sointula / Malcolm Island", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 902, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:36:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:09Z", + "aquifer_name": "Port McNeil", + "location_description": "Pt. McNeil", + "material": "SG", + "subtype": "4b", + "area": "1.0", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2009, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 903, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:37:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:15Z", + "aquifer_name": null, + "location_description": "East of Dawson Creek", + "material": "SG", + "subtype": null, + "area": "33.9", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Confined sand and gravel aquifers of glacial or pre-glacial origin", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 904, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:38:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:21Z", + "aquifer_name": "904", + "location_description": "Pt. Hardy", + "material": "B", + "subtype": "5a", + "area": "0.9", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Nanaimo Group of Late Cretaceous Age", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 905, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:40:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:27Z", + "aquifer_name": "905", + "location_description": "Ft. Rupert", + "material": "B", + "subtype": "5a", + "area": "4.8", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Nanaimo Group of Late Cretaceous Age", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 906, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:41:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:33Z", + "aquifer_name": "906", + "location_description": "Ft. Rupert", + "material": "SG", + "subtype": "4b", + "area": "2.2", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 907, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:43:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:40Z", + "aquifer_name": "907", + "location_description": "Coal Harbour S of Pt. Hardy", + "material": "B", + "subtype": "5a", + "area": "1.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Nanaimo Group of Late Cretaceous Age", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 908, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:45:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:46Z", + "aquifer_name": null, + "location_description": "North bank of Halfway River", + "material": "SG", + "subtype": null, + "area": "22.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Terrace deposits of sand & gravel", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 909, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:47:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:24:54Z", + "aquifer_name": "909", + "location_description": "Indian Point - Savary Island", + "material": "SG", + "subtype": "4a", + "area": "0.2", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": "Quaternary Quadra sands", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 910, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:47:25Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T14:25:01Z", + "aquifer_name": null, + "location_description": "East Williston Lake", + "material": "SG", + "subtype": null, + "area": "36.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial deposits of sand & gravel", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 911, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:48:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:07:55Z", + "aquifer_name": "911", + "location_description": "N of Deka Lake and E of 100 Mile House", + "material": "B", + "subtype": "6a", + "area": "1.7", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic bedrock", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 912, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:50:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:08:04Z", + "aquifer_name": "912", + "location_description": "W of Bridge Lk /SEof 100 Mile House", + "material": "SG", + "subtype": "4b", + "area": "1.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 913, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:51:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:08:12Z", + "aquifer_name": "913", + "location_description": "S of Deka Lake and E of 100 Mile House.", + "material": "SG", + "subtype": "4b", + "area": "1.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 914, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:53:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:09:02Z", + "aquifer_name": "914", + "location_description": "SW of Deka Lake and E of 100 Mile House.", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 915, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:55:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:09:12Z", + "aquifer_name": "915", + "location_description": "Sulphurous Lake / E of 100 Mile House", + "material": "B", + "subtype": "6a", + "area": "1.2", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic bedrock (basalt)", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 916, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:57:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:17:47Z", + "aquifer_name": "916", + "location_description": "N of Sulphurous Lake/ E of 100 Mile House", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 917, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:57:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:17:56Z", + "aquifer_name": null, + "location_description": "Near East Pine", + "material": "B", + "subtype": null, + "area": "58.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 918, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T14:58:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:18:14Z", + "aquifer_name": "918", + "location_description": "N of Bridge Lake / E of 100 Mile House", + "material": "SG", + "subtype": "4b", + "area": "4.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 919, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:00:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:18:29Z", + "aquifer_name": "919", + "location_description": "NE of Bridge Lake/ E of 100 Mile House", + "material": "B", + "subtype": "6a", + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic bedrock", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 920, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:02:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:18:46Z", + "aquifer_name": "920", + "location_description": "Kelly Lake/ SWof Clinton", + "material": "SG", + "subtype": "4b", + "area": "6.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 921, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:03:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:23:19Z", + "aquifer_name": "921", + "location_description": "Clinton", + "material": "SG", + "subtype": "4b", + "area": "4.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 922, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:04:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:23:25Z", + "aquifer_name": "922", + "location_description": "3 Mile Lake / SE of Clinton", + "material": "B", + "subtype": "5a", + "area": "0.6", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Cretaceous sandstone", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 923, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:05:44Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": null, + "location_description": "Moberly Lake", + "material": "SG", + "subtype": null, + "area": "61.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Glaciofluvial deposits of sand, gravel & silt", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 924, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:06:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:23:52Z", + "aquifer_name": "924", + "location_description": "Mossum Creek area near Anmore", + "material": "SG", + "subtype": "4b", + "area": "4.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 925, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:08:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:23:58Z", + "aquifer_name": "925", + "location_description": "Partington Creek near Port Coquitlam", + "material": "B", + "subtype": "6b", + "area": "5.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "fractured quarz diorite of Coast Plutonic Rocks", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 926, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:09:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:24:06Z", + "aquifer_name": "926", + "location_description": "N side of Pitt River Valley", + "material": "SG", + "subtype": "4b", + "area": "2.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 927, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2007-08-14T15:12:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:24:22Z", + "aquifer_name": "927", + "location_description": "W side of Burk Mt, E Coquitlam R. Valley", + "material": "SG", + "subtype": "4b", + "area": "2.3", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial and glacioalcustrine deposits", + "mapping_year": 2007, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 928, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2010-03-09T10:01:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:24:37Z", + "aquifer_name": null, + "location_description": "Lynx Creek &Peace River", + "material": "B", + "subtype": "5a", + "area": "37.4", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fort St John Group (sedimentary)", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 929, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2011-06-21T14:12:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:24:56Z", + "aquifer_name": null, + "location_description": "North pine River at Nelson Creek", + "material": "SG", + "subtype": "1b", + "area": "10.4", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Terrace deposits of gravel sheets and sand", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 930, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2011-06-21T14:16:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:25:04Z", + "aquifer_name": null, + "location_description": "South Pine River at Nelson Creek", + "material": "SG", + "subtype": "1b", + "area": "16.7", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Terrace deposits of gravel sheets & sand", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 931, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2011-06-21T14:20:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-27T09:52:54Z", + "aquifer_name": null, + "location_description": "E. of Blueberry River, N. of Fort St John", + "material": "B", + "subtype": null, + "area": "964.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation (Sedimentary)", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 932, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2011-06-21T14:24:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:25:58Z", + "aquifer_name": null, + "location_description": "Wononon, betwix Blueberry & Cameron Rivers", + "material": "B", + "subtype": "5a", + "area": "23.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Dunvegan Formation (sedimentary)", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 933, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2011-06-21T14:28:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:26:10Z", + "aquifer_name": null, + "location_description": "Cecil Lake, North Peace River", + "material": "B", + "subtype": "5a", + "area": "1119.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Dunvegan Formation", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 934, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2011-06-21T14:36:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:26:18Z", + "aquifer_name": null, + "location_description": "Between the Halway & Cameron Rivers", + "material": "B", + "subtype": "5a", + "area": "58.3", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fort St. John Group", + "mapping_year": 2011, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 935, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:10:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:26:30Z", + "aquifer_name": "935", + "location_description": "Keremeos Creek Valley", + "material": "SG", + "subtype": "4b", + "area": "5.2", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 936, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:10:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:26:37Z", + "aquifer_name": "936", + "location_description": "East of Osoyoos, Anarchist Mountain", + "material": "B", + "subtype": "6b", + "area": "16.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Metamorphic rock; Anarchist Form; Paleozoic Era; Greenstone & Greenschist", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 937, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:11:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:26:45Z", + "aquifer_name": "937", + "location_description": "Keremeos Creek Valley", + "material": "B", + "subtype": "5a", + "area": "4.7", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary rock; Shoemaker Form; Paleo to Meso Era; chert, tuff & greenstone", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 938, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:11:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:26:55Z", + "aquifer_name": "938", + "location_description": "Hayman Mtn, S of Lambly Ck", + "material": "B", + "subtype": "6b", + "area": "8.3", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic Rk,Harper Ranch Group, Paleozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 939, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:11:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:27:03Z", + "aquifer_name": "939", + "location_description": "Wilson Landing", + "material": "B", + "subtype": "6b", + "area": "8.9", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Volcanic Rock; Harper Ranch Grp; Paleozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 940, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:11:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:27:14Z", + "aquifer_name": "940", + "location_description": "Hayman Mtn., north of Lambly Ck", + "material": "B", + "subtype": "6b", + "area": "2.6", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Igneous intrusive, metamorphic, meta-sedimentary, meta-volcanic, volcanic", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 941, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:12:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:27:24Z", + "aquifer_name": "941", + "location_description": "West side of Okanagan Lk; near Ceasars", + "material": "B", + "subtype": "6b", + "area": "12.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Intrusive rock; Mesozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 942, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:12:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:27:32Z", + "aquifer_name": "942", + "location_description": "Aspen Road and Misery Bay", + "material": "B", + "subtype": "6b", + "area": "5.7", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Metavolcanic rk; Leech River Complex; includes metabasalt", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 943, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:12:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:27:50Z", + "aquifer_name": "943", + "location_description": "Jordan River to Rosemond Creek, Vancouver", + "material": "B", + "subtype": "6b", + "area": "16.3", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Carmanah Group; undivided sed. rks; Metchosin Igneous Complex; Basaltic rks", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 944, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:12:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:06Z", + "aquifer_name": "944", + "location_description": "Jordan River to Uglow Creek, Vancouver", + "material": "SG", + "subtype": "4b", + "area": "2.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 945, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:13:02Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:15Z", + "aquifer_name": "945", + "location_description": "North-eastern shore of Cowichan Lake", + "material": "B", + "subtype": "5a", + "area": "15.6", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured shales & sandstones; Nanaimo Group; Upper Cretaceous Period.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 946, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:13:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:23Z", + "aquifer_name": "946", + "location_description": "North-eastern shore of Cowichan Lake", + "material": "B", + "subtype": "6b", + "area": "3.7", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured volcanic rk; McLaughlin Ridge Form; Devonian Period.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 947, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:13:25Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:30Z", + "aquifer_name": "947", + "location_description": "East shore of Mesachie Lake", + "material": "G", + "subtype": "4b", + "area": "1.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan and glacio-fluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 948, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:13:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:37Z", + "aquifer_name": "948", + "location_description": "West shore of Marble Bay, Cowichan Lake", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacial-fluvial outwash channels of gravel and medium sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 949, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:13:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:48Z", + "aquifer_name": "949", + "location_description": "East shore of Mesachie Lake", + "material": "SG", + "subtype": "1b", + "area": "2.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Alluvial fan and glacio-fluvial deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 950, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:14:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:28:56Z", + "aquifer_name": "950", + "location_description": "Courtenay Airport, Courtenay", + "material": "B", + "subtype": "5a", + "area": "4.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sed rks of Comox Form.Nanaimo Grp.; Granite; Karmutsen Form.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 951, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:14:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:29:08Z", + "aquifer_name": "951", + "location_description": "Puntledge to Courtenay", + "material": "SG", + "subtype": "4a", + "area": "12.7", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Capilano Sediments; likely sand $ gravel lenses within till deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 952, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:14:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:29:18Z", + "aquifer_name": "952", + "location_description": "North of Puntledge River", + "material": "SG", + "subtype": "4a", + "area": "3.6", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Capilano Sediments, likley sand $ gravel lenses within till deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 953, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:14:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:29:29Z", + "aquifer_name": "953", + "location_description": "Pearson Island", + "material": "B", + "subtype": "6b", + "area": "0.1", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Bedrock; fractured granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 954, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:14:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:29:44Z", + "aquifer_name": "954", + "location_description": "Sakinaw Lake near Steep Spring", + "material": "B", + "subtype": "6b", + "area": "1.5", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Bedrock; fractured granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 955, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:15:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:29:52Z", + "aquifer_name": "955", + "location_description": "Gunboat Bay; Sunshine Coast", + "material": "B", + "subtype": "6b", + "area": "0.6", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Bedrock; fractured granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 956, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:15:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:30:01Z", + "aquifer_name": "956", + "location_description": "Lily Lake, Sunshine Coast", + "material": "B", + "subtype": "6b", + "area": "2.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Bedrock; fractured granite", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 957, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:15:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:30:10Z", + "aquifer_name": "957", + "location_description": "Shuttle Bay to the Malaspina Peninsula", + "material": "B", + "subtype": "6b", + "area": "12.3", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likley dioritic intrusive rocks; Early Cretaceous Period", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 958, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:15:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:30:21Z", + "aquifer_name": "958", + "location_description": "South of Okeover Arm Provincial Park", + "material": "B", + "subtype": "6b", + "area": "3.2", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely dioritic intrusive rocks; Early Cretaceous Period", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 959, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:15:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:30:34Z", + "aquifer_name": "959", + "location_description": "Hurtado Point", + "material": "B", + "subtype": "6b", + "area": "7.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely dioritic intrusive rocks; Early Cretaceous Period", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 960, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:15:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:30:43Z", + "aquifer_name": "960", + "location_description": "Lund, BC", + "material": "B", + "subtype": "6b", + "area": "3.3", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely dioritic rocks; Early Cretaceous Period", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 961, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:16:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:55:52Z", + "aquifer_name": "961", + "location_description": "Coast near Altrevida Reef", + "material": "SG", + "subtype": "4b", + "area": "0.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "deposits of gravel and coarse sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 962, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:16:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:56:00Z", + "aquifer_name": "962", + "location_description": "Ladysmith, BC", + "material": "SG", + "subtype": "4a", + "area": "0.6", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily gravel and sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 963, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:16:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:56:13Z", + "aquifer_name": "963", + "location_description": "Nanaimo River Road near Berkley Creek", + "material": "B", + "subtype": "5a", + "area": "5.1", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Several formations of the Nanaimo Series, Upper Creatceous", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 964, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:16:49Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:56:20Z", + "aquifer_name": "964", + "location_description": "Cassidy \u0096 Nanaimo Airport", + "material": "B", + "subtype": "5a", + "area": "17.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Cretaceous sandstone & shale, primarily DeCourcy Form., Nanaimo Series", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 965, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:16:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:56:35Z", + "aquifer_name": "965", + "location_description": "Ruxton Island", + "material": "B", + "subtype": "5a", + "area": "1.0", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": "Upper Cretaceous Geoffrey Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 966, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:17:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:56:44Z", + "aquifer_name": "966", + "location_description": "Valdes Island", + "material": "B", + "subtype": "5a", + "area": "24.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Upper Cretaceous; Geoffrey & De Courcy Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 967, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:17:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:56:55Z", + "aquifer_name": "967", + "location_description": "Reid Island", + "material": "B", + "subtype": "5a", + "area": "1.0", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "pper Cretaceous; Geoffrey & De Courcy Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 968, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:17:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:57:04Z", + "aquifer_name": "968", + "location_description": "De Courcy Island", + "material": "B", + "subtype": "5a", + "area": "2.0", + "vulnerability": "H", + "productivity": "L", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Upper Cretaceous Geoffrey Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 969, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:17:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:57:13Z", + "aquifer_name": "969", + "location_description": "Sumas mountain", + "material": "B", + "subtype": "5a", + "area": "21.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary rk; Kitsilano Formation; Cenozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 970, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:17:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:25:55Z", + "aquifer_name": "970", + "location_description": "South of Grant Hill", + "material": "SG", + "subtype": "4b", + "area": "15.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sumas Drift and Fort Langley Formation", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 971, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:18:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:26:06Z", + "aquifer_name": "971", + "location_description": "Southwest shore of Stave Lake", + "material": "SG", + "subtype": "1a", + "area": "1.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 972, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:18:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:57:36Z", + "aquifer_name": "972", + "location_description": "Sargeant Bay; Kenyon Ck, Sechelt", + "material": "B", + "subtype": "6b", + "area": "3.8", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily granodioritic intrusive rocks of early Cretaceous Period", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 973, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:18:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:57:44Z", + "aquifer_name": "973", + "location_description": "North Thormanby Island", + "material": "S", + "subtype": "4b", + "area": "1.6", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand, silty sand, and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 974, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:19:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:57:51Z", + "aquifer_name": "974", + "location_description": "Gowlland Harbour, Quadra Island", + "material": "SG", + "subtype": "4b", + "area": "0.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 975, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:19:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:57:58Z", + "aquifer_name": "975", + "location_description": "East shore of McIvor Lake", + "material": "SG", + "subtype": "4a", + "area": "3.5", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial sand & gravel; w lenses of fine & med sands", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 976, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:19:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:58:06Z", + "aquifer_name": "976", + "location_description": "Flintoff Creek", + "material": "S", + "subtype": "4b", + "area": "0.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely Quadra Sand", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 977, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:19:39Z", + "update_user": "WELLS", + "update_date": "2016-04-07T13:13:15Z", + "aquifer_name": "977", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 978, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:19:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-20T13:55:54Z", + "aquifer_name": "Retired in 2017", + "location_description": "Merged with Aquifer 115", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 979, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:20:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-12T15:29:33Z", + "aquifer_name": "979", + "location_description": "Quesnel, east side of the Fraser River", + "material": "B", + "subtype": null, + "area": "57.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary rock, Endako Group, Cenozoic Era", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 980, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:20:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:58:59Z", + "aquifer_name": "980", + "location_description": "NW of Quesnel, E of Bouchie Lake", + "material": "S", + "subtype": "6b", + "area": "2.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Late Fraser Drift", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 981, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:20:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:59:08Z", + "aquifer_name": "981", + "location_description": "Bouchie Lake, Northwest of Quesnel", + "material": "SG", + "subtype": "4a", + "area": "2.8", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 982, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:20:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:59:17Z", + "aquifer_name": "982", + "location_description": "Confluence of Arrow Ck and Goat R.", + "material": "B", + "subtype": "4a", + "area": "38.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary rocks from Aldridge Formation of the Proterozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 983, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:24:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:59:25Z", + "aquifer_name": "983", + "location_description": "Wild Ck near Duck Lake, BC", + "material": "B", + "subtype": "4a", + "area": "4.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary & dolomitic rks, Mount Nelson, Dutch Ck & Kitchener Formations", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 984, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:24:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:59:38Z", + "aquifer_name": "984", + "location_description": "Confluence of Arrow Ck. and Goat R.", + "material": "G", + "subtype": "4b", + "area": "7.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glacial-fluvial gravel and some sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 985, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:24:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T15:59:44Z", + "aquifer_name": "985", + "location_description": "Kootenay R. floodplain, NW of Creston", + "material": "S", + "subtype": "1c", + "area": "52.5", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial deposits of fine to medium sand and some sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 986, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:24:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:04:03Z", + "aquifer_name": "986", + "location_description": "Northeast end of Osoyoos Lake", + "material": "SG", + "subtype": "4b", + "area": "2.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 987, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:24:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:04:11Z", + "aquifer_name": "987", + "location_description": "Sumas Mountain", + "material": "B", + "subtype": "6b", + "area": "5.6", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sumas Mountain, Volcanic rock; Harrison Lake Formation", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 988, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:24:56Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:04:20Z", + "aquifer_name": "988", + "location_description": "Western slope of Sentinel Mountain", + "material": "B", + "subtype": "6b", + "area": "8.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sheppard, Tuzo Creek, & Shingle Ck Intrusions; Some metamorphic rks", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 989, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:25:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:05:34Z", + "aquifer_name": "989", + "location_description": "Ladybird Mountain, west of Norns Creek", + "material": "B", + "subtype": "6b", + "area": "2.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sheppard, Tuzo Ck, & Shingle Ck Intrusive rks; Some metamorphic rks", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 990, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-04T14:25:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:05:42Z", + "aquifer_name": "990", + "location_description": "N. side Columbia R., W. of Lower Arrow Lk", + "material": "B", + "subtype": "6b", + "area": "4.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Greenwood, Wallace Cr Plutons, Kinnaird Gneiss form. Some metamorphic rks.", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 991, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:17:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:05:49Z", + "aquifer_name": "991", + "location_description": "Harrop, BC", + "material": "SG", + "subtype": "2", + "area": "2.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial sand & gravel intermixed with fine sand lenses", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 992, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:17:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:05:57Z", + "aquifer_name": "992", + "location_description": "Fraser, West of Balfour", + "material": "SG", + "subtype": "2", + "area": "1.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial gravel, sand, and sand & gravel deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 993, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:17:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:03Z", + "aquifer_name": "993", + "location_description": "Longbeach to Harrop Point, BC", + "material": "SG", + "subtype": "3", + "area": "1.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial sand & gravel deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 994, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:18:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:11Z", + "aquifer_name": "994", + "location_description": "Kokanee Point", + "material": "SG", + "subtype": "2", + "area": "1.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvial sand & gravel deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 995, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:18:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:19Z", + "aquifer_name": "995", + "location_description": "Longbeach and Fraser", + "material": "B", + "subtype": "6b", + "area": "24.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Granodioritic rocks; Nelson Batholith Grp; Mesozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 996, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:18:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:28Z", + "aquifer_name": "996", + "location_description": "Bull Mountain", + "material": "B", + "subtype": "5a", + "area": "5.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sed rock; Etherington, Mount Head, and Livingstone Form.; Paleozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 997, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:18:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:35Z", + "aquifer_name": "997", + "location_description": "Mayook", + "material": "SG", + "subtype": "4b", + "area": "4.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial sand and gravel; possibly multiple stacked aquifers", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 998, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:18:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:43Z", + "aquifer_name": "998", + "location_description": "Bednorski Lake", + "material": "SG", + "subtype": "4b", + "area": "6.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial multiple stacked aquifers?", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 999, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:18:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:13:57Z", + "aquifer_name": "999", + "location_description": "North of Cranbrook", + "material": "G", + "subtype": "4b", + "area": "3.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1000, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:19:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:06:56Z", + "aquifer_name": "1000", + "location_description": "Eastern side of Windermere Lake", + "material": "B", + "subtype": "5a", + "area": "26.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fine Sed rocks; McKay Group; Cambrian to Ordovician Eras", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1001, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:19:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:07Z", + "aquifer_name": "1001", + "location_description": "Western side of Windermere Lake", + "material": "B", + "subtype": "5a", + "area": "8.9", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Coarse Sed rocks; Windermere Supergroup; Proterozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1002, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:19:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:50:48Z", + "aquifer_name": "Rawlings Lake", + "location_description": "south and west of Rawlings Lake", + "material": "SG", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "Kame - Fraser glaciation", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1003, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:19Z", + "aquifer_name": "1003", + "location_description": "North of Lumby", + "material": "B", + "subtype": "5a", + "area": "22.8", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sed. rk.; Nicola Group; Mesozoic Era; mudstone, siltstone & shale", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1004, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:27Z", + "aquifer_name": "1004", + "location_description": "White Valley area", + "material": "B", + "subtype": "5a", + "area": "51.1", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sed. rock.; Harper Ranch & Nicola Groups; Meta. rock.; Shuswap Assemblage", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1005, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:34Z", + "aquifer_name": "1005", + "location_description": "Southwest of Kawkawa Lake", + "material": "SG", + "subtype": "1b", + "area": "1.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1006, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:40Z", + "aquifer_name": "1006", + "location_description": "Southeast of Devil Lake", + "material": "SG", + "subtype": "1b", + "area": "0.7", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand and gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1007, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:46Z", + "aquifer_name": "1007", + "location_description": "Hope", + "material": "SG", + "subtype": "1b", + "area": "2.8", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand & Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1008, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:07:53Z", + "aquifer_name": "1008", + "location_description": "Northwest of Hope", + "material": "B", + "subtype": "6b", + "area": "3.6", + "vulnerability": "H", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Intrusive Rk, Mesozoic Era; Sedimentary rks, Princeton Group, Cenozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1009, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:20:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:01Z", + "aquifer_name": "1009", + "location_description": "Kawkawa Lake", + "material": "B", + "subtype": "6b", + "area": "3.0", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "R", + "litho_stratographic_unit": "Intrusive rock from the Mesozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1010, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:02Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:08Z", + "aquifer_name": "1010", + "location_description": "Tulameen", + "material": "SG", + "subtype": "4a", + "area": "0.9", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand and Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1011, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:14Z", + "aquifer_name": "1011", + "location_description": "Coalmont, 5 km SE of Tulameen", + "material": "SG", + "subtype": "1c", + "area": "0.9", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Sand and Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1012, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:23Z", + "aquifer_name": "1012", + "location_description": "Riddle Mountain, SE slope", + "material": "B", + "subtype": "6b", + "area": "1.2", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Intrusive &volcanic rock, Cenozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1013, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:30Z", + "aquifer_name": "1013", + "location_description": "Otter Lake, NW shoreline", + "material": "G", + "subtype": "2", + "area": "0.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Gravel", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1014, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:37Z", + "aquifer_name": "Owl Ridge Aquifer", + "location_description": "Owl Ridge Subdivision", + "material": "SG", + "subtype": "4b", + "area": "2.3", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Ice-contact glacial sand & gravel deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1015, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:45Z", + "aquifer_name": "Birkenhead River Aquifer", + "location_description": "Birkenhead River", + "material": "SG", + "subtype": "1c", + "area": "4.1", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "ice contact sand and gravel deposits", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1016, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:21:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:52Z", + "aquifer_name": "Owl Creek", + "location_description": "Owl Creek", + "material": "B", + "subtype": "5a", + "area": "13.5", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Sedimentary & volcanic rks;Peninsula & Brokenback Hill Formations", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1017, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T11:22:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:08:59Z", + "aquifer_name": null, + "location_description": "S of Prince George; Cranbrook Hill", + "material": "SG", + "subtype": "4b", + "area": "7.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fluvialglacial sands and gravels", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1018, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-10-05T12:45:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:09:06Z", + "aquifer_name": "1018", + "location_description": "Crescent Bay", + "material": "B", + "subtype": "6b", + "area": "8.4", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Granodioritic rock; Nelson Batholith Group; Mesozoic Era", + "mapping_year": 2012, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1019, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:00:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:09:13Z", + "aquifer_name": "1019", + "location_description": "Fintry Provincial Park", + "material": "SG", + "subtype": "4a", + "area": "2.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Ice contact deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1020, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:01:15Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:09:23Z", + "aquifer_name": "1020", + "location_description": "East face of Sugarloaf Mountain", + "material": "B", + "subtype": "6b", + "area": "52.4", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Intrusive rock; granite & alkali feldspar granite; Mesozoic Era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1021, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:01:28Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:28:22Z", + "aquifer_name": "1021", + "location_description": "Winfield", + "material": "B", + "subtype": "6b", + "area": "3.4", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Intrusive rock; granite & alkali feldspar granite; Mesozoic Era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1022, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:01:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:28:34Z", + "aquifer_name": "1022", + "location_description": "Ribbleworth Creek", + "material": "B", + "subtype": "6b", + "area": "25.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily metamorphic rks, Proterozoic Era; some Granitic rks, Mesozoic era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1023, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:01:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:28:45Z", + "aquifer_name": "1023", + "location_description": "Barkley Road, Lake Country", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "glacio-fluvial sediments", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1024, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:02:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:28:54Z", + "aquifer_name": "1024", + "location_description": "Princeton", + "material": "B", + "subtype": "5a", + "area": "122.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Sedimentary rks; Coldwater Beds; Allenby Frm of Princeton Grp; Cenozoic Era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1025, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:02:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:07Z", + "aquifer_name": "1025", + "location_description": "Allison Lake", + "material": "SG", + "subtype": "1b", + "area": "0.9", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1026, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:02:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:14Z", + "aquifer_name": "1026", + "location_description": "Hayes Creek, N of Finnegan Ck", + "material": "B", + "subtype": "6b", + "area": "22.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily granitic intrusive rks; Mesozoic Era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1027, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:02:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:22Z", + "aquifer_name": "1027", + "location_description": "Chain Lake", + "material": "B", + "subtype": "6b", + "area": "1.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily granitic intrusive rocks; Mesozoic Era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1028, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:02:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:29Z", + "aquifer_name": "1028", + "location_description": "Confluence of Hayes and Siwash Creeks", + "material": "G", + "subtype": "1b", + "area": "7.0", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1029, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:03:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:41Z", + "aquifer_name": "1029", + "location_description": "North of Princeton", + "material": "G", + "subtype": "1b", + "area": "8.2", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1030, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:03:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:50Z", + "aquifer_name": "1030", + "location_description": "12km North of Princeton", + "material": "SG", + "subtype": "1b", + "area": "0.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Likely Glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1031, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:03:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:29:59Z", + "aquifer_name": "1031", + "location_description": "Hayes Ck south of Trehearne Ck", + "material": "B", + "subtype": "6b", + "area": "14.3", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Primarily granitic intrusive rks; Mesozoic Era", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1032, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:03:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:08Z", + "aquifer_name": "1032", + "location_description": "Osprey Lake", + "material": "B", + "subtype": "6b", + "area": "5.9", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Igneous intrusive or metamorpjic, meta-sedimentary, meta-volcanic rks", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1033, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-02-28T16:03:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:14Z", + "aquifer_name": "1033", + "location_description": "Chain Lake", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "L", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Likely glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1034, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-05-01T13:51:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:23Z", + "aquifer_name": "1034", + "location_description": "Highland area north of Fort Nelson", + "material": "B", + "subtype": "5a", + "area": "130.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "L", + "litho_stratographic_unit": "Fort St. John Group", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1035, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:15:49Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:31Z", + "aquifer_name": null, + "location_description": "East side of Fort Nelson River", + "material": "SG", + "subtype": "4b", + "area": "4.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glacialfluvial sands and gravel", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1036, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:31:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:38Z", + "aquifer_name": null, + "location_description": "Columbia River Valley at Spillimacheen", + "material": "SG", + "subtype": "3", + "area": "3.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1037, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:36:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:45Z", + "aquifer_name": null, + "location_description": "Columbia River Valley northwest of Brisco", + "material": "SG", + "subtype": "4b", + "area": "0.4", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1038, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:38:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:52Z", + "aquifer_name": null, + "location_description": "Columbia River Valley at Brisco", + "material": "SG", + "subtype": "4b", + "area": "0.6", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1039, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:44:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:30:59Z", + "aquifer_name": null, + "location_description": "Columbia River Valley 1southeast of Brisco", + "material": "SG", + "subtype": "4b", + "area": "0.3", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1040, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:53:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:31:10Z", + "aquifer_name": null, + "location_description": "Industrial area 6 km south of Fort Nelson", + "material": "SG", + "subtype": "4b", + "area": "5.6", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": "Glaciofluvial gravels and sands", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1041, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T09:56:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:31:17Z", + "aquifer_name": null, + "location_description": "7km SE of Fort Nelson", + "material": "SG", + "subtype": "1b", + "area": "3.3", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "fluvial gravel and sands", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1042, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:12:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:31:25Z", + "aquifer_name": null, + "location_description": "Columbia River Valley-Frances Creek Valley", + "material": "SG", + "subtype": "4b", + "area": "5.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1043, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:15:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:31:32Z", + "aquifer_name": null, + "location_description": "southeast of Golden", + "material": "B", + "subtype": "5a", + "area": "11.3", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "McKay Group", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1044, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:19:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:31:44Z", + "aquifer_name": null, + "location_description": "18 km southeast of Golden", + "material": "G", + "subtype": "3", + "area": "2.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "alluvial fan", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1045, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:21:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:31:52Z", + "aquifer_name": null, + "location_description": "3 km north of Luxor", + "material": "B", + "subtype": "5a", + "area": "1.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Fractured mudstone, siltstone and shale", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1046, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:24:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:32:02Z", + "aquifer_name": null, + "location_description": "2 km northeast of Luxor", + "material": "SG", + "subtype": "4b", + "area": "1.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1047, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:26:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:32:12Z", + "aquifer_name": null, + "location_description": "30 km southeast of Golden", + "material": "SG", + "subtype": "3", + "area": "1.9", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quaternary sands and gravels", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1048, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:29:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:32:21Z", + "aquifer_name": null, + "location_description": "40 km southeast of Golden", + "material": "SG", + "subtype": "3", + "area": "0.7", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "Quaternary sands and gravels", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1049, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:31:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:32:29Z", + "aquifer_name": null, + "location_description": "45 km southeast of Golden", + "material": "SG", + "subtype": "3", + "area": "1.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "45 km southeast of Golden", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1050, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2014-01-20T10:34:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:32:37Z", + "aquifer_name": null, + "location_description": "Babtiste Lake", + "material": "SG", + "subtype": "4b", + "area": "1.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "glaciofluvial deposits", + "mapping_year": 2013, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1051, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T09:11:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:00Z", + "aquifer_name": null, + "location_description": "Salmon River Valley south of Sayward", + "material": "SG", + "subtype": null, + "area": "9.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1052, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T09:17:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:08Z", + "aquifer_name": null, + "location_description": "Junction of Greenhills and Fording River", + "material": "SG", + "subtype": null, + "area": "0.4", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1053, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:04:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:18Z", + "aquifer_name": null, + "location_description": "2 km south of Fernie", + "material": "B", + "subtype": null, + "area": "7.6", + "vulnerability": "M", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1054, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:07:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:25Z", + "aquifer_name": null, + "location_description": "Greenhills Creek", + "material": "SG", + "subtype": null, + "area": "0.4", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1055, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:09:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:33Z", + "aquifer_name": null, + "location_description": "Salmon River Valley at Stowe Creek", + "material": "SG", + "subtype": null, + "area": "5.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1056, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:17:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:42Z", + "aquifer_name": null, + "location_description": "1 km N of Elkford, Elk River Valley", + "material": "SG", + "subtype": null, + "area": "2.7", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1057, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:19:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:33:49Z", + "aquifer_name": null, + "location_description": "Elko, west side of Elk River", + "material": "SG", + "subtype": null, + "area": "6.4", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1058, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:23:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:34:11Z", + "aquifer_name": null, + "location_description": "Boivin Creek Fan at Elkford", + "material": "SG", + "subtype": null, + "area": "1.1", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1059, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T11:27:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:34:20Z", + "aquifer_name": null, + "location_description": "Rocky Mountain Trench, west of Caithness", + "material": "SG", + "subtype": null, + "area": "1.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1060, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T14:24:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:34:29Z", + "aquifer_name": null, + "location_description": "Elk River Valley", + "material": "SG", + "subtype": null, + "area": "2.1", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1061, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T14:27:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:34:36Z", + "aquifer_name": null, + "location_description": "Grasmere Valley", + "material": "SG", + "subtype": null, + "area": "3.3", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1062, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T14:31:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:34:45Z", + "aquifer_name": null, + "location_description": "west side of Elk River valley", + "material": "SG", + "subtype": null, + "area": "1.9", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1063, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T15:02:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:34:54Z", + "aquifer_name": null, + "location_description": "Edwards Lakes Valley", + "material": "SG", + "subtype": null, + "area": "10.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1064, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T15:04:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:35:03Z", + "aquifer_name": null, + "location_description": "Elk River Valley", + "material": "SG", + "subtype": null, + "area": "3.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1065, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-19T15:21:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:35:12Z", + "aquifer_name": null, + "location_description": "3 km south of Grasmere", + "material": "SG", + "subtype": null, + "area": "2.2", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1066, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:42:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:35:22Z", + "aquifer_name": null, + "location_description": "West side of Elk river", + "material": "SG", + "subtype": null, + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1067, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:44:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:35:38Z", + "aquifer_name": null, + "location_description": "West side of Lake Koocanusa", + "material": "B", + "subtype": null, + "area": "1.5", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1068, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:46:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:35:48Z", + "aquifer_name": null, + "location_description": "West side of Elk River", + "material": "SG", + "subtype": null, + "area": "2.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1069, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:47:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:35:59Z", + "aquifer_name": null, + "location_description": "East side of Lake Koocanusa", + "material": "SG", + "subtype": null, + "area": "2.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1070, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:49:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:36:08Z", + "aquifer_name": null, + "location_description": "West side of Elk River Valley", + "material": "SG", + "subtype": null, + "area": "5.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1071, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:50:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:36:19Z", + "aquifer_name": null, + "location_description": "West side of Lake Koocanusa", + "material": "SG", + "subtype": null, + "area": "0.9", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1072, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:52:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T13:36:30Z", + "aquifer_name": null, + "location_description": "West side of Elk River Valley bottom", + "material": "SG", + "subtype": null, + "area": "3.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1073, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T13:57:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:54:10Z", + "aquifer_name": null, + "location_description": "West side of Koocanusa Lake", + "material": "SG", + "subtype": null, + "area": "4.9", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1074, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T14:55:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:54:20Z", + "aquifer_name": null, + "location_description": "W side of Elk R Valley", + "material": "SG", + "subtype": null, + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1075, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-27T15:00:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:54:28Z", + "aquifer_name": null, + "location_description": "West side of Kitimat River", + "material": "SG", + "subtype": null, + "area": "6.2", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1076, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:01:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:54:36Z", + "aquifer_name": null, + "location_description": "W side of Elk R Valley", + "material": "B", + "subtype": null, + "area": "5.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1077, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:03:49Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:54:49Z", + "aquifer_name": null, + "location_description": "North of Kitimat River", + "material": "S", + "subtype": null, + "area": "3.1", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1078, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:05:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:54:57Z", + "aquifer_name": null, + "location_description": "W side of Elk R Valley", + "material": "SG", + "subtype": null, + "area": "8.5", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1079, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:06:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:55:05Z", + "aquifer_name": null, + "location_description": "Eaast side of Kitimat River", + "material": "SG", + "subtype": null, + "area": "1.6", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1080, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:08:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:55:17Z", + "aquifer_name": null, + "location_description": "Sparwood", + "material": "SG", + "subtype": null, + "area": "0.1", + "vulnerability": "H", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1081, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:08:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:55:25Z", + "aquifer_name": null, + "location_description": "West side of Kitimat River", + "material": "SG", + "subtype": null, + "area": "2.3", + "vulnerability": "H", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1082, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:10:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:55:34Z", + "aquifer_name": null, + "location_description": "Sparwood", + "material": "B", + "subtype": null, + "area": "1.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1083, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:13:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:55:41Z", + "aquifer_name": null, + "location_description": "East bank of Kitimat River", + "material": "SG", + "subtype": null, + "area": "0.7", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1084, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:14:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-05-25T09:23:17Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1085, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:14:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-01-02T15:55:52Z", + "aquifer_name": null, + "location_description": "West side of Kitimat River", + "material": "SG", + "subtype": null, + "area": "1.0", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1086, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:17:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-05-25T09:26:36Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1087, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:17:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-11T09:06:15Z", + "aquifer_name": null, + "location_description": "Salmon River Valley at Memekay River", + "material": "SG", + "subtype": null, + "area": "4.6", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1088, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:19:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:10:13Z", + "aquifer_name": null, + "location_description": "Town of Hosmer", + "material": "SG", + "subtype": null, + "area": "1.1", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1089, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:20:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-03-30T10:20:12Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1090, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:21:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:10:22Z", + "aquifer_name": null, + "location_description": "South of Hosmer", + "material": "SG", + "subtype": null, + "area": "3.2", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1091, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:22:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-03-30T10:22:01Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1092, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:23:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-06-30T12:34:07Z", + "aquifer_name": "combined with Aquifer 532", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1093, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:23:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-03-30T10:23:35Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1094, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:24:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:10:32Z", + "aquifer_name": null, + "location_description": "W. side of Elk R Valley", + "material": "B", + "subtype": null, + "area": "11.5", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1095, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:25:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-03-30T10:25:33Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1096, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-03-30T10:26:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:10:41Z", + "aquifer_name": null, + "location_description": "Salmon River Valley at Bigtree Creek", + "material": "SG", + "subtype": null, + "area": "2.2", + "vulnerability": "L", + "productivity": "H", + "demand": "H", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1097, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-04-23T09:27:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-04-23T09:27:32Z", + "aquifer_name": null, + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1098, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-04-23T09:29:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-04-22T16:10:49Z", + "aquifer_name": null, + "location_description": "East of Englishman River", + "material": "SG", + "subtype": null, + "area": "17.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2015, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1099, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-05-22T12:00:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2015-05-22T12:00:11Z", + "aquifer_name": "TEST AQUIFER", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": null, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1100, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-12-04T10:28:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:26:19Z", + "aquifer_name": null, + "location_description": "Whonnock Lake / Creek", + "material": "SG", + "subtype": "1c", + "area": "1.5", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": "unconfined fluvial or glaciofluvial sand and gravel", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1101, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-12-04T10:33:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:26:29Z", + "aquifer_name": null, + "location_description": "North Kanata Creek", + "material": "SG", + "subtype": "4c", + "area": "9.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial sand and gravel", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1102, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2015-12-04T10:39:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:26:38Z", + "aquifer_name": null, + "location_description": "Maple Ridge", + "material": "SG", + "subtype": "4c", + "area": "12.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": "Glacio-fluvial sand and gravel", + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1103, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-11T13:47:16Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:26:49Z", + "aquifer_name": null, + "location_description": "Silverdale", + "material": "SG", + "subtype": "4b", + "area": "9.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1104, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-11T13:50:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:27:01Z", + "aquifer_name": null, + "location_description": "Silvermere Lake Island", + "material": "SG", + "subtype": "4a", + "area": "0.3", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1105, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-11T13:51:59Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:27:12Z", + "aquifer_name": null, + "location_description": "South of Davis Lake", + "material": "B", + "subtype": "6b", + "area": "0.2", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1106, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-11T13:53:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-04T10:27:23Z", + "aquifer_name": null, + "location_description": "East of Hatzic Prairie", + "material": "B", + "subtype": "6b", + "area": "5.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1107, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:14:43Z", + "aquifer_name": null, + "location_description": "Grand Oro Road,south of Twin Lakes", + "material": "SG", + "subtype": null, + "area": "0.6", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1108, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:14:28Z", + "aquifer_name": null, + "location_description": "Willowbrook and Oliver", + "material": "B", + "subtype": null, + "area": "62.0", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1109, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:15:05Z", + "aquifer_name": null, + "location_description": "Willowbrook", + "material": "B", + "subtype": null, + "area": "12.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1110, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:15:30Z", + "aquifer_name": null, + "location_description": "Water Dog Lake to McCuddy Creek Road", + "material": "B", + "subtype": null, + "area": "16.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1111, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:15:49Z", + "aquifer_name": null, + "location_description": "Inkaneep", + "material": "SG", + "subtype": "1b", + "area": "3.0", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1112, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:16:06Z", + "aquifer_name": null, + "location_description": "McCoudy Creek Road", + "material": "SG", + "subtype": null, + "area": "0.1", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1113, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:04:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:16:21Z", + "aquifer_name": null, + "location_description": "Mount Kobau", + "material": "B", + "subtype": null, + "area": "9.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1114, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-12T16:05:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:16:35Z", + "aquifer_name": null, + "location_description": "South of Goose Creek", + "material": "B", + "subtype": null, + "area": "2.7", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1115, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-15T09:42:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:16:45Z", + "aquifer_name": "This aquifer was first named as aquifer #533", + "location_description": "Salmon River Valley South in Sayward", + "material": "SG", + "subtype": "4c", + "area": "6.0", + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1116, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-02-15T13:16:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:17:02Z", + "aquifer_name": "Rosebery", + "location_description": "Mouth of Wilson Creek at Slocan Lake", + "material": "SG", + "subtype": null, + "area": "0.8", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1117, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T10:22:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:17:14Z", + "aquifer_name": null, + "location_description": "Glade east of Kootenay River", + "material": "SG", + "subtype": null, + "area": "1.1", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1118, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T10:25:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:17:27Z", + "aquifer_name": null, + "location_description": "Taghum", + "material": "SG", + "subtype": null, + "area": "0.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1119, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T10:28:34Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:17:38Z", + "aquifer_name": null, + "location_description": "Krestova to Passmore, west of Slocan River", + "material": "SG", + "subtype": null, + "area": "16.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1120, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T10:31:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:17:53Z", + "aquifer_name": null, + "location_description": "Valican, junction of Slocan Rivers", + "material": "SG", + "subtype": null, + "area": "2.8", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1121, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:19:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:18:06Z", + "aquifer_name": null, + "location_description": "Valican and Passmore", + "material": "B", + "subtype": null, + "area": "13.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1122, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:21:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:18:18Z", + "aquifer_name": null, + "location_description": "Winlaw", + "material": "SG", + "subtype": null, + "area": "2.4", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1123, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:23:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:18:31Z", + "aquifer_name": null, + "location_description": "Appledale", + "material": "SG", + "subtype": null, + "area": "0.6", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1124, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:28:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:18:44Z", + "aquifer_name": null, + "location_description": "Winlaw to Lemon Creek", + "material": "B", + "subtype": null, + "area": "18.5", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1125, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:30:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:18:55Z", + "aquifer_name": null, + "location_description": "Lemon Creek", + "material": "SG", + "subtype": null, + "area": "5.3", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1126, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:32:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:19:07Z", + "aquifer_name": null, + "location_description": "Village of Slocan", + "material": "SG", + "subtype": null, + "area": "2.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1127, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:34:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:19:26Z", + "aquifer_name": null, + "location_description": "Greater Nakusp Area", + "material": "G", + "subtype": null, + "area": "24.0", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1128, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:36:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:19:38Z", + "aquifer_name": null, + "location_description": "Village of Nakusp", + "material": "SG", + "subtype": null, + "area": "8.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1129, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:37:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:19:50Z", + "aquifer_name": null, + "location_description": "FairmontHot springs", + "material": "B", + "subtype": null, + "area": "0.4", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1130, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:39:48Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:20:06Z", + "aquifer_name": null, + "location_description": "West of Invermere, south of Toby Creek", + "material": "SG", + "subtype": null, + "area": "16.5", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1131, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:42:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:20:29Z", + "aquifer_name": null, + "location_description": "South of Froster Creek", + "material": "SG", + "subtype": null, + "area": "5.5", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1132, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:44:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:20:45Z", + "aquifer_name": null, + "location_description": "North of Fairmont Hot springs", + "material": "SG", + "subtype": null, + "area": "4.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1133, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:46:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:20:57Z", + "aquifer_name": null, + "location_description": "Old Town, on Perry Creek", + "material": "SG", + "subtype": null, + "area": "1.0", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1134, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:48:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:21:10Z", + "aquifer_name": null, + "location_description": "Wycliffe, North of St.Mary River", + "material": "SG", + "subtype": null, + "area": "1.5", + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1135, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:52:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:21:24Z", + "aquifer_name": null, + "location_description": "South of Kimberly", + "material": "SG", + "subtype": "1a", + "area": "1.2", + "vulnerability": "H", + "productivity": "M", + "demand": "H", + "known_water_use": "PD", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1136, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:53:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:21:36Z", + "aquifer_name": null, + "location_description": "South of Kimberly", + "material": "SG", + "subtype": null, + "area": "2.2", + "vulnerability": "H", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1137, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:56:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:21:49Z", + "aquifer_name": null, + "location_description": "City of Kimberly and Kimberly Highway", + "material": "SG", + "subtype": null, + "area": "12.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1138, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:57:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:22:00Z", + "aquifer_name": null, + "location_description": "East of Kimberly", + "material": "SG", + "subtype": null, + "area": "1.2", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1139, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T13:59:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:22:12Z", + "aquifer_name": null, + "location_description": "Canadian Rockies International Airport", + "material": "SG", + "subtype": null, + "area": "0.5", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1140, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T14:01:06Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:22:23Z", + "aquifer_name": null, + "location_description": "Kimberly Highway", + "material": "B", + "subtype": null, + "area": "3.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1141, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T14:03:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-07-05T16:22:35Z", + "aquifer_name": null, + "location_description": "Kootenay and St. mary Rivers", + "material": "SG", + "subtype": "1a", + "area": "8.0", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1142, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-06-08T14:05:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-01-16T11:58:16Z", + "aquifer_name": null, + "location_description": "North of Fort Steele", + "material": "SG", + "subtype": "4b", + "area": "16.0", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1143, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-11-03T11:24:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-11-03T11:30:51Z", + "aquifer_name": "Not correlated at the time of interpretation", + "location_description": "Insufficient info or does not correspond", + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": null, + "demand": null, + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2016, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1144, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-11-03T14:55:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-11-03T15:15:57Z", + "aquifer_name": "Hopington C", + "location_description": "Hopington-Township of Langley", + "material": "SG", + "subtype": "4c", + "area": "16.5", + "vulnerability": "M", + "productivity": "M", + "demand": "H", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Glaciomarrine outwash of the Fort Langley Formation", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1145, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-04-06T15:40:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-06T15:40:08Z", + "aquifer_name": null, + "location_description": "northeast of Terrace", + "material": "SG", + "subtype": "4b", + "area": "21.9", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "N", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1146, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-04-06T15:47:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-04-12T15:32:05Z", + "aquifer_name": null, + "location_description": "Gibraltar Mine", + "material": "B", + "subtype": "6b", + "area": "21.9", + "vulnerability": "M", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "L", + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1147, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-05-31T16:20:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:51:03Z", + "aquifer_name": "South Central SSI", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1148, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-06-01T14:06:33Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:51:14Z", + "aquifer_name": "Greenwood", + "location_description": null, + "material": null, + "subtype": null, + "area": null, + "vulnerability": null, + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1149, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-07-18T15:51:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:40:41Z", + "aquifer_name": "Ashton Creek Unconfined", + "location_description": "Ashton Creek", + "material": "SG", + "subtype": null, + "area": "8.1", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Late Glacial (Including reworked preglacial) to Holocene", + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1150, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:32:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:40:52Z", + "aquifer_name": "O'Keefe Basal", + "location_description": "O'Keefe Valley and Grandview Flats", + "material": "S", + "subtype": "4b", + "area": "17.6", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1151, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:33:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:03Z", + "aquifer_name": "Swan Lake Unconfined", + "location_description": "North of Vernon / North of Swan Lake", + "material": "SG", + "subtype": "4a", + "area": "7.9", + "vulnerability": "H", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1152, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:33:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:11Z", + "aquifer_name": "Vernon Unconfined", + "location_description": "Northeast of Vernon along BX Creek", + "material": "SG", + "subtype": "4a", + "area": "21.1", + "vulnerability": "M", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1153, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:34:30Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:21Z", + "aquifer_name": "Okanagan Valley Confined", + "location_description": "Lower Shuswap River Valley", + "material": "S", + "subtype": "4b", + "area": "134.4", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1154, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:41:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:30Z", + "aquifer_name": "Vernon Confined", + "location_description": "Northeast of Vernon along BX Creek", + "material": "SG", + "subtype": "4b", + "area": "20.0", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1155, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:43:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:38Z", + "aquifer_name": "Deep Okanagan Valley", + "location_description": "Lower Shuswap River Valley", + "material": "S", + "subtype": "4b", + "area": "77.0", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1156, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:43:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:46Z", + "aquifer_name": "Spallumcheen Basal Confined Aquifer", + "location_description": "Lower Shuswap River Valley", + "material": "S", + "subtype": "4b", + "area": "23.1", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1157, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-08-18T13:44:32Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-04T10:41:56Z", + "aquifer_name": "Hullcar Perched", + "location_description": "Slopes of Hullcar Valley, near Deep Creek", + "material": "G", + "subtype": null, + "area": "29.5", + "vulnerability": "H", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2017, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1158, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-03-14T14:57:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:47:47Z", + "aquifer_name": "Sugar Lake", + "location_description": "Sugar Lake Road", + "material": "SG", + "subtype": "1b", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "mixed kame, fan and modern alluvium", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1159, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-03-14T14:58:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:48:02Z", + "aquifer_name": "Lower Cherryville", + "location_description": "Cherryville - Shuswap", + "material": "SG", + "subtype": "1b", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "mixed kame, fan and modern alluvium", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1160, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-03-14T15:01:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:51:48Z", + "aquifer_name": "Bear Valley Perched", + "location_description": "Bear Valley / Blue Springs Creek", + "material": "SG", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "mixed englacialdeposits, outwash and recent fan", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1161, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-03-14T15:02:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:51:59Z", + "aquifer_name": "Falkland Perched", + "location_description": "Falkland Upland", + "material": "G", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "basal colluvial gravels, below Till", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1162, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-03-14T15:03:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:52:10Z", + "aquifer_name": "Cedar Hill Perched", + "location_description": "Cedar Hill", + "material": "G", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": "basal colluvial gravels, below Till", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1163, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-06T14:18:00Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:50:09Z", + "aquifer_name": "Agate Aquifer", + "location_description": null, + "material": "SG", + "subtype": "4b", + "area": "4.9", + "vulnerability": "L", + "productivity": "H", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1164, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-06T14:21:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:51:51Z", + "aquifer_name": "Coldwater Valley", + "location_description": "Coldwater River Valley", + "material": "SG", + "subtype": "4b", + "area": "0.8", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1165, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-06T14:25:20Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:52:12Z", + "aquifer_name": "Kingsvale", + "location_description": "Coldwater River Valley", + "material": "B", + "subtype": "6b", + "area": "7.4", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1166, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-06T14:28:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:51:41Z", + "aquifer_name": "Paul's Basin", + "location_description": "Midday Creek Valley", + "material": "B", + "subtype": "6b", + "area": "11.0", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": "Nicola Group Volcanics", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1167, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:35:58Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:53:57Z", + "aquifer_name": "Lower Merritt", + "location_description": "Lower Merritt", + "material": "SG", + "subtype": "4b", + "area": "6.8", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1168, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:41:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:56:09Z", + "aquifer_name": "Middle Merritt", + "location_description": "Middle Merritt", + "material": "SG", + "subtype": "4b", + "area": "13.0", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1169, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:42:52Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:57:19Z", + "aquifer_name": "Joeyaska Shallow", + "location_description": "Joeyaska Shallow", + "material": "SG", + "subtype": "4a", + "area": "1.9", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1170, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:43:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T10:59:24Z", + "aquifer_name": "Stumbles Creek Confined", + "location_description": "Stumbles Creek", + "material": "S", + "subtype": "4b", + "area": "0.7", + "vulnerability": "M", + "productivity": "M", + "demand": "L", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1171, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:43:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T11:00:38Z", + "aquifer_name": "Lower Nicola Outwash", + "location_description": "Lower Nicola Outwash", + "material": "SG", + "subtype": "4b", + "area": "6.4", + "vulnerability": "L", + "productivity": "H", + "demand": "M", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1172, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:43:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T11:02:52Z", + "aquifer_name": "Guichon Creek", + "location_description": "Guichon Creek", + "material": "B", + "subtype": "6b", + "area": "2.9", + "vulnerability": "L", + "productivity": "L", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1173, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:44:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T11:04:30Z", + "aquifer_name": "Kwinshatin Intertill", + "location_description": "Coldwater River Valley", + "material": "SG", + "subtype": "4b", + "area": "1.8", + "vulnerability": "L", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1174, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:44:26Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T11:06:48Z", + "aquifer_name": "Stump Lake", + "location_description": "northeastern shore of Stump Lake", + "material": "SG", + "subtype": "4b", + "area": "1.5", + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "D", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1175, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-09T09:44:44Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-30T11:08:37Z", + "aquifer_name": "Stump Lake Bedrock", + "location_description": "north east of Stump Lake.", + "material": "B", + "subtype": "6b", + "area": "5.1", + "vulnerability": "L", + "productivity": "L", + "demand": "L", + "known_water_use": "M", + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1176, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:09:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:52:42Z", + "aquifer_name": "Fraser Canyon, Choate to Yale", + "location_description": "Fraser Canyon south of Choate to Yale", + "material": "SG", + "subtype": "1a", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1177, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:14:09Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:52:54Z", + "aquifer_name": "Coquihalla Canyon", + "location_description": "Coquihalla Canyon", + "material": "SG", + "subtype": "1b", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1178, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:15:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:53:06Z", + "aquifer_name": "Eastern Kawkawa Lake", + "location_description": "Eastern Kawkawa Lake", + "material": "SG", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1179, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:19:25Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:53:17Z", + "aquifer_name": "Mount Ozzard, Unconsolidated", + "location_description": "Western slope of Mount Ozzard", + "material": "SG", + "subtype": "4a", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1180, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:20:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:53:39Z", + "aquifer_name": "Tlell", + "location_description": "Graham Island, Tlell", + "material": "S", + "subtype": "4a", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1181, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:22:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:53:48Z", + "aquifer_name": "Port Clements", + "location_description": "Graham Island, Port Clements", + "material": "S", + "subtype": "4a", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1182, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:24:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:54:00Z", + "aquifer_name": "Masset", + "location_description": "Graham Island, Village of Masset", + "material": "S", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1183, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:43:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:54:13Z", + "aquifer_name": "Haida/Lawnhill", + "location_description": "Graham Island, Haida to Lawnhill", + "material": "S", + "subtype": "4a", + "area": null, + "vulnerability": "H", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1184, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:49:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:54:25Z", + "aquifer_name": "Skidgate/Queen Charlotte", + "location_description": "Graham Island, Skidegate Plateau", + "material": "B", + "subtype": "5a", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1185, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:50:47Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:54:35Z", + "aquifer_name": "Mount Ozzard, Bedrock Southeast", + "location_description": "Southeastern slope Mount Ozzard", + "material": "B", + "subtype": "6b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1186, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:51:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:54:45Z", + "aquifer_name": "Mount Ozzard Bedrock West", + "location_description": "Western slope Mount Ozzard", + "material": "B", + "subtype": "6b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1187, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:52:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:55:01Z", + "aquifer_name": "Ucluelet Peninsula", + "location_description": "Ucluelet peninsula", + "material": "B", + "subtype": "6b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1188, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:54:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:55:11Z", + "aquifer_name": "Fraser Canyon, Dogwood Valley", + "location_description": "Fraser Canyon, near Dogwood Valley", + "material": "B", + "subtype": "6b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1189, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:55:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:55:22Z", + "aquifer_name": "Eastern Kawkawa Lake", + "location_description": "Eastern Kawkawa Lake", + "material": "B", + "subtype": "6b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1190, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-04-24T09:55:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-05-25T10:55:34Z", + "aquifer_name": "Lower Coquihalla Canyon", + "location_description": "Lower Coquihalla Canyon", + "material": "B", + "subtype": "6b", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1191, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-06-06T15:42:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-06-15T14:28:13Z", + "aquifer_name": "Central Kelowna Aquifer", + "location_description": "Mission Creeknorth to Ellis Lake", + "material": "SG", + "subtype": "4b", + "area": "42.4", + "vulnerability": "M", + "productivity": "H", + "demand": "L", + "known_water_use": null, + "quality_concern": null, + "litho_stratographic_unit": null, + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1192, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-07-11T13:01:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:10:45Z", + "aquifer_name": "Aldergrove CD", + "location_description": "Township of Langley", + "material": "SG", + "subtype": "4c", + "area": null, + "vulnerability": "M", + "productivity": "M", + "demand": "M", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Fort Langley Formation", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1193, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-07-11T13:12:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:10:53Z", + "aquifer_name": "Aldergrove Quadra", + "location_description": "Township of Langley and Washington State", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Quadra Sands", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1194, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-07-11T13:16:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:11:01Z", + "aquifer_name": "Salmon River", + "location_description": "Township of Langley", + "material": "S", + "subtype": "4c", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "R", + "litho_stratographic_unit": "Semiahmoo or earlier", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "aquifers.aquifer", + "pk": 1195, + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-07-11T13:26:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-09-18T14:11:09Z", + "aquifer_name": "South of Murrayville B", + "location_description": "Township of Langley", + "material": "SG", + "subtype": "4b", + "area": null, + "vulnerability": "L", + "productivity": "M", + "demand": "L", + "known_water_use": "M", + "quality_concern": "I", + "litho_stratographic_unit": "Vashon Drift", + "mapping_year": 2018, + "notes": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "009134ec-2e0f-4807-a357-47947c1c1061", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T17:08:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T17:08:36Z", + "well": 113067, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "011a24d1-78a6-4190-afaa-51deb9264958", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-01-15T21:03:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2012-01-15T21:03:21Z", + "well": 334, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "062b1f08-fccc-4530-8928-2473fc543f92", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T17:08:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T17:08:21Z", + "well": 112755, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "07ba0004-ef53-418d-a368-60cf0f704af8", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T12:30:25Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T12:30:25Z", + "well": 113301, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "12ab6138-a883-40bc-bbdb-fea1fe2c0654", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-18T12:41:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-18T12:41:21Z", + "well": 112961, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "159ece29-aa8f-4e3b-aa02-fca8cda315ce", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T11:21:31Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T11:21:31Z", + "well": 112789, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "1b8fa15e-fbdd-4a0d-bb9f-1d3362ee0da2", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-01-29T17:51:54Z", + "update_user": "PROXY_WELLS", + "update_date": "2012-01-29T17:51:54Z", + "well": 123, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "2151cb36-8256-4094-8d07-2292babc1933", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T12:02:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T12:02:07Z", + "well": 112658, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "25a81adf-cfaa-4c66-94e0-07eea70be687", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T13:37:21Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T13:37:21Z", + "well": 112941, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "2e697c01-8459-425a-bc1d-476f56394bc4", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:50:23Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:50:23Z", + "well": 112976, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "2ef07c55-b5b5-4f3e-9381-48e422ce1fc9", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-12-18T18:01:19Z", + "update_user": "PROXY_WELLS", + "update_date": "2012-12-18T18:01:19Z", + "well": 102364, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "30f07617-4784-4215-9b8a-a3fbbc343920", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-15T14:01:43Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-15T14:01:43Z", + "well": 105417, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "31ca6244-507b-42d5-bbaf-d1a07ffc19be", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T11:39:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T11:39:45Z", + "well": 112498, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "326b0a22-b787-4b25-bb0a-00d0c716e897", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T11:22:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T11:22:22Z", + "well": 112615, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "344233d7-ceef-45e5-9fe6-a6ea22c37d2c", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-15T14:02:08Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-15T14:02:08Z", + "well": 112963, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "35a7b18b-170b-409d-b882-50ae5c1a6e21", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2013-01-08T11:56:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2013-01-08T11:56:46Z", + "well": 100200, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "408b9a52-b301-486c-b285-6ebc8acc25f6", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-12-15T13:57:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2012-12-15T13:57:22Z", + "well": 100127, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "4722e103-66e3-4fa5-bad1-eba9c6fb4dda", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-15T22:07:01Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-15T22:07:01Z", + "well": 112895, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "4cd6b2b7-052e-41df-a66d-40c217bb58bf", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T11:56:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T11:56:13Z", + "well": 112967, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "4d36b813-bc70-433c-9daf-717605ef3ac5", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-11-14T11:15:55Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-11-14T11:15:55Z", + "well": 108025, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "6809c75a-ecbe-4709-9afd-63364f410bbd", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T11:21:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T11:21:41Z", + "well": 113126, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "6ac75688-fb99-4d81-969c-56265a5db076", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T11:21:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T11:21:18Z", + "well": 112777, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "719ae78c-2114-4fff-bd59-120cc95b373f", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-07-11T10:10:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-07-11T10:10:50Z", + "well": 113189, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "72e1750d-66f2-4b7a-8b3b-e7d506d08d9a", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T13:15:51Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T13:15:51Z", + "well": 112743, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "7555516c-da28-40ee-824e-2de330112049", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-18T12:41:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-18T12:41:10Z", + "well": 112719, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "759d846c-46ce-42bf-abea-6c139a47cfac", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:50:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:50:12Z", + "well": 112962, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "779c1316-8679-4bfc-8ff8-367dd49719c8", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T12:02:10Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T12:02:10Z", + "well": 112824, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "7d7d5bde-d199-41aa-b981-4488104598d9", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T11:21:36Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T11:21:36Z", + "well": 112800, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "7df0148e-a239-45f8-941f-646f13d48306", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T13:15:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T13:15:42Z", + "well": 112506, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "83bf5f68-86bc-47e0-bb79-f8092dcdc551", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T11:21:27Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T11:21:27Z", + "well": 112787, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "8cb93a00-c880-4f7c-b59e-2c5dcc36a8bf", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T13:15:38Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T13:15:38Z", + "well": 112312, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "901ccf65-02fb-461b-b44b-b93068c1a9ef", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-10-16T10:48:12Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-10-16T10:48:12Z", + "well": 113552, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "937cd6bd-7b1c-498c-bf45-af2699ac7b82", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-11-10T12:16:35Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-11-10T12:16:35Z", + "well": 100500, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "93a291b8-ea23-497b-8947-2710190b1b28", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:50:07Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:50:07Z", + "well": 112957, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "9593dfc5-4bbc-4390-b3fc-f42c1264012a", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T11:40:11Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T11:40:11Z", + "well": 113295, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "98c5ede5-c223-4116-b7d8-32c4d24c21cf", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-18T12:41:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-18T12:41:14Z", + "well": 112725, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "9bed3718-020f-47dc-be8b-291c1e691a69", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-11-24T13:33:53Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-11-24T13:33:53Z", + "well": 113013, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "a1acbbf8-e6df-440f-85b2-94f63f43603e", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2016-03-15T13:21:24Z", + "update_user": "PROXY_WELLS", + "update_date": "2016-03-15T13:21:24Z", + "well": 109912, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "a5ebb704-28af-4031-bb00-066e6fa95d32", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T11:51:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T11:51:18Z", + "well": 112982, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "bb13dbb2-bde4-41a2-98d6-30541576a532", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-18T12:45:57Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-18T12:45:57Z", + "well": 112268, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "bdeea424-4efb-4178-8042-4aea528be64e", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:49:45Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:49:45Z", + "well": 112718, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "bf1f0af1-0c67-4492-be81-1850f7109d46", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T11:21:22Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T11:21:22Z", + "well": 112778, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "bf4d74d5-eef9-4838-94f4-6743eb59cc43", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T12:14:13Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T12:14:13Z", + "well": 112986, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "c06dd88b-bb8d-4a7f-b4db-8f9b709701fd", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:50:17Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:50:17Z", + "well": 112972, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "c29d336b-5c0d-4b88-96d9-d5ad385d5f13", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T13:37:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T13:37:18Z", + "well": 112939, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "c31ca1ba-0a5d-4633-aab4-f9466fb41727", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2012-02-07T16:16:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2012-02-07T16:16:41Z", + "well": 126, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "ccfcbb1e-8b6a-4fe7-8cd2-ace2e891c124", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-18T12:46:03Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-18T12:46:03Z", + "well": 112476, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "cd48fe54-c362-4d13-84d7-edd47b3c2cfb", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T11:39:40Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T11:39:40Z", + "well": 112485, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "d2516194-0006-42fe-9431-1161ca254900", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:49:50Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:49:50Z", + "well": 112955, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "d3cfdb83-785c-4a27-bf70-910f23a7f9bb", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T13:15:46Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T13:15:46Z", + "well": 112507, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "d67c2ee4-0172-4d24-a5de-3673c4d1983b", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T11:22:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T11:22:14Z", + "well": 112429, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "d84973d6-da4f-4edc-b425-620b99f8f573", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-19T11:40:05Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-19T11:40:05Z", + "well": 113291, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "df3c4f15-4a76-4bfa-b398-f97d096c881a", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T15:49:41Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T15:49:41Z", + "well": 112302, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "e6c53e44-325d-460a-94e3-68f7804cfbf4", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2017-06-14T15:36:39Z", + "update_user": "PROXY_WELLS", + "update_date": "2017-06-14T15:36:39Z", + "well": 113183, + "avi": null, + "storativity": null, + "transmissivity": "864", + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "ea338b9f-e655-4b37-b532-0118209114d5", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-18T12:41:18Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-18T12:41:18Z", + "well": 112960, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "ef278fc0-971b-4e40-bf72-00c0d54c4e3a", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-16T12:14:04Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-16T12:14:04Z", + "well": 112959, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "f5e8f1c0-7306-4716-a1e0-7963307238b5", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-27T11:36:29Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-27T11:36:29Z", + "well": 113127, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "fe251276-63e4-49fd-bfe9-2f228eb7602e", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-24T17:08:42Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-24T17:08:42Z", + "well": 113125, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + }, + { + "model": "wells.hydraulicproperty", + "pk": "fec775a8-3625-40a1-9979-b124efcbf05f", + "fields": { + "create_user": "PROXY_WELLS", + "create_date": "2018-08-26T12:02:14Z", + "update_user": "PROXY_WELLS", + "update_date": "2018-08-26T12:02:14Z", + "well": 113065, + "avi": null, + "storativity": null, + "transmissivity": null, + "hydraulic_conductivity": null, + "specific_storage": null, + "specific_yield": null, + "testing_method": null, + "testing_duration": null, + "analytic_solution_type": null, + "boundary_effect": null + } + } +] \ No newline at end of file diff --git a/app/backend/aquifers/migrations/0002_aquifers_codes.json b/app/backend/aquifers/migrations/0002_aquifers_codes.json new file mode 100644 index 0000000000..a8c28bc314 --- /dev/null +++ b/app/backend/aquifers/migrations/0002_aquifers_codes.json @@ -0,0 +1,408 @@ +[ + { + "model": "aquifers.aquifersubtype", + "pk": "1a", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Unconfined sand and gravel - large river system", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "1b", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Unconfined sand and gravel aquifer - medium stream system", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "1c", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Unconfined sand and gravel aquifer - small stream system", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "2", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Unconfined sand and gravel - deltaic", + "display_order": 8, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "3", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Unconfined sand and gravel - alluvial or colluvial fan", + "display_order": 10, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "4a", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Unconfined sand and gravel - late glacial outwash", + "display_order": 12, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "4b", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Confined sand and gravel - glacial", + "display_order": 14, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "4c", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Confined sand and gravel - glacio-marine", + "display_order": 16, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "5a", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Fractured sedimentary rock", + "display_order": 18, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "5b", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Karstic limestone", + "display_order": 20, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "6a", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Flat-lying to gently-dipping volcanic bedrock", + "display_order": 22, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifersubtype", + "pk": "6b", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Fractured crystalline bedrock", + "display_order": 24, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquiferdemand", + "pk": "H", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "High", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquiferdemand", + "pk": "L", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Low", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquiferdemand", + "pk": "M", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Moderate", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquiferproductivity", + "pk": "H", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "High", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquiferproductivity", + "pk": "L", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Low", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquiferproductivity", + "pk": "M", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Moderate", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.qualityconcern", + "pk": "I", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Isolated", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.qualityconcern", + "pk": "L", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Local", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.qualityconcern", + "pk": "R", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Regional", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.qualityconcern", + "pk": "N", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "None", + "display_order": 8, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifermaterial", + "pk": "B", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Bedrock", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifermaterial", + "pk": "G", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Gravel", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifermaterial", + "pk": "S", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Sand", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifermaterial", + "pk": "SG", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Sand and Gravel", + "display_order": 8, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.wateruse", + "pk": "D", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Domestic", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.wateruse", + "pk": "M", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Multiple", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.wateruse", + "pk": "PD", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Potential Domestic", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + } +] \ No newline at end of file diff --git a/app/backend/aquifers/migrations/0002_aquifers_codes.py b/app/backend/aquifers/migrations/0002_aquifers_codes.py new file mode 100644 index 0000000000..4711e47d0b --- /dev/null +++ b/app/backend/aquifers/migrations/0002_aquifers_codes.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-21 17:02 +from __future__ import unicode_literals + +from django.db import migrations +import json +from io import open +import os +from gwells.codes import CodeFixture + + +def aquifers_codes(): + fixture = '0002_aquifers_codes.json' + fixture_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), fixture) + + return CodeFixture(fixture_path) + + +class Migration(migrations.Migration): + + dependencies = [ + ('aquifers', '0001_initial'), + ] + + operations = [ + migrations.RunPython(aquifers_codes().load_fixture, reverse_code=aquifers_codes().unload_fixture), + ] diff --git a/app/backend/aquifers/migrations/0003_auto_20180924_2205.py b/app/backend/aquifers/migrations/0003_auto_20180924_2205.py new file mode 100644 index 0000000000..05e4475825 --- /dev/null +++ b/app/backend/aquifers/migrations/0003_auto_20180924_2205.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.14 on 2018-09-24 22:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('aquifers', '0002_aquifers_codes'), + ] + + operations = [ + migrations.AlterField( + model_name='aquifer', + name='aquifer_name', + field=models.CharField(blank=True, max_length=100, null=True), + ), + migrations.AlterField( + model_name='aquifer', + name='litho_stratographic_unit', + field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Lithographic Stratographic Unit'), + ), + migrations.AlterField( + model_name='aquifer', + name='location_description', + field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Description of Location'), + ), + ] diff --git a/app/backend/aquifers/migrations/0004_auto_20180927_1737.py b/app/backend/aquifers/migrations/0004_auto_20180927_1737.py new file mode 100644 index 0000000000..d004c7900c --- /dev/null +++ b/app/backend/aquifers/migrations/0004_auto_20180927_1737.py @@ -0,0 +1,41 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.14 on 2018-09-27 17:37 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('aquifers', '0003_auto_20180924_2205'), + ('wells', '0021_delete_aquifervulnerabilitycode') + ] + + operations = [ + migrations.CreateModel( + name='AquiferVulnerabilityCode', + fields=[ + ('create_user', models.CharField(max_length=60)), + ('create_date', models.DateTimeField(blank=True, null=True)), + ('update_user', models.CharField(max_length=60, null=True)), + ('update_date', models.DateTimeField(blank=True, null=True)), + ('code', models.CharField(db_column='aquifer_vulnerability_code', max_length=1, primary_key=True, serialize=False)), + ('description', models.CharField(max_length=100)), + ('display_order', models.PositiveIntegerField()), + ('effective_date', models.DateTimeField(blank=True, null=True)), + ('expiry_date', models.DateTimeField(blank=True, null=True)), + ], + options={ + 'verbose_name_plural': 'Aquifer Vulnerability Codes', + 'db_table': 'aquifer_vulnerability_code', + 'ordering': ['display_order', 'code'], + }, + ), + migrations.AddField( + model_name='aquifer', + name='vulnerability', + field=models.ForeignKey(blank=True, db_column='aquifer_vulnerablity_code', null=True, on_delete=django.db.models.deletion.PROTECT, to='aquifers.AquiferVulnerabilityCode', verbose_name='Aquifer Vulnerabiliy'), + ), + ] diff --git a/app/backend/aquifers/migrations/0005_aquifer_vulnerability_codes.json b/app/backend/aquifers/migrations/0005_aquifer_vulnerability_codes.json new file mode 100644 index 0000000000..a6f0c42db9 --- /dev/null +++ b/app/backend/aquifers/migrations/0005_aquifer_vulnerability_codes.json @@ -0,0 +1,44 @@ +[ + { + "model": "aquifers.aquifervulnerabilitycode", + "pk": "H", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "High", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifervulnerabilitycode", + "pk": "L", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Low", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "aquifers.aquifervulnerabilitycode", + "pk": "M", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Moderate", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + } +] \ No newline at end of file diff --git a/app/backend/aquifers/migrations/0005_aquifer_vulnerability_codes.py b/app/backend/aquifers/migrations/0005_aquifer_vulnerability_codes.py new file mode 100644 index 0000000000..8b4df3223e --- /dev/null +++ b/app/backend/aquifers/migrations/0005_aquifer_vulnerability_codes.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-21 16:56 +from __future__ import unicode_literals + +from django.db import migrations +import json +from io import open +import os +from gwells.codes import CodeFixture + + +def aquifer_vulnerability_codes(): + fixture = '0005_aquifer_vulnerability_codes.json' + fixture_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), fixture) + + return CodeFixture(fixture_path) + + +class Migration(migrations.Migration): + + dependencies = [ + ('aquifers', '0004_auto_20180927_1737'), + ] + + operations = [ + migrations.RunPython(aquifer_vulnerability_codes().load_fixture, reverse_code=aquifer_vulnerability_codes().unload_fixture), + ] diff --git a/app/backend/aquifers/migrations/0006_auto_20181003_1820.py b/app/backend/aquifers/migrations/0006_auto_20181003_1820.py new file mode 100644 index 0000000000..66129f1070 --- /dev/null +++ b/app/backend/aquifers/migrations/0006_auto_20181003_1820.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.14 on 2018-10-03 18:20 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('aquifers', '0005_aquifer_vulnerability_codes'), + ] + + operations = [ + migrations.RenameField( + model_name='aquifer', + old_name='quality_concert', + new_name='quality_concern', + ), + ] diff --git a/app/backend/aquifers/models.py b/app/backend/aquifers/models.py index 794b9809f0..86d64d4830 100644 --- a/app/backend/aquifers/models.py +++ b/app/backend/aquifers/models.py @@ -20,13 +20,6 @@ class AquiferMaterial(AuditModel): """ Material choices for describing Aquifer Material - - aquifer_materials - ------------------- - Bedrock - Gravel - Sand - Sand and Gravel """ code = models.CharField(primary_key=True, max_length=10, db_column='aquifer_material_code') description = models.CharField(max_length=100) @@ -47,22 +40,6 @@ def __str__(self): class AquiferSubtype(AuditModel): """ Subtypes of Aquifer - - From Trello ticket - Aquifer_Subtype Aquifer_Subtype_Descriptions - 1a Unconfined sand and gravel - large river system - 1b Unconfined sand and gravel aquifer - medium stream system - 1c Unconfined sand and gravel aquifer - small stream system - 2 Unconfined sand and gravel - deltaic - 3 Unconfined sand and gravel - alluvial or colluvial fan - 4a Unconfined sand and gravel - late glacial outwash - 4b Confined sand and gravel - glacial - 4c Confined sand and gravel - glacio-marine - 5a Fractured sedimentary rock - 5b Karstic limestone - 6a Flat-lying to gently-dipping volcanic bedrock - 6b Fractured crystalline bedrock - UNK Unknown """ code = models.CharField(primary_key=True, max_length=3, db_column='aquifer_subtype_code') description = models.CharField(max_length=100) @@ -80,11 +57,8 @@ def __str__(self): class AquiferProductivity(AuditModel): """ - Productivity choices for describing Aquifer + Productivity choices for describing Aquifer ------------------- - High (H) - Low (L) - Moderate (M) """ code = models.CharField(primary_key=True, max_length=1, db_column='aquifer_productivity_code') description = models.CharField(max_length=100) @@ -104,11 +78,7 @@ def __str__(self): class AquiferDemand(AuditModel): """ - Demand choices for describing Aquifer - ------------------- - High - Low - Moderate + Demand choices for describing Aquifer """ code = models.CharField(primary_key=True, max_length=1, db_column='aquifer_demand_code') description = models.CharField(max_length=100) @@ -118,7 +88,7 @@ class AquiferDemand(AuditModel): expiry_date = models.DateTimeField(blank=True, null=True) class Meta: - db_table = 'aquifer_demand_code' + db_table = 'aquifer_demand_code' ordering = ['display_order', 'code'] verbose_name_plural = 'Aquifer Demand Codes' @@ -130,9 +100,6 @@ class WaterUse(AuditModel): """ Type of Known Water Use choices for describing Aquifer ------------------- - Domestic - Multiple - Potential Domestic """ code = models.CharField(primary_key=True, max_length=2, db_column='water_use_code') description = models.CharField(max_length=100) @@ -151,12 +118,6 @@ def __str__(self): class QualityConcern(AuditModel): - """ - Isolated - Local - None - Regional - """ code = models.CharField(primary_key=True, max_length=2, db_column='quality_concern_code') description = models.CharField(max_length=100) display_order = models.PositiveIntegerField() @@ -173,6 +134,26 @@ def __str__(self): return '{} - {}'.format(self.code, self.description) +class AquiferVulnerabilityCode(AuditModel): + """ + Demand choices for describing Aquifer + """ + code = models.CharField(primary_key=True, max_length=1, db_column='aquifer_vulnerability_code') + description = models.CharField(max_length=100) + display_order = models.PositiveIntegerField() + + effective_date = models.DateTimeField(blank=True, null=True) + expiry_date = models.DateTimeField(blank=True, null=True) + + class Meta: + db_table = 'aquifer_vulnerability_code' + ordering = ['display_order', 'code'] + verbose_name_plural = 'Aquifer Vulnerability Codes' + + def __str__(self): + return '{} - {}'.format(self.code, self.description) + + class Aquifer(AuditModel): """ An underground layer of water-bearing permeable rock, rock fractures or unconsolidated materials @@ -180,13 +161,12 @@ class Aquifer(AuditModel): This table holds ONLY the aquifers to which we have associated one or more wells. It is not the definitive source of all aquifers in the province. - """ aquifer_id = models.PositiveIntegerField( primary_key=True, verbose_name="Aquifer ID Number") - aquifer_name = models.CharField(max_length=100) + aquifer_name = models.CharField(max_length=100, blank=True, null=True) location_description = models.CharField( - max_length=100, blank=True, verbose_name='Description of Location') + max_length=100, blank=True, null=True, verbose_name='Description of Location') material = models.ForeignKey( AquiferMaterial, db_column='aquifer_material_code', @@ -205,6 +185,13 @@ class Aquifer(AuditModel): related_name='aquifers') area = models.DecimalField( max_digits=5, decimal_places=1, blank=True, null=True, verbose_name='Size (square km)') + vulnerability = models.ForeignKey( + AquiferVulnerabilityCode, + db_column='aquifer_vulnerablity_code', + blank=True, + null=True, + on_delete=models.PROTECT, + verbose_name="Aquifer Vulnerabiliy") productivity = models.ForeignKey( AquiferProductivity, db_column='aquifer_productivity_code', @@ -229,7 +216,7 @@ class Aquifer(AuditModel): on_delete=models.PROTECT, verbose_name="Known Water Use Reference", related_name='aquifers') - quality_concert = models.ForeignKey( + quality_concern = models.ForeignKey( QualityConcern, db_column='quality_concern_code', blank=True, @@ -238,7 +225,7 @@ class Aquifer(AuditModel): verbose_name="Quality Concern Reference", related_name='aquifers') litho_stratographic_unit = models.CharField( - max_length=100, blank=True, verbose_name='Lithographic Stratographic Unit') + max_length=100, blank=True, null=True, verbose_name='Lithographic Stratographic Unit') mapping_year = models.PositiveIntegerField( validators=[ MinValueValidator(1990), @@ -259,4 +246,4 @@ class Meta: verbose_name_plural = 'Aquifers' def __str__(self): - return '{} - {}'.format(self.code, self.description) \ No newline at end of file + return '{} - {}'.format(self.aquifer_id, self.aquifer_name) diff --git a/app/backend/aquifers/serializers.py b/app/backend/aquifers/serializers.py new file mode 100644 index 0000000000..72cd25168e --- /dev/null +++ b/app/backend/aquifers/serializers.py @@ -0,0 +1,46 @@ +""" + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +""" + +from rest_framework import serializers + +from aquifers.models import Aquifer + +class AquiferListSerializer(serializers.ModelSerializer): + """Serialize a aquifer list""" + demand_description = serializers.SlugRelatedField(source='demand', read_only=True, slug_field='description') + material_description = serializers.SlugRelatedField(source='material', read_only=True, slug_field='description') + productivity_description = serializers.SlugRelatedField(source='productivity', read_only=True, slug_field='description') + subtype_description = serializers.SlugRelatedField(source='subtype', read_only=True, slug_field='description') + vulnerability_description = serializers.SlugRelatedField(source='vulnerability', read_only=True, slug_field='description') + + class Meta: + model = Aquifer + fields = ( + 'aquifer_id', + 'aquifer_name', + 'area', + 'demand_description', + 'demand', + 'litho_stratographic_unit', + 'location_description', + 'mapping_year', + 'material_description', + 'material', + 'productivity_description', + 'productivity', + 'subtype_description', + 'subtype', + 'vulnerability_description', + 'vulnerability' + ) \ No newline at end of file diff --git a/app/backend/aquifers/templates/aquifers/aquifers.html b/app/backend/aquifers/templates/aquifers/aquifers.html new file mode 100644 index 0000000000..0f6db4b906 --- /dev/null +++ b/app/backend/aquifers/templates/aquifers/aquifers.html @@ -0,0 +1,11 @@ +{% extends 'gwells/base_spa.html' %} +{% load render_bundle from webpack_loader %} +{% block meta %}Search for registered well drillers and well pump installers who are authorized to work on water wells in B.C. +{% endblock %} +{% block title %}Aquifers{% endblock %} +{% block body_block %} +
+ {% render_bundle 'manifest' %} + {% render_bundle 'vendor' %} + {% render_bundle 'aquifers' %} +{% endblock %} diff --git a/app/backend/aquifers/urls.py b/app/backend/aquifers/urls.py new file mode 100644 index 0000000000..4fb36ae58f --- /dev/null +++ b/app/backend/aquifers/urls.py @@ -0,0 +1,28 @@ +""" + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +""" + +from django.conf.urls import url +from django.views.decorators.cache import never_cache + +from aquifers import views + +urlpatterns = [ + url(r'^api/v1/aquifers/$', + never_cache(views.AquiferListAPIView.as_view()), + name='aquifers-list' + ), + + # Aquifers home (loads aquifers application) + url(r'^aquifers/', views.AquiferHomeView.as_view(), name='aquifers-home') +] \ No newline at end of file diff --git a/app/backend/aquifers/views.py b/app/backend/aquifers/views.py index 91ea44a218..c7dac8fa32 100644 --- a/app/backend/aquifers/views.py +++ b/app/backend/aquifers/views.py @@ -1,3 +1,38 @@ +""" + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +""" + from django.shortcuts import render +from django_filters import rest_framework as filters +from django.views.generic import TemplateView + +from rest_framework.filters import SearchFilter +from rest_framework.generics import ListAPIView + +from aquifers.models import Aquifer +from aquifers.serializers import AquiferListSerializer + +class AquiferListAPIView(ListAPIView): + """List aquifers + get: return a list of aquifers + """ + + queryset = Aquifer.objects.all() + serializer_class = AquiferListSerializer + filter_backends = (filters.DjangoFilterBackend,SearchFilter) + filter_fields = ('aquifer_id',) + search_fields = ('aquifer_name',) -# Create your views here. +class AquiferHomeView(TemplateView): + """Loads the html file containing the Aquifer web app""" + template_name = 'aquifers/aquifers.html' \ No newline at end of file diff --git a/app/backend/gwells/codes.py b/app/backend/gwells/codes.py index 3857664be2..fe1b44d13f 100644 --- a/app/backend/gwells/codes.py +++ b/app/backend/gwells/codes.py @@ -28,7 +28,11 @@ def unload_fixture(self, apps, schema_editor): for item in self.fixture: app, model = item.get('model').split('.', 1) model = apps.get_model(app, model) - model.objects.get(pk=item.get('pk')).delete() + # The fixture in question may have been deleted for other reasons, so we don't force a + # delete. If the record exists, then delete it. + item = model.objects.filter(pk=item.get('pk')).first() + if item: + item.delete() def _process_fixture_file(self, fixture_path): with open(fixture_path, 'r') as json_data: diff --git a/app/backend/gwells/fixtures/wells.json b/app/backend/gwells/fixtures/wells.json old mode 100755 new mode 100644 index 5848acc2fc..52d4f77dde --- a/app/backend/gwells/fixtures/wells.json +++ b/app/backend/gwells/fixtures/wells.json @@ -162851,7 +162851,7 @@ "legal_lot": "1", "other_drilling_method": null, "filter_pack_material_size": null, - "legal_pid": "KAP61177", + "legal_pid": "61177", "well_cap_type": null, "ems": null, "other_screen_bottom": "", @@ -162958,7 +162958,7 @@ "legal_lot": "1", "other_drilling_method": null, "filter_pack_material_size": null, - "legal_pid": "KAP61477", + "legal_pid": "61477", "well_cap_type": null, "ems": null, "other_screen_bottom": "", @@ -163065,7 +163065,7 @@ "legal_lot": "1", "other_drilling_method": null, "filter_pack_material_size": null, - "legal_pid": "KAP61460", + "legal_pid": "61460", "well_cap_type": null, "ems": null, "other_screen_bottom": "", @@ -163172,7 +163172,7 @@ "legal_lot": "1", "other_drilling_method": null, "filter_pack_material_size": null, - "legal_pid": "KAP612", + "legal_pid": "612", "well_cap_type": null, "ems": null, "other_screen_bottom": "", @@ -163213,10 +163213,10 @@ "legal_township": " ", "legal_range": "9", "land_district": "53", - "legal_pid": "KAP61444", + "legal_pid": "61444", "well_location_description": "CORNER OF WELSH ROAD & OCEANSIDE LANE.", - "construction_start_date": "1987-07-15T00:00:00Z", - "construction_end_date": "1987-07-15T00:00:00Z", + "construction_start_date": "1987-07-15", + "construction_end_date": "1987-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163320,10 +163320,10 @@ "legal_township": " ", "legal_range": " ", "land_district": "26", - "legal_pid": "KAP61444", + "legal_pid": "61444", "well_location_description": "E RASBERRY", - "construction_start_date": "1987-02-06T00:00:00Z", - "construction_end_date": "1987-02-06T00:00:00Z", + "construction_start_date": "1987-02-06", + "construction_end_date": "1987-02-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163427,10 +163427,10 @@ "legal_township": " ", "legal_range": " ", "land_district": "26", - "legal_pid": "KAP61567", + "legal_pid": "61567", "well_location_description": "LOT 17 OF SUBDIVISION OF LOT 2, BACK OF LOT", - "construction_start_date": "1993-07-19T00:00:00Z", - "construction_end_date": "1993-07-19T00:00:00Z", + "construction_start_date": "1993-07-19", + "construction_end_date": "1993-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163536,8 +163536,8 @@ "land_district": "36", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED.", - "construction_start_date": "1989-05-09T00:00:00Z", - "construction_end_date": "1989-05-09T00:00:00Z", + "construction_start_date": "1989-05-09", + "construction_end_date": "1989-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163643,8 +163643,8 @@ "land_district": "27", "legal_pid": "109689583", "well_location_description": " ", - "construction_start_date": "1998-05-22T00:00:00Z", - "construction_end_date": "1998-05-22T00:00:00Z", + "construction_start_date": "1998-05-22", + "construction_end_date": "1998-05-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163750,8 +163750,8 @@ "land_district": "32", "legal_pid": "101769758", "well_location_description": "PH # 756.0621", - "construction_start_date": "1993-10-01T00:00:00Z", - "construction_end_date": "1993-10-01T00:00:00Z", + "construction_start_date": "1993-10-01", + "construction_end_date": "1993-10-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163857,8 +163857,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "ANARCHIST MOUNTAIN (SUMMIT)", - "construction_start_date": "2006-03-01T00:00:00Z", - "construction_end_date": "2006-03-01T00:00:00Z", + "construction_start_date": "2006-03-01", + "construction_end_date": "2006-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -163964,8 +163964,8 @@ "land_district": null, "legal_pid": "124091553", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2004-06-17T00:00:00Z", - "construction_end_date": "2004-06-17T00:00:00Z", + "construction_start_date": "2004-06-17", + "construction_end_date": "2004-06-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -164071,8 +164071,8 @@ "land_district": "44", "legal_pid": "114775255", "well_location_description": "6699 BERYL PRAIRIE ROAD, HUDSON'S HOPE, BC", - "construction_start_date": "2010-01-05T00:00:00Z", - "construction_end_date": "2010-01-09T00:00:00Z", + "construction_start_date": "2010-01-05", + "construction_end_date": "2010-01-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -164178,12 +164178,12 @@ "land_district": null, "legal_pid": "100967629", "well_location_description": "Well B, south of staff lodge, east of water treatment building.", - "construction_start_date": "2011-08-26T00:00:00Z", - "construction_end_date": "2011-08-26T00:00:00Z", + "construction_start_date": "2011-08-26", + "construction_end_date": "2011-08-26", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2011-08-31T00:00:00Z", - "decommission_end_date": "2011-09-01T00:00:00Z", + "decommission_start_date": "2011-08-31", + "decommission_end_date": "2011-09-01", "drilling_company": "68e7e0a8-e5c1-4b09-b128-a20589eaa0a5", "well_identification_plate_attached": null, "latitude": "49.25", @@ -164289,8 +164289,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2011-07-14T00:00:00Z", - "decommission_end_date": "2011-07-14T00:00:00Z", + "decommission_start_date": "2011-07-14", + "decommission_end_date": "2011-07-14", "drilling_company": "d7e4283c-ea1c-454e-b4ca-ec7b62d95d85", "well_identification_plate_attached": null, "latitude": "49.20", @@ -164392,8 +164392,8 @@ "land_district": "54", "legal_pid": "123456789", "well_location_description": "LEFT TURN OFF JUNE SPRINGS RD. UP DRIVEWAY TO FORK ON DRIVEWAY STAY LEFT. WELL APPROX 100' FROM CORNER/POWER POLE.", - "construction_start_date": "2009-06-24T00:00:00Z", - "construction_end_date": "2009-07-02T00:00:00Z", + "construction_start_date": "2009-06-24", + "construction_end_date": "2009-07-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -164499,8 +164499,8 @@ "land_district": "54", "legal_pid": "117792304", "well_location_description": "PARCEL A PART KF49352", - "construction_start_date": "2010-05-18T00:00:00Z", - "construction_end_date": "2010-05-18T00:00:00Z", + "construction_start_date": "2010-05-18", + "construction_end_date": "2010-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -164608,8 +164608,8 @@ "well_location_description": " ", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "1967-08-01T00:00:00Z", - "alteration_end_date": "1967-08-03T00:00:00Z", + "alteration_start_date": "1967-08-01", + "alteration_end_date": "1967-08-03", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "79916e22-c704-474b-b7f6-2282bec49bff", @@ -164820,8 +164820,8 @@ "land_district": "06", "legal_pid": "126450020", "well_location_description": "NORTH EAST CORNER OF LOT.", - "construction_start_date": "2012-10-06T00:00:00Z", - "construction_end_date": "2012-10-09T00:00:00Z", + "construction_start_date": "2012-10-06", + "construction_end_date": "2012-10-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165141,8 +165141,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "NE 1/4 34 West of 6 Meridian Land file LBF#3400865\r\nLicence 338882", - "construction_start_date": "2013-08-05T00:00:00Z", - "construction_end_date": "2013-08-06T00:00:00Z", + "construction_start_date": "2013-08-05", + "construction_end_date": "2013-08-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165248,8 +165248,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL DESCRIPTION NOT PROVIDED", - "construction_start_date": "2014-08-19T00:00:00Z", - "construction_end_date": "2014-08-19T00:00:00Z", + "construction_start_date": "2014-08-19", + "construction_end_date": "2014-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165355,8 +165355,8 @@ "land_district": "33", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2014-09-04T00:00:00Z", - "construction_end_date": "2014-09-04T00:00:00Z", + "construction_start_date": "2014-09-04", + "construction_end_date": "2014-09-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165462,8 +165462,8 @@ "land_district": "27", "legal_pid": "115749711", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-20T00:00:00Z", - "construction_end_date": "2015-05-20T00:00:00Z", + "construction_start_date": "2015-05-20", + "construction_end_date": "2015-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165569,12 +165569,12 @@ "land_district": "44", "legal_pid": "008048142", "well_location_description": "PREVIOUS LEGAL PLAN: 14144", - "construction_start_date": "1975-01-24T00:00:00Z", - "construction_end_date": "1976-01-29T00:00:00Z", - "alteration_start_date": "2014-11-23T00:00:00Z", - "alteration_end_date": "2014-11-23T00:00:00Z", - "decommission_start_date": "2014-11-23T00:00:00Z", - "decommission_end_date": "2014-11-23T00:00:00Z", + "construction_start_date": "1975-01-24", + "construction_end_date": "1976-01-29", + "alteration_start_date": "2014-11-23", + "alteration_end_date": "2014-11-23", + "decommission_start_date": "2014-11-23", + "decommission_end_date": "2014-11-23", "drilling_company": "bf5d31ea-8a5a-4363-8a5e-6c00eed03058", "well_identification_plate_attached": "ON TOP", "latitude": "52.465449", @@ -165676,8 +165676,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-20T00:00:00Z", - "construction_end_date": "2015-11-24T00:00:00Z", + "construction_start_date": "2015-08-20", + "construction_end_date": "2015-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165783,8 +165783,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NORTHWEST CORNER OF LOT", - "construction_start_date": "2016-04-11T00:00:00Z", - "construction_end_date": "2016-04-12T00:00:00Z", + "construction_start_date": "2016-04-11", + "construction_end_date": "2016-04-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165890,8 +165890,8 @@ "land_district": "19", "legal_pid": "128787404", "well_location_description": "NOTHING ENTERED.", - "construction_start_date": "2016-07-18T00:00:00Z", - "construction_end_date": "2016-07-20T00:00:00Z", + "construction_start_date": "2016-07-18", + "construction_end_date": "2016-07-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -165997,8 +165997,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-22T00:00:00Z", - "construction_end_date": "2016-07-30T00:00:00Z", + "construction_start_date": "2016-07-22", + "construction_end_date": "2016-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166104,8 +166104,8 @@ "land_district": "61", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-02-23T00:00:00Z", - "construction_end_date": "2016-03-04T00:00:00Z", + "construction_start_date": "2016-02-23", + "construction_end_date": "2016-03-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166211,8 +166211,8 @@ "land_district": "22", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-12-14T00:00:00Z", - "construction_end_date": "2016-01-06T00:00:00Z", + "construction_start_date": "2015-12-14", + "construction_end_date": "2016-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166318,8 +166318,8 @@ "land_district": "24", "legal_pid": "125992601", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-14T00:00:00Z", - "construction_end_date": "2015-10-23T00:00:00Z", + "construction_start_date": "2015-10-14", + "construction_end_date": "2015-10-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166425,8 +166425,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-18T00:00:00Z", - "construction_end_date": "2016-09-22T00:00:00Z", + "construction_start_date": "2015-09-18", + "construction_end_date": "2016-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166532,8 +166532,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-02T00:00:00Z", - "construction_end_date": "2015-07-06T00:00:00Z", + "construction_start_date": "2015-07-02", + "construction_end_date": "2015-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166639,8 +166639,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WILLING PARK, LANGFORD, BC", - "construction_start_date": "2015-06-01T00:00:00Z", - "construction_end_date": "2015-06-01T00:00:00Z", + "construction_start_date": "2015-06-01", + "construction_end_date": "2015-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166746,8 +166746,8 @@ "land_district": null, "legal_pid": "111674873", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-04-16T00:00:00Z", - "construction_end_date": "2015-04-17T00:00:00Z", + "construction_start_date": "2015-04-16", + "construction_end_date": "2015-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166853,8 +166853,8 @@ "land_district": "53", "legal_pid": "103994635", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-04-01T00:00:00Z", - "construction_end_date": "2015-04-01T00:00:00Z", + "construction_start_date": "2015-04-01", + "construction_end_date": "2015-04-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -166960,8 +166960,8 @@ "land_district": "16", "legal_pid": "108856567", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-03-01T00:00:00Z", - "construction_end_date": "2015-03-01T00:00:00Z", + "construction_start_date": "2015-03-01", + "construction_end_date": "2015-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167067,8 +167067,8 @@ "land_district": "62", "legal_pid": "106106056", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-07-05T00:00:00Z", - "construction_end_date": "2014-07-05T00:00:00Z", + "construction_start_date": "2014-07-05", + "construction_end_date": "2014-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167174,8 +167174,8 @@ "land_district": "24", "legal_pid": "129253845", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-04-05T00:00:00Z", - "construction_end_date": "2014-04-05T00:00:00Z", + "construction_start_date": "2014-04-05", + "construction_end_date": "2014-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167281,8 +167281,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-05-22T00:00:00Z", - "construction_end_date": "2014-05-22T00:00:00Z", + "construction_start_date": "2014-05-22", + "construction_end_date": "2014-05-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167388,8 +167388,8 @@ "land_district": "24", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-08-24T00:00:00Z", - "construction_end_date": "2013-08-24T00:00:00Z", + "construction_start_date": "2013-08-24", + "construction_end_date": "2013-08-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167495,8 +167495,8 @@ "land_district": "42", "legal_pid": "103122301", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-10-10T00:00:00Z", - "construction_end_date": "2013-10-10T00:00:00Z", + "construction_start_date": "2013-10-10", + "construction_end_date": "2013-10-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167602,8 +167602,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-07-04T00:00:00Z", - "construction_end_date": "2013-07-12T00:00:00Z", + "construction_start_date": "2013-07-04", + "construction_end_date": "2013-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167709,8 +167709,8 @@ "land_district": "24", "legal_pid": "123456789", "well_location_description": "INCEPT PART PLAN 38417", - "construction_start_date": "2013-07-01T00:00:00Z", - "construction_end_date": "2013-07-01T00:00:00Z", + "construction_start_date": "2013-07-01", + "construction_end_date": "2013-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167816,8 +167816,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-19T00:00:00Z", - "construction_end_date": "2015-09-08T00:00:00Z", + "construction_start_date": "2015-08-19", + "construction_end_date": "2015-09-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -167923,8 +167923,8 @@ "land_district": "44", "legal_pid": "114629011", "well_location_description": "425' NORTH AND 200' EAST OF HOUSE", - "construction_start_date": "2006-06-05T00:00:00Z", - "construction_end_date": "2006-06-14T00:00:00Z", + "construction_start_date": "2006-06-05", + "construction_end_date": "2006-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168030,8 +168030,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-27T00:00:00Z", - "construction_end_date": "2016-07-15T00:00:00Z", + "construction_start_date": "2016-06-27", + "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168137,8 +168137,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-21T00:00:00Z", - "construction_end_date": "2016-06-24T00:00:00Z", + "construction_start_date": "2016-06-21", + "construction_end_date": "2016-06-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168244,8 +168244,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-06T00:00:00Z", - "construction_end_date": "2016-06-10T00:00:00Z", + "construction_start_date": "2016-06-06", + "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168351,8 +168351,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-01T00:00:00Z", - "construction_end_date": "2016-06-02T00:00:00Z", + "construction_start_date": "2016-06-01", + "construction_end_date": "2016-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168458,8 +168458,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-09T00:00:00Z", - "construction_end_date": "2016-05-11T00:00:00Z", + "construction_start_date": "2016-05-09", + "construction_end_date": "2016-05-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168565,8 +168565,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-13T00:00:00Z", - "construction_end_date": "2016-04-15T00:00:00Z", + "construction_start_date": "2016-04-13", + "construction_end_date": "2016-04-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168672,8 +168672,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-28T00:00:00Z", - "construction_end_date": "2016-03-31T00:00:00Z", + "construction_start_date": "2016-03-28", + "construction_end_date": "2016-03-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168779,8 +168779,8 @@ "land_district": "44", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-25T00:00:00Z", - "construction_end_date": "2015-11-27T00:00:00Z", + "construction_start_date": "2015-11-25", + "construction_end_date": "2015-11-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168886,8 +168886,8 @@ "land_district": "44", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-17T00:00:00Z", - "construction_end_date": "2015-11-20T00:00:00Z", + "construction_start_date": "2015-11-17", + "construction_end_date": "2015-11-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -168993,8 +168993,8 @@ "land_district": "44", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-21T00:00:00Z", - "construction_end_date": "2015-10-22T00:00:00Z", + "construction_start_date": "2015-10-21", + "construction_end_date": "2015-10-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169100,8 +169100,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-14T00:00:00Z", - "construction_end_date": "2015-10-20T00:00:00Z", + "construction_start_date": "2015-10-14", + "construction_end_date": "2015-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169207,8 +169207,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-07T00:00:00Z", - "construction_end_date": "2015-10-09T00:00:00Z", + "construction_start_date": "2015-10-07", + "construction_end_date": "2015-10-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169314,8 +169314,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-03T00:00:00Z", - "construction_end_date": "2015-10-07T00:00:00Z", + "construction_start_date": "2015-10-03", + "construction_end_date": "2015-10-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169421,8 +169421,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-24T00:00:00Z", - "construction_end_date": "2015-10-02T00:00:00Z", + "construction_start_date": "2015-09-24", + "construction_end_date": "2015-10-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169528,8 +169528,8 @@ "land_district": null, "legal_pid": "110001531", "well_location_description": "IN THE BACKYARD ON THE EAST PROPERTY LINE", - "construction_start_date": "2015-02-05T00:00:00Z", - "construction_end_date": "2015-02-06T00:00:00Z", + "construction_start_date": "2015-02-05", + "construction_end_date": "2015-02-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169635,8 +169635,8 @@ "land_district": "41", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2012-07-02T00:00:00Z", - "construction_end_date": "2012-07-07T00:00:00Z", + "construction_start_date": "2012-07-02", + "construction_end_date": "2012-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169742,8 +169742,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "CORNER SOUTHEAST OF PROPERTY BESIDE ROAD", - "construction_start_date": "2016-01-25T00:00:00Z", - "construction_end_date": "2016-01-29T00:00:00Z", + "construction_start_date": "2016-01-25", + "construction_end_date": "2016-01-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169849,8 +169849,8 @@ "land_district": "41", "legal_pid": "109574131", "well_location_description": "BACK NORTHEAST CORNER OF THE LOT ON THE LAKE", - "construction_start_date": "2015-04-25T00:00:00Z", - "construction_end_date": "2015-04-26T00:00:00Z", + "construction_start_date": "2015-04-25", + "construction_end_date": "2015-04-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -169956,8 +169956,8 @@ "land_district": null, "legal_pid": "106536557", "well_location_description": "DOWN IN THE BOTTOM OF THE FIELD BESIDE THE LAKE", - "construction_start_date": "2015-06-09T00:00:00Z", - "construction_end_date": "2015-06-11T00:00:00Z", + "construction_start_date": "2015-06-09", + "construction_end_date": "2015-06-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170063,8 +170063,8 @@ "land_district": null, "legal_pid": "104642074", "well_location_description": "10' BEHIND SHOP", - "construction_start_date": "2016-01-05T00:00:00Z", - "construction_end_date": "2016-01-07T00:00:00Z", + "construction_start_date": "2016-01-05", + "construction_end_date": "2016-01-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170170,8 +170170,8 @@ "land_district": null, "legal_pid": "102991161", "well_location_description": "EAST OF ORIGINAL FARM HOUSE IN FIELD", - "construction_start_date": "2016-01-18T00:00:00Z", - "construction_end_date": "2016-01-21T00:00:00Z", + "construction_start_date": "2016-01-18", + "construction_end_date": "2016-01-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170277,8 +170277,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Construction Site", - "construction_start_date": "2016-11-23T00:00:00Z", - "construction_end_date": "2016-11-24T00:00:00Z", + "construction_start_date": "2016-11-23", + "construction_end_date": "2016-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170384,8 +170384,8 @@ "land_district": null, "legal_pid": "104625099", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-04T00:00:00Z", - "construction_end_date": "2016-07-11T00:00:00Z", + "construction_start_date": "2016-07-04", + "construction_end_date": "2016-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170491,8 +170491,8 @@ "land_district": null, "legal_pid": "118974732", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-12T00:00:00Z", - "construction_end_date": "2016-07-14T00:00:00Z", + "construction_start_date": "2016-07-12", + "construction_end_date": "2016-07-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170598,8 +170598,8 @@ "land_district": "41", "legal_pid": "107885466", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-26T00:00:00Z", - "construction_end_date": "2016-05-03T00:00:00Z", + "construction_start_date": "2016-04-26", + "construction_end_date": "2016-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170705,8 +170705,8 @@ "land_district": null, "legal_pid": "113772686", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-20T00:00:00Z", - "construction_end_date": "2016-06-29T00:00:00Z", + "construction_start_date": "2016-06-20", + "construction_end_date": "2016-06-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -170812,8 +170812,8 @@ "land_district": "25", "legal_pid": "113024809", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-15T00:00:00Z", - "construction_end_date": "2016-07-26T00:00:00Z", + "construction_start_date": "2016-07-15", + "construction_end_date": "2016-07-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171026,8 +171026,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Lot 2 of approved subdivision plan.", - "construction_start_date": "2016-09-07T00:00:00Z", - "construction_end_date": "2016-09-15T00:00:00Z", + "construction_start_date": "2016-09-07", + "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171133,8 +171133,8 @@ "land_district": null, "legal_pid": "123318112", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2006-08-08T00:00:00Z", - "construction_end_date": "2006-08-08T00:00:00Z", + "construction_start_date": "2006-08-08", + "construction_end_date": "2006-08-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171240,8 +171240,8 @@ "land_district": "50", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-18T00:00:00Z", - "construction_end_date": "2016-08-19T00:00:00Z", + "construction_start_date": "2016-08-18", + "construction_end_date": "2016-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171347,8 +171347,8 @@ "land_district": "33", "legal_pid": "103663582", "well_location_description": "South 20 acre parcel of D.L. 178, access off Stonefly Road.", - "construction_start_date": "2016-08-26T00:00:00Z", - "construction_end_date": "2016-08-30T00:00:00Z", + "construction_start_date": "2016-08-26", + "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171454,8 +171454,8 @@ "land_district": "50", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-06-22T00:00:00Z", - "construction_end_date": "2016-06-23T00:00:00Z", + "construction_start_date": "2016-06-22", + "construction_end_date": "2016-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171561,8 +171561,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Together with an interest in the common property in proportion to the unit entitlement of the strata lot as shown on Form V.", - "construction_start_date": "2016-07-26T00:00:00Z", - "construction_end_date": "2016-07-27T00:00:00Z", + "construction_start_date": "2016-07-26", + "construction_end_date": "2016-07-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171668,8 +171668,8 @@ "land_district": "33", "legal_pid": "125617061", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-23T00:00:00Z", - "construction_end_date": "2016-08-25T00:00:00Z", + "construction_start_date": "2016-08-23", + "construction_end_date": "2016-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171775,8 +171775,8 @@ "land_district": "43", "legal_pid": "117536499", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-20T00:00:00Z", - "construction_end_date": "2016-09-20T00:00:00Z", + "construction_start_date": "2016-09-20", + "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171882,8 +171882,8 @@ "land_district": null, "legal_pid": "102916053", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-27T00:00:00Z", - "construction_end_date": "2016-09-27T00:00:00Z", + "construction_start_date": "2016-09-27", + "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -171989,8 +171989,8 @@ "land_district": "35", "legal_pid": "127493016", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-23T00:00:00Z", - "construction_end_date": "2016-09-26T00:00:00Z", + "construction_start_date": "2016-09-23", + "construction_end_date": "2016-09-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172096,8 +172096,8 @@ "land_district": "01", "legal_pid": "100369578", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-15T00:00:00Z", - "construction_end_date": "2016-08-17T00:00:00Z", + "construction_start_date": "2016-08-15", + "construction_end_date": "2016-08-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172203,8 +172203,8 @@ "land_district": "41", "legal_pid": "123456789", "well_location_description": "BACKYARD CORNER SOUTH", - "construction_start_date": "2016-12-05T00:00:00Z", - "construction_end_date": "2016-12-05T00:00:00Z", + "construction_start_date": "2016-12-05", + "construction_end_date": "2016-12-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172310,8 +172310,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-29T00:00:00Z", - "construction_end_date": "2016-07-29T00:00:00Z", + "construction_start_date": "2016-07-29", + "construction_end_date": "2016-07-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172417,8 +172417,8 @@ "land_district": "54", "legal_pid": "123969865", "well_location_description": "WELL IS LOCATED APPROXIMATELY 20' OF THE SOUTHWEST CORNER OF PROPERTY", - "construction_start_date": "2015-03-18T00:00:00Z", - "construction_end_date": "2015-04-17T00:00:00Z", + "construction_start_date": "2015-03-18", + "construction_end_date": "2015-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172524,8 +172524,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTH END OF PARKING LOT", - "construction_start_date": "2016-12-05T00:00:00Z", - "construction_end_date": "2016-12-06T00:00:00Z", + "construction_start_date": "2016-12-05", + "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172631,8 +172631,8 @@ "land_district": "26", "legal_pid": "125824899", "well_location_description": "That part of district lot 12193 KD Except PL NEP 19510 lying north of a road shown on Plan NEP 19510", - "construction_start_date": "2016-11-23T00:00:00Z", - "construction_end_date": "2016-11-29T00:00:00Z", + "construction_start_date": "2016-11-23", + "construction_end_date": "2016-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172738,8 +172738,8 @@ "land_district": "27", "legal_pid": "124478270", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-13T00:00:00Z", - "construction_end_date": "2016-06-13T00:00:00Z", + "construction_start_date": "2016-06-13", + "construction_end_date": "2016-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172845,8 +172845,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-17T00:00:00Z", - "construction_end_date": "2016-04-17T00:00:00Z", + "construction_start_date": "2016-04-17", + "construction_end_date": "2016-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -172952,8 +172952,8 @@ "land_district": "25", "legal_pid": "127067505", "well_location_description": "OFF OF SOUTH EAGAN CREEK FORESTRY ROAD", - "construction_start_date": "2016-05-05T00:00:00Z", - "construction_end_date": "2016-05-06T00:00:00Z", + "construction_start_date": "2016-05-05", + "construction_end_date": "2016-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173059,8 +173059,8 @@ "land_district": "27", "legal_pid": "129671124", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-16T00:00:00Z", - "construction_end_date": "2016-05-16T00:00:00Z", + "construction_start_date": "2016-05-16", + "construction_end_date": "2016-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173166,8 +173166,8 @@ "land_district": "27", "legal_pid": "105266661", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-17T00:00:00Z", - "construction_end_date": "2016-05-18T00:00:00Z", + "construction_start_date": "2016-05-17", + "construction_end_date": "2016-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173273,8 +173273,8 @@ "land_district": "27", "legal_pid": "106799108", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-19T00:00:00Z", - "construction_end_date": "2016-05-19T00:00:00Z", + "construction_start_date": "2016-05-19", + "construction_end_date": "2016-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173380,8 +173380,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-24T00:00:00Z", - "construction_end_date": "2016-05-25T00:00:00Z", + "construction_start_date": "2016-05-24", + "construction_end_date": "2016-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173487,8 +173487,8 @@ "land_district": "27", "legal_pid": "107554010", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-25T00:00:00Z", - "construction_end_date": "2016-05-26T00:00:00Z", + "construction_start_date": "2016-05-25", + "construction_end_date": "2016-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173594,8 +173594,8 @@ "land_district": "27", "legal_pid": "103745741", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-28T00:00:00Z", - "construction_end_date": "2016-05-30T00:00:00Z", + "construction_start_date": "2016-05-28", + "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173701,8 +173701,8 @@ "land_district": "27", "legal_pid": "104660927", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-30T00:00:00Z", - "construction_end_date": "2016-06-02T00:00:00Z", + "construction_start_date": "2016-05-30", + "construction_end_date": "2016-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173808,8 +173808,8 @@ "land_district": "27", "legal_pid": "106812457", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-07T00:00:00Z", - "construction_end_date": "2016-06-07T00:00:00Z", + "construction_start_date": "2016-06-07", + "construction_end_date": "2016-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -173915,8 +173915,8 @@ "land_district": "27", "legal_pid": "106812457", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-08T00:00:00Z", - "construction_end_date": "2016-06-09T00:00:00Z", + "construction_start_date": "2016-06-08", + "construction_end_date": "2016-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174022,8 +174022,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "N/E QUARTER. 87-23W6 AND 88-23W6. INGA LAKE RD. 2KM, LEFT 4.3 KM, LEFT 2KM INTO LOCATION", - "construction_start_date": "2014-03-31T00:00:00Z", - "construction_end_date": "2014-03-31T00:00:00Z", + "construction_start_date": "2014-03-31", + "construction_end_date": "2014-03-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174129,8 +174129,8 @@ "land_district": "27", "legal_pid": "103400646", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-10T00:00:00Z", - "construction_end_date": "2016-06-10T00:00:00Z", + "construction_start_date": "2016-06-10", + "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174236,8 +174236,8 @@ "land_district": "27", "legal_pid": "102888505", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-03T00:00:00Z", - "construction_end_date": "2016-06-06T00:00:00Z", + "construction_start_date": "2016-06-03", + "construction_end_date": "2016-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174343,8 +174343,8 @@ "land_district": "27", "legal_pid": "127707962", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-15T00:00:00Z", - "construction_end_date": "2016-06-20T00:00:00Z", + "construction_start_date": "2016-06-15", + "construction_end_date": "2016-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174450,8 +174450,8 @@ "land_district": "27", "legal_pid": "113363743", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-29T00:00:00Z", - "construction_end_date": "2016-06-29T00:00:00Z", + "construction_start_date": "2016-06-29", + "construction_end_date": "2016-06-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174557,8 +174557,8 @@ "land_district": "27", "legal_pid": "113288008", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-05T00:00:00Z", - "construction_end_date": "2016-07-06T00:00:00Z", + "construction_start_date": "2016-07-05", + "construction_end_date": "2016-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174664,8 +174664,8 @@ "land_district": null, "legal_pid": "127168140", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2005-03-01T00:00:00Z", - "construction_end_date": "2005-03-10T00:00:00Z", + "construction_start_date": "2005-03-01", + "construction_end_date": "2005-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174771,8 +174771,8 @@ "land_district": "27", "legal_pid": "123311835", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-06T00:00:00Z", - "construction_end_date": "2016-07-07T00:00:00Z", + "construction_start_date": "2016-07-06", + "construction_end_date": "2016-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174878,8 +174878,8 @@ "land_district": "27", "legal_pid": "107540116", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-13T00:00:00Z", - "construction_end_date": "2016-07-15T00:00:00Z", + "construction_start_date": "2016-07-13", + "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -174985,8 +174985,8 @@ "land_district": "27", "legal_pid": "123166622", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-07T00:00:00Z", - "construction_end_date": "2016-07-12T00:00:00Z", + "construction_start_date": "2016-07-07", + "construction_end_date": "2016-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175092,8 +175092,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-11T00:00:00Z", - "construction_end_date": "2016-10-12T00:00:00Z", + "construction_start_date": "2016-10-11", + "construction_end_date": "2016-10-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175199,8 +175199,8 @@ "land_district": null, "legal_pid": "123210931", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-14T00:00:00Z", - "construction_end_date": "2016-09-15T00:00:00Z", + "construction_start_date": "2016-09-14", + "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175306,8 +175306,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-09T00:00:00Z", - "construction_end_date": "2016-06-09T00:00:00Z", + "construction_start_date": "2016-06-09", + "construction_end_date": "2016-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175413,8 +175413,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-17T00:00:00Z", - "construction_end_date": "2016-09-15T00:00:00Z", + "construction_start_date": "2016-06-17", + "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175520,8 +175520,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Behind new barn, mechanical room.", - "construction_start_date": "2016-12-06T00:00:00Z", - "construction_end_date": "2016-12-06T00:00:00Z", + "construction_start_date": "2016-12-06", + "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175627,8 +175627,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-10-04T00:00:00Z", - "construction_end_date": "2016-10-05T00:00:00Z", + "construction_start_date": "2016-10-04", + "construction_end_date": "2016-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175734,8 +175734,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-11-07T00:00:00Z", - "construction_end_date": "2016-11-08T00:00:00Z", + "construction_start_date": "2016-11-07", + "construction_end_date": "2016-11-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175841,8 +175841,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-08-14T00:00:00Z", - "construction_end_date": "2014-08-14T00:00:00Z", + "construction_start_date": "2014-08-14", + "construction_end_date": "2014-08-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -175948,8 +175948,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-26T00:00:00Z", - "construction_end_date": "2016-05-27T00:00:00Z", + "construction_start_date": "2016-05-26", + "construction_end_date": "2016-05-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176055,8 +176055,8 @@ "land_district": "26", "legal_pid": "105495211", "well_location_description": "100' EAST OF SOUTHEAST CORNER OF GARAGE", - "construction_start_date": "2016-04-14T00:00:00Z", - "construction_end_date": "2016-04-15T00:00:00Z", + "construction_start_date": "2016-04-14", + "construction_end_date": "2016-04-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176162,8 +176162,8 @@ "land_district": "26", "legal_pid": "112588164", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-04T00:00:00Z", - "construction_end_date": "2016-04-05T00:00:00Z", + "construction_start_date": "2016-04-04", + "construction_end_date": "2016-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176269,8 +176269,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-01T00:00:00Z", - "construction_end_date": "2016-04-01T00:00:00Z", + "construction_start_date": "2016-04-01", + "construction_end_date": "2016-04-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176376,8 +176376,8 @@ "land_district": null, "legal_pid": "127189520", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-09T00:00:00Z", - "construction_end_date": "2016-05-10T00:00:00Z", + "construction_start_date": "2016-05-09", + "construction_end_date": "2016-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176483,8 +176483,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-12T00:00:00Z", - "construction_end_date": "2016-05-13T00:00:00Z", + "construction_start_date": "2016-05-12", + "construction_end_date": "2016-05-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176590,8 +176590,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-12-10T00:00:00Z", - "construction_end_date": "2016-04-06T00:00:00Z", + "construction_start_date": "2015-12-10", + "construction_end_date": "2016-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176697,8 +176697,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-13T00:00:00Z", - "construction_end_date": "2016-06-13T00:00:00Z", + "construction_start_date": "2016-06-13", + "construction_end_date": "2016-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176804,8 +176804,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-14T00:00:00Z", - "construction_end_date": "2016-06-16T00:00:00Z", + "construction_start_date": "2016-06-14", + "construction_end_date": "2016-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -176911,8 +176911,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "C-A078-C/94-H-5", - "construction_start_date": "2016-08-03T00:00:00Z", - "construction_end_date": "2016-08-04T00:00:00Z", + "construction_start_date": "2016-08-03", + "construction_end_date": "2016-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177018,8 +177018,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-26T00:00:00Z", - "construction_end_date": "2016-08-26T00:00:00Z", + "construction_start_date": "2016-08-26", + "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177125,8 +177125,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "W6", - "construction_start_date": "2016-09-06T00:00:00Z", - "construction_end_date": "2016-09-07T00:00:00Z", + "construction_start_date": "2016-09-06", + "construction_end_date": "2016-09-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177232,8 +177232,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LEFT SIDE OF THE HOUSE BY SHOP", - "construction_start_date": "2016-08-15T00:00:00Z", - "construction_end_date": "2016-08-15T00:00:00Z", + "construction_start_date": "2016-08-15", + "construction_end_date": "2016-08-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177339,8 +177339,8 @@ "land_district": "13", "legal_pid": "104172990", "well_location_description": "PART NORTHEAST 1/4", - "construction_start_date": "2016-06-05T00:00:00Z", - "construction_end_date": "2016-06-06T00:00:00Z", + "construction_start_date": "2016-06-05", + "construction_end_date": "2016-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177446,8 +177446,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "FRONT OF BUILDING", - "construction_start_date": "2015-09-23T00:00:00Z", - "construction_end_date": "2015-09-24T00:00:00Z", + "construction_start_date": "2015-09-23", + "construction_end_date": "2015-09-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177553,8 +177553,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-20T00:00:00Z", - "construction_end_date": "2015-11-25T00:00:00Z", + "construction_start_date": "2015-11-20", + "construction_end_date": "2015-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177660,8 +177660,8 @@ "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-10-22T00:00:00Z", - "construction_end_date": "2014-10-29T00:00:00Z", + "construction_start_date": "2014-10-22", + "construction_end_date": "2014-10-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177767,8 +177767,8 @@ "land_district": "55", "legal_pid": "124617261", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-08-19T00:00:00Z", - "construction_end_date": "2014-08-21T00:00:00Z", + "construction_start_date": "2014-08-19", + "construction_end_date": "2014-08-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177874,8 +177874,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "B-34-14/94-G-8 (NE-2-95-1-W7)(NEIGHBOUR'S 24 DRILLING SITE)", - "construction_start_date": "2016-02-03T00:00:00Z", - "construction_end_date": "2016-02-03T00:00:00Z", + "construction_start_date": "2016-02-03", + "construction_end_date": "2016-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -177981,8 +177981,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-16T00:00:00Z", - "construction_end_date": "2016-05-16T00:00:00Z", + "construction_start_date": "2016-05-16", + "construction_end_date": "2016-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178088,8 +178088,8 @@ "land_district": null, "legal_pid": "126303817", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-01T00:00:00Z", - "construction_end_date": "2016-06-03T00:00:00Z", + "construction_start_date": "2016-06-01", + "construction_end_date": "2016-06-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178195,8 +178195,8 @@ "land_district": "13", "legal_pid": "115730450", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-29T00:00:00Z", - "construction_end_date": "2016-05-30T00:00:00Z", + "construction_start_date": "2016-05-29", + "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178302,8 +178302,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-31T00:00:00Z", - "construction_end_date": "2016-06-01T00:00:00Z", + "construction_start_date": "2016-05-31", + "construction_end_date": "2016-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178409,8 +178409,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-08T00:00:00Z", - "construction_end_date": "2016-07-08T00:00:00Z", + "construction_start_date": "2016-07-08", + "construction_end_date": "2016-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178516,8 +178516,8 @@ "land_district": "47", "legal_pid": "123456789", "well_location_description": "7 FEET TO THE LEFT OF EXISTING WELL", - "construction_start_date": "2014-09-21T00:00:00Z", - "construction_end_date": "2014-09-27T00:00:00Z", + "construction_start_date": "2014-09-21", + "construction_end_date": "2014-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178623,8 +178623,8 @@ "land_district": "24", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-01T00:00:00Z", - "construction_end_date": "2015-05-01T00:00:00Z", + "construction_start_date": "2015-05-01", + "construction_end_date": "2015-05-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178730,8 +178730,8 @@ "land_district": "42", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-11-17T00:00:00Z", - "construction_end_date": "2014-11-24T00:00:00Z", + "construction_start_date": "2014-11-17", + "construction_end_date": "2014-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178837,8 +178837,8 @@ "land_district": null, "legal_pid": "127775071", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-11-01T00:00:00Z", - "construction_end_date": "2014-11-01T00:00:00Z", + "construction_start_date": "2014-11-01", + "construction_end_date": "2014-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -178944,8 +178944,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-09-06T00:00:00Z", - "construction_end_date": "2014-09-15T00:00:00Z", + "construction_start_date": "2014-09-06", + "construction_end_date": "2014-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179051,8 +179051,8 @@ "land_district": null, "legal_pid": "104066014", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-07-31T00:00:00Z", - "construction_end_date": "2014-08-01T00:00:00Z", + "construction_start_date": "2014-07-31", + "construction_end_date": "2014-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179158,8 +179158,8 @@ "land_district": "30", "legal_pid": "101664352", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-08-13T00:00:00Z", - "construction_end_date": "2014-08-13T00:00:00Z", + "construction_start_date": "2014-08-13", + "construction_end_date": "2014-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179265,8 +179265,8 @@ "land_district": "29", "legal_pid": "106679684", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-03T00:00:00Z", - "construction_end_date": "2015-09-14T00:00:00Z", + "construction_start_date": "2015-09-03", + "construction_end_date": "2015-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179372,8 +179372,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-12-11T00:00:00Z", - "construction_end_date": "2016-12-11T00:00:00Z", + "construction_start_date": "2016-12-11", + "construction_end_date": "2016-12-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179479,8 +179479,8 @@ "land_district": null, "legal_pid": "109639446", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-31T00:00:00Z", - "construction_end_date": "2016-09-02T00:00:00Z", + "construction_start_date": "2016-08-31", + "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179586,8 +179586,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on airport rd", - "construction_start_date": "2016-12-01T00:00:00Z", - "construction_end_date": "2016-12-01T00:00:00Z", + "construction_start_date": "2016-12-01", + "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179693,8 +179693,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "airport rd", - "construction_start_date": "2016-12-01T00:00:00Z", - "construction_end_date": "2016-12-01T00:00:00Z", + "construction_start_date": "2016-12-01", + "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179800,8 +179800,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "back of property", - "construction_start_date": "2016-11-29T00:00:00Z", - "construction_end_date": "2016-11-30T00:00:00Z", + "construction_start_date": "2016-11-29", + "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -179907,8 +179907,8 @@ "land_district": "35", "legal_pid": "125674901", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-01T00:00:00Z", - "construction_end_date": "2016-11-01T00:00:00Z", + "construction_start_date": "2016-11-01", + "construction_end_date": "2016-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180014,8 +180014,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "side of office and between buildings", - "construction_start_date": "2016-11-25T00:00:00Z", - "construction_end_date": "2016-11-25T00:00:00Z", + "construction_start_date": "2016-11-25", + "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180121,8 +180121,8 @@ "land_district": "26", "legal_pid": "115939782", "well_location_description": "far side on left side of property", - "construction_start_date": "2016-11-23T00:00:00Z", - "construction_end_date": "2016-11-24T00:00:00Z", + "construction_start_date": "2016-11-23", + "construction_end_date": "2016-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180228,8 +180228,8 @@ "land_district": "53", "legal_pid": "129147379", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-27T00:00:00Z", - "construction_end_date": "2016-08-29T00:00:00Z", + "construction_start_date": "2016-08-27", + "construction_end_date": "2016-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180335,8 +180335,8 @@ "land_district": "26", "legal_pid": "112705462", "well_location_description": "on land", - "construction_start_date": "2016-11-29T00:00:00Z", - "construction_end_date": "2016-11-30T00:00:00Z", + "construction_start_date": "2016-11-29", + "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180442,8 +180442,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "property", - "construction_start_date": "2016-10-26T00:00:00Z", - "construction_end_date": "2016-10-27T00:00:00Z", + "construction_start_date": "2016-10-26", + "construction_end_date": "2016-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180549,8 +180549,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-10T00:00:00Z", - "construction_end_date": "2016-08-10T00:00:00Z", + "construction_start_date": "2016-08-10", + "construction_end_date": "2016-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180656,8 +180656,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot", - "construction_start_date": "2016-10-24T00:00:00Z", - "construction_end_date": "2016-10-24T00:00:00Z", + "construction_start_date": "2016-10-24", + "construction_end_date": "2016-10-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180763,8 +180763,8 @@ "land_district": "33", "legal_pid": "123456789", "well_location_description": "Proposed Lot 2, Lot ADL 37, within proposed lot boundaries.", - "construction_start_date": "2016-10-06T00:00:00Z", - "construction_end_date": "2016-10-07T00:00:00Z", + "construction_start_date": "2016-10-06", + "construction_end_date": "2016-10-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180870,8 +180870,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "back of house area close to shop (left)", - "construction_start_date": "2016-10-25T00:00:00Z", - "construction_end_date": "2016-10-26T00:00:00Z", + "construction_start_date": "2016-10-25", + "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -180977,8 +180977,8 @@ "land_district": "51", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-10-27T00:00:00Z", - "construction_end_date": "2016-10-28T00:00:00Z", + "construction_start_date": "2016-10-27", + "construction_end_date": "2016-10-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181084,8 +181084,8 @@ "land_district": null, "legal_pid": "127254119", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-12T00:00:00Z", - "construction_end_date": "2015-11-19T00:00:00Z", + "construction_start_date": "2015-11-12", + "construction_end_date": "2015-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181191,8 +181191,8 @@ "land_district": "07", "legal_pid": "102183668", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-24T00:00:00Z", - "construction_end_date": "2016-11-25T00:00:00Z", + "construction_start_date": "2016-11-24", + "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181298,8 +181298,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-16T00:00:00Z", - "construction_end_date": "2016-11-17T00:00:00Z", + "construction_start_date": "2016-11-16", + "construction_end_date": "2016-11-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181405,8 +181405,8 @@ "land_district": "36", "legal_pid": "126723794", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-01T00:00:00Z", - "construction_end_date": "2015-08-01T00:00:00Z", + "construction_start_date": "2015-08-01", + "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181512,8 +181512,8 @@ "land_district": "37", "legal_pid": "108863164", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-01T00:00:00Z", - "construction_end_date": "2015-07-01T00:00:00Z", + "construction_start_date": "2015-07-01", + "construction_end_date": "2015-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181619,8 +181619,8 @@ "land_district": "35", "legal_pid": "129948762", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-08T00:00:00Z", - "construction_end_date": "2016-11-09T00:00:00Z", + "construction_start_date": "2016-11-08", + "construction_end_date": "2016-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181726,8 +181726,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 20. Within proposed lot boundaries.", - "construction_start_date": "2016-08-29T00:00:00Z", - "construction_end_date": "2016-08-30T00:00:00Z", + "construction_start_date": "2016-08-29", + "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181833,8 +181833,8 @@ "land_district": null, "legal_pid": "111518791", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-01T00:00:00Z", - "construction_end_date": "2015-08-01T00:00:00Z", + "construction_start_date": "2015-08-01", + "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -181940,8 +181940,8 @@ "land_district": "26", "legal_pid": "114504685", "well_location_description": "back of house area", - "construction_start_date": "2016-11-21T00:00:00Z", - "construction_end_date": "2016-11-21T00:00:00Z", + "construction_start_date": "2016-11-21", + "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182047,8 +182047,8 @@ "land_district": null, "legal_pid": "127897460", "well_location_description": " ", - "construction_start_date": "2000-05-02T00:00:00Z", - "construction_end_date": "2000-05-02T00:00:00Z", + "construction_start_date": "2000-05-02", + "construction_end_date": "2000-05-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182154,8 +182154,8 @@ "land_district": "59", "legal_pid": "125506722", "well_location_description": "on land", - "construction_start_date": "2016-08-29T00:00:00Z", - "construction_end_date": "2016-08-31T00:00:00Z", + "construction_start_date": "2016-08-29", + "construction_end_date": "2016-08-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182261,8 +182261,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 13, within proposed lot boundaries.", - "construction_start_date": "2016-08-31T00:00:00Z", - "construction_end_date": "2016-09-01T00:00:00Z", + "construction_start_date": "2016-08-31", + "construction_end_date": "2016-09-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182368,8 +182368,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "on property", - "construction_start_date": "2016-10-25T00:00:00Z", - "construction_end_date": "2016-10-25T00:00:00Z", + "construction_start_date": "2016-10-25", + "construction_end_date": "2016-10-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182475,8 +182475,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "on property", - "construction_start_date": "2016-10-25T00:00:00Z", - "construction_end_date": "2016-10-25T00:00:00Z", + "construction_start_date": "2016-10-25", + "construction_end_date": "2016-10-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182582,8 +182582,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 11, within proposed lot boundaries.", - "construction_start_date": "2016-08-25T00:00:00Z", - "construction_end_date": "2016-08-26T00:00:00Z", + "construction_start_date": "2016-08-25", + "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182689,8 +182689,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 10, within proposed lot boundaries.", - "construction_start_date": "2016-09-06T00:00:00Z", - "construction_end_date": "2016-09-06T00:00:00Z", + "construction_start_date": "2016-09-06", + "construction_end_date": "2016-09-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -182796,8 +182796,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 12, within proposed lot boundaries.", - "construction_start_date": "2016-09-07T00:00:00Z", - "construction_end_date": "2016-09-08T00:00:00Z", + "construction_start_date": "2016-09-07", + "construction_end_date": "2016-09-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183010,8 +183010,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Proposed Lot 21, within proposed lot boundaries.", - "construction_start_date": "2016-09-09T00:00:00Z", - "construction_end_date": "2016-09-10T00:00:00Z", + "construction_start_date": "2016-09-09", + "construction_end_date": "2016-09-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183117,8 +183117,8 @@ "land_district": "38", "legal_pid": "109281843", "well_location_description": "1 of 2 wells, side by side", - "construction_start_date": "2006-05-25T00:00:00Z", - "construction_end_date": "2006-05-25T00:00:00Z", + "construction_start_date": "2006-05-25", + "construction_end_date": "2006-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183224,8 +183224,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-13T00:00:00Z", - "construction_end_date": "2016-09-15T00:00:00Z", + "construction_start_date": "2016-09-13", + "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183331,8 +183331,8 @@ "land_district": "38", "legal_pid": "109281843", "well_location_description": "2 of 2 wells drilled side by side", - "construction_start_date": "2006-07-06T00:00:00Z", - "construction_end_date": "2006-07-06T00:00:00Z", + "construction_start_date": "2006-07-06", + "construction_end_date": "2006-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183438,8 +183438,8 @@ "land_district": null, "legal_pid": "111458712", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-28T00:00:00Z", - "construction_end_date": "2016-03-28T00:00:00Z", + "construction_start_date": "2016-03-28", + "construction_end_date": "2016-03-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183545,8 +183545,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-01-25T00:00:00Z", - "construction_end_date": "2016-02-02T00:00:00Z", + "construction_start_date": "2016-01-25", + "construction_end_date": "2016-02-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183652,8 +183652,8 @@ "land_district": "37", "legal_pid": "111409363", "well_location_description": "LOT 18 EXCEPT PART IN PLAN 19680", - "construction_start_date": "2016-02-01T00:00:00Z", - "construction_end_date": "2016-02-01T00:00:00Z", + "construction_start_date": "2016-02-01", + "construction_end_date": "2016-02-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183759,8 +183759,8 @@ "land_district": null, "legal_pid": "127933504", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-01T00:00:00Z", - "construction_end_date": "2016-07-01T00:00:00Z", + "construction_start_date": "2016-07-01", + "construction_end_date": "2016-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183866,8 +183866,8 @@ "land_district": "37", "legal_pid": "127933890", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-01T00:00:00Z", - "construction_end_date": "2016-07-01T00:00:00Z", + "construction_start_date": "2016-07-01", + "construction_end_date": "2016-07-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -183973,8 +183973,8 @@ "land_district": "59", "legal_pid": "127876241", "well_location_description": " ", - "construction_start_date": "1989-02-28T00:00:00Z", - "construction_end_date": "1989-02-28T00:00:00Z", + "construction_start_date": "1989-02-28", + "construction_end_date": "1989-02-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -184080,8 +184080,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", - "construction_start_date": "2016-11-28T00:00:00Z", - "construction_end_date": "2016-11-30T00:00:00Z", + "construction_start_date": "2016-11-28", + "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -184187,8 +184187,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", - "construction_start_date": "2016-11-30T00:00:00Z", - "construction_end_date": "2016-12-01T00:00:00Z", + "construction_start_date": "2016-11-30", + "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -184294,8 +184294,8 @@ "land_district": "37", "legal_pid": "123456789", "well_location_description": "LAND TENURE NUMBER 2410118", - "construction_start_date": "2010-03-09T00:00:00Z", - "construction_end_date": "2010-03-12T00:00:00Z", + "construction_start_date": "2010-03-09", + "construction_end_date": "2010-03-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -184401,8 +184401,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", - "construction_start_date": "2016-12-02T00:00:00Z", - "construction_end_date": "2016-12-04T00:00:00Z", + "construction_start_date": "2016-12-02", + "construction_end_date": "2016-12-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -184508,8 +184508,8 @@ "land_district": null, "legal_pid": "107798261", "well_location_description": " ", - "construction_start_date": "2001-01-01T00:00:00Z", - "construction_end_date": "2001-01-01T00:00:00Z", + "construction_start_date": "2001-01-01", + "construction_end_date": "2001-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -184619,8 +184619,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-04-13T00:00:00Z", - "decommission_end_date": "2016-04-13T00:00:00Z", + "decommission_start_date": "2016-04-13", + "decommission_end_date": "2016-04-13", "drilling_company": "e3026564-8050-4737-8291-51fa54bc439e", "well_identification_plate_attached": null, "latitude": "49.23", @@ -184726,8 +184726,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2014-09-11T00:00:00Z", - "decommission_end_date": "2014-09-11T00:00:00Z", + "decommission_start_date": "2014-09-11", + "decommission_end_date": "2014-09-11", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.23", @@ -184833,8 +184833,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2014-04-01T00:00:00Z", - "decommission_end_date": "2014-04-03T00:00:00Z", + "decommission_start_date": "2014-04-01", + "decommission_end_date": "2014-04-03", "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.24", @@ -184940,7 +184940,7 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2014-07-27T00:00:00Z", + "decommission_start_date": "2014-07-27", "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, @@ -185043,8 +185043,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "RIGHT OF WAY OVER SURVEYED CROWN LAND TOGETHER WITH THAT PART OF LOT 1, DISTRICT LOT 3081,\r\nPLAN 1330, LILLOOET DISTRICT, SHOWN OUTLINED ON PLANKAP76545, ON FILE IN THE LAND TITLE OFFICE AT KAMLOOPS,\r\nCONTAINING 0.358 HECTARES", - "construction_start_date": "2002-08-20T00:00:00Z", - "construction_end_date": "2002-08-20T00:00:00Z", + "construction_start_date": "2002-08-20", + "construction_end_date": "2002-08-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185150,8 +185150,8 @@ "land_district": "25", "legal_pid": "123513420", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-19T00:00:00Z", - "construction_end_date": "2015-05-20T00:00:00Z", + "construction_start_date": "2015-05-19", + "construction_end_date": "2015-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185257,7 +185257,7 @@ "land_district": "59", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-04-14T00:00:00Z", + "construction_start_date": "2015-04-14", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -185364,8 +185364,8 @@ "land_district": "59", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-04-30T00:00:00Z", - "construction_end_date": "2015-04-30T00:00:00Z", + "construction_start_date": "2015-04-30", + "construction_end_date": "2015-04-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185471,8 +185471,8 @@ "land_district": null, "legal_pid": "106431631", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-04-21T00:00:00Z", - "construction_end_date": "2015-04-23T00:00:00Z", + "construction_start_date": "2015-04-21", + "construction_end_date": "2015-04-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185578,8 +185578,8 @@ "land_district": "25", "legal_pid": "102021188", "well_location_description": "UPPER PARCEL OF 1", - "construction_start_date": "2015-04-13T00:00:00Z", - "construction_end_date": "2015-04-13T00:00:00Z", + "construction_start_date": "2015-04-13", + "construction_end_date": "2015-04-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185685,8 +185685,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "MERIDIAN 6 PARCEL A, MERIDIAN W6, EXCEPT PLAN 400 (DD223465F) OF SOUTHEAST 1/4", - "construction_start_date": "2015-04-10T00:00:00Z", - "construction_end_date": "2015-04-10T00:00:00Z", + "construction_start_date": "2015-04-10", + "construction_end_date": "2015-04-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185792,8 +185792,8 @@ "land_district": "25", "legal_pid": "102926393", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-03-12T00:00:00Z", - "construction_end_date": "2015-03-12T00:00:00Z", + "construction_start_date": "2015-03-12", + "construction_end_date": "2015-03-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -185899,8 +185899,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-02-23T00:00:00Z", - "construction_end_date": "2015-03-11T00:00:00Z", + "construction_start_date": "2015-02-23", + "construction_end_date": "2015-03-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186006,8 +186006,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "SAHHALTKUM INDIAN RESERVE NO. 4", - "construction_start_date": "2015-02-16T00:00:00Z", - "construction_end_date": "2015-02-17T00:00:00Z", + "construction_start_date": "2015-02-16", + "construction_end_date": "2015-02-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186113,8 +186113,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-02-09T00:00:00Z", - "construction_end_date": "2015-02-10T00:00:00Z", + "construction_start_date": "2015-02-09", + "construction_end_date": "2015-02-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186220,8 +186220,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-02-04T00:00:00Z", - "construction_end_date": "2015-02-04T00:00:00Z", + "construction_start_date": "2015-02-04", + "construction_end_date": "2015-02-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186327,8 +186327,8 @@ "land_district": "05", "legal_pid": "106637434", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-01T00:00:00Z", - "construction_end_date": "2015-07-02T00:00:00Z", + "construction_start_date": "2015-07-01", + "construction_end_date": "2015-07-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186434,8 +186434,8 @@ "land_district": null, "legal_pid": "115041131", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-29T00:00:00Z", - "construction_end_date": "2015-06-30T00:00:00Z", + "construction_start_date": "2015-06-29", + "construction_end_date": "2015-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186541,8 +186541,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-23T00:00:00Z", - "construction_end_date": "2015-06-24T00:00:00Z", + "construction_start_date": "2015-06-23", + "construction_end_date": "2015-06-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186648,8 +186648,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "HCA # 2008-0267 BORDEN#EHRK-4", - "construction_start_date": "2015-06-22T00:00:00Z", - "construction_end_date": "2015-06-23T00:00:00Z", + "construction_start_date": "2015-06-22", + "construction_end_date": "2015-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186755,8 +186755,8 @@ "land_district": "27", "legal_pid": "128774884", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-19T00:00:00Z", - "construction_end_date": "2015-06-19T00:00:00Z", + "construction_start_date": "2015-06-19", + "construction_end_date": "2015-06-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186862,8 +186862,8 @@ "land_district": null, "legal_pid": "101987992", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-18T00:00:00Z", - "construction_end_date": "2015-06-18T00:00:00Z", + "construction_start_date": "2015-06-18", + "construction_end_date": "2015-06-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -186969,8 +186969,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "SOUTHEAST QUARTER OF DISTRICT LOT 1437", - "construction_start_date": "2015-06-16T00:00:00Z", - "construction_end_date": "2015-06-18T00:00:00Z", + "construction_start_date": "2015-06-16", + "construction_end_date": "2015-06-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187076,8 +187076,8 @@ "land_district": "27", "legal_pid": "103600203", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-17T00:00:00Z", - "construction_end_date": "2015-06-17T00:00:00Z", + "construction_start_date": "2015-06-17", + "construction_end_date": "2015-06-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187183,8 +187183,8 @@ "land_district": "25", "legal_pid": "129152607", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-05T00:00:00Z", - "construction_end_date": "2015-06-05T00:00:00Z", + "construction_start_date": "2015-06-05", + "construction_end_date": "2015-06-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187290,8 +187290,8 @@ "land_district": "25", "legal_pid": "105920108", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-01T00:00:00Z", - "construction_end_date": "2015-06-02T00:00:00Z", + "construction_start_date": "2015-06-01", + "construction_end_date": "2015-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187397,8 +187397,8 @@ "land_district": null, "legal_pid": "112067679", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-26T00:00:00Z", - "construction_end_date": "2015-05-28T00:00:00Z", + "construction_start_date": "2015-05-26", + "construction_end_date": "2015-05-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187504,8 +187504,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-25T00:00:00Z", - "construction_end_date": "2015-05-26T00:00:00Z", + "construction_start_date": "2015-05-25", + "construction_end_date": "2015-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187611,8 +187611,8 @@ "land_district": null, "legal_pid": "108568871", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-21T00:00:00Z", - "construction_end_date": "2015-05-21T00:00:00Z", + "construction_start_date": "2015-05-21", + "construction_end_date": "2015-05-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187718,8 +187718,8 @@ "land_district": "25", "legal_pid": "103262995", "well_location_description": "KAP22054 EXCEPT PLAN 34422", - "construction_start_date": "2015-08-06T00:00:00Z", - "construction_end_date": "2015-08-07T00:00:00Z", + "construction_start_date": "2015-08-06", + "construction_end_date": "2015-08-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187825,8 +187825,8 @@ "land_district": "25", "legal_pid": "103262995", "well_location_description": "PLAN: KAP33054 EXCEPT PLAN 34422", - "construction_start_date": "2015-08-10T00:00:00Z", - "construction_end_date": "2015-08-10T00:00:00Z", + "construction_start_date": "2015-08-10", + "construction_end_date": "2015-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -187932,8 +187932,8 @@ "land_district": null, "legal_pid": "106075037", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-04T00:00:00Z", - "construction_end_date": "2015-08-05T00:00:00Z", + "construction_start_date": "2015-08-04", + "construction_end_date": "2015-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188039,8 +188039,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-10T00:00:00Z", - "construction_end_date": "2016-03-11T00:00:00Z", + "construction_start_date": "2016-03-10", + "construction_end_date": "2016-03-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188146,8 +188146,8 @@ "land_district": "27", "legal_pid": "127759393", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-30T00:00:00Z", - "construction_end_date": "2015-07-31T00:00:00Z", + "construction_start_date": "2015-07-30", + "construction_end_date": "2015-07-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188253,8 +188253,8 @@ "land_district": "58", "legal_pid": "129634041", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-10-03T00:00:00Z", - "construction_end_date": "2016-10-06T00:00:00Z", + "construction_start_date": "2016-10-03", + "construction_end_date": "2016-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188360,8 +188360,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-29T00:00:00Z", - "construction_end_date": "2015-07-30T00:00:00Z", + "construction_start_date": "2015-07-29", + "construction_end_date": "2015-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188467,8 +188467,8 @@ "land_district": "35", "legal_pid": "124042854", "well_location_description": "Within property boundaries", - "construction_start_date": "2016-11-29T00:00:00Z", - "construction_end_date": "2016-11-29T00:00:00Z", + "construction_start_date": "2016-11-29", + "construction_end_date": "2016-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188574,8 +188574,8 @@ "land_district": "15", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-16T00:00:00Z", - "construction_end_date": "2016-09-19T00:00:00Z", + "construction_start_date": "2016-09-16", + "construction_end_date": "2016-09-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188681,8 +188681,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-07-12T00:00:00Z", - "construction_end_date": "2016-07-13T00:00:00Z", + "construction_start_date": "2016-07-12", + "construction_end_date": "2016-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188788,8 +188788,8 @@ "land_district": "51", "legal_pid": "100029441", "well_location_description": "Except parts in Plan 26376 and Plan 39468. Within property boundaries.", - "construction_start_date": "2016-06-28T00:00:00Z", - "construction_end_date": "2016-07-06T00:00:00Z", + "construction_start_date": "2016-06-28", + "construction_end_date": "2016-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -188895,8 +188895,8 @@ "land_district": "01", "legal_pid": "108713538", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-10-26T00:00:00Z", - "construction_end_date": "2016-10-31T00:00:00Z", + "construction_start_date": "2016-10-26", + "construction_end_date": "2016-10-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189002,8 +189002,8 @@ "land_district": "25", "legal_pid": "112067652", "well_location_description": "PLAN 862 EXCEPT PLAN H674; WEST OF 6TH MERIDIAN", - "construction_start_date": "2015-08-26T00:00:00Z", - "construction_end_date": "2015-08-27T00:00:00Z", + "construction_start_date": "2015-08-26", + "construction_end_date": "2015-08-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189109,8 +189109,8 @@ "land_district": "15", "legal_pid": "101453939", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-10-11T00:00:00Z", - "construction_end_date": "2016-10-11T00:00:00Z", + "construction_start_date": "2016-10-11", + "construction_end_date": "2016-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189216,8 +189216,8 @@ "land_district": "25", "legal_pid": "112067903", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-24T00:00:00Z", - "construction_end_date": "2015-08-26T00:00:00Z", + "construction_start_date": "2015-08-24", + "construction_end_date": "2015-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189323,8 +189323,8 @@ "land_district": "07", "legal_pid": "124209724", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-08-22T00:00:00Z", - "construction_end_date": "2016-08-23T00:00:00Z", + "construction_start_date": "2016-08-22", + "construction_end_date": "2016-08-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189430,8 +189430,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-28T00:00:00Z", - "construction_end_date": "2016-09-29T00:00:00Z", + "construction_start_date": "2016-09-28", + "construction_end_date": "2016-09-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189537,8 +189537,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-22T00:00:00Z", - "construction_end_date": "2016-09-23T00:00:00Z", + "construction_start_date": "2016-09-22", + "construction_end_date": "2016-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189644,8 +189644,8 @@ "land_district": null, "legal_pid": "114375729", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-19T00:00:00Z", - "construction_end_date": "2015-08-19T00:00:00Z", + "construction_start_date": "2015-08-19", + "construction_end_date": "2015-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189751,8 +189751,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-26T00:00:00Z", - "construction_end_date": "2016-09-27T00:00:00Z", + "construction_start_date": "2016-09-26", + "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189858,8 +189858,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-17T00:00:00Z", - "construction_end_date": "2015-08-17T00:00:00Z", + "construction_start_date": "2015-08-17", + "construction_end_date": "2015-08-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -189965,8 +189965,8 @@ "land_district": null, "legal_pid": "104085060", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-13T00:00:00Z", - "construction_end_date": "2015-08-14T00:00:00Z", + "construction_start_date": "2015-08-13", + "construction_end_date": "2015-08-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190072,8 +190072,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-21T00:00:00Z", - "construction_end_date": "2016-09-22T00:00:00Z", + "construction_start_date": "2016-09-21", + "construction_end_date": "2016-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190179,8 +190179,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-23T00:00:00Z", - "construction_end_date": "2016-09-26T00:00:00Z", + "construction_start_date": "2016-09-23", + "construction_end_date": "2016-09-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190286,8 +190286,8 @@ "land_district": null, "legal_pid": "107598688", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-15T00:00:00Z", - "construction_end_date": "2015-10-15T00:00:00Z", + "construction_start_date": "2015-10-15", + "construction_end_date": "2015-10-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190393,8 +190393,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-29T00:00:00Z", - "construction_end_date": "2016-09-30T00:00:00Z", + "construction_start_date": "2016-09-29", + "construction_end_date": "2016-09-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190500,8 +190500,8 @@ "land_district": "35", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-09-27T00:00:00Z", - "construction_end_date": "2016-09-28T00:00:00Z", + "construction_start_date": "2016-09-27", + "construction_end_date": "2016-09-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190607,8 +190607,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-08T00:00:00Z", - "construction_end_date": "2015-10-08T00:00:00Z", + "construction_start_date": "2015-10-08", + "construction_end_date": "2015-10-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190714,8 +190714,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "EAGLE LAKE PARADISE RESORT", - "construction_start_date": "2015-10-06T00:00:00Z", - "construction_end_date": "2015-10-06T00:00:00Z", + "construction_start_date": "2015-10-06", + "construction_end_date": "2015-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190821,8 +190821,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-30T00:00:00Z", - "construction_end_date": "2015-09-30T00:00:00Z", + "construction_start_date": "2015-09-30", + "construction_end_date": "2015-09-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -190928,8 +190928,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-30T00:00:00Z", - "construction_end_date": "2015-10-01T00:00:00Z", + "construction_start_date": "2015-09-30", + "construction_end_date": "2015-10-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191035,8 +191035,8 @@ "land_district": "05", "legal_pid": "115289168", "well_location_description": "AREA 24 JURISDICTION 727, WILLIAMS LAKE. RURAL. ROLL 07081,000", - "construction_start_date": "2015-09-21T00:00:00Z", - "construction_end_date": "2015-09-22T00:00:00Z", + "construction_start_date": "2015-09-21", + "construction_end_date": "2015-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191249,8 +191249,8 @@ "land_district": null, "legal_pid": "102935830", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-17T00:00:00Z", - "construction_end_date": "2015-09-17T00:00:00Z", + "construction_start_date": "2015-09-17", + "construction_end_date": "2015-09-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191356,8 +191356,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-14T00:00:00Z", - "construction_end_date": "2015-09-15T00:00:00Z", + "construction_start_date": "2015-09-14", + "construction_end_date": "2015-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191463,8 +191463,8 @@ "land_district": "25", "legal_pid": "129152615", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-10T00:00:00Z", - "construction_end_date": "2015-09-11T00:00:00Z", + "construction_start_date": "2015-09-10", + "construction_end_date": "2015-09-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191570,8 +191570,8 @@ "land_district": "07", "legal_pid": "102183315", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-12-05T00:00:00Z", - "construction_end_date": "2016-12-07T00:00:00Z", + "construction_start_date": "2016-12-05", + "construction_end_date": "2016-12-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191677,8 +191677,8 @@ "land_district": "51", "legal_pid": "107894686", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-07-25T00:00:00Z", - "construction_end_date": "2016-07-25T00:00:00Z", + "construction_start_date": "2016-07-25", + "construction_end_date": "2016-07-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191784,8 +191784,8 @@ "land_district": null, "legal_pid": "107350180", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-07T00:00:00Z", - "construction_end_date": "2015-09-09T00:00:00Z", + "construction_start_date": "2015-09-07", + "construction_end_date": "2015-09-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191891,8 +191891,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-04-26T00:00:00Z", - "construction_end_date": "2016-04-27T00:00:00Z", + "construction_start_date": "2016-04-26", + "construction_end_date": "2016-04-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -191998,8 +191998,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-07T00:00:00Z", - "construction_end_date": "2015-09-07T00:00:00Z", + "construction_start_date": "2015-09-07", + "construction_end_date": "2015-09-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192105,8 +192105,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-06-21T00:00:00Z", - "construction_end_date": "2016-06-21T00:00:00Z", + "construction_start_date": "2016-06-21", + "construction_end_date": "2016-06-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192212,8 +192212,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-01T00:00:00Z", - "construction_end_date": "2015-09-02T00:00:00Z", + "construction_start_date": "2015-09-01", + "construction_end_date": "2015-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192319,8 +192319,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-07-22T00:00:00Z", - "construction_end_date": "2016-07-25T00:00:00Z", + "construction_start_date": "2016-07-22", + "construction_end_date": "2016-07-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192426,8 +192426,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-08-17T00:00:00Z", - "construction_end_date": "2016-08-19T00:00:00Z", + "construction_start_date": "2016-08-17", + "construction_end_date": "2016-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192533,8 +192533,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-08-22T00:00:00Z", - "construction_end_date": "2016-08-23T00:00:00Z", + "construction_start_date": "2016-08-22", + "construction_end_date": "2016-08-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192640,8 +192640,8 @@ "land_district": "59", "legal_pid": "113812165", "well_location_description": "Part w1/2 of sw 1/4,except plan B1811 21922", - "construction_start_date": "2005-10-25T00:00:00Z", - "construction_end_date": "2005-10-25T00:00:00Z", + "construction_start_date": "2005-10-25", + "construction_end_date": "2005-10-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192747,8 +192747,8 @@ "land_district": "05", "legal_pid": "126259152", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-02-03T00:00:00Z", - "construction_end_date": "2015-02-04T00:00:00Z", + "construction_start_date": "2015-02-03", + "construction_end_date": "2015-02-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -192854,7 +192854,7 @@ "land_district": "25", "legal_pid": "114545365", "well_location_description": "EAST 1/2 OF SOUTHEAST 1/4 WEST OF 6TH MERIDIAN", - "construction_start_date": "2015-12-07T00:00:00Z", + "construction_start_date": "2015-12-07", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -192961,8 +192961,8 @@ "land_district": "25", "legal_pid": "114545241", "well_location_description": "PART OF W 1/2 OF SW 1/4 LAYING NORTH AND WEST OF INDIAN RESERVE #7 WEST OF 6TH MERIDIAN", - "construction_start_date": "2015-12-06T00:00:00Z", - "construction_end_date": "2015-12-07T00:00:00Z", + "construction_start_date": "2015-12-06", + "construction_end_date": "2015-12-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193068,8 +193068,8 @@ "land_district": "25", "legal_pid": "112429732", "well_location_description": "PART OF NORTHEAST 1/4", - "construction_start_date": "2015-12-02T00:00:00Z", - "construction_end_date": "2015-12-02T00:00:00Z", + "construction_start_date": "2015-12-02", + "construction_end_date": "2015-12-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193175,8 +193175,8 @@ "land_district": "27", "legal_pid": "103500209", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-05T00:00:00Z", - "construction_end_date": "2015-11-05T00:00:00Z", + "construction_start_date": "2015-11-05", + "construction_end_date": "2015-11-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193282,8 +193282,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-22T00:00:00Z", - "construction_end_date": "2015-10-22T00:00:00Z", + "construction_start_date": "2015-10-22", + "construction_end_date": "2015-10-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193389,8 +193389,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "?SAVE AND EXCEPT PLAN 3460? DIFFICULT TO READ", - "construction_start_date": "2015-10-21T00:00:00Z", - "construction_end_date": "2015-10-21T00:00:00Z", + "construction_start_date": "2015-10-21", + "construction_end_date": "2015-10-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193496,8 +193496,8 @@ "land_district": "25", "legal_pid": "104569253", "well_location_description": "PID=ALSO 004569245; THAT PART OF LS3 NOT INCLUDED THAT PART OF LS2 LYING WEST OF THE WEST SHORE OF NAPIER LAKE", - "construction_start_date": "2015-10-19T00:00:00Z", - "construction_end_date": "2015-10-19T00:00:00Z", + "construction_start_date": "2015-10-19", + "construction_end_date": "2015-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193603,8 +193603,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-16T00:00:00Z", - "construction_end_date": "2015-10-16T00:00:00Z", + "construction_start_date": "2015-10-16", + "construction_end_date": "2015-10-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193710,8 +193710,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "DL-2942 LD PART NORTHWEST 1/4 EXCEPT PLAN HIGHWAY PLAN H-14698", - "construction_start_date": "2016-03-03T00:00:00Z", - "construction_end_date": "2016-03-04T00:00:00Z", + "construction_start_date": "2016-03-03", + "construction_end_date": "2016-03-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193817,8 +193817,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", - "construction_start_date": "2016-04-06T00:00:00Z", - "construction_end_date": "2016-04-06T00:00:00Z", + "construction_start_date": "2016-04-06", + "construction_end_date": "2016-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -193924,8 +193924,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", - "construction_start_date": "2016-04-04T00:00:00Z", - "construction_end_date": "2016-04-05T00:00:00Z", + "construction_start_date": "2016-04-04", + "construction_end_date": "2016-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194031,8 +194031,8 @@ "land_district": "41", "legal_pid": "118639364", "well_location_description": "GRAVEL PIT. \r\nDRILLER HAS WRITTEN \"51660 EXPECT\" IN PLAN", - "construction_start_date": "2016-05-02T00:00:00Z", - "construction_end_date": "2016-05-03T00:00:00Z", + "construction_start_date": "2016-05-02", + "construction_end_date": "2016-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194138,8 +194138,8 @@ "land_district": "27", "legal_pid": "128194411", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-09T00:00:00Z", - "construction_end_date": "2016-05-10T00:00:00Z", + "construction_start_date": "2016-05-09", + "construction_end_date": "2016-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194245,8 +194245,8 @@ "land_district": null, "legal_pid": "103813517", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-18T00:00:00Z", - "construction_end_date": "2016-05-19T00:00:00Z", + "construction_start_date": "2016-05-18", + "construction_end_date": "2016-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194352,8 +194352,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-14T00:00:00Z", - "construction_end_date": "2016-06-15T00:00:00Z", + "construction_start_date": "2016-06-14", + "construction_end_date": "2016-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194459,8 +194459,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "S/E 1/4 W6M LYING E PROD SLY OF W BDY DL441", - "construction_start_date": "2016-03-29T00:00:00Z", - "construction_end_date": "2016-03-30T00:00:00Z", + "construction_start_date": "2016-03-29", + "construction_end_date": "2016-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194566,8 +194566,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", - "construction_start_date": "2016-02-18T00:00:00Z", - "construction_end_date": "2016-02-19T00:00:00Z", + "construction_start_date": "2016-02-18", + "construction_end_date": "2016-02-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194673,8 +194673,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "PIN: 12074041; WEST OF 6TH MERIDIAN", - "construction_start_date": "2016-02-15T00:00:00Z", - "construction_end_date": "2016-02-16T00:00:00Z", + "construction_start_date": "2016-02-15", + "construction_end_date": "2016-02-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194780,8 +194780,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 176 N'KWALA INDUSTRIAL PARK, OKANAGAN IR1", - "construction_start_date": "2016-03-23T00:00:00Z", - "construction_end_date": "2016-03-23T00:00:00Z", + "construction_start_date": "2016-03-23", + "construction_end_date": "2016-03-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194887,8 +194887,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "CARIBOO DISTRICT PLAN 32161 EXCEPT PLAN 32472", - "construction_start_date": "2015-11-09T00:00:00Z", - "construction_end_date": "2015-11-09T00:00:00Z", + "construction_start_date": "2015-11-09", + "construction_end_date": "2015-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -194994,8 +194994,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-10T00:00:00Z", - "construction_end_date": "2015-11-11T00:00:00Z", + "construction_start_date": "2015-11-10", + "construction_end_date": "2015-11-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195101,8 +195101,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-14T00:00:00Z", - "construction_end_date": "2015-11-15T00:00:00Z", + "construction_start_date": "2015-11-14", + "construction_end_date": "2015-11-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195208,8 +195208,8 @@ "land_district": null, "legal_pid": "108012865", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-15T00:00:00Z", - "construction_end_date": "2016-06-16T00:00:00Z", + "construction_start_date": "2016-06-15", + "construction_end_date": "2016-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195315,8 +195315,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "P1", - "construction_start_date": "2016-02-22T00:00:00Z", - "construction_end_date": "2016-02-23T00:00:00Z", + "construction_start_date": "2016-02-22", + "construction_end_date": "2016-02-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195422,8 +195422,8 @@ "land_district": "41", "legal_pid": "118639364", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-03T00:00:00Z", - "construction_end_date": "2016-05-05T00:00:00Z", + "construction_start_date": "2016-05-03", + "construction_end_date": "2016-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195529,8 +195529,8 @@ "land_district": "25", "legal_pid": "102275716", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-06T00:00:00Z", - "construction_end_date": "2016-06-07T00:00:00Z", + "construction_start_date": "2016-06-06", + "construction_end_date": "2016-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195636,8 +195636,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-21T00:00:00Z", - "construction_end_date": "2016-04-23T00:00:00Z", + "construction_start_date": "2016-04-21", + "construction_end_date": "2016-04-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195743,8 +195743,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-25T00:00:00Z", - "construction_end_date": "2016-04-26T00:00:00Z", + "construction_start_date": "2016-04-25", + "construction_end_date": "2016-04-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195850,8 +195850,8 @@ "land_district": null, "legal_pid": "105723159", "well_location_description": "AT 7 TEE", - "construction_start_date": "2016-09-26T00:00:00Z", - "construction_end_date": "2016-09-28T00:00:00Z", + "construction_start_date": "2016-09-26", + "construction_end_date": "2016-09-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -195957,8 +195957,8 @@ "land_district": null, "legal_pid": "116943538", "well_location_description": "CERTIFICATE OF TITLE NO W11951", - "construction_start_date": "2011-10-19T00:00:00Z", - "construction_end_date": "2011-10-21T00:00:00Z", + "construction_start_date": "2011-10-19", + "construction_end_date": "2011-10-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196064,8 +196064,8 @@ "land_district": null, "legal_pid": "109364480", "well_location_description": " ", - "construction_start_date": "1988-06-02T00:00:00Z", - "construction_end_date": "1988-06-02T00:00:00Z", + "construction_start_date": "1988-06-02", + "construction_end_date": "1988-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196171,8 +196171,8 @@ "land_district": null, "legal_pid": "109364480", "well_location_description": " ", - "construction_start_date": "1988-06-02T00:00:00Z", - "construction_end_date": "1988-06-02T00:00:00Z", + "construction_start_date": "1988-06-02", + "construction_end_date": "1988-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196278,8 +196278,8 @@ "land_district": null, "legal_pid": "113287834", "well_location_description": "HOLE # 4 - EAST WELL #1", - "construction_start_date": "2013-11-06T00:00:00Z", - "construction_end_date": "2013-11-07T00:00:00Z", + "construction_start_date": "2013-11-06", + "construction_end_date": "2013-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196385,8 +196385,8 @@ "land_district": null, "legal_pid": "111518871", "well_location_description": "HOLE #2 WEST WELL #1", - "construction_start_date": "2013-10-08T00:00:00Z", - "construction_end_date": "2013-10-10T00:00:00Z", + "construction_start_date": "2013-10-08", + "construction_end_date": "2013-10-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196492,8 +196492,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-10-26T00:00:00Z", - "construction_end_date": "2015-10-26T00:00:00Z", + "construction_start_date": "2015-10-26", + "construction_end_date": "2015-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196599,8 +196599,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "EXCEPT PLANS 8267, 13045, 18004, 20392, 21827, 23158", - "construction_start_date": "2015-07-09T00:00:00Z", - "construction_end_date": "2015-09-10T00:00:00Z", + "construction_start_date": "2015-07-09", + "construction_end_date": "2015-09-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196706,8 +196706,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "EXCEPT PLANS 8267, 13045, 18004, 20392, 21827, 23158", - "construction_start_date": "2015-07-10T00:00:00Z", - "construction_end_date": "2015-07-11T00:00:00Z", + "construction_start_date": "2015-07-10", + "construction_end_date": "2015-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196813,8 +196813,8 @@ "land_district": "50", "legal_pid": "123430788", "well_location_description": "NOTHING ENTERED ", - "construction_start_date": "2016-12-01T00:00:00Z", - "construction_end_date": "2016-12-02T00:00:00Z", + "construction_start_date": "2016-12-01", + "construction_end_date": "2016-12-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -196920,8 +196920,8 @@ "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-12-01T00:00:00Z", - "construction_end_date": "2016-12-06T00:00:00Z", + "construction_start_date": "2016-12-01", + "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197027,8 +197027,8 @@ "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-12-14T00:00:00Z", - "construction_end_date": "2016-12-15T00:00:00Z", + "construction_start_date": "2016-12-14", + "construction_end_date": "2016-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197134,8 +197134,8 @@ "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-12-07T00:00:00Z", - "construction_end_date": "2016-12-08T00:00:00Z", + "construction_start_date": "2016-12-07", + "construction_end_date": "2016-12-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197241,8 +197241,8 @@ "land_district": "29", "legal_pid": "118928242", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-12-14T00:00:00Z", - "construction_end_date": "2016-12-16T00:00:00Z", + "construction_start_date": "2016-12-14", + "construction_end_date": "2016-12-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197348,8 +197348,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Legal Description: That Parcel or Tract of Land in the vicinity of district Lot 8112, Group 1, New Westminister District containing 2.677 HA, more or less\r\nLand Tenure Number: 2410694", - "construction_start_date": "2012-08-13T00:00:00Z", - "construction_end_date": "2012-08-15T00:00:00Z", + "construction_start_date": "2012-08-13", + "construction_end_date": "2012-08-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197455,8 +197455,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "taylor pit", - "construction_start_date": "2016-12-06T00:00:00Z", - "construction_end_date": "2016-12-20T00:00:00Z", + "construction_start_date": "2016-12-06", + "construction_end_date": "2016-12-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197562,8 +197562,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In Backyard NW Side", - "construction_start_date": "2016-11-21T00:00:00Z", - "construction_end_date": "2016-11-21T00:00:00Z", + "construction_start_date": "2016-11-21", + "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197669,8 +197669,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "MINE SITE", - "construction_start_date": "2016-12-07T00:00:00Z", - "construction_end_date": "2016-12-19T00:00:00Z", + "construction_start_date": "2016-12-07", + "construction_end_date": "2016-12-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197776,8 +197776,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In front of barn", - "construction_start_date": "2016-11-14T00:00:00Z", - "construction_end_date": "2016-11-14T00:00:00Z", + "construction_start_date": "2016-11-14", + "construction_end_date": "2016-11-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197883,8 +197883,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "280ft E of dry cow barn", - "construction_start_date": "2016-11-24T00:00:00Z", - "construction_end_date": "2016-11-25T00:00:00Z", + "construction_start_date": "2016-11-24", + "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -197990,8 +197990,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LEFT HAND SIDE OF HOUSE, LEFT HAND SIDE OF DRIVEWAY (CLOSE TO CORRALS)", - "construction_start_date": "2016-02-23T00:00:00Z", - "construction_end_date": "2016-02-24T00:00:00Z", + "construction_start_date": "2016-02-23", + "construction_end_date": "2016-02-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198097,8 +198097,8 @@ "land_district": null, "legal_pid": "129630819", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-06T00:00:00Z", - "construction_end_date": "2016-05-06T00:00:00Z", + "construction_start_date": "2016-05-06", + "construction_end_date": "2016-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198204,8 +198204,8 @@ "land_district": null, "legal_pid": "104805381", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-11T00:00:00Z", - "construction_end_date": "2016-05-11T00:00:00Z", + "construction_start_date": "2016-05-11", + "construction_end_date": "2016-05-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198311,8 +198311,8 @@ "land_district": "26", "legal_pid": "128504518", "well_location_description": "8928 Koehle Rd Caslow B.C. KD Lot A Pl 11328 DL 819", - "construction_start_date": "2016-12-21T00:00:00Z", - "construction_end_date": "2016-12-22T00:00:00Z", + "construction_start_date": "2016-12-21", + "construction_end_date": "2016-12-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198632,8 +198632,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-01-28T00:00:00Z", - "construction_end_date": "2015-01-28T00:00:00Z", + "construction_start_date": "2015-01-28", + "construction_end_date": "2015-01-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198739,8 +198739,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "LAND DISTRICT=KDYD EXCEPT PLAN 26429", - "construction_start_date": "2016-07-11T00:00:00Z", - "construction_end_date": "2016-07-18T00:00:00Z", + "construction_start_date": "2016-07-11", + "construction_end_date": "2016-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198846,8 +198846,8 @@ "land_district": "25", "legal_pid": "104543998", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-13T00:00:00Z", - "construction_end_date": "2016-05-13T00:00:00Z", + "construction_start_date": "2016-05-13", + "construction_end_date": "2016-05-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -198953,8 +198953,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In backyard 27ft diagonal from SW corner and 51ft diagonal from SE corner of house 21ft south.", - "construction_start_date": "2016-12-28T00:00:00Z", - "construction_end_date": "2016-12-28T00:00:00Z", + "construction_start_date": "2016-12-28", + "construction_end_date": "2016-12-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199060,8 +199060,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-06T00:00:00Z", - "construction_end_date": "2016-05-10T00:00:00Z", + "construction_start_date": "2016-05-06", + "construction_end_date": "2016-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199167,8 +199167,8 @@ "land_district": "25", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-13T00:00:00Z", - "construction_end_date": "2015-10-14T00:00:00Z", + "construction_start_date": "2015-10-13", + "construction_end_date": "2015-10-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199274,8 +199274,8 @@ "land_district": null, "legal_pid": "114373564", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-31T00:00:00Z", - "construction_end_date": "2016-09-01T00:00:00Z", + "construction_start_date": "2016-08-31", + "construction_end_date": "2016-09-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199381,8 +199381,8 @@ "land_district": "25", "legal_pid": "128248791", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-25T00:00:00Z", - "construction_end_date": "2016-08-30T00:00:00Z", + "construction_start_date": "2016-08-25", + "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199488,8 +199488,8 @@ "land_district": "59", "legal_pid": "118793282", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-23T00:00:00Z", - "construction_end_date": "2016-08-24T00:00:00Z", + "construction_start_date": "2016-08-23", + "construction_end_date": "2016-08-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199595,8 +199595,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "Land tenure number: 703943", - "construction_start_date": "2007-10-04T00:00:00Z", - "construction_end_date": "2007-10-04T00:00:00Z", + "construction_start_date": "2007-10-04", + "construction_end_date": "2007-10-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199702,8 +199702,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-02T00:00:00Z", - "construction_end_date": "2016-09-02T00:00:00Z", + "construction_start_date": "2016-09-02", + "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199809,8 +199809,8 @@ "land_district": "07", "legal_pid": "155914370", "well_location_description": "Except Plan VIP 13243, & EXC PL VIP41241;", - "construction_start_date": "2001-02-07T00:00:00Z", - "construction_end_date": "2001-02-07T00:00:00Z", + "construction_start_date": "2001-02-07", + "construction_end_date": "2001-02-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -199916,8 +199916,8 @@ "land_district": "59", "legal_pid": "118793282", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-20T00:00:00Z", - "construction_end_date": "2016-09-20T00:00:00Z", + "construction_start_date": "2016-09-20", + "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200130,8 +200130,8 @@ "land_district": null, "legal_pid": "112994774", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-19T00:00:00Z", - "construction_end_date": "2016-09-20T00:00:00Z", + "construction_start_date": "2016-09-19", + "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200237,8 +200237,8 @@ "land_district": "27", "legal_pid": "113220527", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-15T00:00:00Z", - "construction_end_date": "2016-09-16T00:00:00Z", + "construction_start_date": "2016-09-15", + "construction_end_date": "2016-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200344,8 +200344,8 @@ "land_district": "05", "legal_pid": "118815502", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-13T00:00:00Z", - "construction_end_date": "2016-09-14T00:00:00Z", + "construction_start_date": "2016-09-13", + "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200451,8 +200451,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2016-12-05T00:00:00Z", - "construction_end_date": "2016-12-15T00:00:00Z", + "construction_start_date": "2016-12-05", + "construction_end_date": "2016-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200558,8 +200558,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2016-11-24T00:00:00Z", - "construction_end_date": "2016-12-03T00:00:00Z", + "construction_start_date": "2016-11-24", + "construction_end_date": "2016-12-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200665,8 +200665,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2016-11-17T00:00:00Z", - "construction_end_date": "2016-11-23T00:00:00Z", + "construction_start_date": "2016-11-17", + "construction_end_date": "2016-11-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200772,8 +200772,8 @@ "land_district": "05", "legal_pid": "118815502", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-12T00:00:00Z", - "construction_end_date": "2016-09-14T00:00:00Z", + "construction_start_date": "2016-09-12", + "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -200881,8 +200881,8 @@ "well_location_description": "NOTHING ENTERED.", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2016-09-07T00:00:00Z", - "alteration_end_date": "2016-09-08T00:00:00Z", + "alteration_start_date": "2016-09-07", + "alteration_end_date": "2016-09-08", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "5411c7ef-2753-40c6-b7d1-94ebf4aa8a13", @@ -200986,8 +200986,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-08-08T00:00:00Z", - "construction_end_date": "2016-08-10T00:00:00Z", + "construction_start_date": "2016-08-08", + "construction_end_date": "2016-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201093,8 +201093,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-08-02T00:00:00Z", - "construction_end_date": "2016-08-03T00:00:00Z", + "construction_start_date": "2016-08-02", + "construction_end_date": "2016-08-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201200,8 +201200,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-08-04T00:00:00Z", - "construction_end_date": "2016-08-04T00:00:00Z", + "construction_start_date": "2016-08-04", + "construction_end_date": "2016-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201307,8 +201307,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-25T00:00:00Z", - "construction_end_date": "2016-07-25T00:00:00Z", + "construction_start_date": "2016-07-25", + "construction_end_date": "2016-07-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201414,7 +201414,7 @@ "land_district": "27", "legal_pid": "109527206", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-26T00:00:00Z", + "construction_start_date": "2016-07-26", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -201521,8 +201521,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NRCAN PIN 1191243; IR#3 RESERVE REMAINDER", - "construction_start_date": "2016-06-08T00:00:00Z", - "construction_end_date": "2016-06-08T00:00:00Z", + "construction_start_date": "2016-06-08", + "construction_end_date": "2016-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201628,8 +201628,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "EXP HP 47-A610-13", - "construction_start_date": "2016-07-20T00:00:00Z", - "construction_end_date": "2016-07-21T00:00:00Z", + "construction_start_date": "2016-07-20", + "construction_end_date": "2016-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201735,8 +201735,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-19T00:00:00Z", - "construction_end_date": "2016-07-20T00:00:00Z", + "construction_start_date": "2016-07-19", + "construction_end_date": "2016-07-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201842,8 +201842,8 @@ "land_district": null, "legal_pid": "101847872", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2012-01-30T00:00:00Z", - "construction_end_date": "2012-04-16T00:00:00Z", + "construction_start_date": "2012-01-30", + "construction_end_date": "2012-04-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -201949,8 +201949,8 @@ "land_district": null, "legal_pid": "129076242", "well_location_description": " ", - "construction_start_date": "1980-01-01T00:00:00Z", - "construction_end_date": "1980-01-01T00:00:00Z", + "construction_start_date": "1980-01-01", + "construction_end_date": "1980-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202056,8 +202056,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In front yard of South house", - "construction_start_date": "2016-12-20T00:00:00Z", - "construction_end_date": "2016-12-21T00:00:00Z", + "construction_start_date": "2016-12-20", + "construction_end_date": "2016-12-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202163,8 +202163,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In front yard, SW side.", - "construction_start_date": "2016-08-30T00:00:00Z", - "construction_end_date": "2016-08-30T00:00:00Z", + "construction_start_date": "2016-08-30", + "construction_end_date": "2016-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202270,8 +202270,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-31T00:00:00Z", - "construction_end_date": "2016-05-31T00:00:00Z", + "construction_start_date": "2016-05-31", + "construction_end_date": "2016-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202377,8 +202377,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-08-04T00:00:00Z", - "construction_end_date": "2015-08-13T00:00:00Z", + "construction_start_date": "2015-08-04", + "construction_end_date": "2015-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202484,8 +202484,8 @@ "land_district": "29", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-23T00:00:00Z", - "construction_end_date": "2015-09-23T00:00:00Z", + "construction_start_date": "2015-09-23", + "construction_end_date": "2015-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202591,8 +202591,8 @@ "land_district": null, "legal_pid": "128936523", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-25T00:00:00Z", - "construction_end_date": "2015-11-30T00:00:00Z", + "construction_start_date": "2015-11-25", + "construction_end_date": "2015-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202698,8 +202698,8 @@ "land_district": "29", "legal_pid": "123456789", "well_location_description": "PROPOSED SUBDIVISION OF LOT D DISTRICT LOT 132", - "construction_start_date": "2016-02-15T00:00:00Z", - "construction_end_date": "2016-02-18T00:00:00Z", + "construction_start_date": "2016-02-15", + "construction_end_date": "2016-02-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202805,8 +202805,8 @@ "land_district": "29", "legal_pid": "123456789", "well_location_description": "PROPOSED SUBDIVISION OF LOT D DISTRICT LOT 132", - "construction_start_date": "2016-02-12T00:00:00Z", - "construction_end_date": "2016-02-18T00:00:00Z", + "construction_start_date": "2016-02-12", + "construction_end_date": "2016-02-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -202912,8 +202912,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In backyard", - "construction_start_date": "2016-12-22T00:00:00Z", - "construction_end_date": "2016-12-22T00:00:00Z", + "construction_start_date": "2016-12-22", + "construction_end_date": "2016-12-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203020,7 +203020,7 @@ "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, - "construction_end_date": "2016-06-01T00:00:00Z", + "construction_end_date": "2016-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203234,7 +203234,7 @@ "legal_pid": "125028502", "well_location_description": "NOT PROVIDED", "construction_start_date": null, - "construction_end_date": "2016-08-10T00:00:00Z", + "construction_end_date": "2016-08-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203340,8 +203340,8 @@ "land_district": "29", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-28T00:00:00Z", - "construction_end_date": "2015-10-07T00:00:00Z", + "construction_start_date": "2015-09-28", + "construction_end_date": "2015-10-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203447,8 +203447,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "PLEASE REFER TO: 16-20-87-22-W6", - "construction_start_date": "2016-07-19T00:00:00Z", - "construction_end_date": "2016-07-19T00:00:00Z", + "construction_start_date": "2016-07-19", + "construction_end_date": "2016-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203554,8 +203554,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BA 62 I / 94-A-12", - "construction_start_date": "2016-07-16T00:00:00Z", - "construction_end_date": "2016-07-17T00:00:00Z", + "construction_start_date": "2016-07-16", + "construction_end_date": "2016-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203661,8 +203661,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "PLEASE USE 1-24-88-23-W6", - "construction_start_date": "2016-07-18T00:00:00Z", - "construction_end_date": "2016-07-18T00:00:00Z", + "construction_start_date": "2016-07-18", + "construction_end_date": "2016-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203768,8 +203768,8 @@ "land_district": "42", "legal_pid": "126701791", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-10-04T00:00:00Z", - "construction_end_date": "2013-10-04T00:00:00Z", + "construction_start_date": "2013-10-04", + "construction_end_date": "2013-10-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203875,8 +203875,8 @@ "land_district": "55", "legal_pid": "123456789", "well_location_description": "WELL # 3 FOR SITE 3", - "construction_start_date": "2015-08-25T00:00:00Z", - "construction_end_date": "2015-08-30T00:00:00Z", + "construction_start_date": "2015-08-25", + "construction_end_date": "2015-08-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -203983,7 +203983,7 @@ "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, - "construction_end_date": "2015-08-01T00:00:00Z", + "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204090,7 +204090,7 @@ "legal_pid": "123456789", "well_location_description": "WELL # 1 FOR SITE 2", "construction_start_date": null, - "construction_end_date": "2015-08-01T00:00:00Z", + "construction_end_date": "2015-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204196,8 +204196,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-24T00:00:00Z", - "construction_end_date": "2016-04-24T00:00:00Z", + "construction_start_date": "2016-04-24", + "construction_end_date": "2016-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204303,8 +204303,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-02-29T00:00:00Z", - "construction_end_date": "2016-02-29T00:00:00Z", + "construction_start_date": "2016-02-29", + "construction_end_date": "2016-02-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204410,8 +204410,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-20T00:00:00Z", - "construction_end_date": "2016-04-21T00:00:00Z", + "construction_start_date": "2016-04-20", + "construction_end_date": "2016-04-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204517,8 +204517,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WEST QUESNEL PW7 AREA", - "construction_start_date": "2015-07-07T00:00:00Z", - "construction_end_date": "2015-07-08T00:00:00Z", + "construction_start_date": "2015-07-07", + "construction_end_date": "2015-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204624,8 +204624,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "PW7 AREA", - "construction_start_date": "2015-07-09T00:00:00Z", - "construction_end_date": "2015-07-09T00:00:00Z", + "construction_start_date": "2015-07-09", + "construction_end_date": "2015-07-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204838,8 +204838,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-08T00:00:00Z", - "construction_end_date": "2015-07-08T00:00:00Z", + "construction_start_date": "2015-07-08", + "construction_end_date": "2015-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -204945,8 +204945,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "P2A", - "construction_start_date": "2016-03-01T00:00:00Z", - "construction_end_date": "2016-03-01T00:00:00Z", + "construction_start_date": "2016-03-01", + "construction_end_date": "2016-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205159,8 +205159,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-11-11T00:00:00Z", - "construction_end_date": "2015-11-13T00:00:00Z", + "construction_start_date": "2015-11-11", + "construction_end_date": "2015-11-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205266,8 +205266,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 32161 EXCEPT PAN 32472", - "construction_start_date": "2015-07-23T00:00:00Z", - "construction_end_date": "2015-07-23T00:00:00Z", + "construction_start_date": "2015-07-23", + "construction_end_date": "2015-07-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205373,8 +205373,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 14414 EXCEPT PLAN 19897", - "construction_start_date": "2015-07-13T00:00:00Z", - "construction_end_date": "2015-07-13T00:00:00Z", + "construction_start_date": "2015-07-13", + "construction_end_date": "2015-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205480,8 +205480,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 2798 EXCEPT PLAN 8578", - "construction_start_date": "2015-07-14T00:00:00Z", - "construction_end_date": "2015-07-14T00:00:00Z", + "construction_start_date": "2015-07-14", + "construction_end_date": "2015-07-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205587,8 +205587,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-15T00:00:00Z", - "construction_end_date": "2015-07-15T00:00:00Z", + "construction_start_date": "2015-07-15", + "construction_end_date": "2015-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205694,8 +205694,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "CARIBOO HIGHWAY NO 97 13TU1233", - "construction_start_date": "2015-07-20T00:00:00Z", - "construction_end_date": "2015-07-21T00:00:00Z", + "construction_start_date": "2015-07-20", + "construction_end_date": "2015-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205801,8 +205801,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "PARCEL 1, LOTS 710 + 6682 + 6683", - "construction_start_date": "2015-07-21T00:00:00Z", - "construction_end_date": "2015-07-22T00:00:00Z", + "construction_start_date": "2015-07-21", + "construction_end_date": "2015-07-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -205908,8 +205908,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": "PLAN 34959 EXCEPT PGP41141", - "construction_start_date": "2015-07-22T00:00:00Z", - "construction_end_date": "2015-07-22T00:00:00Z", + "construction_start_date": "2015-07-22", + "construction_end_date": "2015-07-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206015,7 +206015,7 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "ROAD RIGHT OF WAY", - "construction_start_date": "2015-07-11T00:00:00Z", + "construction_start_date": "2015-07-11", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -206122,8 +206122,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-08-03T00:00:00Z", - "construction_end_date": "2016-08-03T00:00:00Z", + "construction_start_date": "2016-08-03", + "construction_end_date": "2016-08-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206229,12 +206229,12 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 176 N'KWALA INDUSTRIAL PARK, OKANAGAN 1R1", - "construction_start_date": "2016-03-21T00:00:00Z", - "construction_end_date": "2016-03-21T00:00:00Z", + "construction_start_date": "2016-03-21", + "construction_end_date": "2016-03-21", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-21T00:00:00Z", - "decommission_end_date": "2016-03-21T00:00:00Z", + "decommission_start_date": "2016-03-21", + "decommission_end_date": "2016-03-21", "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NO WELL TAG ATTACHED", "latitude": "49.27", @@ -206336,8 +206336,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-07-28T00:00:00Z", - "construction_end_date": "2016-08-01T00:00:00Z", + "construction_start_date": "2016-07-28", + "construction_end_date": "2016-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206443,8 +206443,8 @@ "land_district": "23", "legal_pid": "123456789", "well_location_description": "Within proposed lot boundaries.", - "construction_start_date": "2016-10-17T00:00:00Z", - "construction_end_date": "2016-10-18T00:00:00Z", + "construction_start_date": "2016-10-17", + "construction_end_date": "2016-10-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206550,11 +206550,11 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-13T00:00:00Z", + "construction_start_date": "2015-05-13", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-05-13T00:00:00Z", + "decommission_start_date": "2015-05-13", "decommission_end_date": null, "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "CASING", @@ -206657,8 +206657,8 @@ "land_district": "32", "legal_pid": "100157431", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-03T00:00:00Z", - "construction_end_date": "2016-11-04T00:00:00Z", + "construction_start_date": "2016-11-03", + "construction_end_date": "2016-11-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206764,8 +206764,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-03T00:00:00Z", - "construction_end_date": "2016-11-04T00:00:00Z", + "construction_start_date": "2016-11-03", + "construction_end_date": "2016-11-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206871,8 +206871,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-20T00:00:00Z", - "construction_end_date": "2015-10-20T00:00:00Z", + "construction_start_date": "2015-10-20", + "construction_end_date": "2015-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -206978,12 +206978,12 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTHWEST CORNER OF FIELD, ACROSS ROAD FROM MINISTRY OF ENVIRONMENT MONITORING WELL", - "construction_start_date": "2015-06-15T00:00:00Z", - "construction_end_date": "2015-10-06T00:00:00Z", + "construction_start_date": "2015-06-15", + "construction_end_date": "2015-10-06", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-06-23T00:00:00Z", - "decommission_end_date": "2016-06-25T00:00:00Z", + "decommission_start_date": "2016-06-23", + "decommission_end_date": "2016-06-25", "drilling_company": "cb341f51-afe9-486a-b10b-f38003ae9118", "well_identification_plate_attached": "NOT PROVIDED", "latitude": "49.20", @@ -207086,7 +207086,7 @@ "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", "construction_start_date": null, - "construction_end_date": "2003-10-10T00:00:00Z", + "construction_end_date": "2003-10-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207192,8 +207192,8 @@ "land_district": "26", "legal_pid": "113468332", "well_location_description": "Plan 1258 DL 1236 KD", - "construction_start_date": "2016-07-11T00:00:00Z", - "construction_end_date": "2016-07-12T00:00:00Z", + "construction_start_date": "2016-07-11", + "construction_end_date": "2016-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207299,8 +207299,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2002-12-17T00:00:00Z", - "construction_end_date": "2002-12-20T00:00:00Z", + "construction_start_date": "2002-12-17", + "construction_end_date": "2002-12-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207406,8 +207406,8 @@ "land_district": "16", "legal_pid": "106620892", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-11-19T00:00:00Z", - "construction_end_date": "2016-11-19T00:00:00Z", + "construction_start_date": "2016-11-19", + "construction_end_date": "2016-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207513,8 +207513,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WEST SIDE OF FIELD, EAST OF HOUSE", - "construction_start_date": "2017-01-10T00:00:00Z", - "construction_end_date": "2017-01-13T00:00:00Z", + "construction_start_date": "2017-01-10", + "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207620,8 +207620,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-12-21T00:00:00Z", - "construction_end_date": "2017-01-06T00:00:00Z", + "construction_start_date": "2016-12-21", + "construction_end_date": "2017-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207727,8 +207727,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-12-13T00:00:00Z", - "construction_end_date": "2016-12-23T00:00:00Z", + "construction_start_date": "2016-12-13", + "construction_end_date": "2016-12-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207834,8 +207834,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "GRAVEL PIT - MAINLAND SAND AND GRAVEL", - "construction_start_date": "2017-01-05T00:00:00Z", - "construction_end_date": "2017-01-10T00:00:00Z", + "construction_start_date": "2017-01-05", + "construction_end_date": "2017-01-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -207941,10 +207941,10 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "12-36-87-26-W6", - "construction_start_date": "2016-07-16T00:00:00Z", + "construction_start_date": "2016-07-16", "construction_end_date": null, - "alteration_start_date": "2016-08-12T00:00:00Z", - "alteration_end_date": "2016-08-13T00:00:00Z", + "alteration_start_date": "2016-08-12", + "alteration_end_date": "2016-08-13", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "c8ba3833-98ba-4ae9-b705-c069078eb6a5", @@ -208048,8 +208048,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2004-10-26T00:00:00Z", - "construction_end_date": "2004-10-27T00:00:00Z", + "construction_start_date": "2004-10-26", + "construction_end_date": "2004-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -208153,10 +208153,10 @@ "legal_township": " ", "legal_range": " ", "land_district": null, - "legal_pid": "KAP 55997", + "legal_pid": "55997", "well_location_description": "UNKNOWN", - "construction_start_date": "2016-08-02T00:00:00Z", - "construction_end_date": "2016-08-04T00:00:00Z", + "construction_start_date": "2016-08-02", + "construction_end_date": "2016-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -208264,8 +208264,8 @@ "well_location_description": "WELL LOCATED BETWEEN HOUSE AND SHED.", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2009-12-10T00:00:00Z", - "alteration_end_date": "2009-12-10T00:00:00Z", + "alteration_start_date": "2009-12-10", + "alteration_end_date": "2009-12-10", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": null, @@ -208371,8 +208371,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2013-10-30T00:00:00Z", - "alteration_end_date": "2013-11-01T00:00:00Z", + "alteration_start_date": "2013-10-30", + "alteration_end_date": "2013-11-01", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -208476,8 +208476,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property in field", - "construction_start_date": "2016-12-13T00:00:00Z", - "construction_end_date": "2016-12-15T00:00:00Z", + "construction_start_date": "2016-12-13", + "construction_end_date": "2016-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -208583,8 +208583,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property", - "construction_start_date": "2016-07-27T00:00:00Z", - "construction_end_date": "2016-07-27T00:00:00Z", + "construction_start_date": "2016-07-27", + "construction_end_date": "2016-07-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -208690,8 +208690,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property", - "construction_start_date": "2016-07-27T00:00:00Z", - "construction_end_date": "2016-07-28T00:00:00Z", + "construction_start_date": "2016-07-27", + "construction_end_date": "2016-07-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -208797,8 +208797,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property", - "construction_start_date": "2016-07-26T00:00:00Z", - "construction_end_date": "2016-07-26T00:00:00Z", + "construction_start_date": "2016-07-26", + "construction_end_date": "2016-07-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -208904,8 +208904,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on property ", - "construction_start_date": "2008-06-13T00:00:00Z", - "construction_end_date": "2008-06-13T00:00:00Z", + "construction_start_date": "2008-06-13", + "construction_end_date": "2008-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209011,8 +209011,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside pump house behind", - "construction_start_date": "2016-04-14T00:00:00Z", - "construction_end_date": "2016-04-14T00:00:00Z", + "construction_start_date": "2016-04-14", + "construction_end_date": "2016-04-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209118,8 +209118,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on sub div lot 10", - "construction_start_date": "2016-10-20T00:00:00Z", - "construction_end_date": "2016-10-20T00:00:00Z", + "construction_start_date": "2016-10-20", + "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209225,8 +209225,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 11 on sub div", - "construction_start_date": "2016-10-19T00:00:00Z", - "construction_end_date": "2016-10-19T00:00:00Z", + "construction_start_date": "2016-10-19", + "construction_end_date": "2016-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209332,8 +209332,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 12 on sub div", - "construction_start_date": "2016-10-17T00:00:00Z", - "construction_end_date": "2016-10-18T00:00:00Z", + "construction_start_date": "2016-10-17", + "construction_end_date": "2016-10-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209439,8 +209439,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 13 of sub div", - "construction_start_date": "2016-10-17T00:00:00Z", - "construction_end_date": "2016-10-17T00:00:00Z", + "construction_start_date": "2016-10-17", + "construction_end_date": "2016-10-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209546,8 +209546,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "lot 14 sub div", - "construction_start_date": "2016-10-16T00:00:00Z", - "construction_end_date": "2016-10-16T00:00:00Z", + "construction_start_date": "2016-10-16", + "construction_end_date": "2016-10-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209653,8 +209653,8 @@ "land_district": "53", "legal_pid": "104374185", "well_location_description": "NOTHING ENTERED ON THE REPORT", - "construction_start_date": "2017-01-12T00:00:00Z", - "construction_end_date": "2017-01-13T00:00:00Z", + "construction_start_date": "2017-01-12", + "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209760,8 +209760,8 @@ "land_district": "15", "legal_pid": "118540490", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-01-03T00:00:00Z", - "construction_end_date": "2017-01-10T00:00:00Z", + "construction_start_date": "2017-01-03", + "construction_end_date": "2017-01-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209867,8 +209867,8 @@ "land_district": "51", "legal_pid": "100131598", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-01-10T00:00:00Z", - "construction_end_date": "2017-01-11T00:00:00Z", + "construction_start_date": "2017-01-10", + "construction_end_date": "2017-01-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -209974,8 +209974,8 @@ "land_district": "25", "legal_pid": "113049291", "well_location_description": "south 1/2 DL 3982", - "construction_start_date": "1996-09-29T00:00:00Z", - "construction_end_date": "1996-09-29T00:00:00Z", + "construction_start_date": "1996-09-29", + "construction_end_date": "1996-09-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -210083,8 +210083,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2013-05-14T00:00:00Z", - "alteration_end_date": "2013-05-15T00:00:00Z", + "alteration_start_date": "2013-05-14", + "alteration_end_date": "2013-05-15", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -210190,8 +210190,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2016-01-15T00:00:00Z", - "alteration_end_date": "2016-01-19T00:00:00Z", + "alteration_start_date": "2016-01-15", + "alteration_end_date": "2016-01-19", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -210297,8 +210297,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2012-07-11T00:00:00Z", - "alteration_end_date": "2012-07-11T00:00:00Z", + "alteration_start_date": "2012-07-11", + "alteration_end_date": "2012-07-11", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -210404,8 +210404,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2013-06-25T00:00:00Z", - "alteration_end_date": "2013-07-10T00:00:00Z", + "alteration_start_date": "2013-06-25", + "alteration_end_date": "2013-07-10", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -210511,8 +210511,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2014-09-15T00:00:00Z", - "alteration_end_date": "2014-09-17T00:00:00Z", + "alteration_start_date": "2014-09-15", + "alteration_end_date": "2014-09-17", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -210618,8 +210618,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2014-07-08T00:00:00Z", - "alteration_end_date": "2014-07-11T00:00:00Z", + "alteration_start_date": "2014-07-08", + "alteration_end_date": "2014-07-11", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -210723,8 +210723,8 @@ "land_district": "26", "legal_pid": "129712122", "well_location_description": " ", - "construction_start_date": "2016-10-18T00:00:00Z", - "construction_end_date": "2016-10-27T00:00:00Z", + "construction_start_date": "2016-10-18", + "construction_end_date": "2016-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -210832,8 +210832,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2014-01-18T00:00:00Z", - "alteration_end_date": "2014-01-20T00:00:00Z", + "alteration_start_date": "2014-01-18", + "alteration_end_date": "2014-01-20", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6be40dfe-1c42-4c2c-a3df-afe82809b4fc", @@ -210937,10 +210937,10 @@ "land_district": "50", "legal_pid": "123456789", "well_location_description": "PROPOSED LOT 8, PLAN EPP53285; WITHIN PROPERTY BOUNDARY", - "construction_start_date": "2015-05-29T00:00:00Z", - "construction_end_date": "2015-06-01T00:00:00Z", - "alteration_start_date": "2015-06-22T00:00:00Z", - "alteration_end_date": "2015-06-23T00:00:00Z", + "construction_start_date": "2015-05-29", + "construction_end_date": "2015-06-01", + "alteration_start_date": "2015-06-22", + "alteration_end_date": "2015-06-23", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "f8a789db-290e-4d6a-a6d2-f0408ea4b961", @@ -211155,8 +211155,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-01T00:00:00Z", - "decommission_end_date": "2016-03-01T00:00:00Z", + "decommission_start_date": "2016-03-01", + "decommission_end_date": "2016-03-01", "drilling_company": "2eca7ffc-b10e-4aa2-a366-1677ea8b8ed1", "well_identification_plate_attached": "NO WELL TAG", "latitude": "49.23", @@ -211262,8 +211262,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-28T00:00:00Z", - "decommission_end_date": "2016-03-28T00:00:00Z", + "decommission_start_date": "2016-03-28", + "decommission_end_date": "2016-03-28", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.22", @@ -211476,8 +211476,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2011-07-30T00:00:00Z", - "decommission_end_date": "2011-07-30T00:00:00Z", + "decommission_start_date": "2011-07-30", + "decommission_end_date": "2011-07-30", "drilling_company": "24bef46e-82ee-4a1b-900d-5de31eedc9f8", "well_identification_plate_attached": null, "latitude": "49.27", @@ -211583,8 +211583,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-21T00:00:00Z", - "decommission_end_date": "2016-03-22T00:00:00Z", + "decommission_start_date": "2016-03-21", + "decommission_end_date": "2016-03-22", "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.26", @@ -211686,8 +211686,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "in front on secondary dwelling", - "construction_start_date": "2017-01-23T00:00:00Z", - "construction_end_date": "2017-01-24T00:00:00Z", + "construction_start_date": "2017-01-23", + "construction_end_date": "2017-01-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -211797,8 +211797,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-09-28T00:00:00Z", - "decommission_end_date": "2015-09-28T00:00:00Z", + "decommission_start_date": "2015-09-28", + "decommission_end_date": "2015-09-28", "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", "well_identification_plate_attached": null, "latitude": "49.22", @@ -211900,8 +211900,8 @@ "land_district": "26", "legal_pid": "127090876", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-18T00:00:00Z", - "construction_end_date": "2016-05-20T00:00:00Z", + "construction_start_date": "2016-05-18", + "construction_end_date": "2016-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212007,8 +212007,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-25T00:00:00Z", - "construction_end_date": "2016-05-26T00:00:00Z", + "construction_start_date": "2016-05-25", + "construction_end_date": "2016-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212114,8 +212114,8 @@ "land_district": null, "legal_pid": "111881763", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-20T00:00:00Z", - "construction_end_date": "2016-06-22T00:00:00Z", + "construction_start_date": "2016-06-20", + "construction_end_date": "2016-06-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212221,8 +212221,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-03T00:00:00Z", - "construction_end_date": "2016-06-03T00:00:00Z", + "construction_start_date": "2016-06-03", + "construction_end_date": "2016-06-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212328,8 +212328,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-10-15T00:00:00Z", - "construction_end_date": "2015-11-12T00:00:00Z", + "construction_start_date": "2015-10-15", + "construction_end_date": "2015-11-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212435,8 +212435,8 @@ "land_district": "26", "legal_pid": "112770680", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-11-08T00:00:00Z", - "construction_end_date": "2015-11-13T00:00:00Z", + "construction_start_date": "2015-11-08", + "construction_end_date": "2015-11-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212542,8 +212542,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-30T00:00:00Z", - "construction_end_date": "2016-05-30T00:00:00Z", + "construction_start_date": "2016-05-30", + "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212649,8 +212649,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-31T00:00:00Z", - "construction_end_date": "2016-05-31T00:00:00Z", + "construction_start_date": "2016-05-31", + "construction_end_date": "2016-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212756,8 +212756,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 310 FEET EAST DOWN DRIVEWAY WITH WELL ON LEFT SIDE OF DRIVEWAY.", - "construction_start_date": "2014-04-17T00:00:00Z", - "construction_end_date": "2014-04-23T00:00:00Z", + "construction_start_date": "2014-04-17", + "construction_end_date": "2014-04-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212863,8 +212863,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 60 FEET EAST OF HOUSE ON LEFT SIDE OF DRIVEWAY", - "construction_start_date": "2014-04-24T00:00:00Z", - "construction_end_date": "2014-04-29T00:00:00Z", + "construction_start_date": "2014-04-24", + "construction_end_date": "2014-04-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -212970,8 +212970,8 @@ "land_district": null, "legal_pid": "103309541", "well_location_description": "WELL APPROXIMATELY 150' NORTHWEST OF HOUSE IN BACKYARD ON LEFT HAND SIDE OF DRIVEWAY", - "construction_start_date": "2013-10-31T00:00:00Z", - "construction_end_date": "2013-11-06T00:00:00Z", + "construction_start_date": "2013-10-31", + "construction_end_date": "2013-11-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213077,8 +213077,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2016-10-24T00:00:00Z", - "construction_end_date": "2016-10-24T00:00:00Z", + "construction_start_date": "2016-10-24", + "construction_end_date": "2016-10-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213184,8 +213184,8 @@ "land_district": null, "legal_pid": "108564817", "well_location_description": "PLAN B1739 EXCEPT 34942. ALONG FENCE LINE IN MIDDLE OF PROPERTY", - "construction_start_date": "1922-08-01T00:00:00Z", - "construction_end_date": "1922-08-01T00:00:00Z", + "construction_start_date": "1922-08-01", + "construction_end_date": "1922-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213293,8 +213293,8 @@ "well_location_description": "NOT PROVIDED", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2015-03-09T00:00:00Z", - "alteration_end_date": "2015-03-11T00:00:00Z", + "alteration_start_date": "2015-03-09", + "alteration_end_date": "2015-03-11", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "6208193e-066e-4703-8e74-2e302e0005bb", @@ -213398,8 +213398,8 @@ "land_district": "27", "legal_pid": "107773668", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-19T00:00:00Z", - "construction_end_date": "2016-08-19T00:00:00Z", + "construction_start_date": "2016-08-19", + "construction_end_date": "2016-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213505,8 +213505,8 @@ "land_district": "27", "legal_pid": "103329593", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-17T00:00:00Z", - "construction_end_date": "2016-08-18T00:00:00Z", + "construction_start_date": "2016-08-17", + "construction_end_date": "2016-08-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213612,8 +213612,8 @@ "land_district": "27", "legal_pid": "103031519", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-15T00:00:00Z", - "construction_end_date": "2016-08-16T00:00:00Z", + "construction_start_date": "2016-08-15", + "construction_end_date": "2016-08-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213719,8 +213719,8 @@ "land_district": "27", "legal_pid": "103513891", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-12T00:00:00Z", - "construction_end_date": "2016-08-12T00:00:00Z", + "construction_start_date": "2016-08-12", + "construction_end_date": "2016-08-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213826,8 +213826,8 @@ "land_district": "27", "legal_pid": "123932902", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-10T00:00:00Z", - "construction_end_date": "2016-08-11T00:00:00Z", + "construction_start_date": "2016-08-10", + "construction_end_date": "2016-08-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -213933,8 +213933,8 @@ "land_district": "27", "legal_pid": "123317990", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-04T00:00:00Z", - "construction_end_date": "2016-08-05T00:00:00Z", + "construction_start_date": "2016-08-04", + "construction_end_date": "2016-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214040,8 +214040,8 @@ "land_district": "27", "legal_pid": "103491498", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-02T00:00:00Z", - "construction_end_date": "2016-08-03T00:00:00Z", + "construction_start_date": "2016-08-02", + "construction_end_date": "2016-08-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214147,8 +214147,8 @@ "land_district": "27", "legal_pid": "108342091", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-27T00:00:00Z", - "construction_end_date": "2016-07-28T00:00:00Z", + "construction_start_date": "2016-07-27", + "construction_end_date": "2016-07-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214254,8 +214254,8 @@ "land_district": "27", "legal_pid": "118555233", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-25T00:00:00Z", - "construction_end_date": "2016-07-26T00:00:00Z", + "construction_start_date": "2016-07-25", + "construction_end_date": "2016-07-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214361,8 +214361,8 @@ "land_district": "27", "legal_pid": "129519993", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-20T00:00:00Z", - "construction_end_date": "2016-07-21T00:00:00Z", + "construction_start_date": "2016-07-20", + "construction_end_date": "2016-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214468,8 +214468,8 @@ "land_district": "27", "legal_pid": "107644221", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-18T00:00:00Z", - "construction_end_date": "2016-07-19T00:00:00Z", + "construction_start_date": "2016-07-18", + "construction_end_date": "2016-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214575,8 +214575,8 @@ "land_district": "27", "legal_pid": "107341211", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-08T00:00:00Z", - "construction_end_date": "2016-11-08T00:00:00Z", + "construction_start_date": "2016-11-08", + "construction_end_date": "2016-11-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214682,8 +214682,8 @@ "land_district": "27", "legal_pid": "126855259", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-27T00:00:00Z", - "construction_end_date": "2016-11-30T00:00:00Z", + "construction_start_date": "2016-11-27", + "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214789,8 +214789,8 @@ "land_district": "27", "legal_pid": "113372815", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-06T00:00:00Z", - "construction_end_date": "2016-11-07T00:00:00Z", + "construction_start_date": "2016-11-06", + "construction_end_date": "2016-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -214896,8 +214896,8 @@ "land_district": "27", "legal_pid": "117604893", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-19T00:00:00Z", - "construction_end_date": "2016-10-20T00:00:00Z", + "construction_start_date": "2016-10-19", + "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215003,8 +215003,8 @@ "land_district": "27", "legal_pid": "102017105", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-12T00:00:00Z", - "construction_end_date": "2016-10-12T00:00:00Z", + "construction_start_date": "2016-10-12", + "construction_end_date": "2016-10-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215110,8 +215110,8 @@ "land_district": "27", "legal_pid": "125660624", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-03T00:00:00Z", - "construction_end_date": "2016-10-04T00:00:00Z", + "construction_start_date": "2016-10-03", + "construction_end_date": "2016-10-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215217,8 +215217,8 @@ "land_district": "17", "legal_pid": "105999405", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-01-23T00:00:00Z", - "construction_end_date": "2017-01-24T00:00:00Z", + "construction_start_date": "2017-01-23", + "construction_end_date": "2017-01-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215324,8 +215324,8 @@ "land_district": "27", "legal_pid": "108140111", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-01T00:00:00Z", - "construction_end_date": "2016-09-02T00:00:00Z", + "construction_start_date": "2016-09-01", + "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215431,8 +215431,8 @@ "land_district": "16", "legal_pid": "100698865", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-01-20T00:00:00Z", - "construction_end_date": "2017-01-23T00:00:00Z", + "construction_start_date": "2017-01-20", + "construction_end_date": "2017-01-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215538,8 +215538,8 @@ "land_district": "27", "legal_pid": "113391046", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-26T00:00:00Z", - "construction_end_date": "2016-09-27T00:00:00Z", + "construction_start_date": "2016-09-26", + "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215645,8 +215645,8 @@ "land_district": "27", "legal_pid": "115429792", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-21T00:00:00Z", - "construction_end_date": "2016-09-22T00:00:00Z", + "construction_start_date": "2016-09-21", + "construction_end_date": "2016-09-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215752,8 +215752,8 @@ "land_district": "27", "legal_pid": "104954327", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-20T00:00:00Z", - "construction_end_date": "2016-09-20T00:00:00Z", + "construction_start_date": "2016-09-20", + "construction_end_date": "2016-09-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215859,8 +215859,8 @@ "land_district": "27", "legal_pid": "128106679", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-13T00:00:00Z", - "construction_end_date": "2016-09-14T00:00:00Z", + "construction_start_date": "2016-09-13", + "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -215966,8 +215966,8 @@ "land_district": "27", "legal_pid": "105922402", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-12T00:00:00Z", - "construction_end_date": "2016-09-13T00:00:00Z", + "construction_start_date": "2016-09-12", + "construction_end_date": "2016-09-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216073,8 +216073,8 @@ "land_district": "27", "legal_pid": "113295942", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-29T00:00:00Z", - "construction_end_date": "2016-08-29T00:00:00Z", + "construction_start_date": "2016-08-29", + "construction_end_date": "2016-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216180,8 +216180,8 @@ "land_district": "27", "legal_pid": "128869036", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-25T00:00:00Z", - "construction_end_date": "2016-08-26T00:00:00Z", + "construction_start_date": "2016-08-25", + "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216287,8 +216287,8 @@ "land_district": "27", "legal_pid": "107808984", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-23T00:00:00Z", - "construction_end_date": "2016-08-24T00:00:00Z", + "construction_start_date": "2016-08-23", + "construction_end_date": "2016-08-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216394,8 +216394,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROXIMATELY 2/3 UP DRIVE WAY, WELL LOCATED APPROXIMATELY 100 FEET RIGHT (SE) OF DRIVEWAY, DOWN IN DRAW", - "construction_start_date": "2015-09-22T00:00:00Z", - "construction_end_date": "2015-09-25T00:00:00Z", + "construction_start_date": "2015-09-22", + "construction_end_date": "2015-09-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216501,8 +216501,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "MOBILE HOME REG=75912. WELL LOCATION AT END OF DRIVEWAY APPROXIMATELY 100' FROM UPPER CORNER OF HOUSE.", - "construction_start_date": "2015-09-04T00:00:00Z", - "construction_end_date": "2015-09-15T00:00:00Z", + "construction_start_date": "2015-09-04", + "construction_end_date": "2015-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216608,8 +216608,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "SE Property line near powerpole", - "construction_start_date": "2017-01-27T00:00:00Z", - "construction_end_date": "2017-01-27T00:00:00Z", + "construction_start_date": "2017-01-27", + "construction_end_date": "2017-01-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216715,8 +216715,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "North of new layer barn", - "construction_start_date": "2017-01-25T00:00:00Z", - "construction_end_date": "2017-01-25T00:00:00Z", + "construction_start_date": "2017-01-25", + "construction_end_date": "2017-01-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216822,8 +216822,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 30' EAST OF MAIN ROAD. APPROXIMATELY 80' UP DRIVEWAY AND DIRECTLY ACROSS THE STREET FROM HOUSE AT 18056.", - "construction_start_date": "2015-08-18T00:00:00Z", - "construction_end_date": "2015-08-26T00:00:00Z", + "construction_start_date": "2015-08-18", + "construction_end_date": "2015-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -216929,8 +216929,8 @@ "land_district": "59", "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON UPPER CORNER OF LOT FACING OTTER AVENUE, TULAMEEN", - "construction_start_date": "2015-08-05T00:00:00Z", - "construction_end_date": "2015-08-05T00:00:00Z", + "construction_start_date": "2015-08-05", + "construction_end_date": "2015-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217036,8 +217036,8 @@ "land_district": "59", "legal_pid": "112917001", "well_location_description": "WELL IN FAR UPPER CORNER OF LOT OF OTTER AVE AND 6TH STREET, TULAMEEN", - "construction_start_date": "2015-08-04T00:00:00Z", - "construction_end_date": "2015-08-04T00:00:00Z", + "construction_start_date": "2015-08-04", + "construction_end_date": "2015-08-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217143,8 +217143,8 @@ "land_district": "59", "legal_pid": "123456789", "well_location_description": "WELL LOCATION ON UPPER CORNER OF LOT FACING OTTER AVENUE NEXT TO POWER POLE", - "construction_start_date": "2015-07-30T00:00:00Z", - "construction_end_date": "2015-07-30T00:00:00Z", + "construction_start_date": "2015-07-30", + "construction_end_date": "2015-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217250,8 +217250,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-06-15T00:00:00Z", - "construction_end_date": "2015-06-18T00:00:00Z", + "construction_start_date": "2015-06-15", + "construction_end_date": "2015-06-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217357,8 +217357,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON SOUTH SIDE OF LARGE SAWDUST PILE NEXT DOOR APPROXIMATELY 40 FEET FROM BERM ON SOUTHEAST CORNER OF PROPERTY (COMPOUND)", - "construction_start_date": "2015-07-24T00:00:00Z", - "construction_end_date": "2015-07-29T00:00:00Z", + "construction_start_date": "2015-07-24", + "construction_end_date": "2015-07-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217464,8 +217464,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED IN FRONT CENTRE OF LOT APPROXIMATELY 5 FEET FROM FENCE LINE", - "construction_start_date": "2015-07-16T00:00:00Z", - "construction_end_date": "2015-07-17T00:00:00Z", + "construction_start_date": "2015-07-16", + "construction_end_date": "2015-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217571,8 +217571,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION NORTHEAST OF CLUB HOUSE BESIDE POND APPROXIMATELY 40'", - "construction_start_date": "2015-07-02T00:00:00Z", - "construction_end_date": "2015-07-07T00:00:00Z", + "construction_start_date": "2015-07-02", + "construction_end_date": "2015-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217678,8 +217678,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION ON UPPER SOUTHEAST CORNER OF GOLF COURSE, APPROXIMATELY 15' FROM FENCE LINE", - "construction_start_date": "2015-06-25T00:00:00Z", - "construction_end_date": "2015-06-30T00:00:00Z", + "construction_start_date": "2015-06-25", + "construction_end_date": "2015-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217785,8 +217785,8 @@ "land_district": "53", "legal_pid": "110336397", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-01-12T00:00:00Z", - "construction_end_date": "2017-01-13T00:00:00Z", + "construction_start_date": "2017-01-12", + "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217892,8 +217892,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION ON FRONT CORNER OF BARN (HOUSE SIDE)", - "construction_start_date": "2015-06-10T00:00:00Z", - "construction_end_date": "2015-06-10T00:00:00Z", + "construction_start_date": "2015-06-10", + "construction_end_date": "2015-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -217999,8 +217999,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION IF FRONT YARD IN FRONT OF HOUSE IN APPROXIMATELY 30' FROM STREET IN CENTRE OF LOT", - "construction_start_date": "2015-06-03T00:00:00Z", - "construction_end_date": "2015-06-04T00:00:00Z", + "construction_start_date": "2015-06-03", + "construction_end_date": "2015-06-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218106,7 +218106,7 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED APPROXIMATELY 1/2 WAY UP SOUTHEAST FENCE LINE ON LEFT SIDE OF PROPERTY", - "construction_start_date": "2015-05-26T00:00:00Z", + "construction_start_date": "2015-05-26", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -218213,8 +218213,8 @@ "land_district": null, "legal_pid": "114964813", "well_location_description": "APPROXIMATELY 200 M NORTHEAST OF UPPER VINEYARD APPROXIMATELY 300 M EAST OF MAIN DRIVEWAY", - "construction_start_date": "2015-05-20T00:00:00Z", - "construction_end_date": "2015-05-25T00:00:00Z", + "construction_start_date": "2015-05-20", + "construction_end_date": "2015-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218320,8 +218320,8 @@ "land_district": "41", "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 50' NORTHEAST IN FRONT OF FRONT DOOR OF HOUSE IN APPROX ?? FROM PROPERTY LINE IN FRONT YEAR", - "construction_start_date": "2015-05-07T00:00:00Z", - "construction_end_date": "2015-05-08T00:00:00Z", + "construction_start_date": "2015-05-07", + "construction_end_date": "2015-05-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218534,8 +218534,8 @@ "land_district": "41", "legal_pid": "112622362", "well_location_description": "WELL LOCATION AT BOTTOM OF UPPER DRIVEWAY ON LEFT SIDE OF DRIVEWAY APPROXIMATELY CENTRE OF LOT", - "construction_start_date": "2014-12-18T00:00:00Z", - "construction_end_date": "2014-12-30T00:00:00Z", + "construction_start_date": "2014-12-18", + "construction_end_date": "2014-12-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218641,8 +218641,8 @@ "land_district": "41", "legal_pid": "109421301", "well_location_description": "WELL LOCATION APPROXIMATELY 50' SOUTHWEST OF FENCELINE AT END OF WATER POND AT LAST 2 ROWS OF GREEN HOUSES OFF OF BYLAND ROAD", - "construction_start_date": "2014-12-08T00:00:00Z", - "construction_end_date": "2014-12-16T00:00:00Z", + "construction_start_date": "2014-12-08", + "construction_end_date": "2014-12-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218748,8 +218748,8 @@ "land_district": "41", "legal_pid": "102892677", "well_location_description": "WELL LOCATED ON LEFT SIDE OF DRIVEWAY AT BOTTOM OF HILL NEXT TO CONTAINER SHOP", - "construction_start_date": "2014-11-17T00:00:00Z", - "construction_end_date": "2014-12-02T00:00:00Z", + "construction_start_date": "2014-11-17", + "construction_end_date": "2014-12-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218855,8 +218855,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL ON LOWER CORNER OF LOT WELL APPROXIMATELY 40' WEST OF ROAD AND 15' WEST AND 50' SOUTH OF PROPERTY MARKERS LOT AT THE END OF CARRE ROAD; 36414642001", - "construction_start_date": "2014-11-04T00:00:00Z", - "construction_end_date": "2014-11-07T00:00:00Z", + "construction_start_date": "2014-11-04", + "construction_end_date": "2014-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -218962,8 +218962,8 @@ "land_district": "25", "legal_pid": "111098261", "well_location_description": "WELL LOCATION APPROXIMATELY 100' EAST OF REAR OF HOUSE", - "construction_start_date": "2014-04-29T00:00:00Z", - "construction_end_date": "2014-05-01T00:00:00Z", + "construction_start_date": "2014-04-29", + "construction_end_date": "2014-05-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219069,8 +219069,8 @@ "land_district": "41", "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 100' WEST OF HOUSE (GREY) AT LOWER SIDE OF VINEYARD", - "construction_start_date": "2014-04-04T00:00:00Z", - "construction_end_date": "2014-04-07T00:00:00Z", + "construction_start_date": "2014-04-04", + "construction_end_date": "2014-04-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219176,8 +219176,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION IN CENTRE OF LOT IN FRONT OF HOUSE NEXT TO OTTER AVENUE", - "construction_start_date": "2015-05-01T00:00:00Z", - "construction_end_date": "2015-05-04T00:00:00Z", + "construction_start_date": "2015-05-01", + "construction_end_date": "2015-05-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219283,8 +219283,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROXIMATELY 5 KM SOUTH OF CAWSTON AND 1 KM SOUTH OF LOWER SIMILKAMEEN BAND OFFICE ON RIGHT SIDE OF HIGHWAY AT FAR END OF HAY FIELD PAST RED BARD", - "construction_start_date": "2015-03-30T00:00:00Z", - "construction_end_date": "2015-04-07T00:00:00Z", + "construction_start_date": "2015-03-30", + "construction_end_date": "2015-04-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219390,8 +219390,8 @@ "land_district": null, "legal_pid": "125386556", "well_location_description": "WELL LOCATED APPROXIMATELY 20' SW OF LOG HOUSE ON UPPER PART OF PROPERTY.", - "construction_start_date": "2014-02-04T00:00:00Z", - "construction_end_date": "2014-02-19T00:00:00Z", + "construction_start_date": "2014-02-04", + "construction_end_date": "2014-02-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219497,8 +219497,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED ON UPPER NORTHWEST CORNER OF LOT", - "construction_start_date": "2014-04-08T00:00:00Z", - "construction_end_date": "2014-04-15T00:00:00Z", + "construction_start_date": "2014-04-08", + "construction_end_date": "2014-04-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219604,8 +219604,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY CENTRE OF LOT ON UPPER BUILDING SITE ON UPPER CENTRE BACKSIDE OF DUG OUT SPOT FOR HOUSE", - "construction_start_date": "2015-05-30T00:00:00Z", - "construction_end_date": "2015-06-15T00:00:00Z", + "construction_start_date": "2015-05-30", + "construction_end_date": "2015-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219711,8 +219711,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED APPROXIMATELY 50' OFF REAR CORNER OF HOUSE IN FAR LEFT SIDE OF REAR YARD", - "construction_start_date": "2015-10-27T00:00:00Z", - "construction_end_date": "2015-10-29T00:00:00Z", + "construction_start_date": "2015-10-27", + "construction_end_date": "2015-10-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219818,8 +219818,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "27.5 KM MABLE LAKE ROAD SOUTH", - "construction_start_date": "2015-08-26T00:00:00Z", - "construction_end_date": "2015-08-26T00:00:00Z", + "construction_start_date": "2015-08-26", + "construction_end_date": "2015-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -219925,8 +219925,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL ON UPPER NORTHWEST OF HAYFIELD OFF HEMBRIE MOUNTAIN ROAD APPROXIMATELY 300' FROM ONE FENCELINE AND APPROXIMATELY 150' FROM OTHER", - "construction_start_date": "2015-04-24T00:00:00Z", - "construction_end_date": "2015-04-30T00:00:00Z", + "construction_start_date": "2015-04-24", + "construction_end_date": "2015-04-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220032,8 +220032,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "TOWARD LINK LAKE; WELL LOCATION APPROXIMATELY 80' SOUTHEAST OF REAR OF MOBILE HOME ON RIGHT SIDE OF DRIVEWAY", - "construction_start_date": "2015-11-04T00:00:00Z", - "construction_end_date": "2015-11-09T00:00:00Z", + "construction_start_date": "2015-11-04", + "construction_end_date": "2015-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220139,8 +220139,8 @@ "land_district": null, "legal_pid": "106536476", "well_location_description": "WELL LOCATION APPROXIMATELY 150' IN FROM ROAD ON UPPER NORTHWEST SIDE OF PROPERTY", - "construction_start_date": "2015-11-16T00:00:00Z", - "construction_end_date": "2015-11-20T00:00:00Z", + "construction_start_date": "2015-11-16", + "construction_end_date": "2015-11-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220246,8 +220246,8 @@ "land_district": "36", "legal_pid": "111094184", "well_location_description": "EXC: PT Subdivided by PL 42813", - "construction_start_date": "2014-08-12T00:00:00Z", - "construction_end_date": "2014-08-13T00:00:00Z", + "construction_start_date": "2014-08-12", + "construction_end_date": "2014-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220353,8 +220353,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 150' EAST OF HOUSE BETWEEN DRIVEWAYS NEXT TO OLD PUMPHOUSE", - "construction_start_date": "2015-11-10T00:00:00Z", - "construction_end_date": "2015-11-11T00:00:00Z", + "construction_start_date": "2015-11-10", + "construction_end_date": "2015-11-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220460,8 +220460,8 @@ "land_district": "59", "legal_pid": "112913847", "well_location_description": "WELL LOCATED IN VERY FRONT OF LOT APPROXIMATELY 4' FROM POWER POLE LOT AT END OF 4TH STREET AT BASE OF MOUNTAIN RIGHT SIDE", - "construction_start_date": "2015-11-02T00:00:00Z", - "construction_end_date": "2015-11-03T00:00:00Z", + "construction_start_date": "2015-11-02", + "construction_end_date": "2015-11-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220567,8 +220567,8 @@ "land_district": "59", "legal_pid": "106286895", "well_location_description": "WELL LOCATION ON FAR LEFT CORNER OF REAR OF LOT", - "construction_start_date": "2015-10-29T00:00:00Z", - "construction_end_date": "2015-10-30T00:00:00Z", + "construction_start_date": "2015-10-29", + "construction_end_date": "2015-10-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220674,8 +220674,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATED APPROXIMATELY 150M NORTH OF SHOP ON LEFT SIDE OF CART PATH (NEAR END OF CART PATH)", - "construction_start_date": "2015-10-16T00:00:00Z", - "construction_end_date": "2015-10-23T00:00:00Z", + "construction_start_date": "2015-10-16", + "construction_end_date": "2015-10-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220781,8 +220781,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WELL LOCATION APPROXIMATELY 3/4 UP DRIVEWAY ON LEFT HAND SIDE APPROXIMATELY 100' SOUTH OF HOUSE", - "construction_start_date": "2015-10-05T00:00:00Z", - "construction_end_date": "2015-10-09T00:00:00Z", + "construction_start_date": "2015-10-05", + "construction_end_date": "2015-10-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220888,8 +220888,8 @@ "land_district": "41", "legal_pid": "103239063", "well_location_description": "WELL LOCATION APPROXIMATELY 60' OFF LOWER SOUTHEAST CORNER OF HOUSE", - "construction_start_date": "2015-09-29T00:00:00Z", - "construction_end_date": "2015-09-30T00:00:00Z", + "construction_start_date": "2015-09-29", + "construction_end_date": "2015-09-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -220995,8 +220995,8 @@ "land_district": null, "legal_pid": "108695148", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2003-05-15T00:00:00Z", - "construction_end_date": "2003-05-15T00:00:00Z", + "construction_start_date": "2003-05-15", + "construction_end_date": "2003-05-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221102,8 +221102,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-02-02T00:00:00Z", - "construction_end_date": "2017-02-03T00:00:00Z", + "construction_start_date": "2017-02-02", + "construction_end_date": "2017-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221209,8 +221209,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-30T00:00:00Z", - "construction_end_date": "2017-01-31T00:00:00Z", + "construction_start_date": "2017-01-30", + "construction_end_date": "2017-01-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221316,8 +221316,8 @@ "land_district": null, "legal_pid": "126814668", "well_location_description": " ", - "construction_start_date": "2017-01-26T00:00:00Z", - "construction_end_date": "2017-01-30T00:00:00Z", + "construction_start_date": "2017-01-26", + "construction_end_date": "2017-01-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221423,8 +221423,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-25T00:00:00Z", - "construction_end_date": "2017-01-26T00:00:00Z", + "construction_start_date": "2017-01-25", + "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221530,8 +221530,8 @@ "land_district": null, "legal_pid": "128061527", "well_location_description": "BARE LOT", - "construction_start_date": "2017-01-25T00:00:00Z", - "construction_end_date": "2017-01-26T00:00:00Z", + "construction_start_date": "2017-01-25", + "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221637,8 +221637,8 @@ "land_district": null, "legal_pid": "112242306", "well_location_description": "*", - "construction_start_date": "2017-01-12T00:00:00Z", - "construction_end_date": "2017-01-24T00:00:00Z", + "construction_start_date": "2017-01-12", + "construction_end_date": "2017-01-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221744,8 +221744,8 @@ "land_district": null, "legal_pid": "128248911", "well_location_description": "BARE LOT", - "construction_start_date": "2017-01-16T00:00:00Z", - "construction_end_date": "2017-01-19T00:00:00Z", + "construction_start_date": "2017-01-16", + "construction_end_date": "2017-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221851,8 +221851,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-01-24T00:00:00Z", - "construction_end_date": "2017-02-01T00:00:00Z", + "construction_start_date": "2017-01-24", + "construction_end_date": "2017-02-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -221958,8 +221958,8 @@ "land_district": null, "legal_pid": "126027909", "well_location_description": "HAYNES CREEK AT HIGHWAY 3, OSOYOOS", - "construction_start_date": "2003-12-21T00:00:00Z", - "construction_end_date": "2003-12-31T00:00:00Z", + "construction_start_date": "2003-12-21", + "construction_end_date": "2003-12-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222065,8 +222065,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "1983-09-13T00:00:00Z", - "construction_end_date": "1983-09-16T00:00:00Z", + "construction_start_date": "1983-09-13", + "construction_end_date": "1983-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222172,8 +222172,8 @@ "land_district": null, "legal_pid": "116993314", "well_location_description": "BLUEBERRY RIVER IR (IR 205)", - "construction_start_date": "1992-03-16T00:00:00Z", - "construction_end_date": "1992-03-18T00:00:00Z", + "construction_start_date": "1992-03-16", + "construction_end_date": "1992-03-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222279,8 +222279,8 @@ "land_district": "44", "legal_pid": "114782758", "well_location_description": "W6W", - "construction_start_date": "2016-01-19T00:00:00Z", - "construction_end_date": "2016-01-19T00:00:00Z", + "construction_start_date": "2016-01-19", + "construction_end_date": "2016-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222386,8 +222386,8 @@ "land_district": "44", "legal_pid": "114782758", "well_location_description": "W6W", - "construction_start_date": "2016-01-19T00:00:00Z", - "construction_end_date": "2016-01-19T00:00:00Z", + "construction_start_date": "2016-01-19", + "construction_end_date": "2016-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222493,8 +222493,8 @@ "land_district": "44", "legal_pid": "114782758", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-01-19T00:00:00Z", - "construction_end_date": "2016-01-19T00:00:00Z", + "construction_start_date": "2016-01-19", + "construction_end_date": "2016-01-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222600,8 +222600,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "CHEVRON PATRY D-28-B/094-0-12 WELLSITE", - "construction_start_date": "2015-11-18T00:00:00Z", - "construction_end_date": "2015-11-25T00:00:00Z", + "construction_start_date": "2015-11-18", + "construction_end_date": "2015-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222814,8 +222814,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "CHEVRON PATRY D-28-B/094-0-12 WELLSITE", - "construction_start_date": "2015-11-11T00:00:00Z", - "construction_end_date": "2015-12-14T00:00:00Z", + "construction_start_date": "2015-11-11", + "construction_end_date": "2015-12-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -222921,8 +222921,8 @@ "land_district": "49", "legal_pid": "128916930", "well_location_description": " ", - "construction_start_date": "1988-05-06T00:00:00Z", - "construction_end_date": "1988-05-06T00:00:00Z", + "construction_start_date": "1988-05-06", + "construction_end_date": "1988-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -223028,8 +223028,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2000-06-07T00:00:00Z", - "construction_end_date": "2000-06-07T00:00:00Z", + "construction_start_date": "2000-06-07", + "construction_end_date": "2000-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -223135,8 +223135,8 @@ "land_district": "44", "legal_pid": "114815079", "well_location_description": "W6M", - "construction_start_date": "2000-08-06T00:00:00Z", - "construction_end_date": "2000-08-06T00:00:00Z", + "construction_start_date": "2000-08-06", + "construction_end_date": "2000-08-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -223242,8 +223242,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "D-38-C/94P8; MINERAL TITLES GRID (094P08D038C)", - "construction_start_date": "2005-03-07T00:00:00Z", - "construction_end_date": "2005-03-07T00:00:00Z", + "construction_start_date": "2005-03-07", + "construction_end_date": "2005-03-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -223353,8 +223353,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-18T00:00:00Z", - "decommission_end_date": "2016-03-18T00:00:00Z", + "decommission_start_date": "2016-03-18", + "decommission_end_date": "2016-03-18", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.23", @@ -223460,8 +223460,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-08-03T00:00:00Z", - "decommission_end_date": "2016-08-03T00:00:00Z", + "decommission_start_date": "2016-08-03", + "decommission_end_date": "2016-08-03", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.23", @@ -223567,8 +223567,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-07-04T00:00:00Z", - "decommission_end_date": "2016-07-04T00:00:00Z", + "decommission_start_date": "2016-07-04", + "decommission_end_date": "2016-07-04", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.29", @@ -223674,8 +223674,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2001-06-02T00:00:00Z", - "decommission_end_date": "2001-06-02T00:00:00Z", + "decommission_start_date": "2001-06-02", + "decommission_end_date": "2001-06-02", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.28", @@ -223781,8 +223781,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-12-14T00:00:00Z", - "decommission_end_date": "2016-12-14T00:00:00Z", + "decommission_start_date": "2016-12-14", + "decommission_end_date": "2016-12-14", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.22", @@ -223888,8 +223888,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-12-14T00:00:00Z", - "decommission_end_date": "2016-12-14T00:00:00Z", + "decommission_start_date": "2016-12-14", + "decommission_end_date": "2016-12-14", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.29", @@ -223991,12 +223991,12 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-26T00:00:00Z", - "construction_end_date": "2016-03-26T00:00:00Z", + "construction_start_date": "2016-03-26", + "construction_end_date": "2016-03-26", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-26T00:00:00Z", - "decommission_end_date": "2016-03-28T00:00:00Z", + "decommission_start_date": "2016-03-26", + "decommission_end_date": "2016-03-28", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.22", @@ -224098,12 +224098,12 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LAND DISTRICT=W6", - "construction_start_date": "2016-03-06T00:00:00Z", - "construction_end_date": "2016-03-06T00:00:00Z", + "construction_start_date": "2016-03-06", + "construction_end_date": "2016-03-06", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-06T00:00:00Z", - "decommission_end_date": "2016-03-08T00:00:00Z", + "decommission_start_date": "2016-03-06", + "decommission_end_date": "2016-03-08", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.26", @@ -224205,12 +224205,12 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-25T00:00:00Z", - "construction_end_date": "2016-03-25T00:00:00Z", + "construction_start_date": "2016-03-25", + "construction_end_date": "2016-03-25", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-25T00:00:00Z", - "decommission_end_date": "2016-03-25T00:00:00Z", + "decommission_start_date": "2016-03-25", + "decommission_end_date": "2016-03-25", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.20", @@ -224312,12 +224312,12 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-21T00:00:00Z", - "construction_end_date": "2016-03-24T00:00:00Z", + "construction_start_date": "2016-03-21", + "construction_end_date": "2016-03-24", "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-21T00:00:00Z", - "decommission_end_date": "2016-03-24T00:00:00Z", + "decommission_start_date": "2016-03-21", + "decommission_end_date": "2016-03-24", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.26", @@ -224423,8 +224423,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-09-15T00:00:00Z", - "decommission_end_date": "2015-09-15T00:00:00Z", + "decommission_start_date": "2015-09-15", + "decommission_end_date": "2015-09-15", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.25", @@ -224530,8 +224530,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-09-10T00:00:00Z", - "decommission_end_date": "2015-09-10T00:00:00Z", + "decommission_start_date": "2015-09-10", + "decommission_end_date": "2015-09-10", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.25", @@ -224637,8 +224637,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-09-28T00:00:00Z", - "decommission_end_date": "2015-09-28T00:00:00Z", + "decommission_start_date": "2015-09-28", + "decommission_end_date": "2015-09-28", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.24", @@ -224744,8 +224744,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-11-23T00:00:00Z", - "decommission_end_date": "2015-11-23T00:00:00Z", + "decommission_start_date": "2015-11-23", + "decommission_end_date": "2015-11-23", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.28", @@ -224851,8 +224851,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-04-05T00:00:00Z", - "decommission_end_date": "2016-04-05T00:00:00Z", + "decommission_start_date": "2016-04-05", + "decommission_end_date": "2016-04-05", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.23", @@ -224958,8 +224958,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-29T00:00:00Z", - "decommission_end_date": "2016-03-29T00:00:00Z", + "decommission_start_date": "2016-03-29", + "decommission_end_date": "2016-03-29", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.25", @@ -225065,8 +225065,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-05-20T00:00:00Z", - "decommission_end_date": "2016-05-20T00:00:00Z", + "decommission_start_date": "2016-05-20", + "decommission_end_date": "2016-05-20", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.28", @@ -225172,8 +225172,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-04-05T00:00:00Z", - "decommission_end_date": "2016-04-05T00:00:00Z", + "decommission_start_date": "2016-04-05", + "decommission_end_date": "2016-04-05", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.21", @@ -225279,8 +225279,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-07-25T00:00:00Z", - "decommission_end_date": "2016-07-25T00:00:00Z", + "decommission_start_date": "2016-07-25", + "decommission_end_date": "2016-07-25", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.27", @@ -225386,8 +225386,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-07-25T00:00:00Z", - "decommission_end_date": "2016-07-25T00:00:00Z", + "decommission_start_date": "2016-07-25", + "decommission_end_date": "2016-07-25", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.24", @@ -225493,8 +225493,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-03-29T00:00:00Z", - "decommission_end_date": "2016-03-29T00:00:00Z", + "decommission_start_date": "2016-03-29", + "decommission_end_date": "2016-03-29", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.23", @@ -225600,8 +225600,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2015-12-07T00:00:00Z", - "decommission_end_date": "2015-12-09T00:00:00Z", + "decommission_start_date": "2015-12-07", + "decommission_end_date": "2015-12-09", "drilling_company": null, "well_identification_plate_attached": null, "latitude": "49.25", @@ -225703,8 +225703,8 @@ "land_district": "25", "legal_pid": "112929298", "well_location_description": "260m East of Deep Creek Road, 250m West of Deep Creek", - "construction_start_date": "2004-03-29T00:00:00Z", - "construction_end_date": "2004-03-30T00:00:00Z", + "construction_start_date": "2004-03-29", + "construction_end_date": "2004-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -225810,8 +225810,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on operations side", - "construction_start_date": "2017-02-10T00:00:00Z", - "construction_end_date": "2017-02-13T00:00:00Z", + "construction_start_date": "2017-02-10", + "construction_end_date": "2017-02-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -225917,8 +225917,8 @@ "land_district": "06", "legal_pid": "123456789", "well_location_description": "500m south of Alaska Highway, 630m north of Lower Post Access Road", - "construction_start_date": "2012-11-09T00:00:00Z", - "construction_end_date": "2012-11-09T00:00:00Z", + "construction_start_date": "2012-11-09", + "construction_end_date": "2012-11-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226024,8 +226024,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-05-15T00:00:00Z", - "construction_end_date": "2015-05-15T00:00:00Z", + "construction_start_date": "2015-05-15", + "construction_end_date": "2015-05-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226238,8 +226238,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "PARKING LOT", - "construction_start_date": "2017-02-10T00:00:00Z", - "construction_end_date": "2017-02-14T00:00:00Z", + "construction_start_date": "2017-02-10", + "construction_end_date": "2017-02-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226345,8 +226345,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2014-03-31T00:00:00Z", - "construction_end_date": "2014-04-02T00:00:00Z", + "construction_start_date": "2014-03-31", + "construction_end_date": "2014-04-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226452,8 +226452,8 @@ "land_district": "66", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-01-24T00:00:00Z", - "construction_end_date": "2017-01-26T00:00:00Z", + "construction_start_date": "2017-01-24", + "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226559,8 +226559,8 @@ "land_district": "66", "legal_pid": "100968935", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-01-27T00:00:00Z", - "construction_end_date": "2017-01-27T00:00:00Z", + "construction_start_date": "2017-01-27", + "construction_end_date": "2017-01-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226666,8 +226666,8 @@ "land_district": "16", "legal_pid": "105545510", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-01T00:00:00Z", - "construction_end_date": "2017-02-03T00:00:00Z", + "construction_start_date": "2017-02-01", + "construction_end_date": "2017-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226773,8 +226773,8 @@ "land_district": "30", "legal_pid": "100844004", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-10T00:00:00Z", - "construction_end_date": "2017-02-14T00:00:00Z", + "construction_start_date": "2017-02-10", + "construction_end_date": "2017-02-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226880,8 +226880,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside pumphouse, NW corner.", - "construction_start_date": "2017-02-22T00:00:00Z", - "construction_end_date": "2017-02-22T00:00:00Z", + "construction_start_date": "2017-02-22", + "construction_end_date": "2017-02-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -226987,8 +226987,8 @@ "land_district": "36", "legal_pid": "129076242", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-11-22T00:00:00Z", - "construction_end_date": "2017-01-13T00:00:00Z", + "construction_start_date": "2016-11-22", + "construction_end_date": "2017-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227094,8 +227094,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "IR #5", - "construction_start_date": "2015-10-13T00:00:00Z", - "construction_end_date": "2015-10-15T00:00:00Z", + "construction_start_date": "2015-10-13", + "construction_end_date": "2015-10-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227201,8 +227201,8 @@ "land_district": "42", "legal_pid": "109497731", "well_location_description": "WELL #6 IN SUBDIV", - "construction_start_date": "2015-11-05T00:00:00Z", - "construction_end_date": "2015-11-06T00:00:00Z", + "construction_start_date": "2015-11-05", + "construction_end_date": "2015-11-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227308,8 +227308,8 @@ "land_district": "42", "legal_pid": "109497731", "well_location_description": "WELL #2 IN SUBDIV", - "construction_start_date": "2015-10-16T00:00:00Z", - "construction_end_date": "2015-10-19T00:00:00Z", + "construction_start_date": "2015-10-16", + "construction_end_date": "2015-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227415,8 +227415,8 @@ "land_district": "42", "legal_pid": "109497731", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-03-08T00:00:00Z", - "construction_end_date": "2016-03-17T00:00:00Z", + "construction_start_date": "2016-03-08", + "construction_end_date": "2016-03-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227522,8 +227522,8 @@ "land_district": "33", "legal_pid": "123456789", "well_location_description": "Parcel A of Lot B.", - "construction_start_date": "2016-11-10T00:00:00Z", - "construction_end_date": "2016-11-14T00:00:00Z", + "construction_start_date": "2016-11-10", + "construction_end_date": "2016-11-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227629,8 +227629,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside driveway south of house", - "construction_start_date": "2017-02-23T00:00:00Z", - "construction_end_date": "2017-02-23T00:00:00Z", + "construction_start_date": "2017-02-23", + "construction_end_date": "2017-02-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227736,8 +227736,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BETWEEN THE TWO WEST FASTBALL DIAMONDS", - "construction_start_date": "2006-10-05T00:00:00Z", - "construction_end_date": "2006-10-11T00:00:00Z", + "construction_start_date": "2006-10-05", + "construction_end_date": "2006-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227843,8 +227843,8 @@ "land_district": "47", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-12-09T00:00:00Z", - "construction_end_date": "2016-12-14T00:00:00Z", + "construction_start_date": "2016-12-09", + "construction_end_date": "2016-12-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -227950,8 +227950,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", - "construction_start_date": "2017-02-20T00:00:00Z", - "construction_end_date": "2017-02-25T00:00:00Z", + "construction_start_date": "2017-02-20", + "construction_end_date": "2017-02-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228057,8 +228057,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-02-20T00:00:00Z", - "construction_end_date": "2017-02-21T00:00:00Z", + "construction_start_date": "2017-02-20", + "construction_end_date": "2017-02-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228164,8 +228164,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-03T00:00:00Z", - "construction_end_date": "2017-01-05T00:00:00Z", + "construction_start_date": "2017-01-03", + "construction_end_date": "2017-01-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228271,8 +228271,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-05T00:00:00Z", - "construction_end_date": "2017-01-06T00:00:00Z", + "construction_start_date": "2017-01-05", + "construction_end_date": "2017-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228378,8 +228378,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-11T00:00:00Z", - "construction_end_date": "2017-01-18T00:00:00Z", + "construction_start_date": "2017-01-11", + "construction_end_date": "2017-01-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228485,8 +228485,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-24T00:00:00Z", - "construction_end_date": "2017-01-26T00:00:00Z", + "construction_start_date": "2017-01-24", + "construction_end_date": "2017-01-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228592,8 +228592,8 @@ "land_district": "26", "legal_pid": "127833089", "well_location_description": "Highway 95A PL 88635 DL 11579 KD", - "construction_start_date": "2012-08-21T00:00:00Z", - "construction_end_date": "2012-08-22T00:00:00Z", + "construction_start_date": "2012-08-21", + "construction_end_date": "2012-08-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228699,8 +228699,8 @@ "land_district": "42", "legal_pid": "109497731", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2015-11-24T00:00:00Z", - "construction_end_date": "2015-11-30T00:00:00Z", + "construction_start_date": "2015-11-24", + "construction_end_date": "2015-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228806,8 +228806,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-03-23T00:00:00Z", - "construction_end_date": "2016-03-24T00:00:00Z", + "construction_start_date": "2016-03-23", + "construction_end_date": "2016-03-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -228913,8 +228913,8 @@ "land_district": "33", "legal_pid": "100060097", "well_location_description": "WELL # 7, 2015", - "construction_start_date": "2015-07-24T00:00:00Z", - "construction_end_date": "2015-07-30T00:00:00Z", + "construction_start_date": "2015-07-24", + "construction_end_date": "2015-07-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229020,8 +229020,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2015-11-04T00:00:00Z", - "construction_end_date": "2015-11-06T00:00:00Z", + "construction_start_date": "2015-11-04", + "construction_end_date": "2015-11-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229127,8 +229127,8 @@ "land_district": "50", "legal_pid": "100038831", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-07-14T00:00:00Z", - "construction_end_date": "2016-07-15T00:00:00Z", + "construction_start_date": "2016-07-14", + "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229234,8 +229234,8 @@ "land_district": "11", "legal_pid": "123456789", "well_location_description": "KATIT INDIAN RESERVE #1, RIVERS INLET", - "construction_start_date": "2016-05-10T00:00:00Z", - "construction_end_date": "2016-05-12T00:00:00Z", + "construction_start_date": "2016-05-10", + "construction_end_date": "2016-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229341,8 +229341,8 @@ "land_district": "40", "legal_pid": "124473499", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-16T00:00:00Z", - "construction_end_date": "2017-02-21T00:00:00Z", + "construction_start_date": "2017-02-16", + "construction_end_date": "2017-02-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229448,8 +229448,8 @@ "land_district": "24", "legal_pid": "101548751", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-22T00:00:00Z", - "construction_end_date": "2017-02-23T00:00:00Z", + "construction_start_date": "2017-02-22", + "construction_end_date": "2017-02-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229555,8 +229555,8 @@ "land_district": "16", "legal_pid": "106009620", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-27T00:00:00Z", - "construction_end_date": "2017-02-28T00:00:00Z", + "construction_start_date": "2017-02-27", + "construction_end_date": "2017-02-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229662,8 +229662,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-16T00:00:00Z", - "construction_end_date": "2017-02-17T00:00:00Z", + "construction_start_date": "2017-02-16", + "construction_end_date": "2017-02-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229769,8 +229769,8 @@ "land_district": "53", "legal_pid": "116471733", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-20T00:00:00Z", - "construction_end_date": "2017-02-22T00:00:00Z", + "construction_start_date": "2017-02-20", + "construction_end_date": "2017-02-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229876,8 +229876,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "mine operations", - "construction_start_date": "2017-03-07T00:00:00Z", - "construction_end_date": "2017-03-08T00:00:00Z", + "construction_start_date": "2017-03-07", + "construction_end_date": "2017-03-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -229983,8 +229983,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-03-10T00:00:00Z", - "construction_end_date": "2017-03-11T00:00:00Z", + "construction_start_date": "2017-03-10", + "construction_end_date": "2017-03-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230090,8 +230090,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "CORNER OF FIELD", - "construction_start_date": "2017-03-02T00:00:00Z", - "construction_end_date": "2017-03-06T00:00:00Z", + "construction_start_date": "2017-03-02", + "construction_end_date": "2017-03-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230197,8 +230197,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NORTH OF BUILDING", - "construction_start_date": "2017-02-20T00:00:00Z", - "construction_end_date": "2017-03-01T00:00:00Z", + "construction_start_date": "2017-02-20", + "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230304,8 +230304,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-02-27T00:00:00Z", - "construction_end_date": "2017-03-01T00:00:00Z", + "construction_start_date": "2017-02-27", + "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230411,8 +230411,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", - "construction_start_date": "2017-02-27T00:00:00Z", - "construction_end_date": "2017-03-01T00:00:00Z", + "construction_start_date": "2017-02-27", + "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230518,8 +230518,8 @@ "land_district": "23", "legal_pid": "106410014", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-02-27T00:00:00Z", - "construction_end_date": "2017-03-01T00:00:00Z", + "construction_start_date": "2017-02-27", + "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230625,8 +230625,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Fadden Road 25 meters East of Fadden Road", - "construction_start_date": "2017-03-21T00:00:00Z", - "construction_end_date": "2017-03-21T00:00:00Z", + "construction_start_date": "2017-03-21", + "construction_end_date": "2017-03-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230733,7 +230733,7 @@ "legal_pid": "105260361", "well_location_description": "NORTHEAST CORNER OF BRADFORD PARK IN THE DISTRICT OF BARRIERE", "construction_start_date": null, - "construction_end_date": "2017-01-14T00:00:00Z", + "construction_end_date": "2017-01-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230839,8 +230839,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "MINE OPS", - "construction_start_date": "2017-01-13T00:00:00Z", - "construction_end_date": "2017-03-13T00:00:00Z", + "construction_start_date": "2017-01-13", + "construction_end_date": "2017-03-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -230946,8 +230946,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "A545/94A12", - "construction_start_date": "2016-11-29T00:00:00Z", - "construction_end_date": "2016-11-30T00:00:00Z", + "construction_start_date": "2016-11-29", + "construction_end_date": "2016-11-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231053,8 +231053,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "A-54-5/94-A-12", - "construction_start_date": "2016-11-30T00:00:00Z", - "construction_end_date": "2016-12-01T00:00:00Z", + "construction_start_date": "2016-11-30", + "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231160,8 +231160,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "A-54-5-94-A-12; MILE 100, OFF THE ALASKA HIGHWAY, LEFT SIDE OF HWY", - "construction_start_date": "2016-09-22T00:00:00Z", - "construction_end_date": "2016-09-23T00:00:00Z", + "construction_start_date": "2016-09-22", + "construction_end_date": "2016-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231267,8 +231267,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "20ft behind shop", - "construction_start_date": "2017-03-16T00:00:00Z", - "construction_end_date": "2017-03-16T00:00:00Z", + "construction_start_date": "2017-03-16", + "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231374,8 +231374,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-14T00:00:00Z", - "construction_end_date": "2016-09-16T00:00:00Z", + "construction_start_date": "2016-09-14", + "construction_end_date": "2016-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231481,8 +231481,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "12-36-87-23-W6", - "construction_start_date": "2017-01-03T00:00:00Z", - "construction_end_date": "2017-01-03T00:00:00Z", + "construction_start_date": "2017-01-03", + "construction_end_date": "2017-01-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231588,8 +231588,8 @@ "land_district": "15", "legal_pid": "114863898", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-09T00:00:00Z", - "construction_end_date": "2017-03-10T00:00:00Z", + "construction_start_date": "2017-03-09", + "construction_end_date": "2017-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231695,8 +231695,8 @@ "land_district": null, "legal_pid": "100000000", "well_location_description": "16-20-87-22-W6", - "construction_start_date": "2016-12-20T00:00:00Z", - "construction_end_date": "2016-12-21T00:00:00Z", + "construction_start_date": "2016-12-20", + "construction_end_date": "2016-12-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231802,8 +231802,8 @@ "land_district": null, "legal_pid": "100000000", "well_location_description": "16-20-87-22-W6", - "construction_start_date": "2016-12-21T00:00:00Z", - "construction_end_date": "2016-12-21T00:00:00Z", + "construction_start_date": "2016-12-21", + "construction_end_date": "2016-12-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -231909,8 +231909,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-25T00:00:00Z", - "construction_end_date": "2016-10-26T00:00:00Z", + "construction_start_date": "2016-10-25", + "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232016,8 +232016,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-18T00:00:00Z", - "construction_end_date": "2016-10-20T00:00:00Z", + "construction_start_date": "2016-10-18", + "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232123,8 +232123,8 @@ "land_district": "17", "legal_pid": "129748020", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-14T00:00:00Z", - "construction_end_date": "2017-03-17T00:00:00Z", + "construction_start_date": "2017-03-14", + "construction_end_date": "2017-03-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232230,8 +232230,8 @@ "land_district": null, "legal_pid": "100000000", "well_location_description": "MILE 543 ALASKA HIGHWAY, BUILDING NUMBER 7100, MAINTENANCE CAMP", - "construction_start_date": "2016-10-12T00:00:00Z", - "construction_end_date": "2016-10-13T00:00:00Z", + "construction_start_date": "2016-10-12", + "construction_end_date": "2016-10-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232337,8 +232337,8 @@ "land_district": "19", "legal_pid": "128787439", "well_location_description": "NOTHING ENTERED ", - "construction_start_date": "2017-03-15T00:00:00Z", - "construction_end_date": "2017-03-16T00:00:00Z", + "construction_start_date": "2017-03-15", + "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232444,8 +232444,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside Pump", - "construction_start_date": "2017-03-17T00:00:00Z", - "construction_end_date": "2017-03-17T00:00:00Z", + "construction_start_date": "2017-03-17", + "construction_end_date": "2017-03-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232551,8 +232551,8 @@ "land_district": null, "legal_pid": "100000000", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-09T00:00:00Z", - "construction_end_date": "2016-09-10T00:00:00Z", + "construction_start_date": "2016-09-09", + "construction_end_date": "2016-09-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232658,8 +232658,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-22T00:00:00Z", - "construction_end_date": "2016-07-22T00:00:00Z", + "construction_start_date": "2016-07-22", + "construction_end_date": "2016-07-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232765,8 +232765,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-25T00:00:00Z", - "construction_end_date": "2016-05-27T00:00:00Z", + "construction_start_date": "2016-05-25", + "construction_end_date": "2016-05-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232872,8 +232872,8 @@ "land_district": null, "legal_pid": "100000000", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-28T00:00:00Z", - "construction_end_date": "2016-07-29T00:00:00Z", + "construction_start_date": "2016-07-28", + "construction_end_date": "2016-07-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -232979,8 +232979,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-02T00:00:00Z", - "construction_end_date": "2016-08-02T00:00:00Z", + "construction_start_date": "2016-08-02", + "construction_end_date": "2016-08-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233086,8 +233086,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-05T00:00:00Z", - "construction_end_date": "2016-08-05T00:00:00Z", + "construction_start_date": "2016-08-05", + "construction_end_date": "2016-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233193,8 +233193,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-11T00:00:00Z", - "construction_end_date": "2016-08-11T00:00:00Z", + "construction_start_date": "2016-08-11", + "construction_end_date": "2016-08-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233300,8 +233300,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-16T00:00:00Z", - "construction_end_date": "2016-08-16T00:00:00Z", + "construction_start_date": "2016-08-16", + "construction_end_date": "2016-08-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233407,8 +233407,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-18T00:00:00Z", - "construction_end_date": "2016-08-18T00:00:00Z", + "construction_start_date": "2016-08-18", + "construction_end_date": "2016-08-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233514,8 +233514,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-01T00:00:00Z", - "construction_end_date": "2016-08-01T00:00:00Z", + "construction_start_date": "2016-08-01", + "construction_end_date": "2016-08-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233621,8 +233621,8 @@ "land_district": "50", "legal_pid": "109850741", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-08T00:00:00Z", - "construction_end_date": "2017-03-09T00:00:00Z", + "construction_start_date": "2017-03-08", + "construction_end_date": "2017-03-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233728,8 +233728,8 @@ "land_district": null, "legal_pid": "100000000", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-25T00:00:00Z", - "construction_end_date": "2016-08-26T00:00:00Z", + "construction_start_date": "2016-08-25", + "construction_end_date": "2016-08-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233835,8 +233835,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-11T00:00:00Z", - "construction_end_date": "2016-07-11T00:00:00Z", + "construction_start_date": "2016-07-11", + "construction_end_date": "2016-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -233942,8 +233942,8 @@ "land_district": "50", "legal_pid": "109850741", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-09T00:00:00Z", - "construction_end_date": "2017-03-09T00:00:00Z", + "construction_start_date": "2017-03-09", + "construction_end_date": "2017-03-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234049,8 +234049,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-07-19T00:00:00Z", - "construction_end_date": "2016-07-20T00:00:00Z", + "construction_start_date": "2016-07-19", + "construction_end_date": "2016-07-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234156,8 +234156,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-10T00:00:00Z", - "construction_end_date": "2016-06-14T00:00:00Z", + "construction_start_date": "2016-06-10", + "construction_end_date": "2016-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234263,8 +234263,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-22T00:00:00Z", - "construction_end_date": "2016-06-28T00:00:00Z", + "construction_start_date": "2016-06-22", + "construction_end_date": "2016-06-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234370,8 +234370,8 @@ "land_district": null, "legal_pid": "113363913", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-29T00:00:00Z", - "construction_end_date": "2016-06-30T00:00:00Z", + "construction_start_date": "2016-06-29", + "construction_end_date": "2016-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234477,8 +234477,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-30T00:00:00Z", - "construction_end_date": "2016-06-30T00:00:00Z", + "construction_start_date": "2016-06-30", + "construction_end_date": "2016-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234584,8 +234584,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "90 FEET NORTH OF GYM", - "construction_start_date": "2016-12-02T00:00:00Z", - "construction_end_date": "2016-12-06T00:00:00Z", + "construction_start_date": "2016-12-02", + "construction_end_date": "2016-12-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234691,8 +234691,8 @@ "land_district": "41", "legal_pid": "123456789", "well_location_description": "LOT 3 OF PROPOSED SUBDIVISION OF PART OF THE S 1/2 OF THE SW 1/4 SEC 31 TP.S., ", - "construction_start_date": "2016-11-23T00:00:00Z", - "construction_end_date": "2016-11-25T00:00:00Z", + "construction_start_date": "2016-11-23", + "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234798,8 +234798,8 @@ "land_district": null, "legal_pid": "112593681", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-02T00:00:00Z", - "construction_end_date": "2016-11-12T00:00:00Z", + "construction_start_date": "2016-11-02", + "construction_end_date": "2016-11-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -234905,8 +234905,8 @@ "land_district": null, "legal_pid": "118138837", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-09T00:00:00Z", - "construction_end_date": "2016-11-15T00:00:00Z", + "construction_start_date": "2016-11-09", + "construction_end_date": "2016-11-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235012,8 +235012,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "13 KM TUNKWA LAKE ROAD, SOUTH OF CORRALS", - "construction_start_date": "2016-10-12T00:00:00Z", - "construction_end_date": "2016-10-13T00:00:00Z", + "construction_start_date": "2016-10-12", + "construction_end_date": "2016-10-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235119,8 +235119,8 @@ "land_district": null, "legal_pid": "114015862", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-17T00:00:00Z", - "construction_end_date": "2016-10-19T00:00:00Z", + "construction_start_date": "2016-10-17", + "construction_end_date": "2016-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235226,8 +235226,8 @@ "land_district": null, "legal_pid": "108812748", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-29T00:00:00Z", - "construction_end_date": "2016-10-06T00:00:00Z", + "construction_start_date": "2016-09-29", + "construction_end_date": "2016-10-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235333,8 +235333,8 @@ "land_district": "41", "legal_pid": "123456789", "well_location_description": "LOT 2 OF PROPOSED SUBDIVISION OF PART OF THE S 1/2 OF THE SW 1/4", - "construction_start_date": "2016-09-22T00:00:00Z", - "construction_end_date": "2016-09-23T00:00:00Z", + "construction_start_date": "2016-09-22", + "construction_end_date": "2016-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235440,8 +235440,8 @@ "land_district": null, "legal_pid": "005337879", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-07T00:00:00Z", - "construction_end_date": "2016-10-11T00:00:00Z", + "construction_start_date": "2016-10-07", + "construction_end_date": "2016-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235547,8 +235547,8 @@ "land_district": null, "legal_pid": "128874331", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-14T00:00:00Z", - "construction_end_date": "2016-09-14T00:00:00Z", + "construction_start_date": "2016-09-14", + "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235654,8 +235654,8 @@ "land_district": null, "legal_pid": "118549110", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-15T00:00:00Z", - "construction_end_date": "2016-09-21T00:00:00Z", + "construction_start_date": "2016-09-15", + "construction_end_date": "2016-09-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235761,8 +235761,8 @@ "land_district": null, "legal_pid": "114131064", "well_location_description": "W 1/2 SE 1/4 W6M", - "construction_start_date": "2016-08-22T00:00:00Z", - "construction_end_date": "2016-08-25T00:00:00Z", + "construction_start_date": "2016-08-22", + "construction_end_date": "2016-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235868,8 +235868,8 @@ "land_district": null, "legal_pid": "105712700", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-13T00:00:00Z", - "construction_end_date": "2016-08-16T00:00:00Z", + "construction_start_date": "2016-08-13", + "construction_end_date": "2016-08-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -235975,8 +235975,8 @@ "land_district": null, "legal_pid": "113571541", "well_location_description": "5 ACRES TO BE SUBDIVIDED ACROSS MCLENNAN ROAD FROM 8125", - "construction_start_date": "2016-08-17T00:00:00Z", - "construction_end_date": "2016-08-20T00:00:00Z", + "construction_start_date": "2016-08-17", + "construction_end_date": "2016-08-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236082,8 +236082,8 @@ "land_district": null, "legal_pid": "111217111", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-09T00:00:00Z", - "construction_end_date": "2016-09-13T00:00:00Z", + "construction_start_date": "2016-09-09", + "construction_end_date": "2016-09-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236189,8 +236189,8 @@ "land_district": null, "legal_pid": "113887572", "well_location_description": "PROPOSED ADDRESS NUMBER 9044", - "construction_start_date": "2016-08-31T00:00:00Z", - "construction_end_date": "2016-09-02T00:00:00Z", + "construction_start_date": "2016-08-31", + "construction_end_date": "2016-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236296,8 +236296,8 @@ "land_district": null, "legal_pid": "113887572", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-07T00:00:00Z", - "construction_end_date": "2016-09-08T00:00:00Z", + "construction_start_date": "2016-09-07", + "construction_end_date": "2016-09-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236407,8 +236407,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-08-29T00:00:00Z", - "decommission_end_date": "2016-08-30T00:00:00Z", + "decommission_start_date": "2016-08-29", + "decommission_end_date": "2016-08-30", "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": null, "latitude": "49.26", @@ -236514,8 +236514,8 @@ "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, - "decommission_start_date": "2016-09-12T00:00:00Z", - "decommission_end_date": "2016-09-13T00:00:00Z", + "decommission_start_date": "2016-09-12", + "decommission_end_date": "2016-09-13", "drilling_company": "2712ba2d-a153-4157-8580-efa0a8407608", "well_identification_plate_attached": null, "latitude": "49.29", @@ -236617,8 +236617,8 @@ "land_district": "14", "legal_pid": "114290995", "well_location_description": " ", - "construction_start_date": "2016-10-26T00:00:00Z", - "construction_end_date": "2016-10-27T00:00:00Z", + "construction_start_date": "2016-10-26", + "construction_end_date": "2016-10-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236724,8 +236724,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "SOUTH EAST CORNER", - "construction_start_date": "2017-03-26T00:00:00Z", - "construction_end_date": "2017-03-26T00:00:00Z", + "construction_start_date": "2017-03-26", + "construction_end_date": "2017-03-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236831,8 +236831,8 @@ "land_district": "14", "legal_pid": "106611834", "well_location_description": " ", - "construction_start_date": "2015-01-26T00:00:00Z", - "construction_end_date": "2015-01-27T00:00:00Z", + "construction_start_date": "2015-01-26", + "construction_end_date": "2015-01-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -236938,8 +236938,8 @@ "land_district": "14", "legal_pid": "128857925", "well_location_description": "JACK PINE FLATS", - "construction_start_date": "2015-04-07T00:00:00Z", - "construction_end_date": "2015-04-08T00:00:00Z", + "construction_start_date": "2015-04-07", + "construction_end_date": "2015-04-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237045,8 +237045,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "APPROX. 25M SOUTH OF EXISTING WELLS OUTSIDE COMPOUND", - "construction_start_date": "2015-04-15T00:00:00Z", - "construction_end_date": "2015-04-18T00:00:00Z", + "construction_start_date": "2015-04-15", + "construction_end_date": "2015-04-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237152,8 +237152,8 @@ "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-05-25T00:00:00Z", - "construction_end_date": "2015-05-26T00:00:00Z", + "construction_start_date": "2015-05-25", + "construction_end_date": "2015-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237259,8 +237259,8 @@ "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-06-01T00:00:00Z", - "construction_end_date": "2015-06-04T00:00:00Z", + "construction_start_date": "2015-06-01", + "construction_end_date": "2015-06-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237366,8 +237366,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA-RECLAIM DAM", - "construction_start_date": "2015-07-02T00:00:00Z", - "construction_end_date": "2015-07-05T00:00:00Z", + "construction_start_date": "2015-07-02", + "construction_end_date": "2015-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237473,8 +237473,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA ABOVE RECLAIM DAM", - "construction_start_date": "2015-06-30T00:00:00Z", - "construction_end_date": "2015-07-03T00:00:00Z", + "construction_start_date": "2015-06-30", + "construction_end_date": "2015-07-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237580,8 +237580,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA - RELCAIM DAM", - "construction_start_date": "2015-07-23T00:00:00Z", - "construction_end_date": "2015-08-09T00:00:00Z", + "construction_start_date": "2015-07-23", + "construction_end_date": "2015-08-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237687,8 +237687,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-23T00:00:00Z", - "construction_end_date": "2015-07-24T00:00:00Z", + "construction_start_date": "2015-07-23", + "construction_end_date": "2015-07-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237794,8 +237794,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NEAR PRIMARY CRUSHER STOCK PILE ESCAPE VENT", - "construction_start_date": "2015-07-22T00:00:00Z", - "construction_end_date": "2015-07-23T00:00:00Z", + "construction_start_date": "2015-07-22", + "construction_end_date": "2015-07-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -237901,8 +237901,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "KM 19.5 OLD TIA ROAD", - "construction_start_date": "2015-07-20T00:00:00Z", - "construction_end_date": "2015-07-21T00:00:00Z", + "construction_start_date": "2015-07-20", + "construction_end_date": "2015-07-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238008,8 +238008,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "EAST SIDE OF MINE", - "construction_start_date": "2015-06-23T00:00:00Z", - "construction_end_date": "2015-06-25T00:00:00Z", + "construction_start_date": "2015-06-23", + "construction_end_date": "2015-06-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238115,8 +238115,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BY PRIMARY CRUSHER", - "construction_start_date": "2015-07-06T00:00:00Z", - "construction_end_date": "2015-07-07T00:00:00Z", + "construction_start_date": "2015-07-06", + "construction_end_date": "2015-07-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238222,8 +238222,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "TIA ABOVE RECLAIM DAM", - "construction_start_date": "2015-06-17T00:00:00Z", - "construction_end_date": "2015-06-23T00:00:00Z", + "construction_start_date": "2015-06-17", + "construction_end_date": "2015-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238329,8 +238329,8 @@ "land_district": null, "legal_pid": "129292263", "well_location_description": "WEST END OF HOUSE", - "construction_start_date": "2015-10-01T00:00:00Z", - "construction_end_date": "2015-10-02T00:00:00Z", + "construction_start_date": "2015-10-01", + "construction_end_date": "2015-10-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238436,8 +238436,8 @@ "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-08-15T00:00:00Z", - "construction_end_date": "2015-08-19T00:00:00Z", + "construction_start_date": "2015-08-15", + "construction_end_date": "2015-08-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238543,8 +238543,8 @@ "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-09-20T00:00:00Z", - "construction_end_date": "2016-09-21T00:00:00Z", + "construction_start_date": "2016-09-20", + "construction_end_date": "2016-09-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238650,8 +238650,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "CROWN LAND, LAKELSE LAKE PROVINCIAL PARK PICNIC SITE", - "construction_start_date": "2016-09-26T00:00:00Z", - "construction_end_date": "2016-09-27T00:00:00Z", + "construction_start_date": "2016-09-26", + "construction_end_date": "2016-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238864,8 +238864,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "DRGT CAMP 128B", - "construction_start_date": "2015-09-14T00:00:00Z", - "construction_end_date": "2015-09-18T00:00:00Z", + "construction_start_date": "2015-09-14", + "construction_end_date": "2015-09-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -238971,8 +238971,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-11-29T00:00:00Z", - "construction_end_date": "2015-12-01T00:00:00Z", + "construction_start_date": "2015-11-29", + "construction_end_date": "2015-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239078,8 +239078,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-11-26T00:00:00Z", - "construction_end_date": "2015-11-29T00:00:00Z", + "construction_start_date": "2015-11-26", + "construction_end_date": "2015-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239185,8 +239185,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-10T00:00:00Z", - "construction_end_date": "2016-09-11T00:00:00Z", + "construction_start_date": "2016-09-10", + "construction_end_date": "2016-09-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239292,8 +239292,8 @@ "land_district": "14", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-06-09T00:00:00Z", - "construction_end_date": "2016-06-10T00:00:00Z", + "construction_start_date": "2016-06-09", + "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239399,8 +239399,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS MINE ORCA SITE \r\nRED CHRIS ID# WW16-15", - "construction_start_date": "2016-07-18T00:00:00Z", - "construction_end_date": "2016-07-18T00:00:00Z", + "construction_start_date": "2016-07-18", + "construction_end_date": "2016-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239506,8 +239506,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS ACCESS ROAD 17.5 KM; RED CHRIS ID # WW16-14", - "construction_start_date": "2016-07-16T00:00:00Z", - "construction_end_date": "2016-07-16T00:00:00Z", + "construction_start_date": "2016-07-16", + "construction_end_date": "2016-07-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239613,8 +239613,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS MINE 18.5 KM ACROSS ROAD; RED CHRIS ID # WW16-13", - "construction_start_date": "2016-07-15T00:00:00Z", - "construction_end_date": "2016-07-15T00:00:00Z", + "construction_start_date": "2016-07-15", + "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239720,8 +239720,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "RED CHRIS MINE TIA SOUTH; RED CHRIS ID#SPW16-I-D", - "construction_start_date": "2016-07-11T00:00:00Z", - "construction_end_date": "2016-07-15T00:00:00Z", + "construction_start_date": "2016-07-11", + "construction_end_date": "2016-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239827,8 +239827,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-01-09T00:00:00Z", - "construction_end_date": "2015-01-10T00:00:00Z", + "construction_start_date": "2015-01-09", + "construction_end_date": "2015-01-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -239934,8 +239934,8 @@ "land_district": "06", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2011-06-14T00:00:00Z", - "construction_end_date": "2011-06-15T00:00:00Z", + "construction_start_date": "2011-06-14", + "construction_end_date": "2011-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240041,8 +240041,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "2363 LOT", - "construction_start_date": "2015-01-13T00:00:00Z", - "construction_end_date": "2015-01-15T00:00:00Z", + "construction_start_date": "2015-01-13", + "construction_end_date": "2015-01-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240255,8 +240255,8 @@ "land_district": null, "legal_pid": "123573848", "well_location_description": "1350 LOT; 6.5 ACRES 750 HAIDA GWAII 03422.060", - "construction_start_date": "2015-10-18T00:00:00Z", - "construction_end_date": "2015-10-19T00:00:00Z", + "construction_start_date": "2015-10-18", + "construction_end_date": "2015-10-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240362,8 +240362,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "COASTAL DISTRICT", - "construction_start_date": "2016-01-11T00:00:00Z", - "construction_end_date": "2016-01-13T00:00:00Z", + "construction_start_date": "2016-01-11", + "construction_end_date": "2016-01-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240469,8 +240469,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "RIGHT SIDE OF HIGHWAY 37 AT OFF NORTH ENTRANCE TO STEWART", - "construction_start_date": "2016-01-04T00:00:00Z", - "construction_end_date": "2016-01-07T00:00:00Z", + "construction_start_date": "2016-01-04", + "construction_end_date": "2016-01-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240576,8 +240576,8 @@ "land_district": "14", "legal_pid": "111504323", "well_location_description": " ", - "construction_start_date": "2015-08-15T00:00:00Z", - "construction_end_date": "2015-08-20T00:00:00Z", + "construction_start_date": "2015-08-15", + "construction_end_date": "2015-08-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240683,8 +240683,8 @@ "land_district": "06", "legal_pid": "114102021", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-02T00:00:00Z", - "construction_end_date": "2015-09-15T00:00:00Z", + "construction_start_date": "2015-09-02", + "construction_end_date": "2015-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240790,8 +240790,8 @@ "land_district": "54", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-11-22T00:00:00Z", - "construction_end_date": "2016-11-25T00:00:00Z", + "construction_start_date": "2016-11-22", + "construction_end_date": "2016-11-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -240897,8 +240897,8 @@ "land_district": "54", "legal_pid": "100000000", "well_location_description": "DRIVEWAY", - "construction_start_date": "2016-10-03T00:00:00Z", - "construction_end_date": "2016-10-11T00:00:00Z", + "construction_start_date": "2016-10-03", + "construction_end_date": "2016-10-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241004,8 +241004,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "TRIANGULAR FIELD NEXT TO BARN", - "construction_start_date": "2016-11-14T00:00:00Z", - "construction_end_date": "2016-11-21T00:00:00Z", + "construction_start_date": "2016-11-14", + "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241111,8 +241111,8 @@ "land_district": "59", "legal_pid": "104370406", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-29T00:00:00Z", - "construction_end_date": "2016-10-30T00:00:00Z", + "construction_start_date": "2016-10-29", + "construction_end_date": "2016-10-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241218,8 +241218,8 @@ "land_district": "59", "legal_pid": "100437048", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-13T00:00:00Z", - "construction_end_date": "2016-10-26T00:00:00Z", + "construction_start_date": "2016-10-13", + "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241325,8 +241325,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-03-28T00:00:00Z", - "construction_end_date": "2016-03-30T00:00:00Z", + "construction_start_date": "2016-03-28", + "construction_end_date": "2016-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241432,8 +241432,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-28T00:00:00Z", - "construction_end_date": "2016-10-16T00:00:00Z", + "construction_start_date": "2016-09-28", + "construction_end_date": "2016-10-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241539,8 +241539,8 @@ "land_district": "41", "legal_pid": "127311317", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-11T00:00:00Z", - "construction_end_date": "2016-10-20T00:00:00Z", + "construction_start_date": "2016-10-11", + "construction_end_date": "2016-10-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241646,8 +241646,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-09-12T00:00:00Z", - "construction_end_date": "2016-09-15T00:00:00Z", + "construction_start_date": "2016-09-12", + "construction_end_date": "2016-09-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241753,8 +241753,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-08-26T00:00:00Z", - "construction_end_date": "2016-09-14T00:00:00Z", + "construction_start_date": "2016-08-26", + "construction_end_date": "2016-09-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241860,8 +241860,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-20T00:00:00Z", - "construction_end_date": "2016-06-10T00:00:00Z", + "construction_start_date": "2016-05-20", + "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -241967,8 +241967,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-07T00:00:00Z", - "construction_end_date": "2016-06-09T00:00:00Z", + "construction_start_date": "2016-06-07", + "construction_end_date": "2016-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242074,8 +242074,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-26T00:00:00Z", - "construction_end_date": "2016-05-06T00:00:00Z", + "construction_start_date": "2016-04-26", + "construction_end_date": "2016-05-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242181,8 +242181,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-05-26T00:00:00Z", - "construction_end_date": "2016-05-30T00:00:00Z", + "construction_start_date": "2016-05-26", + "construction_end_date": "2016-05-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242288,8 +242288,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-04-12T00:00:00Z", - "construction_end_date": "2016-04-19T00:00:00Z", + "construction_start_date": "2016-04-12", + "construction_end_date": "2016-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242395,8 +242395,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-01-27T00:00:00Z", - "construction_end_date": "2016-04-01T00:00:00Z", + "construction_start_date": "2016-01-27", + "construction_end_date": "2016-04-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242502,8 +242502,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BEHIND MECHANICAL ROOM @ CRUIZERS CAR WASH", - "construction_start_date": "2015-11-24T00:00:00Z", - "construction_end_date": "2015-11-24T00:00:00Z", + "construction_start_date": "2015-11-24", + "construction_end_date": "2015-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242609,8 +242609,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 12 MABEL LAKE HOLDINGS", - "construction_start_date": "2015-11-20T00:00:00Z", - "construction_end_date": "2015-11-21T00:00:00Z", + "construction_start_date": "2015-11-20", + "construction_end_date": "2015-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242716,8 +242716,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 13 MABLE LAKE HOLDINGS", - "construction_start_date": "2015-11-19T00:00:00Z", - "construction_end_date": "2015-11-20T00:00:00Z", + "construction_start_date": "2015-11-19", + "construction_end_date": "2015-11-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242823,8 +242823,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-09-27T00:00:00Z", - "construction_end_date": "2015-10-05T00:00:00Z", + "construction_start_date": "2015-09-27", + "construction_end_date": "2015-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -242930,8 +242930,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "MABEL LAKE HOLDINGS", - "construction_start_date": "2015-09-23T00:00:00Z", - "construction_end_date": "2015-09-23T00:00:00Z", + "construction_start_date": "2015-09-23", + "construction_end_date": "2015-09-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243037,8 +243037,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "LOT 50 MABLE LAKE HOLDINGS", - "construction_start_date": "2015-09-14T00:00:00Z", - "construction_end_date": "2015-09-16T00:00:00Z", + "construction_start_date": "2015-09-14", + "construction_end_date": "2015-09-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243144,8 +243144,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "27.5 KM MABLE LAKE ROAD LOT 43", - "construction_start_date": "2015-08-29T00:00:00Z", - "construction_end_date": "2015-09-02T00:00:00Z", + "construction_start_date": "2015-08-29", + "construction_end_date": "2015-09-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243251,8 +243251,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "WEST OF BUILDING", - "construction_start_date": "2015-08-21T00:00:00Z", - "construction_end_date": "2015-08-25T00:00:00Z", + "construction_start_date": "2015-08-21", + "construction_end_date": "2015-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243358,8 +243358,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-07-08T00:00:00Z", - "construction_end_date": "2015-07-15T00:00:00Z", + "construction_start_date": "2015-07-08", + "construction_end_date": "2015-07-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243465,8 +243465,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2015-05-19T00:00:00Z", - "construction_end_date": "2015-05-20T00:00:00Z", + "construction_start_date": "2015-05-19", + "construction_end_date": "2015-05-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243572,8 +243572,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-11-04T00:00:00Z", - "construction_end_date": "2014-11-04T00:00:00Z", + "construction_start_date": "2014-11-04", + "construction_end_date": "2014-11-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243679,8 +243679,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-08-11T00:00:00Z", - "construction_end_date": "2014-08-13T00:00:00Z", + "construction_start_date": "2014-08-11", + "construction_end_date": "2014-08-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243786,8 +243786,8 @@ "land_district": "16", "legal_pid": "108080046", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2015-07-02T00:00:00Z", - "construction_end_date": "2015-07-06T00:00:00Z", + "construction_start_date": "2015-07-02", + "construction_end_date": "2015-07-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -243893,8 +243893,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-05-15T00:00:00Z", - "construction_end_date": "2014-05-21T00:00:00Z", + "construction_start_date": "2014-05-15", + "construction_end_date": "2014-05-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244000,8 +244000,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-03-17T00:00:00Z", - "construction_end_date": "2013-03-27T00:00:00Z", + "construction_start_date": "2013-03-17", + "construction_end_date": "2013-03-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244107,8 +244107,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-03-01T00:00:00Z", - "construction_end_date": "2014-03-10T00:00:00Z", + "construction_start_date": "2014-03-01", + "construction_end_date": "2014-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244214,8 +244214,8 @@ "land_district": "57", "legal_pid": "124586161", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-06-20T00:00:00Z", - "construction_end_date": "2016-06-22T00:00:00Z", + "construction_start_date": "2016-06-20", + "construction_end_date": "2016-06-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244321,8 +244321,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "ABOVE CAMPGROUND ALONGSIDE OF ACCESS ROAD", - "construction_start_date": "2014-02-13T00:00:00Z", - "construction_end_date": "2014-02-21T00:00:00Z", + "construction_start_date": "2014-02-13", + "construction_end_date": "2014-02-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244428,8 +244428,8 @@ "land_district": "15", "legal_pid": "100571261", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-10-04T00:00:00Z", - "construction_end_date": "2016-10-05T00:00:00Z", + "construction_start_date": "2016-10-04", + "construction_end_date": "2016-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244535,8 +244535,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Behind shop 20ft from building.", - "construction_start_date": "2017-03-27T00:00:00Z", - "construction_end_date": "2017-03-27T00:00:00Z", + "construction_start_date": "2017-03-27", + "construction_end_date": "2017-03-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244642,8 +244642,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-06-20T00:00:00Z", - "construction_end_date": "2013-06-25T00:00:00Z", + "construction_start_date": "2013-06-20", + "construction_end_date": "2013-06-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244749,8 +244749,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BETWEEN EXISTING DWELLING AND WHITEVALE ROAD", - "construction_start_date": "2013-09-20T00:00:00Z", - "construction_end_date": "2013-09-25T00:00:00Z", + "construction_start_date": "2013-09-20", + "construction_end_date": "2013-09-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244856,8 +244856,8 @@ "land_district": "26", "legal_pid": "126568519", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-24T00:00:00Z", - "construction_end_date": "2016-11-24T00:00:00Z", + "construction_start_date": "2016-11-24", + "construction_end_date": "2016-11-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -244963,8 +244963,8 @@ "land_district": "32", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2013-09-03T00:00:00Z", - "construction_end_date": "2013-09-06T00:00:00Z", + "construction_start_date": "2013-09-03", + "construction_end_date": "2013-09-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245070,8 +245070,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "ANNACIS ISLAND WASTE WATER TREATMENT PLANT", - "construction_start_date": "2016-05-16T00:00:00Z", - "construction_end_date": "2016-06-01T00:00:00Z", + "construction_start_date": "2016-05-16", + "construction_end_date": "2016-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245177,8 +245177,8 @@ "land_district": "05", "legal_pid": "115134776", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2014-08-02T00:00:00Z", - "construction_end_date": "2014-08-05T00:00:00Z", + "construction_start_date": "2014-08-02", + "construction_end_date": "2014-08-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245284,8 +245284,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-01-31T00:00:00Z", - "construction_end_date": "2017-02-03T00:00:00Z", + "construction_start_date": "2017-01-31", + "construction_end_date": "2017-02-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245391,8 +245391,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-10-26T00:00:00Z", - "construction_end_date": "2016-10-26T00:00:00Z", + "construction_start_date": "2016-10-26", + "construction_end_date": "2016-10-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245498,8 +245498,8 @@ "land_district": "26", "legal_pid": "112883204", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-17T00:00:00Z", - "construction_end_date": "2016-11-19T00:00:00Z", + "construction_start_date": "2016-11-17", + "construction_end_date": "2016-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245605,8 +245605,8 @@ "land_district": "26", "legal_pid": "110902635", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-12-27T00:00:00Z", - "construction_end_date": "2016-12-28T00:00:00Z", + "construction_start_date": "2016-12-27", + "construction_end_date": "2016-12-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245712,8 +245712,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-11-26T00:00:00Z", - "construction_end_date": "2016-11-26T00:00:00Z", + "construction_start_date": "2016-11-26", + "construction_end_date": "2016-11-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245819,8 +245819,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", - "construction_start_date": "2017-03-22T00:00:00Z", - "construction_end_date": "2017-03-23T00:00:00Z", + "construction_start_date": "2017-03-22", + "construction_end_date": "2017-03-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -245926,8 +245926,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", - "construction_start_date": "2017-03-18T00:00:00Z", - "construction_end_date": "2017-03-19T00:00:00Z", + "construction_start_date": "2017-03-18", + "construction_end_date": "2017-03-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246033,8 +246033,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on operations", - "construction_start_date": "2017-03-16T00:00:00Z", - "construction_end_date": "2017-03-16T00:00:00Z", + "construction_start_date": "2017-03-16", + "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246140,8 +246140,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", - "construction_start_date": "2017-03-14T00:00:00Z", - "construction_end_date": "2017-03-15T00:00:00Z", + "construction_start_date": "2017-03-14", + "construction_end_date": "2017-03-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246247,8 +246247,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "On east side of house 15ft ft from SE corner diagonal, 33ft from NE corner diagonal toward SSE.", - "construction_start_date": "2016-08-29T00:00:00Z", - "construction_end_date": "2016-08-29T00:00:00Z", + "construction_start_date": "2016-08-29", + "construction_end_date": "2016-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246461,7 +246461,7 @@ "land_district": "36", "legal_pid": "106884822", "well_location_description": "LOWER BACK EAST FENCE - \"SOURCE 2\"", - "construction_start_date": "1985-10-01T00:00:00Z", + "construction_start_date": "1985-10-01", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -246568,8 +246568,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2015-10-18T00:00:00Z", - "construction_end_date": "2015-10-18T00:00:00Z", + "construction_start_date": "2015-10-18", + "construction_end_date": "2015-10-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246675,8 +246675,8 @@ "land_district": "25", "legal_pid": "112929298", "well_location_description": "60m East of Deep Creek Road, 150m North of South Property line.", - "construction_start_date": "2002-09-24T00:00:00Z", - "construction_end_date": "2002-09-27T00:00:00Z", + "construction_start_date": "2002-09-24", + "construction_end_date": "2002-09-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246782,8 +246782,8 @@ "land_district": "16", "legal_pid": "123286733", "well_location_description": "Not Provided", - "construction_start_date": "1958-01-01T00:00:00Z", - "construction_end_date": "1958-01-01T00:00:00Z", + "construction_start_date": "1958-01-01", + "construction_end_date": "1958-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246889,8 +246889,8 @@ "land_district": "15", "legal_pid": "101174029", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-21T00:00:00Z", - "construction_end_date": "2017-03-21T00:00:00Z", + "construction_start_date": "2017-03-21", + "construction_end_date": "2017-03-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -246996,8 +246996,8 @@ "land_district": "23", "legal_pid": "109711082", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-21T00:00:00Z", - "construction_end_date": "2017-03-22T00:00:00Z", + "construction_start_date": "2017-03-21", + "construction_end_date": "2017-03-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247103,8 +247103,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "In backyard 25ft E of house", - "construction_start_date": "2017-04-04T00:00:00Z", - "construction_end_date": "2017-04-04T00:00:00Z", + "construction_start_date": "2017-04-04", + "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247210,8 +247210,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Not Provided", - "construction_start_date": "2016-02-03T00:00:00Z", - "construction_end_date": "2016-02-04T00:00:00Z", + "construction_start_date": "2016-02-03", + "construction_end_date": "2016-02-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247317,8 +247317,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per GPS", - "construction_start_date": "2017-04-05T00:00:00Z", - "construction_end_date": "2017-04-06T00:00:00Z", + "construction_start_date": "2017-04-05", + "construction_end_date": "2017-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247638,8 +247638,8 @@ "land_district": "53", "legal_pid": "123456789", "well_location_description": "LOCATED ON THE ROAD RIGHT OF WAY AT THE END OF EMPRESS ROAD.", - "construction_start_date": "2017-03-06T00:00:00Z", - "construction_end_date": "2017-03-07T00:00:00Z", + "construction_start_date": "2017-03-06", + "construction_end_date": "2017-03-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247745,8 +247745,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "in front yard 9 meters east", - "construction_start_date": "2017-04-03T00:00:00Z", - "construction_end_date": "2017-04-03T00:00:00Z", + "construction_start_date": "2017-04-03", + "construction_end_date": "2017-04-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247852,8 +247852,8 @@ "land_district": "14", "legal_pid": "124386375", "well_location_description": "Not provided", - "construction_start_date": "1981-06-26T00:00:00Z", - "construction_end_date": "1981-06-26T00:00:00Z", + "construction_start_date": "1981-06-26", + "construction_end_date": "1981-06-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -247959,8 +247959,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-01-27T00:00:00Z", - "construction_end_date": "2016-01-30T00:00:00Z", + "construction_start_date": "2016-01-27", + "construction_end_date": "2016-01-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248066,8 +248066,8 @@ "land_district": "32", "legal_pid": "128605691", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-27T00:00:00Z", - "construction_end_date": "2017-03-28T00:00:00Z", + "construction_start_date": "2017-03-27", + "construction_end_date": "2017-03-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248173,8 +248173,8 @@ "land_district": "16", "legal_pid": "101153480", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-04-04T00:00:00Z", - "construction_end_date": "2017-04-05T00:00:00Z", + "construction_start_date": "2017-04-04", + "construction_end_date": "2017-04-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248280,8 +248280,8 @@ "land_district": null, "legal_pid": "106910360", "well_location_description": "LEFT FIELD, SOUTH END OF PROPERTY. 30-40 FT FROM PROPERTY LINE", - "construction_start_date": "2015-06-01T00:00:00Z", - "construction_end_date": "2015-06-01T00:00:00Z", + "construction_start_date": "2015-06-01", + "construction_end_date": "2015-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248387,8 +248387,8 @@ "land_district": "41", "legal_pid": "106910360", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2015-11-01T00:00:00Z", - "construction_end_date": "2015-11-01T00:00:00Z", + "construction_start_date": "2015-11-01", + "construction_end_date": "2015-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248494,8 +248494,8 @@ "land_district": "15", "legal_pid": "100044873", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-21T00:00:00Z", - "construction_end_date": "2017-03-23T00:00:00Z", + "construction_start_date": "2017-03-21", + "construction_end_date": "2017-03-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248708,8 +248708,8 @@ "land_district": "59", "legal_pid": "113795511", "well_location_description": "THAT PART OF THE NORTH 1/2 SECTION 9 WHICH LIES TO THE WEST OF THE WESTERN LIMIT OF SPALLUMCHEEN INDIAN RESERVE NO 2 TOWNSHIP 18 RANGE 9 WEST OF THE 6TH MERIDIAN KAMLOOPS DIVISION YALE DISTRICT", - "construction_start_date": "2006-01-05T00:00:00Z", - "construction_end_date": "2006-01-05T00:00:00Z", + "construction_start_date": "2006-01-05", + "construction_end_date": "2006-01-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248815,8 +248815,8 @@ "land_district": "14", "legal_pid": "127997618", "well_location_description": "not provided", - "construction_start_date": "1940-01-01T00:00:00Z", - "construction_end_date": "1940-01-01T00:00:00Z", + "construction_start_date": "1940-01-01", + "construction_end_date": "1940-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -248922,8 +248922,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "No Description provided in Well Construction Report.", - "construction_start_date": "2016-05-30T00:00:00Z", - "construction_end_date": "2016-05-31T00:00:00Z", + "construction_start_date": "2016-05-30", + "construction_end_date": "2016-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249029,8 +249029,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Legal Description: b-54-G/94-A-15\r\nLand Tenure Number: 8012838", - "construction_start_date": "2009-03-30T00:00:00Z", - "construction_end_date": "2009-03-30T00:00:00Z", + "construction_start_date": "2009-03-30", + "construction_end_date": "2009-03-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249136,8 +249136,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "No information provided other than coordinates.", - "construction_start_date": "2016-02-16T00:00:00Z", - "construction_end_date": "2016-02-17T00:00:00Z", + "construction_start_date": "2016-02-16", + "construction_end_date": "2016-02-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249243,8 +249243,8 @@ "land_district": "05", "legal_pid": "109796495", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-01-05T00:00:00Z", - "construction_end_date": "2016-01-08T00:00:00Z", + "construction_start_date": "2016-01-05", + "construction_end_date": "2016-01-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249350,8 +249350,8 @@ "land_district": "12", "legal_pid": "105698839", "well_location_description": "Not Provided", - "construction_start_date": "2016-04-15T00:00:00Z", - "construction_end_date": "2016-04-17T00:00:00Z", + "construction_start_date": "2016-04-15", + "construction_end_date": "2016-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249457,8 +249457,8 @@ "land_district": null, "legal_pid": "107485000", "well_location_description": "Not provided", - "construction_start_date": "2016-02-09T00:00:00Z", - "construction_end_date": "2016-02-12T00:00:00Z", + "construction_start_date": "2016-02-09", + "construction_end_date": "2016-02-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249564,8 +249564,8 @@ "land_district": "25", "legal_pid": "118668631", "well_location_description": "W6M", - "construction_start_date": "2015-12-18T00:00:00Z", - "construction_end_date": "2015-12-19T00:00:00Z", + "construction_start_date": "2015-12-18", + "construction_end_date": "2015-12-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249671,8 +249671,8 @@ "land_district": "54", "legal_pid": "118296831", "well_location_description": "SOUTH END KITLEY LAKE", - "construction_start_date": "2008-01-07T00:00:00Z", - "construction_end_date": "2008-01-18T00:00:00Z", + "construction_start_date": "2008-01-07", + "construction_end_date": "2008-01-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249778,8 +249778,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Behind Shop SE corner", - "construction_start_date": "2017-04-13T00:00:00Z", - "construction_end_date": "2017-04-13T00:00:00Z", + "construction_start_date": "2017-04-13", + "construction_end_date": "2017-04-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249885,8 +249885,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NNE corner of shop", - "construction_start_date": "2017-04-17T00:00:00Z", - "construction_end_date": "2017-04-17T00:00:00Z", + "construction_start_date": "2017-04-17", + "construction_end_date": "2017-04-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -249992,8 +249992,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "a-A21-G/94-A-15, WEST AND SOUTH OF PEEJAY 4-WAY", - "construction_start_date": "2014-03-14T00:00:00Z", - "construction_end_date": "2014-03-14T00:00:00Z", + "construction_start_date": "2014-03-14", + "construction_end_date": "2014-03-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250099,8 +250099,8 @@ "land_district": null, "legal_pid": "114706695", "well_location_description": "DL484 PEACE RIVER EXC PLS 26371 & 45135", - "construction_start_date": "2014-10-29T00:00:00Z", - "construction_end_date": "2014-10-29T00:00:00Z", + "construction_start_date": "2014-10-29", + "construction_end_date": "2014-10-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250206,8 +250206,8 @@ "land_district": "26", "legal_pid": "110406671", "well_location_description": "Lot 9 PL 5817 DL 1313 KD", - "construction_start_date": "2017-04-12T00:00:00Z", - "construction_end_date": "2017-04-12T00:00:00Z", + "construction_start_date": "2017-04-12", + "construction_end_date": "2017-04-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250313,8 +250313,8 @@ "land_district": "05", "legal_pid": "115261999", "well_location_description": "Driller construction report shows the address as 4632 Likely Road, application and maps confirm in IMAP that the address is 4662 Likely Road.", - "construction_start_date": "2006-03-30T00:00:00Z", - "construction_end_date": "2006-04-04T00:00:00Z", + "construction_start_date": "2006-03-30", + "construction_end_date": "2006-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250420,8 +250420,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-04-04T00:00:00Z", - "construction_end_date": "2017-04-04T00:00:00Z", + "construction_start_date": "2017-04-04", + "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250527,8 +250527,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " 40 feet from north east corner of house", - "construction_start_date": "2017-04-13T00:00:00Z", - "construction_end_date": "2017-04-20T00:00:00Z", + "construction_start_date": "2017-04-13", + "construction_end_date": "2017-04-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250634,8 +250634,8 @@ "land_district": "26", "legal_pid": "127903095", "well_location_description": "Lot 5 Pl 88930 KD", - "construction_start_date": "2017-04-19T00:00:00Z", - "construction_end_date": "2017-04-20T00:00:00Z", + "construction_start_date": "2017-04-19", + "construction_end_date": "2017-04-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250741,8 +250741,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-04-20T00:00:00Z", - "construction_end_date": "2017-04-24T00:00:00Z", + "construction_start_date": "2017-04-20", + "construction_end_date": "2017-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250848,8 +250848,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-04-21T00:00:00Z", - "construction_end_date": "2017-04-22T00:00:00Z", + "construction_start_date": "2017-04-21", + "construction_end_date": "2017-04-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -250955,8 +250955,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-04-19T00:00:00Z", - "construction_end_date": "2017-04-20T00:00:00Z", + "construction_start_date": "2017-04-19", + "construction_end_date": "2017-04-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251062,8 +251062,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-04-18T00:00:00Z", - "construction_end_date": "2017-04-19T00:00:00Z", + "construction_start_date": "2017-04-18", + "construction_end_date": "2017-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251169,8 +251169,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-04-06T00:00:00Z", - "construction_end_date": "2017-04-07T00:00:00Z", + "construction_start_date": "2017-04-06", + "construction_end_date": "2017-04-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251276,8 +251276,8 @@ "land_district": null, "legal_pid": "110574107", "well_location_description": " ", - "construction_start_date": "2017-03-23T00:00:00Z", - "construction_end_date": "2017-03-24T00:00:00Z", + "construction_start_date": "2017-03-23", + "construction_end_date": "2017-03-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251383,8 +251383,8 @@ "land_district": null, "legal_pid": "108689431", "well_location_description": " ", - "construction_start_date": "2017-03-27T00:00:00Z", - "construction_end_date": "2017-03-31T00:00:00Z", + "construction_start_date": "2017-03-27", + "construction_end_date": "2017-03-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251490,8 +251490,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-03-13T00:00:00Z", - "construction_end_date": "2017-03-16T00:00:00Z", + "construction_start_date": "2017-03-13", + "construction_end_date": "2017-03-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251597,8 +251597,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-03-14T00:00:00Z", - "construction_end_date": "2017-03-15T00:00:00Z", + "construction_start_date": "2017-03-14", + "construction_end_date": "2017-03-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251704,8 +251704,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NONE PROVIDED", - "construction_start_date": "2016-05-17T00:00:00Z", - "construction_end_date": "2016-05-17T00:00:00Z", + "construction_start_date": "2016-05-17", + "construction_end_date": "2016-05-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251811,8 +251811,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NOT PROVIDED", - "construction_start_date": "2016-06-01T00:00:00Z", - "construction_end_date": "2016-06-05T00:00:00Z", + "construction_start_date": "2016-06-01", + "construction_end_date": "2016-06-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -251918,8 +251918,8 @@ "land_district": "05", "legal_pid": "115058867", "well_location_description": "not provided", - "construction_start_date": "1969-01-01T00:00:00Z", - "construction_end_date": "1969-01-01T00:00:00Z", + "construction_start_date": "1969-01-01", + "construction_end_date": "1969-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252025,8 +252025,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "North side of parking pad.", - "construction_start_date": "2016-11-02T00:00:00Z", - "construction_end_date": "2016-12-01T00:00:00Z", + "construction_start_date": "2016-11-02", + "construction_end_date": "2016-12-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252132,8 +252132,8 @@ "land_district": "14", "legal_pid": "109644741", "well_location_description": "Northside Water Services work yard", - "construction_start_date": "2005-08-25T00:00:00Z", - "construction_end_date": "2005-08-25T00:00:00Z", + "construction_start_date": "2005-08-25", + "construction_end_date": "2005-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252239,8 +252239,8 @@ "land_district": "31", "legal_pid": "109451587", "well_location_description": "PROPOSED LOT #12. EASTERN MOST WELL", - "construction_start_date": "2016-02-29T00:00:00Z", - "construction_end_date": "2016-03-02T00:00:00Z", + "construction_start_date": "2016-02-29", + "construction_end_date": "2016-03-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252346,8 +252346,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Land Tenure File 9705176. d-7-I/94-0-8", - "construction_start_date": "2012-03-24T00:00:00Z", - "construction_end_date": "2012-03-26T00:00:00Z", + "construction_start_date": "2012-03-24", + "construction_end_date": "2012-03-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252453,8 +252453,8 @@ "land_district": "37", "legal_pid": "128279450", "well_location_description": "Hole #2", - "construction_start_date": "2013-03-04T00:00:00Z", - "construction_end_date": "2013-03-05T00:00:00Z", + "construction_start_date": "2013-03-04", + "construction_end_date": "2013-03-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252560,8 +252560,8 @@ "land_district": "31", "legal_pid": "109451587", "well_location_description": "PROPOSED LOT #1", - "construction_start_date": "2016-03-09T00:00:00Z", - "construction_end_date": "2016-03-10T00:00:00Z", + "construction_start_date": "2016-03-09", + "construction_end_date": "2016-03-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252667,8 +252667,8 @@ "land_district": "06", "legal_pid": "108129118", "well_location_description": "Southeast 1/4", - "construction_start_date": "1975-01-01T00:00:00Z", - "construction_end_date": "1975-01-01T00:00:00Z", + "construction_start_date": "1975-01-01", + "construction_end_date": "1975-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252774,8 +252774,8 @@ "land_district": null, "legal_pid": "128912110", "well_location_description": "Not Provided. NAD 83: Zone 2 provided.", - "construction_start_date": "2016-06-08T00:00:00Z", - "construction_end_date": "2016-06-10T00:00:00Z", + "construction_start_date": "2016-06-08", + "construction_end_date": "2016-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252881,8 +252881,8 @@ "land_district": null, "legal_pid": "115610195", "well_location_description": "SE 1/4", - "construction_start_date": "1981-07-17T00:00:00Z", - "construction_end_date": "1981-07-17T00:00:00Z", + "construction_start_date": "1981-07-17", + "construction_end_date": "1981-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -252988,8 +252988,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-06-13T00:00:00Z", - "construction_end_date": "2016-06-16T00:00:00Z", + "construction_start_date": "2016-06-13", + "construction_end_date": "2016-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253095,8 +253095,8 @@ "land_district": "53", "legal_pid": "109475869", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-04-17T00:00:00Z", - "construction_end_date": "2017-04-19T00:00:00Z", + "construction_start_date": "2017-04-17", + "construction_end_date": "2017-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253202,8 +253202,8 @@ "land_district": null, "legal_pid": "117220165", "well_location_description": " ", - "construction_start_date": "1990-08-22T00:00:00Z", - "construction_end_date": "1990-08-22T00:00:00Z", + "construction_start_date": "1990-08-22", + "construction_end_date": "1990-08-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253309,8 +253309,8 @@ "land_district": "61", "legal_pid": "106277063", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-04-21T00:00:00Z", - "construction_end_date": "2017-04-24T00:00:00Z", + "construction_start_date": "2017-04-21", + "construction_end_date": "2017-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253416,8 +253416,8 @@ "land_district": null, "legal_pid": "127263801", "well_location_description": " ", - "construction_start_date": "2010-04-30T00:00:00Z", - "construction_end_date": "2010-04-30T00:00:00Z", + "construction_start_date": "2010-04-30", + "construction_end_date": "2010-04-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253523,8 +253523,8 @@ "land_district": "15", "legal_pid": "101787896", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-04-25T00:00:00Z", - "construction_end_date": "2017-04-25T00:00:00Z", + "construction_start_date": "2017-04-25", + "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253630,8 +253630,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "FIREWEED AREA - d-6-A/94-A-13", - "construction_start_date": "2014-11-17T00:00:00Z", - "construction_end_date": "2014-11-17T00:00:00Z", + "construction_start_date": "2014-11-17", + "construction_end_date": "2014-11-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253737,8 +253737,8 @@ "land_district": null, "legal_pid": "106011021", "well_location_description": " ", - "construction_start_date": "1983-01-01T00:00:00Z", - "construction_end_date": "1983-01-01T00:00:00Z", + "construction_start_date": "1983-01-01", + "construction_end_date": "1983-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253844,8 +253844,8 @@ "land_district": null, "legal_pid": "114652846", "well_location_description": "16-07-088-20-W6M. 16 KM ON 73 ROAD LAND FARM", - "construction_start_date": "2002-12-05T00:00:00Z", - "construction_end_date": "2002-12-05T00:00:00Z", + "construction_start_date": "2002-12-05", + "construction_end_date": "2002-12-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -253951,8 +253951,8 @@ "land_district": "15", "legal_pid": "114640414", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-04-20T00:00:00Z", - "construction_end_date": "2017-04-24T00:00:00Z", + "construction_start_date": "2017-04-20", + "construction_end_date": "2017-04-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254058,8 +254058,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "MALAHAT IR 11", - "construction_start_date": "2017-04-20T00:00:00Z", - "construction_end_date": "2017-04-25T00:00:00Z", + "construction_start_date": "2017-04-20", + "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254165,8 +254165,8 @@ "land_district": "05", "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2016-06-22T00:00:00Z", - "construction_end_date": "2016-06-25T00:00:00Z", + "construction_start_date": "2016-06-22", + "construction_end_date": "2016-06-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254272,8 +254272,8 @@ "land_district": "36", "legal_pid": "113230620", "well_location_description": " ", - "construction_start_date": "2016-05-16T00:00:00Z", - "construction_end_date": "2016-05-19T00:00:00Z", + "construction_start_date": "2016-05-16", + "construction_end_date": "2016-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254379,8 +254379,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "MALAHAT IR 11", - "construction_start_date": "2017-04-25T00:00:00Z", - "construction_end_date": "2017-04-28T00:00:00Z", + "construction_start_date": "2017-04-25", + "construction_end_date": "2017-04-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254486,8 +254486,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "8086 Hwy 95A Kimberley BC KD", - "construction_start_date": "2017-05-01T00:00:00Z", - "construction_end_date": "2017-05-02T00:00:00Z", + "construction_start_date": "2017-05-01", + "construction_end_date": "2017-05-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254593,8 +254593,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "8086 Hwy 95A Kimberley BC KD", - "construction_start_date": "2017-05-03T00:00:00Z", - "construction_end_date": "2017-05-03T00:00:00Z", + "construction_start_date": "2017-05-03", + "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254700,8 +254700,8 @@ "land_district": "26", "legal_pid": "115204308", "well_location_description": "Lot 20 Pl 2575 DL 11304 KD", - "construction_start_date": "2017-05-04T00:00:00Z", - "construction_end_date": "2017-05-05T00:00:00Z", + "construction_start_date": "2017-05-04", + "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254807,8 +254807,8 @@ "land_district": "05", "legal_pid": "123898429", "well_location_description": "as per \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nas per GPS", - "construction_start_date": "2017-05-02T00:00:00Z", - "construction_end_date": "2017-05-08T00:00:00Z", + "construction_start_date": "2017-05-02", + "construction_end_date": "2017-05-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -254914,8 +254914,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-03-06T00:00:00Z", - "construction_end_date": "2017-03-08T00:00:00Z", + "construction_start_date": "2017-03-06", + "construction_end_date": "2017-03-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255021,8 +255021,8 @@ "land_district": "15", "legal_pid": "103587339", "well_location_description": "Except Plan 1532 and Exc Pl 15343, VIP 65617 and PCL B.DD4459N.", - "construction_start_date": "2017-01-04T00:00:00Z", - "construction_end_date": "2017-01-06T00:00:00Z", + "construction_start_date": "2017-01-04", + "construction_end_date": "2017-01-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255342,8 +255342,8 @@ "land_district": "14", "legal_pid": "115758974", "well_location_description": "NOT PROVIDED", - "construction_start_date": "1975-01-01T00:00:00Z", - "construction_end_date": "1975-01-01T00:00:00Z", + "construction_start_date": "1975-01-01", + "construction_end_date": "1975-01-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255449,8 +255449,8 @@ "land_district": null, "legal_pid": "111649534", "well_location_description": "LAND DISTRICT: CD.", - "construction_start_date": "2015-09-21T00:00:00Z", - "construction_end_date": "2015-09-24T00:00:00Z", + "construction_start_date": "2015-09-21", + "construction_end_date": "2015-09-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255556,8 +255556,8 @@ "land_district": "16", "legal_pid": "128274113", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-05T00:00:00Z", - "construction_end_date": "2017-05-08T00:00:00Z", + "construction_start_date": "2017-05-05", + "construction_end_date": "2017-05-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255770,8 +255770,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "998 Highway 3A KD", - "construction_start_date": "2017-05-09T00:00:00Z", - "construction_end_date": "2017-05-10T00:00:00Z", + "construction_start_date": "2017-05-09", + "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255877,8 +255877,8 @@ "land_district": "15", "legal_pid": "128136969", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-03-24T00:00:00Z", - "construction_end_date": "2017-03-27T00:00:00Z", + "construction_start_date": "2017-03-24", + "construction_end_date": "2017-03-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -255984,8 +255984,8 @@ "land_district": "01", "legal_pid": "108779899", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2016-11-14T00:00:00Z", - "construction_end_date": "2017-03-01T00:00:00Z", + "construction_start_date": "2016-11-14", + "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256091,8 +256091,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "20' south of the well shack", - "construction_start_date": "2017-02-20T00:00:00Z", - "construction_end_date": "2017-02-24T00:00:00Z", + "construction_start_date": "2017-02-20", + "construction_end_date": "2017-02-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256198,8 +256198,8 @@ "land_district": "53", "legal_pid": "109462473", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-10T00:00:00Z", - "construction_end_date": "2017-05-12T00:00:00Z", + "construction_start_date": "2017-05-10", + "construction_end_date": "2017-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256305,8 +256305,8 @@ "land_district": "16", "legal_pid": "102923874", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-03T00:00:00Z", - "construction_end_date": "2017-05-05T00:00:00Z", + "construction_start_date": "2017-05-03", + "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256412,8 +256412,8 @@ "land_district": "16", "legal_pid": "101751581", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-09T00:00:00Z", - "construction_end_date": "2017-05-12T00:00:00Z", + "construction_start_date": "2017-05-09", + "construction_end_date": "2017-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256519,8 +256519,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "operations", - "construction_start_date": "2017-03-29T00:00:00Z", - "construction_end_date": "2017-04-02T00:00:00Z", + "construction_start_date": "2017-03-29", + "construction_end_date": "2017-04-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256626,8 +256626,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-05-03T00:00:00Z", - "construction_end_date": "2017-05-04T00:00:00Z", + "construction_start_date": "2017-05-03", + "construction_end_date": "2017-05-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256733,8 +256733,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-05-04T00:00:00Z", - "construction_end_date": "2017-05-05T00:00:00Z", + "construction_start_date": "2017-05-04", + "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256840,8 +256840,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-05-08T00:00:00Z", - "construction_end_date": "2017-05-10T00:00:00Z", + "construction_start_date": "2017-05-08", + "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -256947,8 +256947,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "NO CIVIC NUMBER", - "construction_start_date": "2017-05-11T00:00:00Z", - "construction_end_date": "2017-05-15T00:00:00Z", + "construction_start_date": "2017-05-11", + "construction_end_date": "2017-05-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257054,8 +257054,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-05-02T00:00:00Z", - "construction_end_date": "2017-05-03T00:00:00Z", + "construction_start_date": "2017-05-02", + "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257161,8 +257161,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-05-09T00:00:00Z", - "construction_end_date": "2017-05-12T00:00:00Z", + "construction_start_date": "2017-05-09", + "construction_end_date": "2017-05-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257268,8 +257268,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-04-27T00:00:00Z", - "construction_end_date": "2017-05-01T00:00:00Z", + "construction_start_date": "2017-04-27", + "construction_end_date": "2017-05-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257482,8 +257482,8 @@ "land_district": "16", "legal_pid": "103067149", "well_location_description": "Section: 16,17 & 18. Portion North Saltspring, Except Plan 24804 & VIP 79195. Within property boundaries.", - "construction_start_date": "2017-05-02T00:00:00Z", - "construction_end_date": "2017-05-04T00:00:00Z", + "construction_start_date": "2017-05-02", + "construction_end_date": "2017-05-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257589,8 +257589,8 @@ "land_district": "51", "legal_pid": "123456789", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-10T00:00:00Z", - "construction_end_date": "2017-05-16T00:00:00Z", + "construction_start_date": "2017-05-10", + "construction_end_date": "2017-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257696,8 +257696,8 @@ "land_district": "18", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-05-10T00:00:00Z", - "construction_end_date": "2017-05-10T00:00:00Z", + "construction_start_date": "2017-05-10", + "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257803,8 +257803,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-04-19T00:00:00Z", - "construction_end_date": "2017-04-21T00:00:00Z", + "construction_start_date": "2017-04-19", + "construction_end_date": "2017-04-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -257910,8 +257910,8 @@ "land_district": "58", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-04-24T00:00:00Z", - "construction_end_date": "2017-04-25T00:00:00Z", + "construction_start_date": "2017-04-24", + "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258017,8 +258017,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2016-10-21T00:00:00Z", - "construction_end_date": "2016-10-24T00:00:00Z", + "construction_start_date": "2016-10-21", + "construction_end_date": "2016-10-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258124,8 +258124,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": " ", - "construction_start_date": "2017-03-29T00:00:00Z", - "construction_end_date": "2017-04-03T00:00:00Z", + "construction_start_date": "2017-03-29", + "construction_end_date": "2017-04-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258231,8 +258231,8 @@ "land_district": "43", "legal_pid": "101097555", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-03-03T00:00:00Z", - "construction_end_date": "2017-03-06T00:00:00Z", + "construction_start_date": "2017-03-03", + "construction_end_date": "2017-03-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258338,8 +258338,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-04-03T00:00:00Z", - "construction_end_date": "2017-04-04T00:00:00Z", + "construction_start_date": "2017-04-03", + "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258445,8 +258445,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "*", - "construction_start_date": "2017-04-05T00:00:00Z", - "construction_end_date": "2017-04-06T00:00:00Z", + "construction_start_date": "2017-04-05", + "construction_end_date": "2017-04-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258552,8 +258552,8 @@ "land_district": null, "legal_pid": "100057151", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-05-03T00:00:00Z", - "construction_end_date": "2017-05-03T00:00:00Z", + "construction_start_date": "2017-05-03", + "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258659,8 +258659,8 @@ "land_district": "26", "legal_pid": "116051483", "well_location_description": "2711 Jacks Crescent Playmore KD PL Included in RW Plan 1862 Except Parts Included in Plans 12485 & 12997", - "construction_start_date": "2017-05-16T00:00:00Z", - "construction_end_date": "2017-05-16T00:00:00Z", + "construction_start_date": "2017-05-16", + "construction_end_date": "2017-05-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258766,8 +258766,8 @@ "land_district": "53", "legal_pid": "104013093", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-15T00:00:00Z", - "construction_end_date": "2017-05-19T00:00:00Z", + "construction_start_date": "2017-05-15", + "construction_end_date": "2017-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258873,8 +258873,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Located in the middle of property inside the proposed steel fence.", - "construction_start_date": "2017-01-18T00:00:00Z", - "construction_end_date": "2017-02-10T00:00:00Z", + "construction_start_date": "2017-01-18", + "construction_end_date": "2017-02-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -258980,8 +258980,8 @@ "land_district": "10", "legal_pid": "128972201", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-04-26T00:00:00Z", - "construction_end_date": "2017-04-28T00:00:00Z", + "construction_start_date": "2017-04-26", + "construction_end_date": "2017-04-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259087,8 +259087,8 @@ "land_district": "10", "legal_pid": "128972171", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-02T00:00:00Z", - "construction_end_date": "2017-05-05T00:00:00Z", + "construction_start_date": "2017-05-02", + "construction_end_date": "2017-05-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259194,8 +259194,8 @@ "land_district": "26", "legal_pid": "116028732", "well_location_description": "2604 4th Ave Cranbrook BC KD", - "construction_start_date": "2017-05-17T00:00:00Z", - "construction_end_date": "2017-05-18T00:00:00Z", + "construction_start_date": "2017-05-17", + "construction_end_date": "2017-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259301,8 +259301,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Beside barn, behind old milking parlour.", - "construction_start_date": "2017-05-19T00:00:00Z", - "construction_end_date": "2017-05-19T00:00:00Z", + "construction_start_date": "2017-05-19", + "construction_end_date": "2017-05-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259408,8 +259408,8 @@ "land_district": "37", "legal_pid": "129677432", "well_location_description": "GROUP 1 NEW WESTMINSTER DISTRICT", - "construction_start_date": "2010-10-01T00:00:00Z", - "construction_end_date": "2010-10-01T00:00:00Z", + "construction_start_date": "2010-10-01", + "construction_end_date": "2010-10-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259515,8 +259515,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "left side of house in side lawn", - "construction_start_date": "2017-04-16T00:00:00Z", - "construction_end_date": "2017-04-16T00:00:00Z", + "construction_start_date": "2017-04-16", + "construction_end_date": "2017-04-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259622,8 +259622,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "Back field along E fence", - "construction_start_date": "2017-05-18T00:00:00Z", - "construction_end_date": "2017-05-18T00:00:00Z", + "construction_start_date": "2017-05-18", + "construction_end_date": "2017-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259729,8 +259729,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "N of Quanset building", - "construction_start_date": "2017-05-09T00:00:00Z", - "construction_end_date": "2017-05-09T00:00:00Z", + "construction_start_date": "2017-05-09", + "construction_end_date": "2017-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259836,8 +259836,8 @@ "land_district": "26", "legal_pid": "115068153", "well_location_description": "middle front", - "construction_start_date": "2016-10-31T00:00:00Z", - "construction_end_date": "2016-11-03T00:00:00Z", + "construction_start_date": "2016-10-31", + "construction_end_date": "2016-11-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -259943,8 +259943,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "6ft west of shop N side", - "construction_start_date": "2017-05-23T00:00:00Z", - "construction_end_date": "2017-05-24T00:00:00Z", + "construction_start_date": "2017-05-23", + "construction_end_date": "2017-05-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260050,8 +260050,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "in front yard, N side of shop", - "construction_start_date": "2017-05-26T00:00:00Z", - "construction_end_date": "2017-05-28T00:00:00Z", + "construction_start_date": "2017-05-26", + "construction_end_date": "2017-05-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260157,8 +260157,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Highway 95 DL 9574 Lot 1 KD", - "construction_start_date": "2017-04-24T00:00:00Z", - "construction_end_date": "2017-04-25T00:00:00Z", + "construction_start_date": "2017-04-24", + "construction_end_date": "2017-04-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260264,8 +260264,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Highway 95 DL 9574 KD", - "construction_start_date": "2017-04-25T00:00:00Z", - "construction_end_date": "2017-05-27T00:00:00Z", + "construction_start_date": "2017-04-25", + "construction_end_date": "2017-05-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260371,8 +260371,8 @@ "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: d-A65-H/94-A-15 - Land Tenure Number: OGC file 9639501, WA# 29788 (permitted as a water source well)", - "construction_start_date": "2000-01-11T00:00:00Z", - "construction_end_date": "2000-01-11T00:00:00Z", + "construction_start_date": "2000-01-11", + "construction_end_date": "2000-01-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260478,8 +260478,8 @@ "land_district": "53", "legal_pid": "102687372", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-23T00:00:00Z", - "construction_end_date": "2017-05-26T00:00:00Z", + "construction_start_date": "2017-05-23", + "construction_end_date": "2017-05-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260585,8 +260585,8 @@ "land_district": "44", "legal_pid": "124904074", "well_location_description": "Legal Description: b-44-G/94-A-15 - OGC file 9639347, WA# 29724 (permitted as a water source well)", - "construction_start_date": "2004-07-11T00:00:00Z", - "construction_end_date": "2004-07-11T00:00:00Z", + "construction_start_date": "2004-07-11", + "construction_end_date": "2004-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260692,8 +260692,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Pl EPP63315 KD", - "construction_start_date": "2017-01-02T00:00:00Z", - "construction_end_date": "2017-02-02T00:00:00Z", + "construction_start_date": "2017-01-02", + "construction_end_date": "2017-02-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260799,8 +260799,8 @@ "land_district": null, "legal_pid": "101502859", "well_location_description": "WELL IS LOCATED ON THE NE SIDE OF THE BYLANDS BUILDING 15M SOUTH OF GELLATLY ROAD.", - "construction_start_date": "1990-01-31T00:00:00Z", - "construction_end_date": "1990-02-02T00:00:00Z", + "construction_start_date": "1990-01-31", + "construction_end_date": "1990-02-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -260906,8 +260906,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Dry Well Bull River Rd KD DL 4590 Pl 2992 Easement is Granted through Lot A ", - "construction_start_date": "2017-06-07T00:00:00Z", - "construction_end_date": "2017-06-08T00:00:00Z", + "construction_start_date": "2017-06-07", + "construction_end_date": "2017-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261013,8 +261013,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Lot 1 PL 2992 Easement Is Granted Through Lot A DL 4590 KD", - "construction_start_date": "2017-06-08T00:00:00Z", - "construction_end_date": "2017-06-09T00:00:00Z", + "construction_start_date": "2017-06-08", + "construction_end_date": "2017-06-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261120,8 +261120,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Lot 5 BLK 21 DL 132 KDP 1181 : 5 Edwards Road Baynes Lake Rd KD", - "construction_start_date": "2017-06-09T00:00:00Z", - "construction_end_date": "2017-06-10T00:00:00Z", + "construction_start_date": "2017-06-09", + "construction_end_date": "2017-06-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261227,8 +261227,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "640 Upper Lakeview Rd KD Lot A PL 19804 DL 4347", - "construction_start_date": "2017-05-25T00:00:00Z", - "construction_end_date": "2017-06-03T00:00:00Z", + "construction_start_date": "2017-05-25", + "construction_end_date": "2017-06-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261334,8 +261334,8 @@ "land_district": "26", "legal_pid": "109793232", "well_location_description": "PID 009793232 & 009793330", - "construction_start_date": "2017-06-02T00:00:00Z", - "construction_end_date": "2017-06-06T00:00:00Z", + "construction_start_date": "2017-06-02", + "construction_end_date": "2017-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261441,8 +261441,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "4201 Echo Field Rd Cranbrook BC", - "construction_start_date": "2017-05-23T00:00:00Z", - "construction_end_date": "2017-05-24T00:00:00Z", + "construction_start_date": "2017-05-23", + "construction_end_date": "2017-05-24", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261548,8 +261548,8 @@ "land_district": "36", "legal_pid": "130104831", "well_location_description": "On west side of courthouse parking lot.", - "construction_start_date": "2006-02-15T00:00:00Z", - "construction_end_date": "2006-03-02T00:00:00Z", + "construction_start_date": "2006-02-15", + "construction_end_date": "2006-03-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261655,8 +261655,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "behind rental house in front", - "construction_start_date": "2017-06-07T00:00:00Z", - "construction_end_date": "2017-06-07T00:00:00Z", + "construction_start_date": "2017-06-07", + "construction_end_date": "2017-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261762,8 +261762,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-05-16T00:00:00Z", - "construction_end_date": "2017-06-17T00:00:00Z", + "construction_start_date": "2017-05-16", + "construction_end_date": "2017-06-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261869,8 +261869,8 @@ "land_district": "26", "legal_pid": "107396155", "well_location_description": "Lot E Plan NEP 5972 DL 7362 KD & DL 8773 KD", - "construction_start_date": "2017-06-12T00:00:00Z", - "construction_end_date": "2017-06-13T00:00:00Z", + "construction_start_date": "2017-06-12", + "construction_end_date": "2017-06-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -261976,8 +261976,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-05-18T00:00:00Z", - "construction_end_date": "2017-05-28T00:00:00Z", + "construction_start_date": "2017-05-18", + "construction_end_date": "2017-05-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262083,8 +262083,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "South side of Oceanmount Boulevard on the right-of-way, west of Shaw Road, north of and adjacent to 897 Oceanmount Boulevard", - "construction_start_date": "2010-04-08T00:00:00Z", - "construction_end_date": "2010-04-08T00:00:00Z", + "construction_start_date": "2010-04-08", + "construction_end_date": "2010-04-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262190,8 +262190,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-05-28T00:00:00Z", - "construction_end_date": "2017-05-31T00:00:00Z", + "construction_start_date": "2017-05-28", + "construction_end_date": "2017-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262297,8 +262297,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-06-01T00:00:00Z", - "construction_end_date": "2017-06-08T00:00:00Z", + "construction_start_date": "2017-06-01", + "construction_end_date": "2017-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262404,8 +262404,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-06-12T00:00:00Z", - "construction_end_date": "2017-06-14T00:00:00Z", + "construction_start_date": "2017-06-12", + "construction_end_date": "2017-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262511,8 +262511,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-06-16T00:00:00Z", - "construction_end_date": "2017-06-20T00:00:00Z", + "construction_start_date": "2017-06-16", + "construction_end_date": "2017-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262618,8 +262618,8 @@ "land_district": "44", "legal_pid": "114926695", "well_location_description": "Legal Description: d-A3-E/94-A-16- Land Tenure Number: OGC file 9639499, WA# 29786 (permitted as a water source well). On private land owned by CNRL.", - "construction_start_date": "1999-12-15T00:00:00Z", - "construction_end_date": "1999-12-15T00:00:00Z", + "construction_start_date": "1999-12-15", + "construction_end_date": "1999-12-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262725,8 +262725,8 @@ "land_district": "44", "legal_pid": "114899001", "well_location_description": "Legal Description: d-B23-G/94-A-15 - Land Tenure Number: OGC file 9631106, WA# 25370 (permitted as a water source well).", - "construction_start_date": "2009-04-03T00:00:00Z", - "construction_end_date": "2009-04-03T00:00:00Z", + "construction_start_date": "2009-04-03", + "construction_end_date": "2009-04-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262832,8 +262832,8 @@ "land_district": "26", "legal_pid": "126812355", "well_location_description": "588 Berry Rd Castlegar BC Lot B PL 2949 DL1598", - "construction_start_date": "2017-06-21T00:00:00Z", - "construction_end_date": "2017-06-21T00:00:00Z", + "construction_start_date": "2017-06-21", + "construction_end_date": "2017-06-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -262939,8 +262939,8 @@ "land_district": "26", "legal_pid": "113056646", "well_location_description": "Lot 2 Pl 9603 DL 1239 KD", - "construction_start_date": "2017-06-15T00:00:00Z", - "construction_end_date": "2017-06-20T00:00:00Z", + "construction_start_date": "2017-06-15", + "construction_end_date": "2017-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263046,8 +263046,8 @@ "land_district": "26", "legal_pid": "114651521", "well_location_description": "Lot 20 Pl 9603 DL 1239 KD", - "construction_start_date": "2017-06-20T00:00:00Z", - "construction_end_date": "2017-06-20T00:00:00Z", + "construction_start_date": "2017-06-20", + "construction_end_date": "2017-06-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263153,8 +263153,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "3760 Highway 393 DL 6357 KD", - "construction_start_date": "2017-06-23T00:00:00Z", - "construction_end_date": "2017-06-27T00:00:00Z", + "construction_start_date": "2017-06-23", + "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263260,8 +263260,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "3760 Highway 393 DL 6357 KD", - "construction_start_date": "2017-06-26T00:00:00Z", - "construction_end_date": "2017-06-27T00:00:00Z", + "construction_start_date": "2017-06-26", + "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263369,8 +263369,8 @@ "well_location_description": "Legal Description: b-49-A/94-A-15; OGC file: 9633942 - permitted as a water source well.", "construction_start_date": null, "construction_end_date": null, - "alteration_start_date": "2011-04-10T00:00:00Z", - "alteration_end_date": "2011-04-10T00:00:00Z", + "alteration_start_date": "2011-04-10", + "alteration_end_date": "2011-04-10", "decommission_start_date": null, "decommission_end_date": null, "drilling_company": "a160dd81-7dd1-4c9b-b263-b64c04e1f3f9", @@ -263474,8 +263474,8 @@ "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: Block A District Lot 409 Peace River District (C-64-A/93-P-8) - Water Supply wells located on land authorized under OGC file 9621917 (Land Tenure Disposition # 924320).", - "construction_start_date": "2006-03-08T00:00:00Z", - "construction_end_date": "2006-03-08T00:00:00Z", + "construction_start_date": "2006-03-08", + "construction_end_date": "2006-03-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263581,8 +263581,8 @@ "land_district": null, "legal_pid": "117339243", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-06-01T00:00:00Z", - "construction_end_date": "2017-06-01T00:00:00Z", + "construction_start_date": "2017-06-01", + "construction_end_date": "2017-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263688,8 +263688,8 @@ "land_district": "35", "legal_pid": "100421871", "well_location_description": "Except Plan VIP 39792 and ECP Plan VIP 57498 and EPP 62828 - within property boundaries.", - "construction_start_date": "2017-04-07T00:00:00Z", - "construction_end_date": "2017-04-12T00:00:00Z", + "construction_start_date": "2017-04-07", + "construction_end_date": "2017-04-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263795,8 +263795,8 @@ "land_district": "51", "legal_pid": "100976512", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-06-12T00:00:00Z", - "construction_end_date": "2017-06-12T00:00:00Z", + "construction_start_date": "2017-06-12", + "construction_end_date": "2017-06-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -263902,8 +263902,8 @@ "land_district": "01", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-04-18T00:00:00Z", - "construction_end_date": "2017-04-19T00:00:00Z", + "construction_start_date": "2017-04-18", + "construction_end_date": "2017-04-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264009,8 +264009,8 @@ "land_district": "16", "legal_pid": "123456789", "well_location_description": "Within property boundaries.", - "construction_start_date": "2017-05-23T00:00:00Z", - "construction_end_date": "2017-05-25T00:00:00Z", + "construction_start_date": "2017-05-23", + "construction_end_date": "2017-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264116,8 +264116,8 @@ "land_district": "44", "legal_pid": "123456789", "well_location_description": "Legal Description: Block A District Lot 409 Peace River District (C-64-A/93-P-8) - Water Supply wells located on land authorized under OGC file 9621917 (Land Tenure Disposition # 924320).", - "construction_start_date": "2006-03-09T00:00:00Z", - "construction_end_date": "2006-03-09T00:00:00Z", + "construction_start_date": "2006-03-09", + "construction_end_date": "2006-03-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264223,8 +264223,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "as per gps", - "construction_start_date": "2017-06-28T00:00:00Z", - "construction_end_date": "2017-06-30T00:00:00Z", + "construction_start_date": "2017-06-28", + "construction_end_date": "2017-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264330,8 +264330,8 @@ "land_district": "26", "legal_pid": "105195951", "well_location_description": "Lot 2 Pl NEP 12947 Except Plan 17240 DL 303 KD", - "construction_start_date": "2017-06-14T00:00:00Z", - "construction_end_date": "2017-06-15T00:00:00Z", + "construction_start_date": "2017-06-14", + "construction_end_date": "2017-06-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264437,8 +264437,8 @@ "land_district": null, "legal_pid": "128568168", "well_location_description": "Below Fire Pond", - "construction_start_date": "2010-11-03T00:00:00Z", - "construction_end_date": "2010-11-07T00:00:00Z", + "construction_start_date": "2010-11-03", + "construction_end_date": "2010-11-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264544,8 +264544,8 @@ "land_district": "15", "legal_pid": "114102820", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-30T00:00:00Z", - "construction_end_date": "2017-06-01T00:00:00Z", + "construction_start_date": "2017-05-30", + "construction_end_date": "2017-06-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264651,8 +264651,8 @@ "land_district": "15", "legal_pid": "101398521", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-01T00:00:00Z", - "construction_end_date": "2017-06-02T00:00:00Z", + "construction_start_date": "2017-06-01", + "construction_end_date": "2017-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264758,8 +264758,8 @@ "land_district": "29", "legal_pid": "104228791", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-29T00:00:00Z", - "construction_end_date": "2017-06-02T00:00:00Z", + "construction_start_date": "2017-05-29", + "construction_end_date": "2017-06-02", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264865,8 +264865,8 @@ "land_district": null, "legal_pid": "109668187", "well_location_description": "FEDERAL PROPERTY #EXCPCL A DD 28879N", - "construction_start_date": "2017-06-13T00:00:00Z", - "construction_end_date": "2017-06-29T00:00:00Z", + "construction_start_date": "2017-06-13", + "construction_end_date": "2017-06-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -264972,8 +264972,8 @@ "land_district": "35", "legal_pid": "103050467", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-29T00:00:00Z", - "construction_end_date": "2017-05-29T00:00:00Z", + "construction_start_date": "2017-05-29", + "construction_end_date": "2017-05-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265079,8 +265079,8 @@ "land_district": "26", "legal_pid": "115205100", "well_location_description": "Parcel D CR4922 of DL 7639", - "construction_start_date": "2017-06-13T00:00:00Z", - "construction_end_date": "2017-06-14T00:00:00Z", + "construction_start_date": "2017-06-13", + "construction_end_date": "2017-06-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265186,8 +265186,8 @@ "land_district": "36", "legal_pid": "103656667", "well_location_description": "WELL APPROXIMATELY 128 METERS NW OF SPRING CREEK DRIVE, LINDELL AVE JUNCTION.", - "construction_start_date": "1985-08-15T00:00:00Z", - "construction_end_date": "1985-08-15T00:00:00Z", + "construction_start_date": "1985-08-15", + "construction_end_date": "1985-08-15", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265293,8 +265293,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "Lot D Of Plan NEP 66209 KD", - "construction_start_date": "2017-07-05T00:00:00Z", - "construction_end_date": "2017-07-05T00:00:00Z", + "construction_start_date": "2017-07-05", + "construction_end_date": "2017-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265400,8 +265400,8 @@ "land_district": "26", "legal_pid": "159171000", "well_location_description": "Lot 55 Plan 1180 DL 3557 KD", - "construction_start_date": "2017-07-11T00:00:00Z", - "construction_end_date": "2017-07-11T00:00:00Z", + "construction_start_date": "2017-07-11", + "construction_end_date": "2017-07-11", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265507,8 +265507,8 @@ "land_district": "50", "legal_pid": "101254189", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-31T00:00:00Z", - "construction_end_date": "2017-06-04T00:00:00Z", + "construction_start_date": "2017-05-31", + "construction_end_date": "2017-06-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265614,8 +265614,8 @@ "land_district": "16", "legal_pid": "105624827", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-21T00:00:00Z", - "construction_end_date": "2017-06-23T00:00:00Z", + "construction_start_date": "2017-06-21", + "construction_end_date": "2017-06-23", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265721,8 +265721,8 @@ "land_district": "16", "legal_pid": "105624827", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-19T00:00:00Z", - "construction_end_date": "2017-06-21T00:00:00Z", + "construction_start_date": "2017-06-19", + "construction_end_date": "2017-06-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265828,8 +265828,8 @@ "land_district": null, "legal_pid": "124744034", "well_location_description": "north end of pond", - "construction_start_date": "2003-08-27T00:00:00Z", - "construction_end_date": "2003-08-29T00:00:00Z", + "construction_start_date": "2003-08-27", + "construction_end_date": "2003-08-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -265935,7 +265935,7 @@ "land_district": null, "legal_pid": "124744034", "well_location_description": "South West of the pond", - "construction_start_date": "1995-10-17T00:00:00Z", + "construction_start_date": "1995-10-17", "construction_end_date": null, "alteration_start_date": null, "alteration_end_date": null, @@ -266042,8 +266042,8 @@ "land_district": "16", "legal_pid": "105624827", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-23T00:00:00Z", - "construction_end_date": "2017-06-27T00:00:00Z", + "construction_start_date": "2017-06-23", + "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266149,8 +266149,8 @@ "land_district": null, "legal_pid": "111263466", "well_location_description": "LOT 264-3 IR#1", - "construction_start_date": "2017-05-30T00:00:00Z", - "construction_end_date": "2017-05-31T00:00:00Z", + "construction_start_date": "2017-05-30", + "construction_end_date": "2017-05-31", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266256,8 +266256,8 @@ "land_district": null, "legal_pid": "111263466", "well_location_description": "LOT 264-3 IR#1", - "construction_start_date": "2017-06-07T00:00:00Z", - "construction_end_date": "2017-06-08T00:00:00Z", + "construction_start_date": "2017-06-07", + "construction_end_date": "2017-06-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266363,8 +266363,8 @@ "land_district": null, "legal_pid": "127350011", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-05T00:00:00Z", - "construction_end_date": "2017-06-06T00:00:00Z", + "construction_start_date": "2017-06-05", + "construction_end_date": "2017-06-06", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266470,8 +266470,8 @@ "land_district": "15", "legal_pid": "102317630", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-06T00:00:00Z", - "construction_end_date": "2017-06-07T00:00:00Z", + "construction_start_date": "2017-06-06", + "construction_end_date": "2017-06-07", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266577,8 +266577,8 @@ "land_district": "16", "legal_pid": "107513259", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-15T00:00:00Z", - "construction_end_date": "2017-06-16T00:00:00Z", + "construction_start_date": "2017-06-15", + "construction_end_date": "2017-06-16", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266684,8 +266684,8 @@ "land_district": "15", "legal_pid": "118540490", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-27T00:00:00Z", - "construction_end_date": "2017-06-27T00:00:00Z", + "construction_start_date": "2017-06-27", + "construction_end_date": "2017-06-27", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266791,8 +266791,8 @@ "land_district": "36", "legal_pid": "113394291", "well_location_description": "APPROX. 50 M WEST OF STAVE LAKE ROAD AND 50 M SOUTH OF NORTH PROPERTY BOUNDARY. S 1/2 OF THE S 1/2 OF THE NORTH E QUARTER SEC 23 TP 18.", - "construction_start_date": "2014-11-13T00:00:00Z", - "construction_end_date": "2014-11-19T00:00:00Z", + "construction_start_date": "2014-11-13", + "construction_end_date": "2014-11-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -266898,8 +266898,8 @@ "land_district": "51", "legal_pid": "126628589", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-12T00:00:00Z", - "construction_end_date": "2017-06-26T00:00:00Z", + "construction_start_date": "2017-06-12", + "construction_end_date": "2017-06-26", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267005,8 +267005,8 @@ "land_district": "15", "legal_pid": "103191788", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-06-27T00:00:00Z", - "construction_end_date": "2017-07-05T00:00:00Z", + "construction_start_date": "2017-06-27", + "construction_end_date": "2017-07-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267112,8 +267112,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot", - "construction_start_date": "2017-05-09T00:00:00Z", - "construction_end_date": "2017-05-09T00:00:00Z", + "construction_start_date": "2017-05-09", + "construction_end_date": "2017-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267219,8 +267219,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot", - "construction_start_date": "2017-05-10T00:00:00Z", - "construction_end_date": "2017-05-10T00:00:00Z", + "construction_start_date": "2017-05-10", + "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267326,8 +267326,8 @@ "land_district": "65", "legal_pid": "100239194", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-06T00:00:00Z", - "construction_end_date": "2017-07-08T00:00:00Z", + "construction_start_date": "2017-07-06", + "construction_end_date": "2017-07-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267433,8 +267433,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "on lot C", - "construction_start_date": "2017-05-10T00:00:00Z", - "construction_end_date": "2017-05-10T00:00:00Z", + "construction_start_date": "2017-05-10", + "construction_end_date": "2017-05-10", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267540,8 +267540,8 @@ "land_district": "36", "legal_pid": "113394291", "well_location_description": "APPROXIMATELY 60 M SOUTH OF NORTH PROPERTY BOUNDARY AND 10 M WEST OF STAVE LAKE ROAD", - "construction_start_date": "2015-09-22T00:00:00Z", - "construction_end_date": "2015-10-05T00:00:00Z", + "construction_start_date": "2015-09-22", + "construction_end_date": "2015-10-05", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267647,8 +267647,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "left hand side of lot", - "construction_start_date": "2017-07-04T00:00:00Z", - "construction_end_date": "2017-07-04T00:00:00Z", + "construction_start_date": "2017-07-04", + "construction_end_date": "2017-07-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267754,8 +267754,8 @@ "land_district": null, "legal_pid": "113347926", "well_location_description": "in gully to right", - "construction_start_date": "2017-07-10T00:00:00Z", - "construction_end_date": "2017-07-13T00:00:00Z", + "construction_start_date": "2017-07-10", + "construction_end_date": "2017-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267861,8 +267861,8 @@ "land_district": "26", "legal_pid": "123456789", "well_location_description": "right side", - "construction_start_date": "2017-05-24T00:00:00Z", - "construction_end_date": "2017-05-25T00:00:00Z", + "construction_start_date": "2017-05-24", + "construction_end_date": "2017-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -267968,8 +267968,8 @@ "land_district": "27", "legal_pid": "123456789", "well_location_description": "RUTHERFORD POWER HOUSE", - "construction_start_date": "2003-11-07T00:00:00Z", - "construction_end_date": "2003-11-08T00:00:00Z", + "construction_start_date": "2003-11-07", + "construction_end_date": "2003-11-08", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268075,8 +268075,8 @@ "land_district": "26", "legal_pid": "127948820", "well_location_description": "out front", - "construction_start_date": "2017-05-17T00:00:00Z", - "construction_end_date": "2017-05-18T00:00:00Z", + "construction_start_date": "2017-05-17", + "construction_end_date": "2017-05-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268182,8 +268182,8 @@ "land_district": null, "legal_pid": "113984951", "well_location_description": "not available", - "construction_start_date": "2016-11-17T00:00:00Z", - "construction_end_date": "2016-11-22T00:00:00Z", + "construction_start_date": "2016-11-17", + "construction_end_date": "2016-11-22", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268289,8 +268289,8 @@ "land_district": null, "legal_pid": "113585550", "well_location_description": "not available", - "construction_start_date": "2016-11-24T00:00:00Z", - "construction_end_date": "2016-11-29T00:00:00Z", + "construction_start_date": "2016-11-24", + "construction_end_date": "2016-11-29", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268396,8 +268396,8 @@ "land_district": "54", "legal_pid": "123456789", "well_location_description": "not available", - "construction_start_date": "2016-12-15T00:00:00Z", - "construction_end_date": "2016-12-20T00:00:00Z", + "construction_start_date": "2016-12-15", + "construction_end_date": "2016-12-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268503,8 +268503,8 @@ "land_district": null, "legal_pid": "107549547", "well_location_description": "not available", - "construction_start_date": "2016-12-27T00:00:00Z", - "construction_end_date": "2016-12-28T00:00:00Z", + "construction_start_date": "2016-12-27", + "construction_end_date": "2016-12-28", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268610,8 +268610,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", - "construction_start_date": "2017-02-27T00:00:00Z", - "construction_end_date": "2017-03-01T00:00:00Z", + "construction_start_date": "2017-02-27", + "construction_end_date": "2017-03-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268717,8 +268717,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", - "construction_start_date": "2017-03-15T00:00:00Z", - "construction_end_date": "2017-03-20T00:00:00Z", + "construction_start_date": "2017-03-15", + "construction_end_date": "2017-03-20", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268824,8 +268824,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", - "construction_start_date": "2017-03-21T00:00:00Z", - "construction_end_date": "2017-04-04T00:00:00Z", + "construction_start_date": "2017-03-21", + "construction_end_date": "2017-04-04", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -268931,8 +268931,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "well is in the NW corner of property near Wilson Jackson Road", - "construction_start_date": "2016-10-21T00:00:00Z", - "construction_end_date": "2016-11-01T00:00:00Z", + "construction_start_date": "2016-10-21", + "construction_end_date": "2016-11-01", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269038,8 +269038,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", - "construction_start_date": "2016-11-14T00:00:00Z", - "construction_end_date": "2016-11-21T00:00:00Z", + "construction_start_date": "2016-11-14", + "construction_end_date": "2016-11-21", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269145,8 +269145,8 @@ "land_district": null, "legal_pid": "130086191", "well_location_description": "not available", - "construction_start_date": "2017-05-01T00:00:00Z", - "construction_end_date": "2017-05-03T00:00:00Z", + "construction_start_date": "2017-05-01", + "construction_end_date": "2017-05-03", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269252,8 +269252,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "not available", - "construction_start_date": "2017-05-07T00:00:00Z", - "construction_end_date": "2017-05-09T00:00:00Z", + "construction_start_date": "2017-05-07", + "construction_end_date": "2017-05-09", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269359,8 +269359,8 @@ "land_district": "16", "legal_pid": "100796611", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-13T00:00:00Z", - "construction_end_date": "2017-07-13T00:00:00Z", + "construction_start_date": "2017-07-13", + "construction_end_date": "2017-07-13", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269466,8 +269466,8 @@ "land_district": "42", "legal_pid": "128140133", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-17T00:00:00Z", - "construction_end_date": "2017-07-17T00:00:00Z", + "construction_start_date": "2017-07-17", + "construction_end_date": "2017-07-17", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269573,8 +269573,8 @@ "land_district": "29", "legal_pid": "105912971", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-11T00:00:00Z", - "construction_end_date": "2017-07-12T00:00:00Z", + "construction_start_date": "2017-07-11", + "construction_end_date": "2017-07-12", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269680,8 +269680,8 @@ "land_district": "29", "legal_pid": "125698630", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-18T00:00:00Z", - "construction_end_date": "2017-07-19T00:00:00Z", + "construction_start_date": "2017-07-18", + "construction_end_date": "2017-07-19", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269787,8 +269787,8 @@ "land_district": "47", "legal_pid": "106915019", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-14T00:00:00Z", - "construction_end_date": "2017-07-18T00:00:00Z", + "construction_start_date": "2017-07-14", + "construction_end_date": "2017-07-18", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -269894,8 +269894,8 @@ "land_district": null, "legal_pid": "108565317", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-07-13T00:00:00Z", - "construction_end_date": "2017-07-14T00:00:00Z", + "construction_start_date": "2017-07-13", + "construction_end_date": "2017-07-14", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -270001,8 +270001,8 @@ "land_district": "53", "legal_pid": "109475869", "well_location_description": "NOTHING ENTERED", - "construction_start_date": "2017-05-23T00:00:00Z", - "construction_end_date": "2017-05-25T00:00:00Z", + "construction_start_date": "2017-05-23", + "construction_end_date": "2017-05-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -270108,8 +270108,8 @@ "land_district": null, "legal_pid": "123456789", "well_location_description": "BARE LOT", - "construction_start_date": "2017-06-28T00:00:00Z", - "construction_end_date": "2017-06-30T00:00:00Z", + "construction_start_date": "2017-06-28", + "construction_end_date": "2017-06-30", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -270215,8 +270215,8 @@ "land_district": null, "legal_pid": "113008404", "well_location_description": "Well is located on west side of Mound Farm Park near gravel entrance off of 168 Street (south of the gravel road).", - "construction_start_date": "2017-08-21T00:00:00Z", - "construction_end_date": "2017-08-25T00:00:00Z", + "construction_start_date": "2017-08-21", + "construction_end_date": "2017-08-25", "alteration_start_date": null, "alteration_end_date": null, "decommission_start_date": null, @@ -270503,9 +270503,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113124, - "casing_from": "0.00", - "casing_to": "314.00", + "well": 113124, + "start": "0.00", + "end": "314.00", "diameter": "20.000", "casing_code": null, "casing_material": "STEEL", @@ -270522,9 +270522,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112229, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112229, + "start": "0.00", + "end": "116.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -270541,9 +270541,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112264, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112264, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -270560,9 +270560,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T07:35:32Z", "activity_submission": null, - "well_tag_number": 112783, - "casing_from": "3.00", - "casing_to": "57.00", + "well": 112783, + "start": "3.00", + "end": "57.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -270579,9 +270579,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112884, - "casing_from": "11.17", - "casing_to": "480.00", + "well": 112884, + "start": "11.17", + "end": "480.00", "diameter": null, "casing_code": null, "casing_material": "OTHER", @@ -270598,9 +270598,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112838, - "casing_from": "0.00", - "casing_to": "2.00", + "well": 112838, + "start": "0.00", + "end": "2.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -270617,9 +270617,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112877, - "casing_from": "0.00", - "casing_to": "109.00", + "well": 112877, + "start": "0.00", + "end": "109.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -270636,9 +270636,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112414, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112414, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -270655,9 +270655,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112544, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 112544, + "start": "0.00", + "end": "50.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270674,9 +270674,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112538, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112538, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -270693,9 +270693,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112309, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112309, + "start": "0.00", + "end": "30.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -270712,9 +270712,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112749, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112749, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -270731,9 +270731,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112842, - "casing_from": "0.00", - "casing_to": "83.00", + "well": 112842, + "start": "0.00", + "end": "83.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -270750,9 +270750,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112892, - "casing_from": "2.00", - "casing_to": "17.00", + "well": 112892, + "start": "2.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270769,9 +270769,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112514, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112514, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270788,9 +270788,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112461, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112461, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270807,9 +270807,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112588, - "casing_from": "18.00", - "casing_to": "275.00", + "well": 112588, + "start": "18.00", + "end": "275.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -270826,9 +270826,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112516, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112516, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270845,9 +270845,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112463, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112463, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270864,9 +270864,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112572, - "casing_from": "158.50", - "casing_to": "825.00", + "well": 112572, + "start": "158.50", + "end": "825.00", "diameter": "5.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -270883,9 +270883,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112986, - "casing_from": "0.00", - "casing_to": "47.00", + "well": 112986, + "start": "0.00", + "end": "47.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270902,9 +270902,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112509, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112509, + "start": "0.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": null, @@ -270921,9 +270921,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112374, - "casing_from": "0.00", - "casing_to": "96.11", + "well": 112374, + "start": "0.00", + "end": "96.11", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270940,9 +270940,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113217, - "casing_from": "0.00", - "casing_to": "123.00", + "well": 113217, + "start": "0.00", + "end": "123.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -270959,9 +270959,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113096, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113096, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -270978,9 +270978,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112486, - "casing_from": "80.00", - "casing_to": "260.00", + "well": 112486, + "start": "80.00", + "end": "260.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -270997,9 +270997,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113167, - "casing_from": "0.00", - "casing_to": "97.00", + "well": 113167, + "start": "0.00", + "end": "97.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -271016,9 +271016,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112238, - "casing_from": "45.50", - "casing_to": "65.50", + "well": 112238, + "start": "45.50", + "end": "65.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271035,9 +271035,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112552, - "casing_from": "0.00", - "casing_to": "296.00", + "well": 112552, + "start": "0.00", + "end": "296.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271054,9 +271054,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113021, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113021, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271073,9 +271073,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112620, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 112620, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271092,9 +271092,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113095, - "casing_from": "0.00", - "casing_to": "78.00", + "well": 113095, + "start": "0.00", + "end": "78.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -271111,9 +271111,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112533, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112533, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271130,9 +271130,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113277, - "casing_from": "14.00", - "casing_to": "18.00", + "well": 113277, + "start": "14.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -271149,9 +271149,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113260, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113260, + "start": "0.00", + "end": "19.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271168,9 +271168,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112976, - "casing_from": "0.00", - "casing_to": "59.00", + "well": 112976, + "start": "0.00", + "end": "59.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271187,9 +271187,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112803, - "casing_from": "0.00", - "casing_to": "36.50", + "well": 112803, + "start": "0.00", + "end": "36.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271206,9 +271206,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112505, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112505, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -271225,9 +271225,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T22:57:36Z", "activity_submission": null, - "well_tag_number": 112495, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112495, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271244,9 +271244,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112727, - "casing_from": "0.00", - "casing_to": "84.00", + "well": 112727, + "start": "0.00", + "end": "84.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -271263,9 +271263,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112834, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112834, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271282,9 +271282,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112965, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112965, + "start": "0.00", + "end": "26.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -271301,9 +271301,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112806, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 112806, + "start": "0.00", + "end": "35.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271320,9 +271320,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 108027, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 108027, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271339,9 +271339,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112582, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112582, + "start": "0.00", + "end": "36.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -271358,9 +271358,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112489, - "casing_from": "40.00", - "casing_to": "440.00", + "well": 112489, + "start": "40.00", + "end": "440.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -271377,9 +271377,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112296, - "casing_from": "0.00", - "casing_to": "62.50", + "well": 112296, + "start": "0.00", + "end": "62.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -271396,9 +271396,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-04T01:46:35Z", "activity_submission": null, - "well_tag_number": 112233, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112233, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -271415,9 +271415,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113275, - "casing_from": "0.00", - "casing_to": "54.25", + "well": 113275, + "start": "0.00", + "end": "54.25", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271434,9 +271434,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112589, - "casing_from": "0.00", - "casing_to": "27.00", + "well": 112589, + "start": "0.00", + "end": "27.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271453,9 +271453,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112428, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112428, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271472,9 +271472,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113148, - "casing_from": "1.50", - "casing_to": "287.00", + "well": 113148, + "start": "1.50", + "end": "287.00", "diameter": "3.000", "casing_code": null, "casing_material": "PLASTIC", @@ -271491,9 +271491,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112368, - "casing_from": "0.00", - "casing_to": "174.09", + "well": 112368, + "start": "0.00", + "end": "174.09", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271510,9 +271510,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113002, - "casing_from": "0.00", - "casing_to": "30.66", + "well": 113002, + "start": "0.00", + "end": "30.66", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -271529,9 +271529,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112623, - "casing_from": "0.00", - "casing_to": "205.00", + "well": 112623, + "start": "0.00", + "end": "205.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -271548,9 +271548,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112564, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112564, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271567,9 +271567,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112267, - "casing_from": "0.00", - "casing_to": "152.00", + "well": 112267, + "start": "0.00", + "end": "152.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271586,9 +271586,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112245, - "casing_from": "0.00", - "casing_to": "50.50", + "well": 112245, + "start": "0.00", + "end": "50.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271605,9 +271605,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112251, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112251, + "start": "0.00", + "end": "28.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -271624,9 +271624,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112950, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112950, + "start": "0.00", + "end": "17.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271643,9 +271643,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112493, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112493, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271662,9 +271662,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113123, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 113123, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271681,9 +271681,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112890, - "casing_from": "2.00", - "casing_to": "114.00", + "well": 112890, + "start": "2.00", + "end": "114.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271700,9 +271700,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112369, - "casing_from": "0.00", - "casing_to": "89.07", + "well": 112369, + "start": "0.00", + "end": "89.07", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271719,9 +271719,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113293, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 113293, + "start": "0.00", + "end": "50.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271738,9 +271738,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112858, - "casing_from": "2.50", - "casing_to": "36.50", + "well": 112858, + "start": "2.50", + "end": "36.50", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -271757,9 +271757,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112789, - "casing_from": "3.00", - "casing_to": "32.50", + "well": 112789, + "start": "3.00", + "end": "32.50", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -271776,9 +271776,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112624, - "casing_from": "0.00", - "casing_to": "75.00", + "well": 112624, + "start": "0.00", + "end": "75.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271795,9 +271795,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112456, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112456, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -271814,9 +271814,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112353, - "casing_from": "0.00", - "casing_to": "76.00", + "well": 112353, + "start": "0.00", + "end": "76.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271833,9 +271833,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112342, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112342, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -271852,9 +271852,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112348, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112348, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271871,9 +271871,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T20:38:12Z", "activity_submission": null, - "well_tag_number": 112221, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112221, + "start": "0.00", + "end": "30.00", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -271890,9 +271890,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112694, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112694, + "start": "0.00", + "end": "38.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271909,9 +271909,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-09T05:01:08Z", "activity_submission": null, - "well_tag_number": 112304, - "casing_from": "0.00", - "casing_to": "215.30", + "well": 112304, + "start": "0.00", + "end": "215.30", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271928,9 +271928,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112500, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112500, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271947,9 +271947,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112798, - "casing_from": "0.00", - "casing_to": "93.80", + "well": 112798, + "start": "0.00", + "end": "93.80", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271966,9 +271966,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112595, - "casing_from": "0.00", - "casing_to": "111.00", + "well": 112595, + "start": "0.00", + "end": "111.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -271985,9 +271985,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112829, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112829, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272004,9 +272004,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112244, - "casing_from": "0.00", - "casing_to": "11.80", + "well": 112244, + "start": "0.00", + "end": "11.80", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272023,9 +272023,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112544, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112544, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272042,9 +272042,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112639, - "casing_from": "0.00", - "casing_to": "54.00", + "well": 112639, + "start": "0.00", + "end": "54.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272061,9 +272061,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112475, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112475, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272080,9 +272080,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112716, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112716, + "start": "0.00", + "end": "56.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -272099,9 +272099,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112477, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112477, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272118,9 +272118,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112978, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112978, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -272137,9 +272137,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112815, - "casing_from": "13.00", - "casing_to": "18.00", + "well": 112815, + "start": "13.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -272156,9 +272156,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112501, - "casing_from": "0.00", - "casing_to": "230.00", + "well": 112501, + "start": "0.00", + "end": "230.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -272175,9 +272175,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112273, - "casing_from": "0.00", - "casing_to": "52.08", + "well": 112273, + "start": "0.00", + "end": "52.08", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272194,9 +272194,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113214, - "casing_from": "0.00", - "casing_to": "24.00", + "well": 113214, + "start": "0.00", + "end": "24.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272213,9 +272213,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112345, - "casing_from": "0.00", - "casing_to": "38.50", + "well": 112345, + "start": "0.00", + "end": "38.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -272232,9 +272232,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112512, - "casing_from": "0.00", - "casing_to": "146.00", + "well": 112512, + "start": "0.00", + "end": "146.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272251,9 +272251,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112597, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112597, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272270,9 +272270,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113286, - "casing_from": "0.00", - "casing_to": "102.00", + "well": 113286, + "start": "0.00", + "end": "102.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272289,9 +272289,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113145, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 113145, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272308,9 +272308,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112726, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112726, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -272327,9 +272327,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112344, - "casing_from": "0.00", - "casing_to": "148.00", + "well": 112344, + "start": "0.00", + "end": "148.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272346,9 +272346,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113216, - "casing_from": "10.00", - "casing_to": "220.00", + "well": 113216, + "start": "10.00", + "end": "220.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -272365,9 +272365,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113107, - "casing_from": "0.00", - "casing_to": "42.07", + "well": 113107, + "start": "0.00", + "end": "42.07", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272384,9 +272384,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112316, - "casing_from": "0.00", - "casing_to": "195.00", + "well": 112316, + "start": "0.00", + "end": "195.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -272403,9 +272403,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112959, - "casing_from": "0.00", - "casing_to": "82.00", + "well": 112959, + "start": "0.00", + "end": "82.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272422,9 +272422,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112342, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112342, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -272441,9 +272441,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112836, - "casing_from": "0.00", - "casing_to": "83.00", + "well": 112836, + "start": "0.00", + "end": "83.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -272460,9 +272460,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112292, - "casing_from": "0.00", - "casing_to": "71.00", + "well": 112292, + "start": "0.00", + "end": "71.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272479,9 +272479,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112857, - "casing_from": "4.00", - "casing_to": "57.00", + "well": 112857, + "start": "4.00", + "end": "57.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -272498,9 +272498,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112152, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112152, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272517,9 +272517,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112565, - "casing_from": "100.00", - "casing_to": "120.00", + "well": 112565, + "start": "100.00", + "end": "120.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -272536,9 +272536,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112970, - "casing_from": "0.00", - "casing_to": "39.00", + "well": 112970, + "start": "0.00", + "end": "39.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -272555,9 +272555,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112957, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112957, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -272574,9 +272574,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113271, - "casing_from": "0.00", - "casing_to": "168.00", + "well": 113271, + "start": "0.00", + "end": "168.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272593,9 +272593,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113199, - "casing_from": "120.00", - "casing_to": "140.00", + "well": 113199, + "start": "120.00", + "end": "140.00", "diameter": "7.880", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -272612,9 +272612,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112426, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112426, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272631,9 +272631,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112477, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112477, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272650,9 +272650,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112461, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112461, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272669,9 +272669,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112468, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112468, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272688,9 +272688,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112473, - "casing_from": "0.00", - "casing_to": "300.00", + "well": 112473, + "start": "0.00", + "end": "300.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272707,9 +272707,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113216, - "casing_from": "260.00", - "casing_to": "300.00", + "well": 113216, + "start": "260.00", + "end": "300.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -272726,9 +272726,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112602, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112602, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272745,9 +272745,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112581, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112581, + "start": "0.00", + "end": "18.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272764,9 +272764,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112944, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 112944, + "start": "0.00", + "end": "50.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -272783,9 +272783,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112322, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112322, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -272802,9 +272802,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112497, - "casing_from": "0.00", - "casing_to": "166.00", + "well": 112497, + "start": "0.00", + "end": "166.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272821,9 +272821,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112796, - "casing_from": "0.00", - "casing_to": "77.00", + "well": 112796, + "start": "0.00", + "end": "77.00", "diameter": "16.000", "casing_code": null, "casing_material": "STEEL", @@ -272840,9 +272840,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112410, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112410, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272859,9 +272859,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112350, - "casing_from": "0.00", - "casing_to": "46.00", + "well": 112350, + "start": "0.00", + "end": "46.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272878,9 +272878,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112243, - "casing_from": "0.00", - "casing_to": "21.50", + "well": 112243, + "start": "0.00", + "end": "21.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272897,9 +272897,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112497, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112497, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272916,9 +272916,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112469, - "casing_from": "0.00", - "casing_to": "41.00", + "well": 112469, + "start": "0.00", + "end": "41.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272935,9 +272935,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113123, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113123, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272954,9 +272954,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112444, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112444, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -272973,9 +272973,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112476, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112476, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -272992,9 +272992,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113172, - "casing_from": "36.00", - "casing_to": "56.00", + "well": 113172, + "start": "36.00", + "end": "56.00", "diameter": "9.000", "casing_code": null, "casing_material": "STEEL", @@ -273011,9 +273011,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112455, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112455, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273030,9 +273030,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112565, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112565, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273049,9 +273049,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112511, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112511, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273068,9 +273068,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112605, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112605, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273087,9 +273087,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100127, - "casing_from": "0.00", - "casing_to": "75.00", + "well": 100127, + "start": "0.00", + "end": "75.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273106,9 +273106,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112561, - "casing_from": "100.00", - "casing_to": "130.00", + "well": 112561, + "start": "100.00", + "end": "130.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -273125,9 +273125,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112232, - "casing_from": "0.00", - "casing_to": "4.00", + "well": 112232, + "start": "0.00", + "end": "4.00", "diameter": "12.250", "casing_code": null, "casing_material": "STEEL", @@ -273144,9 +273144,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112366, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112366, + "start": "0.00", + "end": "18.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -273163,9 +273163,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112813, - "casing_from": "0.00", - "casing_to": "52.00", + "well": 112813, + "start": "0.00", + "end": "52.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -273182,9 +273182,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112651, - "casing_from": "0.00", - "casing_to": "114.00", + "well": 112651, + "start": "0.00", + "end": "114.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -273201,9 +273201,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112728, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112728, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273220,9 +273220,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112992, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 112992, + "start": "0.00", + "end": "95.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -273239,9 +273239,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112591, - "casing_from": "0.00", - "casing_to": "6.00", + "well": 112591, + "start": "0.00", + "end": "6.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -273258,9 +273258,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113306, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 113306, + "start": "0.00", + "end": "5.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273277,9 +273277,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112486, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112486, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273296,9 +273296,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112601, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112601, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273315,9 +273315,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112412, - "casing_from": "0.00", - "casing_to": "48.00", + "well": 112412, + "start": "0.00", + "end": "48.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273334,9 +273334,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112239, - "casing_from": "0.00", - "casing_to": "290.00", + "well": 112239, + "start": "0.00", + "end": "290.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273353,9 +273353,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112417, - "casing_from": "0.00", - "casing_to": "52.00", + "well": 112417, + "start": "0.00", + "end": "52.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273372,9 +273372,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112723, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 112723, + "start": "0.00", + "end": "35.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -273391,9 +273391,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113209, - "casing_from": "0.00", - "casing_to": "505.00", + "well": 113209, + "start": "0.00", + "end": "505.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -273410,9 +273410,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112577, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112577, + "start": "0.00", + "end": "30.00", "diameter": "4.000", "casing_code": null, "casing_material": "STEEL", @@ -273429,9 +273429,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112848, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112848, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273448,9 +273448,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112489, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112489, + "start": "0.00", + "end": "40.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273467,9 +273467,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112641, - "casing_from": "0.00", - "casing_to": "94.00", + "well": 112641, + "start": "0.00", + "end": "94.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273486,9 +273486,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112949, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112949, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273505,9 +273505,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112987, - "casing_from": "0.00", - "casing_to": "71.00", + "well": 112987, + "start": "0.00", + "end": "71.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -273524,9 +273524,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112926, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112926, + "start": "0.00", + "end": "25.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273543,9 +273543,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112254, - "casing_from": "0.00", - "casing_to": "10.00", + "well": 112254, + "start": "0.00", + "end": "10.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273562,9 +273562,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112776, - "casing_from": null, - "casing_to": null, + "well": 112776, + "start": null, + "end": null, "diameter": "4.750", "casing_code": null, "casing_material": "OTHER", @@ -273581,9 +273581,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112614, - "casing_from": "0.00", - "casing_to": "94.00", + "well": 112614, + "start": "0.00", + "end": "94.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273600,9 +273600,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112405, - "casing_from": "0.00", - "casing_to": "580.00", + "well": 112405, + "start": "0.00", + "end": "580.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273619,9 +273619,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113136, - "casing_from": "0.00", - "casing_to": "114.06", + "well": 113136, + "start": "0.00", + "end": "114.06", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273638,9 +273638,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112885, - "casing_from": "15.08", - "casing_to": "182.00", + "well": 112885, + "start": "15.08", + "end": "182.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -273657,9 +273657,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113113, - "casing_from": "0.00", - "casing_to": "405.00", + "well": 113113, + "start": "0.00", + "end": "405.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -273676,9 +273676,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112925, - "casing_from": "0.00", - "casing_to": "171.00", + "well": 112925, + "start": "0.00", + "end": "171.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273695,9 +273695,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112859, - "casing_from": "0.00", - "casing_to": "110.00", + "well": 112859, + "start": "0.00", + "end": "110.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273714,9 +273714,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112394, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 112394, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273733,9 +273733,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112778, - "casing_from": null, - "casing_to": null, + "well": 112778, + "start": null, + "end": null, "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -273752,9 +273752,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113170, - "casing_from": "190.00", - "casing_to": "477.00", + "well": 113170, + "start": "190.00", + "end": "477.00", "diameter": "8.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -273771,9 +273771,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112426, - "casing_from": "44.00", - "casing_to": "160.00", + "well": 112426, + "start": "44.00", + "end": "160.00", "diameter": null, "casing_code": null, "casing_material": "OTHER", @@ -273790,9 +273790,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112585, - "casing_from": "18.00", - "casing_to": "650.00", + "well": 112585, + "start": "18.00", + "end": "650.00", "diameter": null, "casing_code": null, "casing_material": "OPEN_HOLE", @@ -273809,9 +273809,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112830, - "casing_from": "36.00", - "casing_to": "1140.00", + "well": 112830, + "start": "36.00", + "end": "1140.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -273828,9 +273828,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:26:56Z", "activity_submission": null, - "well_tag_number": 112488, - "casing_from": "0.00", - "casing_to": "147.00", + "well": 112488, + "start": "0.00", + "end": "147.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273847,9 +273847,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112710, - "casing_from": "0.00", - "casing_to": "62.50", + "well": 112710, + "start": "0.00", + "end": "62.50", "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -273866,9 +273866,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112516, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112516, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -273885,9 +273885,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112852, - "casing_from": "2.00", - "casing_to": "33.66", + "well": 112852, + "start": "2.00", + "end": "33.66", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -273904,9 +273904,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112958, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112958, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -273923,9 +273923,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112593, - "casing_from": "0.00", - "casing_to": "126.00", + "well": 112593, + "start": "0.00", + "end": "126.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273942,9 +273942,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112312, - "casing_from": null, - "casing_to": null, + "well": 112312, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273961,9 +273961,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112709, - "casing_from": "0.00", - "casing_to": "62.00", + "well": 112709, + "start": "0.00", + "end": "62.00", "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -273980,9 +273980,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113177, - "casing_from": "0.00", - "casing_to": "236.00", + "well": 113177, + "start": "0.00", + "end": "236.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -273999,9 +273999,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112422, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112422, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274018,9 +274018,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112990, - "casing_from": "2.00", - "casing_to": "136.00", + "well": 112990, + "start": "2.00", + "end": "136.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274037,9 +274037,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112945, - "casing_from": "70.00", - "casing_to": "235.00", + "well": 112945, + "start": "70.00", + "end": "235.00", "diameter": "4.940", "casing_code": null, "casing_material": "STEEL", @@ -274056,9 +274056,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113137, - "casing_from": "0.00", - "casing_to": "96.08", + "well": 113137, + "start": "0.00", + "end": "96.08", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274075,9 +274075,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113265, - "casing_from": "36.00", - "casing_to": "200.00", + "well": 113265, + "start": "36.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -274094,9 +274094,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112895, - "casing_from": "2.00", - "casing_to": "115.00", + "well": 112895, + "start": "2.00", + "end": "115.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274113,9 +274113,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112456, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112456, + "start": "0.00", + "end": "40.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274132,9 +274132,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112599, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112599, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274151,9 +274151,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112814, - "casing_from": "8.00", - "casing_to": "18.50", + "well": 112814, + "start": "8.00", + "end": "18.50", "diameter": "10.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -274170,9 +274170,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112479, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 112479, + "start": "0.00", + "end": "50.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274189,9 +274189,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112563, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112563, + "start": "0.00", + "end": "80.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274208,9 +274208,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112419, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112419, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274227,9 +274227,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112728, - "casing_from": "0.00", - "casing_to": "283.00", + "well": 112728, + "start": "0.00", + "end": "283.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -274246,9 +274246,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112500, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112500, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274265,9 +274265,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112743, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112743, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -274284,9 +274284,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112894, - "casing_from": "2.00", - "casing_to": "42.00", + "well": 112894, + "start": "2.00", + "end": "42.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274303,9 +274303,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112248, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112248, + "start": "0.00", + "end": "25.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -274322,9 +274322,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113219, - "casing_from": "0.00", - "casing_to": "135.00", + "well": 113219, + "start": "0.00", + "end": "135.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -274341,9 +274341,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112644, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112644, + "start": "0.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274360,9 +274360,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-08T14:16:00Z", "activity_submission": null, - "well_tag_number": 112286, - "casing_from": "0.00", - "casing_to": "38.80", + "well": 112286, + "start": "0.00", + "end": "38.80", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274379,9 +274379,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112583, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112583, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -274398,9 +274398,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113097, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113097, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274417,9 +274417,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112943, - "casing_from": "0.00", - "casing_to": "75.00", + "well": 112943, + "start": "0.00", + "end": "75.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -274436,9 +274436,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112221, - "casing_from": "0.00", - "casing_to": "64.50", + "well": 112221, + "start": "0.00", + "end": "64.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -274455,9 +274455,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112805, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 112805, + "start": "0.00", + "end": "5.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274474,9 +274474,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112699, - "casing_from": "0.00", - "casing_to": "105.58", + "well": 112699, + "start": "0.00", + "end": "105.58", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274493,9 +274493,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112454, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112454, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274512,9 +274512,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112706, - "casing_from": "0.00", - "casing_to": "135.92", + "well": 112706, + "start": "0.00", + "end": "135.92", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274531,9 +274531,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112405, - "casing_from": "580.00", - "casing_to": "656.00", + "well": 112405, + "start": "580.00", + "end": "656.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -274550,9 +274550,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112481, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112481, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274569,9 +274569,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113259, - "casing_from": "0.00", - "casing_to": "236.00", + "well": 113259, + "start": "0.00", + "end": "236.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -274588,9 +274588,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112591, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112591, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274607,9 +274607,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112919, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112919, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -274626,9 +274626,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112586, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112586, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -274645,9 +274645,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112907, - "casing_from": "0.00", - "casing_to": "33.00", + "well": 112907, + "start": "0.00", + "end": "33.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274664,9 +274664,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112576, - "casing_from": "0.00", - "casing_to": "10.00", + "well": 112576, + "start": "0.00", + "end": "10.00", "diameter": "10.750", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274683,9 +274683,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113090, - "casing_from": "30.00", - "casing_to": "181.00", + "well": 113090, + "start": "30.00", + "end": "181.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -274702,9 +274702,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113129, - "casing_from": "0.00", - "casing_to": "188.00", + "well": 113129, + "start": "0.00", + "end": "188.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274721,9 +274721,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112695, - "casing_from": "0.00", - "casing_to": "16.83", + "well": 112695, + "start": "0.00", + "end": "16.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274740,9 +274740,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113213, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113213, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274759,9 +274759,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113074, - "casing_from": "0.00", - "casing_to": "350.00", + "well": 113074, + "start": "0.00", + "end": "350.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274778,9 +274778,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112438, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112438, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274797,9 +274797,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112994, - "casing_from": "0.00", - "casing_to": "21.00", + "well": 112994, + "start": "0.00", + "end": "21.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -274816,9 +274816,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112521, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112521, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -274835,9 +274835,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112734, - "casing_from": "0.00", - "casing_to": "118.00", + "well": 112734, + "start": "0.00", + "end": "118.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -274854,9 +274854,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112420, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112420, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274873,9 +274873,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112616, - "casing_from": "0.00", - "casing_to": "108.00", + "well": 112616, + "start": "0.00", + "end": "108.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -274892,9 +274892,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112672, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112672, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -274911,9 +274911,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112839, - "casing_from": "18.00", - "casing_to": "400.00", + "well": 112839, + "start": "18.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -274930,9 +274930,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112766, - "casing_from": "0.00", - "casing_to": "139.00", + "well": 112766, + "start": "0.00", + "end": "139.00", "diameter": "13.370", "casing_code": null, "casing_material": "STEEL", @@ -274949,9 +274949,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112263, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112263, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -274968,9 +274968,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112846, - "casing_from": "0.00", - "casing_to": "311.00", + "well": 112846, + "start": "0.00", + "end": "311.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -274987,9 +274987,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112722, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112722, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -275006,9 +275006,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112804, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112804, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275025,9 +275025,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112458, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112458, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275044,9 +275044,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112988, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112988, + "start": "0.00", + "end": "25.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275063,9 +275063,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112250, - "casing_from": "0.00", - "casing_to": "127.00", + "well": 112250, + "start": "0.00", + "end": "127.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275082,9 +275082,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112500, - "casing_from": "0.00", - "casing_to": "140.00", + "well": 112500, + "start": "0.00", + "end": "140.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -275101,9 +275101,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112403, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112403, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275120,9 +275120,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112819, - "casing_from": "0.00", - "casing_to": "34.50", + "well": 112819, + "start": "0.00", + "end": "34.50", "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -275139,9 +275139,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113148, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 113148, + "start": "0.00", + "end": "5.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -275158,9 +275158,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113169, - "casing_from": "0.00", - "casing_to": "195.00", + "well": 113169, + "start": "0.00", + "end": "195.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275177,9 +275177,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112905, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112905, + "start": "0.00", + "end": "55.00", "diameter": null, "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275196,9 +275196,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112222, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 112222, + "start": "0.00", + "end": "5.00", "diameter": "10.750", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275215,9 +275215,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112537, - "casing_from": "0.00", - "casing_to": "275.00", + "well": 112537, + "start": "0.00", + "end": "275.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275234,9 +275234,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112795, - "casing_from": "0.00", - "casing_to": "76.00", + "well": 112795, + "start": "0.00", + "end": "76.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -275253,9 +275253,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113261, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113261, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275272,9 +275272,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112732, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112732, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -275291,9 +275291,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113118, - "casing_from": "0.00", - "casing_to": "214.00", + "well": 113118, + "start": "0.00", + "end": "214.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275310,9 +275310,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113260, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113260, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275329,9 +275329,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113263, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 113263, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275348,9 +275348,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112686, - "casing_from": "0.00", - "casing_to": "33.83", + "well": 112686, + "start": "0.00", + "end": "33.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275367,9 +275367,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112671, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112671, + "start": "0.00", + "end": "60.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -275386,9 +275386,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112487, - "casing_from": "380.00", - "casing_to": "400.00", + "well": 112487, + "start": "380.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -275405,9 +275405,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112669, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112669, + "start": "0.00", + "end": "200.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -275424,9 +275424,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112499, - "casing_from": "0.00", - "casing_to": "150.00", + "well": 112499, + "start": "0.00", + "end": "150.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275443,9 +275443,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T20:55:07Z", "activity_submission": null, - "well_tag_number": 112715, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112715, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -275462,9 +275462,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112921, - "casing_from": "0.00", - "casing_to": "10.50", + "well": 112921, + "start": "0.00", + "end": "10.50", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -275481,9 +275481,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112589, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 112589, + "start": "0.00", + "end": "95.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -275500,9 +275500,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112957, - "casing_from": "0.00", - "casing_to": "144.00", + "well": 112957, + "start": "0.00", + "end": "144.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275519,9 +275519,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112237, - "casing_from": "0.00", - "casing_to": "209.00", + "well": 112237, + "start": "0.00", + "end": "209.00", "diameter": "16.000", "casing_code": null, "casing_material": null, @@ -275538,9 +275538,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112657, - "casing_from": "0.00", - "casing_to": "190.00", + "well": 112657, + "start": "0.00", + "end": "190.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -275557,9 +275557,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112419, - "casing_from": "0.00", - "casing_to": "290.00", + "well": 112419, + "start": "0.00", + "end": "290.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275576,9 +275576,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112880, - "casing_from": "0.00", - "casing_to": "54.33", + "well": 112880, + "start": "0.00", + "end": "54.33", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -275595,9 +275595,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112920, - "casing_from": "0.00", - "casing_to": "7.00", + "well": 112920, + "start": "0.00", + "end": "7.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -275614,9 +275614,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112745, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112745, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -275633,9 +275633,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113082, - "casing_from": "54.00", - "casing_to": "200.00", + "well": 113082, + "start": "54.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -275652,9 +275652,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112505, - "casing_from": "0.00", - "casing_to": "52.50", + "well": 112505, + "start": "0.00", + "end": "52.50", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -275671,9 +275671,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112731, - "casing_from": "0.00", - "casing_to": "54.00", + "well": 112731, + "start": "0.00", + "end": "54.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -275690,9 +275690,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112640, - "casing_from": "0.00", - "casing_to": "175.00", + "well": 112640, + "start": "0.00", + "end": "175.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275709,9 +275709,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112844, - "casing_from": "0.00", - "casing_to": "23.80", + "well": 112844, + "start": "0.00", + "end": "23.80", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275728,9 +275728,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113264, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113264, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275747,9 +275747,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112253, - "casing_from": "0.00", - "casing_to": "65.00", + "well": 112253, + "start": "0.00", + "end": "65.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275766,9 +275766,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112864, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112864, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275785,9 +275785,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112426, - "casing_from": "36.00", - "casing_to": "44.00", + "well": 112426, + "start": "36.00", + "end": "44.00", "diameter": "5.000", "casing_code": null, "casing_material": "OTHER", @@ -275804,9 +275804,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112906, - "casing_from": "0.00", - "casing_to": "108.00", + "well": 112906, + "start": "0.00", + "end": "108.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275823,9 +275823,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112763, - "casing_from": null, - "casing_to": null, + "well": 112763, + "start": null, + "end": null, "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -275842,9 +275842,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112257, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112257, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275861,9 +275861,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112233, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112233, + "start": "0.00", + "end": "18.00", "diameter": "6.250", "casing_code": null, "casing_material": "STEEL", @@ -275880,9 +275880,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112492, - "casing_from": "0.00", - "casing_to": "349.00", + "well": 112492, + "start": "0.00", + "end": "349.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275899,9 +275899,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112927, - "casing_from": "0.00", - "casing_to": "51.00", + "well": 112927, + "start": "0.00", + "end": "51.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275918,9 +275918,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113025, - "casing_from": "0.00", - "casing_to": "240.00", + "well": 113025, + "start": "0.00", + "end": "240.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275937,9 +275937,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112481, - "casing_from": "0.00", - "casing_to": "88.00", + "well": 112481, + "start": "0.00", + "end": "88.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275956,9 +275956,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112611, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112611, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -275975,9 +275975,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112467, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112467, + "start": "0.00", + "end": "38.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -275994,9 +275994,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112851, - "casing_from": "0.00", - "casing_to": "515.00", + "well": 112851, + "start": "0.00", + "end": "515.00", "diameter": "16.000", "casing_code": null, "casing_material": "STEEL", @@ -276013,9 +276013,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112260, - "casing_from": "0.00", - "casing_to": "69.00", + "well": 112260, + "start": "0.00", + "end": "69.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276032,9 +276032,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113209, - "casing_from": "460.00", - "casing_to": "820.00", + "well": 113209, + "start": "460.00", + "end": "820.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -276051,9 +276051,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112367, - "casing_from": "0.00", - "casing_to": "198.00", + "well": 112367, + "start": "0.00", + "end": "198.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276070,9 +276070,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112682, - "casing_from": "0.00", - "casing_to": "83.42", + "well": 112682, + "start": "0.00", + "end": "83.42", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276089,9 +276089,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112475, - "casing_from": "120.00", - "casing_to": "200.00", + "well": 112475, + "start": "120.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -276108,9 +276108,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112424, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112424, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276127,9 +276127,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112545, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112545, + "start": "0.00", + "end": "40.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276146,9 +276146,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112866, - "casing_from": "0.00", - "casing_to": "52.00", + "well": 112866, + "start": "0.00", + "end": "52.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276165,9 +276165,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112473, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112473, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276184,9 +276184,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113000, - "casing_from": "0.00", - "casing_to": "63.00", + "well": 113000, + "start": "0.00", + "end": "63.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -276203,9 +276203,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112367, - "casing_from": "198.00", - "casing_to": "695.00", + "well": 112367, + "start": "198.00", + "end": "695.00", "diameter": null, "casing_code": null, "casing_material": "OPEN_HOLE", @@ -276222,9 +276222,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113171, - "casing_from": "0.00", - "casing_to": "249.00", + "well": 113171, + "start": "0.00", + "end": "249.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276241,9 +276241,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113270, - "casing_from": "0.00", - "casing_to": "79.00", + "well": 113270, + "start": "0.00", + "end": "79.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -276260,9 +276260,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112762, - "casing_from": null, - "casing_to": null, + "well": 112762, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276279,9 +276279,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113242, - "casing_from": "0.00", - "casing_to": "193.00", + "well": 113242, + "start": "0.00", + "end": "193.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276298,9 +276298,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112383, - "casing_from": "0.00", - "casing_to": "77.00", + "well": 112383, + "start": "0.00", + "end": "77.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276317,9 +276317,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112938, - "casing_from": "0.00", - "casing_to": "90.00", + "well": 112938, + "start": "0.00", + "end": "90.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276336,9 +276336,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112264, - "casing_from": "0.00", - "casing_to": "102.00", + "well": 112264, + "start": "0.00", + "end": "102.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276355,9 +276355,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112654, - "casing_from": "0.00", - "casing_to": "115.00", + "well": 112654, + "start": "0.00", + "end": "115.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276374,9 +276374,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 105508, - "casing_from": "0.00", - "casing_to": "105.00", + "well": 105508, + "start": "0.00", + "end": "105.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276393,9 +276393,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112399, - "casing_from": "0.00", - "casing_to": "61.00", + "well": 112399, + "start": "0.00", + "end": "61.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276412,9 +276412,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113304, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 113304, + "start": "0.00", + "end": "17.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276431,9 +276431,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113251, - "casing_from": "0.00", - "casing_to": "47.00", + "well": 113251, + "start": "0.00", + "end": "47.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276450,9 +276450,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112952, - "casing_from": "0.00", - "casing_to": "190.00", + "well": 112952, + "start": "0.00", + "end": "190.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276469,9 +276469,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100001, - "casing_from": "13.00", - "casing_to": "170.00", + "well": 100001, + "start": "13.00", + "end": "170.00", "diameter": null, "casing_code": null, "casing_material": "OPEN_HOLE", @@ -276488,9 +276488,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113193, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 113193, + "start": "0.00", + "end": "155.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276507,9 +276507,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113039, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 113039, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276526,9 +276526,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112486, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112486, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276545,9 +276545,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112833, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112833, + "start": "0.00", + "end": "18.50", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276564,9 +276564,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112730, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112730, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276583,9 +276583,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112249, - "casing_from": "0.00", - "casing_to": "106.50", + "well": 112249, + "start": "0.00", + "end": "106.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276602,9 +276602,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112485, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112485, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276621,9 +276621,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112449, - "casing_from": "0.00", - "casing_to": "75.03", + "well": 112449, + "start": "0.00", + "end": "75.03", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276640,9 +276640,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112570, - "casing_from": "0.00", - "casing_to": "12.00", + "well": 112570, + "start": "0.00", + "end": "12.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -276659,9 +276659,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T20:37:47Z", "activity_submission": null, - "well_tag_number": 112220, - "casing_from": "0.00", - "casing_to": "38.50", + "well": 112220, + "start": "0.00", + "end": "38.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -276678,9 +276678,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113124, - "casing_from": "0.00", - "casing_to": "589.00", + "well": 113124, + "start": "0.00", + "end": "589.00", "diameter": "16.000", "casing_code": null, "casing_material": "STEEL", @@ -276697,9 +276697,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112229, - "casing_from": "116.00", - "casing_to": "423.00", + "well": 112229, + "start": "116.00", + "end": "423.00", "diameter": "6.250", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -276716,9 +276716,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112494, - "casing_from": "0.00", - "casing_to": null, + "well": 112494, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276735,9 +276735,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113080, - "casing_from": "10.00", - "casing_to": "330.00", + "well": 113080, + "start": "10.00", + "end": "330.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -276754,9 +276754,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112861, - "casing_from": "2.00", - "casing_to": "18.00", + "well": 112861, + "start": "2.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -276773,9 +276773,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112881, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112881, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276792,9 +276792,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113244, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 113244, + "start": "0.00", + "end": "5.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -276811,9 +276811,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112874, - "casing_from": "0.00", - "casing_to": "97.83", + "well": 112874, + "start": "0.00", + "end": "97.83", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -276830,9 +276830,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112673, - "casing_from": "0.00", - "casing_to": null, + "well": 112673, + "start": "0.00", + "end": null, "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276849,9 +276849,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113080, - "casing_from": "0.00", - "casing_to": "61.00", + "well": 113080, + "start": "0.00", + "end": "61.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -276868,9 +276868,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113282, - "casing_from": "0.00", - "casing_to": "325.00", + "well": 113282, + "start": "0.00", + "end": "325.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276887,9 +276887,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112315, - "casing_from": "0.00", - "casing_to": "260.00", + "well": 112315, + "start": "0.00", + "end": "260.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -276906,9 +276906,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112354, - "casing_from": "0.00", - "casing_to": "16.05", + "well": 112354, + "start": "0.00", + "end": "16.05", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276925,9 +276925,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113097, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 113097, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -276944,9 +276944,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112667, - "casing_from": "0.00", - "casing_to": "140.00", + "well": 112667, + "start": "0.00", + "end": "140.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -276963,9 +276963,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112534, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112534, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -276982,9 +276982,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112904, - "casing_from": "0.00", - "casing_to": "141.00", + "well": 112904, + "start": "0.00", + "end": "141.00", "diameter": "6.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277001,9 +277001,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113020, - "casing_from": "0.00", - "casing_to": "172.00", + "well": 113020, + "start": "0.00", + "end": "172.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -277020,9 +277020,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112336, - "casing_from": "0.00", - "casing_to": "270.00", + "well": 112336, + "start": "0.00", + "end": "270.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -277039,9 +277039,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112595, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112595, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277058,9 +277058,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:12:20Z", "activity_submission": null, - "well_tag_number": 112713, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112713, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -277077,9 +277077,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112575, - "casing_from": "0.00", - "casing_to": "44.50", + "well": 112575, + "start": "0.00", + "end": "44.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -277096,9 +277096,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112337, - "casing_from": "0.00", - "casing_to": "118.00", + "well": 112337, + "start": "0.00", + "end": "118.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -277115,9 +277115,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112227, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112227, + "start": "0.00", + "end": "18.00", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -277134,9 +277134,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112750, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112750, + "start": "0.00", + "end": "116.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -277153,9 +277153,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112870, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112870, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -277172,9 +277172,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112288, - "casing_from": "0.00", - "casing_to": "37.00", + "well": 112288, + "start": "0.00", + "end": "37.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277191,9 +277191,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112891, - "casing_from": "2.50", - "casing_to": "34.50", + "well": 112891, + "start": "2.50", + "end": "34.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277210,9 +277210,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112459, - "casing_from": "0.00", - "casing_to": "86.00", + "well": 112459, + "start": "0.00", + "end": "86.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277229,9 +277229,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113211, - "casing_from": "0.00", - "casing_to": "66.03", + "well": 113211, + "start": "0.00", + "end": "66.03", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277248,9 +277248,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113070, - "casing_from": "0.00", - "casing_to": "39.00", + "well": 113070, + "start": "0.00", + "end": "39.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277267,9 +277267,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112955, - "casing_from": "0.00", - "casing_to": "66.00", + "well": 112955, + "start": "0.00", + "end": "66.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277286,9 +277286,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112691, - "casing_from": "0.00", - "casing_to": "114.17", + "well": 112691, + "start": "0.00", + "end": "114.17", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277305,9 +277305,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112347, - "casing_from": "0.00", - "casing_to": "131.02", + "well": 112347, + "start": "0.00", + "end": "131.02", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277324,9 +277324,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112410, - "casing_from": "0.00", - "casing_to": "21.00", + "well": 112410, + "start": "0.00", + "end": "21.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277343,9 +277343,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113246, - "casing_from": "0.00", - "casing_to": "83.00", + "well": 113246, + "start": "0.00", + "end": "83.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -277362,9 +277362,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113242, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113242, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277381,9 +277381,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112409, - "casing_from": "0.00", - "casing_to": "432.00", + "well": 112409, + "start": "0.00", + "end": "432.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277400,9 +277400,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112330, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112330, + "start": "0.00", + "end": "25.00", "diameter": "8.750", "casing_code": null, "casing_material": "STEEL", @@ -277419,9 +277419,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112913, - "casing_from": "0.00", - "casing_to": "219.00", + "well": 112913, + "start": "0.00", + "end": "219.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277438,9 +277438,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112766, - "casing_from": null, - "casing_to": null, + "well": 112766, + "start": null, + "end": null, "diameter": "6.250", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -277457,9 +277457,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113306, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113306, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277476,9 +277476,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112977, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112977, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277495,9 +277495,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113552, - "casing_from": "0.00", - "casing_to": "248.00", + "well": 113552, + "start": "0.00", + "end": "248.00", "diameter": "3.000", "casing_code": null, "casing_material": "PLASTIC", @@ -277514,9 +277514,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112393, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112393, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -277533,9 +277533,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112446, - "casing_from": "0.00", - "casing_to": "76.00", + "well": 112446, + "start": "0.00", + "end": "76.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277552,9 +277552,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112604, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112604, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277571,9 +277571,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113105, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 113105, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277590,9 +277590,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112411, - "casing_from": "0.00", - "casing_to": "52.00", + "well": 112411, + "start": "0.00", + "end": "52.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -277609,9 +277609,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112249, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112249, + "start": "0.00", + "end": "25.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -277628,9 +277628,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112235, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112235, + "start": "0.00", + "end": "200.00", "diameter": "8.750", "casing_code": null, "casing_material": null, @@ -277647,9 +277647,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112594, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112594, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277666,9 +277666,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112371, - "casing_from": "0.00", - "casing_to": "45.00", + "well": 112371, + "start": "0.00", + "end": "45.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277685,9 +277685,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112885, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112885, + "start": "0.00", + "end": "56.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -277704,9 +277704,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113135, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113135, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277723,9 +277723,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112632, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112632, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277742,9 +277742,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112429, - "casing_from": "0.00", - "casing_to": "280.00", + "well": 112429, + "start": "0.00", + "end": "280.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277761,9 +277761,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112290, - "casing_from": "0.00", - "casing_to": "98.00", + "well": 112290, + "start": "0.00", + "end": "98.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277780,9 +277780,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112417, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112417, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277799,9 +277799,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112561, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112561, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277818,9 +277818,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112929, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 112929, + "start": "0.00", + "end": "155.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277837,9 +277837,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113144, - "casing_from": "0.00", - "casing_to": "230.00", + "well": 113144, + "start": "0.00", + "end": "230.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277856,9 +277856,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113018, - "casing_from": "0.00", - "casing_to": "7.00", + "well": 113018, + "start": "0.00", + "end": "7.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277875,9 +277875,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:07:52Z", "activity_submission": null, - "well_tag_number": 112585, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112585, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -277894,9 +277894,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113021, - "casing_from": "0.00", - "casing_to": "169.00", + "well": 113021, + "start": "0.00", + "end": "169.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277913,9 +277913,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-06T02:22:53Z", "activity_submission": null, - "well_tag_number": 112279, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112279, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -277932,9 +277932,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:55:09Z", "activity_submission": null, - "well_tag_number": 113200, - "casing_from": "0.00", - "casing_to": "180.00", + "well": 113200, + "start": "0.00", + "end": "180.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -277951,9 +277951,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112392, - "casing_from": "0.00", - "casing_to": "76.00", + "well": 112392, + "start": "0.00", + "end": "76.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -277970,9 +277970,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112409, - "casing_from": "0.00", - "casing_to": "157.00", + "well": 112409, + "start": "0.00", + "end": "157.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -277989,9 +277989,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113254, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 113254, + "start": "0.00", + "end": "18.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278008,9 +278008,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112528, - "casing_from": "0.00", - "casing_to": "145.00", + "well": 112528, + "start": "0.00", + "end": "145.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278027,9 +278027,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112759, - "casing_from": "0.00", - "casing_to": "265.50", + "well": 112759, + "start": "0.00", + "end": "265.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278046,9 +278046,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 110000, - "casing_from": "0.00", - "casing_to": "41.02", + "well": 110000, + "start": "0.00", + "end": "41.02", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278065,9 +278065,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112851, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112851, + "start": "0.00", + "end": "36.00", "diameter": "24.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278084,9 +278084,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112590, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112590, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278103,9 +278103,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112687, - "casing_from": "0.00", - "casing_to": "56.58", + "well": 112687, + "start": "0.00", + "end": "56.58", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278122,9 +278122,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112718, - "casing_from": "0.00", - "casing_to": "0.00", + "well": 112718, + "start": "0.00", + "end": "0.00", "diameter": "17.000", "casing_code": null, "casing_material": null, @@ -278141,9 +278141,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112268, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112268, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -278160,9 +278160,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113117, - "casing_from": "879.00", - "casing_to": "1458.00", + "well": 113117, + "start": "879.00", + "end": "1458.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -278179,9 +278179,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112830, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112830, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278198,9 +278198,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112840, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112840, + "start": "0.00", + "end": "25.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278217,9 +278217,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112703, - "casing_from": "0.00", - "casing_to": "16.50", + "well": 112703, + "start": "0.00", + "end": "16.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278236,9 +278236,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112741, - "casing_from": "0.00", - "casing_to": "152.50", + "well": 112741, + "start": "0.00", + "end": "152.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -278255,9 +278255,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112343, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112343, + "start": "0.00", + "end": "15.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -278274,9 +278274,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112471, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112471, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278293,9 +278293,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113243, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113243, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278312,9 +278312,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112282, - "casing_from": "0.00", - "casing_to": "87.00", + "well": 112282, + "start": "0.00", + "end": "87.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278331,9 +278331,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112839, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112839, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278350,9 +278350,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112327, - "casing_from": "0.00", - "casing_to": "177.00", + "well": 112327, + "start": "0.00", + "end": "177.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -278369,9 +278369,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113006, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113006, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278388,9 +278388,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112739, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112739, + "start": "0.00", + "end": "26.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278407,9 +278407,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112401, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112401, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278426,9 +278426,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112964, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112964, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278445,9 +278445,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112450, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112450, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278464,9 +278464,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112866, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112866, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278483,9 +278483,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113108, - "casing_from": "0.00", - "casing_to": "170.01", + "well": 113108, + "start": "0.00", + "end": "170.01", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278502,9 +278502,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112772, - "casing_from": null, - "casing_to": null, + "well": 112772, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278521,9 +278521,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112901, - "casing_from": "3.00", - "casing_to": "185.00", + "well": 112901, + "start": "3.00", + "end": "185.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278540,9 +278540,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112744, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112744, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -278559,9 +278559,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112465, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112465, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278578,9 +278578,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112899, - "casing_from": "1.00", - "casing_to": "33.00", + "well": 112899, + "start": "1.00", + "end": "33.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278597,9 +278597,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112779, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 112779, + "start": "0.00", + "end": "96.00", "diameter": "5.560", "casing_code": null, "casing_material": "STEEL", @@ -278616,9 +278616,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112748, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112748, + "start": "0.00", + "end": "30.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -278635,9 +278635,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113065, - "casing_from": "0.00", - "casing_to": "211.00", + "well": 113065, + "start": "0.00", + "end": "211.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278654,9 +278654,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112317, - "casing_from": "0.00", - "casing_to": "175.00", + "well": 112317, + "start": "0.00", + "end": "175.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -278673,9 +278673,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112366, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112366, + "start": "0.00", + "end": "15.00", "diameter": "12.250", "casing_code": null, "casing_material": null, @@ -278692,9 +278692,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112588, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112588, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -278711,9 +278711,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112747, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 112747, + "start": "0.00", + "end": "19.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -278730,9 +278730,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112535, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112535, + "start": "0.00", + "end": "28.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -278749,9 +278749,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112276, - "casing_from": "0.00", - "casing_to": "134.07", + "well": 112276, + "start": "0.00", + "end": "134.07", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278768,9 +278768,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112901, - "casing_from": "1.00", - "casing_to": "19.00", + "well": 112901, + "start": "1.00", + "end": "19.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -278787,9 +278787,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112283, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 112283, + "start": "0.00", + "end": "96.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278806,9 +278806,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112280, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112280, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278825,9 +278825,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112470, - "casing_from": "0.00", - "casing_to": "85.00", + "well": 112470, + "start": "0.00", + "end": "85.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278844,9 +278844,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112690, - "casing_from": "0.00", - "casing_to": "18.83", + "well": 112690, + "start": "0.00", + "end": "18.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278863,9 +278863,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112523, - "casing_from": "30.50", - "casing_to": "37.00", + "well": 112523, + "start": "30.50", + "end": "37.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -278882,9 +278882,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112822, - "casing_from": "0.00", - "casing_to": "27.00", + "well": 112822, + "start": "0.00", + "end": "27.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278901,9 +278901,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113026, - "casing_from": "0.00", - "casing_to": "280.00", + "well": 113026, + "start": "0.00", + "end": "280.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -278920,9 +278920,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112515, - "casing_from": "0.00", - "casing_to": "7.00", + "well": 112515, + "start": "0.00", + "end": "7.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278939,9 +278939,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113271, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113271, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278958,9 +278958,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112950, - "casing_from": "0.00", - "casing_to": "70.00", + "well": 112950, + "start": "0.00", + "end": "70.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -278977,9 +278977,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112447, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112447, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -278996,9 +278996,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112444, - "casing_from": "20.00", - "casing_to": "360.00", + "well": 112444, + "start": "20.00", + "end": "360.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -279015,9 +279015,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112958, - "casing_from": "0.00", - "casing_to": "262.00", + "well": 112958, + "start": "0.00", + "end": "262.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -279034,9 +279034,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112407, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112407, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279053,9 +279053,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112361, - "casing_from": "0.00", - "casing_to": "15.10", + "well": 112361, + "start": "0.00", + "end": "15.10", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279072,9 +279072,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112838, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112838, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279091,9 +279091,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112385, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112385, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -279110,9 +279110,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112818, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112818, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279129,9 +279129,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112746, - "casing_from": "0.00", - "casing_to": "35.50", + "well": 112746, + "start": "0.00", + "end": "35.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -279148,9 +279148,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112482, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112482, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279167,9 +279167,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112256, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112256, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279186,9 +279186,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112479, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112479, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279205,9 +279205,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113172, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 113172, + "start": "0.00", + "end": "36.00", "diameter": "9.000", "casing_code": null, "casing_material": "STEEL", @@ -279224,9 +279224,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:24:47Z", "activity_submission": null, - "well_tag_number": 112533, - "casing_from": "0.00", - "casing_to": "252.00", + "well": 112533, + "start": "0.00", + "end": "252.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279243,9 +279243,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112474, - "casing_from": "0.00", - "casing_to": null, + "well": 112474, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -279262,9 +279262,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112948, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112948, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279281,9 +279281,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-04T05:53:17Z", "activity_submission": null, - "well_tag_number": 112244, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112244, + "start": "0.00", + "end": "40.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -279300,9 +279300,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112375, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112375, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279319,9 +279319,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112837, - "casing_from": "18.50", - "casing_to": "605.00", + "well": 112837, + "start": "18.50", + "end": "605.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -279338,9 +279338,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113278, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 113278, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279357,9 +279357,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112804, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112804, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279376,9 +279376,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113117, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 113117, + "start": "0.00", + "end": "96.00", "diameter": "16.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279395,9 +279395,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112440, - "casing_from": "0.00", - "casing_to": null, + "well": 112440, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279414,9 +279414,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112508, - "casing_from": "0.00", - "casing_to": "166.00", + "well": 112508, + "start": "0.00", + "end": "166.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -279433,9 +279433,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113243, - "casing_from": "0.00", - "casing_to": "77.00", + "well": 113243, + "start": "0.00", + "end": "77.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279452,9 +279452,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112945, - "casing_from": "0.00", - "casing_to": "75.00", + "well": 112945, + "start": "0.00", + "end": "75.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279471,9 +279471,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112881, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112881, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279490,9 +279490,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112969, - "casing_from": "0.00", - "casing_to": "45.00", + "well": 112969, + "start": "0.00", + "end": "45.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279509,9 +279509,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112343, - "casing_from": "15.00", - "casing_to": "18.00", + "well": 112343, + "start": "15.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -279528,9 +279528,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112931, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112931, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279547,9 +279547,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112562, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112562, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279566,9 +279566,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112763, - "casing_from": null, - "casing_to": null, + "well": 112763, + "start": null, + "end": null, "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -279585,9 +279585,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112542, - "casing_from": "0.00", - "casing_to": "195.00", + "well": 112542, + "start": "0.00", + "end": "195.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279604,9 +279604,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112812, - "casing_from": "0.00", - "casing_to": "293.00", + "well": 112812, + "start": "0.00", + "end": "293.00", "diameter": "16.000", "casing_code": null, "casing_material": "STEEL", @@ -279623,9 +279623,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112985, - "casing_from": "0.00", - "casing_to": "286.00", + "well": 112985, + "start": "0.00", + "end": "286.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279642,9 +279642,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112937, - "casing_from": "0.00", - "casing_to": "43.00", + "well": 112937, + "start": "0.00", + "end": "43.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -279661,9 +279661,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112902, - "casing_from": "4.00", - "casing_to": "94.50", + "well": 112902, + "start": "4.00", + "end": "94.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279680,9 +279680,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112670, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112670, + "start": "0.00", + "end": "40.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -279699,9 +279699,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112740, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112740, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -279718,9 +279718,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112504, - "casing_from": "0.00", - "casing_to": "73.50", + "well": 112504, + "start": "0.00", + "end": "73.50", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -279737,9 +279737,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112455, - "casing_from": "0.00", - "casing_to": "220.00", + "well": 112455, + "start": "0.00", + "end": "220.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279756,9 +279756,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113309, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 113309, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279775,9 +279775,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113503, - "casing_from": "0.00", - "casing_to": "63.00", + "well": 113503, + "start": "0.00", + "end": "63.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279794,9 +279794,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112796, - "casing_from": "0.00", - "casing_to": "195.00", + "well": 112796, + "start": "0.00", + "end": "195.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -279813,9 +279813,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112487, - "casing_from": "0.00", - "casing_to": "380.00", + "well": 112487, + "start": "0.00", + "end": "380.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279832,9 +279832,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112429, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112429, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279851,9 +279851,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113033, - "casing_from": "0.00", - "casing_to": "51.00", + "well": 113033, + "start": "0.00", + "end": "51.00", "diameter": "4.000", "casing_code": null, "casing_material": "STEEL", @@ -279870,9 +279870,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112558, - "casing_from": "0.00", - "casing_to": "58.03", + "well": 112558, + "start": "0.00", + "end": "58.03", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279889,9 +279889,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113041, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 113041, + "start": "0.00", + "end": "35.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -279908,9 +279908,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112494, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112494, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279927,9 +279927,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112496, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112496, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -279946,9 +279946,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112499, - "casing_from": "150.00", - "casing_to": "220.00", + "well": 112499, + "start": "150.00", + "end": "220.00", "diameter": null, "casing_code": null, "casing_material": null, @@ -279965,9 +279965,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112802, - "casing_from": "0.00", - "casing_to": "15.50", + "well": 112802, + "start": "0.00", + "end": "15.50", "diameter": "16.000", "casing_code": null, "casing_material": null, @@ -279984,9 +279984,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112967, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112967, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -280003,9 +280003,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112451, - "casing_from": "0.00", - "casing_to": "174.00", + "well": 112451, + "start": "0.00", + "end": "174.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280022,9 +280022,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112566, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112566, + "start": "0.00", + "end": "38.00", "diameter": "20.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280041,9 +280041,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112536, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112536, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280060,9 +280060,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112402, - "casing_from": "0.00", - "casing_to": null, + "well": 112402, + "start": "0.00", + "end": null, "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -280079,9 +280079,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112226, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112226, + "start": "0.00", + "end": "25.00", "diameter": "12.250", "casing_code": null, "casing_material": "OTHER", @@ -280098,9 +280098,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112332, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112332, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280117,9 +280117,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112850, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112850, + "start": "0.00", + "end": "20.00", "diameter": null, "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280136,9 +280136,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113101, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 113101, + "start": "0.00", + "end": "35.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280155,9 +280155,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112339, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112339, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -280174,9 +280174,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113131, - "casing_from": "0.00", - "casing_to": "201.00", + "well": 113131, + "start": "0.00", + "end": "201.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280193,9 +280193,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112456, - "casing_from": "40.00", - "casing_to": "260.00", + "well": 112456, + "start": "40.00", + "end": "260.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -280212,9 +280212,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112854, - "casing_from": "58.00", - "casing_to": "641.00", + "well": 112854, + "start": "58.00", + "end": "641.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -280231,9 +280231,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 102666, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 102666, + "start": "0.00", + "end": "16.00", "diameter": "6.600", "casing_code": null, "casing_material": "STEEL", @@ -280250,9 +280250,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-19T19:19:50Z", "activity_submission": null, - "well_tag_number": 112625, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112625, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280269,9 +280269,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113289, - "casing_from": "51.00", - "casing_to": "380.00", + "well": 113289, + "start": "51.00", + "end": "380.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -280288,9 +280288,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113295, - "casing_from": "0.00", - "casing_to": "454.00", + "well": 113295, + "start": "0.00", + "end": "454.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280307,9 +280307,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112432, - "casing_from": "0.00", - "casing_to": "216.00", + "well": 112432, + "start": "0.00", + "end": "216.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280326,9 +280326,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112764, - "casing_from": null, - "casing_to": null, + "well": 112764, + "start": null, + "end": null, "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -280345,9 +280345,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112559, - "casing_from": "0.00", - "casing_to": "42.11", + "well": 112559, + "start": "0.00", + "end": "42.11", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280364,9 +280364,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112258, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112258, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280383,9 +280383,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112862, - "casing_from": "2.00", - "casing_to": "114.00", + "well": 112862, + "start": "2.00", + "end": "114.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280402,9 +280402,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113305, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 113305, + "start": "0.00", + "end": "200.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -280421,9 +280421,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112258, - "casing_from": "0.00", - "casing_to": "72.00", + "well": 112258, + "start": "0.00", + "end": "72.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280440,9 +280440,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113145, - "casing_from": "0.00", - "casing_to": "16.50", + "well": 113145, + "start": "0.00", + "end": "16.50", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280459,9 +280459,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112854, - "casing_from": "2.00", - "casing_to": "58.00", + "well": 112854, + "start": "2.00", + "end": "58.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280478,9 +280478,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112747, - "casing_from": "0.00", - "casing_to": "19.70", + "well": 112747, + "start": "0.00", + "end": "19.70", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280497,9 +280497,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112719, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112719, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -280516,9 +280516,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112806, - "casing_from": "0.00", - "casing_to": "205.00", + "well": 112806, + "start": "0.00", + "end": "205.00", "diameter": "6.000", "casing_code": null, "casing_material": "PLASTIC", @@ -280535,9 +280535,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112581, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112581, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -280554,9 +280554,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112228, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112228, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -280573,9 +280573,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112319, - "casing_from": "0.00", - "casing_to": "63.00", + "well": 112319, + "start": "0.00", + "end": "63.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280592,9 +280592,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112696, - "casing_from": "0.00", - "casing_to": "40.50", + "well": 112696, + "start": "0.00", + "end": "40.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280611,9 +280611,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112592, - "casing_from": "0.00", - "casing_to": "10.00", + "well": 112592, + "start": "0.00", + "end": "10.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -280630,9 +280630,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112612, - "casing_from": "0.00", - "casing_to": "40.09", + "well": 112612, + "start": "0.00", + "end": "40.09", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280649,9 +280649,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113097, - "casing_from": "55.00", - "casing_to": "543.00", + "well": 113097, + "start": "55.00", + "end": "543.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -280668,9 +280668,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112320, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112320, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280687,9 +280687,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112883, - "casing_from": "0.00", - "casing_to": "123.25", + "well": 112883, + "start": "0.00", + "end": "123.25", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -280706,9 +280706,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112940, - "casing_from": "0.00", - "casing_to": "70.00", + "well": 112940, + "start": "0.00", + "end": "70.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280725,9 +280725,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112823, - "casing_from": "0.00", - "casing_to": "156.00", + "well": 112823, + "start": "0.00", + "end": "156.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280744,9 +280744,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112310, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112310, + "start": "0.00", + "end": "20.00", "diameter": "4.000", "casing_code": null, "casing_material": "STEEL", @@ -280763,9 +280763,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112358, - "casing_from": "0.00", - "casing_to": "93.00", + "well": 112358, + "start": "0.00", + "end": "93.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280782,9 +280782,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112912, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 112912, + "start": "0.00", + "end": "50.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280801,9 +280801,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113082, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113082, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280820,9 +280820,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112393, - "casing_from": "0.00", - "casing_to": "64.17", + "well": 112393, + "start": "0.00", + "end": "64.17", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -280839,9 +280839,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112887, - "casing_from": "2.00", - "casing_to": "100.50", + "well": 112887, + "start": "2.00", + "end": "100.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280858,9 +280858,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112231, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112231, + "start": "0.00", + "end": "18.00", "diameter": "8.500", "casing_code": null, "casing_material": "STEEL", @@ -280877,9 +280877,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113116, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113116, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280896,9 +280896,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112776, - "casing_from": null, - "casing_to": null, + "well": 112776, + "start": null, + "end": null, "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -280915,9 +280915,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112278, - "casing_from": "0.00", - "casing_to": "271.00", + "well": 112278, + "start": "0.00", + "end": "271.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280934,9 +280934,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112412, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112412, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -280953,9 +280953,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113191, - "casing_from": "0.00", - "casing_to": "280.00", + "well": 113191, + "start": "0.00", + "end": "280.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -280972,9 +280972,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:21:22Z", "activity_submission": null, - "well_tag_number": 113170, - "casing_from": "0.00", - "casing_to": "190.00", + "well": 113170, + "start": "0.00", + "end": "190.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -280991,9 +280991,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112917, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112917, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -281010,9 +281010,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112587, - "casing_from": "12.00", - "casing_to": "18.00", + "well": 112587, + "start": "12.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -281029,9 +281029,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112329, - "casing_from": "0.00", - "casing_to": "416.00", + "well": 112329, + "start": "0.00", + "end": "416.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281048,9 +281048,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113124, - "casing_from": "0.00", - "casing_to": "73.50", + "well": 113124, + "start": "0.00", + "end": "73.50", "diameter": "24.000", "casing_code": null, "casing_material": "STEEL", @@ -281067,9 +281067,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112896, - "casing_from": "2.00", - "casing_to": "37.00", + "well": 112896, + "start": "2.00", + "end": "37.00", "diameter": "6.000", "casing_code": null, "casing_material": "OTHER", @@ -281086,9 +281086,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112377, - "casing_from": "0.00", - "casing_to": "107.00", + "well": 112377, + "start": "0.00", + "end": "107.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281105,9 +281105,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112563, - "casing_from": "0.00", - "casing_to": "180.00", + "well": 112563, + "start": "0.00", + "end": "180.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -281124,9 +281124,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112737, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112737, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -281143,9 +281143,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112550, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112550, + "start": "0.00", + "end": "200.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -281162,9 +281162,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112983, - "casing_from": "0.00", - "casing_to": "84.00", + "well": 112983, + "start": "0.00", + "end": "84.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281181,9 +281181,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:00:02Z", "activity_submission": null, - "well_tag_number": 112714, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112714, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -281200,9 +281200,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112812, - "casing_from": "0.00", - "casing_to": "357.50", + "well": 112812, + "start": "0.00", + "end": "357.50", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -281219,9 +281219,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113246, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113246, + "start": "0.00", + "end": "16.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -281238,9 +281238,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113290, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113290, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281257,9 +281257,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100542, - "casing_from": "1.00", - "casing_to": "19.00", + "well": 100542, + "start": "1.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281276,9 +281276,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112738, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112738, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -281295,9 +281295,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112477, - "casing_from": "20.00", - "casing_to": "140.00", + "well": 112477, + "start": "20.00", + "end": "140.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -281314,9 +281314,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112313, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112313, + "start": "0.00", + "end": "56.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281333,9 +281333,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112287, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112287, + "start": "0.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281352,9 +281352,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112588, - "casing_from": "15.00", - "casing_to": "18.00", + "well": 112588, + "start": "15.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -281371,9 +281371,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112742, - "casing_from": "0.00", - "casing_to": "97.00", + "well": 112742, + "start": "0.00", + "end": "97.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281390,9 +281390,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113088, - "casing_from": "19.00", - "casing_to": "501.00", + "well": 113088, + "start": "19.00", + "end": "501.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -281409,9 +281409,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113035, - "casing_from": "0.00", - "casing_to": "118.00", + "well": 113035, + "start": "0.00", + "end": "118.00", "diameter": "2.000", "casing_code": null, "casing_material": null, @@ -281428,9 +281428,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112633, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112633, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281447,9 +281447,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112916, - "casing_from": "0.00", - "casing_to": "178.00", + "well": 112916, + "start": "0.00", + "end": "178.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -281466,9 +281466,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113210, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 113210, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281485,9 +281485,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112324, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112324, + "start": "0.00", + "end": "36.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281504,9 +281504,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112517, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112517, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -281523,9 +281523,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112588, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112588, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -281542,9 +281542,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112611, - "casing_from": "0.00", - "casing_to": null, + "well": 112611, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281561,9 +281561,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112979, - "casing_from": "0.00", - "casing_to": "103.00", + "well": 112979, + "start": "0.00", + "end": "103.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281580,9 +281580,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112755, - "casing_from": "0.00", - "casing_to": "88.00", + "well": 112755, + "start": "0.00", + "end": "88.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281599,9 +281599,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112749, - "casing_from": "0.00", - "casing_to": "37.00", + "well": 112749, + "start": "0.00", + "end": "37.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281618,9 +281618,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112564, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112564, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281637,9 +281637,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112971, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112971, + "start": "0.00", + "end": "40.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281656,9 +281656,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112439, - "casing_from": "0.00", - "casing_to": "19.02", + "well": 112439, + "start": "0.00", + "end": "19.02", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281675,9 +281675,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112230, - "casing_from": "0.00", - "casing_to": "31.00", + "well": 112230, + "start": "0.00", + "end": "31.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281694,9 +281694,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112797, - "casing_from": "0.00", - "casing_to": "83.38", + "well": 112797, + "start": "0.00", + "end": "83.38", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281713,9 +281713,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112537, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112537, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -281732,9 +281732,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113255, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113255, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -281751,9 +281751,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112966, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112966, + "start": "0.00", + "end": "26.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -281770,9 +281770,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112575, - "casing_from": "0.00", - "casing_to": "44.50", + "well": 112575, + "start": "0.00", + "end": "44.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -281789,9 +281789,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112738, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112738, + "start": "0.00", + "end": "55.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281808,9 +281808,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112621, - "casing_from": "0.00", - "casing_to": "114.00", + "well": 112621, + "start": "0.00", + "end": "114.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -281827,9 +281827,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112478, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112478, + "start": "0.00", + "end": "20.00", "diameter": null, "casing_code": null, "casing_material": "STL_PUL_OT", @@ -281846,9 +281846,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112737, - "casing_from": "0.00", - "casing_to": "78.00", + "well": 112737, + "start": "0.00", + "end": "78.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281865,9 +281865,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113308, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113308, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -281884,9 +281884,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112421, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112421, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -281903,9 +281903,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113210, - "casing_from": "10.00", - "casing_to": "100.00", + "well": 113210, + "start": "10.00", + "end": "100.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -281922,9 +281922,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T00:05:26Z", "activity_submission": null, - "well_tag_number": 112340, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112340, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -281941,9 +281941,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112496, - "casing_from": "155.00", - "casing_to": "160.00", + "well": 112496, + "start": "155.00", + "end": "160.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -281960,9 +281960,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112665, - "casing_from": "0.00", - "casing_to": "58.00", + "well": 112665, + "start": "0.00", + "end": "58.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -281979,9 +281979,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112239, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112239, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -281998,9 +281998,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112592, - "casing_from": "0.00", - "casing_to": "64.00", + "well": 112592, + "start": "0.00", + "end": "64.00", "diameter": "2.000", "casing_code": null, "casing_material": "PLASTIC", @@ -282017,9 +282017,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112593, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112593, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282036,9 +282036,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112883, - "casing_from": "34.00", - "casing_to": "532.00", + "well": 112883, + "start": "34.00", + "end": "532.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -282055,9 +282055,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113253, - "casing_from": "0.00", - "casing_to": "165.00", + "well": 113253, + "start": "0.00", + "end": "165.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282074,9 +282074,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113115, - "casing_from": "0.00", - "casing_to": "146.00", + "well": 113115, + "start": "0.00", + "end": "146.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282093,9 +282093,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112482, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112482, + "start": "0.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282112,9 +282112,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112981, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112981, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282131,9 +282131,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112717, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112717, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -282150,9 +282150,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112228, - "casing_from": "18.00", - "casing_to": "175.00", + "well": 112228, + "start": "18.00", + "end": "175.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -282169,9 +282169,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112876, - "casing_from": "0.00", - "casing_to": "93.83", + "well": 112876, + "start": "0.00", + "end": "93.83", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282188,9 +282188,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112480, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112480, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282207,9 +282207,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112719, - "casing_from": "0.00", - "casing_to": "215.00", + "well": 112719, + "start": "0.00", + "end": "215.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282226,9 +282226,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113277, - "casing_from": "18.00", - "casing_to": "260.00", + "well": 113277, + "start": "18.00", + "end": "260.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -282245,9 +282245,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113019, - "casing_from": "0.00", - "casing_to": "49.00", + "well": 113019, + "start": "0.00", + "end": "49.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282264,9 +282264,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112765, - "casing_from": null, - "casing_to": null, + "well": 112765, + "start": null, + "end": null, "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -282283,9 +282283,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112289, - "casing_from": "0.00", - "casing_to": "68.50", + "well": 112289, + "start": "0.00", + "end": "68.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282302,9 +282302,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113182, - "casing_from": "0.00", - "casing_to": "156.00", + "well": 113182, + "start": "0.00", + "end": "156.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282321,9 +282321,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112649, - "casing_from": "300.00", - "casing_to": "540.00", + "well": 112649, + "start": "300.00", + "end": "540.00", "diameter": "5.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -282340,9 +282340,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113141, - "casing_from": "0.00", - "casing_to": "66.00", + "well": 113141, + "start": "0.00", + "end": "66.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282359,9 +282359,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112652, - "casing_from": "200.00", - "casing_to": "400.00", + "well": 112652, + "start": "200.00", + "end": "400.00", "diameter": "5.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -282378,9 +282378,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112440, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112440, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282397,9 +282397,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112544, - "casing_from": "50.00", - "casing_to": "75.00", + "well": 112544, + "start": "50.00", + "end": "75.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -282416,9 +282416,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112434, - "casing_from": "0.00", - "casing_to": "113.01", + "well": 112434, + "start": "0.00", + "end": "113.01", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282435,9 +282435,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112314, - "casing_from": "0.00", - "casing_to": "42.00", + "well": 112314, + "start": "0.00", + "end": "42.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282454,9 +282454,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112784, - "casing_from": "3.75", - "casing_to": "43.40", + "well": 112784, + "start": "3.75", + "end": "43.40", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -282473,9 +282473,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113060, - "casing_from": "0.00", - "casing_to": "199.00", + "well": 113060, + "start": "0.00", + "end": "199.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282492,9 +282492,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112923, - "casing_from": "0.00", - "casing_to": "195.00", + "well": 112923, + "start": "0.00", + "end": "195.00", "diameter": "6.630", "casing_code": null, "casing_material": null, @@ -282511,9 +282511,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112972, - "casing_from": "0.00", - "casing_to": "74.00", + "well": 112972, + "start": "0.00", + "end": "74.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282530,9 +282530,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112356, - "casing_from": "0.00", - "casing_to": "72.00", + "well": 112356, + "start": "0.00", + "end": "72.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282549,9 +282549,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112538, - "casing_from": "0.00", - "casing_to": "289.00", + "well": 112538, + "start": "0.00", + "end": "289.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282568,9 +282568,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112918, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112918, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -282587,9 +282587,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:24:50Z", "activity_submission": null, - "well_tag_number": 112712, - "casing_from": "0.00", - "casing_to": "36.50", + "well": 112712, + "start": "0.00", + "end": "36.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282606,9 +282606,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112717, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112717, + "start": "0.00", + "end": "55.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282625,9 +282625,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112330, - "casing_from": "178.50", - "casing_to": "300.00", + "well": 112330, + "start": "178.50", + "end": "300.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -282644,9 +282644,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112225, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112225, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -282663,9 +282663,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112540, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112540, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282682,9 +282682,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113252, - "casing_from": "0.00", - "casing_to": "175.00", + "well": 113252, + "start": "0.00", + "end": "175.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282701,9 +282701,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113146, - "casing_from": "0.00", - "casing_to": "340.00", + "well": 113146, + "start": "0.00", + "end": "340.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282720,9 +282720,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100001, - "casing_from": "0.00", - "casing_to": "13.00", + "well": 100001, + "start": "0.00", + "end": "13.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282739,9 +282739,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113007, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113007, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282758,9 +282758,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112745, - "casing_from": "0.00", - "casing_to": "35.50", + "well": 112745, + "start": "0.00", + "end": "35.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -282777,9 +282777,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112565, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112565, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282796,9 +282796,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112598, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112598, + "start": "0.00", + "end": "56.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -282815,9 +282815,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112433, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 112433, + "start": "0.00", + "end": "155.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282834,9 +282834,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112416, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112416, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282853,9 +282853,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112830, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112830, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282872,9 +282872,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112806, - "casing_from": "0.00", - "casing_to": "8.00", + "well": 112806, + "start": "0.00", + "end": "8.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282891,9 +282891,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112457, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112457, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282910,9 +282910,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112405, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112405, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -282929,9 +282929,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112560, - "casing_from": "0.00", - "casing_to": "34.01", + "well": 112560, + "start": "0.00", + "end": "34.01", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -282948,9 +282948,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112566, - "casing_from": "0.00", - "casing_to": "455.00", + "well": 112566, + "start": "0.00", + "end": "455.00", "diameter": "12.000", "casing_code": null, "casing_material": null, @@ -282967,9 +282967,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T20:38:37Z", "activity_submission": null, - "well_tag_number": 112222, - "casing_from": "0.00", - "casing_to": "137.50", + "well": 112222, + "start": "0.00", + "end": "137.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -282986,9 +282986,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112458, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112458, + "start": "0.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283005,9 +283005,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112415, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112415, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283024,9 +283024,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113093, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 113093, + "start": "0.00", + "end": "40.00", "diameter": "6.650", "casing_code": null, "casing_material": "STEEL", @@ -283043,9 +283043,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112462, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112462, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283062,9 +283062,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113185, - "casing_from": "0.00", - "casing_to": "115.00", + "well": 113185, + "start": "0.00", + "end": "115.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283081,9 +283081,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113090, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 113090, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283100,9 +283100,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112274, - "casing_from": "0.00", - "casing_to": "67.00", + "well": 112274, + "start": "0.00", + "end": "67.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283119,9 +283119,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112326, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112326, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283138,9 +283138,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113172, - "casing_from": "76.00", - "casing_to": "136.00", + "well": 113172, + "start": "76.00", + "end": "136.00", "diameter": "9.000", "casing_code": null, "casing_material": "STEEL", @@ -283157,9 +283157,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112707, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112707, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283176,9 +283176,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112726, - "casing_from": "0.00", - "casing_to": "177.00", + "well": 112726, + "start": "0.00", + "end": "177.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283195,9 +283195,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113092, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 113092, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283214,9 +283214,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112675, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112675, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283233,9 +283233,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112820, - "casing_from": "0.00", - "casing_to": "32.00", + "well": 112820, + "start": "0.00", + "end": "32.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283252,9 +283252,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112949, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112949, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283271,9 +283271,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112523, - "casing_from": "0.00", - "casing_to": "26.50", + "well": 112523, + "start": "0.00", + "end": "26.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283290,9 +283290,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112839, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 112839, + "start": "0.00", + "end": "5.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283309,9 +283309,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113166, - "casing_from": "0.00", - "casing_to": "19.50", + "well": 113166, + "start": "0.00", + "end": "19.50", "diameter": "4.000", "casing_code": null, "casing_material": "STEEL", @@ -283328,9 +283328,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112408, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112408, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283347,9 +283347,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113069, - "casing_from": "0.00", - "casing_to": "303.00", + "well": 113069, + "start": "0.00", + "end": "303.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283366,9 +283366,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112333, - "casing_from": "2.00", - "casing_to": "100.00", + "well": 112333, + "start": "2.00", + "end": "100.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283385,9 +283385,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112980, - "casing_from": "0.00", - "casing_to": "14.00", + "well": 112980, + "start": "0.00", + "end": "14.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -283404,9 +283404,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112608, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112608, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283423,9 +283423,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112786, - "casing_from": "2.00", - "casing_to": "14.00", + "well": 112786, + "start": "2.00", + "end": "14.00", "diameter": "36.000", "casing_code": null, "casing_material": null, @@ -283442,9 +283442,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112768, - "casing_from": "0.00", - "casing_to": "1115.00", + "well": 112768, + "start": "0.00", + "end": "1115.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -283461,9 +283461,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113154, - "casing_from": "0.00", - "casing_to": "40.50", + "well": 113154, + "start": "0.00", + "end": "40.50", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -283480,9 +283480,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112724, - "casing_from": "0.00", - "casing_to": "69.00", + "well": 112724, + "start": "0.00", + "end": "69.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283499,9 +283499,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112587, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112587, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -283518,9 +283518,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113019, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113019, + "start": "0.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283537,9 +283537,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112845, - "casing_from": "0.00", - "casing_to": "79.50", + "well": 112845, + "start": "0.00", + "end": "79.50", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -283556,9 +283556,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112468, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112468, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283575,9 +283575,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113140, - "casing_from": "0.00", - "casing_to": "22.02", + "well": 113140, + "start": "0.00", + "end": "22.02", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283594,9 +283594,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113206, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 113206, + "start": "0.00", + "end": "95.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283613,9 +283613,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112271, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112271, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283632,9 +283632,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112241, - "casing_from": "0.00", - "casing_to": "91.00", + "well": 112241, + "start": "0.00", + "end": "91.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283651,9 +283651,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112280, - "casing_from": "0.00", - "casing_to": "29.00", + "well": 112280, + "start": "0.00", + "end": "29.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283670,9 +283670,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112872, - "casing_from": "0.00", - "casing_to": "17.67", + "well": 112872, + "start": "0.00", + "end": "17.67", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283689,9 +283689,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113100, - "casing_from": "10.00", - "casing_to": "20.00", + "well": 113100, + "start": "10.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": null, @@ -283708,9 +283708,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112696, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112696, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -283727,9 +283727,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112837, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112837, + "start": "0.00", + "end": "18.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283746,9 +283746,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112721, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112721, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -283765,9 +283765,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112811, - "casing_from": "0.00", - "casing_to": "32.00", + "well": 112811, + "start": "0.00", + "end": "32.00", "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -283784,9 +283784,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113150, - "casing_from": "0.00", - "casing_to": "29.00", + "well": 113150, + "start": "0.00", + "end": "29.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -283803,9 +283803,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112246, - "casing_from": "0.00", - "casing_to": "36.50", + "well": 112246, + "start": "0.00", + "end": "36.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283822,9 +283822,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112638, - "casing_from": "0.00", - "casing_to": "54.00", + "well": 112638, + "start": "0.00", + "end": "54.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283841,9 +283841,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112554, - "casing_from": "1.00", - "casing_to": "183.00", + "well": 112554, + "start": "1.00", + "end": "183.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283860,9 +283860,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113121, - "casing_from": "0.00", - "casing_to": "151.00", + "well": 113121, + "start": "0.00", + "end": "151.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -283879,9 +283879,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112220, - "casing_from": "0.00", - "casing_to": "12.00", + "well": 112220, + "start": "0.00", + "end": "12.00", "diameter": "16.000", "casing_code": null, "casing_material": "PLASTIC", @@ -283898,9 +283898,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112435, - "casing_from": "0.00", - "casing_to": "78.04", + "well": 112435, + "start": "0.00", + "end": "78.04", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283917,9 +283917,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112900, - "casing_from": "2.00", - "casing_to": "18.00", + "well": 112900, + "start": "2.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283936,9 +283936,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113179, - "casing_from": "0.00", - "casing_to": "156.00", + "well": 113179, + "start": "0.00", + "end": "156.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283955,9 +283955,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112653, - "casing_from": "140.00", - "casing_to": "780.00", + "well": 112653, + "start": "140.00", + "end": "780.00", "diameter": "5.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -283974,9 +283974,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113289, - "casing_from": "0.00", - "casing_to": "51.00", + "well": 113289, + "start": "0.00", + "end": "51.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -283993,9 +283993,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112540, - "casing_from": "0.00", - "casing_to": "130.00", + "well": 112540, + "start": "0.00", + "end": "130.00", "diameter": "6.000", "casing_code": null, "casing_material": "OTHER", @@ -284012,9 +284012,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112548, - "casing_from": "0.00", - "casing_to": "188.00", + "well": 112548, + "start": "0.00", + "end": "188.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284031,9 +284031,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112425, - "casing_from": "0.00", - "casing_to": "74.00", + "well": 112425, + "start": "0.00", + "end": "74.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284050,9 +284050,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112841, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112841, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284069,9 +284069,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112642, - "casing_from": "0.00", - "casing_to": "74.00", + "well": 112642, + "start": "0.00", + "end": "74.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284088,9 +284088,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112635, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112635, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284107,9 +284107,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113299, - "casing_from": "236.00", - "casing_to": "700.00", + "well": 113299, + "start": "236.00", + "end": "700.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284126,9 +284126,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 107072, - "casing_from": "0.00", - "casing_to": "162.00", + "well": 107072, + "start": "0.00", + "end": "162.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284145,9 +284145,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112489, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112489, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284164,9 +284164,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113171, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113171, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284183,9 +284183,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112877, - "casing_from": "20.00", - "casing_to": "394.00", + "well": 112877, + "start": "20.00", + "end": "394.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -284202,9 +284202,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113018, - "casing_from": "18.00", - "casing_to": "300.00", + "well": 113018, + "start": "18.00", + "end": "300.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284221,9 +284221,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112853, - "casing_from": "2.00", - "casing_to": "37.00", + "well": 112853, + "start": "2.00", + "end": "37.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -284240,9 +284240,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113088, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113088, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284259,9 +284259,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112979, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112979, + "start": "0.00", + "end": "25.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -284278,9 +284278,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112872, - "casing_from": "8.42", - "casing_to": "294.00", + "well": 112872, + "start": "8.42", + "end": "294.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -284297,9 +284297,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112771, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112771, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -284316,9 +284316,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113117, - "casing_from": "0.00", - "casing_to": "879.00", + "well": 113117, + "start": "0.00", + "end": "879.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284335,9 +284335,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112430, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112430, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284354,9 +284354,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113276, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 113276, + "start": "0.00", + "end": "55.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284373,9 +284373,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:09:04Z", "activity_submission": null, - "well_tag_number": 112229, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112229, + "start": "0.00", + "end": "28.00", "diameter": "12.500", "casing_code": null, "casing_material": "OTHER", @@ -284392,9 +284392,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112603, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112603, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284411,9 +284411,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112234, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112234, + "start": "0.00", + "end": "56.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -284430,9 +284430,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112338, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112338, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284449,9 +284449,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112552, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112552, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284468,9 +284468,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112655, - "casing_from": "0.00", - "casing_to": "71.00", + "well": 112655, + "start": "0.00", + "end": "71.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284487,9 +284487,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112998, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112998, + "start": "0.00", + "end": "116.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -284506,9 +284506,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112758, - "casing_from": "0.00", - "casing_to": "379.00", + "well": 112758, + "start": "0.00", + "end": "379.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284525,9 +284525,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112833, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112833, + "start": "0.00", + "end": "18.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284544,9 +284544,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112599, - "casing_from": "0.00", - "casing_to": "112.00", + "well": 112599, + "start": "0.00", + "end": "112.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284563,9 +284563,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112967, - "casing_from": "0.00", - "casing_to": "39.50", + "well": 112967, + "start": "0.00", + "end": "39.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284582,9 +284582,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 110750, - "casing_from": "0.00", - "casing_to": "67.00", + "well": 110750, + "start": "0.00", + "end": "67.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -284601,9 +284601,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-12T18:43:23Z", "activity_submission": null, - "well_tag_number": 112605, - "casing_from": "0.00", - "casing_to": "111.00", + "well": 112605, + "start": "0.00", + "end": "111.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284620,9 +284620,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112461, - "casing_from": "100.00", - "casing_to": "400.00", + "well": 112461, + "start": "100.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284639,9 +284639,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 109912, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 109912, + "start": "0.00", + "end": "16.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -284658,9 +284658,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112501, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112501, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284677,9 +284677,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112991, - "casing_from": "0.00", - "casing_to": "371.00", + "well": 112991, + "start": "0.00", + "end": "371.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284696,9 +284696,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112423, - "casing_from": "0.00", - "casing_to": "612.00", + "well": 112423, + "start": "0.00", + "end": "612.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284715,9 +284715,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112834, - "casing_from": "56.00", - "casing_to": "400.00", + "well": 112834, + "start": "56.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284734,9 +284734,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112248, - "casing_from": "0.00", - "casing_to": "75.00", + "well": 112248, + "start": "0.00", + "end": "75.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284753,9 +284753,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112757, - "casing_from": "0.00", - "casing_to": "368.00", + "well": 112757, + "start": "0.00", + "end": "368.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284772,9 +284772,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112430, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112430, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -284791,9 +284791,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112416, - "casing_from": "0.00", - "casing_to": "220.00", + "well": 112416, + "start": "0.00", + "end": "220.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284810,9 +284810,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112351, - "casing_from": "0.00", - "casing_to": "43.01", + "well": 112351, + "start": "0.00", + "end": "43.01", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284829,9 +284829,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112748, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112748, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -284848,9 +284848,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112515, - "casing_from": "18.00", - "casing_to": "100.00", + "well": 112515, + "start": "18.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284867,9 +284867,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112587, - "casing_from": "18.00", - "casing_to": "650.00", + "well": 112587, + "start": "18.00", + "end": "650.00", "diameter": "6.250", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284886,9 +284886,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112513, - "casing_from": "0.00", - "casing_to": "135.00", + "well": 112513, + "start": "0.00", + "end": "135.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284905,9 +284905,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112980, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112980, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -284924,9 +284924,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112860, - "casing_from": "2.00", - "casing_to": "58.00", + "well": 112860, + "start": "2.00", + "end": "58.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -284943,9 +284943,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113307, - "casing_from": "11.00", - "casing_to": "19.00", + "well": 113307, + "start": "11.00", + "end": "19.00", "diameter": "10.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -284962,9 +284962,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112668, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112668, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -284981,9 +284981,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112428, - "casing_from": "0.00", - "casing_to": "194.00", + "well": 112428, + "start": "0.00", + "end": "194.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285000,9 +285000,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112509, - "casing_from": "0.00", - "casing_to": "76.50", + "well": 112509, + "start": "0.00", + "end": "76.50", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -285019,9 +285019,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112936, - "casing_from": "0.00", - "casing_to": "273.00", + "well": 112936, + "start": "0.00", + "end": "273.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -285038,9 +285038,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112415, - "casing_from": "0.00", - "casing_to": "260.00", + "well": 112415, + "start": "0.00", + "end": "260.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285057,9 +285057,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112268, - "casing_from": "12.00", - "casing_to": "18.00", + "well": 112268, + "start": "12.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285076,9 +285076,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112424, - "casing_from": "32.00", - "casing_to": "200.00", + "well": 112424, + "start": "32.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -285095,9 +285095,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112930, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 112930, + "start": "0.00", + "end": "155.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285114,9 +285114,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112628, - "casing_from": "0.00", - "casing_to": "215.00", + "well": 112628, + "start": "0.00", + "end": "215.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285133,9 +285133,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112345, - "casing_from": "0.00", - "casing_to": "38.50", + "well": 112345, + "start": "0.00", + "end": "38.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -285152,9 +285152,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112883, - "casing_from": "390.00", - "casing_to": "392.00", + "well": 112883, + "start": "390.00", + "end": "392.00", "diameter": null, "casing_code": null, "casing_material": "OTHER", @@ -285171,9 +285171,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112910, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112910, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285190,9 +285190,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112978, - "casing_from": "0.00", - "casing_to": "113.00", + "well": 112978, + "start": "0.00", + "end": "113.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285209,9 +285209,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112869, - "casing_from": "8.42", - "casing_to": "114.00", + "well": 112869, + "start": "8.42", + "end": "114.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -285228,9 +285228,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112545, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112545, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285247,9 +285247,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113017, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 113017, + "start": "0.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285266,9 +285266,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113255, - "casing_from": "0.00", - "casing_to": "22.00", + "well": 113255, + "start": "0.00", + "end": "22.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285285,9 +285285,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T20:00:56Z", "activity_submission": null, - "well_tag_number": 112735, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112735, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -285304,9 +285304,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112403, - "casing_from": "0.00", - "casing_to": "195.00", + "well": 112403, + "start": "0.00", + "end": "195.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285323,9 +285323,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112934, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112934, + "start": "0.00", + "end": "15.00", "diameter": null, "casing_code": null, "casing_material": null, @@ -285342,9 +285342,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112513, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112513, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285361,9 +285361,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112658, - "casing_from": null, - "casing_to": null, + "well": 112658, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "OTHER", @@ -285380,9 +285380,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112673, - "casing_from": "0.00", - "casing_to": "109.50", + "well": 112673, + "start": "0.00", + "end": "109.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -285399,9 +285399,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113265, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 113265, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285418,9 +285418,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112766, - "casing_from": "0.00", - "casing_to": "1115.00", + "well": 112766, + "start": "0.00", + "end": "1115.00", "diameter": "7.000", "casing_code": null, "casing_material": "STEEL", @@ -285437,9 +285437,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113017, - "casing_from": "17.00", - "casing_to": "240.00", + "well": 113017, + "start": "17.00", + "end": "240.00", "diameter": "6.000", "casing_code": null, "casing_material": "PLASTIC", @@ -285456,9 +285456,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112981, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112981, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285475,9 +285475,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112975, - "casing_from": "0.00", - "casing_to": "118.00", + "well": 112975, + "start": "0.00", + "end": "118.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285494,9 +285494,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113257, - "casing_from": "0.00", - "casing_to": "259.00", + "well": 113257, + "start": "0.00", + "end": "259.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -285513,9 +285513,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112380, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112380, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -285532,9 +285532,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113202, - "casing_from": "0.00", - "casing_to": "45.00", + "well": 113202, + "start": "0.00", + "end": "45.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285551,9 +285551,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112323, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112323, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -285570,9 +285570,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 102364, - "casing_from": "19.00", - "casing_to": "120.00", + "well": 102364, + "start": "19.00", + "end": "120.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -285589,9 +285589,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113262, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 113262, + "start": "0.00", + "end": "95.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285608,9 +285608,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-10-12T18:04:28Z", "activity_submission": null, - "well_tag_number": 112898, - "casing_from": "0.00", - "casing_to": "131.50", + "well": 112898, + "start": "0.00", + "end": "131.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285627,9 +285627,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112519, - "casing_from": "0.00", - "casing_to": "436.00", + "well": 112519, + "start": "0.00", + "end": "436.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285646,9 +285646,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T23:05:49Z", "activity_submission": null, - "well_tag_number": 113031, - "casing_from": "0.00", - "casing_to": "156.00", + "well": 113031, + "start": "0.00", + "end": "156.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285665,9 +285665,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112816, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 112816, + "start": "0.00", + "end": "19.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285684,9 +285684,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112474, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112474, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285703,9 +285703,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112436, - "casing_from": "0.00", - "casing_to": "247.06", + "well": 112436, + "start": "0.00", + "end": "247.06", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285722,9 +285722,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100501, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 100501, + "start": "0.00", + "end": "18.00", "diameter": "7.880", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -285741,9 +285741,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112376, - "casing_from": "0.00", - "casing_to": "45.00", + "well": 112376, + "start": "0.00", + "end": "45.00", "diameter": "6.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285760,9 +285760,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113018, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113018, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285779,9 +285779,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112982, - "casing_from": "0.00", - "casing_to": "73.00", + "well": 112982, + "start": "0.00", + "end": "73.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285798,9 +285798,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112466, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112466, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285817,9 +285817,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112418, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112418, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -285836,9 +285836,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112243, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112243, + "start": "0.00", + "end": "60.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -285855,9 +285855,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112964, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112964, + "start": "0.00", + "end": "40.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -285874,9 +285874,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113247, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113247, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285893,9 +285893,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112444, - "casing_from": "0.00", - "casing_to": "820.00", + "well": 112444, + "start": "0.00", + "end": "820.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285912,9 +285912,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-09T20:58:53Z", "activity_submission": null, - "well_tag_number": 113083, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 113083, + "start": "0.00", + "end": "25.00", "diameter": "48.000", "casing_code": null, "casing_material": "CEMENT", @@ -285931,9 +285931,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113036, - "casing_from": "0.00", - "casing_to": "23.00", + "well": 113036, + "start": "0.00", + "end": "23.00", "diameter": "12.000", "casing_code": null, "casing_material": null, @@ -285950,9 +285950,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112468, - "casing_from": "60.00", - "casing_to": "400.00", + "well": 112468, + "start": "60.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -285969,9 +285969,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112262, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112262, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -285988,9 +285988,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T22:03:14Z", "activity_submission": null, - "well_tag_number": 112675, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112675, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286007,9 +286007,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112152, - "casing_from": "0.00", - "casing_to": "50.50", + "well": 112152, + "start": "0.00", + "end": "50.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286026,9 +286026,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 111752, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 111752, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286045,9 +286045,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112532, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112532, + "start": "0.00", + "end": "40.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -286064,9 +286064,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113142, - "casing_from": "0.00", - "casing_to": "62.00", + "well": 113142, + "start": "0.00", + "end": "62.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286083,9 +286083,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112284, - "casing_from": null, - "casing_to": null, + "well": 112284, + "start": null, + "end": null, "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -286102,9 +286102,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112398, - "casing_from": "0.00", - "casing_to": "178.00", + "well": 112398, + "start": "0.00", + "end": "178.00", "diameter": "6.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286121,9 +286121,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113254, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 113254, + "start": "0.00", + "end": "18.50", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286140,9 +286140,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112335, - "casing_from": "0.00", - "casing_to": "140.00", + "well": 112335, + "start": "0.00", + "end": "140.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -286159,9 +286159,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112454, - "casing_from": "0.00", - "casing_to": "167.00", + "well": 112454, + "start": "0.00", + "end": "167.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286178,9 +286178,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113113, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113113, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286197,9 +286197,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112579, - "casing_from": "0.00", - "casing_to": "46.00", + "well": 112579, + "start": "0.00", + "end": "46.00", "diameter": null, "casing_code": null, "casing_material": null, @@ -286216,9 +286216,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112478, - "casing_from": "0.00", - "casing_to": "84.00", + "well": 112478, + "start": "0.00", + "end": "84.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -286235,9 +286235,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113013, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 113013, + "start": "0.00", + "end": "18.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286254,9 +286254,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112574, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112574, + "start": "0.00", + "end": "18.00", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -286273,9 +286273,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113079, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113079, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286292,9 +286292,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112391, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112391, + "start": "0.00", + "end": "116.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286311,9 +286311,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112951, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112951, + "start": "0.00", + "end": "80.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286330,9 +286330,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112259, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112259, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286349,9 +286349,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112863, - "casing_from": "3.25", - "casing_to": "19.00", + "well": 112863, + "start": "3.25", + "end": "19.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -286368,9 +286368,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113103, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 113103, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286387,9 +286387,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112634, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112634, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "PLASTIC", @@ -286406,9 +286406,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112743, - "casing_from": "0.00", - "casing_to": "62.00", + "well": 112743, + "start": "0.00", + "end": "62.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -286425,9 +286425,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113134, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 113134, + "start": "0.00", + "end": "60.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286444,9 +286444,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112770, - "casing_from": null, - "casing_to": null, + "well": 112770, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286463,9 +286463,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112252, - "casing_from": "0.00", - "casing_to": "91.50", + "well": 112252, + "start": "0.00", + "end": "91.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286482,9 +286482,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113305, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 113305, + "start": "0.00", + "end": "95.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286501,9 +286501,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 109912, - "casing_from": "16.00", - "casing_to": "178.00", + "well": 109912, + "start": "16.00", + "end": "178.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -286520,9 +286520,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 108025, - "casing_from": "0.00", - "casing_to": "75.50", + "well": 108025, + "start": "0.00", + "end": "75.50", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -286539,9 +286539,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112235, - "casing_from": "200.00", - "casing_to": "345.00", + "well": 112235, + "start": "200.00", + "end": "345.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -286558,9 +286558,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113073, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 113073, + "start": "0.00", + "end": "95.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286577,9 +286577,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112466, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112466, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286596,9 +286596,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:32:41Z", "activity_submission": null, - "well_tag_number": 112711, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112711, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -286615,9 +286615,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112498, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112498, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286634,9 +286634,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112989, - "casing_from": "0.00", - "casing_to": "92.00", + "well": 112989, + "start": "0.00", + "end": "92.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -286653,9 +286653,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112785, - "casing_from": "8.92", - "casing_to": "49.65", + "well": 112785, + "start": "8.92", + "end": "49.65", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -286672,9 +286672,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113052, - "casing_from": "0.00", - "casing_to": "255.00", + "well": 113052, + "start": "0.00", + "end": "255.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286691,9 +286691,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112962, - "casing_from": "0.00", - "casing_to": "70.00", + "well": 112962, + "start": "0.00", + "end": "70.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286710,9 +286710,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112573, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112573, + "start": "0.00", + "end": "18.50", "diameter": "8.380", "casing_code": null, "casing_material": "OTHER", @@ -286729,9 +286729,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112688, - "casing_from": "0.00", - "casing_to": "18.83", + "well": 112688, + "start": "0.00", + "end": "18.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286748,9 +286748,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112539, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112539, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286767,9 +286767,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112265, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112265, + "start": "0.00", + "end": "60.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -286786,9 +286786,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112487, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112487, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286805,9 +286805,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112914, - "casing_from": "0.00", - "casing_to": "182.00", + "well": 112914, + "start": "0.00", + "end": "182.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -286824,9 +286824,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112251, - "casing_from": "0.00", - "casing_to": "56.50", + "well": 112251, + "start": "0.00", + "end": "56.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286843,9 +286843,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112692, - "casing_from": "0.00", - "casing_to": "44.67", + "well": 112692, + "start": "0.00", + "end": "44.67", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286862,9 +286862,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112357, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112357, + "start": "0.00", + "end": "28.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286881,9 +286881,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112596, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112596, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -286900,9 +286900,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112385, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112385, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -286919,9 +286919,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:42:14Z", "activity_submission": null, - "well_tag_number": 112708, - "casing_from": "0.00", - "casing_to": "67.50", + "well": 112708, + "start": "0.00", + "end": "67.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -286938,9 +286938,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112224, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112224, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -286957,9 +286957,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112613, - "casing_from": "0.00", - "casing_to": "18.08", + "well": 112613, + "start": "0.00", + "end": "18.08", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -286976,9 +286976,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112527, - "casing_from": "0.00", - "casing_to": "58.00", + "well": 112527, + "start": "0.00", + "end": "58.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -286995,9 +286995,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112777, - "casing_from": null, - "casing_to": null, + "well": 112777, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "OTHER", @@ -287014,9 +287014,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112780, - "casing_from": null, - "casing_to": "5.13", + "well": 112780, + "start": null, + "end": "5.13", "diameter": null, "casing_code": null, "casing_material": null, @@ -287033,9 +287033,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112720, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112720, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287052,9 +287052,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112932, - "casing_from": "0.00", - "casing_to": "110.00", + "well": 112932, + "start": "0.00", + "end": "110.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287071,9 +287071,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112622, - "casing_from": "0.00", - "casing_to": "350.00", + "well": 112622, + "start": "0.00", + "end": "350.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -287090,9 +287090,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112366, - "casing_from": "15.00", - "casing_to": "18.00", + "well": 112366, + "start": "15.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -287109,9 +287109,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T07:30:20Z", "activity_submission": null, - "well_tag_number": 112782, - "casing_from": null, - "casing_to": null, + "well": 112782, + "start": null, + "end": null, "diameter": "5.130", "casing_code": null, "casing_material": null, @@ -287128,9 +287128,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112373, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 112373, + "start": "0.00", + "end": "35.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287147,9 +287147,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112629, - "casing_from": null, - "casing_to": null, + "well": 112629, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -287166,9 +287166,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113284, - "casing_from": "0.00", - "casing_to": "99.00", + "well": 113284, + "start": "0.00", + "end": "99.00", "diameter": "219.000", "casing_code": null, "casing_material": "STEEL", @@ -287185,9 +287185,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113087, - "casing_from": "0.00", - "casing_to": "320.00", + "well": 113087, + "start": "0.00", + "end": "320.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287204,9 +287204,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113056, - "casing_from": "0.00", - "casing_to": "225.00", + "well": 113056, + "start": "0.00", + "end": "225.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287223,9 +287223,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113121, - "casing_from": "0.00", - "casing_to": "33.00", + "well": 113121, + "start": "0.00", + "end": "33.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287242,9 +287242,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112964, - "casing_from": "0.00", - "casing_to": "69.00", + "well": 112964, + "start": "0.00", + "end": "69.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287261,9 +287261,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112407, - "casing_from": "0.00", - "casing_to": "151.00", + "well": 112407, + "start": "0.00", + "end": "151.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287280,9 +287280,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112418, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112418, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -287299,9 +287299,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113126, - "casing_from": "0.00", - "casing_to": "224.00", + "well": 113126, + "start": "0.00", + "end": "224.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287318,9 +287318,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112340, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112340, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": null, @@ -287337,9 +287337,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112511, - "casing_from": "0.00", - "casing_to": null, + "well": 112511, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287356,9 +287356,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112255, - "casing_from": "0.00", - "casing_to": "41.00", + "well": 112255, + "start": "0.00", + "end": "41.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -287375,9 +287375,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112574, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112574, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -287394,9 +287394,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113306, - "casing_from": "18.00", - "casing_to": "240.00", + "well": 113306, + "start": "18.00", + "end": "240.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -287413,9 +287413,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113172, - "casing_from": "0.00", - "casing_to": "500.00", + "well": 113172, + "start": "0.00", + "end": "500.00", "diameter": "7.000", "casing_code": null, "casing_material": "PLASTIC", @@ -287432,9 +287432,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113036, - "casing_from": "580.00", - "casing_to": "700.00", + "well": 113036, + "start": "580.00", + "end": "700.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -287451,9 +287451,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112540, - "casing_from": "130.00", - "casing_to": "316.00", + "well": 112540, + "start": "130.00", + "end": "316.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -287470,9 +287470,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112388, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112388, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -287489,9 +287489,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112802, - "casing_from": "0.00", - "casing_to": "58.80", + "well": 112802, + "start": "0.00", + "end": "58.80", "diameter": "10.750", "casing_code": null, "casing_material": "STEEL", @@ -287508,9 +287508,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112752, - "casing_from": "0.00", - "casing_to": "107.00", + "well": 112752, + "start": "0.00", + "end": "107.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287527,9 +287527,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112526, - "casing_from": "0.00", - "casing_to": "58.00", + "well": 112526, + "start": "0.00", + "end": "58.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -287546,9 +287546,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112662, - "casing_from": "0.00", - "casing_to": "8.00", + "well": 112662, + "start": "0.00", + "end": "8.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -287565,9 +287565,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112851, - "casing_from": "0.00", - "casing_to": "196.00", + "well": 112851, + "start": "0.00", + "end": "196.00", "diameter": "20.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -287584,9 +287584,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113026, - "casing_from": "213.00", - "casing_to": "493.00", + "well": 113026, + "start": "213.00", + "end": "493.00", "diameter": "7.000", "casing_code": null, "casing_material": "PLASTIC", @@ -287603,9 +287603,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113058, - "casing_from": "0.00", - "casing_to": "167.00", + "well": 113058, + "start": "0.00", + "end": "167.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287622,9 +287622,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113101, - "casing_from": "8.00", - "casing_to": "35.00", + "well": 113101, + "start": "8.00", + "end": "35.00", "diameter": "10.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -287641,9 +287641,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112732, - "casing_from": "0.00", - "casing_to": "31.50", + "well": 112732, + "start": "0.00", + "end": "31.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -287660,9 +287660,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113090, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113090, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -287679,9 +287679,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113028, - "casing_from": "0.00", - "casing_to": "203.00", + "well": 113028, + "start": "0.00", + "end": "203.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287698,9 +287698,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113130, - "casing_from": "0.00", - "casing_to": "385.00", + "well": 113130, + "start": "0.00", + "end": "385.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287717,9 +287717,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113116, - "casing_from": "62.00", - "casing_to": "230.00", + "well": 113116, + "start": "62.00", + "end": "230.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -287736,9 +287736,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112226, - "casing_from": "40.00", - "casing_to": "590.00", + "well": 112226, + "start": "40.00", + "end": "590.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -287755,9 +287755,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112805, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112805, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287774,9 +287774,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113040, - "casing_from": "15.00", - "casing_to": "255.00", + "well": 113040, + "start": "15.00", + "end": "255.00", "diameter": "5.000", "casing_code": null, "casing_material": "OTHER", @@ -287793,9 +287793,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112645, - "casing_from": "0.00", - "casing_to": "354.00", + "well": 112645, + "start": "0.00", + "end": "354.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287812,9 +287812,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112530, - "casing_from": null, - "casing_to": null, + "well": 112530, + "start": null, + "end": null, "diameter": "12.000", "casing_code": null, "casing_material": null, @@ -287831,9 +287831,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113081, - "casing_from": "3.00", - "casing_to": "13.00", + "well": 113081, + "start": "3.00", + "end": "13.00", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -287850,9 +287850,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112946, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112946, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -287869,9 +287869,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112911, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112911, + "start": "0.00", + "end": "56.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -287888,9 +287888,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112676, - "casing_from": "0.00", - "casing_to": "135.00", + "well": 112676, + "start": "0.00", + "end": "135.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287907,9 +287907,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112835, - "casing_from": "0.00", - "casing_to": "41.00", + "well": 112835, + "start": "0.00", + "end": "41.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287926,9 +287926,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113302, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 113302, + "start": "0.00", + "end": "28.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287945,9 +287945,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112379, - "casing_from": "0.00", - "casing_to": "116.04", + "well": 112379, + "start": "0.00", + "end": "116.04", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -287964,9 +287964,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112520, - "casing_from": "0.00", - "casing_to": "28.60", + "well": 112520, + "start": "0.00", + "end": "28.60", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -287983,9 +287983,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112724, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112724, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -288002,9 +288002,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112603, - "casing_from": "0.00", - "casing_to": "216.00", + "well": 112603, + "start": "0.00", + "end": "216.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288021,9 +288021,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-24T20:10:24Z", "activity_submission": null, - "well_tag_number": 112648, - "casing_from": "300.00", - "casing_to": "460.00", + "well": 112648, + "start": "300.00", + "end": "460.00", "diameter": "5.500", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -288040,9 +288040,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112702, - "casing_from": "0.00", - "casing_to": "37.46", + "well": 112702, + "start": "0.00", + "end": "37.46", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288059,9 +288059,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112760, - "casing_from": null, - "casing_to": null, + "well": 112760, + "start": null, + "end": null, "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -288078,9 +288078,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113155, - "casing_from": "0.00", - "casing_to": "396.00", + "well": 113155, + "start": "0.00", + "end": "396.00", "diameter": "6.000", "casing_code": null, "casing_material": "PLASTIC", @@ -288097,9 +288097,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112539, - "casing_from": "0.00", - "casing_to": "576.00", + "well": 112539, + "start": "0.00", + "end": "576.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288116,9 +288116,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113127, - "casing_from": "0.00", - "casing_to": "279.00", + "well": 113127, + "start": "0.00", + "end": "279.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288135,9 +288135,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112790, - "casing_from": "1.75", - "casing_to": "51.33", + "well": 112790, + "start": "1.75", + "end": "51.33", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -288154,9 +288154,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113215, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113215, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288173,9 +288173,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112700, - "casing_from": "0.00", - "casing_to": "36.33", + "well": 112700, + "start": "0.00", + "end": "36.33", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288192,9 +288192,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112614, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112614, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288211,9 +288211,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113117, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 113117, + "start": "0.00", + "end": "96.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -288230,9 +288230,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113007, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113007, + "start": "0.00", + "end": "19.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288249,9 +288249,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112223, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112223, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -288268,9 +288268,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112939, - "casing_from": "0.00", - "casing_to": "150.00", + "well": 112939, + "start": "0.00", + "end": "150.00", "diameter": "6.150", "casing_code": null, "casing_material": "STEEL", @@ -288287,9 +288287,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112236, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112236, + "start": "0.00", + "end": "18.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -288306,9 +288306,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112631, - "casing_from": "0.00", - "casing_to": "140.00", + "well": 112631, + "start": "0.00", + "end": "140.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288325,9 +288325,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112257, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112257, + "start": "0.00", + "end": "38.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288344,9 +288344,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112835, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112835, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288363,9 +288363,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112617, - "casing_from": "0.00", - "casing_to": "57.00", + "well": 112617, + "start": "0.00", + "end": "57.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288382,9 +288382,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112953, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 112953, + "start": "0.00", + "end": "35.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288401,9 +288401,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113178, - "casing_from": "0.00", - "casing_to": "87.00", + "well": 113178, + "start": "0.00", + "end": "87.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288420,9 +288420,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112666, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112666, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -288439,9 +288439,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112445, - "casing_from": "0.00", - "casing_to": "103.00", + "well": 112445, + "start": "0.00", + "end": "103.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288458,9 +288458,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112495, - "casing_from": "0.00", - "casing_to": null, + "well": 112495, + "start": "0.00", + "end": null, "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -288477,9 +288477,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112909, - "casing_from": "0.00", - "casing_to": "51.00", + "well": 112909, + "start": "0.00", + "end": "51.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288496,9 +288496,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112754, - "casing_from": "0.00", - "casing_to": "240.00", + "well": 112754, + "start": "0.00", + "end": "240.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288515,9 +288515,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113308, - "casing_from": "0.00", - "casing_to": "62.50", + "well": 113308, + "start": "0.00", + "end": "62.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288534,9 +288534,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112705, - "casing_from": "0.00", - "casing_to": "33.92", + "well": 112705, + "start": "0.00", + "end": "33.92", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288553,9 +288553,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112501, - "casing_from": "0.00", - "casing_to": "140.00", + "well": 112501, + "start": "0.00", + "end": "140.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288572,9 +288572,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112857, - "casing_from": "25.00", - "casing_to": "117.00", + "well": 112857, + "start": "25.00", + "end": "117.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -288591,9 +288591,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112884, - "casing_from": "480.00", - "casing_to": "560.00", + "well": 112884, + "start": "480.00", + "end": "560.00", "diameter": null, "casing_code": null, "casing_material": "OTHER", @@ -288610,9 +288610,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112256, - "casing_from": "0.00", - "casing_to": "68.00", + "well": 112256, + "start": "0.00", + "end": "68.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288629,9 +288629,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112531, - "casing_from": null, - "casing_to": null, + "well": 112531, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -288648,9 +288648,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112698, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112698, + "start": "0.00", + "end": "40.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288667,9 +288667,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112753, - "casing_from": "0.00", - "casing_to": "65.00", + "well": 112753, + "start": "0.00", + "end": "65.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288686,9 +288686,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112299, - "casing_from": "0.00", - "casing_to": "130.17", + "well": 112299, + "start": "0.00", + "end": "130.17", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288705,9 +288705,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112606, - "casing_from": "0.00", - "casing_to": "274.00", + "well": 112606, + "start": "0.00", + "end": "274.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288724,9 +288724,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112496, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 112496, + "start": "0.00", + "end": "155.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288743,9 +288743,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112460, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112460, + "start": "0.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288762,9 +288762,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112681, - "casing_from": "0.00", - "casing_to": "51.25", + "well": 112681, + "start": "0.00", + "end": "51.25", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288781,9 +288781,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112838, - "casing_from": "18.00", - "casing_to": "290.00", + "well": 112838, + "start": "18.00", + "end": "290.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -288800,9 +288800,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112744, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112744, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -288819,9 +288819,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112261, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112261, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288838,9 +288838,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112499, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112499, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288857,9 +288857,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112746, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112746, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -288876,9 +288876,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112447, - "casing_from": "0.00", - "casing_to": "317.00", + "well": 112447, + "start": "0.00", + "end": "317.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288895,9 +288895,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112459, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112459, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288914,9 +288914,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112359, - "casing_from": "0.00", - "casing_to": "25.09", + "well": 112359, + "start": "0.00", + "end": "25.09", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -288933,9 +288933,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113088, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113088, + "start": "0.00", + "end": "19.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -288952,9 +288952,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100127, - "casing_from": "75.00", - "casing_to": "400.00", + "well": 100127, + "start": "75.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -288971,9 +288971,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112341, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112341, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -288990,9 +288990,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113301, - "casing_from": "0.00", - "casing_to": "95.00", + "well": 113301, + "start": "0.00", + "end": "95.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289009,9 +289009,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112893, - "casing_from": "2.00", - "casing_to": "28.00", + "well": 112893, + "start": "2.00", + "end": "28.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289028,9 +289028,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112803, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112803, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -289047,9 +289047,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112389, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112389, + "start": "0.00", + "end": "18.00", "diameter": "6.250", "casing_code": null, "casing_material": "STEEL", @@ -289066,9 +289066,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112674, - "casing_from": "0.00", - "casing_to": "51.50", + "well": 112674, + "start": "0.00", + "end": "51.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289085,9 +289085,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112339, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112339, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -289104,9 +289104,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112515, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112515, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289123,9 +289123,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113552, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113552, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -289142,9 +289142,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113009, - "casing_from": "0.00", - "casing_to": "163.00", + "well": 113009, + "start": "0.00", + "end": "163.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289161,9 +289161,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112865, - "casing_from": "2.00", - "casing_to": "127.00", + "well": 112865, + "start": "2.00", + "end": "127.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289180,9 +289180,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112727, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112727, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -289199,9 +289199,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112425, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112425, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -289218,9 +289218,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T17:13:20Z", "activity_submission": null, - "well_tag_number": 112328, - "casing_from": "1.00", - "casing_to": "149.00", + "well": 112328, + "start": "1.00", + "end": "149.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289237,9 +289237,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113013, - "casing_from": "186.00", - "casing_to": "400.00", + "well": 113013, + "start": "186.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -289256,9 +289256,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112946, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112946, + "start": "0.00", + "end": "25.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289275,9 +289275,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112360, - "casing_from": "0.00", - "casing_to": "115.00", + "well": 112360, + "start": "0.00", + "end": "115.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289294,9 +289294,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112584, - "casing_from": "0.00", - "casing_to": "52.50", + "well": 112584, + "start": "0.00", + "end": "52.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289313,9 +289313,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112485, - "casing_from": "0.00", - "casing_to": "260.00", + "well": 112485, + "start": "0.00", + "end": "260.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289332,9 +289332,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112968, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112968, + "start": "0.00", + "end": "26.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -289351,9 +289351,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112441, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112441, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289370,9 +289370,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112683, - "casing_from": "0.00", - "casing_to": "17.75", + "well": 112683, + "start": "0.00", + "end": "17.75", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289389,9 +289389,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112259, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112259, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -289408,9 +289408,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112339, - "casing_from": "18.00", - "casing_to": "525.00", + "well": 112339, + "start": "18.00", + "end": "525.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -289427,9 +289427,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112941, - "casing_from": "0.00", - "casing_to": "55.00", + "well": 112941, + "start": "0.00", + "end": "55.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289446,9 +289446,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112863, - "casing_from": "19.00", - "casing_to": "94.67", + "well": 112863, + "start": "19.00", + "end": "94.67", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -289465,9 +289465,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112308, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112308, + "start": "0.00", + "end": "36.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289484,9 +289484,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112224, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112224, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -289503,9 +289503,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113270, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113270, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -289522,9 +289522,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112993, - "casing_from": "0.00", - "casing_to": "23.00", + "well": 112993, + "start": "0.00", + "end": "23.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289541,9 +289541,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112871, - "casing_from": "0.00", - "casing_to": "33.17", + "well": 112871, + "start": "0.00", + "end": "33.17", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -289560,9 +289560,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112483, - "casing_from": "0.00", - "casing_to": "32.00", + "well": 112483, + "start": "0.00", + "end": "32.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -289579,9 +289579,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112228, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112228, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -289598,9 +289598,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112346, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112346, + "start": "0.00", + "end": "80.00", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -289617,9 +289617,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112576, - "casing_from": "0.00", - "casing_to": "51.50", + "well": 112576, + "start": "0.00", + "end": "51.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -289636,9 +289636,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112413, - "casing_from": "0.00", - "casing_to": null, + "well": 112413, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289655,9 +289655,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112590, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112590, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289674,9 +289674,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113304, - "casing_from": "0.00", - "casing_to": "81.00", + "well": 113304, + "start": "0.00", + "end": "81.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289693,9 +289693,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112516, - "casing_from": "20.00", - "casing_to": "140.00", + "well": 112516, + "start": "20.00", + "end": "140.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -289712,9 +289712,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112422, - "casing_from": "60.00", - "casing_to": "400.00", + "well": 112422, + "start": "60.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -289731,9 +289731,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112254, - "casing_from": "0.00", - "casing_to": "65.00", + "well": 112254, + "start": "0.00", + "end": "65.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289750,9 +289750,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112562, - "casing_from": "0.00", - "casing_to": "180.00", + "well": 112562, + "start": "0.00", + "end": "180.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289769,9 +289769,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112888, - "casing_from": "3.00", - "casing_to": "68.00", + "well": 112888, + "start": "3.00", + "end": "68.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289788,9 +289788,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113066, - "casing_from": "0.00", - "casing_to": "113.00", + "well": 113066, + "start": "0.00", + "end": "113.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289807,9 +289807,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-06T02:22:46Z", "activity_submission": null, - "well_tag_number": 112279, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112279, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -289826,9 +289826,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112701, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112701, + "start": "0.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289845,9 +289845,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113006, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113006, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289864,9 +289864,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113116, - "casing_from": "0.00", - "casing_to": "62.00", + "well": 113116, + "start": "0.00", + "end": "62.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289883,9 +289883,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112787, - "casing_from": "2.00", - "casing_to": "34.90", + "well": 112787, + "start": "2.00", + "end": "34.90", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -289902,9 +289902,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112814, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112814, + "start": "0.00", + "end": "18.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289921,9 +289921,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112859, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112859, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -289940,9 +289940,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112438, - "casing_from": "575.00", - "casing_to": "560.00", + "well": 112438, + "start": "575.00", + "end": "560.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -289959,9 +289959,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:54:45Z", "activity_submission": null, - "well_tag_number": 110749, - "casing_from": "0.00", - "casing_to": "168.00", + "well": 110749, + "start": "0.00", + "end": "168.00", "diameter": "4.500", "casing_code": null, "casing_material": null, @@ -289978,9 +289978,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113277, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113277, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -289997,9 +289997,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112576, - "casing_from": "0.00", - "casing_to": "51.50", + "well": 112576, + "start": "0.00", + "end": "51.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -290016,9 +290016,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112247, - "casing_from": "0.00", - "casing_to": "37.00", + "well": 112247, + "start": "0.00", + "end": "37.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -290035,9 +290035,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112869, - "casing_from": "0.00", - "casing_to": "25.75", + "well": 112869, + "start": "0.00", + "end": "25.75", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -290054,9 +290054,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113153, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113153, + "start": "0.00", + "end": "15.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -290073,9 +290073,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112508, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112508, + "start": "0.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": null, @@ -290092,9 +290092,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113152, - "casing_from": "0.00", - "casing_to": "25.50", + "well": 113152, + "start": "0.00", + "end": "25.50", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -290111,9 +290111,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112412, - "casing_from": "48.00", - "casing_to": "215.00", + "well": 112412, + "start": "48.00", + "end": "215.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -290130,9 +290130,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113134, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 113134, + "start": "0.00", + "end": "155.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -290149,9 +290149,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112735, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112735, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -290168,9 +290168,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112868, - "casing_from": "2.00", - "casing_to": "196.00", + "well": 112868, + "start": "2.00", + "end": "196.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -290187,9 +290187,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 108027, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 108027, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290206,9 +290206,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112381, - "casing_from": "0.00", - "casing_to": "119.04", + "well": 112381, + "start": "0.00", + "end": "119.04", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290225,9 +290225,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113117, - "casing_from": "0.00", - "casing_to": "592.00", + "well": 113117, + "start": "0.00", + "end": "592.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -290244,9 +290244,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112296, - "casing_from": "0.00", - "casing_to": "220.00", + "well": 112296, + "start": "0.00", + "end": "220.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -290263,9 +290263,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112547, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112547, + "start": "0.00", + "end": "116.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290282,9 +290282,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113128, - "casing_from": "0.00", - "casing_to": "286.00", + "well": 113128, + "start": "0.00", + "end": "286.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290301,9 +290301,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112460, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112460, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -290320,9 +290320,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113036, - "casing_from": "0.00", - "casing_to": "680.00", + "well": 113036, + "start": "0.00", + "end": "680.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -290339,9 +290339,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-06T02:22:25Z", "activity_submission": null, - "well_tag_number": 112279, - "casing_from": "0.00", - "casing_to": "47.00", + "well": 112279, + "start": "0.00", + "end": "47.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290358,9 +290358,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112947, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112947, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -290377,9 +290377,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112414, - "casing_from": "0.00", - "casing_to": "250.00", + "well": 112414, + "start": "0.00", + "end": "250.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290396,9 +290396,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113294, - "casing_from": "0.00", - "casing_to": "289.00", + "well": 113294, + "start": "0.00", + "end": "289.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290415,9 +290415,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112422, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112422, + "start": "0.00", + "end": "60.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290434,9 +290434,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112680, - "casing_from": "0.00", - "casing_to": "17.92", + "well": 112680, + "start": "0.00", + "end": "17.92", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290453,9 +290453,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112693, - "casing_from": "0.00", - "casing_to": "18.17", + "well": 112693, + "start": "0.00", + "end": "18.17", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290472,9 +290472,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113151, - "casing_from": "0.00", - "casing_to": "171.00", + "well": 113151, + "start": "0.00", + "end": "171.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290491,9 +290491,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112235, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112235, + "start": "0.00", + "end": "200.00", "diameter": "6.130", "casing_code": null, "casing_material": null, @@ -290510,9 +290510,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-04T04:52:01Z", "activity_submission": null, - "well_tag_number": 112240, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 112240, + "start": "0.00", + "end": "35.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -290529,9 +290529,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113184, - "casing_from": "0.00", - "casing_to": "39.00", + "well": 113184, + "start": "0.00", + "end": "39.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -290548,9 +290548,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112922, - "casing_from": "0.00", - "casing_to": "181.00", + "well": 112922, + "start": "0.00", + "end": "181.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -290567,9 +290567,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112493, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112493, + "start": "0.00", + "end": "30.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290586,9 +290586,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113146, - "casing_from": "0.00", - "casing_to": "522.00", + "well": 113146, + "start": "0.00", + "end": "522.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -290605,9 +290605,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112878, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112878, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -290624,9 +290624,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112222, - "casing_from": "0.00", - "casing_to": "137.50", + "well": 112222, + "start": "0.00", + "end": "137.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290643,9 +290643,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112293, - "casing_from": "0.00", - "casing_to": "26.16", + "well": 112293, + "start": "0.00", + "end": "26.16", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290662,9 +290662,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112596, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112596, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290681,9 +290681,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112834, - "casing_from": "0.00", - "casing_to": "56.00", + "well": 112834, + "start": "0.00", + "end": "56.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290700,9 +290700,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113263, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113263, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -290719,9 +290719,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112878, - "casing_from": "0.00", - "casing_to": "81.00", + "well": 112878, + "start": "0.00", + "end": "81.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290738,9 +290738,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112644, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112644, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290757,9 +290757,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112951, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112951, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -290776,9 +290776,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113266, - "casing_from": "0.00", - "casing_to": "62.00", + "well": 113266, + "start": "0.00", + "end": "62.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290795,9 +290795,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113004, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 113004, + "start": "0.00", + "end": "40.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -290814,9 +290814,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112401, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 112401, + "start": "0.00", + "end": "50.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290833,9 +290833,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113309, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113309, + "start": "0.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -290852,9 +290852,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112297, - "casing_from": "0.00", - "casing_to": "18.83", + "well": 112297, + "start": "0.00", + "end": "18.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290871,9 +290871,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112525, - "casing_from": "0.00", - "casing_to": "58.00", + "well": 112525, + "start": "0.00", + "end": "58.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -290890,9 +290890,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112455, - "casing_from": "220.00", - "casing_to": "320.00", + "well": 112455, + "start": "220.00", + "end": "320.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -290909,9 +290909,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112346, - "casing_from": "0.00", - "casing_to": "78.00", + "well": 112346, + "start": "0.00", + "end": "78.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -290928,9 +290928,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113123, - "casing_from": "2.00", - "casing_to": "241.00", + "well": 113123, + "start": "2.00", + "end": "241.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -290947,9 +290947,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112378, - "casing_from": "0.00", - "casing_to": "76.08", + "well": 112378, + "start": "0.00", + "end": "76.08", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -290966,9 +290966,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:33:34Z", "activity_submission": null, - "well_tag_number": 112711, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112711, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -290985,9 +290985,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112386, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112386, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -291004,9 +291004,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112725, - "casing_from": "0.00", - "casing_to": "75.50", + "well": 112725, + "start": "0.00", + "end": "75.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -291023,9 +291023,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113264, - "casing_from": "0.00", - "casing_to": "88.00", + "well": 113264, + "start": "0.00", + "end": "88.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291042,9 +291042,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113253, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113253, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291061,9 +291061,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112305, - "casing_from": "0.00", - "casing_to": "101.00", + "well": 112305, + "start": "0.00", + "end": "101.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291080,9 +291080,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112723, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112723, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -291099,9 +291099,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113020, - "casing_from": "0.00", - "casing_to": "252.00", + "well": 113020, + "start": "0.00", + "end": "252.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -291118,9 +291118,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112561, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112561, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291137,9 +291137,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112427, - "casing_from": "0.00", - "casing_to": "92.00", + "well": 112427, + "start": "0.00", + "end": "92.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291156,9 +291156,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112704, - "casing_from": "0.00", - "casing_to": "31.75", + "well": 112704, + "start": "0.00", + "end": "31.75", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291175,9 +291175,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112448, - "casing_from": "0.00", - "casing_to": "102.06", + "well": 112448, + "start": "0.00", + "end": "102.06", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291194,9 +291194,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112281, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112281, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291213,9 +291213,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112488, - "casing_from": "147.00", - "casing_to": "160.00", + "well": 112488, + "start": "147.00", + "end": "160.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -291232,9 +291232,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112547, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112547, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291251,9 +291251,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113078, - "casing_from": "0.00", - "casing_to": "220.00", + "well": 113078, + "start": "0.00", + "end": "220.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -291270,9 +291270,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112362, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112362, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -291289,9 +291289,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113303, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113303, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291308,9 +291308,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112420, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112420, + "start": "0.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291327,9 +291327,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112480, - "casing_from": "20.00", - "casing_to": "240.00", + "well": 112480, + "start": "20.00", + "end": "240.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -291346,9 +291346,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-09T06:45:55Z", "activity_submission": null, - "well_tag_number": 112307, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112307, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -291365,9 +291365,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112765, - "casing_from": null, - "casing_to": null, + "well": 112765, + "start": null, + "end": null, "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -291384,9 +291384,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:04:05Z", "activity_submission": null, - "well_tag_number": 113027, - "casing_from": "0.00", - "casing_to": "190.00", + "well": 113027, + "start": "0.00", + "end": "190.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291403,9 +291403,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112427, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112427, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291422,9 +291422,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112973, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112973, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291441,9 +291441,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 108027, - "casing_from": "20.00", - "casing_to": "156.00", + "well": 108027, + "start": "20.00", + "end": "156.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -291460,9 +291460,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112736, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112736, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -291479,9 +291479,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112572, - "casing_from": "0.00", - "casing_to": "158.50", + "well": 112572, + "start": "0.00", + "end": "158.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -291498,9 +291498,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112303, - "casing_from": "0.00", - "casing_to": "33.00", + "well": 112303, + "start": "0.00", + "end": "33.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291517,9 +291517,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112586, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112586, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -291536,9 +291536,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112432, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112432, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291555,9 +291555,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112850, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 112850, + "start": "0.00", + "end": "200.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -291574,9 +291574,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113125, - "casing_from": "0.00", - "casing_to": "45.00", + "well": 113125, + "start": "0.00", + "end": "45.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291593,9 +291593,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112409, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112409, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291612,9 +291612,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113307, - "casing_from": "0.00", - "casing_to": "11.00", + "well": 113307, + "start": "0.00", + "end": "11.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291631,9 +291631,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112714, - "casing_from": "0.00", - "casing_to": "35.50", + "well": 112714, + "start": "0.00", + "end": "35.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -291650,9 +291650,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112484, - "casing_from": "0.00", - "casing_to": "74.00", + "well": 112484, + "start": "0.00", + "end": "74.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -291669,9 +291669,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113307, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113307, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291688,9 +291688,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113133, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 113133, + "start": "0.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291707,9 +291707,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113023, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113023, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -291726,9 +291726,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112864, - "casing_from": "0.00", - "casing_to": "108.00", + "well": 112864, + "start": "0.00", + "end": "108.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291745,9 +291745,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113124, - "casing_from": "0.00", - "casing_to": "496.00", + "well": 113124, + "start": "0.00", + "end": "496.00", "diameter": "18.000", "casing_code": null, "casing_material": "STEEL", @@ -291764,9 +291764,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112995, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112995, + "start": "0.00", + "end": "80.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -291783,9 +291783,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112546, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112546, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291802,9 +291802,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112814, - "casing_from": "0.00", - "casing_to": "8.00", + "well": 112814, + "start": "0.00", + "end": "8.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -291821,9 +291821,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112438, - "casing_from": "0.00", - "casing_to": "575.00", + "well": 112438, + "start": "0.00", + "end": "575.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291840,9 +291840,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112935, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112935, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -291859,9 +291859,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112781, - "casing_from": null, - "casing_to": null, + "well": 112781, + "start": null, + "end": null, "diameter": "5.130", "casing_code": null, "casing_material": null, @@ -291878,9 +291878,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112984, - "casing_from": "0.00", - "casing_to": "35.50", + "well": 112984, + "start": "0.00", + "end": "35.50", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -291897,9 +291897,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112534, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 112534, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291916,9 +291916,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112261, - "casing_from": "0.00", - "casing_to": "42.00", + "well": 112261, + "start": "0.00", + "end": "42.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291935,9 +291935,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-10T18:08:00Z", "activity_submission": null, - "well_tag_number": 113174, - "casing_from": "0.00", - "casing_to": "31.00", + "well": 113174, + "start": "0.00", + "end": "31.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -291954,9 +291954,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112775, - "casing_from": null, - "casing_to": null, + "well": 112775, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -291973,9 +291973,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112850, - "casing_from": "0.00", - "casing_to": "230.00", + "well": 112850, + "start": "0.00", + "end": "230.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -291992,9 +291992,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112591, - "casing_from": "0.00", - "casing_to": "230.00", + "well": 112591, + "start": "0.00", + "end": "230.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -292011,9 +292011,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112300, - "casing_from": "0.00", - "casing_to": "37.13", + "well": 112300, + "start": "0.00", + "end": "37.13", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292030,9 +292030,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112240, - "casing_from": "0.00", - "casing_to": "138.00", + "well": 112240, + "start": "0.00", + "end": "138.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292049,9 +292049,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113212, - "casing_from": "0.00", - "casing_to": "246.02", + "well": 113212, + "start": "0.00", + "end": "246.02", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292068,9 +292068,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112370, - "casing_from": "0.00", - "casing_to": "35.00", + "well": 112370, + "start": "0.00", + "end": "35.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -292087,9 +292087,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112773, - "casing_from": "2.00", - "casing_to": null, + "well": 112773, + "start": "2.00", + "end": null, "diameter": "4.000", "casing_code": null, "casing_material": "STEEL", @@ -292106,9 +292106,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112609, - "casing_from": "0.00", - "casing_to": "73.11", + "well": 112609, + "start": "0.00", + "end": "73.11", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292125,9 +292125,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113249, - "casing_from": "0.00", - "casing_to": "53.00", + "well": 113249, + "start": "0.00", + "end": "53.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292144,9 +292144,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113261, - "casing_from": "117.00", - "casing_to": "220.00", + "well": 113261, + "start": "117.00", + "end": "220.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -292163,9 +292163,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112756, - "casing_from": "0.00", - "casing_to": "74.00", + "well": 112756, + "start": "0.00", + "end": "74.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292182,9 +292182,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112238, - "casing_from": "0.00", - "casing_to": "45.50", + "well": 112238, + "start": "0.00", + "end": "45.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292201,9 +292201,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113183, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 113183, + "start": "0.00", + "end": "116.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -292220,9 +292220,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112220, - "casing_from": "0.00", - "casing_to": "38.50", + "well": 112220, + "start": "0.00", + "end": "38.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -292239,9 +292239,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112227, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112227, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -292258,9 +292258,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112957, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112957, + "start": "0.00", + "end": "40.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -292277,9 +292277,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113080, - "casing_from": "0.00", - "casing_to": "57.00", + "well": 113080, + "start": "0.00", + "end": "57.00", "diameter": "10.750", "casing_code": null, "casing_material": "STEEL", @@ -292296,9 +292296,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113300, - "casing_from": "0.00", - "casing_to": "155.00", + "well": 113300, + "start": "0.00", + "end": "155.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292315,9 +292315,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112413, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112413, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292334,9 +292334,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112977, - "casing_from": "0.00", - "casing_to": "169.00", + "well": 112977, + "start": "0.00", + "end": "169.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292353,9 +292353,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113192, - "casing_from": "0.00", - "casing_to": "89.00", + "well": 113192, + "start": "0.00", + "end": "89.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292372,9 +292372,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112578, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112578, + "start": "0.00", + "end": "26.00", "diameter": "8.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -292391,9 +292391,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112840, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112840, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292410,9 +292410,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112848, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112848, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292429,9 +292429,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T21:01:53Z", "activity_submission": null, - "well_tag_number": 112370, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112370, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -292448,9 +292448,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113020, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 113020, + "start": "0.00", + "end": "18.00", "diameter": "10.630", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292467,9 +292467,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112318, - "casing_from": "0.00", - "casing_to": "254.00", + "well": 112318, + "start": "0.00", + "end": "254.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -292486,9 +292486,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112589, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112589, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292505,9 +292505,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112837, - "casing_from": "0.00", - "casing_to": "7.00", + "well": 112837, + "start": "0.00", + "end": "7.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292524,9 +292524,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112349, - "casing_from": "0.00", - "casing_to": "57.00", + "well": 112349, + "start": "0.00", + "end": "57.00", "diameter": "6.000", "casing_code": null, "casing_material": "PLASTIC", @@ -292543,9 +292543,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113036, - "casing_from": "162.00", - "casing_to": "580.00", + "well": 113036, + "start": "162.00", + "end": "580.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -292562,9 +292562,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113303, - "casing_from": "18.00", - "casing_to": "100.00", + "well": 113303, + "start": "18.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -292581,9 +292581,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112843, - "casing_from": "0.00", - "casing_to": "201.00", + "well": 112843, + "start": "0.00", + "end": "201.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292600,9 +292600,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 102364, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 102364, + "start": "0.00", + "end": "19.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -292619,9 +292619,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112875, - "casing_from": "0.00", - "casing_to": "33.42", + "well": 112875, + "start": "0.00", + "end": "33.42", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -292638,9 +292638,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-09T06:46:30Z", "activity_submission": null, - "well_tag_number": 112306, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112306, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -292657,9 +292657,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112729, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112729, + "start": "0.00", + "end": "28.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -292676,9 +292676,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112338, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 112338, + "start": "0.00", + "end": "96.00", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -292695,9 +292695,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112380, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112380, + "start": "0.00", + "end": "18.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -292714,9 +292714,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113112, - "casing_from": "0.00", - "casing_to": "335.00", + "well": 113112, + "start": "0.00", + "end": "335.00", "diameter": "6.160", "casing_code": null, "casing_material": "STEEL", @@ -292733,9 +292733,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112602, - "casing_from": "0.00", - "casing_to": "92.00", + "well": 112602, + "start": "0.00", + "end": "92.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292752,9 +292752,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112363, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112363, + "start": "0.00", + "end": "17.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292771,9 +292771,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113101, - "casing_from": "0.00", - "casing_to": "8.00", + "well": 113101, + "start": "0.00", + "end": "8.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -292790,9 +292790,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112764, - "casing_from": null, - "casing_to": null, + "well": 112764, + "start": null, + "end": null, "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -292809,9 +292809,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112607, - "casing_from": "0.00", - "casing_to": "89.00", + "well": 112607, + "start": "0.00", + "end": "89.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292828,9 +292828,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113067, - "casing_from": "0.00", - "casing_to": "34.00", + "well": 113067, + "start": "0.00", + "end": "34.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292847,9 +292847,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112242, - "casing_from": "0.00", - "casing_to": "29.00", + "well": 112242, + "start": "0.00", + "end": "29.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292866,9 +292866,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112741, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112741, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -292885,9 +292885,9 @@ "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:19:56Z", "activity_submission": null, - "well_tag_number": 104533, - "casing_from": "0.00", - "casing_to": "154.00", + "well": 104533, + "start": "0.00", + "end": "154.00", "diameter": "5.560", "casing_code": null, "casing_material": "STEEL", @@ -292904,9 +292904,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113096, - "casing_from": "0.00", - "casing_to": "235.00", + "well": 113096, + "start": "0.00", + "end": "235.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -292923,9 +292923,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112331, - "casing_from": "0.00", - "casing_to": "18.33", + "well": 112331, + "start": "0.00", + "end": "18.33", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -292942,9 +292942,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112721, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112721, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -292961,9 +292961,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112334, - "casing_from": "0.00", - "casing_to": "226.00", + "well": 112334, + "start": "0.00", + "end": "226.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -292980,9 +292980,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112999, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112999, + "start": "0.00", + "end": "116.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -292999,9 +292999,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112341, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112341, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": null, @@ -293018,9 +293018,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112805, - "casing_from": "18.00", - "casing_to": "385.00", + "well": 112805, + "start": "18.00", + "end": "385.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -293037,9 +293037,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112572, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112572, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -293056,9 +293056,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113079, - "casing_from": "0.00", - "casing_to": "76.00", + "well": 113079, + "start": "0.00", + "end": "76.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293075,9 +293075,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 109912, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 109912, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": null, @@ -293094,9 +293094,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112442, - "casing_from": "0.00", - "casing_to": "85.10", + "well": 112442, + "start": "0.00", + "end": "85.10", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293113,9 +293113,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113173, - "casing_from": "0.00", - "casing_to": "90.00", + "well": 113173, + "start": "0.00", + "end": "90.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293132,9 +293132,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113029, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 113029, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293151,9 +293151,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113008, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 113008, + "start": "0.00", + "end": "26.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -293170,9 +293170,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T20:38:47Z", "activity_submission": null, - "well_tag_number": 112222, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 112222, + "start": "0.00", + "end": "5.00", "diameter": "12.000", "casing_code": null, "casing_material": "OTHER", @@ -293189,9 +293189,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112226, - "casing_from": "26.00", - "casing_to": "40.00", + "well": 112226, + "start": "26.00", + "end": "40.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -293208,9 +293208,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112947, - "casing_from": "0.00", - "casing_to": "176.00", + "well": 112947, + "start": "0.00", + "end": "176.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293227,9 +293227,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113014, - "casing_from": "0.00", - "casing_to": "33.00", + "well": 113014, + "start": "0.00", + "end": "33.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -293246,9 +293246,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112253, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112253, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -293265,9 +293265,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112548, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112548, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -293284,9 +293284,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112238, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112238, + "start": "0.00", + "end": "25.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -293303,9 +293303,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112298, - "casing_from": "0.00", - "casing_to": "75.50", + "well": 112298, + "start": "0.00", + "end": "75.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293322,9 +293322,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112241, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112241, + "start": "0.00", + "end": "26.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -293341,9 +293341,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112740, - "casing_from": "0.00", - "casing_to": "158.00", + "well": 112740, + "start": "0.00", + "end": "158.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -293360,9 +293360,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113093, - "casing_from": "20.00", - "casing_to": "531.50", + "well": 113093, + "start": "20.00", + "end": "531.50", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -293379,9 +293379,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112594, - "casing_from": "0.00", - "casing_to": "98.00", + "well": 112594, + "start": "0.00", + "end": "98.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293398,9 +293398,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112367, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112367, + "start": "0.00", + "end": "25.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -293417,9 +293417,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112961, - "casing_from": "0.00", - "casing_to": "29.00", + "well": 112961, + "start": "0.00", + "end": "29.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293436,9 +293436,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112352, - "casing_from": "0.00", - "casing_to": "116.00", + "well": 112352, + "start": "0.00", + "end": "116.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293455,9 +293455,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112269, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112269, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293474,9 +293474,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112519, - "casing_from": "0.00", - "casing_to": "683.00", + "well": 112519, + "start": "0.00", + "end": "683.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -293493,9 +293493,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112825, - "casing_from": null, - "casing_to": null, + "well": 112825, + "start": null, + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293512,9 +293512,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112718, - "casing_from": "0.00", - "casing_to": "243.00", + "well": 112718, + "start": "0.00", + "end": "243.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -293531,9 +293531,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112450, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 112450, + "start": "0.00", + "end": "96.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293550,9 +293550,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112616, - "casing_from": "0.00", - "casing_to": "12.00", + "well": 112616, + "start": "0.00", + "end": "12.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -293569,9 +293569,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112734, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112734, + "start": "0.00", + "end": "16.00", "diameter": "12.000", "casing_code": null, "casing_material": null, @@ -293588,9 +293588,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113186, - "casing_from": "0.00", - "casing_to": "141.00", + "well": 113186, + "start": "0.00", + "end": "141.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293607,9 +293607,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112437, - "casing_from": "0.00", - "casing_to": "38.06", + "well": 112437, + "start": "0.00", + "end": "38.06", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293626,9 +293626,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112606, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112606, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -293645,9 +293645,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113030, - "casing_from": "0.00", - "casing_to": "320.00", + "well": 113030, + "start": "0.00", + "end": "320.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293664,9 +293664,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112341, - "casing_from": "18.00", - "casing_to": "650.00", + "well": 112341, + "start": "18.00", + "end": "650.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -293683,9 +293683,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112959, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112959, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -293702,9 +293702,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112484, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112484, + "start": "0.00", + "end": "80.00", "diameter": "4.000", "casing_code": null, "casing_material": "PLASTIC", @@ -293721,9 +293721,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113143, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 113143, + "start": "0.00", + "end": "19.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293740,9 +293740,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112822, - "casing_from": "27.00", - "casing_to": "720.00", + "well": 112822, + "start": "27.00", + "end": "720.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -293759,9 +293759,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113277, - "casing_from": "0.00", - "casing_to": "14.00", + "well": 113277, + "start": "0.00", + "end": "14.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -293778,9 +293778,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112600, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112600, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -293797,9 +293797,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112742, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 112742, + "start": "0.00", + "end": "19.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -293816,9 +293816,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112928, - "casing_from": "0.00", - "casing_to": "140.00", + "well": 112928, + "start": "0.00", + "end": "140.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -293835,9 +293835,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113121, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113121, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -293854,9 +293854,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113180, - "casing_from": "0.00", - "casing_to": "202.00", + "well": 113180, + "start": "0.00", + "end": "202.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293873,9 +293873,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112543, - "casing_from": "0.00", - "casing_to": "76.67", + "well": 112543, + "start": "0.00", + "end": "76.67", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293892,9 +293892,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113085, - "casing_from": "0.00", - "casing_to": "108.00", + "well": 113085, + "start": "0.00", + "end": "108.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293911,9 +293911,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113095, - "casing_from": "20.00", - "casing_to": "240.00", + "well": 113095, + "start": "20.00", + "end": "240.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -293930,9 +293930,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112270, - "casing_from": "0.00", - "casing_to": "182.00", + "well": 112270, + "start": "0.00", + "end": "182.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293949,9 +293949,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113101, - "casing_from": "35.00", - "casing_to": "550.00", + "well": 113101, + "start": "35.00", + "end": "550.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -293968,9 +293968,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113139, - "casing_from": "0.00", - "casing_to": "70.00", + "well": 113139, + "start": "0.00", + "end": "70.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -293987,9 +293987,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112546, - "casing_from": "0.00", - "casing_to": "83.00", + "well": 112546, + "start": "0.00", + "end": "83.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294006,9 +294006,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112933, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112933, + "start": "0.00", + "end": "15.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -294025,9 +294025,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112550, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112550, + "start": "0.00", + "end": "17.00", "diameter": "10.000", "casing_code": null, "casing_material": "STEEL", @@ -294044,9 +294044,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113189, - "casing_from": "0.00", - "casing_to": "405.00", + "well": 113189, + "start": "0.00", + "end": "405.00", "diameter": "3.000", "casing_code": null, "casing_material": "PLASTIC", @@ -294063,9 +294063,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112768, - "casing_from": "0.00", - "casing_to": "139.00", + "well": 112768, + "start": "0.00", + "end": "139.00", "diameter": "13.370", "casing_code": null, "casing_material": "STEEL", @@ -294082,9 +294082,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112889, - "casing_from": "4.00", - "casing_to": "76.00", + "well": 112889, + "start": "4.00", + "end": "76.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294101,9 +294101,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112514, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112514, + "start": "0.00", + "end": "18.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294120,9 +294120,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112512, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112512, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294139,9 +294139,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112250, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112250, + "start": "0.00", + "end": "26.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -294158,9 +294158,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112942, - "casing_from": "0.00", - "casing_to": "131.00", + "well": 112942, + "start": "0.00", + "end": "131.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -294177,9 +294177,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112960, - "casing_from": "0.00", - "casing_to": "49.00", + "well": 112960, + "start": "0.00", + "end": "49.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -294196,9 +294196,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113205, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 113205, + "start": "0.00", + "end": "96.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294215,9 +294215,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112733, - "casing_from": "0.00", - "casing_to": "37.00", + "well": 112733, + "start": "0.00", + "end": "37.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -294234,9 +294234,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113119, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113119, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294253,9 +294253,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112453, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112453, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294272,9 +294272,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112355, - "casing_from": "0.00", - "casing_to": "151.00", + "well": 112355, + "start": "0.00", + "end": "151.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294291,9 +294291,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112443, - "casing_from": "0.00", - "casing_to": "85.01", + "well": 112443, + "start": "0.00", + "end": "85.01", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294310,9 +294310,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112725, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112725, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -294329,9 +294329,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112851, - "casing_from": "0.00", - "casing_to": "588.00", + "well": 112851, + "start": "0.00", + "end": "588.00", "diameter": "14.000", "casing_code": null, "casing_material": "STEEL", @@ -294348,9 +294348,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112882, - "casing_from": "0.00", - "casing_to": "115.08", + "well": 112882, + "start": "0.00", + "end": "115.08", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -294367,9 +294367,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-04T06:07:15Z", "activity_submission": null, - "well_tag_number": 112245, - "casing_from": "0.00", - "casing_to": "25.00", + "well": 112245, + "start": "0.00", + "end": "25.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -294386,9 +294386,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113138, - "casing_from": "0.00", - "casing_to": "174.06", + "well": 113138, + "start": "0.00", + "end": "174.06", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294405,9 +294405,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113270, - "casing_from": "0.00", - "casing_to": "402.00", + "well": 113270, + "start": "0.00", + "end": "402.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -294424,9 +294424,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112421, - "casing_from": "0.00", - "casing_to": "120.00", + "well": 112421, + "start": "0.00", + "end": "120.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294443,9 +294443,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113017, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113017, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294462,9 +294462,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112592, - "casing_from": "0.00", - "casing_to": "112.00", + "well": 112592, + "start": "0.00", + "end": "112.00", "diameter": "2.000", "casing_code": null, "casing_material": "PLASTIC", @@ -294481,9 +294481,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112733, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112733, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -294500,9 +294500,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112656, - "casing_from": "0.00", - "casing_to": "53.42", + "well": 112656, + "start": "0.00", + "end": "53.42", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294519,9 +294519,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T01:51:29Z", "activity_submission": null, - "well_tag_number": 112476, - "casing_from": "0.00", - "casing_to": "240.00", + "well": 112476, + "start": "0.00", + "end": "240.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294538,9 +294538,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112815, - "casing_from": "0.00", - "casing_to": "13.00", + "well": 112815, + "start": "0.00", + "end": "13.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294557,9 +294557,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 100501, - "casing_from": "0.00", - "casing_to": "66.00", + "well": 100501, + "start": "0.00", + "end": "66.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294576,9 +294576,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-07-27T18:14:12Z", "activity_submission": null, - "well_tag_number": 113032, - "casing_from": "0.00", - "casing_to": null, + "well": 113032, + "start": "0.00", + "end": null, "diameter": null, "casing_code": null, "casing_material": null, @@ -294595,9 +294595,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112262, - "casing_from": "0.00", - "casing_to": "41.00", + "well": 112262, + "start": "0.00", + "end": "41.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294614,9 +294614,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 102666, - "casing_from": "16.00", - "casing_to": "36.00", + "well": 102666, + "start": "16.00", + "end": "36.00", "diameter": "6.600", "casing_code": null, "casing_material": "STEEL", @@ -294633,9 +294633,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:24:20Z", "activity_submission": null, - "well_tag_number": 112712, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112712, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -294652,9 +294652,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112679, - "casing_from": "0.00", - "casing_to": "37.33", + "well": 112679, + "start": "0.00", + "end": "37.33", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294671,9 +294671,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112488, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112488, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294690,9 +294690,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112646, - "casing_from": "0.00", - "casing_to": "74.00", + "well": 112646, + "start": "0.00", + "end": "74.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294709,9 +294709,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112884, - "casing_from": "0.00", - "casing_to": "135.50", + "well": 112884, + "start": "0.00", + "end": "135.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -294728,9 +294728,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113057, - "casing_from": "0.00", - "casing_to": "230.00", + "well": 113057, + "start": "0.00", + "end": "230.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294747,9 +294747,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112851, - "casing_from": "0.00", - "casing_to": "333.00", + "well": 112851, + "start": "0.00", + "end": "333.00", "diameter": "18.000", "casing_code": null, "casing_material": "STEEL", @@ -294766,9 +294766,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112663, - "casing_from": "0.00", - "casing_to": "114.00", + "well": 112663, + "start": "0.00", + "end": "114.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -294785,9 +294785,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112697, - "casing_from": "0.00", - "casing_to": "92.75", + "well": 112697, + "start": "0.00", + "end": "92.75", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294804,9 +294804,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112275, - "casing_from": "0.00", - "casing_to": "16.04", + "well": 112275, + "start": "0.00", + "end": "16.04", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294823,9 +294823,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113170, - "casing_from": "15.00", - "casing_to": "477.00", + "well": 113170, + "start": "15.00", + "end": "477.00", "diameter": null, "casing_code": null, "casing_material": "PLASTIC", @@ -294842,9 +294842,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113023, - "casing_from": "0.00", - "casing_to": "131.00", + "well": 113023, + "start": "0.00", + "end": "131.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -294861,9 +294861,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112841, - "casing_from": "0.00", - "casing_to": "208.00", + "well": 112841, + "start": "0.00", + "end": "208.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294880,9 +294880,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112684, - "casing_from": "0.00", - "casing_to": "38.83", + "well": 112684, + "start": "0.00", + "end": "38.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -294899,9 +294899,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113172, - "casing_from": "56.00", - "casing_to": "76.00", + "well": 113172, + "start": "56.00", + "end": "76.00", "diameter": "9.000", "casing_code": null, "casing_material": "STEEL", @@ -294918,9 +294918,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 105417, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 105417, + "start": "0.00", + "end": "18.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -294937,9 +294937,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112867, - "casing_from": "0.00", - "casing_to": "15.50", + "well": 112867, + "start": "0.00", + "end": "15.50", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -294956,9 +294956,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113209, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 113209, + "start": "0.00", + "end": "80.00", "diameter": "8.750", "casing_code": null, "casing_material": "STEEL", @@ -294975,9 +294975,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112542, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112542, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -294994,9 +294994,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112545, - "casing_from": "40.00", - "casing_to": "460.00", + "well": 112545, + "start": "40.00", + "end": "460.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -295013,9 +295013,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112729, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112729, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -295032,9 +295032,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112536, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 112536, + "start": "0.00", + "end": "96.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295051,9 +295051,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112579, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112579, + "start": "0.00", + "end": "28.00", "diameter": "12.250", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -295070,9 +295070,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112963, - "casing_from": "0.00", - "casing_to": "300.00", + "well": 112963, + "start": "0.00", + "end": "300.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -295089,9 +295089,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113104, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 113104, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295108,9 +295108,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113119, - "casing_from": "0.00", - "casing_to": "100.00", + "well": 113119, + "start": "0.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295127,9 +295127,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112610, - "casing_from": "0.00", - "casing_to": "58.03", + "well": 112610, + "start": "0.00", + "end": "58.03", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295146,9 +295146,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113003, - "casing_from": "0.00", - "casing_to": "200.00", + "well": 113003, + "start": "0.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295165,9 +295165,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112824, - "casing_from": "0.00", - "casing_to": "165.00", + "well": 112824, + "start": "0.00", + "end": "165.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295184,9 +295184,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112411, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112411, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -295203,9 +295203,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112272, - "casing_from": "0.00", - "casing_to": "79.10", + "well": 112272, + "start": "0.00", + "end": "79.10", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295222,9 +295222,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112423, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112423, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -295241,9 +295241,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112685, - "casing_from": "0.00", - "casing_to": "49.25", + "well": 112685, + "start": "0.00", + "end": "49.25", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295260,9 +295260,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113172, - "casing_from": "136.00", - "casing_to": "296.00", + "well": 113172, + "start": "136.00", + "end": "296.00", "diameter": "9.000", "casing_code": null, "casing_material": "STEEL", @@ -295279,9 +295279,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112568, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112568, + "start": "0.00", + "end": "20.00", "diameter": "4.000", "casing_code": null, "casing_material": "STEEL", @@ -295298,9 +295298,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113113, - "casing_from": "0.00", - "casing_to": "24.00", + "well": 113113, + "start": "0.00", + "end": "24.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295317,9 +295317,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112321, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112321, + "start": "0.00", + "end": "36.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -295336,9 +295336,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112730, - "casing_from": "0.00", - "casing_to": "37.00", + "well": 112730, + "start": "0.00", + "end": "37.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -295355,9 +295355,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112689, - "casing_from": "0.00", - "casing_to": "28.83", + "well": 112689, + "start": "0.00", + "end": "28.83", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295374,9 +295374,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113082, - "casing_from": "0.00", - "casing_to": "54.00", + "well": 113082, + "start": "0.00", + "end": "54.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295393,9 +295393,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113149, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 113149, + "start": "0.00", + "end": "50.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295412,9 +295412,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113040, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 113040, + "start": "0.00", + "end": "20.00", "diameter": "6.630", "casing_code": null, "casing_material": "OTHER", @@ -295431,9 +295431,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113265, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113265, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -295450,9 +295450,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112409, - "casing_from": "0.00", - "casing_to": "357.00", + "well": 112409, + "start": "0.00", + "end": "357.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -295469,9 +295469,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112815, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112815, + "start": "0.00", + "end": "18.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295488,9 +295488,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112886, - "casing_from": "0.00", - "casing_to": "19.00", + "well": 112886, + "start": "0.00", + "end": "19.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -295507,9 +295507,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113216, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 113216, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295526,9 +295526,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112856, - "casing_from": "0.00", - "casing_to": "44.60", + "well": 112856, + "start": "0.00", + "end": "44.60", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295545,9 +295545,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112822, - "casing_from": "0.00", - "casing_to": "8.00", + "well": 112822, + "start": "0.00", + "end": "8.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -295564,9 +295564,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113147, - "casing_from": "0.00", - "casing_to": "5.00", + "well": 113147, + "start": "0.00", + "end": "5.00", "diameter": "5.000", "casing_code": null, "casing_material": "STEEL", @@ -295583,9 +295583,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112302, - "casing_from": "0.00", - "casing_to": "314.00", + "well": 112302, + "start": "0.00", + "end": "314.00", "diameter": "10.000", "casing_code": null, "casing_material": null, @@ -295602,9 +295602,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112873, - "casing_from": "0.00", - "casing_to": "54.00", + "well": 112873, + "start": "0.00", + "end": "54.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -295621,9 +295621,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112387, - "casing_from": "0.00", - "casing_to": "312.00", + "well": 112387, + "start": "0.00", + "end": "312.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -295640,9 +295640,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113147, - "casing_from": "3.00", - "casing_to": "255.00", + "well": 113147, + "start": "3.00", + "end": "255.00", "diameter": "3.000", "casing_code": null, "casing_material": "PLASTIC", @@ -295659,9 +295659,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112230, - "casing_from": "31.00", - "casing_to": "172.00", + "well": 112230, + "start": "31.00", + "end": "172.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295678,9 +295678,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112788, - "casing_from": "4.00", - "casing_to": "218.65", + "well": 112788, + "start": "4.00", + "end": "218.65", "diameter": "6.000", "casing_code": null, "casing_material": null, @@ -295697,9 +295697,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112836, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112836, + "start": "0.00", + "end": "15.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -295716,9 +295716,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112983, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112983, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -295735,9 +295735,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112457, - "casing_from": "96.00", - "casing_to": "500.00", + "well": 112457, + "start": "96.00", + "end": "500.00", "diameter": null, "casing_code": null, "casing_material": "OPEN_HOLE", @@ -295754,9 +295754,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112736, - "casing_from": null, - "casing_to": "60.50", + "well": 112736, + "start": null, + "end": "60.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -295773,9 +295773,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112365, - "casing_from": "0.00", - "casing_to": "219.00", + "well": 112365, + "start": "0.00", + "end": "219.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295792,9 +295792,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112498, - "casing_from": "0.00", - "casing_to": null, + "well": 112498, + "start": "0.00", + "end": null, "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295811,9 +295811,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112291, - "casing_from": "0.00", - "casing_to": "65.30", + "well": 112291, + "start": "0.00", + "end": "65.30", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295830,9 +295830,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112389, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112389, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -295849,9 +295849,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112426, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112426, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295868,9 +295868,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112522, - "casing_from": "0.00", - "casing_to": "68.00", + "well": 112522, + "start": "0.00", + "end": "68.00", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -295887,9 +295887,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112418, - "casing_from": "60.00", - "casing_to": "200.00", + "well": 112418, + "start": "60.00", + "end": "200.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -295906,9 +295906,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113099, - "casing_from": "0.00", - "casing_to": "500.00", + "well": 113099, + "start": "0.00", + "end": "500.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295925,9 +295925,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112420, - "casing_from": "17.00", - "casing_to": "100.00", + "well": 112420, + "start": "17.00", + "end": "100.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -295944,9 +295944,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112886, - "casing_from": "14.00", - "casing_to": "182.00", + "well": 112886, + "start": "14.00", + "end": "182.00", "diameter": "4.000", "casing_code": null, "casing_material": "OTHER", @@ -295963,9 +295963,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112604, - "casing_from": "0.00", - "casing_to": "216.00", + "well": 112604, + "start": "0.00", + "end": "216.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -295982,9 +295982,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112402, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112402, + "start": "0.00", + "end": "20.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296001,9 +296001,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112813, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112813, + "start": "0.00", + "end": "17.00", "diameter": "12.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296020,9 +296020,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112301, - "casing_from": "0.00", - "casing_to": "18.67", + "well": 112301, + "start": "0.00", + "end": "18.67", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296039,9 +296039,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113261, - "casing_from": "0.00", - "casing_to": "117.00", + "well": 113261, + "start": "0.00", + "end": "117.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296058,9 +296058,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112579, - "casing_from": "0.00", - "casing_to": "28.00", + "well": 112579, + "start": "0.00", + "end": "28.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -296077,9 +296077,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113291, - "casing_from": "0.00", - "casing_to": "132.00", + "well": 113291, + "start": "0.00", + "end": "132.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296096,9 +296096,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113204, - "casing_from": "0.00", - "casing_to": "175.00", + "well": 113204, + "start": "0.00", + "end": "175.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296115,9 +296115,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112571, - "casing_from": "0.00", - "casing_to": "38.00", + "well": 112571, + "start": "0.00", + "end": "38.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -296134,9 +296134,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112226, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112226, + "start": "0.00", + "end": "40.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -296153,9 +296153,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112948, - "casing_from": "0.00", - "casing_to": "32.00", + "well": 112948, + "start": "0.00", + "end": "32.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296172,9 +296172,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113262, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113262, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296191,9 +296191,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112645, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112645, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296210,9 +296210,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:42:39Z", "activity_submission": null, - "well_tag_number": 112708, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112708, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -296229,9 +296229,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T22:05:17Z", "activity_submission": null, - "well_tag_number": 112674, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112674, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296248,9 +296248,9 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T21:02:04Z", "activity_submission": null, - "well_tag_number": 112370, - "casing_from": "15.00", - "casing_to": "35.00", + "well": 112370, + "start": "15.00", + "end": "35.00", "diameter": "8.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -296267,9 +296267,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112431, - "casing_from": "0.00", - "casing_to": "52.01", + "well": 112431, + "start": "0.00", + "end": "52.01", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296286,9 +296286,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112915, - "casing_from": "0.00", - "casing_to": "50.00", + "well": 112915, + "start": "0.00", + "end": "50.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -296305,9 +296305,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112924, - "casing_from": "0.00", - "casing_to": "69.00", + "well": 112924, + "start": "0.00", + "end": "69.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296324,9 +296324,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112636, - "casing_from": "0.00", - "casing_to": "16.50", + "well": 112636, + "start": "0.00", + "end": "16.50", "diameter": "2.000", "casing_code": null, "casing_material": "STEEL", @@ -296343,9 +296343,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113218, - "casing_from": "0.00", - "casing_to": "66.00", + "well": 113218, + "start": "0.00", + "end": "66.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296362,9 +296362,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112340, - "casing_from": "18.50", - "casing_to": "625.00", + "well": 112340, + "start": "18.50", + "end": "625.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -296381,9 +296381,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112731, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112731, + "start": "0.00", + "end": "18.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296400,9 +296400,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112295, - "casing_from": "0.00", - "casing_to": "17.08", + "well": 112295, + "start": "0.00", + "end": "17.08", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296419,9 +296419,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112406, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112406, + "start": "0.00", + "end": "17.00", "diameter": null, "casing_code": null, "casing_material": null, @@ -296438,9 +296438,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T19:14:38Z", "activity_submission": null, - "well_tag_number": 113199, - "casing_from": "0.00", - "casing_to": "120.00", + "well": 113199, + "start": "0.00", + "end": "120.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -296457,9 +296457,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113288, - "casing_from": "0.00", - "casing_to": "152.50", + "well": 113288, + "start": "0.00", + "end": "152.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296476,9 +296476,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112386, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112386, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -296495,9 +296495,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-28T23:20:02Z", "activity_submission": null, - "well_tag_number": 113210, - "casing_from": "140.00", - "casing_to": "260.00", + "well": 113210, + "start": "140.00", + "end": "260.00", "diameter": "5.000", "casing_code": null, "casing_material": "PLASTIC", @@ -296514,9 +296514,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112879, - "casing_from": "0.00", - "casing_to": "212.17", + "well": 112879, + "start": "0.00", + "end": "212.17", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -296533,9 +296533,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112546, - "casing_from": "83.00", - "casing_to": "400.00", + "well": 112546, + "start": "83.00", + "end": "400.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -296552,9 +296552,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113013, - "casing_from": "0.00", - "casing_to": "1.00", + "well": 113013, + "start": "0.00", + "end": "1.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296571,9 +296571,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113016, - "casing_from": "0.00", - "casing_to": "175.00", + "well": 113016, + "start": "0.00", + "end": "175.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296590,9 +296590,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 110627, - "casing_from": "0.00", - "casing_to": "51.08", + "well": 110627, + "start": "0.00", + "end": "51.08", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296609,9 +296609,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113262, - "casing_from": "95.00", - "casing_to": "105.00", + "well": 113262, + "start": "95.00", + "end": "105.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -296628,9 +296628,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112263, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112263, + "start": "0.00", + "end": "80.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296647,9 +296647,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112903, - "casing_from": "3.00", - "casing_to": "107.50", + "well": 112903, + "start": "3.00", + "end": "107.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296666,9 +296666,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113203, - "casing_from": "0.00", - "casing_to": "190.00", + "well": 113203, + "start": "0.00", + "end": "190.00", "diameter": "6.000", "casing_code": null, "casing_material": "PLASTIC", @@ -296685,9 +296685,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113299, - "casing_from": "0.00", - "casing_to": "236.00", + "well": 113299, + "start": "0.00", + "end": "236.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296704,9 +296704,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112816, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112816, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296723,9 +296723,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112475, - "casing_from": "0.00", - "casing_to": "120.00", + "well": 112475, + "start": "0.00", + "end": "120.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296742,9 +296742,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113036, - "casing_from": "0.00", - "casing_to": "162.00", + "well": 113036, + "start": "0.00", + "end": "162.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -296761,9 +296761,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113281, - "casing_from": "0.00", - "casing_to": "143.00", + "well": 113281, + "start": "0.00", + "end": "143.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296780,9 +296780,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112294, - "casing_from": "0.00", - "casing_to": "8.67", + "well": 112294, + "start": "0.00", + "end": "8.67", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296799,9 +296799,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113303, - "casing_from": "0.00", - "casing_to": "8.00", + "well": 113303, + "start": "0.00", + "end": "8.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296818,9 +296818,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112252, - "casing_from": "0.00", - "casing_to": "91.50", + "well": 112252, + "start": "0.00", + "end": "91.50", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -296837,9 +296837,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112578, - "casing_from": "0.00", - "casing_to": "26.00", + "well": 112578, + "start": "0.00", + "end": "26.00", "diameter": null, "casing_code": null, "casing_material": null, @@ -296856,9 +296856,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112225, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112225, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -296875,9 +296875,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112453, - "casing_from": "0.00", - "casing_to": "280.00", + "well": 112453, + "start": "0.00", + "end": "280.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296894,9 +296894,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113247, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 113247, + "start": "0.00", + "end": "36.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -296913,9 +296913,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112720, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112720, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296932,9 +296932,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112812, - "casing_from": "0.00", - "casing_to": "22.00", + "well": 112812, + "start": "0.00", + "end": "22.00", "diameter": "20.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -296951,9 +296951,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112476, - "casing_from": "240.00", - "casing_to": "420.00", + "well": 112476, + "start": "240.00", + "end": "420.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -296970,9 +296970,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112246, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112246, + "start": "0.00", + "end": "36.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -296989,9 +296989,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112847, - "casing_from": "0.00", - "casing_to": "236.90", + "well": 112847, + "start": "0.00", + "end": "236.90", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297008,9 +297008,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112388, - "casing_from": "0.00", - "casing_to": "18.00", + "well": 112388, + "start": "0.00", + "end": "18.00", "diameter": "8.750", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297027,9 +297027,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112800, - "casing_from": "0.00", - "casing_to": "107.00", + "well": 112800, + "start": "0.00", + "end": "107.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297046,9 +297046,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112722, - "casing_from": "0.00", - "casing_to": "34.50", + "well": 112722, + "start": "0.00", + "end": "34.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -297065,9 +297065,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112490, - "casing_from": "0.00", - "casing_to": "80.00", + "well": 112490, + "start": "0.00", + "end": "80.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -297084,9 +297084,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112831, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 112831, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297103,9 +297103,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112514, - "casing_from": "18.00", - "casing_to": "745.00", + "well": 112514, + "start": "18.00", + "end": "745.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297122,9 +297122,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112247, - "casing_from": "0.00", - "casing_to": "37.50", + "well": 112247, + "start": "0.00", + "end": "37.50", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297141,9 +297141,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113092, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 113092, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297160,9 +297160,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112452, - "casing_from": "0.00", - "casing_to": "74.06", + "well": 112452, + "start": "0.00", + "end": "74.06", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297179,9 +297179,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112662, - "casing_from": "0.00", - "casing_to": "6.00", + "well": 112662, + "start": "0.00", + "end": "6.00", "diameter": null, "casing_code": null, "casing_material": "STEEL", @@ -297198,9 +297198,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112492, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112492, + "start": "0.00", + "end": "20.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297217,9 +297217,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112408, - "casing_from": "0.00", - "casing_to": "40.00", + "well": 112408, + "start": "0.00", + "end": "40.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297236,9 +297236,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112897, - "casing_from": "2.00", - "casing_to": "276.00", + "well": 112897, + "start": "2.00", + "end": "276.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297255,9 +297255,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112601, - "casing_from": "0.00", - "casing_to": "151.00", + "well": 112601, + "start": "0.00", + "end": "151.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297274,9 +297274,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113168, - "casing_from": "0.00", - "casing_to": "90.00", + "well": 113168, + "start": "0.00", + "end": "90.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297293,9 +297293,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113305, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113305, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297312,9 +297312,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112831, - "casing_from": "70.00", - "casing_to": "120.00", + "well": 112831, + "start": "70.00", + "end": "120.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297331,9 +297331,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112400, - "casing_from": "0.00", - "casing_to": "67.00", + "well": 112400, + "start": "0.00", + "end": "67.00", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -297350,9 +297350,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112325, - "casing_from": "0.00", - "casing_to": "316.50", + "well": 112325, + "start": "0.00", + "end": "316.50", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -297369,9 +297369,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112242, - "casing_from": "0.00", - "casing_to": "29.00", + "well": 112242, + "start": "0.00", + "end": "29.00", "diameter": "8.000", "casing_code": null, "casing_material": "OTHER", @@ -297388,9 +297388,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112517, - "casing_from": "0.00", - "casing_to": "136.00", + "well": 112517, + "start": "0.00", + "end": "136.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297407,9 +297407,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112424, - "casing_from": "0.00", - "casing_to": "32.00", + "well": 112424, + "start": "0.00", + "end": "32.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297426,9 +297426,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112457, - "casing_from": "0.00", - "casing_to": "96.00", + "well": 112457, + "start": "0.00", + "end": "96.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297445,9 +297445,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:53:54Z", "activity_submission": null, - "well_tag_number": 112707, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112707, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -297464,9 +297464,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112615, - "casing_from": "0.00", - "casing_to": "226.00", + "well": 112615, + "start": "0.00", + "end": "226.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -297483,9 +297483,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112573, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112573, + "start": "0.00", + "end": "18.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -297502,9 +297502,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112410, - "casing_from": "21.00", - "casing_to": "457.00", + "well": 112410, + "start": "21.00", + "end": "457.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297521,9 +297521,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112997, - "casing_from": "0.00", - "casing_to": "127.00", + "well": 112997, + "start": "0.00", + "end": "127.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -297540,9 +297540,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112223, - "casing_from": "0.00", - "casing_to": "18.50", + "well": 112223, + "start": "0.00", + "end": "18.50", "diameter": "8.750", "casing_code": null, "casing_material": "OTHER", @@ -297559,9 +297559,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112849, - "casing_from": "0.00", - "casing_to": "30.00", + "well": 112849, + "start": "0.00", + "end": "30.00", "diameter": "2.000", "casing_code": null, "casing_material": "OTHER", @@ -297578,9 +297578,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T20:45:37Z", "activity_submission": null, - "well_tag_number": 112716, - "casing_from": "0.00", - "casing_to": "17.00", + "well": 112716, + "start": "0.00", + "end": "17.00", "diameter": "8.000", "casing_code": null, "casing_material": null, @@ -297597,9 +297597,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112232, - "casing_from": "40.00", - "casing_to": "500.00", + "well": 112232, + "start": "40.00", + "end": "500.00", "diameter": "6.250", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297616,9 +297616,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112713, - "casing_from": "0.00", - "casing_to": "36.00", + "well": 112713, + "start": "0.00", + "end": "36.00", "diameter": "6.630", "casing_code": null, "casing_material": "STEEL", @@ -297635,9 +297635,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112285, - "casing_from": "0.00", - "casing_to": "37.33", + "well": 112285, + "start": "0.00", + "end": "37.33", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297654,9 +297654,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112996, - "casing_from": "0.00", - "casing_to": "115.00", + "well": 112996, + "start": "0.00", + "end": "115.00", "diameter": "12.000", "casing_code": null, "casing_material": "STEEL", @@ -297673,9 +297673,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113266, - "casing_from": "0.00", - "casing_to": "15.00", + "well": 113266, + "start": "0.00", + "end": "15.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297692,9 +297692,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113134, - "casing_from": "155.00", - "casing_to": "246.00", + "well": 113134, + "start": "155.00", + "end": "246.00", "diameter": "8.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297711,9 +297711,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112831, - "casing_from": "0.00", - "casing_to": "70.00", + "well": 112831, + "start": "0.00", + "end": "70.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297730,9 +297730,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112362, - "casing_from": "0.00", - "casing_to": "118.50", + "well": 112362, + "start": "0.00", + "end": "118.50", "diameter": "6.130", "casing_code": null, "casing_material": "STEEL", @@ -297749,9 +297749,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113181, - "casing_from": "0.00", - "casing_to": "145.00", + "well": 113181, + "start": "0.00", + "end": "145.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -297768,9 +297768,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112480, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112480, + "start": "0.00", + "end": "20.00", "diameter": "6.000", "casing_code": null, "casing_material": "STEEL", @@ -297787,9 +297787,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112446, - "casing_from": "0.00", - "casing_to": "20.00", + "well": 112446, + "start": "0.00", + "end": "20.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297806,9 +297806,9 @@ "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:19:01Z", "activity_submission": null, - "well_tag_number": 104533, - "casing_from": "0.00", - "casing_to": "41.00", + "well": 104533, + "start": "0.00", + "end": "41.00", "diameter": "8.630", "casing_code": null, "casing_material": "STEEL", @@ -297825,9 +297825,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112491, - "casing_from": "0.00", - "casing_to": "60.00", + "well": 112491, + "start": "0.00", + "end": "60.00", "diameter": "8.000", "casing_code": null, "casing_material": "STEEL", @@ -297844,9 +297844,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112698, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112698, + "start": "0.00", + "end": "16.00", "diameter": "10.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297863,9 +297863,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T23:20:16Z", "activity_submission": null, - "well_tag_number": 112330, - "casing_from": "0.00", - "casing_to": "178.00", + "well": 112330, + "start": "0.00", + "end": "178.00", "diameter": "6.500", "casing_code": null, "casing_material": "STEEL", @@ -297882,9 +297882,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 113290, - "casing_from": "18.00", - "casing_to": "440.00", + "well": 113290, + "start": "18.00", + "end": "440.00", "diameter": "6.130", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297901,9 +297901,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112454, - "casing_from": "167.00", - "casing_to": "180.00", + "well": 112454, + "start": "167.00", + "end": "180.00", "diameter": "6.000", "casing_code": null, "casing_material": "OPEN_HOLE", @@ -297920,9 +297920,9 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T17:45:44Z", "activity_submission": null, - "well_tag_number": 112664, - "casing_from": null, - "casing_to": null, + "well": 112664, + "start": null, + "end": null, "diameter": null, "casing_code": null, "casing_material": "STL_PUL_OT", @@ -297939,9 +297939,9 @@ "update_user": null, "update_date": null, "activity_submission": null, - "well_tag_number": 112255, - "casing_from": "0.00", - "casing_to": "16.00", + "well": 112255, + "start": "0.00", + "end": "16.00", "diameter": "8.000", "casing_code": null, "casing_material": "STL_PUL_OT", @@ -300338,7 +300338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, - "well_tag_number": 112902, + "well": 112902, "lithology_from": "16.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", @@ -300367,7 +300367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, - "well_tag_number": 112943, + "well": 112943, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -300396,7 +300396,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, - "well_tag_number": 112898, + "well": 112898, "lithology_from": "136.00", "lithology_to": "139.00", "lithology_raw_data": "SAND & PEBBLES", @@ -300425,7 +300425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -300454,7 +300454,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, - "well_tag_number": 112705, + "well": 112705, "lithology_from": "27.00", "lithology_to": "75.00", "lithology_raw_data": "BEDROCK", @@ -300483,7 +300483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "405.00", "lithology_to": "407.00", "lithology_raw_data": "DENSE/STIFF; CONGLOMERATE", @@ -300512,7 +300512,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, - "well_tag_number": 113290, + "well": 113290, "lithology_from": "430.00", "lithology_to": "440.00", "lithology_raw_data": null, @@ -300541,7 +300541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, - "well_tag_number": 112682, + "well": 112682, "lithology_from": "75.00", "lithology_to": "81.00", "lithology_raw_data": "BRITTLE CLAY/SANDSTONE", @@ -300570,7 +300570,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, - "well_tag_number": 112698, + "well": 112698, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -300599,7 +300599,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "348.00", "lithology_to": "400.00", "lithology_raw_data": null, @@ -300628,7 +300628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "151.00", "lithology_to": "155.00", "lithology_raw_data": null, @@ -300657,7 +300657,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:35:46Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL AND SAND", @@ -300686,7 +300686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -300715,7 +300715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "249.00", "lithology_to": "259.00", "lithology_raw_data": "MEDIUM-HARD COARSE SAND, FINE GRAVEL", @@ -300744,7 +300744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "66.00", "lithology_to": "88.00", "lithology_raw_data": null, @@ -300773,7 +300773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "118.00", "lithology_to": "119.00", "lithology_raw_data": null, @@ -300802,7 +300802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "105.00", "lithology_to": "152.00", "lithology_raw_data": "BROWN SILTY CLAY SOME GRAVEL", @@ -300831,7 +300831,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, - "well_tag_number": 112781, + "well": 112781, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY", @@ -300860,7 +300860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "75.00", "lithology_to": "102.00", "lithology_raw_data": null, @@ -300889,7 +300889,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:34:53Z", "activity_submission": null, - "well_tag_number": 112516, + "well": 112516, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -300918,7 +300918,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, - "well_tag_number": 112896, + "well": 112896, "lithology_from": "28.00", "lithology_to": "37.00", "lithology_raw_data": null, @@ -300947,7 +300947,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "63.00", "lithology_to": "250.00", "lithology_raw_data": "medium hard, getting lighter in color", @@ -300976,7 +300976,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "0.00", "lithology_to": "36.00", "lithology_raw_data": "BROWN SILTY DRY SANDS", @@ -301005,7 +301005,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "210.00", "lithology_to": "225.00", "lithology_raw_data": "SANDSTONE", @@ -301034,7 +301034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, - "well_tag_number": 113180, + "well": 113180, "lithology_from": "202.00", "lithology_to": "210.00", "lithology_raw_data": "little gravel", @@ -301063,7 +301063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "130.00", "lithology_to": "217.00", "lithology_raw_data": "CLAY", @@ -301092,7 +301092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "366.00", "lithology_to": "393.00", "lithology_raw_data": "med. grey /green", @@ -301121,7 +301121,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, - "well_tag_number": 112571, + "well": 112571, "lithology_from": "55.00", "lithology_to": "58.00", "lithology_raw_data": "SANDSTONE", @@ -301150,7 +301150,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "sand with gravel", @@ -301179,7 +301179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -301208,7 +301208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "2.00", "lithology_to": "6.00", "lithology_raw_data": "till", @@ -301237,7 +301237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, - "well_tag_number": 112990, + "well": 112990, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -301266,7 +301266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": "sand med course", @@ -301295,7 +301295,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "2.00", "lithology_to": "42.00", "lithology_raw_data": "SILT, SAND AND GRAVEL, W.B.", @@ -301324,7 +301324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -301353,7 +301353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, - "well_tag_number": 112743, + "well": 112743, "lithology_from": "58.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY", @@ -301382,7 +301382,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -301411,7 +301411,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "400.00", "lithology_to": "415.00", "lithology_raw_data": null, @@ -301440,7 +301440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "33.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -301469,7 +301469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "112.00", "lithology_to": "115.00", "lithology_raw_data": "GRAVEL SAND - W.B.", @@ -301498,7 +301498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "176.00", "lithology_to": "179.00", "lithology_raw_data": "CLAY, VOLCANIC, GRAVEL", @@ -301527,7 +301527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "47.00", "lithology_to": "74.00", "lithology_raw_data": "INTERBEDDED, BROWN GREY", @@ -301556,7 +301556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, - "well_tag_number": 112822, + "well": 112822, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -301585,7 +301585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, - "well_tag_number": 112831, + "well": 112831, "lithology_from": "12.00", "lithology_to": "70.00", "lithology_raw_data": "small balders", @@ -301614,7 +301614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "COARSE SAND, SILT", @@ -301643,7 +301643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, - "well_tag_number": 112949, + "well": 112949, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -301672,7 +301672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "100.00", "lithology_to": "230.00", "lithology_raw_data": "Hard grey bedrock", @@ -301701,7 +301701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "110.00", "lithology_to": "159.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -301730,7 +301730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "994.00", "lithology_to": "995.00", "lithology_raw_data": null, @@ -301759,7 +301759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, - "well_tag_number": 113186, + "well": 113186, "lithology_from": "35.00", "lithology_to": "135.00", "lithology_raw_data": "clay", @@ -301788,7 +301788,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "220.00", "lithology_to": "223.00", "lithology_raw_data": null, @@ -301817,7 +301817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", @@ -301846,7 +301846,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, - "well_tag_number": 112328, + "well": 112328, "lithology_from": "0.00", "lithology_to": "63.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -301875,7 +301875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, - "well_tag_number": 112961, + "well": 112961, "lithology_from": "37.50", "lithology_to": "40.00", "lithology_raw_data": "CLAY & SAND", @@ -301904,7 +301904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, - "well_tag_number": 113027, + "well": 113027, "lithology_from": "184.00", "lithology_to": "194.00", "lithology_raw_data": "Brwon Gravel and Sand", @@ -301933,7 +301933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "28.00", "lithology_to": "37.00", "lithology_raw_data": "BOULDERS & GRAVEL", @@ -301962,7 +301962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "74.00", "lithology_to": "92.00", "lithology_raw_data": "and cobbles", @@ -301991,7 +301991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -302020,7 +302020,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "302.00", "lithology_to": "306.00", "lithology_raw_data": "CLAY", @@ -302049,7 +302049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "34.00", "lithology_to": "48.00", "lithology_raw_data": "FINE BROWN SAND AND MEDIUM GRAVEL", @@ -302078,7 +302078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "231.00", "lithology_to": "233.00", "lithology_raw_data": "BROWN CLAY", @@ -302107,7 +302107,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:43:55Z", "activity_submission": null, - "well_tag_number": 110749, + "well": 110749, "lithology_from": "60.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE & BLACK FRACTURED ROCK", @@ -302136,7 +302136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "2.00", "lithology_to": "15.50", "lithology_raw_data": "GREY/GREEN GRANITE", @@ -302165,7 +302165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "105.00", "lithology_to": "110.00", "lithology_raw_data": "VERY DENSE; GREY SILT", @@ -302194,7 +302194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "23.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -302223,7 +302223,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:11:03Z", "activity_submission": null, - "well_tag_number": 113009, + "well": 113009, "lithology_from": "135.00", "lithology_to": "163.00", "lithology_raw_data": "gravel and sand", @@ -302252,7 +302252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "36.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -302281,7 +302281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, - "well_tag_number": 112317, + "well": 112317, "lithology_from": "51.00", "lithology_to": "120.00", "lithology_raw_data": "BOULDERS, GRAVEL, SAND", @@ -302310,7 +302310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "106.00", "lithology_to": "110.00", "lithology_raw_data": "and silts", @@ -302339,7 +302339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "42.00", "lithology_to": "54.00", "lithology_raw_data": "GREY/BROWN VOLCANIC", @@ -302368,7 +302368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:34Z", "activity_submission": null, - "well_tag_number": 113278, + "well": 113278, "lithology_from": "0.00", "lithology_to": "56.00", "lithology_raw_data": "till sand with gravel 13 to 56'", @@ -302397,7 +302397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "450.00", "lithology_to": "590.00", "lithology_raw_data": "BROWN/GREY VOLCANIC WITH OCCASIONAL TRACES", @@ -302426,7 +302426,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, - "well_tag_number": 112241, + "well": 112241, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "CLAY FILL", @@ -302455,7 +302455,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "204.00", "lithology_to": "210.00", "lithology_raw_data": "GREEY CLAYS", @@ -302484,7 +302484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:21Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", @@ -302513,7 +302513,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "11.00", "lithology_to": "30.00", "lithology_raw_data": "and tight till", @@ -302542,7 +302542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, - "well_tag_number": 112458, + "well": 112458, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY", @@ -302571,7 +302571,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "88.00", "lithology_to": "92.00", "lithology_raw_data": null, @@ -302600,7 +302600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "25.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -302629,7 +302629,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, - "well_tag_number": 112593, + "well": 112593, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL, SAND, FINE TO MEDIUM", @@ -302658,7 +302658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND", @@ -302687,7 +302687,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, - "well_tag_number": 112547, + "well": 112547, "lithology_from": "85.00", "lithology_to": "115.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", @@ -302716,7 +302716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, - "well_tag_number": 113271, + "well": 113271, "lithology_from": "70.00", "lithology_to": "130.00", "lithology_raw_data": null, @@ -302745,7 +302745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, - "well_tag_number": 112673, + "well": 112673, "lithology_from": "68.00", "lithology_to": "83.00", "lithology_raw_data": "FINE AND SILTY BROWN SAND WITH TRACE OF GRAVEL", @@ -302774,7 +302774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, - "well_tag_number": 112295, + "well": 112295, "lithology_from": "35.00", "lithology_to": "150.00", "lithology_raw_data": "VOLCANIC", @@ -302803,7 +302803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, - "well_tag_number": 112479, + "well": 112479, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL-COARSE, CLAY CONTENT", @@ -302832,7 +302832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "101.00", "lithology_to": "112.00", "lithology_raw_data": "MEDIUM-SOFT; SANDSTONE", @@ -302861,7 +302861,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:16:24Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "430.00", "lithology_to": "477.00", "lithology_raw_data": "Black shale, hard layers", @@ -302890,7 +302890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "35.00", "lithology_to": "130.00", "lithology_raw_data": "CLAY", @@ -302919,7 +302919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "24.00", "lithology_to": "32.00", "lithology_raw_data": "GREY/GREEN/BROWN VOLCANIC/BROKEN CLAY", @@ -302948,7 +302948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -302977,7 +302977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "115.00", "lithology_to": "177.00", "lithology_raw_data": "FINE BROWN SAND, SOME STONES", @@ -303006,7 +303006,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "490.00", "lithology_to": "500.00", "lithology_raw_data": "SS, S&P, med coarse", @@ -303035,7 +303035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "18.00", "lithology_to": "101.00", "lithology_raw_data": null, @@ -303064,7 +303064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:27:19Z", "activity_submission": null, - "well_tag_number": 112633, + "well": 112633, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "silt trace of gravel", @@ -303093,7 +303093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, - "well_tag_number": 113205, + "well": 113205, "lithology_from": "85.00", "lithology_to": "96.00", "lithology_raw_data": "gravel, sand", @@ -303122,7 +303122,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "78.00", "lithology_to": "92.00", "lithology_raw_data": "SAND, SILT, GRAVEL, WOOD", @@ -303151,7 +303151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, - "well_tag_number": 113082, + "well": 113082, "lithology_from": "170.00", "lithology_to": "200.00", "lithology_raw_data": null, @@ -303180,7 +303180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "24.00", "lithology_to": "39.00", "lithology_raw_data": null, @@ -303209,7 +303209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, - "well_tag_number": 113251, + "well": 113251, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -303238,7 +303238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, - "well_tag_number": 112373, + "well": 112373, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "silt organiccs", @@ -303267,7 +303267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": "sand with gravel", @@ -303296,7 +303296,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -303325,7 +303325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "70.00", "lithology_to": "190.00", "lithology_raw_data": null, @@ -303354,7 +303354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, - "well_tag_number": 112299, + "well": 112299, "lithology_from": "105.00", "lithology_to": "117.00", "lithology_raw_data": "SAND, SOME ROCK", @@ -303383,7 +303383,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "49.00", "lithology_to": "54.00", "lithology_raw_data": null, @@ -303412,7 +303412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "325.00", "lithology_to": "401.00", "lithology_raw_data": "bedrock, coarse grain", @@ -303441,7 +303441,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, - "well_tag_number": 112911, + "well": 112911, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "MED COARSE SAND AND SOME COARSE GRAVEL", @@ -303470,7 +303470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", @@ -303499,7 +303499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "GRAVEL, MINOR, SAND", @@ -303528,7 +303528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, - "well_tag_number": 108027, + "well": 108027, "lithology_from": "42.00", "lithology_to": "110.00", "lithology_raw_data": "bedrock", @@ -303557,7 +303557,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "86.00", "lithology_to": "113.00", "lithology_raw_data": "till", @@ -303586,7 +303586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "FRACTURED", @@ -303615,7 +303615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": "SILTSTONE, SHALE, BROWN/GREY", @@ -303644,7 +303644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "123.00", "lithology_to": "135.00", "lithology_raw_data": "SAND", @@ -303673,7 +303673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "183.00", "lithology_to": "282.00", "lithology_raw_data": null, @@ -303702,7 +303702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, - "well_tag_number": 112608, + "well": 112608, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL, CLAY, FINE SAND", @@ -303731,7 +303731,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "304.00", "lithology_to": "306.00", "lithology_raw_data": "MEDIUM-HARD, GREY-BROWN-GREY, SHALE/SANDSTONE/SALT AND PEPPER TILL", @@ -303760,7 +303760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, - "well_tag_number": 112435, + "well": 112435, "lithology_from": "80.00", "lithology_to": "83.00", "lithology_raw_data": "and gravels", @@ -303789,7 +303789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": "and silts", @@ -303818,7 +303818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "135.00", "lithology_to": "280.00", "lithology_raw_data": "BLACK/GREEN/WHITE, VOLCANIC - OCCASIONAL WHITE TRACES", @@ -303847,7 +303847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -303876,7 +303876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "318.00", "lithology_to": "322.00", "lithology_raw_data": "FINE TO MEDIUM COARSE", @@ -303905,7 +303905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "6.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -303934,7 +303934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "SANDSTONE & SILTSTONE, MEDIUM TO HARD LENSES, GREY & BROWN", @@ -303963,7 +303963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "65.00", "lithology_to": "108.00", "lithology_raw_data": "SANDSTONE, MED, WEATHERED LENSES", @@ -303992,7 +303992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, - "well_tag_number": 112349, + "well": 112349, "lithology_from": "52.00", "lithology_to": "56.00", "lithology_raw_data": "gravel sand", @@ -304021,7 +304021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, - "well_tag_number": 112946, + "well": 112946, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "GRAVEL WITH FINE SAND", @@ -304050,7 +304050,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:23:08Z", "activity_submission": null, - "well_tag_number": 113085, + "well": 113085, "lithology_from": "350.00", "lithology_to": "490.00", "lithology_raw_data": "GREEN BEDROCK WITH QUARTZ", @@ -304079,7 +304079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, - "well_tag_number": 112870, + "well": 112870, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY & ROCK", @@ -304108,7 +304108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, - "well_tag_number": 112891, + "well": 112891, "lithology_from": "8.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL", @@ -304137,7 +304137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "115.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -304166,7 +304166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "68.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -304195,7 +304195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "49.00", "lithology_to": "86.00", "lithology_raw_data": null, @@ -304224,7 +304224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "gravel and wood debris", @@ -304253,7 +304253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL/COARSE SAND", @@ -304282,7 +304282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "81.00", "lithology_to": "97.00", "lithology_raw_data": null, @@ -304311,7 +304311,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "47.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -304340,7 +304340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "76.00", "lithology_to": "103.00", "lithology_raw_data": "FINE SAND", @@ -304369,7 +304369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "81.00", "lithology_to": "230.00", "lithology_raw_data": "glacial till", @@ -304398,7 +304398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -304427,7 +304427,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, - "well_tag_number": 112228, + "well": 112228, "lithology_from": "160.00", "lithology_to": "175.00", "lithology_raw_data": "NO CHANGES", @@ -304456,7 +304456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "52.00", "lithology_to": "58.00", "lithology_raw_data": "SILTY CLAY WITH SOME VOLCANIC ASH LAYERS", @@ -304485,7 +304485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, - "well_tag_number": 113263, + "well": 113263, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -304514,7 +304514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, - "well_tag_number": 113271, + "well": 113271, "lithology_from": "173.00", "lithology_to": "175.00", "lithology_raw_data": null, @@ -304543,7 +304543,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "16.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -304572,7 +304572,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, - "well_tag_number": 113021, + "well": 113021, "lithology_from": "105.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -304601,7 +304601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "180.00", "lithology_to": "202.00", "lithology_raw_data": "FINE SAND", @@ -304630,7 +304630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "BROWN/BLACK ORGANICS", @@ -304659,7 +304659,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, - "well_tag_number": 112911, + "well": 112911, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": "BOULDER AND FEW COBBLES", @@ -304688,7 +304688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -304717,7 +304717,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-18T21:47:10Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "100.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM/HARD; CEMENTED GRAVEL, CLAY LAYER, BEDROCK 145", @@ -304746,7 +304746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "127.00", "lithology_to": "136.00", "lithology_raw_data": "CLAY AND ROCK", @@ -304775,7 +304775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "SAND", @@ -304804,7 +304804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "26.00", "lithology_to": "35.00", "lithology_raw_data": "sand with gravel", @@ -304833,7 +304833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, - "well_tag_number": 112301, + "well": 112301, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -304862,7 +304862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", @@ -304891,7 +304891,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, - "well_tag_number": 112306, + "well": 112306, "lithology_from": "165.00", "lithology_to": "169.00", "lithology_raw_data": "BEDROCK", @@ -304920,7 +304920,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:35:05Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "116.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -304949,7 +304949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "66.00", "lithology_to": "108.00", "lithology_raw_data": "till with cobbles", @@ -304978,7 +304978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, - "well_tag_number": 112628, + "well": 112628, "lithology_from": "6.00", "lithology_to": "135.00", "lithology_raw_data": "CLAY", @@ -305007,7 +305007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "144.00", "lithology_to": "176.00", "lithology_raw_data": null, @@ -305036,7 +305036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "128.00", "lithology_to": "140.00", "lithology_raw_data": "SAND MED-COARSE, SMALL MED PEBBLES BROWN & GREY", @@ -305065,7 +305065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "262.00", "lithology_to": "350.00", "lithology_raw_data": "DARKER VOLCANIC", @@ -305094,7 +305094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, - "well_tag_number": 112950, + "well": 112950, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -305123,7 +305123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "257.00", "lithology_to": "278.00", "lithology_raw_data": "SAND, GRAVEL, COBBLES", @@ -305152,7 +305152,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "387.00", "lithology_to": "390.00", "lithology_raw_data": "FRIABLE", @@ -305181,7 +305181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "128.00", "lithology_to": "135.00", "lithology_raw_data": "and silts", @@ -305210,7 +305210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, - "well_tag_number": 112536, + "well": 112536, "lithology_from": "20.00", "lithology_to": "53.00", "lithology_raw_data": "SAND", @@ -305239,7 +305239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "24.00", "lithology_to": "34.00", "lithology_raw_data": null, @@ -305268,7 +305268,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, - "well_tag_number": 112592, + "well": 112592, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND AND FINE GRAVEL", @@ -305297,7 +305297,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, - "well_tag_number": 112911, + "well": 112911, "lithology_from": "37.00", "lithology_to": "47.00", "lithology_raw_data": "MEDIUM COARSE SAND & SOME COARSE GRAVEL", @@ -305326,7 +305326,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T19:51:19Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "224.00", "lithology_to": "275.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -305355,7 +305355,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, - "well_tag_number": 113284, + "well": 113284, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "sand fine med", @@ -305384,7 +305384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "393.00", "lithology_to": "396.00", "lithology_raw_data": "CLAY", @@ -305413,7 +305413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "208.00", "lithology_to": "212.00", "lithology_raw_data": "BROWN CLAY", @@ -305442,7 +305442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, - "well_tag_number": 112592, + "well": 112592, "lithology_from": "110.00", "lithology_to": "115.00", "lithology_raw_data": "CLAY", @@ -305471,7 +305471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, - "well_tag_number": 112316, + "well": 112316, "lithology_from": "1.00", "lithology_to": "144.00", "lithology_raw_data": "GRAVEL, FINE SAND", @@ -305500,7 +305500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:44:36Z", "activity_submission": null, - "well_tag_number": 112664, + "well": 112664, "lithology_from": "26.50", "lithology_to": "38.00", "lithology_raw_data": "CLAY", @@ -305529,7 +305529,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, - "well_tag_number": 112682, + "well": 112682, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "TILL", @@ -305558,7 +305558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -305587,7 +305587,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, - "well_tag_number": 112518, + "well": 112518, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": "BROWN SAND", @@ -305616,7 +305616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "39.00", "lithology_to": "62.00", "lithology_raw_data": "fine to medium", @@ -305645,7 +305645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, - "well_tag_number": 112234, + "well": 112234, "lithology_from": "47.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM/HARD B/BL VOLCANIC BEDROCK", @@ -305674,7 +305674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "190.00", "lithology_to": "243.00", "lithology_raw_data": "CLAY", @@ -305703,7 +305703,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:18:59Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "MEDIUM-HARD; COARSE GRAVEL", @@ -305732,7 +305732,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, - "well_tag_number": 112391, + "well": 112391, "lithology_from": "30.00", "lithology_to": "105.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", @@ -305761,7 +305761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "48.00", "lithology_to": "50.00", "lithology_raw_data": "MEDIUM/SOFT, SAND-COARSE", @@ -305790,7 +305790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": "STICKY CLAY", @@ -305819,7 +305819,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", @@ -305848,7 +305848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "23.00", "lithology_to": "37.00", "lithology_raw_data": "SANDY CLAY WITH GRAVEL", @@ -305877,7 +305877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE TO MEDIUM SAND, GRAVEL", @@ -305906,7 +305906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "106.00", "lithology_to": "152.00", "lithology_raw_data": "GREY/BROWN GRAVELS/SANDY/CLAY", @@ -305935,7 +305935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "182.00", "lithology_to": "246.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -305964,7 +305964,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:58:40Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "CLAY", @@ -305993,7 +305993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, - "well_tag_number": 112689, + "well": 112689, "lithology_from": "50.00", "lithology_to": "65.00", "lithology_raw_data": "VOLCANIC MIX", @@ -306022,7 +306022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, - "well_tag_number": 112862, + "well": 112862, "lithology_from": "105.00", "lithology_to": "110.00", "lithology_raw_data": "CLAY, GRAVEL WITH SAND", @@ -306051,7 +306051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "120.00", "lithology_to": "300.00", "lithology_raw_data": "with black streaks", @@ -306080,7 +306080,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:39:14Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "226.00", "lithology_to": "229.00", "lithology_raw_data": null, @@ -306109,7 +306109,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:49:22Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "200.00", "lithology_to": "230.00", "lithology_raw_data": "SS & Shale clay lenses - soft layers of ash like shale", @@ -306138,7 +306138,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, - "well_tag_number": 112756, + "well": 112756, "lithology_from": "74.00", "lithology_to": "256.00", "lithology_raw_data": "OPEN HOLE BEDROCK", @@ -306167,7 +306167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -306196,7 +306196,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "700.00", "lithology_to": "780.00", "lithology_raw_data": "Shale", @@ -306225,7 +306225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "437.00", "lithology_to": "442.00", "lithology_raw_data": "WITH BROWNISH INTERBEDED", @@ -306254,7 +306254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "280.00", "lithology_to": "325.00", "lithology_raw_data": "VOLCANIC", @@ -306283,7 +306283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, - "well_tag_number": 113174, + "well": 113174, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -306312,7 +306312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "112.00", "lithology_to": "114.00", "lithology_raw_data": "MEDIUM-HARD, SANDSTONE/GREY SHALE", @@ -306341,7 +306341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, - "well_tag_number": 112990, + "well": 112990, "lithology_from": "25.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY & COBBLES", @@ -306370,7 +306370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:48Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "256.00", "lithology_to": "273.00", "lithology_raw_data": "and sands", @@ -306399,7 +306399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, - "well_tag_number": 113289, + "well": 113289, "lithology_from": "47.00", "lithology_to": "380.00", "lithology_raw_data": "siltstone/shale", @@ -306428,7 +306428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "17.00", "lithology_to": "109.00", "lithology_raw_data": null, @@ -306457,7 +306457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "167.00", "lithology_to": "290.00", "lithology_raw_data": null, @@ -306486,7 +306486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND", @@ -306515,7 +306515,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "43.00", "lithology_to": "46.00", "lithology_raw_data": "and clay", @@ -306544,7 +306544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "95.00", "lithology_to": "112.00", "lithology_raw_data": null, @@ -306573,7 +306573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, - "well_tag_number": 112316, + "well": 112316, "lithology_from": "175.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL", @@ -306602,7 +306602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "50.00", "lithology_to": "73.00", "lithology_raw_data": "VERY STIFF; CH - CLAY, HIGH TOUGHNESS, NO DILATENCY", @@ -306631,7 +306631,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "FINE SAND WITH MEDIUM GRAVEL", @@ -306660,7 +306660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "356.00", "lithology_to": "391.00", "lithology_raw_data": "GREY COBBLY TILL, WET", @@ -306689,7 +306689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, - "well_tag_number": 112925, + "well": 112925, "lithology_from": "135.00", "lithology_to": "149.00", "lithology_raw_data": null, @@ -306718,7 +306718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "43.00", "lithology_to": "50.00", "lithology_raw_data": "SHALE", @@ -306747,7 +306747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "HARD/LOOSE BOULDERS/GRAVELS", @@ -306776,7 +306776,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "168.00", "lithology_to": "198.00", "lithology_raw_data": "CLAY WITH SMALL W.B. VEINS", @@ -306805,7 +306805,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "353.00", "lithology_to": "357.00", "lithology_raw_data": null, @@ -306834,7 +306834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "96.00", "lithology_to": "110.00", "lithology_raw_data": "and gravels", @@ -306863,7 +306863,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "120.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -306892,7 +306892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, - "well_tag_number": 113116, + "well": 113116, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "rocks", @@ -306921,7 +306921,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "177.00", "lithology_to": "186.00", "lithology_raw_data": "silt till", @@ -306950,7 +306950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "and gravel", @@ -306979,7 +306979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "47.00", "lithology_to": "54.00", "lithology_raw_data": "and gravel", @@ -307008,7 +307008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "0.00", "lithology_to": "105.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -307037,7 +307037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, - "well_tag_number": 112746, + "well": 112746, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "TOPSOIL WITH SAND AND GRAVEL", @@ -307066,7 +307066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "sand with gravel", @@ -307095,7 +307095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SILTY CLAY", @@ -307124,7 +307124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, - "well_tag_number": 113149, + "well": 113149, "lithology_from": "15.00", "lithology_to": "42.00", "lithology_raw_data": "gravel, boulders", @@ -307153,7 +307153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "1.00", "lithology_to": "8.00", "lithology_raw_data": "LIGHT BROWN SILTY SANDS", @@ -307182,7 +307182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -307211,7 +307211,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -307240,7 +307240,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "rockfill", @@ -307269,7 +307269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "275.00", "lithology_to": "286.00", "lithology_raw_data": null, @@ -307298,7 +307298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "BROWN CLAY", @@ -307327,7 +307327,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, - "well_tag_number": 112520, + "well": 112520, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -307356,7 +307356,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, - "well_tag_number": 112785, + "well": 112785, "lithology_from": "7.42", "lithology_to": "62.20", "lithology_raw_data": null, @@ -307385,7 +307385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "541.00", "lithology_to": "603.00", "lithology_raw_data": "grey/green", @@ -307414,7 +307414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "167.00", "lithology_to": "173.00", "lithology_raw_data": "BROWN-GREY, SANDSTONE", @@ -307443,7 +307443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM TO FINE SAND", @@ -307472,7 +307472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "254.00", "lithology_to": "385.00", "lithology_raw_data": "fine and coarse grain", @@ -307501,7 +307501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "115.00", "lithology_to": "121.00", "lithology_raw_data": "GRAVEL, SAND - W.B DIRTY", @@ -307530,7 +307530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, - "well_tag_number": 112695, + "well": 112695, "lithology_from": "110.00", "lithology_to": "118.00", "lithology_raw_data": "VOLCANIC MIX", @@ -307559,7 +307559,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-10-03T13:11:41Z", "activity_submission": null, - "well_tag_number": 113269, + "well": 113269, "lithology_from": "65.00", "lithology_to": "116.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -307588,7 +307588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, - "well_tag_number": 112970, + "well": 112970, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "GRAVEL, SAND, CLAY,BOULDERS", @@ -307617,7 +307617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "79.00", "lithology_to": "81.00", "lithology_raw_data": "GRAVEL & SAND WITH FINES, GREY BROWN", @@ -307646,7 +307646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, - "well_tag_number": 100001, + "well": 100001, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL, BROWN", @@ -307675,7 +307675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "11.00", "lithology_to": "32.00", "lithology_raw_data": "and fine grained sand", @@ -307704,7 +307704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "139.00", "lithology_to": "198.00", "lithology_raw_data": null, @@ -307733,7 +307733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY, CLAY", @@ -307762,7 +307762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "1.00", "lithology_to": "14.00", "lithology_raw_data": "GRAVELLY TILL WITH BOULDERS", @@ -307791,7 +307791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "135.00", "lithology_to": "138.00", "lithology_raw_data": null, @@ -307820,7 +307820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "206.00", "lithology_to": "210.00", "lithology_raw_data": null, @@ -307849,7 +307849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": "sand with clay", @@ -307878,7 +307878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand with gravel", @@ -307907,7 +307907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, - "well_tag_number": 112229, + "well": 112229, "lithology_from": "116.00", "lithology_to": "220.00", "lithology_raw_data": "SHALE BEDROCK", @@ -307936,7 +307936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY & SAND", @@ -307965,7 +307965,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:45:22Z", "activity_submission": null, - "well_tag_number": 113016, + "well": 113016, "lithology_from": "168.00", "lithology_to": "175.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -307994,7 +307994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "26.00", "lithology_to": "36.00", "lithology_raw_data": "VERY LOOSE, DARK YELLOWISH BROWN, FINE TO MEDIUM SAND AND SOME COARSE GRAVEL", @@ -308023,7 +308023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "47.00", "lithology_to": "88.00", "lithology_raw_data": "BEDROCK", @@ -308052,7 +308052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "105.00", "lithology_to": "111.00", "lithology_raw_data": null, @@ -308081,7 +308081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -308110,7 +308110,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY AND GRAVEL", @@ -308139,7 +308139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, - "well_tag_number": 112392, + "well": 112392, "lithology_from": "71.00", "lithology_to": "76.00", "lithology_raw_data": "BEDROCK", @@ -308168,7 +308168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "245.00", "lithology_to": "250.00", "lithology_raw_data": "CLAY", @@ -308197,7 +308197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SAND WITH GRAVEL, W COBBLES", @@ -308226,7 +308226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "125.00", "lithology_to": "145.00", "lithology_raw_data": "WHITE/BLACK GRANITE WITH SEAM OF PINK FELDSPAR", @@ -308255,7 +308255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "9.00", "lithology_to": "24.00", "lithology_raw_data": "CEMENTED SAND, GRAVEL", @@ -308284,7 +308284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, - "well_tag_number": 113147, + "well": 113147, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -308313,7 +308313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, - "well_tag_number": 112866, + "well": 112866, "lithology_from": "12.00", "lithology_to": "29.00", "lithology_raw_data": "with cobbles", @@ -308342,7 +308342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "255.00", "lithology_to": "260.00", "lithology_raw_data": null, @@ -308371,7 +308371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "37.00", "lithology_to": "47.00", "lithology_raw_data": "TILL & CLAY", @@ -308400,7 +308400,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, - "well_tag_number": 112613, + "well": 112613, "lithology_from": "16.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -308429,7 +308429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "FINE TO MEDIUM GRAVEL CLAY SEAMS", @@ -308458,7 +308458,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "361.00", "lithology_to": "541.00", "lithology_raw_data": "grey/green", @@ -308487,7 +308487,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:32:29Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "122.00", "lithology_to": "186.00", "lithology_raw_data": "clay, little gravel mixed", @@ -308516,7 +308516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, - "well_tag_number": 113291, + "well": 113291, "lithology_from": "78.00", "lithology_to": "140.00", "lithology_raw_data": "sand, med-coarse", @@ -308545,7 +308545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, - "well_tag_number": 112686, + "well": 112686, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "TILL", @@ -308574,7 +308574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": null, @@ -308603,7 +308603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, - "well_tag_number": 113180, + "well": 113180, "lithology_from": "95.00", "lithology_to": "135.00", "lithology_raw_data": "sand layers", @@ -308632,7 +308632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "31.00", "lithology_to": "70.00", "lithology_raw_data": "SILT, WOOD", @@ -308661,7 +308661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "257.00", "lithology_to": "262.00", "lithology_raw_data": "BROWNISH GREY, FINE, FRIABLE, DIRTY", @@ -308690,7 +308690,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, - "well_tag_number": 112548, + "well": 112548, "lithology_from": "25.00", "lithology_to": "130.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -308719,7 +308719,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM GRAVEL, FINE SAND", @@ -308748,7 +308748,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "27.00", "lithology_to": "75.00", "lithology_raw_data": "fine to medium grained", @@ -308777,7 +308777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "3.00", "lithology_to": "25.00", "lithology_raw_data": "BROWN FINE SAND AND GRAVEL", @@ -308806,7 +308806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, - "well_tag_number": 112338, + "well": 112338, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "FINE SAND", @@ -308835,7 +308835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "117.00", "lithology_to": "129.00", "lithology_raw_data": "sand / gravel", @@ -308864,7 +308864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "120.00", "lithology_to": "132.00", "lithology_raw_data": "ORANGE LAVA ROCK", @@ -308893,7 +308893,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-15T21:35:14Z", "activity_submission": null, - "well_tag_number": 112944, + "well": 112944, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -308922,7 +308922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "95.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK, GRAPHITE", @@ -308951,7 +308951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, - "well_tag_number": 113262, + "well": 113262, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -308980,7 +308980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "94.00", "lithology_to": "108.00", "lithology_raw_data": "with clay/silt", @@ -309009,7 +309009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, - "well_tag_number": 112919, + "well": 112919, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "(TILL)", @@ -309038,7 +309038,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "190.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -309067,7 +309067,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, - "well_tag_number": 112659, + "well": 112659, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -309096,7 +309096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "73.00", "lithology_to": "115.00", "lithology_raw_data": "bouldery with gravel", @@ -309125,7 +309125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": "ROCK & CLAY", @@ -309154,7 +309154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY", @@ -309183,7 +309183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, - "well_tag_number": 112297, + "well": 112297, "lithology_from": "80.00", "lithology_to": "123.00", "lithology_raw_data": "BASALT", @@ -309212,7 +309212,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "86.00", "lithology_to": "90.00", "lithology_raw_data": "BEDROCK", @@ -309241,7 +309241,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:26:40Z", "activity_submission": null, - "well_tag_number": 112999, + "well": 112999, "lithology_from": "0.00", "lithology_to": "116.00", "lithology_raw_data": "siltstone shale", @@ -309270,7 +309270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "108.00", "lithology_to": "117.00", "lithology_raw_data": "SS GRY SOME S & P ", @@ -309299,7 +309299,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "6.00", "lithology_to": "98.00", "lithology_raw_data": "VOLCANIC", @@ -309328,7 +309328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "55.00", "lithology_to": "58.00", "lithology_raw_data": null, @@ -309357,7 +309357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, - "well_tag_number": 112528, + "well": 112528, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -309386,7 +309386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "204.00", "lithology_to": "220.00", "lithology_raw_data": "SHALE", @@ -309415,7 +309415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "BASALT", @@ -309444,7 +309444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, - "well_tag_number": 112577, + "well": 112577, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": null, @@ -309473,7 +309473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": "62.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -309502,7 +309502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, - "well_tag_number": 112298, + "well": 112298, "lithology_from": "72.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK", @@ -309531,7 +309531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "396.00", "lithology_to": "410.00", "lithology_raw_data": "SANDSTONE FINE WITH SHALE & SILTSTONE LAYERS", @@ -309560,7 +309560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "335.00", "lithology_to": "340.00", "lithology_raw_data": null, @@ -309589,7 +309589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -309618,7 +309618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, - "well_tag_number": 112750, + "well": 112750, "lithology_from": "4.00", "lithology_to": "33.00", "lithology_raw_data": "GREY SILT SAND & GRAVEL TILL - BOULDERS", @@ -309647,7 +309647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, - "well_tag_number": 112745, + "well": 112745, "lithology_from": "15.00", "lithology_to": "33.00", "lithology_raw_data": "SAND AND GRAVEL WIH SILTY CLAY LAYERS", @@ -309676,7 +309676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "122.00", "lithology_to": "141.00", "lithology_raw_data": null, @@ -309705,7 +309705,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "152.00", "lithology_to": "165.00", "lithology_raw_data": "SAND/GRAVELS IN CLAY", @@ -309734,7 +309734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "53.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -309763,7 +309763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, - "well_tag_number": 113036, + "well": 113036, "lithology_from": "155.00", "lithology_to": "257.00", "lithology_raw_data": "SHALE, SOFT, BLACK", @@ -309792,7 +309792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "166.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -309821,7 +309821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "3.00", "lithology_to": "78.00", "lithology_raw_data": "VOLCANIC", @@ -309850,7 +309850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "217.00", "lithology_to": "250.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -309879,7 +309879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, - "well_tag_number": 112753, + "well": 112753, "lithology_from": "69.00", "lithology_to": "71.00", "lithology_raw_data": "GREY CLAY", @@ -309908,7 +309908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, - "well_tag_number": 112971, + "well": 112971, "lithology_from": "1.00", "lithology_to": "21.00", "lithology_raw_data": "GRAVEL, SAND, CLAY, COBBLES", @@ -309937,7 +309937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "16.00", "lithology_to": "23.00", "lithology_raw_data": "and gravel", @@ -309966,7 +309966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "112.00", "lithology_to": "115.00", "lithology_raw_data": "S+P, M.W.", @@ -309995,7 +309995,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "13.00", "lithology_to": "47.00", "lithology_raw_data": "and gravel", @@ -310024,7 +310024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "121.00", "lithology_to": "185.00", "lithology_raw_data": "SEVERAL FRACTURED AREAS", @@ -310053,7 +310053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, - "well_tag_number": 113166, + "well": 113166, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand, fine med", @@ -310082,7 +310082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -310111,7 +310111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "134.00", "lithology_to": "165.00", "lithology_raw_data": "COARSE SANDSTONE", @@ -310140,7 +310140,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "219.00", "lithology_to": "232.00", "lithology_raw_data": "SANDSTONE / SHALE", @@ -310169,7 +310169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "DARK BROWN TO BLACK SILTY GRAVELS, WET TO W.B.", @@ -310198,7 +310198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "60.00", "lithology_to": "72.00", "lithology_raw_data": "CLEAN W.B. MEDIUM GRAVEL WITH FINE SAND", @@ -310227,7 +310227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, - "well_tag_number": 112926, + "well": 112926, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "MEDIUM GRAVEL/WOOD", @@ -310256,7 +310256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -310285,7 +310285,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, - "well_tag_number": 112879, + "well": 112879, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND & BOULDERS", @@ -310314,7 +310314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "GREY/RED VOLCANIC", @@ -310343,7 +310343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "240.00", "lithology_to": "310.00", "lithology_raw_data": "BLACK/GREY VOLCANIC BEDROCK", @@ -310372,7 +310372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, - "well_tag_number": 113152, + "well": 113152, "lithology_from": "25.00", "lithology_to": "28.00", "lithology_raw_data": "sand, fine med", @@ -310401,7 +310401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "CLAY", @@ -310430,7 +310430,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "115.00", "lithology_to": "144.00", "lithology_raw_data": "GREY SAND", @@ -310459,7 +310459,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:30:48Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "440.00", "lithology_to": "540.00", "lithology_raw_data": "SILT/CLAY LAYERS", @@ -310488,7 +310488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "127.00", "lithology_to": "167.00", "lithology_raw_data": "SHALE", @@ -310517,7 +310517,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "16.00", "lithology_to": "40.00", "lithology_raw_data": "ANGALAR ROCK WITH SLIDE ROCK ", @@ -310546,7 +310546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, - "well_tag_number": 113304, + "well": 113304, "lithology_from": "83.00", "lithology_to": "84.00", "lithology_raw_data": "seals water", @@ -310575,7 +310575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "14.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND MINOR GRAVEL", @@ -310604,7 +310604,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "4.00", "lithology_to": "63.00", "lithology_raw_data": "BROWN, GREY VOLCANIC", @@ -310633,7 +310633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "220.00", "lithology_to": "258.00", "lithology_raw_data": "with quartz layers", @@ -310662,7 +310662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, - "well_tag_number": 112995, + "well": 112995, "lithology_from": "9.00", "lithology_to": "72.00", "lithology_raw_data": "GRAVEL/COARSE SAND", @@ -310691,7 +310691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "80.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -310720,7 +310720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, - "well_tag_number": 112483, + "well": 112483, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, SOME SILT TRACES, MINOR GRAVEL", @@ -310749,7 +310749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "till", @@ -310778,7 +310778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, - "well_tag_number": 112972, + "well": 112972, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": "SAND, GRAVEL, CLAY, COBBLES", @@ -310807,7 +310807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "345.00", "lithology_to": "345.00", "lithology_raw_data": "FRACTURE", @@ -310836,7 +310836,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "338.00", "lithology_to": "343.00", "lithology_raw_data": "very sandy, some silt color", @@ -310865,7 +310865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-02T21:43:35Z", "activity_submission": null, - "well_tag_number": 110627, + "well": 110627, "lithology_from": "44.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -310894,7 +310894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "60.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", @@ -310923,7 +310923,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, - "well_tag_number": 113090, + "well": 113090, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -310952,7 +310952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -310981,7 +310981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T17:20:03Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "Hydro-fracked open hole", @@ -311010,7 +311010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, - "well_tag_number": 112900, + "well": 112900, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY & ROCKS", @@ -311039,7 +311039,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "26.00", "lithology_to": "121.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -311068,7 +311068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, - "well_tag_number": 112968, + "well": 112968, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -311097,7 +311097,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-27T23:03:41Z", "activity_submission": null, - "well_tag_number": 112700, + "well": 112700, "lithology_from": "37.00", "lithology_to": "283.00", "lithology_raw_data": "SOLID BEDROCK, VOLCANIC, SOME BASALT LAYERS", @@ -311126,7 +311126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "237.00", "lithology_to": "240.00", "lithology_raw_data": "VERY DIRTY, MEDIUM GREY SAND WITH VOLCANIC ASH AND CLAY LAYERS", @@ -311155,7 +311155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:17Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "80.00", "lithology_to": "93.00", "lithology_raw_data": "SHALE/HARD BROWN SHALE LAYERS", @@ -311184,7 +311184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "110.00", "lithology_to": "114.00", "lithology_raw_data": "VOLCANIC", @@ -311213,7 +311213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "50.00", "lithology_to": "75.00", "lithology_raw_data": "BROWN FINE SANDS (WET)", @@ -311242,7 +311242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, - "well_tag_number": 112577, + "well": 112577, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -311271,7 +311271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, - "well_tag_number": 113105, + "well": 113105, "lithology_from": "55.00", "lithology_to": "215.00", "lithology_raw_data": null, @@ -311300,7 +311300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, - "well_tag_number": 112885, + "well": 112885, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY & SILTY GRAVEL", @@ -311329,7 +311329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "125.00", "lithology_to": "185.00", "lithology_raw_data": "SILTY, COARSE GRAVEL", @@ -311358,7 +311358,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-03T23:48:14Z", "activity_submission": null, - "well_tag_number": 112859, + "well": 112859, "lithology_from": "102.00", "lithology_to": "110.00", "lithology_raw_data": "wood", @@ -311387,7 +311387,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:25:03Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "COARSE SAND", @@ -311416,7 +311416,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "176.00", "lithology_to": "225.00", "lithology_raw_data": null, @@ -311445,7 +311445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, - "well_tag_number": 112571, + "well": 112571, "lithology_from": "72.00", "lithology_to": "75.00", "lithology_raw_data": "SANDSTONE", @@ -311474,7 +311474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", @@ -311503,7 +311503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "155.00", "lithology_to": "161.00", "lithology_raw_data": null, @@ -311532,7 +311532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:27Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "152.00", "lithology_to": "250.00", "lithology_raw_data": "FINE", @@ -311561,7 +311561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, - "well_tag_number": 112544, + "well": 112544, "lithology_from": "25.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY", @@ -311590,7 +311590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, - "well_tag_number": 112220, + "well": 112220, "lithology_from": "12.00", "lithology_to": "175.00", "lithology_raw_data": "GREY/WHITE MEDIUM VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -311619,7 +311619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOP SOIL WITH SOME GRAVEL", @@ -311648,7 +311648,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, - "well_tag_number": 112753, + "well": 112753, "lithology_from": "23.00", "lithology_to": "64.00", "lithology_raw_data": "GREY CLAY", @@ -311677,7 +311677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, - "well_tag_number": 112493, + "well": 112493, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": "MEDIUM TO FINE SAND", @@ -311706,7 +311706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, - "well_tag_number": 112363, + "well": 112363, "lithology_from": "135.00", "lithology_to": "145.00", "lithology_raw_data": null, @@ -311735,7 +311735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "24.00", "lithology_to": "42.00", "lithology_raw_data": "FINE SAND, MEDIUM GRAVEL", @@ -311764,7 +311764,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "2.00", "lithology_to": "6.00", "lithology_raw_data": "BOULDER", @@ -311793,7 +311793,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -311822,7 +311822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "212.00", "lithology_to": "280.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH FEW TRACES", @@ -311851,7 +311851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, - "well_tag_number": 112592, + "well": 112592, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": "MEDIUM TO COARSE GRAVEL", @@ -311880,7 +311880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "SHALE/BENTONIC LAYERS", @@ -311909,7 +311909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, - "well_tag_number": 112892, + "well": 112892, "lithology_from": "3.00", "lithology_to": "158.00", "lithology_raw_data": "DARK GREY", @@ -311938,7 +311938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": "sand with gravel ", @@ -311967,7 +311967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, - "well_tag_number": 112882, + "well": 112882, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -311996,7 +311996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, - "well_tag_number": 113262, + "well": 113262, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -312025,7 +312025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "300.00", "lithology_to": "340.00", "lithology_raw_data": "MEDIUM SAND TO FINE WITH SILT", @@ -312054,7 +312054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "270.00", "lithology_to": "300.00", "lithology_raw_data": "SANDSTONE/SHALE STRINGERS", @@ -312083,7 +312083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "263.00", "lithology_to": "275.00", "lithology_raw_data": null, @@ -312112,7 +312112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, - "well_tag_number": 112870, + "well": 112870, "lithology_from": "429.00", "lithology_to": "500.00", "lithology_raw_data": null, @@ -312141,7 +312141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "53.00", "lithology_to": "71.00", "lithology_raw_data": "fine to medium grained", @@ -312170,7 +312170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "250.00", "lithology_to": "254.00", "lithology_raw_data": null, @@ -312199,7 +312199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "316.00", "lithology_to": "329.00", "lithology_raw_data": null, @@ -312228,7 +312228,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T19:59:16Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "45.00", "lithology_to": "62.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -312257,7 +312257,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "63.00", "lithology_to": "169.00", "lithology_raw_data": "GRANITE", @@ -312286,7 +312286,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, - "well_tag_number": 112287, + "well": 112287, "lithology_from": "17.00", "lithology_to": "90.00", "lithology_raw_data": "BASALT", @@ -312315,7 +312315,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "300.00", "lithology_to": "302.00", "lithology_raw_data": "SAND", @@ -312344,7 +312344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, - "well_tag_number": 112500, + "well": 112500, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY", @@ -312373,7 +312373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "40.00", "lithology_to": "44.00", "lithology_raw_data": "SHALE", @@ -312402,7 +312402,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, - "well_tag_number": 112303, + "well": 112303, "lithology_from": "65.00", "lithology_to": "79.00", "lithology_raw_data": null, @@ -312431,7 +312431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "40.00", "lithology_to": "69.00", "lithology_raw_data": "DENSE BR SAND + GRAVEL", @@ -312460,7 +312460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "7.00", "lithology_to": "9.00", "lithology_raw_data": "MEDIUM/HARD; BOULDER", @@ -312489,7 +312489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "73.00", "lithology_to": "79.00", "lithology_raw_data": null, @@ -312518,7 +312518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "SILT GRAVEL", @@ -312547,7 +312547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "82.00", "lithology_to": "83.00", "lithology_raw_data": "very sandy", @@ -312576,7 +312576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, - "well_tag_number": 112343, + "well": 112343, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN VOLCANIC - TRACES OF FELDSPAR", @@ -312605,7 +312605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "36.00", "lithology_to": "38.00", "lithology_raw_data": "LOOSE, DARK YELLOWISH BROWN, FINE TO MEDIUM SAND AND TRACE OF COARSE GRAVEL AND WOOD CHIPS", @@ -312634,7 +312634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, - "well_tag_number": 112739, + "well": 112739, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "SAND, GRAVEL", @@ -312663,7 +312663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "30.00", "lithology_to": "38.00", "lithology_raw_data": "sand with gravel", @@ -312692,7 +312692,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, - "well_tag_number": 113003, + "well": 113003, "lithology_from": "25.00", "lithology_to": "115.00", "lithology_raw_data": "Grey Clay and Rocks", @@ -312721,7 +312721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "175.00", "lithology_to": "208.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -312750,7 +312750,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "96.00", "lithology_to": "106.00", "lithology_raw_data": null, @@ -312779,7 +312779,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "24.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -312808,7 +312808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, - "well_tag_number": 112925, + "well": 112925, "lithology_from": "149.00", "lithology_to": "165.00", "lithology_raw_data": null, @@ -312837,7 +312837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "117.00", "lithology_to": "119.00", "lithology_raw_data": "BLACK/GREY, VOLCANIC", @@ -312866,7 +312866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, - "well_tag_number": 112976, + "well": 112976, "lithology_from": "52.00", "lithology_to": "63.00", "lithology_raw_data": "TIGHT SAND & GRAVEL", @@ -312895,7 +312895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -312924,7 +312924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "92.00", "lithology_to": "115.00", "lithology_raw_data": "with medium sand", @@ -312953,7 +312953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "377.00", "lithology_to": "383.00", "lithology_raw_data": null, @@ -312982,7 +312982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "28.00", "lithology_to": "45.00", "lithology_raw_data": "PACKED SILT", @@ -313011,7 +313011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, - "well_tag_number": 112655, + "well": 112655, "lithology_from": "44.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY AND ROCK", @@ -313040,7 +313040,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; CLAY AND ROCKS", @@ -313069,7 +313069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": "SAND, GRAVEL, SILT", @@ -313098,7 +313098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, - "well_tag_number": 112766, + "well": 112766, "lithology_from": "1494.40", "lithology_to": "1500.90", "lithology_raw_data": "SILTSTONE/MUDSTONE", @@ -313127,7 +313127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "65.00", "lithology_to": "82.00", "lithology_raw_data": null, @@ -313156,7 +313156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND & CLAY", @@ -313185,7 +313185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "337.00", "lithology_to": "346.00", "lithology_raw_data": "MUDSTONE", @@ -313214,7 +313214,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "493.00", "lithology_to": "497.00", "lithology_raw_data": "FRACTURE, 4FT OF QUARTZ", @@ -313243,7 +313243,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, - "well_tag_number": 113134, + "well": 113134, "lithology_from": "52.00", "lithology_to": "64.00", "lithology_raw_data": "clay, silt", @@ -313272,7 +313272,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T17:44:28Z", "activity_submission": null, - "well_tag_number": 113025, + "well": 113025, "lithology_from": "232.00", "lithology_to": "243.00", "lithology_raw_data": "Brown Gravel and Sand", @@ -313301,7 +313301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, - "well_tag_number": 112745, + "well": 112745, "lithology_from": "33.00", "lithology_to": "39.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME SILTY CLAY", @@ -313330,7 +313330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, - "well_tag_number": 112328, + "well": 112328, "lithology_from": "92.00", "lithology_to": "132.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -313359,7 +313359,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, - "well_tag_number": 112651, + "well": 112651, "lithology_from": "139.00", "lithology_to": "185.00", "lithology_raw_data": "SAND AND PEBBLES", @@ -313388,7 +313388,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "320.00", "lithology_to": "323.00", "lithology_raw_data": "FINE SANDSTONE / SILTSTONE", @@ -313417,7 +313417,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILTY, CLAY", @@ -313446,7 +313446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:43:53Z", "activity_submission": null, - "well_tag_number": 112641, + "well": 112641, "lithology_from": "79.00", "lithology_to": "96.00", "lithology_raw_data": "sand with gravel ", @@ -313475,7 +313475,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:26:15Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "145.00", "lithology_to": "160.00", "lithology_raw_data": "WEATHERED BEDROCK", @@ -313504,7 +313504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "149.00", "lithology_to": "156.00", "lithology_raw_data": null, @@ -313533,7 +313533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/HARD; CEMENTED LAYER AND CLAY GRAVEL ", @@ -313562,7 +313562,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, - "well_tag_number": 113251, + "well": 113251, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "gravel", @@ -313591,7 +313591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "70.00", "lithology_to": "73.00", "lithology_raw_data": "MEDIUM TO FINE", @@ -313620,7 +313620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "29.00", "lithology_to": "41.00", "lithology_raw_data": "GRAVEL AND SILT", @@ -313649,7 +313649,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, - "well_tag_number": 112966, + "well": 112966, "lithology_from": "16.00", "lithology_to": "30.00", "lithology_raw_data": "SATURATED SAND & GRAVEL", @@ -313678,7 +313678,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": "1.50", "lithology_to": "3.00", "lithology_raw_data": "broken", @@ -313707,7 +313707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "568.00", "lithology_to": "580.00", "lithology_raw_data": "DENSE/STIFF; CLAY", @@ -313736,7 +313736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "5.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -313765,7 +313765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, - "well_tag_number": 112669, + "well": 112669, "lithology_from": "92.00", "lithology_to": "178.00", "lithology_raw_data": "SILT/CLAY", @@ -313794,7 +313794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "150.00", "lithology_to": "162.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -313823,7 +313823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, - "well_tag_number": 112257, + "well": 112257, "lithology_from": "10.00", "lithology_to": "16.00", "lithology_raw_data": "LARGE BOULDERS WITH FINE SAND", @@ -313852,7 +313852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, - "well_tag_number": 112257, + "well": 112257, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "GREY CLAY WITH GRAVEL", @@ -313881,7 +313881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "81.00", "lithology_to": "89.00", "lithology_raw_data": null, @@ -313910,7 +313910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -313939,7 +313939,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -313968,7 +313968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "515.00", "lithology_to": "560.00", "lithology_raw_data": "GREY SHALE", @@ -313997,7 +313997,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "gravel", @@ -314026,7 +314026,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "92.00", "lithology_to": "129.00", "lithology_raw_data": null, @@ -314055,7 +314055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL AND SAND, MEDIUM TO FINE", @@ -314084,7 +314084,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "96.00", "lithology_to": "140.00", "lithology_raw_data": "SOFT, CRUMBLY BEDROCK", @@ -314113,7 +314113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, - "well_tag_number": 112797, + "well": 112797, "lithology_from": "100.00", "lithology_to": null, "lithology_raw_data": "TILL", @@ -314142,7 +314142,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROWN & GREY", @@ -314171,7 +314171,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "234.00", "lithology_to": "237.00", "lithology_raw_data": "VERY DIRTY FINE AND MEDIUM SAND WITH VOLCANIC ASH AND GREY CLAY LAYERS", @@ -314200,7 +314200,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, - "well_tag_number": 112806, + "well": 112806, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -314229,7 +314229,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-11T21:44:06Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "MEDIUM/HARD; LAYERED CEMENTED GRAVEL, COARSE GRAVEL", @@ -314258,7 +314258,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "210.00", "lithology_to": "440.00", "lithology_raw_data": "fractures often", @@ -314287,7 +314287,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "118.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -314316,7 +314316,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, - "well_tag_number": 113252, + "well": 113252, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "silty clay", @@ -314345,7 +314345,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, - "well_tag_number": 112528, + "well": 112528, "lithology_from": "140.00", "lithology_to": "152.00", "lithology_raw_data": "sand gravel", @@ -314374,7 +314374,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "75.00", "lithology_to": "85.00", "lithology_raw_data": "SHALE & SLTST", @@ -314403,7 +314403,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, - "well_tag_number": 112293, + "well": 112293, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", @@ -314432,7 +314432,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "575.00", "lithology_to": "695.00", "lithology_raw_data": "SEVERAL FRACTURES - SEAMS OF GNIESS ", @@ -314461,7 +314461,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, - "well_tag_number": 112292, + "well": 112292, "lithology_from": "75.00", "lithology_to": null, "lithology_raw_data": "FINE SAND", @@ -314490,7 +314490,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, - "well_tag_number": 112611, + "well": 112611, "lithology_from": "8.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY", @@ -314519,7 +314519,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "55.00", "lithology_to": "66.00", "lithology_raw_data": "and gravels", @@ -314548,7 +314548,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "GRAVEL& COBBLES", @@ -314577,7 +314577,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "290.00", "lithology_to": "360.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -314606,7 +314606,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "104.00", "lithology_to": "108.00", "lithology_raw_data": "ORGANICS", @@ -314635,7 +314635,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, - "well_tag_number": 112713, + "well": 112713, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH GRAVEL", @@ -314664,7 +314664,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, - "well_tag_number": 112672, + "well": 112672, "lithology_from": "76.00", "lithology_to": "80.00", "lithology_raw_data": "FRACTURED CRYSTALLINE", @@ -314693,7 +314693,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "84.00", "lithology_to": "210.00", "lithology_raw_data": null, @@ -314722,7 +314722,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "69.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", @@ -314751,7 +314751,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "0.00", "lithology_to": "0.16", "lithology_raw_data": "ASPHALT", @@ -314780,7 +314780,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, - "well_tag_number": 113028, + "well": 113028, "lithology_from": "195.00", "lithology_to": "203.00", "lithology_raw_data": "BROWN SAND AND GRAVEL", @@ -314809,7 +314809,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "93.00", "lithology_to": "102.00", "lithology_raw_data": null, @@ -314838,7 +314838,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "GRAVEL & WOD", @@ -314867,7 +314867,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "WEATHERED BEDROCK", @@ -314896,7 +314896,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "180.00", "lithology_to": "197.00", "lithology_raw_data": "and gravels", @@ -314925,7 +314925,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; COARSE, SAND, GRAVEL", @@ -314954,7 +314954,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "152.00", "lithology_to": "153.00", "lithology_raw_data": "HARD PAN", @@ -314983,7 +314983,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "50.00", "lithology_to": "53.00", "lithology_raw_data": null, @@ -315012,7 +315012,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, - "well_tag_number": 112798, + "well": 112798, "lithology_from": "36.08", "lithology_to": "83.60", "lithology_raw_data": "SILTY SAND WITH GRAVEL", @@ -315041,7 +315041,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", @@ -315070,7 +315070,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "400.00", "lithology_to": "600.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -315099,7 +315099,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, - "well_tag_number": 112515, + "well": 112515, "lithology_from": "7.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -315128,7 +315128,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "178.00", "lithology_to": "208.00", "lithology_raw_data": "silt, clay", @@ -315157,7 +315157,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -315186,7 +315186,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, - "well_tag_number": 112972, + "well": 112972, "lithology_from": "61.00", "lithology_to": "78.00", "lithology_raw_data": "SAND & GRAVEL", @@ -315215,7 +315215,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, - "well_tag_number": 112797, + "well": 112797, "lithology_from": "3.30", "lithology_to": "36.08", "lithology_raw_data": "POORLY GRADED SAND WITH GRAVEL", @@ -315244,7 +315244,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, - "well_tag_number": 113021, + "well": 113021, "lithology_from": "127.00", "lithology_to": "144.00", "lithology_raw_data": null, @@ -315273,7 +315273,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, - "well_tag_number": 112242, + "well": 112242, "lithology_from": "73.00", "lithology_to": "88.00", "lithology_raw_data": "SANDSTONE", @@ -315302,7 +315302,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, - "well_tag_number": 112257, + "well": 112257, "lithology_from": "16.00", "lithology_to": "24.00", "lithology_raw_data": "SMALL GRAVEL WITH FINE SAND", @@ -315331,7 +315331,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, - "well_tag_number": 113095, + "well": 113095, "lithology_from": "9.00", "lithology_to": "192.00", "lithology_raw_data": "CLAY AND TILL", @@ -315360,7 +315360,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, COARSE, MINOR GRAVEL, SILT", @@ -315389,7 +315389,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "118.00", "lithology_to": "120.00", "lithology_raw_data": "and gravel", @@ -315418,7 +315418,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY MOIST, WITH SILT", @@ -315447,7 +315447,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, - "well_tag_number": 112518, + "well": 112518, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "COBBLES AND SAND", @@ -315476,7 +315476,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, - "well_tag_number": 112822, + "well": 112822, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": "broken", @@ -315505,7 +315505,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "400.00", "lithology_to": "500.00", "lithology_raw_data": "WHITE-BLACK-PINK-ORANGE BEDROCK GRANITE", @@ -315534,7 +315534,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, - "well_tag_number": 113206, + "well": 113206, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "broken rocks", @@ -315563,7 +315563,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "256.00", "lithology_to": "354.00", "lithology_raw_data": "BROWN CLAYS, SILTS, SANDS, SOME GRAVELS", @@ -315592,7 +315592,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, - "well_tag_number": 112869, + "well": 112869, "lithology_from": "25.90", "lithology_to": "72.00", "lithology_raw_data": "GREY & WHITE", @@ -315621,7 +315621,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, - "well_tag_number": 112452, + "well": 112452, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "and fine sand", @@ -315650,7 +315650,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "400.00", "lithology_to": "500.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH SOME TRACES", @@ -315679,7 +315679,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM-COARSE SAND", @@ -315708,7 +315708,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "23.00", "lithology_to": "113.00", "lithology_raw_data": "DRY SILT AND SAND", @@ -315737,7 +315737,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, - "well_tag_number": 112877, + "well": 112877, "lithology_from": "109.00", "lithology_to": "354.00", "lithology_raw_data": "GREY & WHITE", @@ -315766,7 +315766,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T16:42:11Z", "activity_submission": null, - "well_tag_number": 113099, + "well": 113099, "lithology_from": "475.00", "lithology_to": "500.00", "lithology_raw_data": "glacial till", @@ -315795,7 +315795,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "192.00", "lithology_to": "325.00", "lithology_raw_data": "PINK/WHITE GRANITE ", @@ -315824,7 +315824,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "104.00", "lithology_to": "106.50", "lithology_raw_data": "CLAY/SHALE WITH SOME FINE GRAVEL", @@ -315853,7 +315853,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, - "well_tag_number": 113264, + "well": 113264, "lithology_from": "20.00", "lithology_to": "61.00", "lithology_raw_data": null, @@ -315882,7 +315882,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "107.00", "lithology_to": "140.00", "lithology_raw_data": "Gravel (till?), some sand, trace silt and clay, grey-brown", @@ -315911,7 +315911,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, - "well_tag_number": 112982, + "well": 112982, "lithology_from": "5.00", "lithology_to": "51.00", "lithology_raw_data": "GLACIAL TILL AND COBBLES", @@ -315940,7 +315940,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "120.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -315969,7 +315969,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "68.00", "lithology_to": "71.00", "lithology_raw_data": "SAND & CLAY", @@ -315998,7 +315998,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T16:59:23Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "SOIL SAND LOAM", @@ -316027,7 +316027,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "136.00", "lithology_to": "159.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -316056,7 +316056,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "180.00", "lithology_to": "220.00", "lithology_raw_data": "GRAVEL", @@ -316085,7 +316085,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, - "well_tag_number": 112235, + "well": 112235, "lithology_from": "180.00", "lithology_to": "345.00", "lithology_raw_data": "MEDIUM/SOFT, SANDSTONE BEDROCK", @@ -316114,7 +316114,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, - "well_tag_number": 112946, + "well": 112946, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -316143,7 +316143,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, - "well_tag_number": 112764, + "well": 112764, "lithology_from": "11.50", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM STIFF; SILTY CLAY - TRACE SAND AND GRAVEL. INCREASE IN TRACE GRAVEL (UP TO 4CM SUBROUNDED). ", @@ -316172,7 +316172,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, - "well_tag_number": 112925, + "well": 112925, "lithology_from": "15.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -316201,7 +316201,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "COARSE GRAVEL", @@ -316230,7 +316230,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "162.00", "lithology_to": "260.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -316259,7 +316259,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:57:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY", @@ -316288,7 +316288,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, - "well_tag_number": 113180, + "well": 113180, "lithology_from": "175.00", "lithology_to": "202.00", "lithology_raw_data": null, @@ -316317,7 +316317,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": "compact gravel", @@ -316346,7 +316346,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "153.00", "lithology_to": "160.00", "lithology_raw_data": null, @@ -316375,7 +316375,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "33.00", "lithology_to": "52.00", "lithology_raw_data": "CLAY & SAND", @@ -316404,7 +316404,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-10-12T17:48:36Z", "activity_submission": null, - "well_tag_number": 112946, + "well": 112946, "lithology_from": "9.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM COBBLES WITH MEDIUM SAND", @@ -316433,7 +316433,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, - "well_tag_number": 113009, + "well": 113009, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "clay", @@ -316462,7 +316462,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY", @@ -316491,7 +316491,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, - "well_tag_number": 113210, + "well": 113210, "lithology_from": "200.00", "lithology_to": "260.00", "lithology_raw_data": "SS", @@ -316520,7 +316520,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "113.00", "lithology_to": "230.00", "lithology_raw_data": "SHALE, MED HARD, FINE, GREY SILTSTONE LENSES @ 131'", @@ -316549,7 +316549,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "8 inch drilled borehole for surface seal", @@ -316578,7 +316578,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "342.00", "lithology_to": "405.00", "lithology_raw_data": "GRANITE", @@ -316607,7 +316607,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-03T23:51:47Z", "activity_submission": null, - "well_tag_number": 112840, + "well": 112840, "lithology_from": "108.00", "lithology_to": "260.00", "lithology_raw_data": "bedrock. green/grey", @@ -316636,7 +316636,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -316665,7 +316665,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "164.00", "lithology_to": "178.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE / SILTSTONE / FINE SANDSTONE", @@ -316694,7 +316694,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "235.00", "lithology_to": "251.00", "lithology_raw_data": "GREY SILTS, SANDS AND GRAVELS (CEMENTED)", @@ -316723,7 +316723,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "ORGANIC/PACK SAND GRAVELS", @@ -316752,7 +316752,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, - "well_tag_number": 113168, + "well": 113168, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "sand gravel", @@ -316781,7 +316781,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, - "well_tag_number": 112589, + "well": 112589, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND", @@ -316810,7 +316810,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, - "well_tag_number": 113169, + "well": 113169, "lithology_from": "190.00", "lithology_to": "195.00", "lithology_raw_data": "sand gravel", @@ -316839,7 +316839,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "15.00", "lithology_to": "70.00", "lithology_raw_data": "Brown Silt, sand with clay/silt", @@ -316868,7 +316868,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "81.00", "lithology_to": "82.00", "lithology_raw_data": null, @@ -316897,7 +316897,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, - "well_tag_number": 112973, + "well": 112973, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": "SAND & GRAVEL", @@ -316926,7 +316926,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD; ROCKS, CLAY, SILT", @@ -316955,7 +316955,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "5.00", "lithology_to": "24.00", "lithology_raw_data": "CLAY & SAND & GRAVEL", @@ -316984,7 +316984,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-03T22:02:13Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "117.00", "lithology_to": "122.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE", @@ -317013,7 +317013,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:00Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "0.00", "lithology_to": "93.00", "lithology_raw_data": "silty sand gravel", @@ -317042,7 +317042,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "160.00", "lithology_to": "170.00", "lithology_raw_data": "GRAVEL", @@ -317071,7 +317071,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "38.00", "lithology_to": "51.00", "lithology_raw_data": "SAND, GRAVEL, COBBLES", @@ -317100,7 +317100,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -317129,7 +317129,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, - "well_tag_number": 112544, + "well": 112544, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", @@ -317158,7 +317158,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "24.00", "lithology_to": "48.00", "lithology_raw_data": "cobbles", @@ -317187,7 +317187,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "164.00", "lithology_to": "217.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -317216,7 +317216,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "140.00", "lithology_to": "155.00", "lithology_raw_data": "WET, SILTY SAND AND GRAVEL", @@ -317245,7 +317245,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "13.00", "lithology_to": "28.00", "lithology_raw_data": "clay and till", @@ -317274,7 +317274,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, - "well_tag_number": 112966, + "well": 112966, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "SILTY SAND WITH BOULDERS", @@ -317303,7 +317303,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "26.00", "lithology_to": "124.00", "lithology_raw_data": "SOFT/MEDIUM; BEDROCK", @@ -317332,7 +317332,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:29:38Z", "activity_submission": null, - "well_tag_number": 112788, + "well": 112788, "lithology_from": "4.00", "lithology_to": "218.65", "lithology_raw_data": null, @@ -317361,7 +317361,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "330.00", "lithology_to": "388.00", "lithology_raw_data": "SHALE & SILTSTONE WITH A FEW FINE SANDSTONE LENSES", @@ -317390,7 +317390,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "TILL", @@ -317419,7 +317419,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "208.00", "lithology_to": "245.00", "lithology_raw_data": "FINE SAND, SILT & CLAY", @@ -317448,7 +317448,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, - "well_tag_number": 112717, + "well": 112717, "lithology_from": "3.50", "lithology_to": "15.00", "lithology_raw_data": "DENSE SAND AND GRAVEL WITH COBBLES", @@ -317477,7 +317477,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "3.00", "lithology_to": "18.00", "lithology_raw_data": "SAND/GRAVEL WITH SOIL", @@ -317506,7 +317506,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "97.00", "lithology_to": "99.00", "lithology_raw_data": "LIGHT/DARK GREY, MEDIUM HARD", @@ -317535,7 +317535,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, - "well_tag_number": 112983, + "well": 112983, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", @@ -317564,7 +317564,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "217.00", "lithology_to": "334.00", "lithology_raw_data": "MUDSTONE", @@ -317593,7 +317593,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, - "well_tag_number": 100127, + "well": 100127, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "PAN CLAY & GRAVEL", @@ -317622,7 +317622,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T00:49:03Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "285.00", "lithology_to": "310.00", "lithology_raw_data": "SANDSTONE WITH SHALE LENSES", @@ -317651,7 +317651,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "21.00", "lithology_to": "35.00", "lithology_raw_data": "BROWN CLAY", @@ -317680,7 +317680,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FILL & BOULDERS", @@ -317709,7 +317709,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "115.00", "lithology_to": "580.00", "lithology_raw_data": null, @@ -317738,7 +317738,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "COARSE SAND, CLAY, ROCKS", @@ -317767,7 +317767,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "1.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -317796,7 +317796,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:34:50Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "114.00", "lithology_to": "197.00", "lithology_raw_data": "Brown Silt, sand with clay/silt; sand with gravel", @@ -317825,7 +317825,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "144.00", "lithology_to": "146.00", "lithology_raw_data": null, @@ -317854,7 +317854,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "360.00", "lithology_to": "365.00", "lithology_raw_data": "Sand, some gravel", @@ -317883,7 +317883,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:29:52Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "234.00", "lithology_to": "273.00", "lithology_raw_data": "coarse sand with gravel", @@ -317912,7 +317912,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": "110.00", "lithology_to": "242.00", "lithology_raw_data": "rock", @@ -317941,7 +317941,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -317970,7 +317970,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "118.00", "lithology_to": "137.00", "lithology_raw_data": "SAND, GRAVEL, BROKEN BEDROCK", @@ -317999,7 +317999,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, - "well_tag_number": 112907, + "well": 112907, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "TOPSOIL, TRACE BROWN CLAY", @@ -318028,7 +318028,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, - "well_tag_number": 113168, + "well": 113168, "lithology_from": "88.00", "lithology_to": "89.00", "lithology_raw_data": "sand gravel", @@ -318057,7 +318057,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, - "well_tag_number": 112918, + "well": 112918, "lithology_from": "8.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -318086,7 +318086,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, - "well_tag_number": 113188, + "well": 113188, "lithology_from": "94.00", "lithology_to": "97.00", "lithology_raw_data": "silty with gravel", @@ -318115,7 +318115,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, - "well_tag_number": 112837, + "well": 112837, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -318144,7 +318144,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:36:28Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "SOFT/MEDIUM, CLAY, SILT, MINOR ROCKS", @@ -318173,7 +318173,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, - "well_tag_number": 112926, + "well": 112926, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & SMALL GRAVEL", @@ -318202,7 +318202,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "125.00", "lithology_to": "128.00", "lithology_raw_data": "VOLCANIC", @@ -318231,7 +318231,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, - "well_tag_number": 112946, + "well": 112946, "lithology_from": "8.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -318260,7 +318260,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -318289,7 +318289,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "25.00", "lithology_to": "91.00", "lithology_raw_data": "BROWN FINE SAND WITH SOME STONES", @@ -318318,7 +318318,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "0.16", "lithology_to": "3.08", "lithology_raw_data": "FILL (SW) - GRAVELLY SAND, COMPACT, FINE TO COARSE SAND, FINE GRAVEL, PIECES OF BRICK", @@ -318347,7 +318347,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -318376,7 +318376,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "blast rock", @@ -318405,7 +318405,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "74.00", "lithology_to": "104.00", "lithology_raw_data": null, @@ -318434,7 +318434,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, - "well_tag_number": 112231, + "well": 112231, "lithology_from": "300.00", "lithology_to": "475.00", "lithology_raw_data": "GREEN/BLUE VOLCANIC WITH ZONES OF BASALT", @@ -318463,7 +318463,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, - "well_tag_number": 112356, + "well": 112356, "lithology_from": "42.00", "lithology_to": "75.00", "lithology_raw_data": "sand with clay/silt / sand with gravel", @@ -318492,7 +318492,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, - "well_tag_number": 113263, + "well": 113263, "lithology_from": "22.00", "lithology_to": "55.00", "lithology_raw_data": "very sandy", @@ -318521,7 +318521,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, - "well_tag_number": 112925, + "well": 112925, "lithology_from": "165.00", "lithology_to": "175.00", "lithology_raw_data": null, @@ -318550,7 +318550,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "76.00", "lithology_to": "81.00", "lithology_raw_data": null, @@ -318579,7 +318579,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "68.00", "lithology_to": "136.00", "lithology_raw_data": "W.B. SILT, SAND AND GRAVEL", @@ -318608,7 +318608,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": "27.00", "lithology_to": "36.00", "lithology_raw_data": "CLAY & ROCKS", @@ -318637,7 +318637,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": "8.00", "lithology_to": "19.00", "lithology_raw_data": "granite", @@ -318666,7 +318666,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "149.00", "lithology_to": "231.00", "lithology_raw_data": "HARD PACKED, SILTY CLAY", @@ -318695,7 +318695,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, - "well_tag_number": 112220, + "well": 112220, "lithology_from": "240.00", "lithology_to": "520.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH GREY AND WHITE TRACES", @@ -318724,7 +318724,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "10.00", "lithology_to": "28.00", "lithology_raw_data": null, @@ -318753,7 +318753,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "1320.00", "lithology_to": "1340.00", "lithology_raw_data": null, @@ -318782,7 +318782,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "63.00", "lithology_to": "70.00", "lithology_raw_data": "and gravel", @@ -318811,7 +318811,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANIC, LOOSE ROCK", @@ -318840,7 +318840,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:57:35Z", "activity_submission": null, - "well_tag_number": 112642, + "well": 112642, "lithology_from": "0.00", "lithology_to": "66.00", "lithology_raw_data": "silt/till/clay", @@ -318869,7 +318869,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, - "well_tag_number": 112458, + "well": 112458, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SILT", @@ -318898,7 +318898,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "171.00", "lithology_to": "1747.00", "lithology_raw_data": "SILT WITH FINE SAND/FINE TILL AND CLAY PARTICLES", @@ -318927,7 +318927,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "BROWN SANDSTONE WITH SHALE LAYER", @@ -318956,7 +318956,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "455.00", "lithology_to": "455.00", "lithology_raw_data": "FRACTURE", @@ -318985,7 +318985,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "80.00", "lithology_to": "156.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -319014,7 +319014,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "960.00", "lithology_to": "961.00", "lithology_raw_data": null, @@ -319043,7 +319043,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -319072,7 +319072,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T21:38:12Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "450.00", "lithology_to": "568.00", "lithology_raw_data": "DENSE/STIFF; CLAY, SAND WITH GRAVEL", @@ -319101,7 +319101,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:29:36Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "160.00", "lithology_to": "205.00", "lithology_raw_data": "sand with coarse gravel", @@ -319130,7 +319130,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "138.00", "lithology_to": "147.00", "lithology_raw_data": null, @@ -319159,7 +319159,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "114.00", "lithology_to": "125.00", "lithology_raw_data": "MEDIUM-HARD, SHALE/SILTSTONE/FINE SANDSTONE STRINGERS", @@ -319188,7 +319188,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "82.00", "lithology_to": "122.00", "lithology_raw_data": "Light grey clay and silt", @@ -319217,7 +319217,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": "VERY FINE SAND WITH SILTY CLAY", @@ -319246,7 +319246,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, - "well_tag_number": 112694, + "well": 112694, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY/SILT", @@ -319275,7 +319275,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, - "well_tag_number": 113143, + "well": 113143, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -319304,7 +319304,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, - "well_tag_number": 112439, + "well": 112439, "lithology_from": "9.00", "lithology_to": "39.00", "lithology_raw_data": "bedrock", @@ -319333,7 +319333,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, - "well_tag_number": 113264, + "well": 113264, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -319362,7 +319362,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", @@ -319391,7 +319391,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, - "well_tag_number": 112866, + "well": 112866, "lithology_from": "29.00", "lithology_to": "47.00", "lithology_raw_data": "very silty", @@ -319420,7 +319420,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "55.00", "lithology_to": "203.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -319449,7 +319449,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T22:11:12Z", "activity_submission": null, - "well_tag_number": 113040, + "well": 113040, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "clay & gravel", @@ -319478,7 +319478,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SILT, MEDIUM TO FINE SAND", @@ -319507,7 +319507,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "216.00", "lithology_to": "218.00", "lithology_raw_data": "BEDROCK", @@ -319536,7 +319536,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, - "well_tag_number": 112271, + "well": 112271, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "and gravel", @@ -319565,7 +319565,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:37Z", "activity_submission": null, - "well_tag_number": 112244, + "well": 112244, "lithology_from": "15.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -319594,7 +319594,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "74.00", "lithology_to": "151.00", "lithology_raw_data": null, @@ -319623,7 +319623,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:52:03Z", "activity_submission": null, - "well_tag_number": 112911, + "well": 112911, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "COARSE GRAVEL, MED-COARSE SAND", @@ -319652,7 +319652,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, - "well_tag_number": 113115, + "well": 113115, "lithology_from": "143.00", "lithology_to": "146.00", "lithology_raw_data": "gravel", @@ -319681,7 +319681,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "662.00", "lithology_to": "705.00", "lithology_raw_data": "SANSTONE (COARSE AND FINE)", @@ -319710,7 +319710,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, - "well_tag_number": 112290, + "well": 112290, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "TILL", @@ -319739,7 +319739,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, - "well_tag_number": 112229, + "well": 112229, "lithology_from": "20.00", "lithology_to": "38.00", "lithology_raw_data": "BROWN/B WATER BEARING SAND WITH LAYERS", @@ -319768,7 +319768,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "93.00", "lithology_to": "97.00", "lithology_raw_data": "silty sand fins traces gravel", @@ -319797,7 +319797,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "24.00", "lithology_to": "36.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -319826,7 +319826,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", @@ -319855,7 +319855,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -319884,7 +319884,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "MEDIUM/SOFT; GRAVEL TO MEDIUM SAND", @@ -319913,7 +319913,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "354.00", "lithology_to": null, "lithology_raw_data": null, @@ -319942,7 +319942,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -319971,7 +319971,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, - "well_tag_number": 113095, + "well": 113095, "lithology_from": "192.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE", @@ -320000,7 +320000,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:49Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "Till brown", @@ -320029,7 +320029,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "SILTY, CLAY", @@ -320058,7 +320058,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:07:32Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "463.00", "lithology_to": "600.00", "lithology_raw_data": "MEDIUM-HARD; BASALT BEDROCK", @@ -320087,7 +320087,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, - "well_tag_number": 113036, + "well": 113036, "lithology_from": "257.00", "lithology_to": "584.00", "lithology_raw_data": "SHALE MED WITH SANDSTONE INTERBEDDING ", @@ -320116,7 +320116,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "80.00", "lithology_to": "83.00", "lithology_raw_data": "SOFT/MEDIUM; MEDIUM SAND", @@ -320145,7 +320145,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "108.00", "lithology_to": "154.00", "lithology_raw_data": null, @@ -320174,7 +320174,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", @@ -320203,7 +320203,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, - "well_tag_number": 113079, + "well": 113079, "lithology_from": "170.00", "lithology_to": "216.00", "lithology_raw_data": null, @@ -320232,7 +320232,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "105.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -320261,7 +320261,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MINOR, SAND, SILT, CLAY", @@ -320290,7 +320290,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, - "well_tag_number": 112427, + "well": 112427, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY", @@ -320319,7 +320319,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "37.00", "lithology_to": "120.00", "lithology_raw_data": "CEMENTED SMALL GRAVEL - MED SAND", @@ -320348,7 +320348,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:31Z", "activity_submission": null, - "well_tag_number": 113307, + "well": 113307, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -320377,7 +320377,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, - "well_tag_number": 112849, + "well": 112849, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -320406,7 +320406,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "70.00", "lithology_to": "125.00", "lithology_raw_data": "CLAY", @@ -320435,7 +320435,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD; COARSE GRAVEL, ANGULAR", @@ -320464,7 +320464,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "53.00", "lithology_to": "57.00", "lithology_raw_data": null, @@ -320493,7 +320493,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "70.00", "lithology_to": null, "lithology_raw_data": null, @@ -320522,7 +320522,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, - "well_tag_number": 112632, + "well": 112632, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "boulders", @@ -320551,7 +320551,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "315.00", "lithology_to": "342.00", "lithology_raw_data": "SANDSTONE", @@ -320580,7 +320580,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, - "well_tag_number": 112425, + "well": 112425, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SILT AND SAND", @@ -320609,7 +320609,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "462.00", "lithology_to": "463.00", "lithology_raw_data": null, @@ -320638,7 +320638,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "108.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -320667,7 +320667,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "56.00", "lithology_to": "76.00", "lithology_raw_data": "sand, fine-med", @@ -320696,7 +320696,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "232.00", "lithology_to": "235.00", "lithology_raw_data": "FINE TO MEDIUM FINE, FRIABLE", @@ -320725,7 +320725,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND WITH SANDY BROWN CLAY", @@ -320754,7 +320754,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "60.00", "lithology_to": "190.00", "lithology_raw_data": "MEDIUM/HARD, CLAY, SILT, ROCKS LAYER", @@ -320783,7 +320783,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "3.00", "lithology_to": "11.00", "lithology_raw_data": "CLAY AND GRAVEL TILL ", @@ -320812,7 +320812,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "46.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel", @@ -320841,7 +320841,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "58.00", "lithology_to": "65.00", "lithology_raw_data": "SHALE BL", @@ -320870,7 +320870,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "SANDSTONE", @@ -320899,7 +320899,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "108.00", "lithology_to": "115.00", "lithology_raw_data": "very soft", @@ -320928,7 +320928,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "179.00", "lithology_to": "255.00", "lithology_raw_data": "SHALE", @@ -320957,7 +320957,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "225.00", "lithology_to": "235.00", "lithology_raw_data": null, @@ -320986,7 +320986,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "2.00", "lithology_to": "37.00", "lithology_raw_data": "SILT AND GRAVEL", @@ -321015,7 +321015,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "sand", @@ -321044,7 +321044,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, - "well_tag_number": 112343, + "well": 112343, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANIC TO BROKEN BEDROCK", @@ -321073,7 +321073,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, - "well_tag_number": 112578, + "well": 112578, "lithology_from": "205.00", "lithology_to": "315.00", "lithology_raw_data": "MEDIUM/HARD; BASALT VOLCANIC", @@ -321102,7 +321102,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "1020.00", "lithology_to": "1120.00", "lithology_raw_data": null, @@ -321131,7 +321131,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, - "well_tag_number": 112333, + "well": 112333, "lithology_from": "0.00", "lithology_to": "34.00", "lithology_raw_data": "BROWN-GREY SAND AND GRAVEL", @@ -321160,7 +321160,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, - "well_tag_number": 112686, + "well": 112686, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "VOLCANIC CLAY", @@ -321189,7 +321189,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "63.00", "lithology_to": "67.00", "lithology_raw_data": "BROWN/GREY/WHITE VOLCANIC WITH WHITE TRACES", @@ -321218,7 +321218,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -321247,7 +321247,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, - "well_tag_number": 112441, + "well": 112441, "lithology_from": "47.00", "lithology_to": "62.00", "lithology_raw_data": null, @@ -321276,7 +321276,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "189.00", "lithology_to": "232.00", "lithology_raw_data": "gravel", @@ -321305,7 +321305,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "200.00", "lithology_to": "201.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL", @@ -321334,7 +321334,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "436.00", "lithology_to": "455.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -321363,7 +321363,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "211.00", "lithology_to": "213.00", "lithology_raw_data": null, @@ -321392,7 +321392,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, - "well_tag_number": 113095, + "well": 113095, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "FILL", @@ -321421,7 +321421,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "35.00", "lithology_to": "67.00", "lithology_raw_data": null, @@ -321450,7 +321450,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", @@ -321479,7 +321479,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:56Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "CLAY-TILL", @@ -321508,7 +321508,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "995.00", "lithology_to": "1001.00", "lithology_raw_data": null, @@ -321537,7 +321537,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "27.00", "lithology_to": "30.00", "lithology_raw_data": "BEDROCK", @@ -321566,7 +321566,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, - "well_tag_number": 113206, + "well": 113206, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, cobbles", @@ -321595,7 +321595,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "165.00", "lithology_to": "167.00", "lithology_raw_data": null, @@ -321624,7 +321624,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, - "well_tag_number": 113141, + "well": 113141, "lithology_from": "94.00", "lithology_to": "117.00", "lithology_raw_data": "GREY GREEN ROCK - DIORITE", @@ -321653,7 +321653,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, - "well_tag_number": 113008, + "well": 113008, "lithology_from": "19.00", "lithology_to": "24.00", "lithology_raw_data": "sand with gravel", @@ -321682,7 +321682,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "90.00", "lithology_to": "112.00", "lithology_raw_data": "BOULDERS", @@ -321711,7 +321711,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "5.00", "lithology_to": "10.00", "lithology_raw_data": "FINE GRAVEL & CLAY", @@ -321740,7 +321740,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "374.00", "lithology_to": "394.00", "lithology_raw_data": null, @@ -321769,7 +321769,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "5.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT CLAY, MARINE CLAY", @@ -321798,7 +321798,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "129.00", "lithology_to": "136.00", "lithology_raw_data": null, @@ -321827,7 +321827,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, - "well_tag_number": 113169, + "well": 113169, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "sand gravel", @@ -321856,7 +321856,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "119.00", "lithology_to": "129.00", "lithology_raw_data": "and gravel", @@ -321885,7 +321885,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, - "well_tag_number": 112320, + "well": 112320, "lithology_from": "55.00", "lithology_to": "81.00", "lithology_raw_data": "BEDROCK (QUARTZ VEINS)", @@ -321914,7 +321914,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK LAYERED ZONES", @@ -321943,7 +321943,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, - "well_tag_number": 113092, + "well": 113092, "lithology_from": "9.00", "lithology_to": "17.00", "lithology_raw_data": "sand", @@ -321972,7 +321972,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, - "well_tag_number": 112928, + "well": 112928, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN SOIL, GRAVEL AND SAND", @@ -322001,7 +322001,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "90.00", "lithology_to": "92.00", "lithology_raw_data": "and cobble", @@ -322030,7 +322030,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "20.00", "lithology_to": "38.00", "lithology_raw_data": "GRAVEL, SAND, COARSE TO FINE, GREY BROWN", @@ -322059,7 +322059,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and wood debris", @@ -322088,7 +322088,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", @@ -322117,7 +322117,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "84.00", "lithology_to": "86.00", "lithology_raw_data": "GRAVEL", @@ -322146,7 +322146,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T06:16:59Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "356.00", "lithology_to": "395.00", "lithology_raw_data": "SANDSTONE", @@ -322175,7 +322175,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "280.00", "lithology_to": "295.00", "lithology_raw_data": "FINE TO MEDIUM SAND WB", @@ -322204,7 +322204,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, - "well_tag_number": 112289, + "well": 112289, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "GRAVEL, SOME CLAY", @@ -322233,7 +322233,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, - "well_tag_number": 113027, + "well": 113027, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "Brown Clay", @@ -322262,7 +322262,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "76.00", "lithology_to": "78.00", "lithology_raw_data": "DIRTY BROWN SHALE", @@ -322291,7 +322291,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -322320,7 +322320,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, - "well_tag_number": 112411, + "well": 112411, "lithology_from": "54.00", "lithology_to": "58.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", @@ -322349,7 +322349,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -322378,7 +322378,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, - "well_tag_number": 112441, + "well": 112441, "lithology_from": "62.00", "lithology_to": "292.00", "lithology_raw_data": null, @@ -322407,7 +322407,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, - "well_tag_number": 112551, + "well": 112551, "lithology_from": "35.00", "lithology_to": "230.00", "lithology_raw_data": null, @@ -322436,7 +322436,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "gravel and wood debris", @@ -322465,7 +322465,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, - "well_tag_number": 112673, + "well": 112673, "lithology_from": "6.50", "lithology_to": "27.00", "lithology_raw_data": "BOULDERS AND COBBLES WITH BROWN SAND AND GRAVEL", @@ -322494,7 +322494,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, - "well_tag_number": 112401, + "well": 112401, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "COARSE GRAVEL", @@ -322523,7 +322523,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, - "well_tag_number": 113204, + "well": 113204, "lithology_from": "95.00", "lithology_to": "135.00", "lithology_raw_data": "gravel", @@ -322552,7 +322552,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "190.00", "lithology_to": "192.00", "lithology_raw_data": "CLAY OR SILT", @@ -322581,7 +322581,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "till", @@ -322610,7 +322610,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "75.00", "lithology_to": "165.00", "lithology_raw_data": "SOFT SMOOTH CLAY", @@ -322639,7 +322639,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -322668,7 +322668,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "260.00", "lithology_to": "346.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", @@ -322697,7 +322697,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "63.00", "lithology_to": "227.00", "lithology_raw_data": null, @@ -322726,7 +322726,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:04Z", "activity_submission": null, - "well_tag_number": 112923, + "well": 112923, "lithology_from": "100.00", "lithology_to": "195.00", "lithology_raw_data": "SAND GRAVEL/BIG", @@ -322755,7 +322755,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, - "well_tag_number": 112306, + "well": 112306, "lithology_from": "296.00", "lithology_to": "332.00", "lithology_raw_data": "GREY/GREEN GRANITE", @@ -322784,7 +322784,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, - "well_tag_number": 112919, + "well": 112919, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": "GREY/BROWN", @@ -322813,7 +322813,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, - "well_tag_number": 112806, + "well": 112806, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "fill, rip rap", @@ -322842,7 +322842,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:33Z", "activity_submission": null, - "well_tag_number": 113305, + "well": 113305, "lithology_from": "92.00", "lithology_to": "200.00", "lithology_raw_data": "slightly crumbly", @@ -322871,7 +322871,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -322900,7 +322900,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "72.00", "lithology_to": "84.00", "lithology_raw_data": "SILT, SAND & ROCKS", @@ -322929,7 +322929,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "120.00", "lithology_to": "135.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC WITH MIXED FELDSPAR", @@ -322958,7 +322958,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, - "well_tag_number": 113277, + "well": 113277, "lithology_from": "80.00", "lithology_to": "260.00", "lithology_raw_data": "crystalline", @@ -322987,7 +322987,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "230.00", "lithology_to": "235.00", "lithology_raw_data": "W.B. GRAVEL", @@ -323016,7 +323016,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-28T22:09:59Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "84.00", "lithology_to": "261.00", "lithology_raw_data": null, @@ -323045,7 +323045,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "447.00", "lithology_to": "456.00", "lithology_raw_data": null, @@ -323074,7 +323074,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": "8.00", "lithology_to": "745.00", "lithology_raw_data": "consistant", @@ -323103,7 +323103,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "261.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -323132,7 +323132,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "1340.00", "lithology_to": "1360.00", "lithology_raw_data": null, @@ -323161,7 +323161,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, - "well_tag_number": 112878, + "well": 112878, "lithology_from": "71.00", "lithology_to": "81.00", "lithology_raw_data": null, @@ -323190,7 +323190,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "129.00", "lithology_to": "132.00", "lithology_raw_data": "and gravel", @@ -323219,7 +323219,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "158.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL/CLAY", @@ -323248,7 +323248,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "33.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -323277,7 +323277,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, - "well_tag_number": 112784, + "well": 112784, "lithology_from": "4.25", "lithology_to": "60.30", "lithology_raw_data": null, @@ -323306,7 +323306,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "350.00", "lithology_to": "374.00", "lithology_raw_data": null, @@ -323335,7 +323335,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, - "well_tag_number": 112829, + "well": 112829, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": "gravel", @@ -323364,7 +323364,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "455.00", "lithology_to": "501.00", "lithology_raw_data": "some light grey", @@ -323393,7 +323393,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "140.00", "lithology_to": "147.00", "lithology_raw_data": "LAVA ROCK", @@ -323422,7 +323422,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "GLACIAL TILL ", @@ -323451,7 +323451,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "12.00", "lithology_to": "26.00", "lithology_raw_data": "compact", @@ -323480,7 +323480,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "14.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY, SAND, GRAVEL", @@ -323509,7 +323509,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, - "well_tag_number": 112262, + "well": 112262, "lithology_from": "22.00", "lithology_to": "41.00", "lithology_raw_data": "MEDIUM GRAVEL, WITH MEDIUM SAND", @@ -323538,7 +323538,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "394.00", "lithology_to": "408.00", "lithology_raw_data": "HARD TO VERY HARD", @@ -323567,7 +323567,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "281.00", "lithology_to": "285.00", "lithology_raw_data": "coarse ", @@ -323596,7 +323596,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, - "well_tag_number": 112264, + "well": 112264, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL, SMALL GRAVEL", @@ -323625,7 +323625,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, - "well_tag_number": 113025, + "well": 113025, "lithology_from": "65.00", "lithology_to": "110.00", "lithology_raw_data": "Grey Clay and Rocks", @@ -323654,7 +323654,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "34.00", "lithology_to": "40.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -323683,7 +323683,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "100.00", "lithology_to": "110.00", "lithology_raw_data": "COARSE TO MEDIUM SAND", @@ -323712,7 +323712,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "120.00", "lithology_to": "127.00", "lithology_raw_data": "CLAY/SILT/COARSE SAND", @@ -323741,7 +323741,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, - "well_tag_number": 113134, + "well": 113134, "lithology_from": "6.00", "lithology_to": "52.00", "lithology_raw_data": null, @@ -323770,7 +323770,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "109.00", "lithology_to": "113.00", "lithology_raw_data": "FINE TO MEDIUM", @@ -323799,7 +323799,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "170.00", "lithology_to": "235.00", "lithology_raw_data": "SAND - SOME GRAVELS - WATER BEARING", @@ -323828,7 +323828,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, - "well_tag_number": 113177, + "well": 113177, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", @@ -323857,7 +323857,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, - "well_tag_number": 112571, + "well": 112571, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE", @@ -323886,7 +323886,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, - "well_tag_number": 112732, + "well": 112732, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "MEDIUM AND FINE SAND WITH SOME GRAVEL", @@ -323915,7 +323915,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "8.00", "lithology_to": "18.00", "lithology_raw_data": "HARD GREY CLAY WITH SAND", @@ -323944,7 +323944,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "315.00", "lithology_to": "317.00", "lithology_raw_data": "SILT", @@ -323973,7 +323973,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": "sand, fine-med", @@ -324002,7 +324002,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, - "well_tag_number": 112786, + "well": 112786, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -324031,7 +324031,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "10.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -324060,7 +324060,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "68.00", "lithology_to": "119.00", "lithology_raw_data": "till", @@ -324089,7 +324089,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "205.00", "lithology_to": "211.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", @@ -324118,7 +324118,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "240.00", "lithology_to": "284.00", "lithology_raw_data": null, @@ -324147,7 +324147,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "43.00", "lithology_to": "69.00", "lithology_raw_data": "TILL", @@ -324176,7 +324176,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "GREY/GREEN GRANITE", @@ -324205,7 +324205,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SILT", @@ -324234,7 +324234,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T17:46:39Z", "activity_submission": null, - "well_tag_number": 112664, + "well": 112664, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", @@ -324263,7 +324263,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "19.50", "lithology_to": "49.00", "lithology_raw_data": "grey/green", @@ -324292,7 +324292,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, - "well_tag_number": 112549, + "well": 112549, "lithology_from": "535.00", "lithology_to": "555.00", "lithology_raw_data": null, @@ -324321,7 +324321,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": "SHALE & SILTSTONE, MEDIUM HARD", @@ -324350,7 +324350,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "173.00", "lithology_to": "175.00", "lithology_raw_data": "GRAVEL & BITS CLAY", @@ -324379,7 +324379,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T08:04:30Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "55.00", "lithology_to": "84.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -324408,7 +324408,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-14T20:14:02Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "62.00", "lithology_to": "97.00", "lithology_raw_data": "FINE SAND, CLAY AND ROCK", @@ -324437,7 +324437,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "6.00", "lithology_to": "31.00", "lithology_raw_data": "and gravel", @@ -324466,7 +324466,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "15.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -324495,7 +324495,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, - "well_tag_number": 112264, + "well": 112264, "lithology_from": "23.00", "lithology_to": "48.00", "lithology_raw_data": "LARGE BOULDERS WITH FINE SAND", @@ -324524,7 +324524,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "64.00", "lithology_to": "101.00", "lithology_raw_data": "DRY SAND AND GRAVEL (BROWN/GREY)", @@ -324553,7 +324553,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, - "well_tag_number": 112733, + "well": 112733, "lithology_from": "18.00", "lithology_to": "32.00", "lithology_raw_data": "FINE AND SILTY SAND", @@ -324582,7 +324582,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "63.00", "lithology_to": "70.00", "lithology_raw_data": "and sand", @@ -324611,7 +324611,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, - "well_tag_number": 112859, + "well": 112859, "lithology_from": "9.00", "lithology_to": "45.00", "lithology_raw_data": "clean", @@ -324640,7 +324640,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "7.00", "lithology_to": "59.00", "lithology_raw_data": "GREEN/WHITE VOLCANIC WITH WHITE TRACES", @@ -324669,7 +324669,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "48.00", "lithology_to": "49.00", "lithology_raw_data": null, @@ -324698,7 +324698,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, - "well_tag_number": 112940, + "well": 112940, "lithology_from": "65.00", "lithology_to": "75.00", "lithology_raw_data": "MIXED SANDS, TRACE OF GRAVEL, TRACE SILT", @@ -324727,7 +324727,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -324756,7 +324756,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK", @@ -324785,7 +324785,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "330.00", "lithology_to": "336.00", "lithology_raw_data": "SILTSTONE / SHALE / FINE SANDSTONE", @@ -324814,7 +324814,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "140.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY/SILT", @@ -324843,7 +324843,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "compact", @@ -324872,7 +324872,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, - "well_tag_number": 112790, + "well": 112790, "lithology_from": "40.00", "lithology_to": "53.33", "lithology_raw_data": null, @@ -324901,7 +324901,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, - "well_tag_number": 112671, + "well": 112671, "lithology_from": "45.00", "lithology_to": "60.00", "lithology_raw_data": "TIGHT GRAVEL/COARSE SAND", @@ -324930,7 +324930,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, - "well_tag_number": 113271, + "well": 113271, "lithology_from": "65.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -324959,7 +324959,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "280.00", "lithology_to": "287.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", @@ -324988,7 +324988,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "110.00", "lithology_to": "118.00", "lithology_raw_data": null, @@ -325017,7 +325017,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "26.00", "lithology_to": "46.00", "lithology_raw_data": "metamorphic", @@ -325046,7 +325046,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, - "well_tag_number": 112871, + "well": 112871, "lithology_from": "11.00", "lithology_to": "19.00", "lithology_raw_data": null, @@ -325075,7 +325075,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "SAND, COARSE", @@ -325104,7 +325104,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, CLAY LAYER", @@ -325133,7 +325133,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "43.00", "lithology_to": "71.00", "lithology_raw_data": "broken, boulders", @@ -325162,7 +325162,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "145.00", "lithology_to": "155.00", "lithology_raw_data": "GRAVEL WITH WATER", @@ -325191,7 +325191,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "74.00", "lithology_to": "75.00", "lithology_raw_data": null, @@ -325220,7 +325220,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "16.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -325249,7 +325249,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "421.00", "lithology_to": "440.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -325278,7 +325278,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "17.00", "lithology_to": "36.00", "lithology_raw_data": "and fine sand", @@ -325307,7 +325307,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, - "well_tag_number": 112546, + "well": 112546, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -325336,7 +325336,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "207.00", "lithology_to": "233.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", @@ -325365,7 +325365,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, - "well_tag_number": 112282, + "well": 112282, "lithology_from": "100.00", "lithology_to": "102.00", "lithology_raw_data": "CLAY", @@ -325394,7 +325394,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "18.00", "lithology_to": "32.00", "lithology_raw_data": "SILTY SAND AND GRAVEL", @@ -325423,7 +325423,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SILT-CLAY", @@ -325452,7 +325452,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "41.00", "lithology_to": "53.00", "lithology_raw_data": "and gravel", @@ -325481,7 +325481,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "385.00", "lithology_to": "501.00", "lithology_raw_data": "conglomerate", @@ -325510,7 +325510,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, - "well_tag_number": 112624, + "well": 112624, "lithology_from": "64.00", "lithology_to": "70.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -325539,7 +325539,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "96.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", @@ -325568,7 +325568,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "stony", @@ -325597,7 +325597,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "gravel layers", @@ -325626,7 +325626,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "83.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -325655,7 +325655,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "31.00", "lithology_to": "36.00", "lithology_raw_data": null, @@ -325684,7 +325684,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "520.00", "lithology_to": "558.00", "lithology_raw_data": "FINE CONGLOMERATE", @@ -325713,7 +325713,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "2.00", "lithology_to": "22.00", "lithology_raw_data": "BOG", @@ -325742,7 +325742,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "278.00", "lithology_to": "366.00", "lithology_raw_data": "dark grey / green", @@ -325771,7 +325771,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "16.00", "lithology_to": "121.00", "lithology_raw_data": "MEDIUM-HARD, VOLCANIC BEDROCK - TRACES OF FELDSPAR", @@ -325800,7 +325800,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, - "well_tag_number": 112306, + "well": 112306, "lithology_from": "169.00", "lithology_to": "296.00", "lithology_raw_data": "BEDROCK/GRANITE", @@ -325829,7 +325829,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-03T22:36:06Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "50.00", "lithology_to": "62.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -325858,7 +325858,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "49.00", "lithology_to": "101.00", "lithology_raw_data": "CLAYEY SILT, TRACE OF SAND OCCASIONAL FINE GRAVEL", @@ -325887,7 +325887,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "and gravel", @@ -325916,7 +325916,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:19:52Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM-HARD; DIRTY SAND, MEDIUM GRAVEL", @@ -325945,7 +325945,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "260.00", "lithology_to": "325.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -325974,7 +325974,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "34.00", "lithology_to": "55.00", "lithology_raw_data": "GREY SAND, W.B. (VERY LITTLE WATER)", @@ -326003,7 +326003,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY, TRACES OF ROCK", @@ -326032,7 +326032,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, - "well_tag_number": 112570, + "well": 112570, "lithology_from": "9.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -326061,7 +326061,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY", @@ -326090,7 +326090,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "ORGANIC", @@ -326119,7 +326119,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "92.00", "lithology_to": "98.00", "lithology_raw_data": "SAND & GRAVEL", @@ -326148,7 +326148,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "99.00", "lithology_to": "105.00", "lithology_raw_data": "Fine to medium sand, some coarse gravel, some cobbles", @@ -326177,7 +326177,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:40:20Z", "activity_submission": null, - "well_tag_number": 112375, + "well": 112375, "lithology_from": "7.00", "lithology_to": "36.00", "lithology_raw_data": "siltstone shale", @@ -326206,7 +326206,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, - "well_tag_number": 112871, + "well": 112871, "lithology_from": "19.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -326235,7 +326235,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "66.00", "lithology_to": "94.00", "lithology_raw_data": "SOLID", @@ -326264,7 +326264,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "313.00", "lithology_to": "315.00", "lithology_raw_data": "SANDSTONE / FINE", @@ -326293,7 +326293,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "9.00", "lithology_to": "58.00", "lithology_raw_data": "VERY DENSE; CLAY AND GRAVEL TILL WITH COBBLES AND BOULDERS", @@ -326322,7 +326322,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "silt color", @@ -326351,7 +326351,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, - "well_tag_number": 113144, + "well": 113144, "lithology_from": "200.00", "lithology_to": "234.00", "lithology_raw_data": "gravel", @@ -326380,7 +326380,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "43.00", "lithology_to": "71.00", "lithology_raw_data": "cobbles", @@ -326409,7 +326409,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, - "well_tag_number": 112756, + "well": 112756, "lithology_from": "71.00", "lithology_to": "74.00", "lithology_raw_data": "CASED BEDROCK", @@ -326438,7 +326438,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, - "well_tag_number": 112756, + "well": 112756, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "BOULDER, COBBLES AND LARGE GRAVEL", @@ -326467,7 +326467,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "70.00", "lithology_to": "112.00", "lithology_raw_data": "medium to coarse grained", @@ -326496,7 +326496,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "145.00", "lithology_to": "154.00", "lithology_raw_data": "SILTY CLAY, SOME GRAVEL", @@ -326525,7 +326525,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "51.00", "lithology_to": "66.00", "lithology_raw_data": "SILT", @@ -326554,7 +326554,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -326583,7 +326583,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, - "well_tag_number": 112357, + "well": 112357, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -326612,7 +326612,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "11.00", "lithology_to": "48.00", "lithology_raw_data": "till", @@ -326641,7 +326641,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, - "well_tag_number": 112686, + "well": 112686, "lithology_from": "190.00", "lithology_to": "202.00", "lithology_raw_data": "BASALT", @@ -326670,7 +326670,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "116.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -326699,7 +326699,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "19.00", "lithology_to": "25.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", @@ -326728,7 +326728,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "SOME CLAY", @@ -326757,7 +326757,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, - "well_tag_number": 112907, + "well": 112907, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "COBBLES & BOULDERS, GRAVEL", @@ -326786,7 +326786,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "55.00", "lithology_to": "78.00", "lithology_raw_data": "BLACK & WHITE GRANITE IWTH ORANGE CHIPS", @@ -326815,7 +326815,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "6.00", "lithology_to": "47.00", "lithology_raw_data": null, @@ -326844,7 +326844,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, - "well_tag_number": 113147, + "well": 113147, "lithology_from": "156.00", "lithology_to": "163.00", "lithology_raw_data": null, @@ -326873,7 +326873,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "1.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANIC MIXED FILL", @@ -326902,7 +326902,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, - "well_tag_number": 112795, + "well": 112795, "lithology_from": "76.00", "lithology_to": "81.00", "lithology_raw_data": "BROWN GRAVEL & SAND", @@ -326931,7 +326931,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, - "well_tag_number": 112282, + "well": 112282, "lithology_from": "4.00", "lithology_to": "55.00", "lithology_raw_data": "GRAVEL AND CLAY", @@ -326960,7 +326960,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "95.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE-FRACTURED IN PLACES", @@ -326989,7 +326989,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, - "well_tag_number": 112425, + "well": 112425, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -327018,7 +327018,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, - "well_tag_number": 112279, + "well": 112279, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", @@ -327047,7 +327047,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "30.00", "lithology_to": "48.00", "lithology_raw_data": "and gravel", @@ -327076,7 +327076,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "76.00", "lithology_to": "94.00", "lithology_raw_data": "and gravel", @@ -327105,7 +327105,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "55.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -327134,7 +327134,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, - "well_tag_number": 112739, + "well": 112739, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": "CLAY, COBBLES, SAND GRAVEL", @@ -327163,7 +327163,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "62.00", "lithology_to": "82.00", "lithology_raw_data": "GREEN/GREY-WHITE VOLCANIC, OCCASIONALLY GREEN AND WHITE", @@ -327192,7 +327192,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, - "well_tag_number": 112790, + "well": 112790, "lithology_from": "3.25", "lithology_to": "40.00", "lithology_raw_data": null, @@ -327221,7 +327221,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, - "well_tag_number": 102364, + "well": 102364, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL", @@ -327250,7 +327250,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "32.00", "lithology_to": "38.00", "lithology_raw_data": null, @@ -327279,7 +327279,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "405.00", "lithology_to": "515.00", "lithology_raw_data": "Sand, well graded, trace silt and gravel", @@ -327308,7 +327308,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "128.00", "lithology_to": "147.00", "lithology_raw_data": "VOLCANIC", @@ -327337,7 +327337,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; TILL, MINOR, GRAVEL", @@ -327366,7 +327366,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "BEDROCK", @@ -327395,7 +327395,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "290.00", "lithology_to": "405.00", "lithology_raw_data": "CLAY, SILTSTONE/SHALE", @@ -327424,7 +327424,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:10:31Z", "activity_submission": null, - "well_tag_number": 112772, + "well": 112772, "lithology_from": "0.00", "lithology_to": "125.00", "lithology_raw_data": "TILL CLAY WITH SOME GRAVEL AND SMALL BOULDERS", @@ -327453,7 +327453,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, - "well_tag_number": 112446, + "well": 112446, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL/CLAY/MINOR SAND", @@ -327482,7 +327482,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, - "well_tag_number": 112885, + "well": 112885, "lithology_from": "160.00", "lithology_to": "182.00", "lithology_raw_data": null, @@ -327511,7 +327511,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "4.00", "lithology_to": "15.00", "lithology_raw_data": "SILTY CLAY", @@ -327540,7 +327540,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "131.00", "lithology_to": "138.00", "lithology_raw_data": "SILTSTONE", @@ -327569,7 +327569,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, - "well_tag_number": 112672, + "well": 112672, "lithology_from": "0.00", "lithology_to": "76.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -327598,7 +327598,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "11.00", "lithology_to": "12.00", "lithology_raw_data": "LIGHT BROWN", @@ -327627,7 +327627,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, - "well_tag_number": 112383, + "well": 112383, "lithology_from": "24.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -327656,7 +327656,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, - "well_tag_number": 112722, + "well": 112722, "lithology_from": "13.00", "lithology_to": "26.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -327685,7 +327685,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, - "well_tag_number": 112271, + "well": 112271, "lithology_from": "2.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -327714,7 +327714,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "600.00", "lithology_to": "610.00", "lithology_raw_data": "SILT/SAND", @@ -327743,7 +327743,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, - "well_tag_number": 113031, + "well": 113031, "lithology_from": "90.00", "lithology_to": "150.00", "lithology_raw_data": "SOFT GREY CLAY MIX WITH SAND", @@ -327772,7 +327772,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "12.00", "lithology_to": "34.00", "lithology_raw_data": "cobble", @@ -327801,7 +327801,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": "Gravel, some sand, trace silt, grey-brown, damp", @@ -327830,7 +327830,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "70.00", "lithology_to": "227.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -327859,7 +327859,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": null, @@ -327888,7 +327888,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "35.00", "lithology_to": "115.00", "lithology_raw_data": "GRAVELLY TILL", @@ -327917,7 +327917,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "19.00", "lithology_to": "25.00", "lithology_raw_data": "SAND GRAVEL", @@ -327946,7 +327946,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "43.00", "lithology_to": "168.00", "lithology_raw_data": "SOLID TIGHT, GREEN VOLCANIC", @@ -327975,7 +327975,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "15.00", "lithology_to": "22.00", "lithology_raw_data": "SILTY CLAY", @@ -328004,7 +328004,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "36.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -328033,7 +328033,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, - "well_tag_number": 112402, + "well": 112402, "lithology_from": "33.00", "lithology_to": "65.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -328062,7 +328062,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, - "well_tag_number": 113290, + "well": 113290, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": null, @@ -328091,7 +328091,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", @@ -328120,7 +328120,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "76.00", "lithology_to": "87.00", "lithology_raw_data": "Gravel till, firm", @@ -328149,7 +328149,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "580.00", "lithology_to": "860.00", "lithology_raw_data": "bedrock", @@ -328178,7 +328178,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "HARD PACKED CLAY AND GRAVEL TILL WITH COBBLES AND BOULDERS", @@ -328207,7 +328207,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, - "well_tag_number": 112738, + "well": 112738, "lithology_from": "10.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -328236,7 +328236,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "227.00", "lithology_to": "281.00", "lithology_raw_data": null, @@ -328265,7 +328265,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "GREY CLAY", @@ -328294,7 +328294,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "354.00", "lithology_to": "356.00", "lithology_raw_data": "SANDSTONE", @@ -328323,7 +328323,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "4.00", "lithology_to": "17.00", "lithology_raw_data": "and gravel", @@ -328352,7 +328352,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BOULDER AND GRAVEL", @@ -328381,7 +328381,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "130.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM-SOFT; SHALE/FINE, SANDSTONE LENSES", @@ -328410,7 +328410,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:45:06Z", "activity_submission": null, - "well_tag_number": 113016, + "well": 113016, "lithology_from": "135.00", "lithology_to": "168.00", "lithology_raw_data": "CLAY", @@ -328439,7 +328439,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, - "well_tag_number": 112564, + "well": 112564, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT-MEDIUM; TILL WITH LARGE COBBLE", @@ -328468,7 +328468,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "28.00", "lithology_to": "33.00", "lithology_raw_data": "and gravel", @@ -328497,7 +328497,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "46.00", "lithology_to": "58.00", "lithology_raw_data": null, @@ -328526,7 +328526,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "112.00", "lithology_to": "129.00", "lithology_raw_data": "medium fine grain", @@ -328555,7 +328555,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "2.00", "lithology_to": "21.00", "lithology_raw_data": "SAND, SILT & ROCKS", @@ -328584,7 +328584,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SANDY CLAY", @@ -328613,7 +328613,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, - "well_tag_number": 112849, + "well": 112849, "lithology_from": "35.00", "lithology_to": "38.00", "lithology_raw_data": "Sand with clay silt", @@ -328642,7 +328642,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:49:04Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "2.00", "lithology_to": "110.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -328671,7 +328671,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -328700,7 +328700,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, - "well_tag_number": 112805, + "well": 112805, "lithology_from": "5.00", "lithology_to": "385.00", "lithology_raw_data": "sandstone, small shale lenses", @@ -328729,7 +328729,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "silt", @@ -328758,7 +328758,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", @@ -328787,7 +328787,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "76.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -328816,7 +328816,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, - "well_tag_number": 112543, + "well": 112543, "lithology_from": "83.00", "lithology_to": "87.00", "lithology_raw_data": "GREY TILL", @@ -328845,7 +328845,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, - "well_tag_number": 113065, + "well": 113065, "lithology_from": "140.00", "lithology_to": "149.00", "lithology_raw_data": "CLAY", @@ -328874,7 +328874,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "28.00", "lithology_to": "50.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -328903,7 +328903,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, - "well_tag_number": 112941, + "well": 112941, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": "BOULDERS AND GRAVEL", @@ -328932,7 +328932,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:29:01Z", "activity_submission": null, - "well_tag_number": 112291, + "well": 112291, "lithology_from": "35.00", "lithology_to": "63.00", "lithology_raw_data": "GRAVEL AND CLAY", @@ -328961,7 +328961,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, - "well_tag_number": 113095, + "well": 113095, "lithology_from": "210.00", "lithology_to": "221.00", "lithology_raw_data": "SS GREY BLUE SOFT", @@ -328990,7 +328990,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, - "well_tag_number": 112717, + "well": 112717, "lithology_from": "15.00", "lithology_to": "31.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME CLAY LAYERS", @@ -329019,7 +329019,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, - "well_tag_number": 113210, + "well": 113210, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "Shale", @@ -329048,7 +329048,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, - "well_tag_number": 112313, + "well": 112313, "lithology_from": "18.00", "lithology_to": "33.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -329077,7 +329077,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "200.00", "lithology_to": "260.00", "lithology_raw_data": "siltstone/shale", @@ -329106,7 +329106,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "GREEN SAND, ODD STONE", @@ -329135,7 +329135,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM/HARD; COMPRESSED GRAVELS", @@ -329164,7 +329164,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "2.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -329193,7 +329193,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "360.00", "lithology_to": "380.00", "lithology_raw_data": "Sandstone", @@ -329222,7 +329222,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, - "well_tag_number": 112589, + "well": 112589, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -329251,7 +329251,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": null, @@ -329280,7 +329280,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "49.00", "lithology_to": "54.00", "lithology_raw_data": "and gravel", @@ -329309,7 +329309,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -329338,7 +329338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "168.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -329367,7 +329367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "95.00", "lithology_to": "101.00", "lithology_raw_data": "cobbles", @@ -329396,7 +329396,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, - "well_tag_number": 112271, + "well": 112271, "lithology_from": "140.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -329425,7 +329425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "495.00", "lithology_to": "530.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -329454,7 +329454,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "16.00", "lithology_to": "40.00", "lithology_raw_data": "GREY/GREEN GRANITE", @@ -329483,7 +329483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "158.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE, MEDIUM FINE", @@ -329512,7 +329512,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, - "well_tag_number": 112509, + "well": 112509, "lithology_from": "76.00", "lithology_to": "86.00", "lithology_raw_data": "W.B. SILTY SANDS & GRAVEL", @@ -329541,7 +329541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": "BOULDER", @@ -329570,7 +329570,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "15.00", "lithology_to": "34.00", "lithology_raw_data": null, @@ -329599,7 +329599,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:45:45Z", "activity_submission": null, - "well_tag_number": 112353, + "well": 112353, "lithology_from": "70.00", "lithology_to": "235.00", "lithology_raw_data": null, @@ -329628,7 +329628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "40.00", "lithology_to": "68.00", "lithology_raw_data": "BROWN TO GREY SILTY SANDS, SOME GRAVELS, WASTE ROCK", @@ -329657,7 +329657,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "550.00", "lithology_to": "750.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -329686,7 +329686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, - "well_tag_number": 112279, + "well": 112279, "lithology_from": "24.00", "lithology_to": "47.00", "lithology_raw_data": "GLACIAL TILL, COMPACT MEDIUM SAND AND GRAVEL", @@ -329715,7 +329715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, - "well_tag_number": 112412, + "well": 112412, "lithology_from": "32.00", "lithology_to": "41.00", "lithology_raw_data": "SAND AND GRAVEL WITH SILT", @@ -329744,7 +329744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "33.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", @@ -329773,7 +329773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -329802,7 +329802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "21.00", "lithology_to": "29.00", "lithology_raw_data": "silty", @@ -329831,7 +329831,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, - "well_tag_number": 112983, + "well": 112983, "lithology_from": "15.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -329860,7 +329860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; SILTY CLAY, MINOR, MEDIUM SAND", @@ -329889,7 +329889,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "74.00", "lithology_to": "90.00", "lithology_raw_data": null, @@ -329918,7 +329918,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": "sand with gravel", @@ -329947,7 +329947,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": "MEDIUM SAND AND GRAVEL", @@ -329976,7 +329976,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "1280.00", "lithology_to": "1320.00", "lithology_raw_data": null, @@ -330005,7 +330005,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -330034,7 +330034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "550.00", "lithology_to": "585.00", "lithology_raw_data": "GREY/GREEN, VOLCANIC WITH OCCASIONAL GREEN TRACES", @@ -330063,7 +330063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, - "well_tag_number": 112570, + "well": 112570, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": null, @@ -330092,7 +330092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, - "well_tag_number": 112990, + "well": 112990, "lithology_from": "10.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -330121,7 +330121,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; TILL BEDROCK 17 FEET", @@ -330150,7 +330150,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "205.00", "lithology_to": "265.00", "lithology_raw_data": "CLAY & SILT", @@ -330179,7 +330179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "697.00", "lithology_to": "725.00", "lithology_raw_data": "BLACK/GREY, VOLCANIC", @@ -330208,7 +330208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "180.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", @@ -330237,7 +330237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "147.00", "lithology_to": "153.00", "lithology_raw_data": "BROWN GREY", @@ -330266,7 +330266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:44Z", "activity_submission": null, - "well_tag_number": 112693, + "well": 112693, "lithology_from": "6.00", "lithology_to": "14.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -330295,7 +330295,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, - "well_tag_number": 112959, + "well": 112959, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -330324,7 +330324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, - "well_tag_number": 113182, + "well": 113182, "lithology_from": "155.00", "lithology_to": "255.00", "lithology_raw_data": null, @@ -330353,7 +330353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, - "well_tag_number": 112439, + "well": 112439, "lithology_from": "39.00", "lithology_to": "46.00", "lithology_raw_data": null, @@ -330382,7 +330382,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": "sand with gravel", @@ -330411,7 +330411,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "260.00", "lithology_to": "293.00", "lithology_raw_data": "MAINLY WITH LENSES OF SHALEY SANDSTONE", @@ -330440,7 +330440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "158.00", "lithology_to": "178.00", "lithology_raw_data": null, @@ -330469,7 +330469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "255.00", "lithology_to": "310.00", "lithology_raw_data": "SHALE", @@ -330498,7 +330498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, - "well_tag_number": 112798, + "well": 112798, "lithology_from": "3.30", "lithology_to": "36.08", "lithology_raw_data": "POORLY GRADED SNAD WITH GRAVEL", @@ -330527,7 +330527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "325.00", "lithology_to": "353.00", "lithology_raw_data": "SS med hard fine grey - no water", @@ -330556,7 +330556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:04:38Z", "activity_submission": null, - "well_tag_number": 112920, + "well": 112920, "lithology_from": "5.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -330585,7 +330585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, - "well_tag_number": 112625, + "well": 112625, "lithology_from": "55.00", "lithology_to": "78.00", "lithology_raw_data": "SHALE", @@ -330614,7 +330614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "88.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -330643,7 +330643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY, SILT, TRACES OF ROCKS", @@ -330672,7 +330672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, - "well_tag_number": 113153, + "well": 113153, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "sand with clay/silt", @@ -330701,7 +330701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "light green blue black quartz very soft fractured rock", @@ -330730,7 +330730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": "DARK GREY", @@ -330759,7 +330759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "13.00", "lithology_to": "17.00", "lithology_raw_data": "and gravel", @@ -330788,7 +330788,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, - "well_tag_number": 112886, + "well": 112886, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SILTY CLAY & ROCKS", @@ -330817,7 +330817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "53.00", "lithology_to": "58.00", "lithology_raw_data": "SILTY SAND, CLAY BALLS", @@ -330846,7 +330846,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -330875,7 +330875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "MEDIUM SAND", @@ -330904,7 +330904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, - "well_tag_number": 112783, + "well": 112783, "lithology_from": "3.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -330933,7 +330933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -330962,7 +330962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "22.00", "lithology_to": "50.00", "lithology_raw_data": "till", @@ -330991,7 +330991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SITL, TRACES OF FINE SAND ", @@ -331020,7 +331020,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "285.00", "lithology_to": "295.00", "lithology_raw_data": "SHALE/IRONSTONE LENSES", @@ -331049,7 +331049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "187.00", "lithology_to": "189.00", "lithology_raw_data": "gravel", @@ -331078,7 +331078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -331107,7 +331107,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, - "well_tag_number": 112392, + "well": 112392, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "BOULDER", @@ -331136,7 +331136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY/ROCKS", @@ -331165,7 +331165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T21:51:57Z", "activity_submission": null, - "well_tag_number": 113266, + "well": 113266, "lithology_from": "10.00", "lithology_to": "64.00", "lithology_raw_data": "till", @@ -331194,7 +331194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "GREY, SAND MEDIUM", @@ -331223,7 +331223,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, - "well_tag_number": 112343, + "well": 112343, "lithology_from": "5.00", "lithology_to": "80.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -331252,7 +331252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "245.00", "lithology_to": "265.00", "lithology_raw_data": "SANDSTONE WITH SHALE LENSES", @@ -331281,7 +331281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, - "well_tag_number": 112236, + "well": 112236, "lithology_from": "150.00", "lithology_to": "175.00", "lithology_raw_data": "MEDIUM/HARD GREEN QUARTZ-FELDSPAR", @@ -331310,7 +331310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "broken rock", @@ -331339,7 +331339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, - "well_tag_number": 112995, + "well": 112995, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY/GRAVEL", @@ -331368,7 +331368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "50.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -331397,7 +331397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "60.00", "lithology_to": "240.00", "lithology_raw_data": null, @@ -331426,7 +331426,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "670.00", "lithology_to": "680.00", "lithology_raw_data": "SS", @@ -331455,7 +331455,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, - "well_tag_number": 112925, + "well": 112925, "lithology_from": "110.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -331484,7 +331484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "78.00", "lithology_to": "81.00", "lithology_raw_data": "FRACTURE", @@ -331513,7 +331513,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "83.00", "lithology_to": "96.00", "lithology_raw_data": "W.B. GREY SAND", @@ -331542,7 +331542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "240.00", "lithology_to": "245.00", "lithology_raw_data": "FINE SILTY SAND WITH CLAY", @@ -331571,7 +331571,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "174.00", "lithology_to": "208.00", "lithology_raw_data": null, @@ -331600,7 +331600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "and gravel", @@ -331629,7 +331629,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "111.00", "lithology_to": "141.00", "lithology_raw_data": null, @@ -331658,7 +331658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "35.00", "lithology_to": "43.00", "lithology_raw_data": "BEDROCK BLOCKING", @@ -331687,7 +331687,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:32:35Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "540.00", "lithology_to": null, "lithology_raw_data": "MINOR SAND, CLEANED", @@ -331716,7 +331716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, - "well_tag_number": 113247, + "well": 113247, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -331745,7 +331745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "4.00", "lithology_to": "20.00", "lithology_raw_data": "SAND/GRAVEL", @@ -331774,7 +331774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "98.00", "lithology_to": "106.00", "lithology_raw_data": null, @@ -331803,7 +331803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T21:51:57Z", "activity_submission": null, - "well_tag_number": 113266, + "well": 113266, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -331832,7 +331832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "210.00", "lithology_to": "218.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -331861,7 +331861,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "OVERBURDEN", @@ -331890,7 +331890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "148.00", "lithology_to": "207.00", "lithology_raw_data": "CRYSTALLINE", @@ -331919,7 +331919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, - "well_tag_number": 112826, + "well": 112826, "lithology_from": "26.00", "lithology_to": "39.00", "lithology_raw_data": "GRAVELLY TILL", @@ -331948,7 +331948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, FINE", @@ -331977,7 +331977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -332006,7 +332006,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, - "well_tag_number": 112587, + "well": 112587, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANICS", @@ -332035,7 +332035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "105.00", "lithology_to": "127.00", "lithology_raw_data": null, @@ -332064,7 +332064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", @@ -332093,7 +332093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "63.00", "lithology_to": "66.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -332122,7 +332122,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:56:25Z", "activity_submission": null, - "well_tag_number": 112989, + "well": 112989, "lithology_from": "117.00", "lithology_to": "122.00", "lithology_raw_data": null, @@ -332151,7 +332151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "326.00", "lithology_to": "339.00", "lithology_raw_data": "gravel, cobbles", @@ -332180,7 +332180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "71.00", "lithology_to": "141.00", "lithology_raw_data": null, @@ -332209,7 +332209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "56.00", "lithology_to": "65.00", "lithology_raw_data": "sand with gravel", @@ -332238,7 +332238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, - "well_tag_number": 112571, + "well": 112571, "lithology_from": "58.00", "lithology_to": "72.00", "lithology_raw_data": "SHALE", @@ -332267,7 +332267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "160.00", "lithology_to": "223.00", "lithology_raw_data": "hard", @@ -332296,7 +332296,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:35:15Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "0.00", "lithology_to": "2.50", "lithology_raw_data": "Red/brown topsoil", @@ -332325,7 +332325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "315.00", "lithology_to": "325.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -332354,7 +332354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "214.00", "lithology_to": "250.00", "lithology_raw_data": "find-medium", @@ -332383,7 +332383,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/SOFT; GRAVEL", @@ -332412,7 +332412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, - "well_tag_number": 112290, + "well": 112290, "lithology_from": "97.00", "lithology_to": "102.00", "lithology_raw_data": "GRAVEL", @@ -332441,7 +332441,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, - "well_tag_number": 112806, + "well": 112806, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -332470,7 +332470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, - "well_tag_number": 112351, + "well": 112351, "lithology_from": "47.00", "lithology_to": "50.00", "lithology_raw_data": "and gravels", @@ -332499,7 +332499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, - "well_tag_number": 113090, + "well": 113090, "lithology_from": "16.00", "lithology_to": "29.00", "lithology_raw_data": null, @@ -332528,7 +332528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:27:52Z", "activity_submission": null, - "well_tag_number": 112905, + "well": 112905, "lithology_from": "15.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY & SAND", @@ -332557,7 +332557,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "5.00", "lithology_to": "56.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -332586,7 +332586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -332615,7 +332615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "211.00", "lithology_to": "213.00", "lithology_raw_data": "CLAY", @@ -332644,7 +332644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, - "well_tag_number": 112909, + "well": 112909, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -332673,7 +332673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "12.00", "lithology_to": "21.00", "lithology_raw_data": null, @@ -332702,7 +332702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "54.00", "lithology_to": "59.00", "lithology_raw_data": null, @@ -332731,7 +332731,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, - "well_tag_number": 112592, + "well": 112592, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "FINE SANDS AND GRAVEL", @@ -332760,7 +332760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "192.00", "lithology_to": "275.00", "lithology_raw_data": "BROWN/GREY", @@ -332789,7 +332789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:42:35Z", "activity_submission": null, - "well_tag_number": 112635, + "well": 112635, "lithology_from": "32.00", "lithology_to": "56.00", "lithology_raw_data": "gravel", @@ -332818,7 +332818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "391.00", "lithology_to": "394.00", "lithology_raw_data": null, @@ -332847,7 +332847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY", @@ -332876,7 +332876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "232.00", "lithology_to": "305.00", "lithology_raw_data": null, @@ -332905,7 +332905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, - "well_tag_number": 112608, + "well": 112608, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND", @@ -332934,7 +332934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "120.00", "lithology_to": "130.00", "lithology_raw_data": "GRAVEL / CLAY", @@ -332963,7 +332963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, - "well_tag_number": 112255, + "well": 112255, "lithology_from": "19.00", "lithology_to": "23.00", "lithology_raw_data": "GREY CLAY", @@ -332992,7 +332992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "19.00", "lithology_to": "41.00", "lithology_raw_data": null, @@ -333021,7 +333021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "169.00", "lithology_to": "180.00", "lithology_raw_data": "LAYERED GRAY BLUE SAND FINE GRAVEL", @@ -333050,7 +333050,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, - "well_tag_number": 112899, + "well": 112899, "lithology_from": "22.00", "lithology_to": "33.00", "lithology_raw_data": "COBBLE & BOULDERS", @@ -333079,7 +333079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "103.00", "lithology_to": "120.00", "lithology_raw_data": "ORGANIC MATERIAL", @@ -333108,7 +333108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL", @@ -333137,7 +333137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "153.00", "lithology_to": "197.00", "lithology_raw_data": "GRANITE", @@ -333166,7 +333166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "353.00", "lithology_to": "356.00", "lithology_raw_data": "SILTSTONE", @@ -333195,7 +333195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, ROCKS, SILT", @@ -333224,7 +333224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "125.00", "lithology_to": "130.00", "lithology_raw_data": "SANDSTONE/ SHALE STRINGERS ", @@ -333253,7 +333253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "250.00", "lithology_to": "271.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -333282,7 +333282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "6.00", "lithology_to": "9.00", "lithology_raw_data": "FIRM", @@ -333311,7 +333311,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, - "well_tag_number": 113251, + "well": 113251, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "clay boulders", @@ -333340,7 +333340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, - "well_tag_number": 112872, + "well": 112872, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY & ROCK", @@ -333369,7 +333369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "60.00", "lithology_to": "76.00", "lithology_raw_data": "GRAVEL", @@ -333398,7 +333398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY/GRAVEL", @@ -333427,7 +333427,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "56.00", "lithology_to": "71.00", "lithology_raw_data": "SILTY CLAY WITH SILTY SEAMS", @@ -333456,7 +333456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "233.00", "lithology_to": "243.00", "lithology_raw_data": "SILTY SAND WITH GRAVEL", @@ -333485,7 +333485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "16.00", "lithology_to": "68.00", "lithology_raw_data": "SILT, CLAY & ROCKS", @@ -333514,7 +333514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, - "well_tag_number": 112518, + "well": 112518, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "WET SAND, SILTY", @@ -333543,7 +333543,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", @@ -333572,7 +333572,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "9.00", "lithology_to": "18.00", "lithology_raw_data": "W.B. BROWN SAND", @@ -333601,7 +333601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, - "well_tag_number": 112982, + "well": 112982, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "CLAY, SAND AND GRAVEL", @@ -333630,7 +333630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -333659,7 +333659,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:26:20Z", "activity_submission": null, - "well_tag_number": 112998, + "well": 112998, "lithology_from": "0.00", "lithology_to": "116.00", "lithology_raw_data": "siltstone shale", @@ -333688,7 +333688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "SHALE BL", @@ -333717,7 +333717,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, - "well_tag_number": 112600, + "well": 112600, "lithology_from": "40.00", "lithology_to": "195.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, MINOR ROCKS", @@ -333746,7 +333746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, - "well_tag_number": 112738, + "well": 112738, "lithology_from": "23.00", "lithology_to": "49.00", "lithology_raw_data": "SILTY SAND WITH CLAY LAYERS", @@ -333775,7 +333775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, - "well_tag_number": 112593, + "well": 112593, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, COARSE SAND", @@ -333804,7 +333804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, - "well_tag_number": 112594, + "well": 112594, "lithology_from": "100.00", "lithology_to": "105.00", "lithology_raw_data": "GRAVEL", @@ -333833,7 +333833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -333862,7 +333862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, - "well_tag_number": 113205, + "well": 113205, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -333891,7 +333891,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "134.00", "lithology_to": "191.00", "lithology_raw_data": "BROWN SAND/GRAVEL (DAMP)", @@ -333920,7 +333920,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, - "well_tag_number": 113027, + "well": 113027, "lithology_from": "42.00", "lithology_to": "75.00", "lithology_raw_data": "Brown Silty Sand", @@ -333949,7 +333949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "130.00", "lithology_to": "137.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -333978,7 +333978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, - "well_tag_number": 112259, + "well": 112259, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SOIL", @@ -334007,7 +334007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "28.00", "lithology_to": "35.00", "lithology_raw_data": "and gravel", @@ -334036,7 +334036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "76.00", "lithology_to": "80.00", "lithology_raw_data": "medium to coarse", @@ -334065,7 +334065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "3.00", "lithology_to": "34.00", "lithology_raw_data": "TILL WITH COBBLES", @@ -334094,7 +334094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "78.00", "lithology_to": "90.00", "lithology_raw_data": null, @@ -334123,7 +334123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "275.00", "lithology_to": "287.00", "lithology_raw_data": null, @@ -334152,7 +334152,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "171.00", "lithology_to": "175.00", "lithology_raw_data": "SANDSTONE, FINE", @@ -334181,7 +334181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -334210,7 +334210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "130.00", "lithology_to": "139.00", "lithology_raw_data": "and gravels", @@ -334239,7 +334239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, - "well_tag_number": 113186, + "well": 113186, "lithology_from": "141.00", "lithology_to": "160.00", "lithology_raw_data": null, @@ -334268,7 +334268,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -334297,7 +334297,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:16:16Z", "activity_submission": null, - "well_tag_number": 113090, + "well": 113090, "lithology_from": "29.00", "lithology_to": "181.00", "lithology_raw_data": null, @@ -334326,7 +334326,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "475.00", "lithology_to": "490.00", "lithology_raw_data": "SS, light grey, sugary, S&P", @@ -334355,7 +334355,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, - "well_tag_number": 112577, + "well": 112577, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -334384,7 +334384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, - "well_tag_number": 112822, + "well": 112822, "lithology_from": "25.00", "lithology_to": "720.00", "lithology_raw_data": null, @@ -334413,7 +334413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "26.00", "lithology_to": "99.00", "lithology_raw_data": "TIGHT; CLAY AND GRAVEL TILL WITH BOULDERS AND COBBLES", @@ -334442,7 +334442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, - "well_tag_number": 112239, + "well": 112239, "lithology_from": "75.00", "lithology_to": "140.00", "lithology_raw_data": "CLAY", @@ -334471,7 +334471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "425.00", "lithology_to": "431.00", "lithology_raw_data": "SILTSTONE", @@ -334500,7 +334500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "114.00", "lithology_to": "117.00", "lithology_raw_data": "silt/sand", @@ -334529,7 +334529,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, - "well_tag_number": 112793, + "well": 112793, "lithology_from": "3.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -334558,7 +334558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM TO FINE SAND", @@ -334587,7 +334587,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -334616,7 +334616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:20Z", "activity_submission": null, - "well_tag_number": 112774, + "well": 112774, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -334645,7 +334645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, - "well_tag_number": 113008, + "well": 113008, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", @@ -334674,7 +334674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, - "well_tag_number": 113133, + "well": 113133, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -334703,7 +334703,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T19:08:54Z", "activity_submission": null, - "well_tag_number": 113199, + "well": 113199, "lithology_from": "90.00", "lithology_to": "115.00", "lithology_raw_data": "Till, silt, sand, cobbles, and clay", @@ -334732,7 +334732,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-07-06T16:59:47Z", "activity_submission": null, - "well_tag_number": 112920, + "well": 112920, "lithology_from": "7.00", "lithology_to": "175.00", "lithology_raw_data": null, @@ -334761,7 +334761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "286.00", "lithology_to": "300.00", "lithology_raw_data": "SANDSTONE", @@ -334790,7 +334790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "7.00", "lithology_to": "42.00", "lithology_raw_data": "gravelly with cobbles", @@ -334819,7 +334819,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "290.00", "lithology_to": "500.00", "lithology_raw_data": null, @@ -334848,7 +334848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -334877,7 +334877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, - "well_tag_number": 112870, + "well": 112870, "lithology_from": "500.00", "lithology_to": "564.00", "lithology_raw_data": "GREEN & GREY", @@ -334906,7 +334906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": "9.00", "lithology_to": "15.00", "lithology_raw_data": "faulty", @@ -334935,7 +334935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM, GRAVEL MINOR CLAY ZONES", @@ -334964,7 +334964,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, - "well_tag_number": 113003, + "well": 113003, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "Brown Sand", @@ -334993,7 +334993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY/GRAVEL", @@ -335022,7 +335022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "125.00", "lithology_to": "208.00", "lithology_raw_data": "GREY SILTY GRAVELS AND COBBLES", @@ -335051,7 +335051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, - "well_tag_number": 112279, + "well": 112279, "lithology_from": "1.00", "lithology_to": "15.00", "lithology_raw_data": "GREY-BLUE CLAY", @@ -335080,7 +335080,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, - "well_tag_number": 113178, + "well": 113178, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel clay", @@ -335109,7 +335109,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "60.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE WITH BLACK STREAKS", @@ -335138,7 +335138,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "458.00", "lithology_to": "460.00", "lithology_raw_data": "FRACTURE", @@ -335167,7 +335167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "46.00", "lithology_to": "56.00", "lithology_raw_data": "sand, fine med", @@ -335196,7 +335196,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-03T23:39:05Z", "activity_submission": null, - "well_tag_number": 112625, + "well": 112625, "lithology_from": "84.00", "lithology_to": "170.00", "lithology_raw_data": "SHALE", @@ -335225,7 +335225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, MINOR ROCK", @@ -335254,7 +335254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -335283,7 +335283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "370.00", "lithology_to": "395.00", "lithology_raw_data": "Sand, fine grained, some silt", @@ -335312,7 +335312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, - "well_tag_number": 112930, + "well": 112930, "lithology_from": "75.00", "lithology_to": "400.00", "lithology_raw_data": "CLAY GRAY PINK", @@ -335341,7 +335341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -335370,7 +335370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, - "well_tag_number": 112600, + "well": 112600, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, SAND", @@ -335399,7 +335399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", @@ -335428,7 +335428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -335457,7 +335457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "21.00", "lithology_to": "43.00", "lithology_raw_data": "sand and gravels", @@ -335486,7 +335486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "220.00", "lithology_to": "245.00", "lithology_raw_data": "GREEN SHALE WITH SOME FRACTURES", @@ -335515,7 +335515,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "108.00", "lithology_to": "176.00", "lithology_raw_data": "gravel", @@ -335544,7 +335544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "45.00", "lithology_to": "48.00", "lithology_raw_data": "GREY SANDSTONE", @@ -335573,7 +335573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, - "well_tag_number": 112835, + "well": 112835, "lithology_from": "41.00", "lithology_to": null, "lithology_raw_data": "clay", @@ -335602,7 +335602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:37:00Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "240.00", "lithology_to": "250.00", "lithology_raw_data": "BEDROCK", @@ -335631,7 +335631,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "196.00", "lithology_to": "296.00", "lithology_raw_data": "CLAY WITH LENSES OF SILT", @@ -335660,7 +335660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "310.00", "lithology_to": "319.00", "lithology_raw_data": "COARSE SANDSTONE", @@ -335689,7 +335689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "96.00", "lithology_to": "140.00", "lithology_raw_data": "DRY SAND AND SILT", @@ -335718,7 +335718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "COARSE GRAVEL AND COBBLES", @@ -335747,7 +335747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "69.00", "lithology_to": "85.00", "lithology_raw_data": "MEDIUM SOFT, BROWN-GREY, SEMI-CEMENTED SILT-SOME ROCK", @@ -335776,7 +335776,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "117.00", "lithology_to": "204.00", "lithology_raw_data": "fine to medium grained", @@ -335805,7 +335805,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, - "well_tag_number": 112236, + "well": 112236, "lithology_from": "115.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM/HARD, GREEN/WHITE, SEAMS OF VOLCANIC GNEISS", @@ -335834,7 +335834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, - "well_tag_number": 113186, + "well": 113186, "lithology_from": "135.00", "lithology_to": "141.00", "lithology_raw_data": "cased bedrock", @@ -335863,7 +335863,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, - "well_tag_number": 112892, + "well": 112892, "lithology_from": "168.00", "lithology_to": "180.00", "lithology_raw_data": "WHITE WITH GREEN FLECK", @@ -335892,7 +335892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, - "well_tag_number": 112746, + "well": 112746, "lithology_from": "10.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME SILTY CLAY", @@ -335921,7 +335921,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, - "well_tag_number": 113216, + "well": 113216, "lithology_from": "10.00", "lithology_to": "100.00", "lithology_raw_data": "SS", @@ -335950,7 +335950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "SOFT-HARD; COBBLES, GRAVELS", @@ -335979,7 +335979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "74.00", "lithology_to": "92.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -336008,7 +336008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "405.00", "lithology_to": "495.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -336037,7 +336037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "33.00", "lithology_to": "42.00", "lithology_raw_data": "GRAVEL-TILL", @@ -336066,7 +336066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:29:35Z", "activity_submission": null, - "well_tag_number": 112595, + "well": 112595, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND AND MEDIUM GRAVEL", @@ -336095,7 +336095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -336124,7 +336124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, - "well_tag_number": 112891, + "well": 112891, "lithology_from": "38.00", "lithology_to": "43.00", "lithology_raw_data": "SAND & GRAVEL WITH CLAY LUMPS", @@ -336153,7 +336153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "63.50", "lithology_to": "73.00", "lithology_raw_data": "GREY CLAY", @@ -336182,7 +336182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM, CLAY, ANGULAR GRAVEL", @@ -336211,7 +336211,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "260.00", "lithology_to": "267.00", "lithology_raw_data": "silt", @@ -336240,7 +336240,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "TILL", @@ -336269,7 +336269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "55.00", "lithology_to": "100.00", "lithology_raw_data": "dark green/ gray trace", @@ -336298,7 +336298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "119.00", "lithology_to": "130.00", "lithology_raw_data": "till", @@ -336327,7 +336327,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, - "well_tag_number": 112948, + "well": 112948, "lithology_from": "14.00", "lithology_to": "36.00", "lithology_raw_data": "LARGE GRAVEL WITH MEDIUM SAND, WELL SORTED", @@ -336356,7 +336356,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "47.00", "lithology_to": "54.00", "lithology_raw_data": null, @@ -336385,7 +336385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, - "well_tag_number": 112882, + "well": 112882, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILTY SAND & GRAVEL", @@ -336414,7 +336414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "166.00", "lithology_to": "171.00", "lithology_raw_data": "W.B. SAND & GRAVEL", @@ -336443,7 +336443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "12.00", "lithology_to": "18.00", "lithology_raw_data": "silt and cobble", @@ -336472,7 +336472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "148.00", "lithology_to": "182.00", "lithology_raw_data": null, @@ -336501,7 +336501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES AND BOULDERS", @@ -336530,7 +336530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "180.00", "lithology_to": "194.00", "lithology_raw_data": "BEDROCK", @@ -336559,7 +336559,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "33.00", "lithology_to": "41.00", "lithology_raw_data": "trace of gravel", @@ -336588,7 +336588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, - "well_tag_number": 112363, + "well": 112363, "lithology_from": "5.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -336617,7 +336617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, - "well_tag_number": 113112, + "well": 113112, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "215 FINE SAND GRAVEL; 225 COARSE TILL GRAVEL", @@ -336646,7 +336646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "155.00", "lithology_to": "160.00", "lithology_raw_data": "WEATHER, BEDROCK", @@ -336675,7 +336675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, - "well_tag_number": 112723, + "well": 112723, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "MEDIUM AND COARSE SAND", @@ -336704,7 +336704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": "36.00", "lithology_to": "42.00", "lithology_raw_data": "ERODED BEDROCK, ORANGE", @@ -336733,7 +336733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, - "well_tag_number": 113082, + "well": 113082, "lithology_from": "2.00", "lithology_to": "10.00", "lithology_raw_data": "clay, sand, gravel", @@ -336762,7 +336762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, - "well_tag_number": 112671, + "well": 112671, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "LOAMY TILL", @@ -336791,7 +336791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:48Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "500.00", "lithology_to": "560.00", "lithology_raw_data": "GRAY & RED & GREEN", @@ -336820,7 +336820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:02:02Z", "activity_submission": null, - "well_tag_number": 112700, + "well": 112700, "lithology_from": "30.00", "lithology_to": "37.00", "lithology_raw_data": "BROKEN BEDROCK, SOME CLAY", @@ -336849,7 +336849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "67.00", "lithology_to": "130.00", "lithology_raw_data": "BROWN/GREY/WHITE VOLCANIC WITH FEW TRACES", @@ -336878,7 +336878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, - "well_tag_number": 112249, + "well": 112249, "lithology_from": "80.00", "lithology_to": "165.00", "lithology_raw_data": "SHALE", @@ -336907,7 +336907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, - "well_tag_number": 112505, + "well": 112505, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SILTY SANDS & GRAVELS", @@ -336936,7 +336936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "300.00", "lithology_to": "315.00", "lithology_raw_data": "SANDSTONE/FINE", @@ -336965,7 +336965,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "41.00", "lithology_to": "48.00", "lithology_raw_data": "and gravel", @@ -336994,7 +336994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, - "well_tag_number": 112987, + "well": 112987, "lithology_from": "66.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -337023,7 +337023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, - "well_tag_number": 113206, + "well": 113206, "lithology_from": "85.00", "lithology_to": "96.00", "lithology_raw_data": "gravel, sand", @@ -337052,7 +337052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "315.00", "lithology_to": "330.00", "lithology_raw_data": "SHALE/SILTSTONE", @@ -337081,7 +337081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, - "well_tag_number": 112785, + "well": 112785, "lithology_from": "8.92", "lithology_to": "7.42", "lithology_raw_data": null, @@ -337110,7 +337110,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:44:06Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "186.00", "lithology_to": "195.00", "lithology_raw_data": "GREY-GREEN SHALE", @@ -337139,7 +337139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "35.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -337168,7 +337168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "105.00", "lithology_to": "160.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", @@ -337197,7 +337197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", @@ -337226,7 +337226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "102.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -337255,7 +337255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, CLAY MIXED", @@ -337284,7 +337284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "98.00", "lithology_to": "192.00", "lithology_raw_data": "PACKED SANDS", @@ -337313,7 +337313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "3.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -337342,7 +337342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, - "well_tag_number": 112383, + "well": 112383, "lithology_from": "335.00", "lithology_to": "340.00", "lithology_raw_data": null, @@ -337371,7 +337371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, - "well_tag_number": 112304, + "well": 112304, "lithology_from": "216.00", "lithology_to": null, "lithology_raw_data": "TILL", @@ -337400,7 +337400,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "69.00", "lithology_to": "134.00", "lithology_raw_data": "BROWN SAND/GRAVEL", @@ -337429,7 +337429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "56.00", "lithology_to": "180.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -337458,7 +337458,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, - "well_tag_number": 112845, + "well": 112845, "lithology_from": "76.00", "lithology_to": "109.00", "lithology_raw_data": "FINER GREY SANDS", @@ -337487,7 +337487,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "190.00", "lithology_to": "214.00", "lithology_raw_data": "cobbles/gravel", @@ -337516,7 +337516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "71.00", "lithology_to": "124.00", "lithology_raw_data": "sand", @@ -337545,7 +337545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, - "well_tag_number": 113141, + "well": 113141, "lithology_from": "74.00", "lithology_to": "94.00", "lithology_raw_data": "LIGHT BROWN SILTS, SANDS, SOME GRAVEL", @@ -337574,7 +337574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -337603,7 +337603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "35.00", "lithology_to": "43.00", "lithology_raw_data": "GREY CLAY", @@ -337632,7 +337632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "COARSE GRAVEL / COBBLE", @@ -337661,7 +337661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "48.00", "lithology_to": "65.00", "lithology_raw_data": "LARGE 6\" MINUS COBBLES, MEDIUM GREY SAND", @@ -337690,7 +337690,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "100.00", "lithology_to": "150.00", "lithology_raw_data": "GREY, BLACK, SHALE, SMALL SANDSTONE LAYER", @@ -337719,7 +337719,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-20T16:40:23Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL", @@ -337748,7 +337748,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "and wood debris", @@ -337777,7 +337777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "68.00", "lithology_to": "114.00", "lithology_raw_data": null, @@ -337806,7 +337806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, - "well_tag_number": 112750, + "well": 112750, "lithology_from": "33.00", "lithology_to": "73.00", "lithology_raw_data": "GREY SILT", @@ -337835,7 +337835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "361.00", "lithology_to": "365.00", "lithology_raw_data": "LIGHT GREY OTHER SURFICIAL/BEDROCK", @@ -337864,7 +337864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "205.00", "lithology_to": "216.00", "lithology_raw_data": "TILL", @@ -337893,7 +337893,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", @@ -337922,7 +337922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -337951,7 +337951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, - "well_tag_number": 112723, + "well": 112723, "lithology_from": "14.00", "lithology_to": "22.00", "lithology_raw_data": "SAND AND GRAVEL WITH ORGANICS", @@ -337980,7 +337980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, - "well_tag_number": 113166, + "well": 113166, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": "sand with gravel", @@ -338009,7 +338009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY CLAY, MINOR ROCKS", @@ -338038,7 +338038,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-02T20:14:29Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "0.00", "lithology_to": "260.00", "lithology_raw_data": "Clay, till", @@ -338067,7 +338067,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "100.00", "lithology_to": "103.00", "lithology_raw_data": "GRAVEL", @@ -338096,7 +338096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "470.00", "lithology_to": "485.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -338125,7 +338125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "clay", @@ -338154,7 +338154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "30.00", "lithology_to": "51.00", "lithology_raw_data": "BIT LOOSER SAND AND GRAVEL WITH COBBLES", @@ -338183,7 +338183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL, SILT CLAY SEAMS", @@ -338212,7 +338212,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "COARSE SAND", @@ -338241,7 +338241,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, - "well_tag_number": 112292, + "well": 112292, "lithology_from": "19.00", "lithology_to": "65.00", "lithology_raw_data": "TILL", @@ -338270,7 +338270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, - "well_tag_number": 112587, + "well": 112587, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC - TRACES OF FELDSPAR", @@ -338299,7 +338299,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, - "well_tag_number": 112744, + "well": 112744, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FINE SAND WITH TOPSOIL", @@ -338328,7 +338328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "172.00", "lithology_to": "176.00", "lithology_raw_data": "CLAY", @@ -338357,7 +338357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, - "well_tag_number": 112272, + "well": 112272, "lithology_from": "72.00", "lithology_to": "78.00", "lithology_raw_data": null, @@ -338386,7 +338386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "136.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -338415,7 +338415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "197.00", "lithology_to": "200.00", "lithology_raw_data": null, @@ -338444,7 +338444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "78.00", "lithology_to": "79.00", "lithology_raw_data": "HARD PACKED CLAY", @@ -338473,7 +338473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "82.00", "lithology_to": "92.00", "lithology_raw_data": null, @@ -338502,7 +338502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "74.00", "lithology_to": "79.00", "lithology_raw_data": "COARSE GRAVEL WITH MED TO COARSE SAND (CLEAN) GFREY BROWN", @@ -338531,7 +338531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -338560,7 +338560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "262.00", "lithology_to": "267.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", @@ -338589,7 +338589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, - "well_tag_number": 112881, + "well": 112881, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -338618,7 +338618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -338647,7 +338647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, - "well_tag_number": 113082, + "well": 113082, "lithology_from": "46.00", "lithology_to": "130.00", "lithology_raw_data": null, @@ -338676,7 +338676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -338705,7 +338705,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "120.00", "lithology_to": "150.00", "lithology_raw_data": "GRAVEL", @@ -338734,7 +338734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "74.00", "lithology_to": "83.00", "lithology_raw_data": null, @@ -338763,7 +338763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, - "well_tag_number": 112605, + "well": 112605, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", @@ -338792,7 +338792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "180.00", "lithology_to": "280.00", "lithology_raw_data": "SAND, MEDIUM TO FINE", @@ -338821,7 +338821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, - "well_tag_number": 112938, + "well": 112938, "lithology_from": "5.00", "lithology_to": "11.00", "lithology_raw_data": "SAND & GRAVEL COARSE", @@ -338850,7 +338850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "97.00", "lithology_to": "114.00", "lithology_raw_data": "sand / gravel/ silt", @@ -338879,7 +338879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "11.00", "lithology_to": "21.00", "lithology_raw_data": "SILT, SAND AND GRAVEL", @@ -338908,7 +338908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, - "well_tag_number": 112435, + "well": 112435, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "and gravel", @@ -338937,7 +338937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "78.00", "lithology_to": "81.00", "lithology_raw_data": "CLAY", @@ -338966,7 +338966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "38.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -338995,7 +338995,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "240.00", "lithology_to": "300.00", "lithology_raw_data": "CLAY", @@ -339024,7 +339024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "137.00", "lithology_to": "138.00", "lithology_raw_data": "DK GRY SS", @@ -339053,7 +339053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "164.50", "lithology_to": "171.00", "lithology_raw_data": "GRAVEL AND CLAY", @@ -339082,7 +339082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "SANDS AND GRAVEL", @@ -339111,7 +339111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "198.00", "lithology_to": "224.00", "lithology_raw_data": "SILTY BROWN SAND", @@ -339140,7 +339140,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "17.00", "lithology_to": "44.00", "lithology_raw_data": "SANDY GREY CLAY", @@ -339169,7 +339169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", @@ -339198,7 +339198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "188.00", "lithology_to": "194.00", "lithology_raw_data": null, @@ -339227,7 +339227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, - "well_tag_number": 112282, + "well": 112282, "lithology_from": "67.00", "lithology_to": "100.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", @@ -339256,7 +339256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "218.00", "lithology_to": "221.00", "lithology_raw_data": null, @@ -339285,7 +339285,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T04:30:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "310.00", "lithology_to": "425.00", "lithology_raw_data": "WHITE/PINK GRANITE GNEISS BEDROCK", @@ -339314,7 +339314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, - "well_tag_number": 113079, + "well": 113079, "lithology_from": "69.00", "lithology_to": "170.00", "lithology_raw_data": null, @@ -339343,7 +339343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, - "well_tag_number": 112493, + "well": 112493, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -339372,7 +339372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "95.00", "lithology_to": "115.00", "lithology_raw_data": "SOME TILL", @@ -339401,7 +339401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, - "well_tag_number": 112625, + "well": 112625, "lithology_from": "24.00", "lithology_to": "55.00", "lithology_raw_data": "SANDSTONE", @@ -339430,7 +339430,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:01:51Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "695.00", "lithology_to": "705.00", "lithology_raw_data": "GRANITE", @@ -339459,7 +339459,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, - "well_tag_number": 112938, + "well": 112938, "lithology_from": "95.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -339488,7 +339488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:16Z", "activity_submission": null, - "well_tag_number": 112584, + "well": 112584, "lithology_from": "42.00", "lithology_to": "58.00", "lithology_raw_data": "SANDSTONE", @@ -339517,7 +339517,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", @@ -339546,7 +339546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "60.50", "lithology_to": "74.00", "lithology_raw_data": "DENSE SAND & CLAY", @@ -339575,7 +339575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, - "well_tag_number": 112528, + "well": 112528, "lithology_from": "70.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -339604,7 +339604,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "25.00", "lithology_to": "59.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -339633,7 +339633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "36.00", "lithology_to": "50.00", "lithology_raw_data": "sand with gravel", @@ -339662,7 +339662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "BEDROCK, FRACTURED", @@ -339691,7 +339691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "20.00", "lithology_to": "100.00", "lithology_raw_data": "SAND, CLAY LAYERS", @@ -339720,7 +339720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "154.00", "lithology_to": "174.00", "lithology_raw_data": null, @@ -339749,7 +339749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "357.00", "lithology_to": "367.00", "lithology_raw_data": "SS brownish grey, very hard", @@ -339778,7 +339778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, - "well_tag_number": 112892, + "well": 112892, "lithology_from": "161.00", "lithology_to": "168.00", "lithology_raw_data": "DARK GREY", @@ -339807,7 +339807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "BROWN & GREY, M.W.", @@ -339836,7 +339836,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "180.00", "lithology_to": "292.00", "lithology_raw_data": "VOLCANIC WITH FEW WHITE TRACES", @@ -339865,7 +339865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, - "well_tag_number": 113039, + "well": 113039, "lithology_from": "35.00", "lithology_to": "56.00", "lithology_raw_data": "gravel", @@ -339894,7 +339894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "325.00", "lithology_to": "345.00", "lithology_raw_data": "GREY/WHITE, VOLCANIC WITH FEW WITE TRACES", @@ -339923,7 +339923,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:43:05Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "286.00", "lithology_to": "295.00", "lithology_raw_data": "SAND, GRAVEL", @@ -339952,7 +339952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, - "well_tag_number": 112483, + "well": 112483, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY, MOIST SAND", @@ -339981,7 +339981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, - "well_tag_number": 112520, + "well": 112520, "lithology_from": "21.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -340010,7 +340010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "156.00", "lithology_to": "170.00", "lithology_raw_data": "CLAY", @@ -340039,7 +340039,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, - "well_tag_number": 113143, + "well": 113143, "lithology_from": "279.00", "lithology_to": "323.00", "lithology_raw_data": null, @@ -340068,7 +340068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -340097,7 +340097,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, - "well_tag_number": 112634, + "well": 112634, "lithology_from": "2.00", "lithology_to": "27.00", "lithology_raw_data": "boulders gravel", @@ -340126,7 +340126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, - "well_tag_number": 112282, + "well": 112282, "lithology_from": "55.00", "lithology_to": "67.00", "lithology_raw_data": "BROWN CLAY", @@ -340155,7 +340155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T19:32:44Z", "activity_submission": null, - "well_tag_number": 112617, + "well": 112617, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "sand gravel", @@ -340184,7 +340184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, - "well_tag_number": 112893, + "well": 112893, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "CLAY & SILT", @@ -340213,7 +340213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, - "well_tag_number": 112540, + "well": 112540, "lithology_from": "34.00", "lithology_to": "67.00", "lithology_raw_data": "CLAY, SAND WITH CLAY/SILT", @@ -340242,7 +340242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "113.00", "lithology_to": "139.00", "lithology_raw_data": "sand layers, very silty", @@ -340271,7 +340271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, - "well_tag_number": 112286, + "well": 112286, "lithology_from": "37.00", "lithology_to": "182.00", "lithology_raw_data": "GRANIT, BEDROCK", @@ -340300,7 +340300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "150.00", "lithology_to": "156.00", "lithology_raw_data": "GREY BROWN SANDS AND GRAVEL BLACK WATER ", @@ -340329,7 +340329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "23.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -340358,7 +340358,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, - "well_tag_number": 112238, + "well": 112238, "lithology_from": "66.00", "lithology_to": "213.00", "lithology_raw_data": "HARD TO MEDIUM SHALE", @@ -340387,7 +340387,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:28:44Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "3.00", "lithology_to": "82.00", "lithology_raw_data": "light grey, sand with gravel", @@ -340416,7 +340416,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, - "well_tag_number": 112441, + "well": 112441, "lithology_from": "8.00", "lithology_to": "47.00", "lithology_raw_data": null, @@ -340445,7 +340445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, - "well_tag_number": 112599, + "well": 112599, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, SAND CONTENT", @@ -340474,7 +340474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, - "well_tag_number": 112299, + "well": 112299, "lithology_from": "129.00", "lithology_to": "133.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -340503,7 +340503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "gravel and wood debris", @@ -340532,7 +340532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": "23.00", "lithology_to": "27.00", "lithology_raw_data": "SILT, GRAVEL WITH CLAY", @@ -340561,7 +340561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "VOLCANIC LAYERS WITH SHALE", @@ -340590,7 +340590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, - "well_tag_number": 112644, + "well": 112644, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -340619,7 +340619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "9.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -340648,7 +340648,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -340677,7 +340677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "122.00", "lithology_to": "370.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL TRACES", @@ -340706,7 +340706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, - "well_tag_number": 112717, + "well": 112717, "lithology_from": "0.00", "lithology_to": "3.50", "lithology_raw_data": "TOPSOIL WITH SAND AND GRAVEL", @@ -340735,7 +340735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "180.00", "lithology_to": "183.00", "lithology_raw_data": "quartz seam", @@ -340764,7 +340764,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "224.00", "lithology_to": "375.00", "lithology_raw_data": "GREY/WG VOLCANIC WITH OCCASIONAL WHITE AND GREEN TRACES", @@ -340793,7 +340793,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "45.00", "lithology_to": "69.00", "lithology_raw_data": "W.B. SILTY SAND", @@ -340822,7 +340822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "135.00", "lithology_to": "155.00", "lithology_raw_data": "BLACK & PK?", @@ -340851,7 +340851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, - "well_tag_number": 112950, + "well": 112950, "lithology_from": "17.00", "lithology_to": "70.00", "lithology_raw_data": "MEDIUM SAND/LARGE COBBLES, WELL SORTED", @@ -340880,7 +340880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, - "well_tag_number": 113125, + "well": 113125, "lithology_from": "1.00", "lithology_to": "9.00", "lithology_raw_data": "SOIL", @@ -340909,7 +340909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -340938,7 +340938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, - "well_tag_number": 112859, + "well": 112859, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silt", @@ -340967,7 +340967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, - "well_tag_number": 113199, + "well": 113199, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "Till, sandy clay", @@ -340996,7 +340996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, - "well_tag_number": 112312, + "well": 112312, "lithology_from": "38.00", "lithology_to": "78.00", "lithology_raw_data": "COARSE SAND & SOME GRAVEL", @@ -341025,7 +341025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "663.00", "lithology_to": "700.00", "lithology_raw_data": "SOFTER GRANITE BEDROCK (HARDER LAST 8')", @@ -341054,7 +341054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY-TILL", @@ -341083,7 +341083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "15.50", "lithology_to": "16.00", "lithology_raw_data": "BROWN/GREY/GREEN GRANITE", @@ -341112,7 +341112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "144.00", "lithology_to": "259.00", "lithology_raw_data": null, @@ -341141,7 +341141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "FINE-MED", @@ -341170,7 +341170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "43.00", "lithology_to": "45.00", "lithology_raw_data": "GREY AND BROWN SANDSTONE", @@ -341199,7 +341199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, - "well_tag_number": 112731, + "well": 112731, "lithology_from": "30.00", "lithology_to": "47.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -341228,7 +341228,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -341257,7 +341257,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "170.00", "lithology_to": "270.00", "lithology_raw_data": "SHALE, SANDSTONE LAYERED", @@ -341286,7 +341286,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "95.00", "lithology_to": "97.00", "lithology_raw_data": "SH BENTONITIC", @@ -341315,7 +341315,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "64.00", "lithology_to": "109.00", "lithology_raw_data": "WITH SILT LENSES", @@ -341344,7 +341344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "COMPRESSED GRAVEL/CLAY", @@ -341373,7 +341373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": "17.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -341402,7 +341402,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "39.99", "lithology_to": "50.00", "lithology_raw_data": "SM - SILTY SAND, COMPACT, FINE GRAINED, LAMINATED", @@ -341431,7 +341431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "140.00", "lithology_to": "157.00", "lithology_raw_data": "SANDSTONE", @@ -341460,7 +341460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "331.00", "lithology_to": "335.00", "lithology_raw_data": "SALT & PEPPER, GROWNISH GREY", @@ -341489,7 +341489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, - "well_tag_number": 112584, + "well": 112584, "lithology_from": "24.00", "lithology_to": "35.00", "lithology_raw_data": "SANDSTONE", @@ -341518,7 +341518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:21Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -341547,7 +341547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:26:22Z", "activity_submission": null, - "well_tag_number": 112787, + "well": 112787, "lithology_from": "2.00", "lithology_to": "34.90", "lithology_raw_data": null, @@ -341576,7 +341576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, - "well_tag_number": 112965, + "well": 112965, "lithology_from": "3.00", "lithology_to": "16.00", "lithology_raw_data": "SAND, GRAVEL, BOULDERS", @@ -341605,7 +341605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "HARD PACKED SANDY CLAY", @@ -341634,7 +341634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, - "well_tag_number": 112766, + "well": 112766, "lithology_from": "0.00", "lithology_to": "84.00", "lithology_raw_data": "SAND", @@ -341663,7 +341663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, - "well_tag_number": 112391, + "well": 112391, "lithology_from": "18.00", "lithology_to": "30.00", "lithology_raw_data": "CEMENTED SAND", @@ -341692,7 +341692,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": null, @@ -341721,7 +341721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "242.00", "lithology_to": "245.00", "lithology_raw_data": "BROWNISH, SALT & PEPPER", @@ -341750,7 +341750,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:34:51Z", "activity_submission": null, - "well_tag_number": 112306, + "well": 112306, "lithology_from": "332.00", "lithology_to": "340.00", "lithology_raw_data": "FRACTURED GRANITE", @@ -341779,7 +341779,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "12.00", "lithology_to": "35.00", "lithology_raw_data": "broken", @@ -341808,7 +341808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "190.00", "lithology_to": "195.00", "lithology_raw_data": "GREY BROWN, SHALE-SILTSTONE-SANDSTONE STRINGERS", @@ -341837,7 +341837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "30.00", "lithology_to": "41.00", "lithology_raw_data": null, @@ -341866,7 +341866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "17.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -341895,7 +341895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "18.00", "lithology_to": "90.00", "lithology_raw_data": "GREY/BROWN GRAVELS/SAND", @@ -341924,7 +341924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:12Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANICS", @@ -341953,7 +341953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "10.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -341982,7 +341982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, - "well_tag_number": 113288, + "well": 113288, "lithology_from": "49.00", "lithology_to": "87.00", "lithology_raw_data": "sand with gravel", @@ -342011,7 +342011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "143.00", "lithology_to": "153.00", "lithology_raw_data": "sandstone, shale", @@ -342040,7 +342040,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, - "well_tag_number": 112259, + "well": 112259, "lithology_from": "24.00", "lithology_to": "60.00", "lithology_raw_data": "LARGE COBBLES, MEDIUM SAND", @@ -342069,7 +342069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, - "well_tag_number": 112819, + "well": 112819, "lithology_from": "34.00", "lithology_to": "37.00", "lithology_raw_data": "sand with gravel", @@ -342098,7 +342098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "9.00", "lithology_to": "10.50", "lithology_raw_data": null, @@ -342127,7 +342127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:20Z", "activity_submission": null, - "well_tag_number": 112774, + "well": 112774, "lithology_from": "6.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -342156,7 +342156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "360.00", "lithology_to": "380.00", "lithology_raw_data": "BEDROCK", @@ -342185,7 +342185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "190.00", "lithology_to": "216.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", @@ -342214,7 +342214,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "150.00", "lithology_to": "153.00", "lithology_raw_data": "BEDROCK", @@ -342243,7 +342243,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:44:30Z", "activity_submission": null, - "well_tag_number": 113016, + "well": 113016, "lithology_from": "13.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -342272,7 +342272,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "33.00", "lithology_to": "70.00", "lithology_raw_data": "WITH SHALE LAYERS", @@ -342301,7 +342301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY, SILT", @@ -342330,7 +342330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "SANDSTONE / SILTSTONE", @@ -342359,7 +342359,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, - "well_tag_number": 112612, + "well": 112612, "lithology_from": "41.00", "lithology_to": "47.00", "lithology_raw_data": "conglomerate", @@ -342388,7 +342388,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:32:56Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "430.00", "lithology_to": "440.00", "lithology_raw_data": "SILT, ORGANIC MATERIAL, WOOD", @@ -342417,7 +342417,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, - "well_tag_number": 112297, + "well": 112297, "lithology_from": "17.00", "lithology_to": "30.00", "lithology_raw_data": "VOLCANIC", @@ -342446,7 +342446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "220.00", "lithology_to": "237.00", "lithology_raw_data": "SAND LAYERS WITH GRAVEL", @@ -342475,7 +342475,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, - "well_tag_number": 112829, + "well": 112829, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "clay & gravel", @@ -342504,7 +342504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, - "well_tag_number": 113142, + "well": 113142, "lithology_from": "71.00", "lithology_to": "78.00", "lithology_raw_data": "BROWN TILL", @@ -342533,7 +342533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "30.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -342562,7 +342562,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, - "well_tag_number": 112687, + "well": 112687, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY", @@ -342591,7 +342591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -342620,7 +342620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:07Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "STIFF CLAY WITH GRAVEL", @@ -342649,7 +342649,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:32:21Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "540.00", "lithology_to": "560.00", "lithology_raw_data": "CLAY/SILT", @@ -342678,7 +342678,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL AND SAND", @@ -342707,7 +342707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "60.00", "lithology_to": "76.00", "lithology_raw_data": "SOFT/MEDIUM; FINE SAND", @@ -342736,7 +342736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "32.00", "lithology_to": "58.00", "lithology_raw_data": "LOOSE GREY/BROWN GRAVEL, SAND & SILT", @@ -342765,7 +342765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "168.00", "lithology_to": "285.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -342794,7 +342794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "34.00", "lithology_to": "36.00", "lithology_raw_data": null, @@ -342823,7 +342823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "65.00", "lithology_to": "77.00", "lithology_raw_data": "SAND (FINE), SILT + GRAVEL/BOULDERS", @@ -342852,7 +342852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, - "well_tag_number": 112624, + "well": 112624, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "GRAVEL, SAND AND COBBLES", @@ -342881,7 +342881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, - "well_tag_number": 112684, + "well": 112684, "lithology_from": "0.00", "lithology_to": "37.00", "lithology_raw_data": "TILL", @@ -342910,7 +342910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "32.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -342939,7 +342939,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, - "well_tag_number": 113173, + "well": 113173, "lithology_from": "81.00", "lithology_to": "95.00", "lithology_raw_data": "gravel", @@ -342968,7 +342968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "25.00", "lithology_to": "31.00", "lithology_raw_data": "MEDIUM-SOFT, LIGHT GREY SHALE AND BENTONITIC", @@ -342997,7 +342997,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "159.00", "lithology_to": "200.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -343026,7 +343026,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:42:49Z", "activity_submission": null, - "well_tag_number": 113146, + "well": 113146, "lithology_from": "0.00", "lithology_to": "70.00", "lithology_raw_data": "BROWN SAND", @@ -343055,7 +343055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE SAND", @@ -343084,7 +343084,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "2.00", "lithology_to": "17.00", "lithology_raw_data": "and gravel", @@ -343113,7 +343113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, - "well_tag_number": 112835, + "well": 112835, "lithology_from": "3.00", "lithology_to": "19.00", "lithology_raw_data": "sandy", @@ -343142,7 +343142,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "227.00", "lithology_to": "231.00", "lithology_raw_data": "SHALE / CARBONATIOUS SHALE", @@ -343171,7 +343171,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "360.00", "lithology_to": "420.00", "lithology_raw_data": "VOLCANIC WITH FEW OCCASIONAL WHITE TRACES", @@ -343200,7 +343200,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "28.00", "lithology_to": "75.00", "lithology_raw_data": "compact gravel", @@ -343229,7 +343229,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-03T17:51:42Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "90.00", "lithology_to": "93.00", "lithology_raw_data": "FINE SAND WITH GRAVEL AND CLAY", @@ -343258,7 +343258,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "114.00", "lithology_to": "134.00", "lithology_raw_data": "TIGHT; HARD PACKED SILTY CLAY WITH SOME GRAVEL (VERY DENSE)", @@ -343287,7 +343287,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "14.00", "lithology_to": "28.00", "lithology_raw_data": "CEMENTED GRAY BLUE GRAVEL BOULDERS", @@ -343316,7 +343316,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -343345,7 +343345,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "45.00", "lithology_to": "175.00", "lithology_raw_data": "SHALE/SILTSTONE/BENTONIC SHALE LAYERS", @@ -343374,7 +343374,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "38.00", "lithology_to": "72.00", "lithology_raw_data": "clay and rocks", @@ -343403,7 +343403,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "101.00", "lithology_to": "102.00", "lithology_raw_data": null, @@ -343432,7 +343432,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, - "well_tag_number": 113092, + "well": 113092, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "medium fine", @@ -343461,7 +343461,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "52.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -343490,7 +343490,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:33:18Z", "activity_submission": null, - "well_tag_number": 107072, + "well": 107072, "lithology_from": "25.00", "lithology_to": "160.00", "lithology_raw_data": "HARDPAN (TILL)", @@ -343519,7 +343519,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, - "well_tag_number": 112288, + "well": 112288, "lithology_from": "36.00", "lithology_to": "182.00", "lithology_raw_data": "VOLCANIC", @@ -343548,7 +343548,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "54.00", "lithology_to": "74.00", "lithology_raw_data": "SAND, SILT, GRAVEL", @@ -343577,7 +343577,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "22.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -343606,7 +343606,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, - "well_tag_number": 112687, + "well": 112687, "lithology_from": "56.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", @@ -343635,7 +343635,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "166.00", "lithology_to": "204.00", "lithology_raw_data": null, @@ -343664,7 +343664,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "41.00", "lithology_to": "43.00", "lithology_raw_data": "SANDSTONE", @@ -343693,7 +343693,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, - "well_tag_number": 112479, + "well": 112479, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -343722,7 +343722,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, - "well_tag_number": 112594, + "well": 112594, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -343751,7 +343751,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "3.00", "lithology_to": "8.00", "lithology_raw_data": "CLAY, SAND, LARGE COBBLES", @@ -343780,7 +343780,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "262.00", "lithology_to": "273.00", "lithology_raw_data": null, @@ -343809,7 +343809,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:03:39Z", "activity_submission": null, - "well_tag_number": 113276, + "well": 113276, "lithology_from": "0.00", "lithology_to": "58.00", "lithology_raw_data": "till silt sand with gravel", @@ -343838,7 +343838,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -343867,7 +343867,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAVEL/BOULDERS", @@ -343896,7 +343896,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, - "well_tag_number": 112338, + "well": 112338, "lithology_from": "20.00", "lithology_to": "62.00", "lithology_raw_data": "GREY-BROWN, COARSE GRAVEL, COBBLES, SAND", @@ -343925,7 +343925,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "35.00", "lithology_to": "52.00", "lithology_raw_data": null, @@ -343954,7 +343954,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "186.00", "lithology_to": "195.00", "lithology_raw_data": null, @@ -343983,7 +343983,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, - "well_tag_number": 112409, + "well": 112409, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FINE SAND, SILT AND ROCK", @@ -344012,7 +344012,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "95.00", "lithology_to": "108.00", "lithology_raw_data": "SILTSTONE", @@ -344041,7 +344041,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:21:17Z", "activity_submission": null, - "well_tag_number": 113074, + "well": 113074, "lithology_from": "20.00", "lithology_to": "210.00", "lithology_raw_data": "BROWN CLAY AND ROCKS", @@ -344070,7 +344070,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, - "well_tag_number": 112599, + "well": 112599, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", @@ -344099,7 +344099,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, - "well_tag_number": 112441, + "well": 112441, "lithology_from": "294.00", "lithology_to": "305.00", "lithology_raw_data": null, @@ -344128,7 +344128,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "405.00", "lithology_to": "455.00", "lithology_raw_data": null, @@ -344157,7 +344157,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "379.80", "lithology_to": "1052.20", "lithology_raw_data": "SILTSTONE/MUDSTONE", @@ -344186,7 +344186,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "119.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC", @@ -344215,7 +344215,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, - "well_tag_number": 113264, + "well": 113264, "lithology_from": "61.00", "lithology_to": "79.00", "lithology_raw_data": "till", @@ -344244,7 +344244,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "34.00", "lithology_to": "77.00", "lithology_raw_data": "BROWN SILTY SANDS AND GRAVELS", @@ -344273,7 +344273,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, - "well_tag_number": 112631, + "well": 112631, "lithology_from": "105.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -344302,7 +344302,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, SAND, COBBLES, BOULDERS, GREY BROWN", @@ -344331,7 +344331,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "10.00", "lithology_to": "95.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -344360,7 +344360,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "118.00", "lithology_to": "122.00", "lithology_raw_data": "SILTY SAND", @@ -344389,7 +344389,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "322.00", "lithology_to": "330.00", "lithology_raw_data": "COARSE TO FINE CONGLOMERATE W/FINE", @@ -344418,7 +344418,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY AND GRAVEL WITH COBBLES", @@ -344447,7 +344447,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, - "well_tag_number": 112548, + "well": 112548, "lithology_from": "130.00", "lithology_to": "173.00", "lithology_raw_data": "COARSE SAND AND GRAVEL WITH TRACES OF CLAY", @@ -344476,7 +344476,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "44.00", "lithology_to": "48.00", "lithology_raw_data": "sand with gravel", @@ -344505,7 +344505,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "280.00", "lithology_to": "661.00", "lithology_raw_data": null, @@ -344534,7 +344534,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "55.00", "lithology_to": "102.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -344563,7 +344563,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:58:32Z", "activity_submission": null, - "well_tag_number": 112309, + "well": 112309, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "FRACTURED BEDROCK", @@ -344592,7 +344592,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "69.00", "lithology_to": "92.00", "lithology_raw_data": "FINE GREY SAND WITH CLAY BALLS, W.B.", @@ -344621,7 +344621,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, - "well_tag_number": 112536, + "well": 112536, "lithology_from": "60.00", "lithology_to": "75.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -344650,7 +344650,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -344679,7 +344679,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL", @@ -344708,7 +344708,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -344737,7 +344737,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, - "well_tag_number": 112871, + "well": 112871, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -344766,7 +344766,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "25.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY TILL", @@ -344795,7 +344795,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, - "well_tag_number": 112953, + "well": 112953, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -344824,7 +344824,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-26T19:39:27Z", "activity_submission": null, - "well_tag_number": 113202, + "well": 113202, "lithology_from": "30.00", "lithology_to": "45.00", "lithology_raw_data": "gravel", @@ -344853,7 +344853,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "106.00", "lithology_to": "108.00", "lithology_raw_data": "and gravel", @@ -344882,7 +344882,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "132.00", "lithology_to": "210.00", "lithology_raw_data": "PINK-WHITE-BLACK BEDROCK GRANITE", @@ -344911,7 +344911,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "32.00", "lithology_to": "34.00", "lithology_raw_data": "broken", @@ -344940,7 +344940,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "792.00", "lithology_to": "817.00", "lithology_raw_data": "GREY SHALE", @@ -344969,7 +344969,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, - "well_tag_number": 113181, + "well": 113181, "lithology_from": "115.00", "lithology_to": "155.00", "lithology_raw_data": "sand stone", @@ -344998,7 +344998,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "212.00", "lithology_to": "227.00", "lithology_raw_data": "SANDSTONE", @@ -345027,7 +345027,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:04Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "0.00", "lithology_to": "29.00", "lithology_raw_data": "SILT, SAND, CLAY, BROWN, FINE", @@ -345056,7 +345056,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, - "well_tag_number": 113039, + "well": 113039, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -345085,7 +345085,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "140.00", "lithology_to": "168.00", "lithology_raw_data": "SS SOFT MED GREEN GRY", @@ -345114,7 +345114,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, SAND, MINOR, CLAY", @@ -345143,7 +345143,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "53.00", "lithology_to": "67.00", "lithology_raw_data": "gravel and cobbles", @@ -345172,7 +345172,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, - "well_tag_number": 113115, + "well": 113115, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -345201,7 +345201,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, - "well_tag_number": 112760, + "well": 112760, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "DUSTY, SILTY SOIL", @@ -345230,7 +345230,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "178.00", "lithology_to": "200.00", "lithology_raw_data": "CONGLOMERATED GRAVEL", @@ -345259,7 +345259,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "FRACTURED", @@ -345288,7 +345288,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "240.00", "lithology_to": "300.00", "lithology_raw_data": "VERY SOFT AND FRACTURED SILTSTONE WITH SHALE LAYERS", @@ -345317,7 +345317,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, - "well_tag_number": 113303, + "well": 113303, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -345346,7 +345346,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "100.00", "lithology_to": "103.00", "lithology_raw_data": "CEMENTED GRAVEL", @@ -345375,7 +345375,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, - "well_tag_number": 112970, + "well": 112970, "lithology_from": "12.00", "lithology_to": "30.00", "lithology_raw_data": "GRAVEL, SAND & COBBLES", @@ -345404,7 +345404,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, - "well_tag_number": 112948, + "well": 112948, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "LARGE BOULDERS WITH MEDIUM GRAVEL", @@ -345433,7 +345433,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, - "well_tag_number": 112983, + "well": 112983, "lithology_from": "56.00", "lithology_to": "78.00", "lithology_raw_data": "very silty, compact gravel, clay layers", @@ -345462,7 +345462,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "82.00", "lithology_to": "85.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK", @@ -345491,7 +345491,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "143.00", "lithology_to": "150.00", "lithology_raw_data": "WEATHER, BEDROCK", @@ -345520,7 +345520,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, - "well_tag_number": 112220, + "well": 112220, "lithology_from": "230.00", "lithology_to": "240.00", "lithology_raw_data": "GREEN/BROWN/WHITE VOLCANIC WITH WHITE/BROWN SEDIMENT", @@ -345549,7 +345549,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "Medium Brown Gravel", @@ -345578,7 +345578,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, - "well_tag_number": 113199, + "well": 113199, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "Gravel, some clay", @@ -345607,7 +345607,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "95.00", "lithology_to": "150.00", "lithology_raw_data": null, @@ -345636,7 +345636,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "65.00", "lithology_to": "73.00", "lithology_raw_data": null, @@ -345665,7 +345665,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, - "well_tag_number": 113169, + "well": 113169, "lithology_from": "35.00", "lithology_to": "115.00", "lithology_raw_data": "sand, gravel boulders", @@ -345694,7 +345694,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, - "well_tag_number": 113173, + "well": 113173, "lithology_from": "70.00", "lithology_to": "81.00", "lithology_raw_data": "gravel", @@ -345723,7 +345723,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:40:08Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "232.00", "lithology_to": "250.00", "lithology_raw_data": null, @@ -345752,7 +345752,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "112.00", "lithology_to": "122.00", "lithology_raw_data": null, @@ -345781,7 +345781,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "SS SOFT MED FINE GRY", @@ -345810,7 +345810,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "117.00", "lithology_to": "220.00", "lithology_raw_data": null, @@ -345839,7 +345839,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "159.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -345868,7 +345868,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, - "well_tag_number": 112966, + "well": 112966, "lithology_from": "10.00", "lithology_to": "16.00", "lithology_raw_data": "GRAVEL & BOULDERS", @@ -345897,7 +345897,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T21:03:43Z", "activity_submission": null, - "well_tag_number": 112619, + "well": 112619, "lithology_from": "145.00", "lithology_to": "210.00", "lithology_raw_data": "gravel", @@ -345926,7 +345926,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": "MEDIUM SAND", @@ -345955,7 +345955,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "135.00", "lithology_to": "205.00", "lithology_raw_data": "FINE GREY SILTY SANDS", @@ -345984,7 +345984,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "270.00", "lithology_to": "342.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -346013,7 +346013,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BLASTED ROCK FILL", @@ -346042,7 +346042,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "76.00", "lithology_to": "79.00", "lithology_raw_data": "CEMENT GRAVEL", @@ -346071,7 +346071,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, - "well_tag_number": 113087, + "well": 113087, "lithology_from": "140.00", "lithology_to": "178.00", "lithology_raw_data": "clay and rocks", @@ -346100,7 +346100,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, - "well_tag_number": 112655, + "well": 112655, "lithology_from": "67.00", "lithology_to": "71.00", "lithology_raw_data": "GRAVEL", @@ -346129,7 +346129,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "254.00", "lithology_to": "299.00", "lithology_raw_data": "FINE AND DIRTY BROWN SAND", @@ -346158,7 +346158,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "52.00", "lithology_to": "71.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -346187,7 +346187,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, - "well_tag_number": 112341, + "well": 112341, "lithology_from": "5.00", "lithology_to": "12.00", "lithology_raw_data": "GRAVELS & COBBLES", @@ -346216,7 +346216,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, - "well_tag_number": 112938, + "well": 112938, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -346245,7 +346245,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, - "well_tag_number": 112592, + "well": 112592, "lithology_from": "55.00", "lithology_to": "60.00", "lithology_raw_data": "FINE SAND, GRAVEL", @@ -346274,7 +346274,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "60.00", "lithology_to": "75.00", "lithology_raw_data": "CLAY", @@ -346303,7 +346303,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "27.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -346332,7 +346332,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "429.00", "lithology_to": "442.00", "lithology_raw_data": "fractured", @@ -346361,7 +346361,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-26T00:18:21Z", "activity_submission": null, - "well_tag_number": 112673, + "well": 112673, "lithology_from": "83.00", "lithology_to": "117.00", "lithology_raw_data": "MEDIUM AND COARSE SAND WITH SOME GRAVEL", @@ -346390,7 +346390,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY & BOULDERS", @@ -346419,7 +346419,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -346448,7 +346448,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "38.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -346477,7 +346477,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "62.00", "lithology_to": "135.00", "lithology_raw_data": "GREY SILTS AND SANDS, ODD GRAVEL", @@ -346506,7 +346506,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "540.00", "lithology_to": "640.00", "lithology_raw_data": null, @@ -346535,7 +346535,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, - "well_tag_number": 113185, + "well": 113185, "lithology_from": "63.00", "lithology_to": "119.00", "lithology_raw_data": "gravel", @@ -346564,7 +346564,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, - "well_tag_number": 112670, + "well": 112670, "lithology_from": "25.00", "lithology_to": "31.00", "lithology_raw_data": "FRACTURED BEDROCK", @@ -346593,7 +346593,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:31:50Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL", @@ -346622,7 +346622,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, - "well_tag_number": 113115, + "well": 113115, "lithology_from": "35.00", "lithology_to": "115.00", "lithology_raw_data": null, @@ -346651,7 +346651,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, - "well_tag_number": 112695, + "well": 112695, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TILL", @@ -346680,7 +346680,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, - "well_tag_number": 112673, + "well": 112673, "lithology_from": "27.00", "lithology_to": "68.00", "lithology_raw_data": "FINE AND SILTY BROWN SAND WITH TRACE OF GRAVEL", @@ -346709,7 +346709,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "197.00", "lithology_to": "214.00", "lithology_raw_data": "SHALE / SILTSTONE", @@ -346738,7 +346738,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "VOLCANIC WITH SMALL GREEN TRACES", @@ -346767,7 +346767,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, - "well_tag_number": 113066, + "well": 113066, "lithology_from": "121.00", "lithology_to": "123.00", "lithology_raw_data": "CLAY", @@ -346796,7 +346796,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, - "well_tag_number": 112624, + "well": 112624, "lithology_from": "70.00", "lithology_to": "205.00", "lithology_raw_data": "PINK GRANITE", @@ -346825,7 +346825,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "42.00", "lithology_to": "95.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -346854,7 +346854,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, - "well_tag_number": 113133, + "well": 113133, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -346883,7 +346883,7 @@ "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:08:51Z", "activity_submission": null, - "well_tag_number": 104533, + "well": 104533, "lithology_from": "40.00", "lithology_to": "140.00", "lithology_raw_data": "TILL", @@ -346912,7 +346912,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "237.00", "lithology_to": "239.00", "lithology_raw_data": "BROWNISH, SALT & PEPPER", @@ -346941,7 +346941,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL AND SAND & BOULDERS", @@ -346970,7 +346970,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY MOIST, WITH SILT", @@ -346999,7 +346999,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "3.00", "lithology_to": "68.00", "lithology_raw_data": "DRY SILT, SAND AND GRAVEL", @@ -347028,7 +347028,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "26.00", "lithology_to": "54.00", "lithology_raw_data": null, @@ -347057,7 +347057,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "117.00", "lithology_to": "123.00", "lithology_raw_data": "GRAVEL", @@ -347086,7 +347086,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "CLAY AND SILT", @@ -347115,7 +347115,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "251.00", "lithology_to": "254.00", "lithology_raw_data": "FINE SAND", @@ -347144,7 +347144,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, - "well_tag_number": 112246, + "well": 112246, "lithology_from": "66.00", "lithology_to": "80.50", "lithology_raw_data": "SANDSTONE", @@ -347173,7 +347173,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, - "well_tag_number": 112913, + "well": 112913, "lithology_from": "207.00", "lithology_to": "275.00", "lithology_raw_data": null, @@ -347202,7 +347202,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "TAN CLAY", @@ -347231,7 +347231,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, - "well_tag_number": 112620, + "well": 112620, "lithology_from": "12.00", "lithology_to": "250.00", "lithology_raw_data": null, @@ -347260,7 +347260,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:16:47Z", "activity_submission": null, - "well_tag_number": 113085, + "well": 113085, "lithology_from": "93.00", "lithology_to": "165.00", "lithology_raw_data": "BLACK BEDROCK", @@ -347289,7 +347289,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "115.00", "lithology_to": "123.00", "lithology_raw_data": "SLOPPY FINE GREY SAND WITH CLAY BALLS, W.B.", @@ -347318,7 +347318,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, - "well_tag_number": 112938, + "well": 112938, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "TRACE SAND", @@ -347347,7 +347347,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "108.00", "lithology_to": "112.00", "lithology_raw_data": null, @@ -347376,7 +347376,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T18:54:50Z", "activity_submission": null, - "well_tag_number": 112362, + "well": 112362, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "GREY/BROWN, GRAVELS AND COBBLES", @@ -347405,7 +347405,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:01:15Z", "activity_submission": null, - "well_tag_number": 112307, + "well": 112307, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TILL", @@ -347434,7 +347434,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; COARSE SAND GRAVEL; SAND LAYER", @@ -347463,7 +347463,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", @@ -347492,7 +347492,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", @@ -347521,7 +347521,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, - "well_tag_number": 113066, + "well": 113066, "lithology_from": "18.00", "lithology_to": "58.00", "lithology_raw_data": "SILT AND SAND", @@ -347550,7 +347550,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, - "well_tag_number": 112684, + "well": 112684, "lithology_from": "75.00", "lithology_to": "83.00", "lithology_raw_data": null, @@ -347579,7 +347579,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, - "well_tag_number": 112760, + "well": 112760, "lithology_from": "6.00", "lithology_to": "72.00", "lithology_raw_data": "CLEAN, DRY SAND WITH SOME GRAVEL", @@ -347608,7 +347608,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "71.00", "lithology_to": "230.00", "lithology_raw_data": null, @@ -347637,7 +347637,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, - "well_tag_number": 113188, + "well": 113188, "lithology_from": "27.00", "lithology_to": "34.00", "lithology_raw_data": "silt and sand", @@ -347666,7 +347666,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -347695,7 +347695,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "52.00", "lithology_to": "54.00", "lithology_raw_data": "SAND, ROCK AND CLAY", @@ -347724,7 +347724,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "103.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, SILT LAYERS", @@ -347753,7 +347753,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, - "well_tag_number": 113152, + "well": 113152, "lithology_from": "6.00", "lithology_to": "18.00", "lithology_raw_data": "Sand with clay", @@ -347782,7 +347782,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "141.00", "lithology_to": "167.00", "lithology_raw_data": "LAYERS OF SAND AND SILT", @@ -347811,7 +347811,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "93.00", "lithology_to": "100.00", "lithology_raw_data": "and gravels", @@ -347840,7 +347840,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "224.00", "lithology_to": "284.00", "lithology_raw_data": "GREY CLAY", @@ -347869,7 +347869,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:08Z", "activity_submission": null, - "well_tag_number": 112892, + "well": 112892, "lithology_from": "158.00", "lithology_to": "161.00", "lithology_raw_data": null, @@ -347898,7 +347898,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "143.00", "lithology_to": "185.00", "lithology_raw_data": "SHALE / SANDSTONE", @@ -347927,7 +347927,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "52.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -347956,7 +347956,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, - "well_tag_number": 112885, + "well": 112885, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "CLAY & ROCKS", @@ -347985,7 +347985,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "SS hard, S&P coarse - making water", @@ -348014,7 +348014,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, - "well_tag_number": 112559, + "well": 112559, "lithology_from": "27.00", "lithology_to": "43.00", "lithology_raw_data": "and boulders", @@ -348043,7 +348043,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "100.00", "lithology_to": "180.00", "lithology_raw_data": "FINE SAND, TRACES SILT", @@ -348072,7 +348072,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "215.00", "lithology_to": "230.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -348101,7 +348101,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:14:53Z", "activity_submission": null, - "well_tag_number": 112690, + "well": 112690, "lithology_from": "16.00", "lithology_to": "158.00", "lithology_raw_data": "BEDROCK", @@ -348130,7 +348130,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:59:16Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "300.00", "lithology_to": "440.00", "lithology_raw_data": "CLAY, SILT CONTENT", @@ -348159,7 +348159,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "264.00", "lithology_to": "290.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -348188,7 +348188,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "LIGHT BROWN/GREY SILTS, ODD STONE", @@ -348217,7 +348217,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "135.00", "lithology_to": "156.00", "lithology_raw_data": "till", @@ -348246,7 +348246,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "779.00", "lithology_to": "800.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -348275,7 +348275,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "65.00", "lithology_to": "76.00", "lithology_raw_data": null, @@ -348304,7 +348304,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "313.00", "lithology_to": "315.00", "lithology_raw_data": "CLAY", @@ -348333,7 +348333,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, - "well_tag_number": 113210, + "well": 113210, "lithology_from": "15.00", "lithology_to": "100.00", "lithology_raw_data": "SS", @@ -348362,7 +348362,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, - "well_tag_number": 112515, + "well": 112515, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -348391,7 +348391,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "223.00", "lithology_to": "260.00", "lithology_raw_data": null, @@ -348420,7 +348420,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "gravelly", @@ -348449,7 +348449,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "402.00", "lithology_to": "420.00", "lithology_raw_data": null, @@ -348478,7 +348478,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, - "well_tag_number": 112844, + "well": 112844, "lithology_from": "21.00", "lithology_to": "28.00", "lithology_raw_data": "GREY SAND AND GRAVEL, W.B. RUSTY", @@ -348507,7 +348507,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "108.00", "lithology_to": "114.00", "lithology_raw_data": null, @@ -348536,7 +348536,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, - "well_tag_number": 112286, + "well": 112286, "lithology_from": "7.00", "lithology_to": "19.00", "lithology_raw_data": "TILL, CLAY", @@ -348565,7 +348565,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "120.00", "lithology_to": "220.00", "lithology_raw_data": "GRAVEL", @@ -348594,7 +348594,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "98.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -348623,7 +348623,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T16:09:50Z", "activity_submission": null, - "well_tag_number": 112282, + "well": 112282, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", @@ -348652,7 +348652,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL COARSE COBBLE WITH SAND LENSES", @@ -348681,7 +348681,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "460.00", "lithology_to": "480.00", "lithology_raw_data": "Shale and sandstone", @@ -348710,7 +348710,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "171.00", "lithology_to": "174.00", "lithology_raw_data": null, @@ -348739,7 +348739,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "BOULDER", @@ -348768,7 +348768,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "570.00", "lithology_to": "625.00", "lithology_raw_data": "GREY/BLUE/GREEN VOLCANIC WITH FEW GREEN TRACES", @@ -348797,7 +348797,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "9.00", "lithology_to": "19.00", "lithology_raw_data": "TIGHT GRAVEL AND COBBLES WITH SOME SAND AND SOME SANDY CLAY", @@ -348826,7 +348826,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "SANDY CLAY AND GRAVEL", @@ -348855,7 +348855,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -348884,7 +348884,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND", @@ -348913,7 +348913,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY & SAND", @@ -348942,7 +348942,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, - "well_tag_number": 112593, + "well": 112593, "lithology_from": "80.00", "lithology_to": "131.00", "lithology_raw_data": "GRAVEL MEDIUM SAND, FINE TO MEDIUM", @@ -348971,7 +348971,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "335.00", "lithology_to": "385.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND CLAY", @@ -349000,7 +349000,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, - "well_tag_number": 112261, + "well": 112261, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "HARD PAN", @@ -349029,7 +349029,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "203.00", "lithology_to": "277.00", "lithology_raw_data": "GRANITE", @@ -349058,7 +349058,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "281.40", "lithology_to": "314.20", "lithology_raw_data": "SILTSTONE/MUDSTONE", @@ -349087,7 +349087,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, - "well_tag_number": 112441, + "well": 112441, "lithology_from": "292.00", "lithology_to": "294.00", "lithology_raw_data": null, @@ -349116,7 +349116,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, - "well_tag_number": 113027, + "well": 113027, "lithology_from": "18.00", "lithology_to": "42.00", "lithology_raw_data": "Brown Clay and Rocks", @@ -349145,7 +349145,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, - "well_tag_number": 112879, + "well": 112879, "lithology_from": "212.00", "lithology_to": "220.00", "lithology_raw_data": "GRAVEL", @@ -349174,7 +349174,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "2.00", "lithology_to": "16.00", "lithology_raw_data": "and some gravel", @@ -349203,7 +349203,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "0.00", "lithology_to": "142.00", "lithology_raw_data": "SAMPLE SUBMITTED TO MINE", @@ -349232,7 +349232,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY", @@ -349261,7 +349261,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "12.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -349290,7 +349290,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "108.00", "lithology_to": "127.00", "lithology_raw_data": "SHALE AND SS", @@ -349319,7 +349319,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", @@ -349348,7 +349348,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "365.00", "lithology_to": "388.00", "lithology_raw_data": "W.B. BROWN SANDS AND GRAVELS", @@ -349377,7 +349377,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "120.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", @@ -349406,7 +349406,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-06T23:13:41Z", "activity_submission": null, - "well_tag_number": 112720, + "well": 112720, "lithology_from": "185.00", "lithology_to": "221.00", "lithology_raw_data": null, @@ -349435,7 +349435,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, - "well_tag_number": 112293, + "well": 112293, "lithology_from": "200.00", "lithology_to": "402.00", "lithology_raw_data": "GREY/MIX", @@ -349464,7 +349464,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, MIXED GRAVEL", @@ -349493,7 +349493,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "66.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -349522,7 +349522,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "84.00", "lithology_to": "128.00", "lithology_raw_data": "SILT AND GRAVEL", @@ -349551,7 +349551,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, - "well_tag_number": 112714, + "well": 112714, "lithology_from": "31.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER BLACK COARSE SAND WITH GRAVEL", @@ -349580,7 +349580,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, - "well_tag_number": 112795, + "well": 112795, "lithology_from": "83.00", "lithology_to": "84.00", "lithology_raw_data": "GREY SOLID BEDROCK", @@ -349609,7 +349609,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, - "well_tag_number": 112689, + "well": 112689, "lithology_from": "0.00", "lithology_to": "21.00", "lithology_raw_data": "GRAVEL AND BOULDERS", @@ -349638,7 +349638,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "385.00", "lithology_to": "421.00", "lithology_raw_data": "shale interbedded", @@ -349667,7 +349667,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, - "well_tag_number": 112880, + "well": 112880, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL", @@ -349696,7 +349696,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "544.00", "lithology_to": "561.00", "lithology_raw_data": "dark grey/green", @@ -349725,7 +349725,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "300.00", "lithology_to": "444.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE COBBLE WITH SAND", @@ -349754,7 +349754,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, - "well_tag_number": 112301, + "well": 112301, "lithology_from": "12.00", "lithology_to": "44.00", "lithology_raw_data": "BEDROCK", @@ -349783,7 +349783,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, - "well_tag_number": 112315, + "well": 112315, "lithology_from": "102.00", "lithology_to": "260.00", "lithology_raw_data": "GRAVEL, SAND", @@ -349812,7 +349812,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, - "well_tag_number": 112608, + "well": 112608, "lithology_from": "100.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK", @@ -349841,7 +349841,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, - "well_tag_number": 112548, + "well": 112548, "lithology_from": "173.00", "lithology_to": "194.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -349870,7 +349870,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, - "well_tag_number": 112994, + "well": 112994, "lithology_from": "143.00", "lithology_to": "144.00", "lithology_raw_data": null, @@ -349899,7 +349899,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "55.00", "lithology_to": "198.00", "lithology_raw_data": "shale, siltstone layers", @@ -349928,7 +349928,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, - "well_tag_number": 113009, + "well": 113009, "lithology_from": "45.00", "lithology_to": "135.00", "lithology_raw_data": "clay and rocks", @@ -349957,7 +349957,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, - "well_tag_number": 112406, + "well": 112406, "lithology_from": "50.00", "lithology_to": "63.00", "lithology_raw_data": "FINE TO MEDIUM SAND & GRAVEL", @@ -349986,7 +349986,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "122.00", "lithology_to": "270.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -350015,7 +350015,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "237.00", "lithology_to": "241.00", "lithology_raw_data": "GREY-PINK BROKEN BEDROCK", @@ -350044,7 +350044,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": "10.00", "lithology_to": "21.00", "lithology_raw_data": "silt", @@ -350073,7 +350073,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "63.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -350102,7 +350102,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "CLAY, SILT", @@ -350131,7 +350131,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "90.00", "lithology_to": "99.00", "lithology_raw_data": "WITH SALT/PEPPER LAYERS", @@ -350160,7 +350160,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", @@ -350189,7 +350189,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, - "well_tag_number": 112220, + "well": 112220, "lithology_from": "175.00", "lithology_to": "230.00", "lithology_raw_data": "GREY/GREEN/WHITE MEDIUM VOLCANIC WITH GREEN AND OCCASIONAL WHITE ", @@ -350218,7 +350218,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, - "well_tag_number": 112898, + "well": 112898, "lithology_from": "75.00", "lithology_to": "83.00", "lithology_raw_data": "SAND & SILT", @@ -350247,7 +350247,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "FINE GREY SAND", @@ -350276,7 +350276,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:41Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "205.00", "lithology_to": "220.00", "lithology_raw_data": "MEDIUM/HARD, BEDROCK", @@ -350305,7 +350305,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "8.00", "lithology_to": "63.00", "lithology_raw_data": "grey/green volcatics", @@ -350334,7 +350334,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T19:52:22Z", "activity_submission": null, - "well_tag_number": 113186, + "well": 113186, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -350363,7 +350363,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "72.00", "lithology_to": "76.00", "lithology_raw_data": "and gravel", @@ -350392,7 +350392,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "GREY CLAY WITH SEA SHELLS", @@ -350421,7 +350421,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, - "well_tag_number": 112992, + "well": 112992, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -350450,7 +350450,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T19:35:24Z", "activity_submission": null, - "well_tag_number": 113090, + "well": 113090, "lithology_from": "7.00", "lithology_to": "16.00", "lithology_raw_data": "some sand", @@ -350479,7 +350479,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "80.00", "lithology_to": "82.00", "lithology_raw_data": "CLAY ROCKS", @@ -350508,7 +350508,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "33.00", "lithology_to": "148.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", @@ -350537,7 +350537,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, - "well_tag_number": 112918, + "well": 112918, "lithology_from": "35.00", "lithology_to": "155.00", "lithology_raw_data": null, @@ -350566,7 +350566,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, - "well_tag_number": 112616, + "well": 112616, "lithology_from": "76.00", "lithology_to": "92.00", "lithology_raw_data": "SILT WITH FINE SAND", @@ -350595,7 +350595,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "SOFT/MEDIUM; FINE, SILTY SAND", @@ -350624,7 +350624,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, - "well_tag_number": 112370, + "well": 112370, "lithology_from": "24.00", "lithology_to": "31.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -350653,7 +350653,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "140.00", "lithology_to": "179.00", "lithology_raw_data": "SHALE", @@ -350682,7 +350682,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:42:24Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "184.00", "lithology_to": "186.00", "lithology_raw_data": "CLAY", @@ -350711,7 +350711,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:37:19Z", "activity_submission": null, - "well_tag_number": 112935, + "well": 112935, "lithology_from": "12.00", "lithology_to": "195.00", "lithology_raw_data": null, @@ -350740,7 +350740,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, - "well_tag_number": 112786, + "well": 112786, "lithology_from": "6.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -350769,7 +350769,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:31:08Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "2.50", "lithology_to": "15.00", "lithology_raw_data": "light grey, silt, sand with clay/silt", @@ -350798,7 +350798,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "28.00", "lithology_to": "51.00", "lithology_raw_data": "VERY FINE AND SILTY SAND", @@ -350827,7 +350827,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "13.00", "lithology_to": "16.00", "lithology_raw_data": "CLAY", @@ -350856,7 +350856,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "55.00", "lithology_to": "61.00", "lithology_raw_data": "and gravels", @@ -350885,7 +350885,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "TILL", @@ -350914,7 +350914,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, - "well_tag_number": 113277, + "well": 113277, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -350943,7 +350943,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "6.00", "lithology_to": "77.00", "lithology_raw_data": "with black streaks", @@ -350972,7 +350972,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", @@ -351001,7 +351001,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:36:58Z", "activity_submission": null, - "well_tag_number": 112911, + "well": 112911, "lithology_from": "27.00", "lithology_to": "37.00", "lithology_raw_data": "SAND & GRAVEL, SOME SILT, TRACE COBBLE", @@ -351030,7 +351030,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "121.00", "lithology_to": "140.00", "lithology_raw_data": "CLAY & SILT", @@ -351059,7 +351059,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "270.00", "lithology_to": "320.00", "lithology_raw_data": "SANDSTONE", @@ -351088,7 +351088,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "54.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -351117,7 +351117,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "15.00", "lithology_to": "17.00", "lithology_raw_data": "BROWN/GREY CLAY WITH GRAVELS, COBBLE", @@ -351146,7 +351146,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "93.00", "lithology_to": "200.00", "lithology_raw_data": null, @@ -351175,7 +351175,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "CLAY & ROCKS", @@ -351204,7 +351204,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "SHALE, SANDSTONE LAYERS", @@ -351233,7 +351233,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "128.00", "lithology_to": "211.00", "lithology_raw_data": "BEDROCK", @@ -351262,7 +351262,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "399.00", "lithology_to": "409.00", "lithology_raw_data": "SANDY SILT", @@ -351291,7 +351291,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, - "well_tag_number": 112938, + "well": 112938, "lithology_from": "11.00", "lithology_to": "63.00", "lithology_raw_data": "MIXED SANDS, MIXED GRAVEL", @@ -351320,7 +351320,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "73.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -351349,7 +351349,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "72.00", "lithology_to": "75.00", "lithology_raw_data": "SS MED FINE", @@ -351378,7 +351378,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, - "well_tag_number": 112881, + "well": 112881, "lithology_from": "25.00", "lithology_to": "38.00", "lithology_raw_data": "some sand, reddish", @@ -351407,7 +351407,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:48:29Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "Sandstone hard coarse", @@ -351436,7 +351436,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "273.00", "lithology_to": "420.00", "lithology_raw_data": "MEDIUM-SOFT; GRANITE BEDROCK", @@ -351465,7 +351465,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:13:43Z", "activity_submission": null, - "well_tag_number": 112938, + "well": 112938, "lithology_from": "63.00", "lithology_to": "80.00", "lithology_raw_data": "FINE/MEDIUM SANDS", @@ -351494,7 +351494,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, - "well_tag_number": 112902, + "well": 112902, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "BOULDERS, COBBLE, SAND & GRAVEL", @@ -351523,7 +351523,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:11Z", "activity_submission": null, - "well_tag_number": 112410, + "well": 112410, "lithology_from": "32.00", "lithology_to": "457.00", "lithology_raw_data": "BEDROCK", @@ -351552,7 +351552,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": "42.00", "lithology_to": "100.00", "lithology_raw_data": "WHITE & GREY", @@ -351581,7 +351581,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, - "well_tag_number": 112246, + "well": 112246, "lithology_from": "14.00", "lithology_to": "66.00", "lithology_raw_data": "SANDSTONE", @@ -351610,7 +351610,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, - "well_tag_number": 112550, + "well": 112550, "lithology_from": "11.00", "lithology_to": "78.00", "lithology_raw_data": null, @@ -351639,7 +351639,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "PULL BACK", @@ -351668,7 +351668,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:59:55Z", "activity_submission": null, - "well_tag_number": 112790, + "well": 112790, "lithology_from": "0.00", "lithology_to": "3.25", "lithology_raw_data": null, @@ -351697,7 +351697,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, - "well_tag_number": 112316, + "well": 112316, "lithology_from": "167.00", "lithology_to": "175.00", "lithology_raw_data": "GRAVEL, MEDIUM SAND", @@ -351726,7 +351726,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:50Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "166.00", "lithology_to": "213.00", "lithology_raw_data": null, @@ -351755,7 +351755,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, - "well_tag_number": 112813, + "well": 112813, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -351784,7 +351784,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "140.00", "lithology_to": "170.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC", @@ -351813,7 +351813,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "39.00", "lithology_to": "56.00", "lithology_raw_data": "BROWN/GREY SAND", @@ -351842,7 +351842,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "136.00", "lithology_to": "160.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -351871,7 +351871,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, - "well_tag_number": 113028, + "well": 113028, "lithology_from": "182.00", "lithology_to": "195.00", "lithology_raw_data": "BROWN CLAY AND ROCKS", @@ -351900,7 +351900,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, - "well_tag_number": 112252, + "well": 112252, "lithology_from": "80.00", "lithology_to": "104.00", "lithology_raw_data": "GRAVELY CLAY", @@ -351929,7 +351929,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "323.00", "lithology_to": "330.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE / FINE-MEDIUM", @@ -351958,7 +351958,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "65.00", "lithology_to": "160.00", "lithology_raw_data": "WHITE/PINK, BEDROCK - PINK/WHITE GRANITE", @@ -351987,7 +351987,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, - "well_tag_number": 112273, + "well": 112273, "lithology_from": "36.00", "lithology_to": "38.00", "lithology_raw_data": "seam of water", @@ -352016,7 +352016,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "54.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM, SAND GRAVEL", @@ -352045,7 +352045,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "32.00", "lithology_to": "35.00", "lithology_raw_data": "SHALE AND CLAY", @@ -352074,7 +352074,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, - "well_tag_number": 113181, + "well": 113181, "lithology_from": "15.00", "lithology_to": "75.00", "lithology_raw_data": "sand gravel", @@ -352103,7 +352103,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "TILL, MINOR GRAVEL", @@ -352132,7 +352132,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, - "well_tag_number": 112394, + "well": 112394, "lithology_from": "96.00", "lithology_to": "397.00", "lithology_raw_data": "BEDROCK", @@ -352161,7 +352161,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, - "well_tag_number": 112722, + "well": 112722, "lithology_from": "7.00", "lithology_to": "13.00", "lithology_raw_data": "FINE SAND WITH GRAVEL", @@ -352190,7 +352190,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "43.00", "lithology_to": "63.00", "lithology_raw_data": "SAND WITH SOME GRAVEL", @@ -352219,7 +352219,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "75.00", "lithology_to": "113.00", "lithology_raw_data": "sand", @@ -352248,7 +352248,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, - "well_tag_number": 112547, + "well": 112547, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -352277,7 +352277,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "110.00", "lithology_to": "234.00", "lithology_raw_data": "VERY HARD PACKED GREY CLAY", @@ -352306,7 +352306,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "242.00", "lithology_to": "263.00", "lithology_raw_data": null, @@ -352335,7 +352335,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "17.00", "lithology_to": "65.00", "lithology_raw_data": "bedrock", @@ -352364,7 +352364,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, - "well_tag_number": 112738, + "well": 112738, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "SAND", @@ -352393,7 +352393,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "75.00", "lithology_to": "110.00", "lithology_raw_data": "GREY FINE SILTY SANDS", @@ -352422,7 +352422,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -352451,7 +352451,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, - "well_tag_number": 112220, + "well": 112220, "lithology_from": "520.00", "lithology_to": "570.00", "lithology_raw_data": "BROWN/GREY VOLCANIC", @@ -352480,7 +352480,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": "242.00", "lithology_to": "301.00", "lithology_raw_data": null, @@ -352509,7 +352509,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, - "well_tag_number": 112927, + "well": 112927, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "SAND & GRAVEL", @@ -352538,7 +352538,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "24.00", "lithology_to": "172.00", "lithology_raw_data": null, @@ -352567,7 +352567,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "42.00", "lithology_to": "43.00", "lithology_raw_data": null, @@ -352596,7 +352596,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, SHALE", @@ -352625,7 +352625,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "91.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -352654,7 +352654,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "94.00", "lithology_to": "99.00", "lithology_raw_data": "GRAVEL/TILL WITH FINES", @@ -352683,7 +352683,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:29:41Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "230.00", "lithology_to": "270.00", "lithology_raw_data": "clay with quartz bedrock", @@ -352712,7 +352712,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, - "well_tag_number": 113269, + "well": 113269, "lithology_from": "18.00", "lithology_to": "38.00", "lithology_raw_data": "CLAYS AND SOME GRAVEL SEAMS", @@ -352741,7 +352741,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, - "well_tag_number": 112722, + "well": 112722, "lithology_from": "4.00", "lithology_to": "7.00", "lithology_raw_data": "PEAT AND TOPSOIL", @@ -352770,7 +352770,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, - "well_tag_number": 112243, + "well": 112243, "lithology_from": "19.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY SHALE", @@ -352799,7 +352799,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "183.00", "lithology_to": "196.00", "lithology_raw_data": "SANDY BROWN CLAY", @@ -352828,7 +352828,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, - "well_tag_number": 112269, + "well": 112269, "lithology_from": "3.00", "lithology_to": "255.00", "lithology_raw_data": null, @@ -352857,7 +352857,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, - "well_tag_number": 112248, + "well": 112248, "lithology_from": "74.00", "lithology_to": "87.00", "lithology_raw_data": "SANDSTONE", @@ -352886,7 +352886,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILT WITH MINOR GRAVEL", @@ -352915,7 +352915,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:32:14Z", "activity_submission": null, - "well_tag_number": 107072, + "well": 107072, "lithology_from": "12.00", "lithology_to": "18.00", "lithology_raw_data": "DAMP TILL", @@ -352944,7 +352944,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "22.00", "lithology_to": "39.00", "lithology_raw_data": "sand with gravel", @@ -352973,7 +352973,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE COBBLE WITH SAND LENSES", @@ -353002,7 +353002,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:45:46Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "285.00", "lithology_to": "290.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK: SOFT FRACTURED ZONE", @@ -353031,7 +353031,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "60.00", "lithology_to": "63.00", "lithology_raw_data": "CLAY, GRAVEL MIXED", @@ -353060,7 +353060,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:22:00Z", "activity_submission": null, - "well_tag_number": 112679, + "well": 112679, "lithology_from": "35.00", "lithology_to": "142.00", "lithology_raw_data": "BEDROCK", @@ -353089,7 +353089,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, - "well_tag_number": 112351, + "well": 112351, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -353118,7 +353118,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "158.00", "lithology_to": "168.00", "lithology_raw_data": null, @@ -353147,7 +353147,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, - "well_tag_number": 112838, + "well": 112838, "lithology_from": "2.00", "lithology_to": "290.00", "lithology_raw_data": null, @@ -353176,7 +353176,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "254.00", "lithology_to": "266.00", "lithology_raw_data": null, @@ -353205,7 +353205,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, - "well_tag_number": 112509, + "well": 112509, "lithology_from": "86.00", "lithology_to": "87.00", "lithology_raw_data": "GRAY CLAY", @@ -353234,7 +353234,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "232.00", "lithology_to": "282.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -353263,7 +353263,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, - "well_tag_number": 112303, + "well": 112303, "lithology_from": "28.00", "lithology_to": "65.00", "lithology_raw_data": "BEDROCK", @@ -353292,7 +353292,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "210.00", "lithology_to": "219.00", "lithology_raw_data": "SHALE", @@ -353321,7 +353321,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "WITH HARD SILTSTONE LAYERS", @@ -353350,7 +353350,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "100.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -353379,7 +353379,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, - "well_tag_number": 113066, + "well": 113066, "lithology_from": "1.00", "lithology_to": "7.00", "lithology_raw_data": "CLAY", @@ -353408,7 +353408,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "412.00", "lithology_to": "417.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -353437,7 +353437,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -353466,7 +353466,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "395.00", "lithology_to": "400.00", "lithology_raw_data": null, @@ -353495,7 +353495,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, - "well_tag_number": 112982, + "well": 112982, "lithology_from": "60.00", "lithology_to": "65.00", "lithology_raw_data": "FINE GRAVEL, SAND", @@ -353524,7 +353524,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, - "well_tag_number": 112338, + "well": 112338, "lithology_from": "92.00", "lithology_to": "110.00", "lithology_raw_data": "COARSE GRAVEL, COBBLES", @@ -353553,7 +353553,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "456.00", "lithology_to": "468.00", "lithology_raw_data": null, @@ -353582,7 +353582,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "60.00", "lithology_to": "90.00", "lithology_raw_data": "SILTY CLAY", @@ -353611,7 +353611,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:10:02Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM; BEDROCK", @@ -353640,7 +353640,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": "LAVA ROCK", @@ -353669,7 +353669,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL, COARSE, MINOR SAND", @@ -353698,7 +353698,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -353727,7 +353727,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, - "well_tag_number": 112891, + "well": 112891, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": "SAND, GRAVEL & SILT", @@ -353756,7 +353756,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, - "well_tag_number": 113289, + "well": 113289, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -353785,7 +353785,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:04:38Z", "activity_submission": null, - "well_tag_number": 112920, + "well": 112920, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROKEN ROCK", @@ -353814,7 +353814,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "355.00", "lithology_to": "374.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -353843,7 +353843,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, - "well_tag_number": 112401, + "well": 112401, "lithology_from": "40.00", "lithology_to": "44.00", "lithology_raw_data": "MEDIUM COARSE GRAVEL", @@ -353872,7 +353872,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:43:18Z", "activity_submission": null, - "well_tag_number": 110749, + "well": 110749, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -353901,7 +353901,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "101.00", "lithology_to": "116.00", "lithology_raw_data": "with sand seams", @@ -353930,7 +353930,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:29:14Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY, MINOR GRAVEL, SILT", @@ -353959,7 +353959,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, - "well_tag_number": 112651, + "well": 112651, "lithology_from": "83.00", "lithology_to": "114.00", "lithology_raw_data": "SAND AND PEBBLES", @@ -353988,7 +353988,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "8.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -354017,7 +354017,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "60.00", "lithology_to": "68.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -354046,7 +354046,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, - "well_tag_number": 112236, + "well": 112236, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "?/RED (B/R) ORGANICS", @@ -354075,7 +354075,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:40:19Z", "activity_submission": null, - "well_tag_number": 112375, + "well": 112375, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sand with gravel", @@ -354104,7 +354104,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, - "well_tag_number": 112477, + "well": 112477, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "BEDROCK", @@ -354133,7 +354133,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "100.00", "lithology_to": "115.00", "lithology_raw_data": "WATER BEARING SHALE", @@ -354162,7 +354162,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, - "well_tag_number": 113247, + "well": 113247, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "very silty, some clay", @@ -354191,7 +354191,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "140.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM/HARD; SHALE WITH BLACK STREAKS", @@ -354220,7 +354220,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:30:45Z", "activity_submission": null, - "well_tag_number": 112934, + "well": 112934, "lithology_from": "15.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -354249,7 +354249,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, - "well_tag_number": 112357, + "well": 112357, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -354278,7 +354278,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, - "well_tag_number": 112866, + "well": 112866, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -354307,7 +354307,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "245.00", "lithology_to": "276.00", "lithology_raw_data": null, @@ -354336,7 +354336,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "150.00", "lithology_to": "155.00", "lithology_raw_data": "WEATHER, BEDROCK", @@ -354365,7 +354365,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND-GRAVEL", @@ -354394,7 +354394,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "133.00", "lithology_to": "165.00", "lithology_raw_data": null, @@ -354423,7 +354423,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "235.00", "lithology_to": "238.00", "lithology_raw_data": null, @@ -354452,7 +354452,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "55.00", "lithology_to": "61.00", "lithology_raw_data": "SHALE", @@ -354481,7 +354481,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "0.00", "lithology_to": "84.60", "lithology_raw_data": "SAND WITH SILTSTONE AND MUDSTONE", @@ -354510,7 +354510,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -354539,7 +354539,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, - "well_tag_number": 112272, + "well": 112272, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": null, @@ -354568,7 +354568,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, - "well_tag_number": 113219, + "well": 113219, "lithology_from": "0.00", "lithology_to": "82.00", "lithology_raw_data": null, @@ -354597,7 +354597,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, - "well_tag_number": 112862, + "well": 112862, "lithology_from": "114.00", "lithology_to": "117.00", "lithology_raw_data": "MEDIUM GRAVEL, COARSE TO FINE SAND WELL SORTED", @@ -354626,7 +354626,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "31.00", "lithology_to": "33.00", "lithology_raw_data": "COBBLES AND LARGE GRAVEL WITH MEDIUM SAND", @@ -354655,7 +354655,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:35:29Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "123.00", "lithology_to": "142.00", "lithology_raw_data": null, @@ -354684,7 +354684,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:41:53Z", "activity_submission": null, - "well_tag_number": 112917, + "well": 112917, "lithology_from": "10.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -354713,7 +354713,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, - "well_tag_number": 112320, + "well": 112320, "lithology_from": "81.00", "lithology_to": "164.00", "lithology_raw_data": "DARK GREY BEDROCK", @@ -354742,7 +354742,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "220.00", "lithology_to": "282.00", "lithology_raw_data": "dark grey", @@ -354771,7 +354771,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "55.00", "lithology_to": "138.00", "lithology_raw_data": "SILT WITH CLAY LENSES", @@ -354800,7 +354800,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SAND", @@ -354829,7 +354829,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL AND ROCKS", @@ -354858,7 +354858,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "70.00", "lithology_to": "89.00", "lithology_raw_data": "BEDROCK", @@ -354887,7 +354887,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "144.00", "lithology_to": "155.00", "lithology_raw_data": "CLAY AND SILT", @@ -354916,7 +354916,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "55.00", "lithology_to": "59.00", "lithology_raw_data": null, @@ -354945,7 +354945,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, - "well_tag_number": 112720, + "well": 112720, "lithology_from": "24.00", "lithology_to": "161.00", "lithology_raw_data": null, @@ -354974,7 +354974,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:32:34Z", "activity_submission": null, - "well_tag_number": 107072, + "well": 107072, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "STUMP", @@ -355003,7 +355003,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "22.00", "lithology_to": "33.00", "lithology_raw_data": "SHALE & SILTSTONE, YELLOW & BROWN", @@ -355032,7 +355032,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, - "well_tag_number": 113203, + "well": 113203, "lithology_from": "95.00", "lithology_to": "155.00", "lithology_raw_data": "gravel", @@ -355061,7 +355061,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "37.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, ROCKS", @@ -355090,7 +355090,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -355119,7 +355119,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, - "well_tag_number": 112417, + "well": 112417, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "CLAY", @@ -355148,7 +355148,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "431.00", "lithology_to": "520.00", "lithology_raw_data": "SILTSTONE (FINE TO COARSE)", @@ -355177,7 +355177,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, - "well_tag_number": 112836, + "well": 112836, "lithology_from": "0.00", "lithology_to": "42.00", "lithology_raw_data": "silty sand, cobbles", @@ -355206,7 +355206,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, - "well_tag_number": 112366, + "well": 112366, "lithology_from": "60.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/PINK, GRANITE BEDROCK", @@ -355235,7 +355235,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, - "well_tag_number": 112705, + "well": 112705, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC", @@ -355264,7 +355264,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, - "well_tag_number": 112819, + "well": 112819, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -355293,7 +355293,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "110.00", "lithology_to": "130.00", "lithology_raw_data": "BIT CLEANER WITH LESS CLAY, MOST SAND AND GRAVEL", @@ -355322,7 +355322,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "156.00", "lithology_to": "161.00", "lithology_raw_data": "and silts", @@ -355351,7 +355351,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, - "well_tag_number": 112305, + "well": 112305, "lithology_from": "92.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL", @@ -355380,7 +355380,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, - "well_tag_number": 112385, + "well": 112385, "lithology_from": "400.00", "lithology_to": "450.00", "lithology_raw_data": "NO CHANGE", @@ -355409,7 +355409,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "Medium Grey Sand & Clay", @@ -355438,7 +355438,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "482.00", "lithology_to": "503.00", "lithology_raw_data": null, @@ -355467,7 +355467,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, - "well_tag_number": 112896, + "well": 112896, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -355496,7 +355496,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, - "well_tag_number": 113066, + "well": 113066, "lithology_from": "58.00", "lithology_to": "121.00", "lithology_raw_data": "SAND AND GRAVEL, W.B.", @@ -355525,7 +355525,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "136.00", "lithology_to": "137.00", "lithology_raw_data": null, @@ -355554,7 +355554,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "380.00", "lithology_to": "400.00", "lithology_raw_data": "Shale", @@ -355583,7 +355583,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "485.00", "lithology_to": "495.00", "lithology_raw_data": null, @@ -355612,7 +355612,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "190.00", "lithology_to": "250.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREY, VOLCANIC SEAMS OR RED BURNT METAMORPHIC", @@ -355641,7 +355641,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "55.00", "lithology_to": "129.00", "lithology_raw_data": "till", @@ -355670,7 +355670,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "23.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -355699,7 +355699,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL AND CLAY", @@ -355728,7 +355728,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "7.00", "lithology_to": "14.00", "lithology_raw_data": "SOFT+, HARD; COBBLES, GRAVELS", @@ -355757,7 +355757,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, - "well_tag_number": 112930, + "well": 112930, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TILL GRAVEL", @@ -355786,7 +355786,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL, GRAY TILL", @@ -355815,7 +355815,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "300.00", "lithology_to": "531.50", "lithology_raw_data": "NO LITHOLOGIC DETAILS AVAILABLE", @@ -355844,7 +355844,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "FINE, SILTY SAND, SOME STONES", @@ -355873,7 +355873,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "48.00", "lithology_to": "52.00", "lithology_raw_data": "SANDY CLAY", @@ -355902,7 +355902,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "122.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE AND SANDSTONE", @@ -355931,7 +355931,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "45.00", "lithology_to": "52.00", "lithology_raw_data": "SILT & SAND", @@ -355960,7 +355960,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "268.00", "lithology_to": "275.00", "lithology_raw_data": "SILTY CLAY WITH BROWN SAND STRINGERS", @@ -355989,7 +355989,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, - "well_tag_number": 112285, + "well": 112285, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "VOLCANIC, SOME ASH", @@ -356018,7 +356018,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, - "well_tag_number": 112588, + "well": 112588, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "ORGANICS TO BROKEN BEDROCK", @@ -356047,7 +356047,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:51:38Z", "activity_submission": null, - "well_tag_number": 112911, + "well": 112911, "lithology_from": "47.00", "lithology_to": "70.00", "lithology_raw_data": "MEDIUM COARSE SAND, TRACES OF COARSE GRAVEL", @@ -356076,7 +356076,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "92.00", "lithology_to": "159.00", "lithology_raw_data": "WITH SAND LENSES", @@ -356105,7 +356105,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, - "well_tag_number": 112682, + "well": 112682, "lithology_from": "81.00", "lithology_to": "88.00", "lithology_raw_data": "GRAVEL, SOME CLAY", @@ -356134,7 +356134,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, - "well_tag_number": 112338, + "well": 112338, "lithology_from": "62.00", "lithology_to": "92.00", "lithology_raw_data": "COARSE GRAVEL", @@ -356163,7 +356163,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "PACKED SILT", @@ -356192,7 +356192,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "SAND, FINE-MEDIUM", @@ -356221,7 +356221,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "22.00", "lithology_to": "32.00", "lithology_raw_data": "COARSE SAND WITH SOME GRAVEL", @@ -356250,7 +356250,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "128.00", "lithology_to": "130.00", "lithology_raw_data": null, @@ -356279,7 +356279,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "LOOSE, DARK GRAY, FINE TO COARSE SAND AND GRAVEL", @@ -356308,7 +356308,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "70.00", "lithology_to": "72.00", "lithology_raw_data": null, @@ -356337,7 +356337,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "442.00", "lithology_to": "448.00", "lithology_raw_data": "SS fine", @@ -356366,7 +356366,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:44:29Z", "activity_submission": null, - "well_tag_number": 113146, + "well": 113146, "lithology_from": "518.00", "lithology_to": "530.00", "lithology_raw_data": "BLACK glaciated crushed gravel", @@ -356395,7 +356395,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "182.00", "lithology_to": "205.00", "lithology_raw_data": "SILT & SAND", @@ -356424,7 +356424,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, - "well_tag_number": 112839, + "well": 112839, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -356453,7 +356453,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, - "well_tag_number": 113173, + "well": 113173, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "gravel, clay", @@ -356482,7 +356482,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "266.00", "lithology_to": "272.00", "lithology_raw_data": null, @@ -356511,7 +356511,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "453.00", "lithology_to": "465.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -356540,7 +356540,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "206.00", "lithology_to": "208.00", "lithology_raw_data": "till", @@ -356569,7 +356569,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, - "well_tag_number": 112901, + "well": 112901, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": null, @@ -356598,7 +356598,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-20T16:41:01Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", @@ -356627,7 +356627,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY WITH GRAVEL", @@ -356656,7 +356656,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SAWDUST WITH SAND AND GRAVEL", @@ -356685,7 +356685,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, - "well_tag_number": 112902, + "well": 112902, "lithology_from": "77.00", "lithology_to": "92.00", "lithology_raw_data": "CLAY & SILT", @@ -356714,7 +356714,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "495.00", "lithology_to": "497.00", "lithology_raw_data": "FRACTURED BEDROCK", @@ -356743,7 +356743,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "70.00", "lithology_to": "74.00", "lithology_raw_data": "SHALE AND BENTONITIC", @@ -356772,7 +356772,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY", @@ -356801,7 +356801,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "60.00", "lithology_to": "60.50", "lithology_raw_data": "DAMP CLAY & ROCKS", @@ -356830,7 +356830,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, - "well_tag_number": 112953, + "well": 112953, "lithology_from": "39.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -356859,7 +356859,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "42.00", "lithology_to": "136.00", "lithology_raw_data": "SILT AND CLAY", @@ -356888,7 +356888,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-03T17:54:01Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "93.00", "lithology_to": "99.50", "lithology_raw_data": "MEDIUM LOOSE; SAND AND GRAVEL WITH FINE SAND LESS CLAY", @@ -356917,7 +356917,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, - "well_tag_number": 112628, + "well": 112628, "lithology_from": "135.00", "lithology_to": "142.00", "lithology_raw_data": "TILL", @@ -356946,7 +356946,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "890.00", "lithology_to": "1020.00", "lithology_raw_data": "heavily fractured", @@ -356975,7 +356975,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -357004,7 +357004,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "330.00", "lithology_to": "351.00", "lithology_raw_data": "SHALE", @@ -357033,7 +357033,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "31.00", "lithology_to": "52.00", "lithology_raw_data": "FINE AND SILTY SAND", @@ -357062,7 +357062,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -357091,7 +357091,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, - "well_tag_number": 113082, + "well": 113082, "lithology_from": "10.00", "lithology_to": "46.00", "lithology_raw_data": "clay, sand, gravel", @@ -357120,7 +357120,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, - "well_tag_number": 112228, + "well": 112228, "lithology_from": "1.00", "lithology_to": "60.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -357149,7 +357149,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "202.00", "lithology_to": "212.00", "lithology_raw_data": "SHALE / SANSTONE", @@ -357178,7 +357178,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, - "well_tag_number": 112152, + "well": 112152, "lithology_from": "49.00", "lithology_to": "58.00", "lithology_raw_data": "COBBLES, BOULDERS, SILT", @@ -357207,7 +357207,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "18.00", "lithology_to": "22.00", "lithology_raw_data": "and gravel", @@ -357236,7 +357236,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, - "well_tag_number": 113143, + "well": 113143, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -357265,7 +357265,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", @@ -357294,7 +357294,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "417.00", "lithology_to": "489.00", "lithology_raw_data": "VOLCANIC", @@ -357323,7 +357323,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, - "well_tag_number": 112723, + "well": 112723, "lithology_from": "5.00", "lithology_to": "14.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -357352,7 +357352,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "4.00", "lithology_to": "8.00", "lithology_raw_data": "and gravel", @@ -357381,7 +357381,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, - "well_tag_number": 112701, + "well": 112701, "lithology_from": "45.00", "lithology_to": "143.00", "lithology_raw_data": null, @@ -357410,7 +357410,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "167.00", "lithology_to": "169.00", "lithology_raw_data": "SAND-TILL", @@ -357439,7 +357439,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, - "well_tag_number": 112819, + "well": 112819, "lithology_from": "24.00", "lithology_to": "34.00", "lithology_raw_data": "sand with gravel", @@ -357468,7 +357468,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "409.00", "lithology_to": "411.00", "lithology_raw_data": "NO LITHOLOGY SPECIFIED", @@ -357497,7 +357497,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, - "well_tag_number": 112308, + "well": 112308, "lithology_from": "79.00", "lithology_to": "123.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", @@ -357526,7 +357526,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "SANDY SOILS WITH GRAVEL & 8 INCH COBBLES TO BROKEN BEDROCK", @@ -357555,7 +357555,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-10T18:17:13Z", "activity_submission": null, - "well_tag_number": 112766, + "well": 112766, "lithology_from": "248.00", "lithology_to": "1035.20", "lithology_raw_data": "SILTSTONE/MUDSTONE WITH SANDSTONE", @@ -357584,7 +357584,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "69.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -357613,7 +357613,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "SILTY CLAY", @@ -357642,7 +357642,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, - "well_tag_number": 113070, + "well": 113070, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "LARGE GRAVEL AND COBBLES", @@ -357671,7 +357671,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "190.00", "lithology_to": "192.00", "lithology_raw_data": "OTHER SURFICIAL / BEDROCK", @@ -357700,7 +357700,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "7.00", "lithology_to": "15.00", "lithology_raw_data": "FINE MEDIUM, SAND AND ROCKS", @@ -357729,7 +357729,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -357758,7 +357758,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "83.00", "lithology_to": "196.00", "lithology_raw_data": "CLAY", @@ -357787,7 +357787,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "16.00", "lithology_to": "18.00", "lithology_raw_data": "SMALL GRAVEL - MEDIUM SAND", @@ -357816,7 +357816,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "4.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -357845,7 +357845,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "SANDSTONE / SILTSTONE", @@ -357874,7 +357874,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM-HARD; BEDROCK", @@ -357903,7 +357903,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "122.00", "lithology_to": "143.00", "lithology_raw_data": "SILTY SAND AN SOME GRAVEL", @@ -357932,7 +357932,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "40.00", "lithology_to": "70.00", "lithology_raw_data": "BEDROCK", @@ -357961,7 +357961,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/SOFT; CLAY ANGULAR GRAVEL SEAMS", @@ -357990,7 +357990,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:32Z", "activity_submission": null, - "well_tag_number": 113305, + "well": 113305, "lithology_from": "10.00", "lithology_to": "82.00", "lithology_raw_data": null, @@ -358019,7 +358019,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "168.00", "lithology_to": "180.00", "lithology_raw_data": "FINE, SANDY SILT & SILT, SOME CLAY, TRACE SAND", @@ -358048,7 +358048,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "10.00", "lithology_to": "32.00", "lithology_raw_data": "SMALL ROCKS", @@ -358077,7 +358077,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:18:37Z", "activity_submission": null, - "well_tag_number": 112946, + "well": 112946, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -358106,7 +358106,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "485.00", "lithology_to": "590.00", "lithology_raw_data": "HARD BLUE VOLCANIC", @@ -358135,7 +358135,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, - "well_tag_number": 113180, + "well": 113180, "lithology_from": "35.00", "lithology_to": "95.00", "lithology_raw_data": "gravel", @@ -358164,7 +358164,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "broken rock", @@ -358193,7 +358193,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": "GREEN/BROWN GRAVEL ROCKS", @@ -358222,7 +358222,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "216.00", "lithology_to": "234.00", "lithology_raw_data": "W.B. COARSE SAND AND GRAVEL", @@ -358251,7 +358251,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "127.00", "lithology_to": "205.00", "lithology_raw_data": null, @@ -358280,7 +358280,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -358309,7 +358309,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "431.00", "lithology_to": "437.00", "lithology_raw_data": "FRIABLE", @@ -358338,7 +358338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "251.00", "lithology_to": "300.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -358367,7 +358367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, - "well_tag_number": 113174, + "well": 113174, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL AND GRAVEL", @@ -358396,7 +358396,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "442.00", "lithology_to": "453.00", "lithology_raw_data": "SANDSTONE FINE WITH SHALE & SILTSTONE LENSES", @@ -358425,7 +358425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, - "well_tag_number": 112608, + "well": 112608, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -358454,7 +358454,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "114.00", "lithology_to": "119.00", "lithology_raw_data": "BEDROCK, FLAKES OF MICA", @@ -358483,7 +358483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "453.00", "lithology_to": "477.00", "lithology_raw_data": "BROWN, MEDIUM SAND, WATER BEARING", @@ -358512,7 +358512,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "151.00", "lithology_to": "168.00", "lithology_raw_data": "till", @@ -358541,7 +358541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "185.00", "lithology_to": "190.00", "lithology_raw_data": "gravel", @@ -358570,7 +358570,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "37.00", "lithology_to": "38.00", "lithology_raw_data": "and gravel", @@ -358599,7 +358599,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "47.00", "lithology_to": "52.00", "lithology_raw_data": "cobbles", @@ -358628,7 +358628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "22.00", "lithology_to": "45.00", "lithology_raw_data": "HARD CLAY WITH SAND", @@ -358657,7 +358657,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "357.00", "lithology_to": "360.00", "lithology_raw_data": null, @@ -358686,7 +358686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "and gravel", @@ -358715,7 +358715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "sand with gravel", @@ -358744,7 +358744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "37.00", "lithology_to": "107.00", "lithology_raw_data": "VOLCANIC WITH FEW TRACES", @@ -358773,7 +358773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "195.00", "lithology_to": "218.00", "lithology_raw_data": null, @@ -358802,7 +358802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BOULDER AND GRAVEL", @@ -358831,7 +358831,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "154.00", "lithology_to": "156.00", "lithology_raw_data": "CLAY WITH SMALL SAND SEAMS", @@ -358860,7 +358860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, - "well_tag_number": 113285, + "well": 113285, "lithology_from": "75.00", "lithology_to": "92.00", "lithology_raw_data": "MEDIUM TO COARSE SAND WITH SMALL BOULDERS WATER", @@ -358889,7 +358889,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, - "well_tag_number": 113134, + "well": 113134, "lithology_from": "64.00", "lithology_to": "71.00", "lithology_raw_data": null, @@ -358918,7 +358918,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:46:55Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "48.00", "lithology_to": "63.00", "lithology_raw_data": "TIGHT; DRY CLAY AND GRAVEL TILL WITH COBBLES AND BOULDERS", @@ -358947,7 +358947,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, - "well_tag_number": 112551, + "well": 112551, "lithology_from": "230.00", "lithology_to": "235.00", "lithology_raw_data": null, @@ -358976,7 +358976,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "87.00", "lithology_to": "90.00", "lithology_raw_data": "MEDIUM GREY SAND", @@ -359005,7 +359005,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, - "well_tag_number": 113188, + "well": 113188, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "and boulders", @@ -359034,7 +359034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "37.00", "lithology_to": "112.00", "lithology_raw_data": "DRY SILT AND SAND", @@ -359063,7 +359063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -359092,7 +359092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "40.00", "lithology_to": null, "lithology_raw_data": null, @@ -359121,7 +359121,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -359150,7 +359150,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:45:50Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "29.00", "lithology_to": "48.00", "lithology_raw_data": "TIGHT; SANDY CLAY AND GRAVEL TILL WITH COBBLES", @@ -359179,7 +359179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -359208,7 +359208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "143.00", "lithology_to": "220.00", "lithology_raw_data": "grey/green, trace white", @@ -359237,7 +359237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", @@ -359266,7 +359266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "290.00", "lithology_to": "296.00", "lithology_raw_data": "GRAVELLY TILL", @@ -359295,7 +359295,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "272.00", "lithology_to": "350.00", "lithology_raw_data": null, @@ -359324,7 +359324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, - "well_tag_number": 112458, + "well": 112458, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "SILTY CLAY", @@ -359353,7 +359353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand, fine-med", @@ -359382,7 +359382,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:24:50Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "ANGULAR GRAVEL, CLAY", @@ -359411,7 +359411,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:42:35Z", "activity_submission": null, - "well_tag_number": 112635, + "well": 112635, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "organics /till", @@ -359440,7 +359440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "38.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -359469,7 +359469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "GREY/BROWN VOLCANIC", @@ -359498,7 +359498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "42.00", "lithology_to": "90.00", "lithology_raw_data": "VOLCANIC", @@ -359527,7 +359527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "8.00", "lithology_to": "19.00", "lithology_raw_data": "and gravel", @@ -359556,7 +359556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -359585,7 +359585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "5.00", "lithology_to": "15.00", "lithology_raw_data": "CLAY AND GRAVEL TILL", @@ -359614,7 +359614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "and gravel", @@ -359643,7 +359643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "187.00", "lithology_to": "205.00", "lithology_raw_data": "VERY DENSE CLAY WITH SOME GRAVEL", @@ -359672,7 +359672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "wood", @@ -359701,7 +359701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "8.00", "lithology_to": "17.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -359730,7 +359730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", @@ -359759,7 +359759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "209.00", "lithology_to": "211.00", "lithology_raw_data": "GREY CLAY", @@ -359788,7 +359788,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "69.00", "lithology_to": "73.00", "lithology_raw_data": "GREY CLAY", @@ -359817,7 +359817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": "sand, med coarse", @@ -359846,7 +359846,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, - "well_tag_number": 112329, + "well": 112329, "lithology_from": "360.00", "lithology_to": "400.00", "lithology_raw_data": "SAND AND ROCKS", @@ -359875,7 +359875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -359904,7 +359904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:51:07Z", "activity_submission": null, - "well_tag_number": 112892, + "well": 112892, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -359933,7 +359933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "18.00", "lithology_to": "44.00", "lithology_raw_data": "Hard clay", @@ -359962,7 +359962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, - "well_tag_number": 105508, + "well": 105508, "lithology_from": "64.00", "lithology_to": "96.00", "lithology_raw_data": "SAND FNE-MED", @@ -359991,7 +359991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "1120.00", "lithology_to": "1280.00", "lithology_raw_data": null, @@ -360020,7 +360020,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "51.00", "lithology_to": "94.00", "lithology_raw_data": "with gravel", @@ -360049,7 +360049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -360078,7 +360078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, - "well_tag_number": 113285, + "well": 113285, "lithology_from": "92.00", "lithology_to": "94.00", "lithology_raw_data": "BOULDERS NO WATER", @@ -360107,7 +360107,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "28.00", "lithology_to": "36.00", "lithology_raw_data": null, @@ -360136,7 +360136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "100.00", "lithology_to": "112.00", "lithology_raw_data": null, @@ -360165,7 +360165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY/TILL", @@ -360194,7 +360194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "596.00", "lithology_to": "698.00", "lithology_raw_data": "BLUE/WHITE", @@ -360223,7 +360223,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "18.00", "lithology_to": "26.00", "lithology_raw_data": "SANDY GRAVEL", @@ -360252,7 +360252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, - "well_tag_number": 112437, + "well": 112437, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "till", @@ -360281,7 +360281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -360310,7 +360310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "235.00", "lithology_to": "240.00", "lithology_raw_data": "FINE SAND WB", @@ -360339,7 +360339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "165.00", "lithology_to": "170.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", @@ -360368,7 +360368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "92.00", "lithology_to": "240.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -360397,7 +360397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "84.00", "lithology_to": "197.00", "lithology_raw_data": "GREEN/GREY VOLCANIC WITH A FEW TRACES", @@ -360426,7 +360426,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:00:48Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "16.00", "lithology_to": "24.00", "lithology_raw_data": "SAND AND GRAVEL, BROWN", @@ -360455,7 +360455,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, - "well_tag_number": 112285, + "well": 112285, "lithology_from": "55.00", "lithology_to": "75.00", "lithology_raw_data": "BASALT", @@ -360484,7 +360484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": "DRY SILT AND GRAVEL", @@ -360513,7 +360513,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "285.00", "lithology_to": "290.00", "lithology_raw_data": "GREY/WHITE SILTSTONE, FEW TRACES", @@ -360542,7 +360542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "875.00", "lithology_to": "877.00", "lithology_raw_data": "with yellow", @@ -360571,7 +360571,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "GREEN SHALE WITH QUARTZ", @@ -360600,7 +360600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "829.00", "lithology_to": "839.00", "lithology_raw_data": "harder formation", @@ -360629,7 +360629,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "560.00", "lithology_to": "600.00", "lithology_raw_data": "Shale", @@ -360658,7 +360658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "450.00", "lithology_to": "465.00", "lithology_raw_data": "FINE TO MEDIUM", @@ -360687,7 +360687,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, - "well_tag_number": 112532, + "well": 112532, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL, SANDY WITH PEBBLES", @@ -360716,7 +360716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, - "well_tag_number": 112571, + "well": 112571, "lithology_from": "7.00", "lithology_to": "55.00", "lithology_raw_data": "SHALE", @@ -360745,7 +360745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "100.00", "lithology_to": "152.00", "lithology_raw_data": "GRAVEL", @@ -360774,7 +360774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:07:24Z", "activity_submission": null, - "well_tag_number": 112925, + "well": 112925, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAVEL & CLAY", @@ -360803,7 +360803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "287.00", "lithology_to": "289.00", "lithology_raw_data": null, @@ -360832,7 +360832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": null, @@ -360861,7 +360861,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "235.00", "lithology_to": "236.00", "lithology_raw_data": "SHALE", @@ -360890,7 +360890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "770.00", "lithology_to": "792.00", "lithology_raw_data": "GREEN SHALE", @@ -360919,7 +360919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, - "well_tag_number": 113017, + "well": 113017, "lithology_from": "16.00", "lithology_to": "125.00", "lithology_raw_data": "shale, flakey", @@ -360948,7 +360948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "136.00", "lithology_to": "148.00", "lithology_raw_data": null, @@ -360977,7 +360977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, - "well_tag_number": 113205, + "well": 113205, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, cobbles", @@ -361006,7 +361006,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:13:18Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -361035,7 +361035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "110.00", "lithology_to": "119.00", "lithology_raw_data": "SAND & FINE GRAVEL", @@ -361064,7 +361064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "29.00", "lithology_to": "47.00", "lithology_raw_data": "and clay", @@ -361093,7 +361093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY", @@ -361122,7 +361122,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "SANDSTONE", @@ -361151,7 +361151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, - "well_tag_number": 112743, + "well": 112743, "lithology_from": "66.00", "lithology_to": "69.00", "lithology_raw_data": "SILT & ROCKS", @@ -361180,7 +361180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "190.00", "lithology_to": "206.00", "lithology_raw_data": null, @@ -361209,7 +361209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, - "well_tag_number": 112644, + "well": 112644, "lithology_from": "15.00", "lithology_to": "85.00", "lithology_raw_data": "granite", @@ -361238,7 +361238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "RED VOLCANIC", @@ -361267,7 +361267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "167.00", "lithology_to": "260.00", "lithology_raw_data": "Sand, fine grained, trace to some gravel, grey-brown, damp", @@ -361296,7 +361296,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": "BEDROCK (DIORITE)", @@ -361325,7 +361325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -361354,7 +361354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, - "well_tag_number": 112477, + "well": 112477, "lithology_from": "80.00", "lithology_to": "140.00", "lithology_raw_data": "BEDROCK", @@ -361383,7 +361383,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, - "well_tag_number": 112543, + "well": 112543, "lithology_from": "79.00", "lithology_to": "83.00", "lithology_raw_data": "COMPACT SILTY BROWN SAND", @@ -361412,7 +361412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "15.00", "lithology_to": "45.00", "lithology_raw_data": "sand", @@ -361441,7 +361441,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:26:45Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "320.00", "lithology_to": "420.00", "lithology_raw_data": "CLAY/SILT", @@ -361470,7 +361470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, - "well_tag_number": 112234, + "well": 112234, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "ORGANICS WITH LARGE COBBLES", @@ -361499,7 +361499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "53.00", "lithology_to": "81.00", "lithology_raw_data": "and gravel", @@ -361528,7 +361528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, - "well_tag_number": 112969, + "well": 112969, "lithology_from": "13.00", "lithology_to": "26.00", "lithology_raw_data": "SAND, GRAVEL, LARGE COBBLES", @@ -361557,7 +361557,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:41:53Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "182.00", "lithology_to": "184.00", "lithology_raw_data": "VOLCANIC PEBBLES/SILT/SAND", @@ -361586,7 +361586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "SAND WITH SILT LAYERS", @@ -361615,7 +361615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "SAND", @@ -361644,7 +361644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, - "well_tag_number": 112546, + "well": 112546, "lithology_from": "18.00", "lithology_to": "82.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLE AND CLAY", @@ -361673,7 +361673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "7.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND", @@ -361702,7 +361702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -361731,7 +361731,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/HARD; COARSE GRAVEL AND CLAY MINOR", @@ -361760,7 +361760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "1.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -361789,7 +361789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "10.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -361818,7 +361818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "W.B. SAND AND GRAVEL (GREEN WATER)", @@ -361847,7 +361847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, - "well_tag_number": 113026, + "well": 113026, "lithology_from": "272.00", "lithology_to": "380.00", "lithology_raw_data": "SANDSTONE MED GREY S&P", @@ -361876,7 +361876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "185.00", "lithology_to": "208.00", "lithology_raw_data": null, @@ -361905,7 +361905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-10T17:18:11Z", "activity_submission": null, - "well_tag_number": 112842, + "well": 112842, "lithology_from": "0.00", "lithology_to": "83.00", "lithology_raw_data": "blasted spoil", @@ -361934,7 +361934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOP SOIL", @@ -361963,7 +361963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "480.00", "lithology_to": "500.00", "lithology_raw_data": "Shale", @@ -361992,7 +361992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, - "well_tag_number": 112980, + "well": 112980, "lithology_from": "21.00", "lithology_to": null, "lithology_raw_data": "SAND WITH SOME SILT", @@ -362021,7 +362021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:14:25Z", "activity_submission": null, - "well_tag_number": 112363, + "well": 112363, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -362050,7 +362050,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "72.00", "lithology_to": "95.00", "lithology_raw_data": "till", @@ -362079,7 +362079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "68.00", "lithology_to": "112.00", "lithology_raw_data": "till", @@ -362108,7 +362108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, - "well_tag_number": 112840, + "well": 112840, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -362137,7 +362137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "410.00", "lithology_to": "460.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN, VOLCANIC", @@ -362166,7 +362166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "162.00", "lithology_to": "167.00", "lithology_raw_data": "LAVA ROCK", @@ -362195,7 +362195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "FINE SAND & GRAVEL, BROWN/GREY, TRACE OF CLAY", @@ -362224,7 +362224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "414.00", "lithology_to": "482.00", "lithology_raw_data": "grey", @@ -362253,7 +362253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "37.00", "lithology_to": "41.00", "lithology_raw_data": "and gravel", @@ -362282,7 +362282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "fine to medium", @@ -362311,7 +362311,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "2.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -362340,7 +362340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "CLAY", @@ -362369,7 +362369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "Sandstone", @@ -362398,7 +362398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, - "well_tag_number": 112676, + "well": 112676, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BRN SAND & GRAVELS", @@ -362427,7 +362427,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "10.00", "lithology_to": "55.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -362456,7 +362456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "40.00", "lithology_to": "43.00", "lithology_raw_data": "BASALT", @@ -362485,7 +362485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "GREY CLAY", @@ -362514,7 +362514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "47.00", "lithology_to": "69.00", "lithology_raw_data": "BASALT", @@ -362543,7 +362543,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:33:57Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "91.00", "lithology_to": "96.00", "lithology_raw_data": null, @@ -362572,7 +362572,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "437.00", "lithology_to": "525.00", "lithology_raw_data": "CLAY", @@ -362601,7 +362601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, - "well_tag_number": 112312, + "well": 112312, "lithology_from": "2.00", "lithology_to": "13.00", "lithology_raw_data": "TILL", @@ -362630,7 +362630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "38.00", "lithology_to": "75.00", "lithology_raw_data": "sand, till", @@ -362659,7 +362659,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "231.00", "lithology_to": "245.00", "lithology_raw_data": "SILT", @@ -362688,7 +362688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "FINE SAND", @@ -362717,7 +362717,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, - "well_tag_number": 113133, + "well": 113133, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -362746,7 +362746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "230.00", "lithology_to": "260.00", "lithology_raw_data": "ASH", @@ -362775,7 +362775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN SILTY CLAYS, WASTE ROCK", @@ -362804,7 +362804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "310.00", "lithology_to": "315.00", "lithology_raw_data": "FINE SAND, TRACE OF CLAY", @@ -362833,7 +362833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "71.00", "lithology_to": "76.00", "lithology_raw_data": "and gravel", @@ -362862,7 +362862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-26T21:23:57Z", "activity_submission": null, - "well_tag_number": 113073, + "well": 113073, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "GREY GRAVEL", @@ -362891,7 +362891,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:45:52Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "232.00", "lithology_to": "235.00", "lithology_raw_data": "CLAY CHUNKS/SILTY/MILKY WHITE CLAY SLURRY", @@ -362920,7 +362920,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, - "well_tag_number": 113300, + "well": 113300, "lithology_from": "128.00", "lithology_to": "132.00", "lithology_raw_data": null, @@ -362949,7 +362949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, - "well_tag_number": 112500, + "well": 112500, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", @@ -362978,7 +362978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "122.00", "lithology_to": "230.00", "lithology_raw_data": "CLAY WITH LAYERS OF TILL", @@ -363007,7 +363007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "194.00", "lithology_to": "208.00", "lithology_raw_data": "SILTY CLAY WITH SAND, GRAVEL", @@ -363036,7 +363036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "0.00", "lithology_to": "58.00", "lithology_raw_data": "SILT/SAND WITH GRAVEL", @@ -363065,7 +363065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": "65.00", "lithology_to": "165.00", "lithology_raw_data": null, @@ -363094,7 +363094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "15.00", "lithology_to": "28.00", "lithology_raw_data": "and gravel", @@ -363123,7 +363123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "15.49", "lithology_to": "29.99", "lithology_raw_data": "ML - SILT, THINLY BEDDED WITH CLAY, FIRM", @@ -363152,7 +363152,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, - "well_tag_number": 112899, + "well": 112899, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", @@ -363181,7 +363181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -363210,7 +363210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "11.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -363239,7 +363239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", @@ -363268,7 +363268,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:53:58Z", "activity_submission": null, - "well_tag_number": 112912, + "well": 112912, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "COARSE GRAVEL & COARSE SAND", @@ -363297,7 +363297,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "0.00", "lithology_to": "69.00", "lithology_raw_data": "BROWN-GREY, FINE SAND/GRAVEL LAYERS", @@ -363326,7 +363326,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "415.00", "lithology_to": "450.00", "lithology_raw_data": "DENSE/STIFF; CLAY, CONGLOMERATE", @@ -363355,7 +363355,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, - "well_tag_number": 112706, + "well": 112706, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY", @@ -363384,7 +363384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "76.00", "lithology_to": "596.00", "lithology_raw_data": "ORANGE/BLUE", @@ -363413,7 +363413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, - "well_tag_number": 112356, + "well": 112356, "lithology_from": "0.00", "lithology_to": "42.00", "lithology_raw_data": "silt/till/clay", @@ -363442,7 +363442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, - "well_tag_number": 112238, + "well": 112238, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "CLAY", @@ -363471,7 +363471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "391.00", "lithology_to": "425.00", "lithology_raw_data": "MEDIUM SHALE", @@ -363500,7 +363500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, - "well_tag_number": 112898, + "well": 112898, "lithology_from": "83.00", "lithology_to": "136.00", "lithology_raw_data": "COARSE GRAVEL, SAND & SILT", @@ -363529,7 +363529,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, - "well_tag_number": 113066, + "well": 113066, "lithology_from": "7.00", "lithology_to": "18.00", "lithology_raw_data": "DRY GRAVEL", @@ -363558,7 +363558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "16.00", "lithology_to": "75.00", "lithology_raw_data": "till", @@ -363587,7 +363587,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:36:09Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "275.00", "lithology_to": "410.00", "lithology_raw_data": "Black grey sticky shale soft", @@ -363616,7 +363616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, - "well_tag_number": 113243, + "well": 113243, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "very silty, compact", @@ -363645,7 +363645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, - "well_tag_number": 112753, + "well": 112753, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "DIRT AND BROWN CLAY", @@ -363674,7 +363674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "17.00", "lithology_to": "32.00", "lithology_raw_data": "cobbley", @@ -363703,7 +363703,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, - "well_tag_number": 113092, + "well": 113092, "lithology_from": "17.00", "lithology_to": "48.00", "lithology_raw_data": "sandy", @@ -363732,7 +363732,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "gravel and wood debris", @@ -363761,7 +363761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, - "well_tag_number": 112565, + "well": 112565, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "LAYERS BASALT & CEMENTED GRAVEL", @@ -363790,7 +363790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "40.00", "lithology_to": "52.00", "lithology_raw_data": "GLACIAL TILL", @@ -363819,7 +363819,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, - "well_tag_number": 112462, + "well": 112462, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "gravel with wood debris", @@ -363848,7 +363848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "148.00", "lithology_to": "152.00", "lithology_raw_data": "SAND COARSE", @@ -363877,7 +363877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "123.00", "lithology_to": "175.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -363906,7 +363906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/SOFT, CLAY/GRAVEL", @@ -363935,7 +363935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "45.00", "lithology_to": "90.00", "lithology_raw_data": "sand/till", @@ -363964,7 +363964,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "30.00", "lithology_to": "34.00", "lithology_raw_data": "GREY FINE SAND AND STONES", @@ -363993,7 +363993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -364022,7 +364022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "100.00", "lithology_to": "102.00", "lithology_raw_data": null, @@ -364051,7 +364051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "298.00", "lithology_to": "324.00", "lithology_raw_data": "gravel, cobbles", @@ -364080,7 +364080,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": null, @@ -364109,7 +364109,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "130.00", "lithology_to": "134.00", "lithology_raw_data": null, @@ -364138,7 +364138,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "12.00", "lithology_to": "40.00", "lithology_raw_data": "SHALE LAYERED BR GRY GEL W/ FINE SS LENSES", @@ -364167,7 +364167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "213.00", "lithology_to": "213.00", "lithology_raw_data": "FRACTURE", @@ -364196,7 +364196,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "22.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, FINE TO MEDIUM", @@ -364225,7 +364225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "115.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -364254,7 +364254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": "FINE AND MEDIUM SANDSTONE", @@ -364283,7 +364283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "151.00", "lithology_to": "185.00", "lithology_raw_data": "SILTY CLAY WITH SILT LAYERS", @@ -364312,7 +364312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "56.00", "lithology_to": "60.00", "lithology_raw_data": "gravel", @@ -364341,7 +364341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "144.00", "lithology_to": "156.00", "lithology_raw_data": "very fine sand, very silty zones", @@ -364370,7 +364370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "122.00", "lithology_to": "160.00", "lithology_raw_data": "Brown Sand with clay/silt", @@ -364399,7 +364399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, - "well_tag_number": 113304, + "well": 113304, "lithology_from": "45.00", "lithology_to": "69.00", "lithology_raw_data": "cobbles, clay", @@ -364428,7 +364428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "GREY SAND AND GRAVEL", @@ -364457,7 +364457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "158.00", "lithology_to": "162.00", "lithology_raw_data": "LAVA ROCK", @@ -364486,7 +364486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -364515,7 +364515,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, - "well_tag_number": 112988, + "well": 112988, "lithology_from": "25.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -364544,7 +364544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "32.00", "lithology_to": "37.00", "lithology_raw_data": "CLAY, SMALL SURFACE WATER", @@ -364573,7 +364573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, - "well_tag_number": 112698, + "well": 112698, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": "few stones", @@ -364602,7 +364602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, - "well_tag_number": 112773, + "well": 112773, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -364631,7 +364631,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-02T19:22:25Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "Shale and SS layered soft, fractured,dirty, making water - cased off", @@ -364660,7 +364660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, - "well_tag_number": 112344, + "well": 112344, "lithology_from": "0.00", "lithology_to": "59.00", "lithology_raw_data": "MEDIUM/HARD ORGANICS TO DENSE CLAY", @@ -364689,7 +364689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM-COARSE SAND", @@ -364718,7 +364718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "125.00", "lithology_to": "127.00", "lithology_raw_data": "and gravel", @@ -364747,7 +364747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "86.00", "lithology_to": "133.00", "lithology_raw_data": null, @@ -364776,7 +364776,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, - "well_tag_number": 113219, + "well": 113219, "lithology_from": "82.00", "lithology_to": "103.00", "lithology_raw_data": null, @@ -364805,7 +364805,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "152.00", "lithology_to": "245.00", "lithology_raw_data": "COARSE SILTY GRAVEL", @@ -364834,7 +364834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, - "well_tag_number": 112899, + "well": 112899, "lithology_from": "33.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -364863,7 +364863,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": "SAND", @@ -364892,7 +364892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "33.00", "lithology_to": "50.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLE", @@ -364921,7 +364921,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:54:10Z", "activity_submission": null, - "well_tag_number": 112228, + "well": 112228, "lithology_from": "60.00", "lithology_to": "63.00", "lithology_raw_data": "GREEN/WHITE FRACTURED BROKEN AREA WITH WHITE FELDSPAR", @@ -364950,7 +364950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "130.00", "lithology_to": "156.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -364979,7 +364979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "116.00", "lithology_to": "124.00", "lithology_raw_data": "silt seams - trace of gravel", @@ -365008,7 +365008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -365037,7 +365037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "373.00", "lithology_to": "390.00", "lithology_raw_data": "TILL", @@ -365066,7 +365066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "159.00", "lithology_to": "170.00", "lithology_raw_data": "GREY CLAY", @@ -365095,7 +365095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, CLAY, SILT", @@ -365124,7 +365124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, - "well_tag_number": 113021, + "well": 113021, "lithology_from": "144.00", "lithology_to": "174.00", "lithology_raw_data": null, @@ -365153,7 +365153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "8.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -365182,7 +365182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "25.00", "lithology_to": "33.00", "lithology_raw_data": "SAND & GRAVEL", @@ -365211,7 +365211,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "18.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -365240,7 +365240,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "SANDY CLAY", @@ -365269,7 +365269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "310.00", "lithology_to": "315.00", "lithology_raw_data": "W.B. SAND", @@ -365298,7 +365298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "410.00", "lithology_to": "422.00", "lithology_raw_data": "SANDSTONE FINE WITH MEDIUM FINE LAYERS FRIABLE", @@ -365327,7 +365327,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "291.00", "lithology_to": "292.00", "lithology_raw_data": "and sand", @@ -365356,7 +365356,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, - "well_tag_number": 112766, + "well": 112766, "lithology_from": "84.00", "lithology_to": "248.00", "lithology_raw_data": "SANDSTONE WITH SILTSTONE/MUDSTONE", @@ -365385,7 +365385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, - "well_tag_number": 112705, + "well": 112705, "lithology_from": "105.00", "lithology_to": "125.00", "lithology_raw_data": "BASALT", @@ -365414,7 +365414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", @@ -365443,7 +365443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, - "well_tag_number": 112373, + "well": 112373, "lithology_from": "309.00", "lithology_to": "347.00", "lithology_raw_data": null, @@ -365472,7 +365472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, - "well_tag_number": 113027, + "well": 113027, "lithology_from": "170.00", "lithology_to": "184.00", "lithology_raw_data": "Brown Clay and Rock", @@ -365501,7 +365501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "270.00", "lithology_to": "565.00", "lithology_raw_data": null, @@ -365530,7 +365530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -365559,7 +365559,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "19.96", "lithology_to": "73.00", "lithology_raw_data": null, @@ -365588,7 +365588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -365617,7 +365617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, - "well_tag_number": 112315, + "well": 112315, "lithology_from": "93.00", "lithology_to": "102.00", "lithology_raw_data": "SILT", @@ -365646,7 +365646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:25:26Z", "activity_submission": null, - "well_tag_number": 113148, + "well": 113148, "lithology_from": "0.00", "lithology_to": "204.00", "lithology_raw_data": null, @@ -365675,7 +365675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "411.00", "lithology_to": "453.00", "lithology_raw_data": "BROWN, PACKED FINE SAND, WATER BEARING", @@ -365704,7 +365704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "150.00", "lithology_to": "162.00", "lithology_raw_data": null, @@ -365733,7 +365733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, - "well_tag_number": 112867, + "well": 112867, "lithology_from": "0.00", "lithology_to": "10.50", "lithology_raw_data": null, @@ -365762,7 +365762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "200.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", @@ -365791,7 +365791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "140.00", "lithology_to": "196.00", "lithology_raw_data": "COMPETENT BEDROCK", @@ -365820,7 +365820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "58.00", "lithology_to": "59.00", "lithology_raw_data": "SAND WITH SOME GRAVEL", @@ -365849,7 +365849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", @@ -365878,7 +365878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, - "well_tag_number": 112287, + "well": 112287, "lithology_from": "7.00", "lithology_to": "17.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -365907,7 +365907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "400.00", "lithology_to": "500.00", "lithology_raw_data": "BEDROCK", @@ -365936,7 +365936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "206.00", "lithology_to": "243.00", "lithology_raw_data": "CRYSTALLINE", @@ -365965,7 +365965,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "253.00", "lithology_to": "255.00", "lithology_raw_data": null, @@ -365994,7 +365994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "7.00", "lithology_to": "25.00", "lithology_raw_data": "sand with gravel", @@ -366023,7 +366023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "29.00", "lithology_to": "37.00", "lithology_raw_data": "coarse gravel and boulders", @@ -366052,7 +366052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY/GRAVEL", @@ -366081,7 +366081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "233.00", "lithology_to": "260.00", "lithology_raw_data": "SAND, MEDIUM-COARSE", @@ -366110,7 +366110,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "FINE-MED", @@ -366139,7 +366139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "140.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/SOFT; SILT/CLAY", @@ -366168,7 +366168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, - "well_tag_number": 112844, + "well": 112844, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "BROWN, RUSTY SAND", @@ -366197,7 +366197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, - "well_tag_number": 112640, + "well": 112640, "lithology_from": "157.00", "lithology_to": "175.00", "lithology_raw_data": "sand with gravel", @@ -366226,7 +366226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "39.00", "lithology_to": "43.00", "lithology_raw_data": null, @@ -366255,7 +366255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "58.00", "lithology_to": "69.00", "lithology_raw_data": "CEMENTED SAND AND MEDIUM GRAVEL", @@ -366284,7 +366284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, - "well_tag_number": 113205, + "well": 113205, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "broken, bedrock", @@ -366313,7 +366313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, - "well_tag_number": 112822, + "well": 112822, "lithology_from": "3.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -366342,7 +366342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": "22.00", "lithology_to": "54.00", "lithology_raw_data": "conglomerate, broken ", @@ -366371,7 +366371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "18.00", "lithology_to": "63.00", "lithology_raw_data": "HARD GREY CLAY", @@ -366400,7 +366400,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, - "well_tag_number": 113116, + "well": 113116, "lithology_from": "60.00", "lithology_to": "90.00", "lithology_raw_data": "shale", @@ -366429,7 +366429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "76.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -366458,7 +366458,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, - "well_tag_number": 112542, + "well": 112542, "lithology_from": "35.00", "lithology_to": "195.00", "lithology_raw_data": "CLAY", @@ -366487,7 +366487,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, - "well_tag_number": 113289, + "well": 113289, "lithology_from": "19.00", "lithology_to": "47.00", "lithology_raw_data": null, @@ -366516,7 +366516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel", @@ -366545,7 +366545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "129.00", "lithology_to": "131.00", "lithology_raw_data": "and gravel", @@ -366574,7 +366574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, - "well_tag_number": 112689, + "well": 112689, "lithology_from": "21.00", "lithology_to": "50.00", "lithology_raw_data": "BEDROCK-BASALT", @@ -366603,7 +366603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "78.00", "lithology_to": "79.00", "lithology_raw_data": "BLACK/GREEN, VOLCANIC", @@ -366632,7 +366632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "sand, fine-med", @@ -366661,7 +366661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-26T21:23:57Z", "activity_submission": null, - "well_tag_number": 113073, + "well": 113073, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "BROWN GRAVEL", @@ -366690,7 +366690,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, - "well_tag_number": 112822, + "well": 112822, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -366719,7 +366719,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "136.00", "lithology_to": "175.00", "lithology_raw_data": null, @@ -366748,7 +366748,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "34.00", "lithology_to": "58.00", "lithology_raw_data": null, @@ -366777,7 +366777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "156.00", "lithology_to": "231.00", "lithology_raw_data": "very silty, till zones", @@ -366806,7 +366806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, - "well_tag_number": 112612, + "well": 112612, "lithology_from": "63.00", "lithology_to": "110.00", "lithology_raw_data": "conglomerate", @@ -366835,7 +366835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "14.00", "lithology_to": "28.00", "lithology_raw_data": "and gravel", @@ -366864,7 +366864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "15.00", "lithology_to": "23.00", "lithology_raw_data": "TILL", @@ -366893,7 +366893,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:23:55Z", "activity_submission": null, - "well_tag_number": 112933, + "well": 112933, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TOP SOIL, BROKEN ROCK", @@ -366922,7 +366922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, - "well_tag_number": 112584, + "well": 112584, "lithology_from": "35.00", "lithology_to": "42.00", "lithology_raw_data": "SHALE", @@ -366951,7 +366951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "415.00", "lithology_to": "425.00", "lithology_raw_data": null, @@ -366980,7 +366980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "123.00", "lithology_to": "127.00", "lithology_raw_data": null, @@ -367009,7 +367009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -367038,7 +367038,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "5.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY", @@ -367067,7 +367067,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "325.00", "lithology_to": null, "lithology_raw_data": "fine sand with silt", @@ -367096,7 +367096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "106.00", "lithology_to": "118.00", "lithology_raw_data": "sand, fine-med", @@ -367125,7 +367125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, MEDIUM, MINOR GRAVEL", @@ -367154,7 +367154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "71.00", "lithology_to": "80.00", "lithology_raw_data": "till like", @@ -367183,7 +367183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, - "well_tag_number": 112919, + "well": 112919, "lithology_from": "93.00", "lithology_to": "155.00", "lithology_raw_data": "LIGHT GREY", @@ -367212,7 +367212,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY-TILL", @@ -367241,7 +367241,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -367270,7 +367270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "10.00", "lithology_to": "69.00", "lithology_raw_data": "TIGHT; BOULDERS AND COBBLES WITH SAND AND GRAVEL", @@ -367299,7 +367299,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T07:53:50Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "GRAVELS, FILL", @@ -367328,7 +367328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, - "well_tag_number": 112627, + "well": 112627, "lithology_from": "2.00", "lithology_to": "135.00", "lithology_raw_data": "Gravel", @@ -367357,7 +367357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "76.00", "lithology_to": "78.00", "lithology_raw_data": "GRAY & WHITE CLAY & ROCK", @@ -367386,7 +367386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:29Z", "activity_submission": null, - "well_tag_number": 112674, + "well": 112674, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROWN SAND AND GRAVEL WITH COBBLES ", @@ -367415,7 +367415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK ", @@ -367444,7 +367444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "621.00", "lithology_to": "692.00", "lithology_raw_data": null, @@ -367473,7 +367473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "195.00", "lithology_to": "200.00", "lithology_raw_data": "FINER W.B. SANDS AND GRAVEL", @@ -367502,7 +367502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, - "well_tag_number": 112239, + "well": 112239, "lithology_from": "160.00", "lithology_to": "244.00", "lithology_raw_data": "CLAY", @@ -367531,7 +367531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "134.00", "lithology_to": "167.00", "lithology_raw_data": "with quartz seams", @@ -367560,7 +367560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, - "well_tag_number": 112880, + "well": 112880, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND & GRAVEL, BROWN & GREY", @@ -367589,7 +367589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, - "well_tag_number": 112152, + "well": 112152, "lithology_from": "58.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -367618,7 +367618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "SAND, SILT", @@ -367647,7 +367647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "96.00", "lithology_to": "110.00", "lithology_raw_data": "SLOPPY FINE GREY SAND WITH CLAY BALLS", @@ -367676,7 +367676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, - "well_tag_number": 112965, + "well": 112965, "lithology_from": "16.00", "lithology_to": "30.00", "lithology_raw_data": "SATURATED SAND & GRAVEL", @@ -367705,7 +367705,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T22:27:17Z", "activity_submission": null, - "well_tag_number": 112517, + "well": 112517, "lithology_from": "250.00", "lithology_to": "277.00", "lithology_raw_data": "bedrock, softer, few fractures", @@ -367734,7 +367734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "28.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -367763,7 +367763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, - "well_tag_number": 113286, + "well": 113286, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -367792,7 +367792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:31Z", "activity_submission": null, - "well_tag_number": 113307, + "well": 113307, "lithology_from": "11.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -367821,7 +367821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "125.00", "lithology_to": "170.00", "lithology_raw_data": "SHALE", @@ -367850,7 +367850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, - "well_tag_number": 112264, + "well": 112264, "lithology_from": "75.00", "lithology_to": "102.00", "lithology_raw_data": "MEDIUM GRAVEL WITH MEDIUM SAND", @@ -367879,7 +367879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, - "well_tag_number": 112866, + "well": 112866, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -367908,7 +367908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "334.00", "lithology_to": "337.00", "lithology_raw_data": "SANDSTONE", @@ -367937,7 +367937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "gravel", @@ -367966,7 +367966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, - "well_tag_number": 112873, + "well": 112873, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -367995,7 +367995,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, - "well_tag_number": 112866, + "well": 112866, "lithology_from": "47.00", "lithology_to": "52.00", "lithology_raw_data": "coarse sandy", @@ -368024,7 +368024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -368053,7 +368053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, - "well_tag_number": 112565, + "well": 112565, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, GRAVEL", @@ -368082,7 +368082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:32:50Z", "activity_submission": null, - "well_tag_number": 113282, + "well": 113282, "lithology_from": "321.00", "lithology_to": "638.00", "lithology_raw_data": null, @@ -368111,7 +368111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "4.00", "lithology_to": "125.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, SALT PEPPER GRANITE BEDROCK", @@ -368140,7 +368140,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "583.00", "lithology_to": "595.00", "lithology_raw_data": "FRIABLE", @@ -368169,7 +368169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, - "well_tag_number": 112559, + "well": 112559, "lithology_from": "43.00", "lithology_to": "102.00", "lithology_raw_data": "with quartz layers", @@ -368198,7 +368198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "137.00", "lithology_to": "175.00", "lithology_raw_data": "COOARSE GRAVEL, SOME SAND, WB", @@ -368227,7 +368227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "50.00", "lithology_to": "52.00", "lithology_raw_data": null, @@ -368256,7 +368256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, - "well_tag_number": 112940, + "well": 112940, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "COARSE GRAVEL, COBBLE, MIXED SANDS", @@ -368285,7 +368285,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "137.00", "lithology_to": "161.00", "lithology_raw_data": "SILTSTONE & SHALE", @@ -368314,7 +368314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:37Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -368343,7 +368343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "BROWN & GREY", @@ -368372,7 +368372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, - "well_tag_number": 113070, + "well": 113070, "lithology_from": "11.00", "lithology_to": "14.00", "lithology_raw_data": "LARGE GRAVEL, MEDIUM SAND", @@ -368401,7 +368401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, - "well_tag_number": 112288, + "well": 112288, "lithology_from": "30.00", "lithology_to": "36.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -368430,7 +368430,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "197.00", "lithology_to": "260.00", "lithology_raw_data": "Light grey sand, fine med, sand with gravel", @@ -368459,7 +368459,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "175.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM-HARD SHALE", @@ -368488,7 +368488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, - "well_tag_number": 113181, + "well": 113181, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, boulders", @@ -368517,7 +368517,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", @@ -368546,7 +368546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "237.00", "lithology_to": "318.00", "lithology_raw_data": null, @@ -368575,7 +368575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "471.00", "lithology_to": "475.00", "lithology_raw_data": "shale", @@ -368604,7 +368604,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, - "well_tag_number": 112600, + "well": 112600, "lithology_from": "195.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY AND GRAVEL ROUND ROCK", @@ -368633,7 +368633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "80.00", "lithology_to": "84.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -368662,7 +368662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -368691,7 +368691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "230.00", "lithology_to": "247.00", "lithology_raw_data": "SILTY SANDS", @@ -368720,7 +368720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, - "well_tag_number": 112631, + "well": 112631, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "sand clay silt", @@ -368749,7 +368749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "42.00", "lithology_to": "88.00", "lithology_raw_data": "BROWN GREY", @@ -368778,7 +368778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "415.00", "lithology_to": "680.00", "lithology_raw_data": "BLACK/GREY/WHITE VOLCANIC WITH OCCASIONAL TRACES", @@ -368807,7 +368807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, - "well_tag_number": 112299, + "well": 112299, "lithology_from": "0.00", "lithology_to": "92.00", "lithology_raw_data": "TILL", @@ -368836,7 +368836,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "SAND, MINOR GRAVEL", @@ -368865,7 +368865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, - "well_tag_number": 112238, + "well": 112238, "lithology_from": "64.00", "lithology_to": "66.00", "lithology_raw_data": "SANDSTONE", @@ -368894,7 +368894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, - "well_tag_number": 112547, + "well": 112547, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "SAND AND GRAVEL WITH TRACES OF CLAY", @@ -368923,7 +368923,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, - "well_tag_number": 112255, + "well": 112255, "lithology_from": "23.00", "lithology_to": "33.00", "lithology_raw_data": "MEDIUM SAND WITH ROUNDED PEBBLES", @@ -368952,7 +368952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "10.00", "lithology_to": "49.00", "lithology_raw_data": null, @@ -368981,7 +368981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "66.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -369010,7 +369010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, - "well_tag_number": 112357, + "well": 112357, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -369039,7 +369039,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "420.00", "lithology_to": "423.00", "lithology_raw_data": "shale", @@ -369068,7 +369068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "BEDROCK", @@ -369097,7 +369097,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "100.00", "lithology_to": "103.00", "lithology_raw_data": "GRAVEL", @@ -369126,7 +369126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, - "well_tag_number": 112591, + "well": 112591, "lithology_from": "180.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", @@ -369155,7 +369155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "94.00", "lithology_to": "133.00", "lithology_raw_data": "BROWN/GREY SAND AND GRAVEL, CEMENTED", @@ -369184,7 +369184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, - "well_tag_number": 112886, + "well": 112886, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -369213,7 +369213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "340.00", "lithology_to": "415.00", "lithology_raw_data": "sand, fine-med", @@ -369242,7 +369242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "FINE SAND, MINOR GRAVEL", @@ -369271,7 +369271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "36.00", "lithology_to": "77.00", "lithology_raw_data": "FINE 4 TO 5 SLOT SILT SAND BARK MULCH SLOWING GETTING FINER TURNING CLAY", @@ -369300,7 +369300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, - "well_tag_number": 112295, + "well": 112295, "lithology_from": "170.00", "lithology_to": "281.00", "lithology_raw_data": "BASALT, SOME VOLCANIC LAYERS", @@ -369329,7 +369329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "192.00", "lithology_to": "193.00", "lithology_raw_data": "clean", @@ -369358,7 +369358,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, - "well_tag_number": 112543, + "well": 112543, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SANDY SOIL", @@ -369387,7 +369387,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "35.00", "lithology_to": "46.00", "lithology_raw_data": "and coarse grained sand", @@ -369416,7 +369416,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "179.00", "lithology_to": "182.00", "lithology_raw_data": "DARK GREY CLAY", @@ -369445,7 +369445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "28.00", "lithology_to": "49.00", "lithology_raw_data": "CLAY WITH SILT LENSES", @@ -369474,7 +369474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "31.00", "lithology_to": "78.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -369503,7 +369503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "130.00", "lithology_to": "136.00", "lithology_raw_data": "BROWN/GREY VOLCANIC CAVING", @@ -369532,7 +369532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "535.00", "lithology_to": "574.00", "lithology_raw_data": "fractured", @@ -369561,7 +369561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:33:43Z", "activity_submission": null, - "well_tag_number": 112775, + "well": 112775, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -369590,7 +369590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", @@ -369619,7 +369619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, - "well_tag_number": 112391, + "well": 112391, "lithology_from": "116.00", "lithology_to": "258.00", "lithology_raw_data": "BEDROCK", @@ -369648,7 +369648,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, - "well_tag_number": 112297, + "well": 112297, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "VOLCANIC MIX", @@ -369677,7 +369677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:58:35Z", "activity_submission": null, - "well_tag_number": 112866, + "well": 112866, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "bolder", @@ -369706,7 +369706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": null, @@ -369735,7 +369735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "44.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -369764,7 +369764,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "198.00", "lithology_to": "211.00", "lithology_raw_data": "W.B. GREY SAND", @@ -369793,7 +369793,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "TILL", @@ -369822,7 +369822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, - "well_tag_number": 112298, + "well": 112298, "lithology_from": "110.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -369851,7 +369851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "74.00", "lithology_to": "86.00", "lithology_raw_data": "and gravels", @@ -369880,7 +369880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, - "well_tag_number": 112795, + "well": 112795, "lithology_from": "73.00", "lithology_to": "76.00", "lithology_raw_data": "GREY CLAY", @@ -369909,7 +369909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "100.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -369938,7 +369938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "380.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -369967,7 +369967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "4.00", "lithology_to": "7.00", "lithology_raw_data": "SANDY SOIL", @@ -369996,7 +369996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; BOULDERS, MEDIUM SAND", @@ -370025,7 +370025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "18.50", "lithology_to": "46.00", "lithology_raw_data": "shale", @@ -370054,7 +370054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "680.00", "lithology_to": "697.00", "lithology_raw_data": "BROWN/GREY/GREEN, VOLCANIC", @@ -370083,7 +370083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, - "well_tag_number": 112930, + "well": 112930, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "TILL GRAVEL", @@ -370112,7 +370112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "90.00", "lithology_to": "115.00", "lithology_raw_data": "DARK GREY CLAY TILL", @@ -370141,7 +370141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, - "well_tag_number": 112229, + "well": 112229, "lithology_from": "80.00", "lithology_to": "116.00", "lithology_raw_data": "SOFT/MEDIUM SEDIMENTARY SHALE BEDROCK", @@ -370170,7 +370170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "42.00", "lithology_to": "43.00", "lithology_raw_data": "LOOSER SAND AND GRAVEL", @@ -370199,7 +370199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "38.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -370228,7 +370228,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "168.00", "lithology_to": "175.00", "lithology_raw_data": "chunks", @@ -370257,7 +370257,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-10T18:19:20Z", "activity_submission": null, - "well_tag_number": 112766, + "well": 112766, "lithology_from": "1107.30", "lithology_to": "1494.40", "lithology_raw_data": "HARD TO VERY HARD; CONGLOMERATE SANDSTONE", @@ -370286,7 +370286,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, - "well_tag_number": 112901, + "well": 112901, "lithology_from": "23.00", "lithology_to": "183.00", "lithology_raw_data": "CLAY & SILT", @@ -370315,7 +370315,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "140.00", "lithology_to": "150.00", "lithology_raw_data": "SANDSTONE", @@ -370344,7 +370344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "61.00", "lithology_to": "68.00", "lithology_raw_data": "and gravels", @@ -370373,7 +370373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "150.00", "lithology_to": "159.00", "lithology_raw_data": "WEATHER ROCK, CLAY, GRAVEL", @@ -370402,7 +370402,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:29:38Z", "activity_submission": null, - "well_tag_number": 112788, + "well": 112788, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -370431,7 +370431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, - "well_tag_number": 112903, + "well": 112903, "lithology_from": "0.00", "lithology_to": "38.00", "lithology_raw_data": "BOULDERS, COBBLE, SAND & GRAVEL", @@ -370460,7 +370460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/SOFT; SAND MINOR GRAVEL", @@ -370489,7 +370489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, - "well_tag_number": 112926, + "well": 112926, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -370518,7 +370518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, - "well_tag_number": 112942, + "well": 112942, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -370547,7 +370547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "39.00", "lithology_to": "45.00", "lithology_raw_data": "SAND & GRAVEL", @@ -370576,7 +370576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "150.00", "lithology_to": "400.00", "lithology_raw_data": "green", @@ -370605,7 +370605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "180.00", "lithology_to": "220.00", "lithology_raw_data": "BASALT-BEDROCK", @@ -370634,7 +370634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "40.00", "lithology_to": "93.00", "lithology_raw_data": "MEDIUM/HARD; CLAY ROCKS", @@ -370663,7 +370663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "69.00", "lithology_to": "70.00", "lithology_raw_data": "FINE BR. SAND + GRAVEL", @@ -370692,7 +370692,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "97.00", "lithology_to": "117.00", "lithology_raw_data": "medium to coarse grained", @@ -370721,7 +370721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, TILL, SOFT, ROCK", @@ -370750,7 +370750,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "127.00", "lithology_to": "171.00", "lithology_raw_data": "silt", @@ -370779,7 +370779,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:22:03Z", "activity_submission": null, - "well_tag_number": 113074, + "well": 113074, "lithology_from": "330.00", "lithology_to": "350.00", "lithology_raw_data": "BROWN GRAVEL WITH SAND", @@ -370808,7 +370808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -370837,7 +370837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -370866,7 +370866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "600.00", "lithology_to": "650.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC - VERY FINE GRAINED", @@ -370895,7 +370895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:32:50Z", "activity_submission": null, - "well_tag_number": 113282, + "well": 113282, "lithology_from": "0.00", "lithology_to": "321.00", "lithology_raw_data": "sand", @@ -370924,7 +370924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T18:52:11Z", "activity_submission": null, - "well_tag_number": 112820, + "well": 112820, "lithology_from": "14.00", "lithology_to": "415.00", "lithology_raw_data": null, @@ -370953,7 +370953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "2.00", "lithology_to": "10.00", "lithology_raw_data": "TILL, SILSTONE, SHALE, BRWON/GREY, MEDIUM HARD", @@ -370982,7 +370982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "32.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -371011,7 +371011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, - "well_tag_number": 112328, + "well": 112328, "lithology_from": "144.00", "lithology_to": "149.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -371040,7 +371040,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "240.00", "lithology_to": "250.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -371069,7 +371069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "CLAY", @@ -371098,7 +371098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:11:13Z", "activity_submission": null, - "well_tag_number": 113018, + "well": 113018, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sand, rocks", @@ -371127,7 +371127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, - "well_tag_number": 112627, + "well": 112627, "lithology_from": "336.00", "lithology_to": null, "lithology_raw_data": "Clay", @@ -371156,7 +371156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, - "well_tag_number": 113003, + "well": 113003, "lithology_from": "120.00", "lithology_to": "195.00", "lithology_raw_data": "Brown Clay and Silty Sand", @@ -371185,7 +371185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "73.00", "lithology_to": "83.00", "lithology_raw_data": "SILTY SANDS/GRAVELS (DAMP)", @@ -371214,7 +371214,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T20:29:45Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL WITH GRAVEL", @@ -371243,7 +371243,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "273.00", "lithology_to": "341.00", "lithology_raw_data": "FINE TO MEDIUM FINE, FRIABLE", @@ -371272,7 +371272,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "320.00", "lithology_to": "340.00", "lithology_raw_data": "Sandstone", @@ -371301,7 +371301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "155.00", "lithology_to": "190.00", "lithology_raw_data": "BROWN SANDS AND SOME GRAVEL", @@ -371330,7 +371330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, - "well_tag_number": 112625, + "well": 112625, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "SANDY TILL", @@ -371359,7 +371359,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, - "well_tag_number": 112479, + "well": 112479, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -371388,7 +371388,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "180.00", "lithology_to": "186.00", "lithology_raw_data": "FINE, SANDY SILT", @@ -371417,7 +371417,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, - "well_tag_number": 113293, + "well": 113293, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "sand with gravel, clay/silt", @@ -371446,7 +371446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "325.00", "lithology_to": "515.00", "lithology_raw_data": "SEAMS OF VOLCANIC BEDROCK", @@ -371475,7 +371475,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "175.00", "lithology_to": "177.00", "lithology_raw_data": null, @@ -371504,7 +371504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "346.00", "lithology_to": "349.00", "lithology_raw_data": "SANDY MUDSTONE", @@ -371533,7 +371533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "3.00", "lithology_to": "21.00", "lithology_raw_data": "W.B. GRAVEL", @@ -371562,7 +371562,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -371591,7 +371591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "75.00", "lithology_to": "98.00", "lithology_raw_data": "SHALE", @@ -371620,7 +371620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, - "well_tag_number": 112362, + "well": 112362, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", @@ -371649,7 +371649,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "168.00", "lithology_to": "183.00", "lithology_raw_data": null, @@ -371678,7 +371678,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "108.00", "lithology_to": "402.00", "lithology_raw_data": "sand with clay/silt", @@ -371707,7 +371707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, - "well_tag_number": 112493, + "well": 112493, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "FINE, MEDIUM, SAND, ROCKS", @@ -371736,7 +371736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "17.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -371765,7 +371765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "145.00", "lithology_to": "167.00", "lithology_raw_data": "SHALE/FINE SANDSTONE/SILTSTONE", @@ -371794,7 +371794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, - "well_tag_number": 112317, + "well": 112317, "lithology_from": "120.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL, SAND", @@ -371823,7 +371823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "ORGANICS", @@ -371852,7 +371852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -371881,7 +371881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "193.00", "lithology_to": "251.00", "lithology_raw_data": "CLAY", @@ -371910,7 +371910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "400.00", "lithology_to": "525.00", "lithology_raw_data": "AMBER, FINE GRAINED FORMATION", @@ -371939,7 +371939,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "202.00", "lithology_to": "540.00", "lithology_raw_data": null, @@ -371968,7 +371968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT, SAND", @@ -371997,7 +371997,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, - "well_tag_number": 113299, + "well": 113299, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -372026,7 +372026,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", @@ -372055,7 +372055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, - "well_tag_number": 112907, + "well": 112907, "lithology_from": "15.00", "lithology_to": "36.00", "lithology_raw_data": "SAND, GRAVEL, ROCK FRAGMENTS", @@ -372084,7 +372084,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "60.00", "lithology_to": "69.00", "lithology_raw_data": "and sand", @@ -372113,7 +372113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:51Z", "activity_submission": null, - "well_tag_number": 112350, + "well": 112350, "lithology_from": "38.00", "lithology_to": "296.00", "lithology_raw_data": "bedrock", @@ -372142,7 +372142,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, - "well_tag_number": 112389, + "well": 112389, "lithology_from": "12.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, GRANITE BEDROCK", @@ -372171,7 +372171,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "53.00", "lithology_to": "71.00", "lithology_raw_data": "SAND, FINE-MED", @@ -372200,7 +372200,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "65.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -372229,7 +372229,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, - "well_tag_number": 112242, + "well": 112242, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "GRAVELY CLAY", @@ -372258,7 +372258,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "86.00", "lithology_to": "113.00", "lithology_raw_data": null, @@ -372287,7 +372287,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, - "well_tag_number": 112348, + "well": 112348, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": "gravel sand", @@ -372316,7 +372316,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, - "well_tag_number": 112702, + "well": 112702, "lithology_from": "31.00", "lithology_to": "35.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -372345,7 +372345,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "112.00", "lithology_to": "114.00", "lithology_raw_data": "SHALE", @@ -372374,7 +372374,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "116.00", "lithology_to": "127.00", "lithology_raw_data": null, @@ -372403,7 +372403,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, - "well_tag_number": 113028, + "well": 113028, "lithology_from": "122.00", "lithology_to": "182.00", "lithology_raw_data": "GREY CLAY AND ROCKS", @@ -372432,7 +372432,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "75.00", "lithology_to": "170.00", "lithology_raw_data": "FINE GRAINED SAND - SOME GRAVELS", @@ -372461,7 +372461,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "31.00", "lithology_to": "40.00", "lithology_raw_data": "SILT", @@ -372490,7 +372490,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "324.00", "lithology_to": "385.00", "lithology_raw_data": "medium", @@ -372519,7 +372519,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "FINE SAND, SOME SILT", @@ -372548,7 +372548,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "36.00", "lithology_to": "48.00", "lithology_raw_data": null, @@ -372577,7 +372577,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "COBBLES AND GRAVEL WITH BOULDERS", @@ -372606,7 +372606,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "BEDROCK", @@ -372635,7 +372635,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "26.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -372664,7 +372664,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -372693,7 +372693,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "172.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -372722,7 +372722,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "230.00", "lithology_to": "283.00", "lithology_raw_data": "Hard Grey Bedrock", @@ -372751,7 +372751,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -372780,7 +372780,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "53.00", "lithology_to": "91.00", "lithology_raw_data": null, @@ -372809,7 +372809,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "122.00", "lithology_to": "124.00", "lithology_raw_data": "SS DK GRY", @@ -372838,7 +372838,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, - "well_tag_number": 113150, + "well": 113150, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -372867,7 +372867,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "133.00", "lithology_to": "134.00", "lithology_raw_data": null, @@ -372896,7 +372896,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "30.00", "lithology_to": "42.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -372925,7 +372925,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": "24.00", "lithology_to": "405.00", "lithology_raw_data": null, @@ -372954,7 +372954,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -372983,7 +372983,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "15.00", "lithology_to": "21.00", "lithology_raw_data": "sand,fine med", @@ -373012,7 +373012,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, - "well_tag_number": 112898, + "well": 112898, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY & ROCKS", @@ -373041,7 +373041,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "44.00", "lithology_to": "60.00", "lithology_raw_data": "Soft clay", @@ -373070,7 +373070,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "76.00", "lithology_to": "93.00", "lithology_raw_data": null, @@ -373099,7 +373099,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "63.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -373128,7 +373128,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:00:31Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "SAND AND GRAVEL, GREY", @@ -373157,7 +373157,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, - "well_tag_number": 100127, + "well": 100127, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -373186,7 +373186,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "38.00", "lithology_to": "49.00", "lithology_raw_data": "and gravel", @@ -373215,7 +373215,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "205.00", "lithology_to": "280.00", "lithology_raw_data": null, @@ -373244,7 +373244,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, - "well_tag_number": 112299, + "well": 112299, "lithology_from": "117.00", "lithology_to": "129.00", "lithology_raw_data": "FINE SAND", @@ -373273,7 +373273,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "144.00", "lithology_to": "168.00", "lithology_raw_data": "DAMP GREY SAND", @@ -373302,7 +373302,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, - "well_tag_number": 113143, + "well": 113143, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -373331,7 +373331,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "82.00", "lithology_to": "84.00", "lithology_raw_data": "GREEN/GREY VOLCANIC", @@ -373360,7 +373360,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "207.00", "lithology_to": "220.00", "lithology_raw_data": "SHALE, SOFT", @@ -373389,7 +373389,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "295.00", "lithology_to": "305.00", "lithology_raw_data": "large fracture", @@ -373418,7 +373418,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "80.00", "lithology_to": "204.00", "lithology_raw_data": "volcanic", @@ -373447,7 +373447,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, - "well_tag_number": 112564, + "well": 112564, "lithology_from": "80.00", "lithology_to": "86.00", "lithology_raw_data": "CEMENT, GRAVEL, BOULDER", @@ -373476,7 +373476,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "137.00", "lithology_to": "158.00", "lithology_raw_data": null, @@ -373505,7 +373505,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "50.00", "lithology_to": "69.00", "lithology_raw_data": "till", @@ -373534,7 +373534,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "174.00", "lithology_to": "206.00", "lithology_raw_data": "medium fine", @@ -373563,7 +373563,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, - "well_tag_number": 112549, + "well": 112549, "lithology_from": "560.00", "lithology_to": "640.00", "lithology_raw_data": null, @@ -373592,7 +373592,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, - "well_tag_number": 112542, + "well": 112542, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY", @@ -373621,7 +373621,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -373650,7 +373650,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:07:36Z", "activity_submission": null, - "well_tag_number": 112931, + "well": 112931, "lithology_from": "37.00", "lithology_to": "175.00", "lithology_raw_data": "BEDROCK/SANDSTONE", @@ -373679,7 +373679,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "23.00", "lithology_to": "130.00", "lithology_raw_data": "GREY CLAY", @@ -373708,7 +373708,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-04T06:07:01Z", "activity_submission": null, - "well_tag_number": 112245, + "well": 112245, "lithology_from": "47.00", "lithology_to": "175.00", "lithology_raw_data": "SHALE", @@ -373737,7 +373737,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "116.00", "lithology_to": "120.00", "lithology_raw_data": "BLACK & RED", @@ -373766,7 +373766,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, - "well_tag_number": 112242, + "well": 112242, "lithology_from": "5.00", "lithology_to": "26.00", "lithology_raw_data": "SANDY CLAY", @@ -373795,7 +373795,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "ANGULAR, GRAVEL, CLAY", @@ -373824,7 +373824,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, - "well_tag_number": 113070, + "well": 113070, "lithology_from": "46.00", "lithology_to": "47.00", "lithology_raw_data": "SILT", @@ -373853,7 +373853,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, - "well_tag_number": 112532, + "well": 112532, "lithology_from": "35.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE AND SILTSTONE LAYERED", @@ -373882,7 +373882,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T17:59:32Z", "activity_submission": null, - "well_tag_number": 112766, + "well": 112766, "lithology_from": "1035.20", "lithology_to": "1107.30", "lithology_raw_data": "SANDSTONE WITH SILTSTONE AND MUDSTONE", @@ -373911,7 +373911,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, - "well_tag_number": 112697, + "well": 112697, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "BASALT", @@ -373940,7 +373940,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:36:56Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "410.00", "lithology_to": "430.00", "lithology_raw_data": "Hard fine salt & pepper sandstone", @@ -373969,7 +373969,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "26.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -373998,7 +373998,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BLASTED ROCK FILL", @@ -374027,7 +374027,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "95.00", "lithology_to": "149.00", "lithology_raw_data": "SILTY SAND", @@ -374056,7 +374056,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "167.00", "lithology_to": "353.00", "lithology_raw_data": "SHALE AND SILSTONE", @@ -374085,7 +374085,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", @@ -374114,7 +374114,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "50.00", "lithology_to": "52.00", "lithology_raw_data": null, @@ -374143,7 +374143,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "130.00", "lithology_to": "155.00", "lithology_raw_data": "SANDS, GRAVELS AND SILTS", @@ -374172,7 +374172,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "196.00", "lithology_to": "198.00", "lithology_raw_data": "WET VERY SILTY SAND", @@ -374201,7 +374201,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "131.00", "lithology_to": "152.00", "lithology_raw_data": null, @@ -374230,7 +374230,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "505.00", "lithology_to": "530.00", "lithology_raw_data": null, @@ -374259,7 +374259,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "68.00", "lithology_to": "92.00", "lithology_raw_data": "SILT, GRAVEL & ROCKS", @@ -374288,7 +374288,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T19:59:36Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -374317,7 +374317,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "190.00", "lithology_to": "222.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -374346,7 +374346,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -374375,7 +374375,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", @@ -374404,7 +374404,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, - "well_tag_number": 113302, + "well": 113302, "lithology_from": "5.00", "lithology_to": "11.00", "lithology_raw_data": "fine-medium", @@ -374433,7 +374433,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "172.00", "lithology_to": "188.00", "lithology_raw_data": "SHALE ROCK", @@ -374462,7 +374462,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "410.00", "lithology_to": "415.00", "lithology_raw_data": "BROWN/GREY/WHITE VOLCANIC WITH WHITE", @@ -374491,7 +374491,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "125.00", "lithology_to": "127.00", "lithology_raw_data": null, @@ -374520,7 +374520,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "36.00", "lithology_to": "58.00", "lithology_raw_data": "Brown fine to medium silty sand, some gravel, some silt balls", @@ -374549,7 +374549,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, - "well_tag_number": 113277, + "well": 113277, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "crystalline", @@ -374578,7 +374578,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "10.00", "lithology_to": "27.00", "lithology_raw_data": "CLAY", @@ -374607,7 +374607,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, - "well_tag_number": 113291, + "well": 113291, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "sand with clay/silt", @@ -374636,7 +374636,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND ROCK", @@ -374665,7 +374665,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "12.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -374694,7 +374694,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": "27.00", "lithology_to": "355.00", "lithology_raw_data": "bed rock, maybe lime stone", @@ -374723,7 +374723,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, - "well_tag_number": 112929, + "well": 112929, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "GRAVEL TILL", @@ -374752,7 +374752,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -374781,7 +374781,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "117.00", "lithology_to": "120.00", "lithology_raw_data": "DARK GREY", @@ -374810,7 +374810,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:04Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "29.00", "lithology_to": "62.00", "lithology_raw_data": "CLAY, GREY BROWN", @@ -374839,7 +374839,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "16.00", "lithology_to": "25.00", "lithology_raw_data": "MEDIUM-SOFT SHALE AND BENTONITIC LAYERS", @@ -374868,7 +374868,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "102.00", "lithology_to": "104.00", "lithology_raw_data": "FINE SAND HARD PACKED WITH GRAVEL", @@ -374897,7 +374897,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "50.00", "lithology_to": "75.00", "lithology_raw_data": "BROWN FINE SANDS (WET)", @@ -374926,7 +374926,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -374955,7 +374955,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "18.00", "lithology_to": "28.00", "lithology_raw_data": "gravel", @@ -374984,7 +374984,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "264.00", "lithology_to": "273.00", "lithology_raw_data": null, @@ -375013,7 +375013,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "52.00", "lithology_to": "68.00", "lithology_raw_data": "SILTY SAND WITH GRAVEL LENSES", @@ -375042,7 +375042,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, - "well_tag_number": 112651, + "well": 112651, "lithology_from": "185.00", "lithology_to": null, "lithology_raw_data": "SAND (NO WATER)", @@ -375071,7 +375071,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "Harder Shale", @@ -375100,7 +375100,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, - "well_tag_number": 112982, + "well": 112982, "lithology_from": "65.00", "lithology_to": "77.00", "lithology_raw_data": "MEDIUM SAND, SCATTERED GRAVEL", @@ -375129,7 +375129,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, - "well_tag_number": 112900, + "well": 112900, "lithology_from": "10.00", "lithology_to": "400.00", "lithology_raw_data": "GRANITE BEDROCK, WHITE/GREY", @@ -375158,7 +375158,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, - "well_tag_number": 113168, + "well": 113168, "lithology_from": "90.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -375187,7 +375187,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "80.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -375216,7 +375216,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, - "well_tag_number": 112636, + "well": 112636, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -375245,7 +375245,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "8.00", "lithology_to": "53.00", "lithology_raw_data": "gravel with black streaks", @@ -375274,7 +375274,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, - "well_tag_number": 112401, + "well": 112401, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "COARSE GRAVEL", @@ -375303,7 +375303,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "58.00", "lithology_to": "270.00", "lithology_raw_data": "shale", @@ -375332,7 +375332,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, - "well_tag_number": 112439, + "well": 112439, "lithology_from": "8.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -375361,7 +375361,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "78.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM TO COARSE SAND", @@ -375390,7 +375390,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "76.00", "lithology_to": "80.00", "lithology_raw_data": "and gravel", @@ -375419,7 +375419,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "170.00", "lithology_to": "190.00", "lithology_raw_data": "SAND AND GRAVEL, W.B.", @@ -375448,7 +375448,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "140.00", "lithology_to": "168.00", "lithology_raw_data": "SILT, TRACE CLAY, OCCASIONAL SAND", @@ -375477,7 +375477,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "150.00", "lithology_to": "295.00", "lithology_raw_data": "bedrock,soft zones at 220'", @@ -375506,7 +375506,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "gravel and organics", @@ -375535,7 +375535,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "391.00", "lithology_to": "399.00", "lithology_raw_data": "BROWN SAND AND GRAVEL, PACKED, WET", @@ -375564,7 +375564,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, - "well_tag_number": 112427, + "well": 112427, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY WITH GRAVEL", @@ -375593,7 +375593,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": "6.00", "lithology_to": "23.00", "lithology_raw_data": "CLAY & ROCKS", @@ -375622,7 +375622,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T22:35:14Z", "activity_submission": null, - "well_tag_number": 112516, + "well": 112516, "lithology_from": "17.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -375651,7 +375651,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, - "well_tag_number": 112919, + "well": 112919, "lithology_from": "89.00", "lithology_to": "93.00", "lithology_raw_data": "IRON STAINED BEDROCK", @@ -375680,7 +375680,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, - "well_tag_number": 113031, + "well": 113031, "lithology_from": "0.00", "lithology_to": "90.00", "lithology_raw_data": "SOFT BROWN FINE SAND", @@ -375709,7 +375709,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "102.00", "lithology_to": "118.00", "lithology_raw_data": null, @@ -375738,7 +375738,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "SILT AND GRAVEL", @@ -375767,7 +375767,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, - "well_tag_number": 112712, + "well": 112712, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOP SOIL WITH GRAVEL", @@ -375796,7 +375796,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "799.00", "lithology_to": "819.00", "lithology_raw_data": null, @@ -375825,7 +375825,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "183.00", "lithology_to": "186.00", "lithology_raw_data": "very silty, sandy", @@ -375854,7 +375854,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:42:58Z", "activity_submission": null, - "well_tag_number": 112778, + "well": 112778, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -375883,7 +375883,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, - "well_tag_number": 112949, + "well": 112949, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -375912,7 +375912,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, - "well_tag_number": 112238, + "well": 112238, "lithology_from": "213.00", "lithology_to": "280.00", "lithology_raw_data": "SANDSTONE", @@ -375941,7 +375941,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, - "well_tag_number": 112909, + "well": 112909, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "25% COARSE GRAVEL", @@ -375970,7 +375970,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:44:15Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": "MEDIUM-HARD; DIRTY, COARSE SAND, GRAVEL", @@ -375999,7 +375999,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "GRAVEL, SAND, SILT", @@ -376028,7 +376028,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "38.00", "lithology_to": "52.00", "lithology_raw_data": "SAND AND GRAVEL AND CLAY", @@ -376057,7 +376057,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "250.00", "lithology_to": "260.00", "lithology_raw_data": null, @@ -376086,7 +376086,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "155.00", "lithology_to": "178.00", "lithology_raw_data": "GRAVEL AND SILT", @@ -376115,7 +376115,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, - "well_tag_number": 112251, + "well": 112251, "lithology_from": "68.00", "lithology_to": "82.00", "lithology_raw_data": "SILTSTONE SHALE", @@ -376144,7 +376144,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "140.00", "lithology_to": "240.00", "lithology_raw_data": null, @@ -376173,7 +376173,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "197.00", "lithology_to": "199.00", "lithology_raw_data": "SHALE", @@ -376202,7 +376202,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, - "well_tag_number": 112341, + "well": 112341, "lithology_from": "525.00", "lithology_to": "650.00", "lithology_raw_data": "BLACK/BROWN, BASALT TYPE VOLCANIC", @@ -376231,7 +376231,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "98.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -376260,7 +376260,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, - "well_tag_number": 113271, + "well": 113271, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "rocks, cobbles", @@ -376289,7 +376289,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "230.00", "lithology_to": "235.00", "lithology_raw_data": "FINE SILTY SAND, TRACE OF GRAVEL", @@ -376318,7 +376318,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, - "well_tag_number": 112351, + "well": 112351, "lithology_from": "11.00", "lithology_to": "32.00", "lithology_raw_data": "and sand", @@ -376347,7 +376347,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "168.00", "lithology_to": "173.00", "lithology_raw_data": null, @@ -376376,7 +376376,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, - "well_tag_number": 112329, + "well": 112329, "lithology_from": "60.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY AND ROCKS, SAND LENSES", @@ -376405,7 +376405,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "235.00", "lithology_to": "280.00", "lithology_raw_data": "MEDIUM/HARD, HARDPAN WITH LARGE GRANITE BOULDERS", @@ -376434,7 +376434,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "135.00", "lithology_to": "145.00", "lithology_raw_data": "COBBLE STONE GRAVEL", @@ -376463,7 +376463,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:03:18Z", "activity_submission": null, - "well_tag_number": 113205, + "well": 113205, "lithology_from": "15.00", "lithology_to": "45.00", "lithology_raw_data": "gravel", @@ -376492,7 +376492,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, - "well_tag_number": 112738, + "well": 112738, "lithology_from": "5.00", "lithology_to": "10.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY LAYERS", @@ -376521,7 +376521,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "140.00", "lithology_to": "143.00", "lithology_raw_data": "SANDSTONE", @@ -376550,7 +376550,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "385.00", "lithology_to": "451.00", "lithology_raw_data": "BLUE/WHITE VOLCANIC WITH SEAMS OF WHITE FELDSPAR", @@ -376579,7 +376579,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "210.00", "lithology_to": "270.00", "lithology_raw_data": "SILTSTONE/SHALE", @@ -376608,7 +376608,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, - "well_tag_number": 113179, + "well": 113179, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "Till", @@ -376637,7 +376637,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -376666,7 +376666,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "56.00", "lithology_to": "63.00", "lithology_raw_data": null, @@ -376695,7 +376695,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, - "well_tag_number": 112578, + "well": 112578, "lithology_from": "315.00", "lithology_to": "385.00", "lithology_raw_data": "BROKEN ZONE", @@ -376724,7 +376724,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, - "well_tag_number": 112304, + "well": 112304, "lithology_from": "130.00", "lithology_to": "140.00", "lithology_raw_data": "TILL", @@ -376753,7 +376753,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY ROCKS", @@ -376782,7 +376782,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, - "well_tag_number": 112806, + "well": 112806, "lithology_from": "35.00", "lithology_to": "205.00", "lithology_raw_data": "some broken zones", @@ -376811,7 +376811,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, - "well_tag_number": 112462, + "well": 112462, "lithology_from": "83.00", "lithology_to": "87.00", "lithology_raw_data": null, @@ -376840,7 +376840,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "54.00", "lithology_to": "73.00", "lithology_raw_data": "and gravel", @@ -376869,7 +376869,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and rock", @@ -376898,7 +376898,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "40.00", "lithology_to": "121.00", "lithology_raw_data": "SILTY CLAY, GRAVEL", @@ -376927,7 +376927,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM TO FINE SAND", @@ -376956,7 +376956,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "176.00", "lithology_to": "190.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -376985,7 +376985,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "0.00", "lithology_to": "15.50", "lithology_raw_data": "NO SAMPLES WERE COLLECTED", @@ -377014,7 +377014,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, - "well_tag_number": 112239, + "well": 112239, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "SILT", @@ -377043,7 +377043,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -377072,7 +377072,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "22.00", "lithology_to": "38.00", "lithology_raw_data": "clay", @@ -377101,7 +377101,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", @@ -377130,7 +377130,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T18:00:21Z", "activity_submission": null, - "well_tag_number": 113244, + "well": 113244, "lithology_from": "1.50", "lithology_to": "284.00", "lithology_raw_data": null, @@ -377159,7 +377159,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -377188,7 +377188,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, - "well_tag_number": 112968, + "well": 112968, "lithology_from": "3.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY, SAND, GRAVEL, SMALL COBBLES", @@ -377217,7 +377217,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T18:57:30Z", "activity_submission": null, - "well_tag_number": 112829, + "well": 112829, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "gravel", @@ -377246,7 +377246,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, - "well_tag_number": 112753, + "well": 112753, "lithology_from": "11.00", "lithology_to": "23.00", "lithology_raw_data": "GREY CLAY WITH SAND SEAMS", @@ -377275,7 +377275,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "110.00", "lithology_to": "118.00", "lithology_raw_data": "and silts", @@ -377304,7 +377304,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "24.00", "lithology_to": "49.00", "lithology_raw_data": "and gravels", @@ -377333,7 +377333,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "235.00", "lithology_to": "236.00", "lithology_raw_data": "CLAY", @@ -377362,7 +377362,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "11.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL", @@ -377391,7 +377391,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "16.00", "lithology_to": "88.00", "lithology_raw_data": null, @@ -377420,7 +377420,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "175.00", "lithology_to": "183.00", "lithology_raw_data": "FRACTURED", @@ -377449,7 +377449,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "12.00", "lithology_to": "14.00", "lithology_raw_data": "BROWN/BLACK WEATHERED BROKEN SLATE ", @@ -377478,7 +377478,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "173.00", "lithology_to": "176.00", "lithology_raw_data": "SANDSTONE", @@ -377507,7 +377507,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "35.00", "lithology_to": "44.00", "lithology_raw_data": "Sand with Gravel", @@ -377536,7 +377536,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, - "well_tag_number": 112689, + "well": 112689, "lithology_from": "65.00", "lithology_to": "184.00", "lithology_raw_data": "BASALT, SOME VOLCANIC LAYERS", @@ -377565,7 +377565,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "232.00", "lithology_to": "295.00", "lithology_raw_data": "SHALE / SILTSTONE LENSES", @@ -377594,7 +377594,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, - "well_tag_number": 112406, + "well": 112406, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", @@ -377623,7 +377623,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "35.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -377652,7 +377652,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "27.00", "lithology_to": "29.00", "lithology_raw_data": null, @@ -377681,7 +377681,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "460.00", "lithology_to": "500.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -377710,7 +377710,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "390.00", "lithology_to": "393.00", "lithology_raw_data": null, @@ -377739,7 +377739,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -377768,7 +377768,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, - "well_tag_number": 113188, + "well": 113188, "lithology_from": "55.00", "lithology_to": "94.00", "lithology_raw_data": "silty with gravel and boulders", @@ -377797,7 +377797,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, - "well_tag_number": 112835, + "well": 112835, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "soil", @@ -377826,7 +377826,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, - "well_tag_number": 112733, + "well": 112733, "lithology_from": "32.00", "lithology_to": "41.00", "lithology_raw_data": "FINE SAND WITH TRACE OF GRAVEL", @@ -377855,7 +377855,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "347.00", "lithology_to": "375.00", "lithology_raw_data": "VOLCANIC", @@ -377884,7 +377884,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, - "well_tag_number": 113112, + "well": 113112, "lithology_from": "0.00", "lithology_to": "100.00", "lithology_raw_data": "4 GRAVEL BROWN CLAY 75 95 SAND AND GRAVEL", @@ -377913,7 +377913,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -377942,7 +377942,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "25.00", "lithology_to": "55.00", "lithology_raw_data": "BLACK & WHITE GRANITE", @@ -377971,7 +377971,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "500.00", "lithology_to": "570.00", "lithology_raw_data": "GREY/BLUE/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -378000,7 +378000,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "250.00", "lithology_to": "286.00", "lithology_raw_data": "SANDSTONE S+P, FINE TO MEDIUM", @@ -378029,7 +378029,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "230.00", "lithology_to": "250.00", "lithology_raw_data": "S+P SANDSTONE FINE TO MEDIUM", @@ -378058,7 +378058,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -378087,7 +378087,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -378116,7 +378116,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, - "well_tag_number": 112654, + "well": 112654, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "gravel, boulders", @@ -378145,7 +378145,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": "14.00", "lithology_to": "33.00", "lithology_raw_data": "till", @@ -378174,7 +378174,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "GRAVEL", @@ -378203,7 +378203,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "ROCKS, GRAVEL", @@ -378232,7 +378232,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "33.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -378261,7 +378261,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "138.00", "lithology_to": "150.00", "lithology_raw_data": "SHALE", @@ -378290,7 +378290,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, - "well_tag_number": 112819, + "well": 112819, "lithology_from": "37.00", "lithology_to": "39.00", "lithology_raw_data": "sand with gravel", @@ -378319,7 +378319,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "20.00", "lithology_to": "47.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL", @@ -378348,7 +378348,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "GREY, BROWN CLAY TILL", @@ -378377,7 +378377,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "47.00", "lithology_to": "290.00", "lithology_raw_data": "clay", @@ -378406,7 +378406,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -378435,7 +378435,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "4.99", "lithology_to": "6.00", "lithology_raw_data": "FILL (SP)-SAND, FINE TO MEDIUM GRAINED SAND, POORLY GRADED", @@ -378464,7 +378464,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, - "well_tag_number": 112961, + "well": 112961, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -378493,7 +378493,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "169.00", "lithology_to": "173.00", "lithology_raw_data": "BROKEN W.B. GRANITE", @@ -378522,7 +378522,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -378551,7 +378551,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "61.00", "lithology_to": "63.00", "lithology_raw_data": "softer zones", @@ -378580,7 +378580,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, - "well_tag_number": 112551, + "well": 112551, "lithology_from": "235.00", "lithology_to": "550.00", "lithology_raw_data": null, @@ -378609,7 +378609,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "6.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -378638,7 +378638,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "2.00", "lithology_to": "58.00", "lithology_raw_data": "SILT AND GRAVEL", @@ -378667,7 +378667,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, - "well_tag_number": 112287, + "well": 112287, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", @@ -378696,7 +378696,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "151.00", "lithology_to": "155.00", "lithology_raw_data": "MEDIUM-HARD ORANGE LAVA ROCK", @@ -378725,7 +378725,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "41.00", "lithology_to": "52.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -378754,7 +378754,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "160.00", "lithology_to": "190.00", "lithology_raw_data": "CLAY", @@ -378783,7 +378783,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -378812,7 +378812,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "0.00", "lithology_to": "121.00", "lithology_raw_data": null, @@ -378841,7 +378841,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "7.00", "lithology_to": "17.00", "lithology_raw_data": "broken rock", @@ -378870,7 +378870,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "58.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -378899,7 +378899,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, - "well_tag_number": 112676, + "well": 112676, "lithology_from": "20.00", "lithology_to": "85.00", "lithology_raw_data": "BRN FINE SAND", @@ -378928,7 +378928,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-07T22:02:45Z", "activity_submission": null, - "well_tag_number": 112644, + "well": 112644, "lithology_from": "85.00", "lithology_to": "221.00", "lithology_raw_data": "granite", @@ -378957,7 +378957,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:47:44Z", "activity_submission": null, - "well_tag_number": 112376, + "well": 112376, "lithology_from": "7.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -378986,7 +378986,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, - "well_tag_number": 112879, + "well": 112879, "lithology_from": "95.00", "lithology_to": "138.00", "lithology_raw_data": "VOLCANIC ROCK", @@ -379015,7 +379015,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "251.00", "lithology_to": "264.00", "lithology_raw_data": "BROWN SILTS, SANDS AND GRAVELS", @@ -379044,7 +379044,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, - "well_tag_number": 113303, + "well": 113303, "lithology_from": "8.00", "lithology_to": "100.00", "lithology_raw_data": "sandstone, shale lenses", @@ -379073,7 +379073,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:28:39Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "153.00", "lithology_to": "155.00", "lithology_raw_data": "MEDIUM-HARD, CEMENTED", @@ -379102,7 +379102,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "156.00", "lithology_to": "158.00", "lithology_raw_data": "BEDROCK OR ANOTHER LARGE BOULDER", @@ -379131,7 +379131,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "38.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -379160,7 +379160,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "260.00", "lithology_to": "262.00", "lithology_raw_data": "VOLCANIC", @@ -379189,7 +379189,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "TILL & GRAVEL", @@ -379218,7 +379218,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, - "well_tag_number": 112605, + "well": 112605, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -379247,7 +379247,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "5.00", "lithology_to": "12.00", "lithology_raw_data": "FINE SANDSTONE WITH SHALE & SILTSTONE, BROWN & GREY", @@ -379276,7 +379276,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "210.00", "lithology_to": "240.00", "lithology_raw_data": null, @@ -379305,7 +379305,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:09Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "8.00", "lithology_to": "17.00", "lithology_raw_data": "FINE SAND, SMALL GRAVEL", @@ -379334,7 +379334,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "55.00", "lithology_to": "59.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -379363,7 +379363,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "365.00", "lithology_to": "370.00", "lithology_raw_data": "Gravel, some sand", @@ -379392,7 +379392,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "80.00", "lithology_to": "123.00", "lithology_raw_data": "CLAY & ROCKS", @@ -379421,7 +379421,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "124.00", "lithology_to": "128.00", "lithology_raw_data": "LARGE GRAVEL", @@ -379450,7 +379450,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, - "well_tag_number": 113025, + "well": 113025, "lithology_from": "110.00", "lithology_to": "170.00", "lithology_raw_data": "Brown Glacial Till", @@ -379479,7 +379479,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:24:08Z", "activity_submission": null, - "well_tag_number": 112691, + "well": 112691, "lithology_from": "115.00", "lithology_to": "117.00", "lithology_raw_data": "GRAVEL", @@ -379508,7 +379508,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, - "well_tag_number": 112873, + "well": 112873, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & GRAVEL, GREY & BROWN", @@ -379537,7 +379537,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, - "well_tag_number": 112348, + "well": 112348, "lithology_from": "39.00", "lithology_to": "50.00", "lithology_raw_data": "sand silt", @@ -379566,7 +379566,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "240.00", "lithology_to": "270.00", "lithology_raw_data": "SILT, SAND WITH GRAVEL", @@ -379595,7 +379595,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "205.00", "lithology_to": "210.00", "lithology_raw_data": "CLAY", @@ -379624,7 +379624,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, - "well_tag_number": 112401, + "well": 112401, "lithology_from": "44.00", "lithology_to": "60.00", "lithology_raw_data": "WEATHERED BEDROCK", @@ -379653,7 +379653,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "176.00", "lithology_to": "177.00", "lithology_raw_data": "CEMENTED", @@ -379682,7 +379682,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T16:33:40Z", "activity_submission": null, - "well_tag_number": 113103, + "well": 113103, "lithology_from": "0.00", "lithology_to": "140.00", "lithology_raw_data": "sand gravel", @@ -379711,7 +379711,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -379740,7 +379740,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "59.00", "lithology_to": "63.00", "lithology_raw_data": null, @@ -379769,7 +379769,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "112.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -379798,7 +379798,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "79.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -379827,7 +379827,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, - "well_tag_number": 113087, + "well": 113087, "lithology_from": "32.00", "lithology_to": "85.00", "lithology_raw_data": "clay and rocks", @@ -379856,7 +379856,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "76.00", "lithology_to": "84.00", "lithology_raw_data": "MEDIUM SAND, FINE GRAVEL", @@ -379885,7 +379885,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND MEDIUM", @@ -379914,7 +379914,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, - "well_tag_number": 112893, + "well": 112893, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -379943,7 +379943,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "14.00", "lithology_to": "28.00", "lithology_raw_data": "SILTY CLAY, SCATTERED GRAVEL", @@ -379972,7 +379972,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "55.00", "lithology_to": "57.00", "lithology_raw_data": "W.B. THICK MUD WITH SHARP PINK GRANITE", @@ -380001,7 +380001,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "compact", @@ -380030,7 +380030,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "306.00", "lithology_to": "313.00", "lithology_raw_data": "SAND W.B. WITH SOME GRAVEL", @@ -380059,7 +380059,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, - "well_tag_number": 105508, + "well": 105508, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -380088,7 +380088,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, - "well_tag_number": 112518, + "well": 112518, "lithology_from": "52.00", "lithology_to": "55.00", "lithology_raw_data": "IRONY BROWN SAND", @@ -380117,7 +380117,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, - "well_tag_number": 112886, + "well": 112886, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "GRAY & BLACK", @@ -380146,7 +380146,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, - "well_tag_number": 112258, + "well": 112258, "lithology_from": "36.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM SAND", @@ -380175,7 +380175,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "61.00", "lithology_to": "114.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -380204,7 +380204,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "20'", @@ -380233,7 +380233,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, - "well_tag_number": 112299, + "well": 112299, "lithology_from": "92.00", "lithology_to": "105.00", "lithology_raw_data": "GRAVEL, SOME CLAY", @@ -380262,7 +380262,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "25.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -380291,7 +380291,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "197.00", "lithology_to": "206.00", "lithology_raw_data": "and gravel", @@ -380320,7 +380320,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, - "well_tag_number": 113125, + "well": 113125, "lithology_from": "9.00", "lithology_to": "21.00", "lithology_raw_data": "BROWN SOFT CLAY WITH SAND", @@ -380349,7 +380349,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T21:37:19Z", "activity_submission": null, - "well_tag_number": 112822, + "well": 112822, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -380378,7 +380378,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "572.00", "lithology_to": "580.00", "lithology_raw_data": "SHALE, BEDROCK", @@ -380407,7 +380407,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, - "well_tag_number": 112559, + "well": 112559, "lithology_from": "23.00", "lithology_to": "27.00", "lithology_raw_data": "and organics", @@ -380436,7 +380436,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILT WITH CLAY AND ROCKS", @@ -380465,7 +380465,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, - "well_tag_number": 112329, + "well": 112329, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "COARSE, SANDY GRAVEL", @@ -380494,7 +380494,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "202.00", "lithology_to": "210.00", "lithology_raw_data": "GREEN/WHITE VOLCANIC WITH SMALL TRACES", @@ -380523,7 +380523,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, - "well_tag_number": 113144, + "well": 113144, "lithology_from": "75.00", "lithology_to": "200.00", "lithology_raw_data": "sand", @@ -380552,7 +380552,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "48.00", "lithology_to": "270.00", "lithology_raw_data": "metamorphic", @@ -380581,7 +380581,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, - "well_tag_number": 112910, + "well": 112910, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "COBBLE, BOULDERS, COARSE SAND", @@ -380610,7 +380610,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, - "well_tag_number": 112283, + "well": 112283, "lithology_from": "87.00", "lithology_to": "88.00", "lithology_raw_data": "gravel", @@ -380639,7 +380639,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILT, FINE SAND", @@ -380668,7 +380668,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "17.00", "lithology_to": "26.00", "lithology_raw_data": "SAND, GRAVEL, SILT", @@ -380697,7 +380697,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "136.00", "lithology_to": "450.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", @@ -380726,7 +380726,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -380755,7 +380755,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "138.00", "lithology_to": "188.00", "lithology_raw_data": null, @@ -380784,7 +380784,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "168.00", "lithology_to": "344.00", "lithology_raw_data": "VOLCANIC WITH OCCASIONAL TRACES", @@ -380813,7 +380813,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:28:42Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "427.00", "lithology_to": "430.00", "lithology_raw_data": "CLAY", @@ -380842,7 +380842,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, - "well_tag_number": 113065, + "well": 113065, "lithology_from": "149.00", "lithology_to": "216.00", "lithology_raw_data": "GRAVEL AND SAND, W.B.", @@ -380871,7 +380871,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "50.00", "lithology_to": "53.00", "lithology_raw_data": "SAND & GRAVEL", @@ -380900,7 +380900,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "16.00", "lithology_to": "29.00", "lithology_raw_data": null, @@ -380929,7 +380929,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "465.00", "lithology_to": "475.00", "lithology_raw_data": "WITH SILTSTONE LENSES", @@ -380958,7 +380958,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "37.00", "lithology_to": "47.00", "lithology_raw_data": "GRAVEL", @@ -380987,7 +380987,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL, LAYERS", @@ -381016,7 +381016,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, - "well_tag_number": 112520, + "well": 112520, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -381045,7 +381045,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "40.00", "lithology_to": "40.00", "lithology_raw_data": "Hard Gey Bedrock", @@ -381074,7 +381074,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "240.00", "lithology_to": "278.00", "lithology_raw_data": "med. grey", @@ -381103,7 +381103,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, - "well_tag_number": 112550, + "well": 112550, "lithology_from": "80.00", "lithology_to": "280.00", "lithology_raw_data": null, @@ -381132,7 +381132,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T01:23:40Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "240.00", "lithology_to": "315.00", "lithology_raw_data": "SHALE", @@ -381161,7 +381161,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:23:55Z", "activity_submission": null, - "well_tag_number": 112933, + "well": 112933, "lithology_from": "215.00", "lithology_to": null, "lithology_raw_data": null, @@ -381190,7 +381190,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, - "well_tag_number": 112644, + "well": 112644, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "broken granite", @@ -381219,7 +381219,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, - "well_tag_number": 105508, + "well": 105508, "lithology_from": "37.00", "lithology_to": "64.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -381248,7 +381248,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, CLAY, FRACTURED MOIST GRAVEL", @@ -381277,7 +381277,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:37:17Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT/MEDIUM TILL", @@ -381306,7 +381306,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, - "well_tag_number": 113032, + "well": 113032, "lithology_from": "15.00", "lithology_to": "40.00", "lithology_raw_data": "WET SILTY CLAY", @@ -381335,7 +381335,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "5.00", "lithology_to": "31.00", "lithology_raw_data": "CLAY AND STONES", @@ -381364,7 +381364,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, FINE, SILTY", @@ -381393,7 +381393,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, - "well_tag_number": 112670, + "well": 112670, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "CLAY AND GRAVEL MIX", @@ -381422,7 +381422,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, - "well_tag_number": 113166, + "well": 113166, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "sand, fine med", @@ -381451,7 +381451,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, - "well_tag_number": 112886, + "well": 112886, "lithology_from": "4.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -381480,7 +381480,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, - "well_tag_number": 112750, + "well": 112750, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BROWN SILT, SAND & GRAVEL TILL", @@ -381509,7 +381509,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "176.00", "lithology_to": "180.00", "lithology_raw_data": "SANDSTONE", @@ -381538,7 +381538,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, - "well_tag_number": 112947, + "well": 112947, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL WITH SAND", @@ -381567,7 +381567,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, - "well_tag_number": 112743, + "well": 112743, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", @@ -381596,7 +381596,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "259.00", "lithology_to": "280.00", "lithology_raw_data": "waterbearing", @@ -381625,7 +381625,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:44:53Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "207.00", "lithology_to": "232.00", "lithology_raw_data": "COARSE/FINE SAND/FINE GRAVEL", @@ -381654,7 +381654,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "230.00", "lithology_to": "240.00", "lithology_raw_data": "MEDIUM COARSE SAND, ROCK", @@ -381683,7 +381683,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "138.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -381712,7 +381712,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "144.00", "lithology_to": "280.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -381741,7 +381741,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "35.00", "lithology_to": "50.00", "lithology_raw_data": "GREY SILTS AND SANDS", @@ -381770,7 +381770,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, - "well_tag_number": 112303, + "well": 112303, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", @@ -381799,7 +381799,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "CLAY & STONES", @@ -381828,7 +381828,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "282.00", "lithology_to": "283.00", "lithology_raw_data": null, @@ -381857,7 +381857,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "62.00", "lithology_to": "66.00", "lithology_raw_data": "sand, fine-med", @@ -381886,7 +381886,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "25.00", "lithology_to": "30.00", "lithology_raw_data": "clay sand with gravel", @@ -381915,7 +381915,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, - "well_tag_number": 112612, + "well": 112612, "lithology_from": "47.00", "lithology_to": "63.00", "lithology_raw_data": null, @@ -381944,7 +381944,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "238.00", "lithology_to": "248.00", "lithology_raw_data": null, @@ -381973,7 +381973,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "some rocks", @@ -382002,7 +382002,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, - "well_tag_number": 112392, + "well": 112392, "lithology_from": "11.00", "lithology_to": "13.00", "lithology_raw_data": "CEMENTED SAND", @@ -382031,7 +382031,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, - "well_tag_number": 112732, + "well": 112732, "lithology_from": "27.00", "lithology_to": "39.00", "lithology_raw_data": "MEDIUM AND FINE SAND WITH GRAVEL", @@ -382060,7 +382060,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:37:24Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "155.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", @@ -382089,7 +382089,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "142.00", "lithology_to": "222.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK ", @@ -382118,7 +382118,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": "WB SILTY SAND GRAVEL", @@ -382147,7 +382147,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "34.00", "lithology_to": "84.00", "lithology_raw_data": "shale interbedded", @@ -382176,7 +382176,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, - "well_tag_number": 112919, + "well": 112919, "lithology_from": "12.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -382205,7 +382205,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:48:07Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "218.00", "lithology_to": "221.00", "lithology_raw_data": "VOID", @@ -382234,7 +382234,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:22:25Z", "activity_submission": null, - "well_tag_number": 113085, + "well": 113085, "lithology_from": "165.00", "lithology_to": "270.00", "lithology_raw_data": "GREEN BEDROCK WITH QUARTZ", @@ -382263,7 +382263,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY AND TILL", @@ -382292,7 +382292,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "PACKED SAND/GRAVEL, SOME COBBLES", @@ -382321,7 +382321,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, - "well_tag_number": 112695, + "well": 112695, "lithology_from": "4.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK, BASALTS", @@ -382350,7 +382350,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "FINE SAND", @@ -382379,7 +382379,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -382408,7 +382408,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "140.00", "lithology_to": "154.00", "lithology_raw_data": "Clay, firm", @@ -382437,7 +382437,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "239.00", "lithology_to": "242.00", "lithology_raw_data": "SHALE WITH CARBON, MEDIUM SOFT", @@ -382466,7 +382466,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "580.00", "lithology_to": "740.00", "lithology_raw_data": null, @@ -382495,7 +382495,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "245.00", "lithology_to": "310.00", "lithology_raw_data": "CLAY", @@ -382524,7 +382524,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, - "well_tag_number": 112624, + "well": 112624, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BOULDERS AND COBBLES", @@ -382553,7 +382553,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "102.00", "lithology_to": "106.00", "lithology_raw_data": "with wood", @@ -382582,7 +382582,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "420.00", "lithology_to": "475.00", "lithology_raw_data": "CLAY", @@ -382611,7 +382611,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:49Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "Clay brown", @@ -382640,7 +382640,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "50.00", "lithology_to": "62.00", "lithology_raw_data": "GREY SILTY SANDS AND GRAVELS", @@ -382669,7 +382669,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, - "well_tag_number": 112420, + "well": 112420, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "BEDROCK", @@ -382698,7 +382698,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "259.00", "lithology_to": "271.00", "lithology_raw_data": "MEDIUM-HARD, GRAVEL AND SAND, COARSE TO FINE", @@ -382727,7 +382727,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "rocks, organics", @@ -382756,7 +382756,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:06:01Z", "activity_submission": null, - "well_tag_number": 112259, + "well": 112259, "lithology_from": "2.00", "lithology_to": "24.00", "lithology_raw_data": "LARGE BOULDERS, FINE SAND", @@ -382785,7 +382785,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "gravel and wood debris", @@ -382814,7 +382814,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "329.00", "lithology_to": "335.00", "lithology_raw_data": null, @@ -382843,7 +382843,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "71.00", "lithology_to": "89.00", "lithology_raw_data": null, @@ -382872,7 +382872,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "79.00", "lithology_to": "115.00", "lithology_raw_data": null, @@ -382901,7 +382901,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "25.00", "lithology_to": "30.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", @@ -382930,7 +382930,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "32.00", "lithology_to": "36.00", "lithology_raw_data": "CEMENTED GRAVEL & COBBLES", @@ -382959,7 +382959,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "47.00", "lithology_to": "50.00", "lithology_raw_data": "BEDROCK", @@ -382988,7 +382988,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "62.00", "lithology_to": "65.00", "lithology_raw_data": "SHALE/SS", @@ -383017,7 +383017,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, - "well_tag_number": 112280, + "well": 112280, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL WITH FINE SAND", @@ -383046,7 +383046,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "8.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -383075,7 +383075,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "88.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -383104,7 +383104,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "SAND WITH GRAVEL, BROWN AND DARK GREY", @@ -383133,7 +383133,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "DARK GREY FINE SAND", @@ -383162,7 +383162,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, - "well_tag_number": 112838, + "well": 112838, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -383191,7 +383191,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "3.00", "lithology_to": "28.00", "lithology_raw_data": "cobbles, boulders 19' - 21'", @@ -383220,7 +383220,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "50.00", "lithology_to": "53.00", "lithology_raw_data": null, @@ -383249,7 +383249,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "225.00", "lithology_to": "230.00", "lithology_raw_data": "SHALE/SANDSTONE LAYERS", @@ -383278,7 +383278,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "365.00", "lithology_to": "600.00", "lithology_raw_data": "GREEN/GREY GRANITE WITHOUT NOTICEABLE CHANGE", @@ -383307,7 +383307,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T16:59:40Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "1.00", "lithology_to": "12.00", "lithology_raw_data": "SAND AND GRAVEL, SILTY, BROWN", @@ -383336,7 +383336,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, - "well_tag_number": 113081, + "well": 113081, "lithology_from": "10.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -383365,7 +383365,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, - "well_tag_number": 112320, + "well": 112320, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "ROCK, GRAVEL, SAND", @@ -383394,7 +383394,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "600.00", "lithology_to": "630.00", "lithology_raw_data": "Shale", @@ -383423,7 +383423,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "35.00", "lithology_to": "53.00", "lithology_raw_data": "DRY SAND AND BROWN GRAVEL", @@ -383452,7 +383452,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, - "well_tag_number": 112383, + "well": 112383, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "nd gravel", @@ -383481,7 +383481,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", @@ -383510,7 +383510,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "535.00", "lithology_to": "537.00", "lithology_raw_data": "MEDIUM TO FINE", @@ -383539,7 +383539,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:36Z", "activity_submission": null, - "well_tag_number": 112244, + "well": 112244, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "SANDSTONE CHUNKS", @@ -383568,7 +383568,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "295.00", "lithology_to": "296.00", "lithology_raw_data": "GREY CLAY", @@ -383597,7 +383597,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "180.00", "lithology_to": "215.00", "lithology_raw_data": "SHALE WITH SANDSTONE LENSES", @@ -383626,7 +383626,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, - "well_tag_number": 112613, + "well": 112613, "lithology_from": "25.00", "lithology_to": "90.00", "lithology_raw_data": null, @@ -383655,7 +383655,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "104.00", "lithology_to": "167.00", "lithology_raw_data": "VOLCANIC - FEW WHITE TRACES", @@ -383684,7 +383684,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, - "well_tag_number": 112479, + "well": 112479, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -383713,7 +383713,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "48.00", "lithology_to": "110.00", "lithology_raw_data": "very sandy", @@ -383742,7 +383742,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "39.00", "lithology_to": "220.00", "lithology_raw_data": "with quartz layers", @@ -383771,7 +383771,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "105.00", "lithology_to": "112.00", "lithology_raw_data": "Grey clay, some gravel, firm", @@ -383800,7 +383800,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": "SILTY CLAY & FINE SAND", @@ -383829,7 +383829,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T00:49:28Z", "activity_submission": null, - "well_tag_number": 112658, + "well": 112658, "lithology_from": "10.00", "lithology_to": "145.00", "lithology_raw_data": null, @@ -383858,7 +383858,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -383887,7 +383887,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -383916,7 +383916,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, - "well_tag_number": 113026, + "well": 113026, "lithology_from": "45.00", "lithology_to": "272.00", "lithology_raw_data": "TILL GREY BROWN", @@ -383945,7 +383945,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "159.00", "lithology_to": "163.00", "lithology_raw_data": null, @@ -383974,7 +383974,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "338.00", "lithology_to": "361.00", "lithology_raw_data": "DARK GREY CRYSTALLINE ", @@ -384003,7 +384003,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, - "well_tag_number": 113216, + "well": 113216, "lithology_from": "220.00", "lithology_to": "260.00", "lithology_raw_data": "SS", @@ -384032,7 +384032,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "13.00", "lithology_to": "20.00", "lithology_raw_data": "bedrock, broken", @@ -384061,7 +384061,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "gravel, topsoil and wood debris", @@ -384090,7 +384090,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, - "well_tag_number": 112548, + "well": 112548, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "FINE SAND AND SILT", @@ -384119,7 +384119,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, - "well_tag_number": 112152, + "well": 112152, "lithology_from": "0.00", "lithology_to": "43.00", "lithology_raw_data": "SAND, BOULDERS, SILT", @@ -384148,7 +384148,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "75.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM-HARD, DARK AND LIGHT GREY SHALE LAYERED", @@ -384177,7 +384177,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-11-30T07:25:37Z", "activity_submission": null, - "well_tag_number": 112152, + "well": 112152, "lithology_from": "43.00", "lithology_to": "49.00", "lithology_raw_data": "SAND, SILT, COBBLES", @@ -384206,7 +384206,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -384235,7 +384235,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, - "well_tag_number": 113125, + "well": 113125, "lithology_from": "45.00", "lithology_to": "53.00", "lithology_raw_data": "W.B. FINE GREY SAND", @@ -384264,7 +384264,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "282.00", "lithology_to": "414.00", "lithology_raw_data": "medium grey with green", @@ -384293,7 +384293,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:24:53Z", "activity_submission": null, - "well_tag_number": 112315, + "well": 112315, "lithology_from": "0.00", "lithology_to": "93.00", "lithology_raw_data": "ROCK, GRAVEL, SAND", @@ -384322,7 +384322,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "41.00", "lithology_to": "53.00", "lithology_raw_data": "trace of gravel", @@ -384351,7 +384351,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", @@ -384380,7 +384380,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "32.00", "lithology_to": "120.00", "lithology_raw_data": "SHALE/SANDSTONE LENSES", @@ -384409,7 +384409,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "24.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -384438,7 +384438,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "222.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", @@ -384467,7 +384467,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "197.00", "lithology_to": "232.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -384496,7 +384496,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "12.00", "lithology_to": "13.00", "lithology_raw_data": "BOULDER", @@ -384525,7 +384525,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, - "well_tag_number": 113179, + "well": 113179, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -384554,7 +384554,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "67.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -384583,7 +384583,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, - "well_tag_number": 112881, + "well": 112881, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "compact, boulders", @@ -384612,7 +384612,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "127.00", "lithology_to": "128.00", "lithology_raw_data": null, @@ -384641,7 +384641,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, - "well_tag_number": 112628, + "well": 112628, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "TOP SOIL", @@ -384670,7 +384670,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "FINE TO MEDIUM SAND (GRAVEL 284'-287')", @@ -384699,7 +384699,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T21:47:38Z", "activity_submission": null, - "well_tag_number": 112300, + "well": 112300, "lithology_from": "28.00", "lithology_to": "143.00", "lithology_raw_data": "BEDROCK - VOLCANIC MIX", @@ -384728,7 +384728,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "354.00", "lithology_to": "365.00", "lithology_raw_data": "BROWN DIRTY, SILTY SANDS, SOME GRAVEL (WEL)", @@ -384757,7 +384757,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "48.00", "lithology_to": "62.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", @@ -384786,7 +384786,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "FINE SAND", @@ -384815,7 +384815,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:45Z", "activity_submission": null, - "well_tag_number": 112465, + "well": 112465, "lithology_from": "161.00", "lithology_to": "170.00", "lithology_raw_data": "with white lenses", @@ -384844,7 +384844,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "397.00", "lithology_to": "500.00", "lithology_raw_data": "GREY/BLUE VOLCANIC", @@ -384873,7 +384873,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "146.00", "lithology_to": "203.00", "lithology_raw_data": "TILL WITH FINE WATER LAYERS", @@ -384902,7 +384902,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, - "well_tag_number": 112684, + "well": 112684, "lithology_from": "83.00", "lithology_to": "143.00", "lithology_raw_data": "ASH MIX", @@ -384931,7 +384931,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", @@ -384960,7 +384960,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "91.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE", @@ -384989,7 +384989,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", @@ -385018,7 +385018,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:27Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "119.00", "lithology_to": "152.00", "lithology_raw_data": "HARD CLAY & GRAVEL", @@ -385047,7 +385047,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "3.00", "lithology_to": "11.00", "lithology_raw_data": "CLEAN GRAVEL", @@ -385076,7 +385076,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, - "well_tag_number": 112611, + "well": 112611, "lithology_from": "45.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", @@ -385105,7 +385105,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "135.00", "lithology_to": "136.00", "lithology_raw_data": null, @@ -385134,7 +385134,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -385163,7 +385163,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "20.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY, MINOR, SAND BOULDERS", @@ -385192,7 +385192,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", @@ -385221,7 +385221,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, - "well_tag_number": 113052, + "well": 113052, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "boulders", @@ -385250,7 +385250,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, - "well_tag_number": 112910, + "well": 112910, "lithology_from": "20.00", "lithology_to": "50.00", "lithology_raw_data": "COARSE SAND, COARSE GRAVEL", @@ -385279,7 +385279,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE COBBLE", @@ -385308,7 +385308,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, - "well_tag_number": 112696, + "well": 112696, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "organics", @@ -385337,7 +385337,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:36:03Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT/MEDIUM, GRAVEL WITH CLAY", @@ -385366,7 +385366,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "248.00", "lithology_to": "395.00", "lithology_raw_data": null, @@ -385395,7 +385395,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "4.00", "lithology_to": "17.00", "lithology_raw_data": "Brown fine to coarse sand and gravel trace cobbles", @@ -385424,7 +385424,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -385453,7 +385453,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, - "well_tag_number": 112947, + "well": 112947, "lithology_from": "24.00", "lithology_to": "178.00", "lithology_raw_data": null, @@ -385482,7 +385482,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "250.00", "lithology_to": "257.00", "lithology_raw_data": "MEDIUM HARD, SALT & PEPPER WITH BROWNISH TINGE", @@ -385511,7 +385511,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "72.00", "lithology_to": "85.00", "lithology_raw_data": "SAND AND GRAVEL WITH SILT", @@ -385540,7 +385540,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:40:17Z", "activity_submission": null, - "well_tag_number": 112666, + "well": 112666, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SAND/ROCK", @@ -385569,7 +385569,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:27:24Z", "activity_submission": null, - "well_tag_number": 112965, + "well": 112965, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -385598,7 +385598,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "4.00", "lithology_to": "6.00", "lithology_raw_data": "and gravel", @@ -385627,7 +385627,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "2.00", "lithology_to": "7.50", "lithology_raw_data": "SOFT & FRACTURED GRANITE BEDROCK", @@ -385656,7 +385656,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "160.00", "lithology_to": "167.00", "lithology_raw_data": "COARSE, SAND, GRAVEL", @@ -385685,7 +385685,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "166.00", "lithology_to": "177.00", "lithology_raw_data": "FINE TO VERY FINE WITH SHALE LENSE AND SILTSTONE INTERBEDED", @@ -385714,7 +385714,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, TILL, MIXED WITH ROCKS", @@ -385743,7 +385743,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "FINE AND SILTY COMPACT SILTY CLAY WITH TRACE OF GRAVEL", @@ -385772,7 +385772,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:37:50Z", "activity_submission": null, - "well_tag_number": 112247, + "well": 112247, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY WITH COBBLES", @@ -385801,7 +385801,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "74.00", "lithology_to": "77.00", "lithology_raw_data": "SANDSTONE", @@ -385830,7 +385830,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -385859,7 +385859,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, - "well_tag_number": 112599, + "well": 112599, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, GRAVEL, BOULDERS", @@ -385888,7 +385888,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "37.00", "lithology_to": "46.00", "lithology_raw_data": "and gravel", @@ -385917,7 +385917,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "140.00", "lithology_to": "207.00", "lithology_raw_data": "SILTY CLAY", @@ -385946,7 +385946,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -385975,7 +385975,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "111.00", "lithology_to": "127.00", "lithology_raw_data": null, @@ -386004,7 +386004,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "47.00", "lithology_to": "67.00", "lithology_raw_data": "MEDIUM SAND, MEDIUM WELL SORTED GRAVEL", @@ -386033,7 +386033,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "17.00", "lithology_to": "120.00", "lithology_raw_data": "GREY/WHITE, VOLCANIC WITH WHITE TRACES", @@ -386062,7 +386062,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", @@ -386091,7 +386091,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "70.00", "lithology_to": "200.00", "lithology_raw_data": "COMPETENT BEDROCK GREEN SHALE", @@ -386120,7 +386120,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "90.00", "lithology_to": "94.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", @@ -386149,7 +386149,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "32.00", "lithology_to": "50.00", "lithology_raw_data": "compact gravel", @@ -386178,7 +386178,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "224.00", "lithology_to": "255.00", "lithology_raw_data": null, @@ -386207,7 +386207,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:17Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "68.00", "lithology_to": "80.00", "lithology_raw_data": "SHALE/FRACTURED SANDSTONE LAYERS", @@ -386236,7 +386236,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, - "well_tag_number": 112262, + "well": 112262, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": "LARGE BOULDERS, FINE SAND", @@ -386265,7 +386265,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:16:22Z", "activity_submission": null, - "well_tag_number": 113085, + "well": 113085, "lithology_from": "20.00", "lithology_to": "93.00", "lithology_raw_data": "GREY CLAY AND ROCK", @@ -386294,7 +386294,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "139.00", "lithology_to": "166.00", "lithology_raw_data": "SILTSTONE & SHALE", @@ -386323,7 +386323,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "500.00", "lithology_to": "560.00", "lithology_raw_data": "Shale", @@ -386352,7 +386352,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "108.00", "lithology_to": "137.00", "lithology_raw_data": "SANDSTONE, COARSE, HARD, WEATHERED", @@ -386381,7 +386381,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "50.00", "lithology_to": "68.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND ROCK WITH SILT", @@ -386410,7 +386410,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "264.00", "lithology_to": "265.00", "lithology_raw_data": "WET SANDS AND GRAVELS", @@ -386439,7 +386439,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "13.00", "lithology_to": "18.00", "lithology_raw_data": "and gravel", @@ -386468,7 +386468,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, - "well_tag_number": 113025, + "well": 113025, "lithology_from": "50.00", "lithology_to": "65.00", "lithology_raw_data": "Grey Clay", @@ -386497,7 +386497,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, - "well_tag_number": 113264, + "well": 113264, "lithology_from": "79.00", "lithology_to": "88.00", "lithology_raw_data": "very sandy", @@ -386526,7 +386526,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, - "well_tag_number": 112417, + "well": 112417, "lithology_from": "42.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -386555,7 +386555,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "13.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -386584,7 +386584,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "TAN CLAY WITH SEA SHELLS", @@ -386613,7 +386613,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "78.00", "lithology_to": "84.00", "lithology_raw_data": null, @@ -386642,7 +386642,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "168.00", "lithology_to": "169.00", "lithology_raw_data": null, @@ -386671,7 +386671,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "171.00", "lithology_to": "173.00", "lithology_raw_data": "GRAY CLAY", @@ -386700,7 +386700,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, - "well_tag_number": 112559, + "well": 112559, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "and gravel", @@ -386729,7 +386729,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -386758,7 +386758,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, - "well_tag_number": 112959, + "well": 112959, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "EXISTING", @@ -386787,7 +386787,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, - "well_tag_number": 112676, + "well": 112676, "lithology_from": "134.00", "lithology_to": "135.00", "lithology_raw_data": "BLK DENSE GRAVEL", @@ -386816,7 +386816,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T18:55:07Z", "activity_submission": null, - "well_tag_number": 112362, + "well": 112362, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "GREY/BROWN, GRAVELS AND SAND", @@ -386845,7 +386845,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY MINOR GRAVEL", @@ -386874,7 +386874,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "54.00", "lithology_to": "81.50", "lithology_raw_data": "LOOSE, DARK GRAY, FINE TO COARSE SAND AND GRAVEL", @@ -386903,7 +386903,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -386932,7 +386932,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "75.00", "lithology_to": "340.00", "lithology_raw_data": "sand with gravel", @@ -386961,7 +386961,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, - "well_tag_number": 113218, + "well": 113218, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "gravel", @@ -386990,7 +386990,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, - "well_tag_number": 112540, + "well": 112540, "lithology_from": "28.00", "lithology_to": "34.00", "lithology_raw_data": "CLAY, SAND, MEDIUM-COARSE", @@ -387019,7 +387019,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "16.00", "lithology_to": "31.00", "lithology_raw_data": "bedrock", @@ -387048,7 +387048,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -387077,7 +387077,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, - "well_tag_number": 112784, + "well": 112784, "lithology_from": "3.75", "lithology_to": "4.25", "lithology_raw_data": null, @@ -387106,7 +387106,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -387135,7 +387135,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "MEDIUM/HARD, COMPRESSED GRAVEL", @@ -387164,7 +387164,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:44:27Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "HARD PAN, CLAY, MIXED ROCK", @@ -387193,7 +387193,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, - "well_tag_number": 112305, + "well": 112305, "lithology_from": "101.00", "lithology_to": "142.00", "lithology_raw_data": "BEDROCK, BASALT", @@ -387222,7 +387222,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "95.00", "lithology_to": "122.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -387251,7 +387251,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "138.00", "lithology_to": "145.00", "lithology_raw_data": null, @@ -387280,7 +387280,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "HARD SHALE", @@ -387309,7 +387309,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "10.00", "lithology_to": "52.00", "lithology_raw_data": null, @@ -387338,7 +387338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "FINE SAND WITH SOME SANDY CLAY", @@ -387367,7 +387367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", @@ -387396,7 +387396,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, - "well_tag_number": 112928, + "well": 112928, "lithology_from": "20.00", "lithology_to": "85.00", "lithology_raw_data": "SAND, MEDIUM COARSE GRAVEL, FINE SAND 50-55; CLAY 75 TO 85", @@ -387425,7 +387425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "54.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -387454,7 +387454,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "0.00", "lithology_to": "66.00", "lithology_raw_data": "ROCK & CLAY", @@ -387483,7 +387483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", @@ -387512,7 +387512,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "20.00", "lithology_to": "28.00", "lithology_raw_data": null, @@ -387541,7 +387541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "95.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -387570,7 +387570,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANICS, FILL", @@ -387599,7 +387599,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "18.00", "lithology_to": "42.00", "lithology_raw_data": "GREYISH BROWN DRY CLAY WITH FINE BROWN SAND", @@ -387628,7 +387628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "31.00", "lithology_to": "78.00", "lithology_raw_data": null, @@ -387657,7 +387657,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "330.00", "lithology_to": "335.00", "lithology_raw_data": "COARSE AND SANDSTONE", @@ -387686,7 +387686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, - "well_tag_number": 112317, + "well": 112317, "lithology_from": "2.00", "lithology_to": "51.00", "lithology_raw_data": "GRAVEL, SAND", @@ -387715,7 +387715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": "SANDY CLAY", @@ -387744,7 +387744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "9.00", "lithology_to": "12.00", "lithology_raw_data": "CLAY-TILL/SAND LAYERS", @@ -387773,7 +387773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, - "well_tag_number": 112261, + "well": 112261, "lithology_from": "12.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM BOULDERS, MEDIUM SAND", @@ -387802,7 +387802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -387831,7 +387831,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "133.00", "lithology_to": "134.00", "lithology_raw_data": "some chunks", @@ -387860,7 +387860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SILT AND SAND", @@ -387889,7 +387889,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "108.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -387918,7 +387918,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "SILT/CLAY", @@ -387947,7 +387947,7 @@ "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:08:13Z", "activity_submission": null, - "well_tag_number": 104533, + "well": 104533, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY CLAY", @@ -387976,7 +387976,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "104.00", "lithology_to": null, "lithology_raw_data": "BEDROCK", @@ -388005,7 +388005,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:44:36Z", "activity_submission": null, - "well_tag_number": 110749, + "well": 110749, "lithology_from": "260.00", "lithology_to": "267.00", "lithology_raw_data": null, @@ -388034,7 +388034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, - "well_tag_number": 112517, + "well": 112517, "lithology_from": "131.00", "lithology_to": "250.00", "lithology_raw_data": "volcanic", @@ -388063,7 +388063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "543.00", "lithology_to": "583.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -388092,7 +388092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, - "well_tag_number": 112913, + "well": 112913, "lithology_from": "13.00", "lithology_to": "75.00", "lithology_raw_data": "CLAY, SILT & SOME TRACES SMALL GRAVEL", @@ -388121,7 +388121,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, - "well_tag_number": 112689, + "well": 112689, "lithology_from": "220.00", "lithology_to": "243.00", "lithology_raw_data": "BASALT", @@ -388150,7 +388150,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, - "well_tag_number": 113177, + "well": 113177, "lithology_from": "75.00", "lithology_to": "250.00", "lithology_raw_data": "gravel", @@ -388179,7 +388179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, - "well_tag_number": 112947, + "well": 112947, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "COBBLES WITH MEDIUM SAND", @@ -388208,7 +388208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SAND", @@ -388237,7 +388237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "48.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -388266,7 +388266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, - "well_tag_number": 112874, + "well": 112874, "lithology_from": "60.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY & ROCK", @@ -388295,7 +388295,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "215.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", @@ -388324,7 +388324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TOPSOIL, GRAVEL, WOOD", @@ -388353,7 +388353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, - "well_tag_number": 113081, + "well": 113081, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -388382,7 +388382,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "145.00", "lithology_to": "150.00", "lithology_raw_data": "softer zones", @@ -388411,7 +388411,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "37.00", "lithology_to": "65.00", "lithology_raw_data": "PACKED GRAVEL", @@ -388440,7 +388440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "286.00", "lithology_to": "292.00", "lithology_raw_data": "SANDSTONE FINE TO COARSE WITH FINE CONGLOMERATE", @@ -388469,7 +388469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:34Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "very sandy", @@ -388498,7 +388498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, - "well_tag_number": 112869, + "well": 112869, "lithology_from": "0.00", "lithology_to": "25.90", "lithology_raw_data": "GREY & BROWN", @@ -388527,7 +388527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "COARSE SAND", @@ -388556,7 +388556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "73.00", "lithology_to": "93.00", "lithology_raw_data": "and fine sand", @@ -388585,7 +388585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "99.00", "lithology_to": "112.00", "lithology_raw_data": "MEDIUM SOFT", @@ -388614,7 +388614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "76.00", "lithology_to": "96.00", "lithology_raw_data": "sand, fine-med", @@ -388643,7 +388643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, - "well_tag_number": 113125, + "well": 113125, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "FILL ROCK", @@ -388672,7 +388672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "141.00", "lithology_to": "195.00", "lithology_raw_data": null, @@ -388701,7 +388701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "26.00", "lithology_to": "33.00", "lithology_raw_data": "rock", @@ -388730,7 +388730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "23.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -388759,7 +388759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:38Z", "activity_submission": null, - "well_tag_number": 113023, + "well": 113023, "lithology_from": "0.00", "lithology_to": "80.00", "lithology_raw_data": "RED SILTY SAND", @@ -388788,7 +388788,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "12.00", "lithology_to": "14.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL", @@ -388817,7 +388817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND", @@ -388846,7 +388846,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-07-26T21:06:32Z", "activity_submission": null, - "well_tag_number": 113032, + "well": 113032, "lithology_from": "45.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", @@ -388875,7 +388875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:43:05Z", "activity_submission": null, - "well_tag_number": 113066, + "well": 113066, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "DIRT", @@ -388904,7 +388904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "239.00", "lithology_to": "248.00", "lithology_raw_data": "W.B. GREY SAND (CLEAN WATER)", @@ -388933,7 +388933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, - "well_tag_number": 113013, + "well": 113013, "lithology_from": "1.00", "lithology_to": "300.00", "lithology_raw_data": "some quartz, competant", @@ -388962,7 +388962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "400.00", "lithology_to": "440.00", "lithology_raw_data": "BEDROCK, BASALT", @@ -388991,7 +388991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "BOULDER", @@ -389020,7 +389020,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:31Z", "activity_submission": null, - "well_tag_number": 113307, + "well": 113307, "lithology_from": "108.00", "lithology_to": "362.00", "lithology_raw_data": null, @@ -389049,7 +389049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "252.00", "lithology_to": "255.00", "lithology_raw_data": null, @@ -389078,7 +389078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:07Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "DARK GREY", @@ -389107,7 +389107,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T18:46:06Z", "activity_submission": null, - "well_tag_number": 112666, + "well": 112666, "lithology_from": "95.00", "lithology_to": "300.00", "lithology_raw_data": "CRYSTALLINE", @@ -389136,7 +389136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, - "well_tag_number": 112588, + "well": 112588, "lithology_from": "200.00", "lithology_to": "275.00", "lithology_raw_data": "MEDIUM/HARD; VOLCANIC - FELDSPAR", @@ -389165,7 +389165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:39:35Z", "activity_submission": null, - "well_tag_number": 112789, + "well": 112789, "lithology_from": "3.00", "lithology_to": "44.00", "lithology_raw_data": null, @@ -389194,7 +389194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, - "well_tag_number": 112391, + "well": 112391, "lithology_from": "105.00", "lithology_to": "116.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -389223,7 +389223,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, - "well_tag_number": 112702, + "well": 112702, "lithology_from": "35.00", "lithology_to": "143.00", "lithology_raw_data": "BEDROCK", @@ -389252,7 +389252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, - "well_tag_number": 112515, + "well": 112515, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -389281,7 +389281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "62.00", "lithology_to": "66.00", "lithology_raw_data": null, @@ -389310,7 +389310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "69.00", "lithology_to": "142.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK ", @@ -389339,7 +389339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, - "well_tag_number": 113210, + "well": 113210, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "Shale", @@ -389368,7 +389368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "70.00", "lithology_to": "72.00", "lithology_raw_data": "SILT", @@ -389397,7 +389397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "74.00", "lithology_to": "87.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", @@ -389426,7 +389426,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, - "well_tag_number": 112703, + "well": 112703, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "TILL", @@ -389455,7 +389455,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": "and gravel", @@ -389484,7 +389484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": "with black streaks", @@ -389513,7 +389513,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "85.00", "lithology_to": "88.00", "lithology_raw_data": null, @@ -389542,7 +389542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -389571,7 +389571,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, - "well_tag_number": 112591, + "well": 112591, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SILTY SAND", @@ -389600,7 +389600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "118.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -389629,7 +389629,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:51:36Z", "activity_submission": null, - "well_tag_number": 112244, + "well": 112244, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "CLAY", @@ -389658,7 +389658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "110.00", "lithology_to": "111.00", "lithology_raw_data": null, @@ -389687,7 +389687,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "250.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM/HARD", @@ -389716,7 +389716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, - "well_tag_number": 112722, + "well": 112722, "lithology_from": "26.00", "lithology_to": "38.00", "lithology_raw_data": "WATER BEARING SAND AND GRAVEL", @@ -389745,7 +389745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "65.00", "lithology_to": "72.00", "lithology_raw_data": "SHALE BENTONINTIC GRY", @@ -389774,7 +389774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, - "well_tag_number": 112988, + "well": 112988, "lithology_from": "20.00", "lithology_to": "25.00", "lithology_raw_data": null, @@ -389803,7 +389803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "58.00", "lithology_to": "76.00", "lithology_raw_data": "Grey silty clay, some gravel, firm", @@ -389832,7 +389832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "231.00", "lithology_to": "330.00", "lithology_raw_data": "with cobbles, very thin sand layers", @@ -389861,7 +389861,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, - "well_tag_number": 113142, + "well": 113142, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": "WET SILTY SANDS AND GRAVELS", @@ -389890,7 +389890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, - "well_tag_number": 112243, + "well": 112243, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SHALE", @@ -389919,7 +389919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T22:25:16Z", "activity_submission": null, - "well_tag_number": 112717, + "well": 112717, "lithology_from": "31.00", "lithology_to": "59.00", "lithology_raw_data": "CLEANER SAND AND GRAVEL", @@ -389948,7 +389948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -389977,7 +389977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -390006,7 +390006,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": null, "lithology_to": "6.00", "lithology_raw_data": null, @@ -390035,7 +390035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": null, @@ -390064,7 +390064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "55.00", "lithology_to": "75.00", "lithology_raw_data": null, @@ -390093,7 +390093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "240.00", "lithology_to": "250.00", "lithology_raw_data": "CLAY, SILT, TRACE OF GRAVEL", @@ -390122,7 +390122,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "66.00", "lithology_to": "75.00", "lithology_raw_data": "sand, fine med", @@ -390151,7 +390151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "167.00", "lithology_to": "175.00", "lithology_raw_data": "fine sand and gravels", @@ -390180,7 +390180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "320.00", "lithology_to": "368.00", "lithology_raw_data": null, @@ -390209,7 +390209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "15.50", "lithology_to": "26.00", "lithology_raw_data": "LOOSE-DENSE, DARK GRAY, MEDIUM SAND AND COARS GRAVEL WITH TRACE OF FINES", @@ -390238,7 +390238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL", @@ -390267,7 +390267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", @@ -390296,7 +390296,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "8.00", "lithology_to": "17.00", "lithology_raw_data": "clay", @@ -390325,7 +390325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "0.00", "lithology_to": "38.00", "lithology_raw_data": "clay and rocks", @@ -390354,7 +390354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "63.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -390383,7 +390383,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, - "well_tag_number": 112878, + "well": 112878, "lithology_from": "18.00", "lithology_to": "35.00", "lithology_raw_data": "compact", @@ -390412,7 +390412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "51.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY SILT", @@ -390441,7 +390441,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "109.00", "lithology_to": "111.00", "lithology_raw_data": "WITH CLAY", @@ -390470,7 +390470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "157.00", "lithology_to": "181.00", "lithology_raw_data": "with fine sand", @@ -390499,7 +390499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "82.00", "lithology_to": "83.00", "lithology_raw_data": "fractured", @@ -390528,7 +390528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "COARSE GRAVEL WITH LARGE COBBLES, SMALL BOULDERS, SAND WITH FINES, FINE DIRTY SAND (MUD) GREY BROWN", @@ -390557,7 +390557,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, - "well_tag_number": 112613, + "well": 112613, "lithology_from": "90.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -390586,7 +390586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "51.00", "lithology_to": "64.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -390615,7 +390615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "110.00", "lithology_to": "136.00", "lithology_raw_data": "GREY SILTS, SOME SAND", @@ -390644,7 +390644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:26Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "122.00", "lithology_to": "144.00", "lithology_raw_data": "CLAY", @@ -390673,7 +390673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "1.31", "lithology_to": "19.96", "lithology_raw_data": null, @@ -390702,7 +390702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "497.00", "lithology_to": "510.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -390731,7 +390731,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "222.00", "lithology_to": "290.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", @@ -390760,7 +390760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "145.00", "lithology_to": "168.00", "lithology_raw_data": null, @@ -390789,7 +390789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "455.00", "lithology_to": "600.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -390818,7 +390818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "42.00", "lithology_to": "50.00", "lithology_raw_data": "SILTY BROWN SAND WITH SILTY CLAY LAYERS", @@ -390847,7 +390847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "275.00", "lithology_to": "290.00", "lithology_raw_data": "WB SAND/GRAVEL (CLEANER)", @@ -390876,7 +390876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, - "well_tag_number": 112229, + "well": 112229, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "LOOSE, BLACK ORGANICS", @@ -390905,7 +390905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, - "well_tag_number": 113008, + "well": 113008, "lithology_from": "29.00", "lithology_to": "36.00", "lithology_raw_data": "sand-med course", @@ -390934,7 +390934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:58:07Z", "activity_submission": null, - "well_tag_number": 112651, + "well": 112651, "lithology_from": "114.00", "lithology_to": "139.00", "lithology_raw_data": "SAND AND SILT", @@ -390963,7 +390963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, - "well_tag_number": 112994, + "well": 112994, "lithology_from": "17.00", "lithology_to": "19.00", "lithology_raw_data": "FRACTURED CRYSTALLINE BEDROCK", @@ -390992,7 +390992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "73.00", "lithology_to": "74.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -391021,7 +391021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "62.00", "lithology_to": "80.00", "lithology_raw_data": "SAND", @@ -391050,7 +391050,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, - "well_tag_number": 113070, + "well": 113070, "lithology_from": "14.00", "lithology_to": "19.00", "lithology_raw_data": "W.B. MEDIUM GRAVEL AND SAND (VERY RED)", @@ -391079,7 +391079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM SAND", @@ -391108,7 +391108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, - "well_tag_number": 113252, + "well": 113252, "lithology_from": "145.00", "lithology_to": "155.00", "lithology_raw_data": "sand boulders", @@ -391137,7 +391137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "7.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -391166,7 +391166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, - "well_tag_number": 113152, + "well": 113152, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "sand fine med", @@ -391195,7 +391195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T22:11:12Z", "activity_submission": null, - "well_tag_number": 113040, + "well": 113040, "lithology_from": "20.00", "lithology_to": "255.00", "lithology_raw_data": null, @@ -391224,7 +391224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "42.00", "lithology_to": "96.00", "lithology_raw_data": "GREY CLAY", @@ -391253,7 +391253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -391282,7 +391282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "274.00", "lithology_to": "310.00", "lithology_raw_data": "GREY-PINK HEAVING BEDROCK", @@ -391311,7 +391311,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:24:20Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "220.00", "lithology_to": "280.00", "lithology_raw_data": "COARSE SAND", @@ -391340,7 +391340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, - "well_tag_number": 112862, + "well": 112862, "lithology_from": "85.00", "lithology_to": "105.00", "lithology_raw_data": "CLAY, TILL, SOME GRAVEL", @@ -391369,7 +391369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "10.00", "lithology_to": "160.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH FEW TRACES", @@ -391398,7 +391398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "29.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -391427,7 +391427,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND", @@ -391456,7 +391456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, COARSE SAND, LENSES OF SAND", @@ -391485,7 +391485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "SANDY CLAY", @@ -391514,7 +391514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, - "well_tag_number": 112844, + "well": 112844, "lithology_from": "10.00", "lithology_to": "21.00", "lithology_raw_data": "SAND AND GRAVEL, RUSTY W.B.", @@ -391543,7 +391543,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "8.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -391572,7 +391572,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, - "well_tag_number": 112654, + "well": 112654, "lithology_from": "110.00", "lithology_to": "115.00", "lithology_raw_data": "cased bedrock", @@ -391601,7 +391601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "90.00", "lithology_to": "150.00", "lithology_raw_data": "SANDS AND GRAVEL", @@ -391630,7 +391630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "79.00", "lithology_to": "96.00", "lithology_raw_data": "DRY SAND", @@ -391659,7 +391659,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "168.00", "lithology_to": "191.00", "lithology_raw_data": null, @@ -391688,7 +391688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY, SILT", @@ -391717,7 +391717,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, - "well_tag_number": 112992, + "well": 112992, "lithology_from": "56.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -391746,7 +391746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "136.00", "lithology_to": "158.00", "lithology_raw_data": null, @@ -391775,7 +391775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "558.00", "lithology_to": "645.00", "lithology_raw_data": "SANDSTONE (FINE-COARSE)", @@ -391804,7 +391804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "85.00", "lithology_to": "95.00", "lithology_raw_data": "SH W/ SS & SLTST LAYERS", @@ -391833,7 +391833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, - "well_tag_number": 113168, + "well": 113168, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "sand gravel", @@ -391862,7 +391862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "860.00", "lithology_to": "1020.00", "lithology_raw_data": "bedrock with very hard zones", @@ -391891,7 +391891,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "96.00", "lithology_to": "106.00", "lithology_raw_data": "sand, fine-med", @@ -391920,7 +391920,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "40.00", "lithology_to": "46.00", "lithology_raw_data": "sand, fine med", @@ -391949,7 +391949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "630.00", "lithology_to": "641.00", "lithology_raw_data": "SILTSTONE WITH FINE SANDSTONE STRINGERS", @@ -391978,7 +391978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "30.00", "lithology_to": "49.00", "lithology_raw_data": null, @@ -392007,7 +392007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "gavel with wood debris", @@ -392036,7 +392036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "128.00", "lithology_to": "145.00", "lithology_raw_data": null, @@ -392065,7 +392065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SILT, FINE SAND", @@ -392094,7 +392094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "till", @@ -392123,7 +392123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "4.00", "lithology_to": "67.00", "lithology_raw_data": "MEDIUM/HARD DENSE HARDPAN WITH COBBLES", @@ -392152,7 +392152,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T00:37:20Z", "activity_submission": null, - "well_tag_number": 112657, + "well": 112657, "lithology_from": "9.00", "lithology_to": "195.00", "lithology_raw_data": null, @@ -392181,7 +392181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "30.00", "lithology_to": "32.00", "lithology_raw_data": "BEDROCK", @@ -392210,7 +392210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, - "well_tag_number": 113095, + "well": 113095, "lithology_from": "221.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", @@ -392239,7 +392239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, - "well_tag_number": 112599, + "well": 112599, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -392268,7 +392268,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "160.00", "lithology_to": "175.00", "lithology_raw_data": "SAND", @@ -392297,7 +392297,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "67.00", "lithology_to": "69.00", "lithology_raw_data": "MEDIUM-HARD; BEDROCK", @@ -392326,7 +392326,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", @@ -392355,7 +392355,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "36.00", "lithology_to": "45.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -392384,7 +392384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:33:55Z", "activity_submission": null, - "well_tag_number": 112966, + "well": 112966, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -392413,7 +392413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, - "well_tag_number": 112412, + "well": 112412, "lithology_from": "41.00", "lithology_to": "215.00", "lithology_raw_data": "BEDROCK AND BASALT LAYERED", @@ -392442,7 +392442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "Hard Grey bedrock", @@ -392471,7 +392471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "BEDROCK", @@ -392500,7 +392500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -392529,7 +392529,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, - "well_tag_number": 112262, + "well": 112262, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", @@ -392558,7 +392558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": "GLACIAL TILL", @@ -392587,7 +392587,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "30.00", "lithology_to": "66.00", "lithology_raw_data": "boulders", @@ -392616,7 +392616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "234.00", "lithology_to": "236.00", "lithology_raw_data": "BROWN CLAY", @@ -392645,7 +392645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, - "well_tag_number": 112763, + "well": 112763, "lithology_from": "15.00", "lithology_to": "24.00", "lithology_raw_data": "DENSE, MEDIUM, STIFF; SILTY CLAY - TRACE SAND & GRAVEL. INCREASE IN GRAVEL CONTENT & SIZE-UP TO 4CM", @@ -392674,7 +392674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "ORGANICS WITH MIXED ROCKS", @@ -392703,7 +392703,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY/ROCKS", @@ -392732,7 +392732,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "1101.40", "lithology_to": "1478.60", "lithology_raw_data": "HARD TO VERY HARD; CONGLOMERATE SANDSTONE", @@ -392761,7 +392761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "161.00", "lithology_to": "164.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH SOME GRAVEL LAYERS", @@ -392790,7 +392790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "damp", @@ -392819,7 +392819,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, - "well_tag_number": 112698, + "well": 112698, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "some silt, fine gravel", @@ -392848,7 +392848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "54.00", "lithology_to": "60.00", "lithology_raw_data": "SHALE", @@ -392877,7 +392877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, - "well_tag_number": 112970, + "well": 112970, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "DRY GRAVEL & SAND", @@ -392906,7 +392906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "113.00", "lithology_to": "115.00", "lithology_raw_data": "GRAVEL", @@ -392935,7 +392935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, - "well_tag_number": 112605, + "well": 112605, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -392964,7 +392964,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, - "well_tag_number": 113204, + "well": 113204, "lithology_from": "0.00", "lithology_to": "95.00", "lithology_raw_data": "gravel, boulders", @@ -392993,7 +392993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "51.00", "lithology_to": "306.00", "lithology_raw_data": "BEDROCK", @@ -393022,7 +393022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "94.00", "lithology_to": "98.00", "lithology_raw_data": "W.B. BROWN FINE SAND AND GRAVEL", @@ -393051,7 +393051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "64.00", "lithology_to": "76.00", "lithology_raw_data": null, @@ -393080,7 +393080,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "92.00", "lithology_to": "109.00", "lithology_raw_data": "gravelly", @@ -393109,7 +393109,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "460.00", "lithology_to": "493.00", "lithology_raw_data": "BLACK SHALE", @@ -393138,7 +393138,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "36.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, SAND", @@ -393167,7 +393167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "175.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -393196,7 +393196,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-10T21:52:28Z", "activity_submission": null, - "well_tag_number": 113080, + "well": 113080, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "Till, Dark grey, Sense Stiff, Moist", @@ -393225,7 +393225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, - "well_tag_number": 113153, + "well": 113153, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": "sand, med coarse", @@ -393254,7 +393254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, - "well_tag_number": 113099, + "well": 113099, "lithology_from": "32.00", "lithology_to": "75.00", "lithology_raw_data": "clay and rocks", @@ -393283,7 +393283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "142.00", "lithology_to": "150.00", "lithology_raw_data": null, @@ -393312,7 +393312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, - "well_tag_number": 113092, + "well": 113092, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "sand", @@ -393341,7 +393341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "87.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", @@ -393370,7 +393370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "22.00", "lithology_to": "29.00", "lithology_raw_data": "CLAY", @@ -393399,7 +393399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "120.00", "lithology_to": "143.00", "lithology_raw_data": null, @@ -393428,7 +393428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, - "well_tag_number": 113299, + "well": 113299, "lithology_from": "12.00", "lithology_to": "54.00", "lithology_raw_data": "sand with gravel", @@ -393457,7 +393457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "258.00", "lithology_to": "261.00", "lithology_raw_data": null, @@ -393486,7 +393486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "SILTY BROWN SANDS, SOME GRAVEL", @@ -393515,7 +393515,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:22:43Z", "activity_submission": null, - "well_tag_number": 112427, + "well": 112427, "lithology_from": "47.00", "lithology_to": "48.00", "lithology_raw_data": "BEDROCK", @@ -393544,7 +393544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, - "well_tag_number": 112370, + "well": 112370, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "BLACK/WHITE/PINK, GRANITE BEDROCK", @@ -393573,7 +393573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "23.00", "lithology_to": "118.00", "lithology_raw_data": "SAND", @@ -393602,7 +393602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:51Z", "activity_submission": null, - "well_tag_number": 112350, + "well": 112350, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", @@ -393631,7 +393631,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "3.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND", @@ -393660,7 +393660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "293.00", "lithology_to": "462.00", "lithology_raw_data": null, @@ -393689,7 +393689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, - "well_tag_number": 113218, + "well": 113218, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", @@ -393718,7 +393718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, - "well_tag_number": 112588, + "well": 112588, "lithology_from": "15.00", "lithology_to": "106.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -393747,7 +393747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", @@ -393776,7 +393776,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, - "well_tag_number": 112845, + "well": 112845, "lithology_from": "33.00", "lithology_to": "57.00", "lithology_raw_data": "GREY CLAYS, SILTS AND WOOD. SOME SANDS", @@ -393805,7 +393805,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, - "well_tag_number": 112927, + "well": 112927, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SAND, SOME BOULDERS", @@ -393834,7 +393834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "3.00", "lithology_to": "16.00", "lithology_raw_data": "TILL", @@ -393863,7 +393863,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -393892,7 +393892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "68.00", "lithology_to": "74.00", "lithology_raw_data": "and gravel", @@ -393921,7 +393921,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "482.00", "lithology_to": "533.00", "lithology_raw_data": "grey with trace of yellow (gold)", @@ -393950,7 +393950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, - "well_tag_number": 112980, + "well": 112980, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -393979,7 +393979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, - "well_tag_number": 112462, + "well": 112462, "lithology_from": "4.00", "lithology_to": "83.00", "lithology_raw_data": null, @@ -394008,7 +394008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", @@ -394037,7 +394037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "207.00", "lithology_to": "215.00", "lithology_raw_data": "VERY SILTY SAND AND GRAVEL (BROWN/MUDDY)", @@ -394066,7 +394066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "530.00", "lithology_to": "535.00", "lithology_raw_data": "SILTSTONE & FINE SANDSTONE", @@ -394095,7 +394095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, - "well_tag_number": 112654, + "well": 112654, "lithology_from": "115.00", "lithology_to": "195.00", "lithology_raw_data": null, @@ -394124,7 +394124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, - "well_tag_number": 113185, + "well": 113185, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -394153,7 +394153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:11:13Z", "activity_submission": null, - "well_tag_number": 113018, + "well": 113018, "lithology_from": "7.00", "lithology_to": "300.00", "lithology_raw_data": "sandstone, shale lenses", @@ -394182,7 +394182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, - "well_tag_number": 112831, + "well": 112831, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "cobbles, balders", @@ -394211,7 +394211,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "5.00", "lithology_to": "75.00", "lithology_raw_data": "MEDIUM GRAINED SAND WITH COBBLES", @@ -394240,7 +394240,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY", @@ -394269,7 +394269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DARK BROWN", @@ -394298,7 +394298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "32.00", "lithology_to": "34.00", "lithology_raw_data": "BROWN SAND, DAMP", @@ -394327,7 +394327,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, - "well_tag_number": 113216, + "well": 113216, "lithology_from": "100.00", "lithology_to": "220.00", "lithology_raw_data": "Shale", @@ -394356,7 +394356,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, - "well_tag_number": 112343, + "well": 112343, "lithology_from": "230.00", "lithology_to": "275.00", "lithology_raw_data": "BLUE/GREEN SEAMS OF GNEISS", @@ -394385,7 +394385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "282.00", "lithology_to": "290.00", "lithology_raw_data": "CLAY WITH SILT SEAMS - SOME GRAVEL", @@ -394414,7 +394414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "89.00", "lithology_to": "168.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -394443,7 +394443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "91.00", "lithology_to": "97.00", "lithology_raw_data": null, @@ -394472,7 +394472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "176.00", "lithology_to": "187.00", "lithology_raw_data": "gravel", @@ -394501,7 +394501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "340.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -394530,7 +394530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "110.00", "lithology_to": "137.00", "lithology_raw_data": "some sand", @@ -394559,7 +394559,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "27.00", "lithology_to": "40.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", @@ -394588,7 +394588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "46.00", "lithology_to": "49.00", "lithology_raw_data": "SILT, SOME SAND, TRACE CLAY", @@ -394617,7 +394617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "300.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", @@ -394646,7 +394646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "285.00", "lithology_to": "291.00", "lithology_raw_data": null, @@ -394675,7 +394675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "100.00", "lithology_to": "112.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -394704,7 +394704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "345.00", "lithology_to": "550.00", "lithology_raw_data": "GREY/GREEN/WHITE, VOLCANIC WITH GREEN AND WHITE TRACES", @@ -394733,7 +394733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "18.00", "lithology_to": "37.00", "lithology_raw_data": "SMALL GRAVEL - MEDIUM SAND", @@ -394762,7 +394762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:30Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY", @@ -394791,7 +394791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", @@ -394820,7 +394820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND", @@ -394849,7 +394849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "113.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM TO FINE SAND", @@ -394878,7 +394878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "97.00", "lithology_to": "120.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -394907,7 +394907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, - "well_tag_number": 112707, + "well": 112707, "lithology_from": "4.00", "lithology_to": "19.00", "lithology_raw_data": "MEDIUM/SOFT; SOFT BROWN, WEATHERED BEDROCK", @@ -394936,7 +394936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, - "well_tag_number": 112686, + "well": 112686, "lithology_from": "110.00", "lithology_to": "170.00", "lithology_raw_data": "BASALT", @@ -394965,7 +394965,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "190.00", "lithology_to": "207.00", "lithology_raw_data": "W.B. SAND AND GRAVEL, BROWN", @@ -394994,7 +394994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "TILL", @@ -395023,7 +395023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -395052,7 +395052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, - "well_tag_number": 112420, + "well": 112420, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", @@ -395081,7 +395081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", @@ -395110,7 +395110,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "84.60", "lithology_to": "281.40", "lithology_raw_data": "SANDSTONE WITH SILTSTONE AND MUDSTONE WITH SHALE, SANDSTONE", @@ -395139,7 +395139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, - "well_tag_number": 113304, + "well": 113304, "lithology_from": "10.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -395168,7 +395168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:41Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "200.00", "lithology_to": "205.00", "lithology_raw_data": "COARSE SAND", @@ -395197,7 +395197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, - "well_tag_number": 113150, + "well": 113150, "lithology_from": "32.00", "lithology_to": "45.00", "lithology_raw_data": "sand with gravel", @@ -395226,7 +395226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "14.00", "lithology_to": "35.00", "lithology_raw_data": "BROWN SILTY SAND AND GRAVEL", @@ -395255,7 +395255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "200.00", "lithology_to": "235.00", "lithology_raw_data": "GREY/BROWN SILTS, SOME SAND", @@ -395284,7 +395284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "28.00", "lithology_to": "29.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -395313,7 +395313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, - "well_tag_number": 113141, + "well": 113141, "lithology_from": "71.00", "lithology_to": "74.00", "lithology_raw_data": "BLACK ORGANICS AND TILL", @@ -395342,7 +395342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "MINOR GRAVEL, SAND, CLAY", @@ -395371,7 +395371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "5.00", "lithology_to": "24.00", "lithology_raw_data": "HARD PAN", @@ -395400,7 +395400,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, - "well_tag_number": 112269, + "well": 112269, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -395429,7 +395429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "170.00", "lithology_to": "300.00", "lithology_raw_data": "COMPRESSED CAY", @@ -395458,7 +395458,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, - "well_tag_number": 112840, + "well": 112840, "lithology_from": "19.00", "lithology_to": "108.00", "lithology_raw_data": "bedrock, cuttings look like granite", @@ -395487,7 +395487,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "156.00", "lithology_to": "160.00", "lithology_raw_data": "Shale", @@ -395516,7 +395516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, - "well_tag_number": 113006, + "well": 113006, "lithology_from": "12.00", "lithology_to": "18.00", "lithology_raw_data": "compact", @@ -395545,7 +395545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, - "well_tag_number": 112636, + "well": 112636, "lithology_from": "3.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -395574,7 +395574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:31:58Z", "activity_submission": null, - "well_tag_number": 112945, + "well": 112945, "lithology_from": "65.00", "lithology_to": "235.00", "lithology_raw_data": "WHITE/BLACK", @@ -395603,7 +395603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": "compact", @@ -395632,7 +395632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:04Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY/SILT", @@ -395661,7 +395661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "85.00", "lithology_to": "89.00", "lithology_raw_data": "and gravel", @@ -395690,7 +395690,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, - "well_tag_number": 112903, + "well": 112903, "lithology_from": "111.00", "lithology_to": "112.00", "lithology_raw_data": "FINER SAND & GRAVEL; RED/BROWN", @@ -395719,7 +395719,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY", @@ -395748,7 +395748,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "116.00", "lithology_to": "121.00", "lithology_raw_data": null, @@ -395777,7 +395777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, - "well_tag_number": 112871, + "well": 112871, "lithology_from": "22.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -395806,7 +395806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "35.00", "lithology_to": "50.00", "lithology_raw_data": "Gravel, some clay, trace silt, grey", @@ -395835,7 +395835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:45:45Z", "activity_submission": null, - "well_tag_number": 112353, + "well": 112353, "lithology_from": "0.00", "lithology_to": "70.00", "lithology_raw_data": "boulders clay gravel", @@ -395864,7 +395864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, - "well_tag_number": 112942, + "well": 112942, "lithology_from": "20.00", "lithology_to": "113.00", "lithology_raw_data": "CLAY AND SOME GRAVEL", @@ -395893,7 +395893,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "15.00", "lithology_to": "18.50", "lithology_raw_data": null, @@ -395922,7 +395922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, - "well_tag_number": 112805, + "well": 112805, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -395951,7 +395951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -395980,7 +395980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "116.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -396009,7 +396009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": "sand fine med", @@ -396038,7 +396038,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:56:13Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "280.00", "lithology_to": "315.00", "lithology_raw_data": "MEDIUM/HARD, PINK/WHITE, VOLCANIC BEDROCK", @@ -396067,7 +396067,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:43:56Z", "activity_submission": null, - "well_tag_number": 112778, + "well": 112778, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -396096,7 +396096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, - "well_tag_number": 113180, + "well": 113180, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "gravel, cobbles", @@ -396125,7 +396125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SAND, MINOR GRAVEL", @@ -396154,7 +396154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "80.00", "lithology_to": "81.00", "lithology_raw_data": "fractured", @@ -396183,7 +396183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "50.00", "lithology_to": "80.00", "lithology_raw_data": "and gravel", @@ -396212,7 +396212,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "265.00", "lithology_to": "272.00", "lithology_raw_data": "SILT & SAND", @@ -396241,7 +396241,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, - "well_tag_number": 112241, + "well": 112241, "lithology_from": "90.00", "lithology_to": "137.00", "lithology_raw_data": "SANDSTONE", @@ -396270,7 +396270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, - "well_tag_number": 112929, + "well": 112929, "lithology_from": "155.00", "lithology_to": "255.00", "lithology_raw_data": "SHALE, CONGLOMERATE", @@ -396299,7 +396299,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "39.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL (COARSE), BROKEN ROCK", @@ -396328,7 +396328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "250.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -396357,7 +396357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, - "well_tag_number": 112624, + "well": 112624, "lithology_from": "205.00", "lithology_to": "277.00", "lithology_raw_data": "BLACK GRANITE", @@ -396386,7 +396386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "110.00", "lithology_to": "115.00", "lithology_raw_data": "GREY SAND (LITTLE MORE COARSE), W.B.", @@ -396415,7 +396415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, - "well_tag_number": 112243, + "well": 112243, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY", @@ -396444,7 +396444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "128.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -396473,7 +396473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, - "well_tag_number": 112781, + "well": 112781, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "MUD", @@ -396502,7 +396502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T19:54:04Z", "activity_submission": null, - "well_tag_number": 113275, + "well": 113275, "lithology_from": "0.00", "lithology_to": "54.25", "lithology_raw_data": "gravel", @@ -396531,7 +396531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "4.00", "lithology_to": "48.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME SANDY CLAY", @@ -396560,7 +396560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "3.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN CLAY", @@ -396589,7 +396589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "19.00", "lithology_to": "38.00", "lithology_raw_data": "clay and gravel layers", @@ -396618,7 +396618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "150.00", "lithology_to": "230.00", "lithology_raw_data": null, @@ -396647,7 +396647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "61.00", "lithology_to": "140.00", "lithology_raw_data": "SILTSTONE AND FINE SANDSTONE", @@ -396676,7 +396676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "55.00", "lithology_to": "62.00", "lithology_raw_data": "sand, fine-med", @@ -396705,7 +396705,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, - "well_tag_number": 113304, + "well": 113304, "lithology_from": "32.00", "lithology_to": "45.00", "lithology_raw_data": "some gravel", @@ -396734,7 +396734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, - "well_tag_number": 112320, + "well": 112320, "lithology_from": "6.00", "lithology_to": "55.00", "lithology_raw_data": "BEDROCK, CRYSTALLINE", @@ -396763,7 +396763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:56:06Z", "activity_submission": null, - "well_tag_number": 112299, + "well": 112299, "lithology_from": "133.00", "lithology_to": "137.00", "lithology_raw_data": "FINE SAND", @@ -396792,7 +396792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "355.00", "lithology_to": "360.00", "lithology_raw_data": "Gravel, some sand", @@ -396821,7 +396821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "24.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -396850,7 +396850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "100.00", "lithology_to": "106.00", "lithology_raw_data": "SAND & MEDIUM GRAVEL", @@ -396879,7 +396879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, - "well_tag_number": 113105, + "well": 113105, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "sand gravel", @@ -396908,7 +396908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "71.00", "lithology_to": "93.00", "lithology_raw_data": "gravel", @@ -396937,7 +396937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, - "well_tag_number": 113252, + "well": 113252, "lithology_from": "155.00", "lithology_to": "175.00", "lithology_raw_data": "gravel, boulders", @@ -396966,7 +396966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "180.00", "lithology_to": "240.00", "lithology_raw_data": "LAYER CLAY ROCK GRAVEL SILT", @@ -396995,7 +396995,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "119.00", "lithology_to": "320.00", "lithology_raw_data": "WHITE/GREY", @@ -397024,7 +397024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, - "well_tag_number": 112528, + "well": 112528, "lithology_from": "45.00", "lithology_to": "60.00", "lithology_raw_data": "fine brown sand", @@ -397053,7 +397053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:56:26Z", "activity_submission": null, - "well_tag_number": 113142, + "well": 113142, "lithology_from": "0.00", "lithology_to": "63.00", "lithology_raw_data": "WASTE ROCK", @@ -397082,7 +397082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T17:55:33Z", "activity_submission": null, - "well_tag_number": 113177, + "well": 113177, "lithology_from": "15.00", "lithology_to": "75.00", "lithology_raw_data": "a little gravel", @@ -397111,7 +397111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "COARSE SAND, GRAVEL", @@ -397140,7 +397140,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, - "well_tag_number": 112707, + "well": 112707, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FRACTURED ROCK WITH BROWN SANDY CLAY", @@ -397169,7 +397169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, - "well_tag_number": 113003, + "well": 113003, "lithology_from": "195.00", "lithology_to": "200.00", "lithology_raw_data": "Brown Glacial Till", @@ -397198,7 +397198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "clay/silt", @@ -397227,7 +397227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "53.00", "lithology_to": "105.00", "lithology_raw_data": "BROWN SILTY CLAY SOME GRAVEL", @@ -397256,7 +397256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "1.00", "lithology_to": "19.00", "lithology_raw_data": "stony", @@ -397285,7 +397285,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "82.00", "lithology_to": "98.00", "lithology_raw_data": "trace of gravel", @@ -397314,7 +397314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, - "well_tag_number": 112701, + "well": 112701, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "TILL", @@ -397343,7 +397343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "120.00", "lithology_to": "170.00", "lithology_raw_data": "silty", @@ -397372,7 +397372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "475.00", "lithology_to": "482.00", "lithology_raw_data": null, @@ -397401,7 +397401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, - "well_tag_number": 112328, + "well": 112328, "lithology_from": "149.00", "lithology_to": "225.00", "lithology_raw_data": "BEDROCK", @@ -397430,7 +397430,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, - "well_tag_number": 112699, + "well": 112699, "lithology_from": "70.00", "lithology_to": "106.00", "lithology_raw_data": "SANDSTONE", @@ -397459,7 +397459,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:30Z", "activity_submission": null, - "well_tag_number": 113036, + "well": 113036, "lithology_from": "0.00", "lithology_to": "155.00", "lithology_raw_data": "CLAY", @@ -397488,7 +397488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -397517,7 +397517,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "47.00", "lithology_to": "132.00", "lithology_raw_data": "PINK BEDROCK GRANITE", @@ -397546,7 +397546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:40Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "198.00", "lithology_to": "235.00", "lithology_raw_data": "very fine grey/brown ", @@ -397575,7 +397575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "130.00", "lithology_to": "150.00", "lithology_raw_data": "black", @@ -397604,7 +397604,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T18:00:21Z", "activity_submission": null, - "well_tag_number": 113244, + "well": 113244, "lithology_from": "0.00", "lithology_to": "1.50", "lithology_raw_data": null, @@ -397633,7 +397633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "167.00", "lithology_to": "168.00", "lithology_raw_data": null, @@ -397662,7 +397662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, - "well_tag_number": 112273, + "well": 112273, "lithology_from": "56.00", "lithology_to": "57.00", "lithology_raw_data": "till", @@ -397691,7 +397691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "210.00", "lithology_to": "225.00", "lithology_raw_data": "RED-GREY VOLCANIC ROCK", @@ -397720,7 +397720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "3.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -397749,7 +397749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:05:25Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "70.00", "lithology_to": "95.00", "lithology_raw_data": "Light grey silt, sand with clay/silt", @@ -397778,7 +397778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -397807,7 +397807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, MEDIUM TO COARSE", @@ -397836,7 +397836,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "28.00", "lithology_to": "36.00", "lithology_raw_data": "FIRM GRAY BLUE LAYERED BROKEN GRAVEL", @@ -397865,7 +397865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, - "well_tag_number": 112898, + "well": 112898, "lithology_from": "22.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY & ROCKS", @@ -397894,7 +397894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -397923,7 +397923,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "65.00", "lithology_to": "171.00", "lithology_raw_data": null, @@ -397952,7 +397952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, - "well_tag_number": 112411, + "well": 112411, "lithology_from": "0.00", "lithology_to": "54.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -397981,7 +397981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "54.00", "lithology_to": "56.00", "lithology_raw_data": "and gravel", @@ -398010,7 +398010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:59:19Z", "activity_submission": null, - "well_tag_number": 112930, + "well": 112930, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "TILL GRAVEL", @@ -398039,7 +398039,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "236.00", "lithology_to": "238.00", "lithology_raw_data": null, @@ -398068,7 +398068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "160.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", @@ -398097,7 +398097,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, - "well_tag_number": 112293, + "well": 112293, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "BLACK/GREY/YELLOW ", @@ -398126,7 +398126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "142.00", "lithology_to": "144.00", "lithology_raw_data": null, @@ -398155,7 +398155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, - "well_tag_number": 112251, + "well": 112251, "lithology_from": "82.00", "lithology_to": "90.00", "lithology_raw_data": "LIGHT GREY SHALE", @@ -398184,7 +398184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, - "well_tag_number": 112547, + "well": 112547, "lithology_from": "40.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY AND ROCK", @@ -398213,7 +398213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, - "well_tag_number": 112683, + "well": 112683, "lithology_from": "15.00", "lithology_to": "303.00", "lithology_raw_data": null, @@ -398242,7 +398242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "48.00", "lithology_to": "58.00", "lithology_raw_data": "COARSE BROWN SAND WITH STONES", @@ -398271,7 +398271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "156.00", "lithology_to": "161.00", "lithology_raw_data": null, @@ -398300,7 +398300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "463.00", "lithology_to": "470.00", "lithology_raw_data": null, @@ -398329,7 +398329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "86.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -398358,7 +398358,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "225.00", "lithology_to": "237.00", "lithology_raw_data": "BROWN-YELLOW VOLCANIC ROCK", @@ -398387,7 +398387,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "17.00", "lithology_to": "110.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -398416,7 +398416,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "188.00", "lithology_to": "194.00", "lithology_raw_data": "COARSE SAND, FINE GRAVEL", @@ -398445,7 +398445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "24.00", "lithology_to": "42.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -398474,7 +398474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "38.00", "lithology_to": "39.00", "lithology_raw_data": null, @@ -398503,7 +398503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "26.00", "lithology_to": "36.00", "lithology_raw_data": "Brown fine to coarse sand and gravel", @@ -398532,7 +398532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, - "well_tag_number": 112231, + "well": 112231, "lithology_from": "190.00", "lithology_to": "300.00", "lithology_raw_data": "BLUE GREEN METAMORPHIC RED ZONES", @@ -398561,7 +398561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "3.00", "lithology_to": "14.00", "lithology_raw_data": "and gravel", @@ -398590,7 +398590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "87.00", "lithology_to": "89.00", "lithology_raw_data": null, @@ -398619,7 +398619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, - "well_tag_number": 112616, + "well": 112616, "lithology_from": "105.00", "lithology_to": "112.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -398648,7 +398648,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY/GRAVEL MIXED", @@ -398677,7 +398677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, - "well_tag_number": 112570, + "well": 112570, "lithology_from": "17.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -398706,7 +398706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "475.00", "lithology_to": "572.00", "lithology_raw_data": "SILT, FINE SAND, AND CLAY", @@ -398735,7 +398735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, - "well_tag_number": 113299, + "well": 113299, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -398764,7 +398764,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:37:14Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "170.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -398793,7 +398793,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:38:57Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "223.00", "lithology_to": "226.00", "lithology_raw_data": null, @@ -398822,7 +398822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "90.00", "lithology_to": "93.00", "lithology_raw_data": "sand with gravel", @@ -398851,7 +398851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "173.00", "lithology_to": "197.00", "lithology_raw_data": "GRANITE", @@ -398880,7 +398880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "17.00", "lithology_to": "21.00", "lithology_raw_data": "and gravel", @@ -398909,7 +398909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "207.00", "lithology_to": "220.00", "lithology_raw_data": "FINE AND MEDIUM SANDSTONE", @@ -398938,7 +398938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "20.00", "lithology_to": "34.00", "lithology_raw_data": "CLAY, SAND AND ROCK", @@ -398967,7 +398967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "80.00", "lithology_to": "87.00", "lithology_raw_data": null, @@ -398996,7 +398996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "58.00", "lithology_to": "62.00", "lithology_raw_data": null, @@ -399025,7 +399025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "503.00", "lithology_to": "505.00", "lithology_raw_data": "fractured", @@ -399054,7 +399054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", @@ -399083,7 +399083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -399112,7 +399112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:35:31Z", "activity_submission": null, - "well_tag_number": 112875, + "well": 112875, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": null, @@ -399141,7 +399141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", @@ -399170,7 +399170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "BEDROCK", @@ -399199,7 +399199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "23.00", "lithology_to": "26.00", "lithology_raw_data": "BOULDER", @@ -399228,7 +399228,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", @@ -399257,7 +399257,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, - "well_tag_number": 113284, + "well": 113284, "lithology_from": "60.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -399286,7 +399286,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, - "well_tag_number": 112273, + "well": 112273, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "till", @@ -399315,7 +399315,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:48:43Z", "activity_submission": null, - "well_tag_number": 112320, + "well": 112320, "lithology_from": "164.00", "lithology_to": "190.00", "lithology_raw_data": "BEDROCK, CRYSTALLINE", @@ -399344,7 +399344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, - "well_tag_number": 112819, + "well": 112819, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -399373,7 +399373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, - "well_tag_number": 112458, + "well": 112458, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -399402,7 +399402,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "18.00", "lithology_to": "38.00", "lithology_raw_data": "SAND AND GRAVEL, W.B.", @@ -399431,7 +399431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "136.00", "lithology_to": "155.00", "lithology_raw_data": "sand / gravel traces of silt", @@ -399460,7 +399460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "680.00", "lithology_to": "700.00", "lithology_raw_data": "SS", @@ -399489,7 +399489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "10.00", "lithology_to": "36.00", "lithology_raw_data": "SHALE AND SILTSTONE/COUPLE COAL LENSES", @@ -399518,7 +399518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -399547,7 +399547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": "15.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -399576,7 +399576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "57.00", "lithology_to": "75.00", "lithology_raw_data": "gravel", @@ -399605,7 +399605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, - "well_tag_number": 112417, + "well": 112417, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SMALL/MEDIUM, TILL AND GRAVEL/CLAY", @@ -399634,7 +399634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "7.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL", @@ -399663,7 +399663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "752.00", "lithology_to": "825.00", "lithology_raw_data": "GRANITE", @@ -399692,7 +399692,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "450.00", "lithology_to": "458.00", "lithology_raw_data": "sand with gravel", @@ -399721,7 +399721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "231.00", "lithology_to": "356.00", "lithology_raw_data": "SILTY FINE SAND WITH GRAVEL", @@ -399750,7 +399750,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T19:39:35Z", "activity_submission": null, - "well_tag_number": 112789, + "well": 112789, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -399779,7 +399779,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, - "well_tag_number": 112312, + "well": 112312, "lithology_from": "13.00", "lithology_to": "38.00", "lithology_raw_data": "COARSE GRAVEL & SAND", @@ -399808,7 +399808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:43:22Z", "activity_submission": null, - "well_tag_number": 112988, + "well": 112988, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -399837,7 +399837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "1478.60", "lithology_to": "1502.00", "lithology_raw_data": "SILTSTONE/MUDSTONE", @@ -399866,7 +399866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "sand with gravel", @@ -399895,7 +399895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": "and fine sand", @@ -399924,7 +399924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -399953,7 +399953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:40Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "63.00", "lithology_to": "86.00", "lithology_raw_data": "and gravel", @@ -399982,7 +399982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "55.00", "lithology_to": "83.00", "lithology_raw_data": "SILT", @@ -400011,7 +400011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, - "well_tag_number": 112902, + "well": 112902, "lithology_from": "60.00", "lithology_to": "77.00", "lithology_raw_data": "CLAY & SILT", @@ -400040,7 +400040,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T21:10:42Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "370.00", "lithology_to": "395.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC WITH WHITE AND OCCASIONAL GREEN", @@ -400069,7 +400069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:12Z", "activity_submission": null, - "well_tag_number": 112463, + "well": 112463, "lithology_from": "178.00", "lithology_to": "205.00", "lithology_raw_data": null, @@ -400098,7 +400098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, - "well_tag_number": 112987, + "well": 112987, "lithology_from": "0.00", "lithology_to": "66.00", "lithology_raw_data": "CLAY, TILL", @@ -400127,7 +400127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, - "well_tag_number": 113262, + "well": 113262, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -400156,7 +400156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, - "well_tag_number": 112439, + "well": 112439, "lithology_from": "60.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -400185,7 +400185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "97.00", "lithology_to": "101.00", "lithology_raw_data": null, @@ -400214,7 +400214,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:27:25Z", "activity_submission": null, - "well_tag_number": 112712, + "well": 112712, "lithology_from": "33.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER SAND WITH GRAVEL", @@ -400243,7 +400243,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "190.00", "lithology_to": "203.00", "lithology_raw_data": null, @@ -400272,7 +400272,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, - "well_tag_number": 112316, + "well": 112316, "lithology_from": "144.00", "lithology_to": "167.00", "lithology_raw_data": "GRAVEL, FINE SAND", @@ -400301,7 +400301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, - "well_tag_number": 113203, + "well": 113203, "lithology_from": "155.00", "lithology_to": "195.00", "lithology_raw_data": "little gravel", @@ -400330,7 +400330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": "12.00", "lithology_to": "43.00", "lithology_raw_data": "till", @@ -400359,7 +400359,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:51:40Z", "activity_submission": null, - "well_tag_number": 112820, + "well": 112820, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sandy clay, gravel and cobbles", @@ -400388,7 +400388,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "241.00", "lithology_to": "274.00", "lithology_raw_data": "GREY-PINK SOLID BEDROCK", @@ -400417,7 +400417,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T07:25:21Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": "WEATHERED ROCK, BEDROCK", @@ -400446,7 +400446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, - "well_tag_number": 112439, + "well": 112439, "lithology_from": "46.00", "lithology_to": "60.00", "lithology_raw_data": "chalky", @@ -400475,7 +400475,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "67.00", "lithology_to": "123.00", "lithology_raw_data": "BR/B SAND/CLAY MIX ", @@ -400504,7 +400504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "120.00", "lithology_to": "136.00", "lithology_raw_data": null, @@ -400533,7 +400533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "108.00", "lithology_to": "124.00", "lithology_raw_data": "SILTY TILL", @@ -400562,7 +400562,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:59:37Z", "activity_submission": null, - "well_tag_number": 112689, + "well": 112689, "lithology_from": "184.00", "lithology_to": "220.00", "lithology_raw_data": "VOLCANIC", @@ -400591,7 +400591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "23.00", "lithology_to": "35.00", "lithology_raw_data": "gravel and cobbles", @@ -400620,7 +400620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, - "well_tag_number": 113290, + "well": 113290, "lithology_from": "320.00", "lithology_to": "400.00", "lithology_raw_data": null, @@ -400649,7 +400649,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:33:18Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "66.00", "lithology_to": "71.00", "lithology_raw_data": null, @@ -400678,7 +400678,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "321.00", "lithology_to": "327.00", "lithology_raw_data": "VOLCANIC", @@ -400707,7 +400707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "210.00", "lithology_to": "300.00", "lithology_raw_data": "WHITE-BLACK BEDROCK GRANITE", @@ -400736,7 +400736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, - "well_tag_number": 112420, + "well": 112420, "lithology_from": "27.00", "lithology_to": "32.00", "lithology_raw_data": "BASALT", @@ -400765,7 +400765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "and organics", @@ -400794,7 +400794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, - "well_tag_number": 112813, + "well": 112813, "lithology_from": "4.00", "lithology_to": "56.00", "lithology_raw_data": "gravel", @@ -400823,7 +400823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, - "well_tag_number": 112231, + "well": 112231, "lithology_from": "9.00", "lithology_to": "28.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -400852,7 +400852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "85.00", "lithology_to": "95.00", "lithology_raw_data": "sand with clay/silt", @@ -400881,7 +400881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, - "well_tag_number": 112328, + "well": 112328, "lithology_from": "63.00", "lithology_to": "92.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -400910,7 +400910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "166.00", "lithology_to": "170.00", "lithology_raw_data": "SAND", @@ -400939,7 +400939,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, CLAY, MIXED", @@ -400968,7 +400968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "Sandstone", @@ -400997,7 +400997,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, - "well_tag_number": 112548, + "well": 112548, "lithology_from": "6.00", "lithology_to": "25.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -401026,7 +401026,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -401055,7 +401055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "26.00", "lithology_to": "35.00", "lithology_raw_data": "FINE SAND, SMALL ANGULAR GRAVEL", @@ -401084,7 +401084,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T08:12:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "120.00", "lithology_to": "150.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL, CLAY MIXTURE", @@ -401113,7 +401113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, - "well_tag_number": 112401, + "well": 112401, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "MEDIUM/HARD, SAND/GRAVEL/BOULDERS", @@ -401142,7 +401142,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SILT AND FINE SAND", @@ -401171,7 +401171,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, - "well_tag_number": 112520, + "well": 112520, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -401200,7 +401200,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "255.00", "lithology_to": "318.00", "lithology_raw_data": "CRUMBLY LAVA ROCK", @@ -401229,7 +401229,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "260.00", "lithology_to": "303.00", "lithology_raw_data": null, @@ -401258,7 +401258,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "34.00", "lithology_to": "100.00", "lithology_raw_data": "BROKEN SHALE", @@ -401287,7 +401287,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:20:43Z", "activity_submission": null, - "well_tag_number": 112358, + "well": 112358, "lithology_from": "94.00", "lithology_to": "96.00", "lithology_raw_data": "bedrock", @@ -401316,7 +401316,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": "BROWN CLAY", @@ -401345,7 +401345,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "60.00", "lithology_to": "78.00", "lithology_raw_data": "CLAY", @@ -401374,7 +401374,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, - "well_tag_number": 112632, + "well": 112632, "lithology_from": "7.00", "lithology_to": "22.00", "lithology_raw_data": "glacial till", @@ -401403,7 +401403,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, - "well_tag_number": 112389, + "well": 112389, "lithology_from": "115.00", "lithology_to": "205.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, SEAMS OF WHITE AND PINK FELDSPAR", @@ -401432,7 +401432,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:38Z", "activity_submission": null, - "well_tag_number": 113023, + "well": 113023, "lithology_from": "80.00", "lithology_to": "129.00", "lithology_raw_data": "DARK GREY SILTY SAND", @@ -401461,7 +401461,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:11:22Z", "activity_submission": null, - "well_tag_number": 112338, + "well": 112338, "lithology_from": "16.00", "lithology_to": "20.00", "lithology_raw_data": "BOULDER, COARSE GRAVEL, SAND", @@ -401490,7 +401490,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:51:57Z", "activity_submission": null, - "well_tag_number": 112681, + "well": 112681, "lithology_from": "88.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -401519,7 +401519,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, - "well_tag_number": 113152, + "well": 113152, "lithology_from": "32.00", "lithology_to": "35.00", "lithology_raw_data": "sand, fine-med", @@ -401548,7 +401548,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, - "well_tag_number": 112357, + "well": 112357, "lithology_from": "27.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -401577,7 +401577,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, - "well_tag_number": 112743, + "well": 112743, "lithology_from": "30.00", "lithology_to": "58.00", "lithology_raw_data": "SAND, SOME WATER", @@ -401606,7 +401606,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, - "well_tag_number": 112385, + "well": 112385, "lithology_from": "116.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/HARD, VOLCANIC WITH TRACES OF W/WT FELDSPAR", @@ -401635,7 +401635,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, - "well_tag_number": 112248, + "well": 112248, "lithology_from": "0.00", "lithology_to": "74.00", "lithology_raw_data": "SILT", @@ -401664,7 +401664,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "90.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -401693,7 +401693,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T16:26:20Z", "activity_submission": null, - "well_tag_number": 113028, + "well": 113028, "lithology_from": "0.00", "lithology_to": "122.00", "lithology_raw_data": "BROWN CLAY AND ROCKS", @@ -401722,7 +401722,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "3.00", "lithology_to": "55.00", "lithology_raw_data": "BROWN TILL", @@ -401751,7 +401751,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:10Z", "activity_submission": null, - "well_tag_number": 112410, + "well": 112410, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FINE SAND, SILT AND ROCKS", @@ -401780,7 +401780,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "120.00", "lithology_to": "124.00", "lithology_raw_data": "ORGANIC", @@ -401809,7 +401809,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -401838,7 +401838,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:13:12Z", "activity_submission": null, - "well_tag_number": 112441, + "well": 112441, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -401867,7 +401867,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "0.50", "lithology_to": "75.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH WHITE TRACES", @@ -401896,7 +401896,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, - "well_tag_number": 112341, + "well": 112341, "lithology_from": "12.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM-HARD VOLCANIC BEDROCK", @@ -401925,7 +401925,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "180.00", "lithology_to": "183.00", "lithology_raw_data": "CLAY OR SILT", @@ -401954,7 +401954,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "31.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -401983,7 +401983,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, - "well_tag_number": 112797, + "well": 112797, "lithology_from": "36.08", "lithology_to": "83.60", "lithology_raw_data": "SILTY SAND WITH GRAVEL", @@ -402012,7 +402012,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "81.00", "lithology_to": "93.00", "lithology_raw_data": "SAND COARSE TO FINE WITH SOME GRAVEL, GREY BROWN", @@ -402041,7 +402041,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "442.00", "lithology_to": "447.00", "lithology_raw_data": null, @@ -402070,7 +402070,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "113.00", "lithology_to": "136.00", "lithology_raw_data": "and silts", @@ -402099,7 +402099,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, - "well_tag_number": 108027, + "well": 108027, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "sandstone", @@ -402128,7 +402128,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "52.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -402157,7 +402157,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "6.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -402186,7 +402186,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, - "well_tag_number": 112329, + "well": 112329, "lithology_from": "0.00", "lithology_to": "60.00", "lithology_raw_data": "SAND", @@ -402215,7 +402215,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "133.00", "lithology_to": "151.00", "lithology_raw_data": "rocks", @@ -402244,7 +402244,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:27:30Z", "activity_submission": null, - "well_tag_number": 112947, + "well": 112947, "lithology_from": "9.00", "lithology_to": "24.00", "lithology_raw_data": "COBBLES WITH WELL SORTED SAND", @@ -402273,7 +402273,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, - "well_tag_number": 112269, + "well": 112269, "lithology_from": "255.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -402302,7 +402302,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "92.00", "lithology_to": "232.00", "lithology_raw_data": "CHIRT", @@ -402331,7 +402331,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, - "well_tag_number": 112692, + "well": 112692, "lithology_from": "47.00", "lithology_to": null, "lithology_raw_data": "FINE SAND", @@ -402360,7 +402360,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "260.00", "lithology_to": "440.00", "lithology_raw_data": "SEAMS OF MULTI-COLOURED GNEISS & FELDSPAR", @@ -402389,7 +402389,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, - "well_tag_number": 112669, + "well": 112669, "lithology_from": "0.00", "lithology_to": "92.00", "lithology_raw_data": "SILTY SAND", @@ -402418,7 +402418,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "361.00", "lithology_to": "390.00", "lithology_raw_data": "CRYSTALLINE", @@ -402447,7 +402447,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:25:22Z", "activity_submission": null, - "well_tag_number": 112608, + "well": 112608, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "FINE SAND", @@ -402476,7 +402476,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "20.00", "lithology_to": "25.00", "lithology_raw_data": "GRANITE IWTH GREEN CHIPS", @@ -402505,7 +402505,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "16.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -402534,7 +402534,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:48:52Z", "activity_submission": null, - "well_tag_number": 112950, + "well": 112950, "lithology_from": "3.00", "lithology_to": "17.00", "lithology_raw_data": "GRAVEL WITH CLAY", @@ -402563,7 +402563,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "99.00", "lithology_to": "109.00", "lithology_raw_data": "MEDIUM SOFT", @@ -402592,7 +402592,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND", @@ -402621,7 +402621,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "245.00", "lithology_to": "254.00", "lithology_raw_data": "VERY FINE AND SILTY TOP AND SAND", @@ -402650,7 +402650,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "969.00", "lithology_to": "971.00", "lithology_raw_data": null, @@ -402679,7 +402679,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, - "well_tag_number": 112301, + "well": 112301, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "TILL", @@ -402708,7 +402708,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-12T19:28:37Z", "activity_submission": null, - "well_tag_number": 112608, + "well": 112608, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT-MEDIUM; FINE-MEDIUM SAND, TRACE OF GRAVEL", @@ -402737,7 +402737,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "21.00", "lithology_to": "52.00", "lithology_raw_data": "volcanic, maybe limestone", @@ -402766,7 +402766,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-11-01T21:03:01Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "208.00", "lithology_to": "280.00", "lithology_raw_data": "BEDROCK", @@ -402795,7 +402795,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "430.00", "lithology_to": "450.00", "lithology_raw_data": "WITH SILTSTONE LENSES", @@ -402824,7 +402824,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, - "well_tag_number": 112697, + "well": 112697, "lithology_from": "91.00", "lithology_to": "130.00", "lithology_raw_data": "BEDROCK BASALT", @@ -402853,7 +402853,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "63.00", "lithology_to": "81.00", "lithology_raw_data": "and gravels", @@ -402882,7 +402882,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:43:53Z", "activity_submission": null, - "well_tag_number": 112641, + "well": 112641, "lithology_from": "0.00", "lithology_to": "79.00", "lithology_raw_data": "silt till clay sand with gravel", @@ -402911,7 +402911,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, - "well_tag_number": 113125, + "well": 113125, "lithology_from": "21.00", "lithology_to": "45.00", "lithology_raw_data": "VERY SILTY WET SAND, BROWN", @@ -402940,7 +402940,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "15.00", "lithology_to": "37.00", "lithology_raw_data": "MEDIUM SAND", @@ -402969,7 +402969,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -402998,7 +402998,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "8.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY, SILT, FINE SAND", @@ -403027,7 +403027,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "590.00", "lithology_to": "591.00", "lithology_raw_data": "BROWN/GREY/GREEN VOLCANCIC WITH FEW GREEN TRACES", @@ -403056,7 +403056,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, - "well_tag_number": 112698, + "well": 112698, "lithology_from": "40.00", "lithology_to": null, "lithology_raw_data": null, @@ -403085,7 +403085,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "270.00", "lithology_to": "290.00", "lithology_raw_data": "SILT, SAND WITH GRAVEL", @@ -403114,7 +403114,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "85.00", "lithology_to": "90.00", "lithology_raw_data": "SOFT/HARD; GRAVEL BEDROCK", @@ -403143,7 +403143,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "69.00", "lithology_to": "69.00", "lithology_raw_data": null, @@ -403172,7 +403172,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "5.00", "lithology_to": "25.00", "lithology_raw_data": "BR SAND + GRAVEL + COBBLES + BOULDERS", @@ -403201,7 +403201,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "215.00", "lithology_to": "226.00", "lithology_raw_data": "FINE BROWN SAND, W.B.", @@ -403230,7 +403230,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "225.00", "lithology_to": "231.00", "lithology_raw_data": "GREY CLAY", @@ -403259,7 +403259,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:42:55Z", "activity_submission": null, - "well_tag_number": 113284, + "well": 113284, "lithology_from": "30.00", "lithology_to": "60.00", "lithology_raw_data": "sand med course", @@ -403288,7 +403288,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "140.00", "lithology_to": "155.00", "lithology_raw_data": "Hard Shale", @@ -403317,7 +403317,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY/GRAVEL SEAMS", @@ -403346,7 +403346,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T22:36:21Z", "activity_submission": null, - "well_tag_number": 112565, + "well": 112565, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT/MEDIUM; COARSE SAND, GRAVEL, MINOR SAND", @@ -403375,7 +403375,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "32.00", "lithology_to": "55.00", "lithology_raw_data": "STICKY GREY CLAY", @@ -403404,7 +403404,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "280.00", "lithology_to": "304.00", "lithology_raw_data": "SILTY CLAY", @@ -403433,7 +403433,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY WITH GRAVEL AND COBBLES", @@ -403462,7 +403462,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "Shale", @@ -403491,7 +403491,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "114.00", "lithology_to": "285.00", "lithology_raw_data": null, @@ -403520,7 +403520,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "672.00", "lithology_to": "775.00", "lithology_raw_data": "BROWN/GREY VOLCANIC", @@ -403549,7 +403549,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:44:18Z", "activity_submission": null, - "well_tag_number": 112778, + "well": 112778, "lithology_from": null, "lithology_to": "8.00", "lithology_raw_data": null, @@ -403578,7 +403578,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "300.00", "lithology_to": "325.00", "lithology_raw_data": "Shale and SS layered, fractured - making water - cased off", @@ -403607,7 +403607,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "97.00", "lithology_to": "260.00", "lithology_raw_data": "VOLCANIC/FEW TRACES", @@ -403636,7 +403636,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "17.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -403665,7 +403665,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "21.00", "lithology_to": "53.00", "lithology_raw_data": "SAND, WITH GRAVEL", @@ -403694,7 +403694,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "295.00", "lithology_to": "295.00", "lithology_raw_data": "FRACTURE", @@ -403723,7 +403723,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, - "well_tag_number": 112720, + "well": 112720, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silt", @@ -403752,7 +403752,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "MED BROWN SAND + GRAVEL (LOOSER)", @@ -403781,7 +403781,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "38.00", "lithology_to": "63.00", "lithology_raw_data": null, @@ -403810,7 +403810,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "29.00", "lithology_to": "78.00", "lithology_raw_data": null, @@ -403839,7 +403839,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, - "well_tag_number": 113052, + "well": 113052, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "cased bedrock", @@ -403868,7 +403868,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T07:55:05Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "160.00", "lithology_to": "168.00", "lithology_raw_data": "VOLCANIC", @@ -403897,7 +403897,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "272.00", "lithology_to": "273.00", "lithology_raw_data": "VOLCANIC", @@ -403926,7 +403926,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:48:24Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "200.00", "lithology_to": "276.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -403955,7 +403955,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "178.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -403984,7 +403984,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "215.00", "lithology_to": "410.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC BEDROCK - SEAMS OF WHITE FELDSPAR", @@ -404013,7 +404013,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY SILT MIXED WITH GRAVEL", @@ -404042,7 +404042,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, - "well_tag_number": 113065, + "well": 113065, "lithology_from": "23.00", "lithology_to": "78.00", "lithology_raw_data": "GREY CLAY", @@ -404071,7 +404071,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T08:16:49Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "145.00", "lithology_to": "185.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK", @@ -404100,7 +404100,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "365.00", "lithology_to": "420.00", "lithology_raw_data": "DARK GREY CRYSTALLINE ", @@ -404129,7 +404129,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:28:22Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "155.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", @@ -404158,7 +404158,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T18:03:51Z", "activity_submission": null, - "well_tag_number": 112644, + "well": 112644, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -404187,7 +404187,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, - "well_tag_number": 112402, + "well": 112402, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND AND SILT", @@ -404216,7 +404216,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "453.00", "lithology_to": "456.00", "lithology_raw_data": "SS, med fine, grey", @@ -404245,7 +404245,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "8.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -404274,7 +404274,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, - "well_tag_number": 113149, + "well": 113149, "lithology_from": "50.00", "lithology_to": "195.00", "lithology_raw_data": null, @@ -404303,7 +404303,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "16.00", "lithology_to": "21.00", "lithology_raw_data": "BOULDER", @@ -404332,7 +404332,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "68.00", "lithology_to": "82.00", "lithology_raw_data": "minor gravel", @@ -404361,7 +404361,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "65.00", "lithology_to": "98.00", "lithology_raw_data": "FINE GRAINED SAND", @@ -404390,7 +404390,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, - "well_tag_number": 112826, + "well": 112826, "lithology_from": "7.00", "lithology_to": "26.00", "lithology_raw_data": "COARSE GRAVEL", @@ -404419,7 +404419,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "195.00", "lithology_to": "197.00", "lithology_raw_data": "FINE SANDSTONE", @@ -404448,7 +404448,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, - "well_tag_number": 112874, + "well": 112874, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -404477,7 +404477,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:16:41Z", "activity_submission": null, - "well_tag_number": 112542, + "well": 112542, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -404506,7 +404506,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "430.00", "lithology_to": "435.00", "lithology_raw_data": null, @@ -404535,7 +404535,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, - "well_tag_number": 112720, + "well": 112720, "lithology_from": "161.00", "lithology_to": "185.00", "lithology_raw_data": null, @@ -404564,7 +404564,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, - "well_tag_number": 112713, + "well": 112713, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOPSOIL AND FINE BROWN SAND", @@ -404593,7 +404593,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, - "well_tag_number": 112605, + "well": 112605, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND", @@ -404622,7 +404622,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", @@ -404651,7 +404651,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:22:28Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "270.00", "lithology_to": "275.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", @@ -404680,7 +404680,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "8.00", "lithology_to": "24.00", "lithology_raw_data": "sandy", @@ -404709,7 +404709,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, - "well_tag_number": 112348, + "well": 112348, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", @@ -404738,7 +404738,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "54.00", "lithology_to": "120.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -404767,7 +404767,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "ORGANIC MIXED FILL", @@ -404796,7 +404796,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD; MEDIUM TO COARSE GRAVEL", @@ -404825,7 +404825,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "195.00", "lithology_to": "215.00", "lithology_raw_data": "SILTSTONE", @@ -404854,7 +404854,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "GREY & BROWN", @@ -404883,7 +404883,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, - "well_tag_number": 112836, + "well": 112836, "lithology_from": "71.00", "lithology_to": "93.00", "lithology_raw_data": "sand", @@ -404912,7 +404912,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "215.00", "lithology_to": "230.00", "lithology_raw_data": null, @@ -404941,7 +404941,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, - "well_tag_number": 112616, + "well": 112616, "lithology_from": "92.00", "lithology_to": "105.00", "lithology_raw_data": "CLAY, ROCKS AND BOULDERS", @@ -404970,7 +404970,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, - "well_tag_number": 113188, + "well": 113188, "lithology_from": "34.00", "lithology_to": "55.00", "lithology_raw_data": "silty and gravel", @@ -404999,7 +404999,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "187.00", "lithology_to": "190.00", "lithology_raw_data": "SANDSTONE-GREY SHALE", @@ -405028,7 +405028,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "500.00", "lithology_to": "600.00", "lithology_raw_data": "LAYERS, CLAY/SILT", @@ -405057,7 +405057,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, - "well_tag_number": 112260, + "well": 112260, "lithology_from": "29.00", "lithology_to": "77.00", "lithology_raw_data": "DRY SILT AND GRAVEL WITH SEAMS OF W.B.", @@ -405086,7 +405086,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -405115,7 +405115,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, - "well_tag_number": 113112, + "well": 113112, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "SAND AND GRAVEL COARSE; 195 GRAY TILL GRAVEL AND CLAY", @@ -405144,7 +405144,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": "19.00", "lithology_to": "550.00", "lithology_raw_data": "granite", @@ -405173,7 +405173,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "780.00", "lithology_to": "800.00", "lithology_raw_data": "SS/Shale lenses", @@ -405202,7 +405202,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "250.00", "lithology_to": "270.00", "lithology_raw_data": null, @@ -405231,7 +405231,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T23:19:54Z", "activity_submission": null, - "well_tag_number": 113027, + "well": 113027, "lithology_from": "75.00", "lithology_to": "170.00", "lithology_raw_data": "Brown Gravel", @@ -405260,7 +405260,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "24.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; BOULDERS AND GRAVEL", @@ -405289,7 +405289,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "10.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -405318,7 +405318,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, - "well_tag_number": 112509, + "well": 112509, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "GRAY SILTY SANDS", @@ -405347,7 +405347,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, - "well_tag_number": 112634, + "well": 112634, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -405376,7 +405376,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -405405,7 +405405,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "28.00", "lithology_to": "30.00", "lithology_raw_data": "BOULDER", @@ -405434,7 +405434,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "80.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY AND GRAVEL", @@ -405463,7 +405463,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, - "well_tag_number": 113133, + "well": 113133, "lithology_from": "7.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -405492,7 +405492,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T22:36:42Z", "activity_submission": null, - "well_tag_number": 112565, + "well": 112565, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM-HARD; LAYERS, CEMENTED GRAVEL, SAND LAYERS", @@ -405521,7 +405521,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "4.00", "lithology_to": "23.00", "lithology_raw_data": "CLAY", @@ -405550,7 +405550,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, - "well_tag_number": 112258, + "well": 112258, "lithology_from": "32.00", "lithology_to": "36.00", "lithology_raw_data": "CLAY", @@ -405579,7 +405579,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, - "well_tag_number": 113008, + "well": 113008, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -405608,7 +405608,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, - "well_tag_number": 112781, + "well": 112781, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -405637,7 +405637,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "56.00", "lithology_to": "96.00", "lithology_raw_data": null, @@ -405666,7 +405666,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "TOPSOIL", @@ -405695,7 +405695,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, - "well_tag_number": 112466, + "well": 112466, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, GRAVEL", @@ -405724,7 +405724,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, - "well_tag_number": 112543, + "well": 112543, "lithology_from": "68.00", "lithology_to": "79.00", "lithology_raw_data": "WATER BEARING SAND", @@ -405753,7 +405753,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:06:23Z", "activity_submission": null, - "well_tag_number": 112900, + "well": 112900, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -405782,7 +405782,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:39:45Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "180.00", "lithology_to": "273.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -405811,7 +405811,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "82.00", "lithology_to": "165.00", "lithology_raw_data": null, @@ -405840,7 +405840,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": null, @@ -405869,7 +405869,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:25:54Z", "activity_submission": null, - "well_tag_number": 112869, + "well": 112869, "lithology_from": "72.00", "lithology_to": "114.00", "lithology_raw_data": "BLACK & WHITE", @@ -405898,7 +405898,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -405927,7 +405927,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, - "well_tag_number": 112540, + "well": 112540, "lithology_from": "128.00", "lithology_to": "316.00", "lithology_raw_data": "BASALT, OTHER SURFICIAL / BEDROCK", @@ -405956,7 +405956,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, - "well_tag_number": 112714, + "well": 112714, "lithology_from": "9.00", "lithology_to": "31.00", "lithology_raw_data": "BLACK AND GREY SAND AND GRAVEL WITH DIRTY AND SILTY FINE BLACK SAND", @@ -405985,7 +405985,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "66.00", "lithology_to": "110.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH IRON PYRITE TRACES", @@ -406014,7 +406014,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "236.00", "lithology_to": "336.00", "lithology_raw_data": "CLAY WITH LAYERS OF TILL", @@ -406043,7 +406043,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "110.00", "lithology_to": "121.00", "lithology_raw_data": null, @@ -406072,7 +406072,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "96.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -406101,7 +406101,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "124.00", "lithology_to": "144.00", "lithology_raw_data": "silty", @@ -406130,7 +406130,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK", @@ -406159,7 +406159,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, - "well_tag_number": 112589, + "well": 112589, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, SAND, SILT, MOIST", @@ -406188,7 +406188,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "180.00", "lithology_to": "204.00", "lithology_raw_data": "TILL GRAVEL & CLAY MIX", @@ -406217,7 +406217,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:15:50Z", "activity_submission": null, - "well_tag_number": 113125, + "well": 113125, "lithology_from": "53.00", "lithology_to": "55.00", "lithology_raw_data": "GREY CLAY", @@ -406246,7 +406246,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, - "well_tag_number": 113178, + "well": 113178, "lithology_from": "15.00", "lithology_to": "87.00", "lithology_raw_data": "gravel, cobbles", @@ -406275,7 +406275,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, MOIST MINOR SAND", @@ -406304,7 +406304,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "57.00", "lithology_to": "66.00", "lithology_raw_data": "sand, fine med", @@ -406333,7 +406333,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND, ROCKS, AND CLAY", @@ -406362,7 +406362,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "98.00", "lithology_to": "113.00", "lithology_raw_data": "W.B. MEDIUM SAND AND GRAVEL", @@ -406391,7 +406391,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, - "well_tag_number": 112733, + "well": 112733, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -406420,7 +406420,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "173.00", "lithology_to": "205.00", "lithology_raw_data": "MEDIUM-SOFT, SAND-GRAVEL-SILT", @@ -406449,7 +406449,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -406478,7 +406478,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "84.00", "lithology_to": "94.00", "lithology_raw_data": null, @@ -406507,7 +406507,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, - "well_tag_number": 112304, + "well": 112304, "lithology_from": "0.00", "lithology_to": "60.00", "lithology_raw_data": "TILL", @@ -406536,7 +406536,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "113.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -406565,7 +406565,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, - "well_tag_number": 113079, + "well": 113079, "lithology_from": "8.00", "lithology_to": "69.00", "lithology_raw_data": "silt, sand, gravel", @@ -406594,7 +406594,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "TOP SOIL", @@ -406623,7 +406623,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, - "well_tag_number": 113251, + "well": 113251, "lithology_from": "15.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -406652,7 +406652,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "68.00", "lithology_to": "93.00", "lithology_raw_data": "CLAY WITH SCATTERED STONES", @@ -406681,7 +406681,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "140.00", "lithology_to": "189.00", "lithology_raw_data": "clay and gravel", @@ -406710,7 +406710,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-07-06T16:54:41Z", "activity_submission": null, - "well_tag_number": 112917, + "well": 112917, "lithology_from": "15.00", "lithology_to": "150.00", "lithology_raw_data": null, @@ -406739,7 +406739,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, - "well_tag_number": 113133, + "well": 113133, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -406768,7 +406768,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "311.00", "lithology_to": "340.00", "lithology_raw_data": "hard clay", @@ -406797,7 +406797,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, - "well_tag_number": 113153, + "well": 113153, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "sand, med coarse", @@ -406826,7 +406826,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "289.00", "lithology_to": "314.00", "lithology_raw_data": null, @@ -406855,7 +406855,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "74.00", "lithology_to": "90.00", "lithology_raw_data": null, @@ -406884,7 +406884,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, - "well_tag_number": 112659, + "well": 112659, "lithology_from": "3.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -406913,7 +406913,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "237.00", "lithology_to": "276.00", "lithology_raw_data": "CLAY", @@ -406942,7 +406942,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T18:22:39Z", "activity_submission": null, - "well_tag_number": 112560, + "well": 112560, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", @@ -406971,7 +406971,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "36.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -407000,7 +407000,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY, SAND, CLAY", @@ -407029,7 +407029,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "SMALL BOULDERS, COBBLES AND LARGE GRAVEL WITH MEDIUM COARSE SAND", @@ -407058,7 +407058,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:21Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "745'", @@ -407087,7 +407087,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "265.00", "lithology_to": "275.00", "lithology_raw_data": "GREY CLAY", @@ -407116,7 +407116,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "14.00", "lithology_to": "51.00", "lithology_raw_data": null, @@ -407145,7 +407145,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "460.00", "lithology_to": "500.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -407174,7 +407174,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "54.00", "lithology_to": "152.00", "lithology_raw_data": null, @@ -407203,7 +407203,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/SOFT; FINE-COARSE SAND", @@ -407232,7 +407232,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "210.00", "lithology_to": "214.00", "lithology_raw_data": null, @@ -407261,7 +407261,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, - "well_tag_number": 112969, + "well": 112969, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "FILL (SAND, GRAVEL, COBBLES)", @@ -407290,7 +407290,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "325.00", "lithology_to": "380.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -407319,7 +407319,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T18:42:28Z", "activity_submission": null, - "well_tag_number": 113081, + "well": 113081, "lithology_from": "17.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -407348,7 +407348,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD; BOULDER, COARSE SAND", @@ -407377,7 +407377,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "129.00", "lithology_to": "131.00", "lithology_raw_data": "clay", @@ -407406,7 +407406,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, - "well_tag_number": 112409, + "well": 112409, "lithology_from": "450.00", "lithology_to": "452.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -407435,7 +407435,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:17:12Z", "activity_submission": null, - "well_tag_number": 112655, + "well": 112655, "lithology_from": "48.00", "lithology_to": "67.00", "lithology_raw_data": "CLAY AND ROCK", @@ -407464,7 +407464,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "28.00", "lithology_to": "80.00", "lithology_raw_data": "STICKY CLAY CRACKS", @@ -407493,7 +407493,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, - "well_tag_number": 112577, + "well": 112577, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -407522,7 +407522,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "40.00", "lithology_to": "51.00", "lithology_raw_data": "MEDIUM/HARD; DENSE GRAVEL", @@ -407551,7 +407551,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, - "well_tag_number": 113026, + "well": 113026, "lithology_from": "460.00", "lithology_to": "500.00", "lithology_raw_data": "SHALE HARD WITH SANDSTONE (COARSE LAYERS", @@ -407580,7 +407580,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "533.00", "lithology_to": "544.00", "lithology_raw_data": "grey/green", @@ -407609,7 +407609,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:40:02Z", "activity_submission": null, - "well_tag_number": 112298, + "well": 112298, "lithology_from": "0.00", "lithology_to": "72.00", "lithology_raw_data": "TILL AND BOULDERS", @@ -407638,7 +407638,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "169.00", "lithology_to": "180.00", "lithology_raw_data": "TILL", @@ -407667,7 +407667,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "20.00", "lithology_to": "55.00", "lithology_raw_data": "TILL/GRAVEL", @@ -407696,7 +407696,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, - "well_tag_number": 113115, + "well": 113115, "lithology_from": "115.00", "lithology_to": "143.00", "lithology_raw_data": null, @@ -407725,7 +407725,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "FINE SAND, SILT", @@ -407754,7 +407754,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, - "well_tag_number": 112250, + "well": 112250, "lithology_from": "0.00", "lithology_to": "127.00", "lithology_raw_data": "CLAY", @@ -407783,7 +407783,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:01:51Z", "activity_submission": null, - "well_tag_number": 112350, + "well": 112350, "lithology_from": "5.00", "lithology_to": "38.00", "lithology_raw_data": "gravel sand cobbles", @@ -407812,7 +407812,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "115.00", "lithology_to": "144.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -407841,7 +407841,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SILTY BR SAND + GRAVEL + BOULDERS", @@ -407870,7 +407870,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "324.00", "lithology_to": "326.00", "lithology_raw_data": "silts", @@ -407899,7 +407899,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, - "well_tag_number": 112477, + "well": 112477, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TILL", @@ -407928,7 +407928,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "110.00", "lithology_to": "137.00", "lithology_raw_data": "WET SILTY SANDS & SOME GRAVEL", @@ -407957,7 +407957,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, - "well_tag_number": 112627, + "well": 112627, "lithology_from": "135.00", "lithology_to": "160.00", "lithology_raw_data": "sand & gravel", @@ -407986,7 +407986,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, - "well_tag_number": 112793, + "well": 112793, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -408015,7 +408015,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, - "well_tag_number": 112551, + "well": 112551, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -408044,7 +408044,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -408073,7 +408073,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "17.00", "lithology_to": "24.00", "lithology_raw_data": "FINE SAND", @@ -408102,7 +408102,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, - "well_tag_number": 112683, + "well": 112683, "lithology_from": "2.50", "lithology_to": "15.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -408131,7 +408131,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "3.00", "lithology_to": "19.00", "lithology_raw_data": null, @@ -408160,7 +408160,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "117.00", "lithology_to": "120.00", "lithology_raw_data": "LAYERED SHALE", @@ -408189,7 +408189,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "43.00", "lithology_to": "44.00", "lithology_raw_data": null, @@ -408218,7 +408218,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T20:53:56Z", "activity_submission": null, - "well_tag_number": 112793, + "well": 112793, "lithology_from": "60.00", "lithology_to": "98.40", "lithology_raw_data": null, @@ -408247,7 +408247,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "81.00", "lithology_to": "88.00", "lithology_raw_data": "and gravel", @@ -408276,7 +408276,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "110.00", "lithology_to": "112.00", "lithology_raw_data": "CEMENTED SAND, PEBBLES", @@ -408305,7 +408305,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, - "well_tag_number": 112707, + "well": 112707, "lithology_from": "57.00", "lithology_to": "260.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -408334,7 +408334,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, - "well_tag_number": 112694, + "well": 112694, "lithology_from": "35.00", "lithology_to": null, "lithology_raw_data": "LARGE SAND", @@ -408363,7 +408363,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "154.00", "lithology_to": "158.00", "lithology_raw_data": "SANDSTONE, FINE TO MEDIUM FINE", @@ -408392,7 +408392,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "71.00", "lithology_to": "130.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -408421,7 +408421,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, - "well_tag_number": 112872, + "well": 112872, "lithology_from": "4.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -408450,7 +408450,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "WHITE-ORANGE BEDROCK GRANITE", @@ -408479,7 +408479,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "80.00", "lithology_to": "140.00", "lithology_raw_data": "BROWN/GREY", @@ -408508,7 +408508,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "TILL, SANDY", @@ -408537,7 +408537,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, - "well_tag_number": 112357, + "well": 112357, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "till", @@ -408566,7 +408566,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "Sandstone", @@ -408595,7 +408595,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "CLAY AND ROCK", @@ -408624,7 +408624,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, - "well_tag_number": 112980, + "well": 112980, "lithology_from": "14.00", "lithology_to": "21.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -408653,7 +408653,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "4.00", "lithology_to": "24.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -408682,7 +408682,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "38.00", "lithology_to": "58.00", "lithology_raw_data": "COARSE AND FINE SANDSTONE WITH WATER ZONES", @@ -408711,7 +408711,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:35:25Z", "activity_submission": null, - "well_tag_number": 112745, + "well": 112745, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SAND AND GRAVEL WITH SOME CLAY", @@ -408740,7 +408740,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-28T22:09:36Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "377.00", "lithology_to": "420.00", "lithology_raw_data": null, @@ -408769,7 +408769,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "60.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -408798,7 +408798,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "240.00", "lithology_to": "245.00", "lithology_raw_data": null, @@ -408827,7 +408827,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "58.00", "lithology_to": "64.00", "lithology_raw_data": "GREY/BROWN CLAY", @@ -408856,7 +408856,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, - "well_tag_number": 112687, + "well": 112687, "lithology_from": "60.00", "lithology_to": null, "lithology_raw_data": "SAND", @@ -408885,7 +408885,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "26.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -408914,7 +408914,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "83.00", "lithology_to": "163.00", "lithology_raw_data": null, @@ -408943,7 +408943,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": "wet", @@ -408972,7 +408972,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "silt, sand with gravel", @@ -409001,7 +409001,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -409030,7 +409030,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, - "well_tag_number": 112257, + "well": 112257, "lithology_from": "24.00", "lithology_to": "38.00", "lithology_raw_data": "MEDIUM GRAVEL WITH MEDIUM SAND", @@ -409059,7 +409059,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:16:22Z", "activity_submission": null, - "well_tag_number": 112777, + "well": 112777, "lithology_from": "0.00", "lithology_to": "78.00", "lithology_raw_data": null, @@ -409088,7 +409088,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-08T16:46:30Z", "activity_submission": null, - "well_tag_number": 113174, + "well": 113174, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "GRAVEL AND BOULDERS", @@ -409117,7 +409117,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, - "well_tag_number": 113286, + "well": 113286, "lithology_from": "30.00", "lithology_to": "52.00", "lithology_raw_data": "sand fine med", @@ -409146,7 +409146,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "18.00", "lithology_to": "81.00", "lithology_raw_data": "BROWN SAND", @@ -409175,7 +409175,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "4.00", "lithology_to": "35.00", "lithology_raw_data": "CLAY", @@ -409204,7 +409204,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -409233,7 +409233,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -409262,7 +409262,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "63.00", "lithology_to": "96.00", "lithology_raw_data": null, @@ -409291,7 +409291,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, - "well_tag_number": 112242, + "well": 112242, "lithology_from": "60.00", "lithology_to": "73.00", "lithology_raw_data": "CRUMBLY SANDSTONE", @@ -409320,7 +409320,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "150.00", "lithology_to": "154.00", "lithology_raw_data": "SHALE / FINE COAL LENSES", @@ -409349,7 +409349,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, - "well_tag_number": 112673, + "well": 112673, "lithology_from": "0.00", "lithology_to": "6.50", "lithology_raw_data": "SAND AND GRAVEL FILL", @@ -409378,7 +409378,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE/VOLCANICS", @@ -409407,7 +409407,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T21:37:32Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "218.00", "lithology_to": "240.00", "lithology_raw_data": "DENSE-STIFF; CLAY, SILT", @@ -409436,7 +409436,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "16.00", "lithology_to": "195.00", "lithology_raw_data": "GREY/BLUE CLAY WITH TILL LAYERS", @@ -409465,7 +409465,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -409494,7 +409494,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "ORGANICS", @@ -409523,7 +409523,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "17.00", "lithology_to": "38.00", "lithology_raw_data": "SAND & CLAY", @@ -409552,7 +409552,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "53.00", "lithology_to": "55.00", "lithology_raw_data": "GRAVEL/SAND", @@ -409581,7 +409581,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "100.00", "lithology_to": "113.00", "lithology_raw_data": "GRAVEL", @@ -409610,7 +409610,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "43.00", "lithology_to": "55.00", "lithology_raw_data": "till", @@ -409639,7 +409639,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, - "well_tag_number": 112446, + "well": 112446, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "ANGULAR GRAVEL/COARSE SAND", @@ -409668,7 +409668,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "196.00", "lithology_to": "255.00", "lithology_raw_data": "HARD CLAY", @@ -409697,7 +409697,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "59.00", "lithology_to": "65.00", "lithology_raw_data": "SILTY CLAY", @@ -409726,7 +409726,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "121.00", "lithology_to": "140.00", "lithology_raw_data": "SILT WITH SOME CLAY, TRACE FINE GRAVEL", @@ -409755,7 +409755,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, - "well_tag_number": 112806, + "well": 112806, "lithology_from": "8.00", "lithology_to": "35.00", "lithology_raw_data": "broken", @@ -409784,7 +409784,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "106.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -409813,7 +409813,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, - "well_tag_number": 112731, + "well": 112731, "lithology_from": "47.00", "lithology_to": "59.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -409842,7 +409842,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "580.00", "lithology_to": "656.00", "lithology_raw_data": "BEDROCK", @@ -409871,7 +409871,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, - "well_tag_number": 113087, + "well": 113087, "lithology_from": "314.00", "lithology_to": "320.00", "lithology_raw_data": null, @@ -409900,7 +409900,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, - "well_tag_number": 112705, + "well": 112705, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "TILL", @@ -409929,7 +409929,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "46.00", "lithology_to": "49.00", "lithology_raw_data": null, @@ -409958,7 +409958,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:56Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY", @@ -409987,7 +409987,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "65.00", "lithology_to": "90.00", "lithology_raw_data": "Gravel, some sand, trace silt, well graded, grey, damp", @@ -410016,7 +410016,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "356.00", "lithology_to": "358.00", "lithology_raw_data": "SANDSTONE", @@ -410045,7 +410045,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "SILT, MINOR GRAVEL", @@ -410074,7 +410074,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "28.00", "lithology_to": "110.00", "lithology_raw_data": "LARGE BOULDERS, 2'-8' DIAMETER WITH COBBLES AND GRAVEL", @@ -410103,7 +410103,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "19.00", "lithology_to": "33.00", "lithology_raw_data": "and gravel", @@ -410132,7 +410132,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, - "well_tag_number": 112279, + "well": 112279, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "CLAY", @@ -410161,7 +410161,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "134.00", "lithology_to": "202.00", "lithology_raw_data": null, @@ -410190,7 +410190,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "71.00", "lithology_to": "78.00", "lithology_raw_data": "and gravel", @@ -410219,7 +410219,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "22.00", "lithology_to": "24.00", "lithology_raw_data": "BRWON GREY", @@ -410248,7 +410248,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "49.00", "lithology_to": "88.00", "lithology_raw_data": "and gravel", @@ -410277,7 +410277,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "232.00", "lithology_to": "251.00", "lithology_raw_data": "GRANITE", @@ -410306,7 +410306,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SAND - COARSE", @@ -410335,7 +410335,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, - "well_tag_number": 112627, + "well": 112627, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "Top Soil", @@ -410364,7 +410364,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "24.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -410393,7 +410393,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-16T13:21:40Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY CLAY, MINOR GRAVEL", @@ -410422,7 +410422,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:07:17Z", "activity_submission": null, - "well_tag_number": 112970, + "well": 112970, "lithology_from": "35.00", "lithology_to": "43.00", "lithology_raw_data": "SAND & GRAVEL", @@ -410451,7 +410451,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "16.00", "lithology_to": "23.00", "lithology_raw_data": "SILTSTONE & SHALE", @@ -410480,7 +410480,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "93.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -410509,7 +410509,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "45.00", "lithology_to": "63.00", "lithology_raw_data": "SILT & SAND", @@ -410538,7 +410538,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, - "well_tag_number": 112798, + "well": 112798, "lithology_from": "83.60", "lithology_to": "98.40", "lithology_raw_data": "SILTY GRAVEL WITH SAND", @@ -410567,7 +410567,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "10.00", "lithology_to": "17.00", "lithology_raw_data": "FINE TO MEDIUM GRAVEL", @@ -410596,7 +410596,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, - "well_tag_number": 112837, + "well": 112837, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "topsoil", @@ -410625,7 +410625,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "70.00", "lithology_to": "76.00", "lithology_raw_data": "MED + COARSE BR SAND + GRAVEL", @@ -410654,7 +410654,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, - "well_tag_number": 112589, + "well": 112589, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, GRAVEL", @@ -410683,7 +410683,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, - "well_tag_number": 112698, + "well": 112698, "lithology_from": "12.00", "lithology_to": "27.00", "lithology_raw_data": "very silty", @@ -410712,7 +410712,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, - "well_tag_number": 113300, + "well": 113300, "lithology_from": "155.00", "lithology_to": "600.00", "lithology_raw_data": null, @@ -410741,7 +410741,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-10T21:49:49Z", "activity_submission": null, - "well_tag_number": 113080, + "well": 113080, "lithology_from": "260.00", "lithology_to": "340.00", "lithology_raw_data": "Dark Grey, dense, wet, shale with Siltstone lenses", @@ -410770,7 +410770,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "35.00", "lithology_to": "47.00", "lithology_raw_data": "FINE SAND, MEDIUM GRAVEL", @@ -410799,7 +410799,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, - "well_tag_number": 112295, + "well": 112295, "lithology_from": "23.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -410828,7 +410828,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "20.00", "lithology_to": "33.00", "lithology_raw_data": "SAND", @@ -410857,7 +410857,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "95.00", "lithology_to": "107.00", "lithology_raw_data": null, @@ -410886,7 +410886,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, - "well_tag_number": 113264, + "well": 113264, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -410915,7 +410915,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, - "well_tag_number": 112238, + "well": 112238, "lithology_from": "280.00", "lithology_to": "310.00", "lithology_raw_data": "SHALE", @@ -410944,7 +410944,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, - "well_tag_number": 112305, + "well": 112305, "lithology_from": "50.00", "lithology_to": "77.00", "lithology_raw_data": "CLAY", @@ -410973,7 +410973,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "gravel and organics", @@ -411002,7 +411002,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "33.00", "lithology_to": "36.00", "lithology_raw_data": "sand with gravel", @@ -411031,7 +411031,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "33.00", "lithology_to": "48.00", "lithology_raw_data": "SHALE", @@ -411060,7 +411060,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -411089,7 +411089,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "6.00", "lithology_to": "18.00", "lithology_raw_data": null, @@ -411118,7 +411118,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-09-28T17:04:57Z", "activity_submission": null, - "well_tag_number": 113503, + "well": 113503, "lithology_from": "23.00", "lithology_to": "63.00", "lithology_raw_data": "TILL AND BOULDERS", @@ -411147,7 +411147,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, - "well_tag_number": 112703, + "well": 112703, "lithology_from": "16.00", "lithology_to": "203.00", "lithology_raw_data": "BEDROCK", @@ -411176,7 +411176,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "till like", @@ -411205,7 +411205,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "66.00", "lithology_to": "95.00", "lithology_raw_data": "VERY FINE AND SILTY SAND", @@ -411234,7 +411234,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "SHALE", @@ -411263,7 +411263,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "71.00", "lithology_to": "94.00", "lithology_raw_data": "VERY FINE AND SILTY SAND", @@ -411292,7 +411292,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "5.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -411321,7 +411321,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "192.00", "lithology_to": "215.00", "lithology_raw_data": "SS MED FINE GRY", @@ -411350,7 +411350,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "191.00", "lithology_to": "239.00", "lithology_raw_data": "W.B. GREY SAND (RED WATER)", @@ -411379,7 +411379,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "710.00", "lithology_to": "770.00", "lithology_raw_data": "GREY SHALE", @@ -411408,7 +411408,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-03T22:18:35Z", "activity_submission": null, - "well_tag_number": 113003, + "well": 113003, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": "Gray Sand", @@ -411437,7 +411437,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, - "well_tag_number": 113150, + "well": 113150, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "sand with gravel", @@ -411466,7 +411466,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, - "well_tag_number": 112295, + "well": 112295, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "TILL", @@ -411495,7 +411495,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "44.00", "lithology_to": "55.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -411524,7 +411524,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "31.00", "lithology_to": "64.00", "lithology_raw_data": "SHALE", @@ -411553,7 +411553,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, - "well_tag_number": 112992, + "well": 112992, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "GRAVEL/SAND", @@ -411582,7 +411582,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:10:16Z", "activity_submission": null, - "well_tag_number": 113137, + "well": 113137, "lithology_from": "41.00", "lithology_to": "73.00", "lithology_raw_data": null, @@ -411611,7 +411611,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "56.00", "lithology_to": "182.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -411640,7 +411640,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "WITH SANDSTONE STRINGERS", @@ -411669,7 +411669,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "90.00", "lithology_to": "95.00", "lithology_raw_data": "FINE SAND", @@ -411698,7 +411698,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "65.00", "lithology_to": "72.00", "lithology_raw_data": null, @@ -411727,7 +411727,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "340.00", "lithology_to": "360.00", "lithology_raw_data": "SOFT/MEDIUM; MEDIUM TO COARSE SAND, MINOR GRAVEL", @@ -411756,7 +411756,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "210.00", "lithology_to": "222.00", "lithology_raw_data": "SANDSTONE/FINE", @@ -411785,7 +411785,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-03T23:39:42Z", "activity_submission": null, - "well_tag_number": 112625, + "well": 112625, "lithology_from": "84.00", "lithology_to": "140.00", "lithology_raw_data": "SANDSTONE", @@ -411814,7 +411814,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -411843,7 +411843,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "140.00", "lithology_to": "148.00", "lithology_raw_data": "BEDROCK", @@ -411872,7 +411872,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, - "well_tag_number": 112654, + "well": 112654, "lithology_from": "195.00", "lithology_to": "395.00", "lithology_raw_data": null, @@ -411901,7 +411901,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, - "well_tag_number": 113179, + "well": 113179, "lithology_from": "135.00", "lithology_to": "156.00", "lithology_raw_data": "sand gravel", @@ -411930,7 +411930,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "175.00", "lithology_to": "232.00", "lithology_raw_data": null, @@ -411959,7 +411959,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "185.00", "lithology_to": "215.00", "lithology_raw_data": "PINK, SEAM OF FELDSPAR", @@ -411988,7 +411988,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": "SALT & PEPPER", @@ -412017,7 +412017,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:25:03Z", "activity_submission": null, - "well_tag_number": 112491, + "well": 112491, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM-COARSE SAND", @@ -412046,7 +412046,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-19T20:40:20Z", "activity_submission": null, - "well_tag_number": 112629, + "well": 112629, "lithology_from": null, "lithology_to": "28.00", "lithology_raw_data": "CLAY", @@ -412075,7 +412075,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, - "well_tag_number": 112794, + "well": 112794, "lithology_from": "30.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -412104,7 +412104,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "3.08", "lithology_to": "4.99", "lithology_raw_data": "FILL (SM) - SILTY SAND, TRACE CLAY", @@ -412133,7 +412133,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "205.00", "lithology_to": "234.00", "lithology_raw_data": "Light grey with sand and gravel", @@ -412162,7 +412162,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE GRAVEL", @@ -412191,7 +412191,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, - "well_tag_number": 112241, + "well": 112241, "lithology_from": "137.00", "lithology_to": "145.00", "lithology_raw_data": "SHALE", @@ -412220,7 +412220,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "208.00", "lithology_to": "298.00", "lithology_raw_data": "silt", @@ -412249,7 +412249,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, - "well_tag_number": 112370, + "well": 112370, "lithology_from": "300.00", "lithology_to": "440.00", "lithology_raw_data": "WHITE/PINK, GRANITE BEDROCK ", @@ -412278,7 +412278,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "326.00", "lithology_to": "695.00", "lithology_raw_data": "GRANITE", @@ -412307,7 +412307,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, - "well_tag_number": 112738, + "well": 112738, "lithology_from": "49.00", "lithology_to": "58.50", "lithology_raw_data": "FINE SAND WITH SOME GRAVEL AND TRACK OF CLAY", @@ -412336,7 +412336,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "430.00", "lithology_to": "450.00", "lithology_raw_data": "silt", @@ -412365,7 +412365,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "34.00", "lithology_to": "38.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -412394,7 +412394,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:49:40Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "40.00", "lithology_to": "118.00", "lithology_raw_data": "Greyish clay", @@ -412423,7 +412423,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "120.00", "lithology_to": "150.00", "lithology_raw_data": null, @@ -412452,7 +412452,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, - "well_tag_number": 113302, + "well": 113302, "lithology_from": "11.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -412481,7 +412481,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, - "well_tag_number": 112872, + "well": 112872, "lithology_from": "94.00", "lithology_to": "294.00", "lithology_raw_data": "GREEN & GREY", @@ -412510,7 +412510,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T23:01:42Z", "activity_submission": null, - "well_tag_number": 112543, + "well": 112543, "lithology_from": "2.00", "lithology_to": "68.00", "lithology_raw_data": "DRY BROWN SAND", @@ -412539,7 +412539,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, - "well_tag_number": 112794, + "well": 112794, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -412568,7 +412568,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "69.00", "lithology_to": "77.00", "lithology_raw_data": "and sand", @@ -412597,7 +412597,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, - "well_tag_number": 113065, + "well": 113065, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -412626,7 +412626,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "66.00", "lithology_to": "71.00", "lithology_raw_data": "and gravel", @@ -412655,7 +412655,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "161.00", "lithology_to": "166.00", "lithology_raw_data": null, @@ -412684,7 +412684,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "125.00", "lithology_to": "168.00", "lithology_raw_data": "SILT CLAY", @@ -412713,7 +412713,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "11.00", "lithology_to": "16.00", "lithology_raw_data": "FINE SAND & FINE TO MEDIUM SAND WITH GRAVEL", @@ -412742,7 +412742,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "24.00", "lithology_to": "40.00", "lithology_raw_data": "FINE SAND, MEDIUM GRAVEL", @@ -412771,7 +412771,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, - "well_tag_number": 112886, + "well": 112886, "lithology_from": "80.00", "lithology_to": "132.00", "lithology_raw_data": "GRAY & BLACK", @@ -412800,7 +412800,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "Sandstone tight", @@ -412829,7 +412829,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "3.00", "lithology_to": "30.00", "lithology_raw_data": "clay and fine grained sand", @@ -412858,7 +412858,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": "DARK GREY SILTS, ODD STONE", @@ -412887,7 +412887,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "145.00", "lithology_to": "205.00", "lithology_raw_data": "GREEN VOLCANIC BEDROCK WITH SEAMS OF MULTICOLOURED GNEISS", @@ -412916,7 +412916,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:21:11Z", "activity_submission": null, - "well_tag_number": 113277, + "well": 113277, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -412945,7 +412945,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, - "well_tag_number": 112308, + "well": 112308, "lithology_from": "28.00", "lithology_to": "72.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE BEDROCK", @@ -412974,7 +412974,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, - "well_tag_number": 112786, + "well": 112786, "lithology_from": "4.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -413003,7 +413003,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -413032,7 +413032,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, - "well_tag_number": 112862, + "well": 112862, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN GREY", @@ -413061,7 +413061,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "Clay, trace to some gravel, grey-brown, damp", @@ -413090,7 +413090,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "160.00", "lithology_to": "164.00", "lithology_raw_data": "SHALE", @@ -413119,7 +413119,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "212.00", "lithology_to": "220.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", @@ -413148,7 +413148,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, - "well_tag_number": 112871, + "well": 112871, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -413177,7 +413177,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, - "well_tag_number": 112463, + "well": 112463, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "and cobble fill", @@ -413206,7 +413206,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, - "well_tag_number": 112594, + "well": 112594, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -413235,7 +413235,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "456.00", "lithology_to": "458.00", "lithology_raw_data": "shale", @@ -413264,7 +413264,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "20.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY, SILT, ROCKS", @@ -413293,7 +413293,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "595.00", "lithology_to": "605.00", "lithology_raw_data": "WITH SALT & PEPPER MW", @@ -413322,7 +413322,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "135.00", "lithology_to": "141.00", "lithology_raw_data": "SOME CLAY", @@ -413351,7 +413351,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "69.00", "lithology_to": "76.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -413380,7 +413380,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "LIGHT GREY/ BROWN SILTY SANDS AND GRAVELS, WASTE ROCK", @@ -413409,7 +413409,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "and organics", @@ -413438,7 +413438,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "3.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -413467,7 +413467,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, - "well_tag_number": 113290, + "well": 113290, "lithology_from": "400.00", "lithology_to": "430.00", "lithology_raw_data": null, @@ -413496,7 +413496,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, - "well_tag_number": 112394, + "well": 112394, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "FILL AND SOIL", @@ -413525,7 +413525,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "46.00", "lithology_to": "48.00", "lithology_raw_data": "rotten", @@ -413554,7 +413554,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "15.00", "lithology_to": "18.00", "lithology_raw_data": "FINE TO MEDIUM SAND, SOME FINE GRAVEL, TRACE SILT", @@ -413583,7 +413583,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "59.00", "lithology_to": "62.00", "lithology_raw_data": "GREEN/BROWN VOLCANIC", @@ -413612,7 +413612,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "125.00", "lithology_to": "258.00", "lithology_raw_data": "WITH SILTSTONE & FINE SANDSTONE LAYERS", @@ -413641,7 +413641,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "21.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -413670,7 +413670,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, - "well_tag_number": 112878, + "well": 112878, "lithology_from": "56.00", "lithology_to": "71.00", "lithology_raw_data": "with clay", @@ -413699,7 +413699,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-16T17:10:54Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "220.00", "lithology_to": "320.00", "lithology_raw_data": "MEDIUM/HARD, BEDROCK", @@ -413728,7 +413728,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, - "well_tag_number": 113285, + "well": 113285, "lithology_from": "0.00", "lithology_to": "41.00", "lithology_raw_data": "VERY DENSE BOULDERS GRAVEL SAND", @@ -413757,7 +413757,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, - "well_tag_number": 112870, + "well": 112870, "lithology_from": "6.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -413786,7 +413786,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", @@ -413815,7 +413815,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, - "well_tag_number": 112272, + "well": 112272, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "and cobbley gravels", @@ -413844,7 +413844,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "60.00", "lithology_to": "73.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY SILT", @@ -413873,7 +413873,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "204.00", "lithology_to": "240.00", "lithology_raw_data": "bedrock", @@ -413902,7 +413902,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, - "well_tag_number": 112255, + "well": 112255, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "SAND WITH COBBLES", @@ -413931,7 +413931,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, - "well_tag_number": 112760, + "well": 112760, "lithology_from": "76.00", "lithology_to": "78.00", "lithology_raw_data": "BEDROCK", @@ -413960,7 +413960,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, - "well_tag_number": 112877, + "well": 112877, "lithology_from": "354.00", "lithology_to": "394.00", "lithology_raw_data": "VOLCANIC & ROCK", @@ -413989,7 +413989,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:23:20Z", "activity_submission": null, - "well_tag_number": 112702, + "well": 112702, "lithology_from": "0.00", "lithology_to": "31.00", "lithology_raw_data": "TILL", @@ -414018,7 +414018,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILT CLAY, MINOR ROCKS", @@ -414047,7 +414047,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "39.00", "lithology_to": "42.00", "lithology_raw_data": "ORGANICS", @@ -414076,7 +414076,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:43:12Z", "activity_submission": null, - "well_tag_number": 112781, + "well": 112781, "lithology_from": "25.00", "lithology_to": "32.00", "lithology_raw_data": "MUD", @@ -414105,7 +414105,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "177.00", "lithology_to": "211.00", "lithology_raw_data": "W.B. SILTY BROWN", @@ -414134,7 +414134,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "36.00", "lithology_to": "110.00", "lithology_raw_data": "BROWN SILTY DRY SANDS", @@ -414163,7 +414163,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "720.00", "lithology_to": "840.00", "lithology_raw_data": null, @@ -414192,7 +414192,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "MEDIUM SAND", @@ -414221,7 +414221,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T22:16:47Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "515.00", "lithology_to": "600.00", "lithology_raw_data": "UNSTABLE AREA", @@ -414250,7 +414250,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "CLAY WITH GRAVEL, COBBLES", @@ -414279,7 +414279,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T18:44:38Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "285.00", "lithology_to": "330.00", "lithology_raw_data": "VOLCANIC - SEAMS OF FELDSPAR", @@ -414308,7 +414308,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:18:27Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "12.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -414337,7 +414337,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, - "well_tag_number": 113052, + "well": 113052, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "gravel, boulders", @@ -414366,7 +414366,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "243.00", "lithology_to": "257.00", "lithology_raw_data": "TILL - GRAVELY", @@ -414395,7 +414395,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY", @@ -414424,7 +414424,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "80.00", "lithology_to": "85.00", "lithology_raw_data": "MEDIUM/SOFT; FINE, SAND, GRAVEL", @@ -414453,7 +414453,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, - "well_tag_number": 112349, + "well": 112349, "lithology_from": "0.00", "lithology_to": "25.00", "lithology_raw_data": "sand gravel cobbles", @@ -414482,7 +414482,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "106.00", "lithology_to": "107.00", "lithology_raw_data": "SILTY SAND WITH GRAVEL", @@ -414511,7 +414511,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, - "well_tag_number": 112680, + "well": 112680, "lithology_from": "295.00", "lithology_to": "302.00", "lithology_raw_data": "WOOD MIX WITH ROCK", @@ -414540,7 +414540,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, - "well_tag_number": 102364, + "well": 102364, "lithology_from": "19.00", "lithology_to": "120.00", "lithology_raw_data": "OPEN BEDROCK HOLE", @@ -414569,7 +414569,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "19.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -414598,7 +414598,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "89.00", "lithology_to": "168.00", "lithology_raw_data": null, @@ -414627,7 +414627,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "95.00", "lithology_to": "104.00", "lithology_raw_data": "MEDIUM SAND", @@ -414656,7 +414656,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, - "well_tag_number": 112697, + "well": 112697, "lithology_from": "0.00", "lithology_to": "91.00", "lithology_raw_data": "TILL", @@ -414685,7 +414685,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "575.00", "lithology_to": "576.00", "lithology_raw_data": null, @@ -414714,7 +414714,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, - "well_tag_number": 112297, + "well": 112297, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "TILL", @@ -414743,7 +414743,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE, ANGULAR, GRAVEL, CLAY", @@ -414772,7 +414772,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, - "well_tag_number": 112305, + "well": 112305, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "TILL, BOULDERS", @@ -414801,7 +414801,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, - "well_tag_number": 112264, + "well": 112264, "lithology_from": "4.00", "lithology_to": "23.00", "lithology_raw_data": "LARGE BOULDERS", @@ -414830,7 +414830,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, - "well_tag_number": 112505, + "well": 112505, "lithology_from": "3.00", "lithology_to": "47.00", "lithology_raw_data": "GRAY SILTS SOME GRAVELS", @@ -414859,7 +414859,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, - "well_tag_number": 112640, + "well": 112640, "lithology_from": "27.00", "lithology_to": "69.00", "lithology_raw_data": "clay till sand", @@ -414888,7 +414888,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, - "well_tag_number": 112587, + "well": 112587, "lithology_from": "525.00", "lithology_to": "650.00", "lithology_raw_data": "MEDIUM-HARD", @@ -414917,7 +414917,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "97.00", "lithology_to": "98.00", "lithology_raw_data": "SS FINE", @@ -414946,7 +414946,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -414975,7 +414975,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "60.00", "lithology_to": "68.00", "lithology_raw_data": "SHALE", @@ -415004,7 +415004,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "73.00", "lithology_to": "78.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -415033,7 +415033,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "202.00", "lithology_to": "215.00", "lithology_raw_data": "SILTY FINE SAND", @@ -415062,7 +415062,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, - "well_tag_number": 112971, + "well": 112971, "lithology_from": "44.00", "lithology_to": "46.00", "lithology_raw_data": "CEMENTED GRAVEL, SAND, SILT", @@ -415091,7 +415091,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "477.00", "lithology_to": "480.00", "lithology_raw_data": "GRAY CLAY/SILT", @@ -415120,7 +415120,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "660.00", "lithology_to": "670.00", "lithology_raw_data": "Shale", @@ -415149,7 +415149,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "20.00", "lithology_to": "30.00", "lithology_raw_data": "sand with gravel", @@ -415178,7 +415178,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "645.00", "lithology_to": "662.00", "lithology_raw_data": "CONGLOMERATE", @@ -415207,7 +415207,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:29:36Z", "activity_submission": null, - "well_tag_number": 112987, + "well": 112987, "lithology_from": "68.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -415236,7 +415236,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "4.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -415265,7 +415265,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "47.00", "lithology_to": "63.00", "lithology_raw_data": "with brown silt", @@ -415294,7 +415294,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T13:32:13Z", "activity_submission": null, - "well_tag_number": 112501, + "well": 112501, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD; CLAY ", @@ -415323,7 +415323,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, - "well_tag_number": 112893, + "well": 112893, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "SILT & SAND", @@ -415352,7 +415352,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "425.00", "lithology_to": "429.00", "lithology_raw_data": null, @@ -415381,7 +415381,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "10.00", "lithology_to": "22.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -415410,7 +415410,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "SANDSTONE / FINE / SHALE LAYERS", @@ -415439,7 +415439,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "8.00", "lithology_to": "28.00", "lithology_raw_data": "SILTY, BROWN CLAY", @@ -415468,7 +415468,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "SAND", @@ -415497,7 +415497,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, - "well_tag_number": 112577, + "well": 112577, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": null, @@ -415526,7 +415526,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "13.00", "lithology_to": "35.00", "lithology_raw_data": "with speckled quartz", @@ -415555,7 +415555,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "160.00", "lithology_to": "210.00", "lithology_raw_data": "SOFT/MEDIUM; FINE SAND", @@ -415584,7 +415584,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "393.00", "lithology_to": "395.00", "lithology_raw_data": null, @@ -415613,7 +415613,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "55.00", "lithology_to": "59.00", "lithology_raw_data": "SAND, GRAVEL, BOULDERS", @@ -415642,7 +415642,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "6.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -415671,7 +415671,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "33.00", "lithology_to": "55.00", "lithology_raw_data": "BOULDER", @@ -415700,7 +415700,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, - "well_tag_number": 112235, + "well": 112235, "lithology_from": "125.00", "lithology_to": "180.00", "lithology_raw_data": "GREEN/BROWN PACKED CLAY WITH COBBLES", @@ -415729,7 +415729,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, - "well_tag_number": 112943, + "well": 112943, "lithology_from": "15.00", "lithology_to": "93.00", "lithology_raw_data": "SAND, GRAVEL", @@ -415758,7 +415758,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, - "well_tag_number": 112701, + "well": 112701, "lithology_from": "2.00", "lithology_to": "3.00", "lithology_raw_data": "BOULDER", @@ -415787,7 +415787,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "15.00", "lithology_to": "57.00", "lithology_raw_data": null, @@ -415816,7 +415816,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -415845,7 +415845,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "705.00", "lithology_to": "740.00", "lithology_raw_data": "MEDIUM-HARD GREY, SHALE", @@ -415874,7 +415874,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, - "well_tag_number": 112707, + "well": 112707, "lithology_from": "26.00", "lithology_to": "42.00", "lithology_raw_data": "HARDER, MEDIUM GREY GRANITE BEDROCK", @@ -415903,7 +415903,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": "MEDIUM SAND & COBBLES", @@ -415932,7 +415932,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "75.00", "lithology_to": "83.00", "lithology_raw_data": "sand, fine med", @@ -415961,7 +415961,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, - "well_tag_number": 112813, + "well": 112813, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "cobbles, boulders", @@ -415990,7 +415990,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-28T22:09:52Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "261.00", "lithology_to": "377.00", "lithology_raw_data": null, @@ -416019,7 +416019,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "120.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -416048,7 +416048,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "6.00", "lithology_to": "8.00", "lithology_raw_data": "WOOD", @@ -416077,7 +416077,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "185.00", "lithology_to": "202.00", "lithology_raw_data": "SHALE", @@ -416106,7 +416106,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "77.00", "lithology_to": "130.00", "lithology_raw_data": "MOIST SILTS, SOME SAND", @@ -416135,7 +416135,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "174.00", "lithology_to": "188.00", "lithology_raw_data": "SILTY CLAY WITH TILL, BROWN GREY", @@ -416164,7 +416164,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "33.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, GRAVEL, COBBLES", @@ -416193,7 +416193,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "171.00", "lithology_to": "178.00", "lithology_raw_data": null, @@ -416222,7 +416222,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "72.00", "lithology_to": "78.00", "lithology_raw_data": "LIGHT BROWN TO YELLOW WET SANDS, GRAVELS AND SILTS", @@ -416251,7 +416251,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "126.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -416280,7 +416280,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "276.00", "lithology_to": "280.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -416309,7 +416309,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "58.00", "lithology_to": "75.00", "lithology_raw_data": "SAND, GRAVEL, TRACES OF SILT", @@ -416338,7 +416338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "20.00", "lithology_to": "32.00", "lithology_raw_data": "FRACTURED WEATHERED ROCK", @@ -416367,7 +416367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, - "well_tag_number": 112909, + "well": 112909, "lithology_from": "20.00", "lithology_to": "48.00", "lithology_raw_data": null, @@ -416396,7 +416396,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "56.00", "lithology_to": "58.00", "lithology_raw_data": "SS MED FINE LAYERED", @@ -416425,7 +416425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": "damp", @@ -416454,7 +416454,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "1.00", "lithology_to": "43.00", "lithology_raw_data": "BEDROCK", @@ -416483,7 +416483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, - "well_tag_number": 113182, + "well": 113182, "lithology_from": "140.00", "lithology_to": "155.00", "lithology_raw_data": "cased bedrock", @@ -416512,7 +416512,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T06:12:24Z", "activity_submission": null, - "well_tag_number": 112385, + "well": 112385, "lithology_from": "260.00", "lithology_to": "400.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREY, VOLCANIC", @@ -416541,7 +416541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SANDY TOPSOIL", @@ -416570,7 +416570,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:43:16Z", "activity_submission": null, - "well_tag_number": 113146, + "well": 113146, "lithology_from": "70.00", "lithology_to": "280.00", "lithology_raw_data": "GREY SILTY CLAY", @@ -416599,7 +416599,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "389.00", "lithology_to": "391.00", "lithology_raw_data": "silt chanks", @@ -416628,7 +416628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BOULDERS, MINOR GRAVEL, CLAY", @@ -416657,7 +416657,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "180.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD; COARSE SAND, GRAVEL", @@ -416686,7 +416686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "18.00", "lithology_to": "24.00", "lithology_raw_data": "GREY/BROWN GRAVEL AND COBBLES", @@ -416715,7 +416715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "26.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -416744,7 +416744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "173.00", "lithology_to": "190.00", "lithology_raw_data": null, @@ -416773,7 +416773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, MINOR, GRAVEL", @@ -416802,7 +416802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "147.00", "lithology_to": "151.00", "lithology_raw_data": "MEDIUM-HARD LAVA ROCK", @@ -416831,7 +416831,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, - "well_tag_number": 100001, + "well": 100001, "lithology_from": "13.00", "lithology_to": "170.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -416860,7 +416860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:30:45Z", "activity_submission": null, - "well_tag_number": 112934, + "well": 112934, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "TOP SOIL AND BROKEN ROCK", @@ -416889,7 +416889,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-15T21:37:31Z", "activity_submission": null, - "well_tag_number": 112945, + "well": 112945, "lithology_from": "45.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -416918,7 +416918,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "148.00", "lithology_to": "210.00", "lithology_raw_data": "W.B. BROWN SAND AND SILT", @@ -416947,7 +416947,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, - "well_tag_number": 112594, + "well": 112594, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, BOULDER, MINOR SAND", @@ -416976,7 +416976,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "150.00", "lithology_to": "195.00", "lithology_raw_data": "SHALE WITH GREY SEAMS", @@ -417005,7 +417005,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -417034,7 +417034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "33.00", "lithology_to": "35.00", "lithology_raw_data": "PEA GRAVEL & SAND", @@ -417063,7 +417063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "0.00", "lithology_to": "34.00", "lithology_raw_data": "BROWN SILTY SANDS", @@ -417092,7 +417092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "24.00", "lithology_to": "33.00", "lithology_raw_data": "STONES & SAND", @@ -417121,7 +417121,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:31:40Z", "activity_submission": null, - "well_tag_number": 107072, + "well": 107072, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "TILL", @@ -417150,7 +417150,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "10.00", "lithology_to": "61.00", "lithology_raw_data": "rock", @@ -417179,7 +417179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:23:32Z", "activity_submission": null, - "well_tag_number": 112754, + "well": 112754, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", @@ -417208,7 +417208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "25.00", "lithology_to": "61.00", "lithology_raw_data": null, @@ -417237,7 +417237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, - "well_tag_number": 112699, + "well": 112699, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "SILT/CLAY", @@ -417266,7 +417266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "MEDIUM GRAVEL", @@ -417295,7 +417295,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:29:08Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "370.00", "lithology_to": "450.00", "lithology_raw_data": "quartz bedrock", @@ -417324,7 +417324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:56:25Z", "activity_submission": null, - "well_tag_number": 112989, + "well": 112989, "lithology_from": "0.00", "lithology_to": "117.00", "lithology_raw_data": "SAND FINE TO MEDIUM/ MEDIUM TO LOOSE", @@ -417353,7 +417353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "68.00", "lithology_to": "80.00", "lithology_raw_data": "SANDS AND GRAVEL", @@ -417382,7 +417382,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "172.00", "lithology_to": "175.00", "lithology_raw_data": "quartz", @@ -417411,7 +417411,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, - "well_tag_number": 112680, + "well": 112680, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", @@ -417440,7 +417440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -417469,7 +417469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "167.00", "lithology_to": "209.00", "lithology_raw_data": "GREY-TAN BEDROCK SOLID", @@ -417498,7 +417498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "77.00", "lithology_to": "120.00", "lithology_raw_data": "YELLOW/GRAY/BROWN CLAY-TILL", @@ -417527,7 +417527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, - "well_tag_number": 112972, + "well": 112972, "lithology_from": "50.00", "lithology_to": "61.00", "lithology_raw_data": "GRAVEL, COBBLES, SAND", @@ -417556,7 +417556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "152.00", "lithology_to": "164.00", "lithology_raw_data": null, @@ -417585,7 +417585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "49.00", "lithology_to": "54.00", "lithology_raw_data": "SILTY SAND WITH CLAY BALLS", @@ -417614,7 +417614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "27.00", "lithology_to": "40.00", "lithology_raw_data": "BASALT", @@ -417643,7 +417643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -417672,7 +417672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "52.00", "lithology_to": "55.00", "lithology_raw_data": "GRAVEL AND SILT", @@ -417701,7 +417701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:44:36Z", "activity_submission": null, - "well_tag_number": 112664, + "well": 112664, "lithology_from": "22.00", "lithology_to": "26.50", "lithology_raw_data": "SAND WITH PEBBLES", @@ -417730,7 +417730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "175.00", "lithology_to": "190.00", "lithology_raw_data": "TILL", @@ -417759,7 +417759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "PACKED BROWN SAND", @@ -417788,7 +417788,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "54.00", "lithology_to": "61.00", "lithology_raw_data": "GRAVEL COARSE TO FINE WITH COARSE TO MEDIUM FINE SAND, GREY BROWN", @@ -417817,7 +417817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "47.00", "lithology_to": "54.00", "lithology_raw_data": "CLAY, TRACE OF GRAVEL", @@ -417846,7 +417846,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:29:01Z", "activity_submission": null, - "well_tag_number": 112291, + "well": 112291, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "TILL", @@ -417875,7 +417875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "49.00", "lithology_to": "53.00", "lithology_raw_data": "and gravel", @@ -417904,7 +417904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "68.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY", @@ -417933,7 +417933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "3.00", "lithology_to": "30.00", "lithology_raw_data": "TIGHT; CEMENTED GRAVEL AND SAND WITH COBBLES AND BOULDERS", @@ -417962,7 +417962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, - "well_tag_number": 112564, + "well": 112564, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND, GRAVEL, MINOR CLAY", @@ -417991,7 +417991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "630.00", "lithology_to": "660.00", "lithology_raw_data": "SS/Shale lenses", @@ -418020,7 +418020,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "35.00", "lithology_to": "75.00", "lithology_raw_data": "SOFT CLAY WITH SILT", @@ -418049,7 +418049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SOIL", @@ -418078,7 +418078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "67.00", "lithology_to": "81.00", "lithology_raw_data": "and silt layers", @@ -418107,7 +418107,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": "SAND, CLAY, MIX GRAVEL", @@ -418136,7 +418136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, - "well_tag_number": 113263, + "well": 113263, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "cobbles", @@ -418165,7 +418165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "FINE WITH SOME SILTY DRY BROWN SAND", @@ -418194,7 +418194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "94.00", "lithology_to": "137.00", "lithology_raw_data": "COARSER, FINE SAND", @@ -418223,7 +418223,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "176.00", "lithology_to": "195.00", "lithology_raw_data": "GRAVEL AND SILT", @@ -418252,7 +418252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "35.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -418281,7 +418281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "275.00", "lithology_to": "280.00", "lithology_raw_data": "FINE SAND WITH SILT", @@ -418310,7 +418310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, - "well_tag_number": 113302, + "well": 113302, "lithology_from": "27.00", "lithology_to": "360.00", "lithology_raw_data": "siltstone/shale", @@ -418339,7 +418339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "20.00", "lithology_to": "28.00", "lithology_raw_data": "GRAVEL WITH LARGE COBBLES", @@ -418368,7 +418368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, - "well_tag_number": 113173, + "well": 113173, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", @@ -418397,7 +418397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "25.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN-GREY, SAND-GRAVEL", @@ -418426,7 +418426,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:16:03Z", "activity_submission": null, - "well_tag_number": 113085, + "well": 113085, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN CLAY", @@ -418455,7 +418455,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:27:24Z", "activity_submission": null, - "well_tag_number": 112649, + "well": 112649, "lithology_from": "300.00", "lithology_to": "495.00", "lithology_raw_data": "BEDROCK", @@ -418484,7 +418484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "255.00", "lithology_to": "285.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK WITH MEDIUM WT BROKEN QUARTZ, SEAMS OF GNEISS AND DIORITE", @@ -418513,7 +418513,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T20:24:55Z", "activity_submission": null, - "well_tag_number": 112653, + "well": 112653, "lithology_from": "140.00", "lithology_to": "780.00", "lithology_raw_data": "GRANITE", @@ -418542,7 +418542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "6.00", "lithology_to": "19.00", "lithology_raw_data": "gravel and cobbles", @@ -418571,7 +418571,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "367.00", "lithology_to": "400.00", "lithology_raw_data": "SS hard, grey", @@ -418600,7 +418600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "32.00", "lithology_to": "110.00", "lithology_raw_data": "CLAY WITH SAND AND GRAVEL TILL", @@ -418629,7 +418629,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "254.00", "lithology_to": "405.00", "lithology_raw_data": "rock, some white calcite", @@ -418658,7 +418658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "FINE SAND", @@ -418687,7 +418687,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, - "well_tag_number": 112446, + "well": 112446, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM GRAVEL CLAY, COARSE SAND", @@ -418716,7 +418716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "26.00", "lithology_to": "53.00", "lithology_raw_data": null, @@ -418745,7 +418745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T21:39:22Z", "activity_submission": null, - "well_tag_number": 112814, + "well": 112814, "lithology_from": "8.00", "lithology_to": "143.00", "lithology_raw_data": "grey/green", @@ -418774,7 +418774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, - "well_tag_number": 112231, + "well": 112231, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANICS", @@ -418803,7 +418803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:11:11Z", "activity_submission": null, - "well_tag_number": 112408, + "well": 112408, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -418832,7 +418832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, - "well_tag_number": 113299, + "well": 113299, "lithology_from": "54.00", "lithology_to": "218.00", "lithology_raw_data": null, @@ -418861,7 +418861,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T22:09:11Z", "activity_submission": null, - "well_tag_number": 112654, + "well": 112654, "lithology_from": "55.00", "lithology_to": "110.00", "lithology_raw_data": "gravel, cobbles", @@ -418890,7 +418890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "23.00", "lithology_to": "49.00", "lithology_raw_data": "WITH SOFT LAYERS", @@ -418919,7 +418919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, - "well_tag_number": 113017, + "well": 113017, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "rocks", @@ -418948,7 +418948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "158.00", "lithology_to": "160.00", "lithology_raw_data": "SILT", @@ -418977,7 +418977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:33Z", "activity_submission": null, - "well_tag_number": 113305, + "well": 113305, "lithology_from": "82.00", "lithology_to": "92.00", "lithology_raw_data": null, @@ -419006,7 +419006,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:32:54Z", "activity_submission": null, - "well_tag_number": 107072, + "well": 107072, "lithology_from": "21.00", "lithology_to": "25.00", "lithology_raw_data": "TILL", @@ -419035,7 +419035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:28:41Z", "activity_submission": null, - "well_tag_number": 112720, + "well": 112720, "lithology_from": "9.00", "lithology_to": "24.00", "lithology_raw_data": "broken bedrock and broken gravel", @@ -419064,7 +419064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, - "well_tag_number": 112750, + "well": 112750, "lithology_from": "73.00", "lithology_to": "98.00", "lithology_raw_data": "GREY & BROWN SAND 20-S TIGHT PACKED", @@ -419093,7 +419093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "42.00", "lithology_to": "90.00", "lithology_raw_data": null, @@ -419122,7 +419122,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "80.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -419151,7 +419151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "WHITE & BROWN ROCK", @@ -419180,7 +419180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "161.00", "lithology_to": "220.00", "lithology_raw_data": "till", @@ -419209,7 +419209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:16Z", "activity_submission": null, - "well_tag_number": 112584, + "well": 112584, "lithology_from": "58.00", "lithology_to": "65.00", "lithology_raw_data": "SANDSTONE", @@ -419238,7 +419238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T16:11:27Z", "activity_submission": null, - "well_tag_number": 112519, + "well": 112519, "lithology_from": "0.00", "lithology_to": "673.00", "lithology_raw_data": "blast rock spoils", @@ -419267,7 +419267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "83.00", "lithology_to": "107.00", "lithology_raw_data": "WITH SILTSTONE LENSES", @@ -419296,7 +419296,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "Hard Grey Bedrock", @@ -419325,7 +419325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "3.00", "lithology_to": "9.00", "lithology_raw_data": "GRAVEL, SAND, CLAY, COBBLES, DARK BROWN", @@ -419354,7 +419354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "291.00", "lithology_to": "293.00", "lithology_raw_data": null, @@ -419383,7 +419383,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:25:42Z", "activity_submission": null, - "well_tag_number": 112996, + "well": 112996, "lithology_from": "102.00", "lithology_to": "115.00", "lithology_raw_data": "siltstone shale", @@ -419412,7 +419412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T18:00:45Z", "activity_submission": null, - "well_tag_number": 112624, + "well": 112624, "lithology_from": "18.00", "lithology_to": "64.00", "lithology_raw_data": "VERY SILTY SAND/GRAVEL WITH BOULDERS", @@ -419441,7 +419441,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, - "well_tag_number": 112370, + "well": 112370, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "BLACK/BROWN, ORGANICS/SANDY SOILS/GRAVELS", @@ -419470,7 +419470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, - "well_tag_number": 112613, + "well": 112613, "lithology_from": "9.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -419499,7 +419499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "36.00", "lithology_to": "58.00", "lithology_raw_data": null, @@ -419528,7 +419528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, - "well_tag_number": 112283, + "well": 112283, "lithology_from": "55.00", "lithology_to": "87.00", "lithology_raw_data": "gravel, sand, boulders", @@ -419557,7 +419557,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, - "well_tag_number": 112937, + "well": 112937, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAVEL INTO CLAY AT 5'", @@ -419586,7 +419586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T19:32:44Z", "activity_submission": null, - "well_tag_number": 112617, + "well": 112617, "lithology_from": "50.00", "lithology_to": "296.00", "lithology_raw_data": null, @@ -419615,7 +419615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "82.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY/SILT/ROCKS", @@ -419644,7 +419644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, - "well_tag_number": 112587, + "well": 112587, "lithology_from": "12.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -419673,7 +419673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "240.00", "lithology_to": "291.00", "lithology_raw_data": "bedrock", @@ -419702,7 +419702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "132.00", "lithology_to": "151.00", "lithology_raw_data": "and gravel", @@ -419731,7 +419731,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:48:15Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "196.00", "lithology_to": "218.00", "lithology_raw_data": "CRUMBLY BEDROCK", @@ -419760,7 +419760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "11.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -419789,7 +419789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:50Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "164.00", "lithology_to": "166.00", "lithology_raw_data": null, @@ -419818,7 +419818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "60.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -419847,7 +419847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "87.00", "lithology_to": "99.00", "lithology_raw_data": "Fine to coarse sand and gravel, some cobbles", @@ -419876,7 +419876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-05T19:09:05Z", "activity_submission": null, - "well_tag_number": 113101, + "well": 113101, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -419905,7 +419905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "gravel", @@ -419934,7 +419934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "603.00", "lithology_to": "656.00", "lithology_raw_data": "grey/green with trace of white", @@ -419963,7 +419963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, - "well_tag_number": 113168, + "well": 113168, "lithology_from": "75.00", "lithology_to": "88.00", "lithology_raw_data": null, @@ -419992,7 +419992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, - "well_tag_number": 112670, + "well": 112670, "lithology_from": "31.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -420021,7 +420021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, - "well_tag_number": 112867, + "well": 112867, "lithology_from": "10.50", "lithology_to": "17.00", "lithology_raw_data": null, @@ -420050,7 +420050,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T22:55:59Z", "activity_submission": null, - "well_tag_number": 113219, + "well": 113219, "lithology_from": "103.00", "lithology_to": "146.00", "lithology_raw_data": "sand and gravel", @@ -420079,7 +420079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:52:27Z", "activity_submission": null, - "well_tag_number": 112349, + "well": 112349, "lithology_from": "25.00", "lithology_to": "52.00", "lithology_raw_data": "sand silt gravel", @@ -420108,7 +420108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "10.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -420137,7 +420137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -420166,7 +420166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "216.00", "lithology_to": "233.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -420195,7 +420195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "136.00", "lithology_to": "142.00", "lithology_raw_data": "silt sand with gravel", @@ -420224,7 +420224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:39:45Z", "activity_submission": null, - "well_tag_number": 112949, + "well": 112949, "lithology_from": "15.00", "lithology_to": "30.00", "lithology_raw_data": "LARGE COBBLES WITH MEDIUM SAND, WELL SORTED", @@ -420253,7 +420253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, - "well_tag_number": 112976, + "well": 112976, "lithology_from": "63.00", "lithology_to": "64.00", "lithology_raw_data": "SAND & GRAVEL", @@ -420282,7 +420282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "65.00", "lithology_to": "75.00", "lithology_raw_data": "broken rock, softer", @@ -420311,7 +420311,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; DENSE GRAVEL", @@ -420340,7 +420340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "146.00", "lithology_to": "158.00", "lithology_raw_data": "SILTY CLAY WITH ORGANICS", @@ -420369,7 +420369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "444.00", "lithology_to": "600.00", "lithology_raw_data": "med. grey", @@ -420398,7 +420398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", @@ -420427,7 +420427,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, - "well_tag_number": 112773, + "well": 112773, "lithology_from": "4.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -420456,7 +420456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, - "well_tag_number": 112593, + "well": 112593, "lithology_from": "131.00", "lithology_to": "135.00", "lithology_raw_data": "CLAY", @@ -420485,7 +420485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:41:53Z", "activity_submission": null, - "well_tag_number": 112917, + "well": 112917, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -420514,7 +420514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", @@ -420543,7 +420543,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "SAND & GRAVEL", @@ -420572,7 +420572,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": null, @@ -420601,7 +420601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, - "well_tag_number": 112765, + "well": 112765, "lithology_from": "0.00", "lithology_to": "11.50", "lithology_raw_data": "MEDIUM-STIFF; SILTY CLAY-TRACE SAND & GRAVEL. TRACE GRAVEL 1-3CM & SUBROUNDED ", @@ -420630,7 +420630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL", @@ -420659,7 +420659,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:34:28Z", "activity_submission": null, - "well_tag_number": 112687, + "well": 112687, "lithology_from": "6.00", "lithology_to": "56.00", "lithology_raw_data": "TILL", @@ -420688,7 +420688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, - "well_tag_number": 112389, + "well": 112389, "lithology_from": "205.00", "lithology_to": "295.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, GRANITE BEDROCK", @@ -420717,7 +420717,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T16:11:27Z", "activity_submission": null, - "well_tag_number": 112519, + "well": 112519, "lithology_from": "673.00", "lithology_to": "683.00", "lithology_raw_data": "blasted bedrock spoil", @@ -420746,7 +420746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, - "well_tag_number": 112504, + "well": 112504, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "BROWN SILT & CLAY", @@ -420775,7 +420775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:01:01Z", "activity_submission": null, - "well_tag_number": 112355, + "well": 112355, "lithology_from": "131.00", "lithology_to": "136.00", "lithology_raw_data": "sand/gravel", @@ -420804,7 +420804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "22.00", "lithology_to": "145.00", "lithology_raw_data": "SALT & PEPPER GRANITE BEDROCK", @@ -420833,7 +420833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", @@ -420862,7 +420862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:45Z", "activity_submission": null, - "well_tag_number": 112465, + "well": 112465, "lithology_from": "170.00", "lithology_to": "205.00", "lithology_raw_data": null, @@ -420891,7 +420891,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "14.00", "lithology_to": "45.00", "lithology_raw_data": "BROWN/GREY/WHITE, VOLCANIC WITH FEW TRACES", @@ -420920,7 +420920,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "73.00", "lithology_to": "80.00", "lithology_raw_data": "SILTY CLAY, GRAVEL, SAND", @@ -420949,7 +420949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MINOR CLAY, GRAVEL", @@ -420978,7 +420978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL WITH SOME GRAVEL", @@ -421007,7 +421007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-23T19:56:46Z", "activity_submission": null, - "well_tag_number": 112813, + "well": 112813, "lithology_from": "2.00", "lithology_to": "4.00", "lithology_raw_data": "wood", @@ -421036,7 +421036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", @@ -421065,7 +421065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "14.00", "lithology_to": "39.00", "lithology_raw_data": "COARSE SAND & GRAVEL", @@ -421094,7 +421094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "428.00", "lithology_to": "432.00", "lithology_raw_data": "Shale soft brown and grey", @@ -421123,7 +421123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "211.00", "lithology_to": "215.00", "lithology_raw_data": "W.B. SILTY BROWN", @@ -421152,7 +421152,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY", @@ -421181,7 +421181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, - "well_tag_number": 112544, + "well": 112544, "lithology_from": "8.00", "lithology_to": "25.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", @@ -421210,7 +421210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, - "well_tag_number": 112269, + "well": 112269, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "Back fill, shale and debris", @@ -421239,7 +421239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "4.00", "lithology_to": "11.00", "lithology_raw_data": "till", @@ -421268,7 +421268,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "63.00", "lithology_to": "69.00", "lithology_raw_data": null, @@ -421297,7 +421297,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, - "well_tag_number": 112391, + "well": 112391, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -421326,7 +421326,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, - "well_tag_number": 112366, + "well": 112366, "lithology_from": "12.00", "lithology_to": "60.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -421355,7 +421355,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": "0.00", "lithology_to": "1.50", "lithology_raw_data": null, @@ -421384,7 +421384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "89.00", "lithology_to": "91.00", "lithology_raw_data": null, @@ -421413,7 +421413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "31.00", "lithology_to": "33.00", "lithology_raw_data": null, @@ -421442,7 +421442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T21:01:46Z", "activity_submission": null, - "well_tag_number": 112831, + "well": 112831, "lithology_from": "70.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -421471,7 +421471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:00:03Z", "activity_submission": null, - "well_tag_number": 112981, + "well": 112981, "lithology_from": "75.00", "lithology_to": "145.00", "lithology_raw_data": "rock", @@ -421500,7 +421500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, CLAY, MIXED", @@ -421529,7 +421529,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:50:55Z", "activity_submission": null, - "well_tag_number": 112820, + "well": 112820, "lithology_from": "7.00", "lithology_to": "9.00", "lithology_raw_data": "silty sand and gravels", @@ -421558,7 +421558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, - "well_tag_number": 112599, + "well": 112599, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -421587,7 +421587,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "51.00", "lithology_to": "57.00", "lithology_raw_data": "HARD PACKED SILTY CLAY", @@ -421616,7 +421616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:55:02Z", "activity_submission": null, - "well_tag_number": 112238, + "well": 112238, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY", @@ -421645,7 +421645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": "54.00", "lithology_to": "120.00", "lithology_raw_data": "bedrock, some shale", @@ -421674,7 +421674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "132.00", "lithology_to": "183.00", "lithology_raw_data": null, @@ -421703,7 +421703,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, - "well_tag_number": 112587, + "well": 112587, "lithology_from": "400.00", "lithology_to": "525.00", "lithology_raw_data": "CHANGES IN ROCK", @@ -421732,7 +421732,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:24Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "358.00", "lithology_to": "359.00", "lithology_raw_data": "MEDIUM-HARD, TURNING BROWNISH SANDSTONE", @@ -421761,7 +421761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "90.00", "lithology_to": "105.00", "lithology_raw_data": "gravel", @@ -421790,7 +421790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "339.00", "lithology_to": "341.00", "lithology_raw_data": null, @@ -421819,7 +421819,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "14.00", "lithology_to": "44.00", "lithology_raw_data": "SOFT +; FEW SMALL COBBLES AND GRAVELS", @@ -421848,7 +421848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:56Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "55.00", "lithology_to": "70.00", "lithology_raw_data": "SHALE AND FINE SANDSTONE", @@ -421877,7 +421877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SANDY CLAY AND STONES", @@ -421906,7 +421906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "171.00", "lithology_to": "255.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK WITH INTERMITTENT MEDIUM BLUE SEAMS OF FELDSPAR", @@ -421935,7 +421935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "180.00", "lithology_to": "500.00", "lithology_raw_data": "GRAY & BROWN", @@ -421964,7 +421964,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "68.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY", @@ -421993,7 +421993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:26:22Z", "activity_submission": null, - "well_tag_number": 112787, + "well": 112787, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -422022,7 +422022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "167.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY, LAYER OF TILL", @@ -422051,7 +422051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "422.00", "lithology_to": "431.00", "lithology_raw_data": "SHALE & SILTSTONE WITH SALT & PEPPER LENSES", @@ -422080,7 +422080,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "250.00", "lithology_to": "263.00", "lithology_raw_data": "RED, FRACTURED VOLCANIC ROCK", @@ -422109,7 +422109,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, - "well_tag_number": 112712, + "well": 112712, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH GRAVEL", @@ -422138,7 +422138,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, - "well_tag_number": 113243, + "well": 113243, "lithology_from": "63.00", "lithology_to": "77.00", "lithology_raw_data": "gravel", @@ -422167,7 +422167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "0.00", "lithology_to": "33.00", "lithology_raw_data": "STIFF CLAY", @@ -422196,7 +422196,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "605.00", "lithology_to": "612.00", "lithology_raw_data": "FRIABLE", @@ -422225,7 +422225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:55:22Z", "activity_submission": null, - "well_tag_number": 112446, + "well": 112446, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -422254,7 +422254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "51.00", "lithology_to": "58.00", "lithology_raw_data": null, @@ -422283,7 +422283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "60.00", "lithology_to": "85.00", "lithology_raw_data": "silt", @@ -422312,7 +422312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:08:16Z", "activity_submission": null, - "well_tag_number": 112293, + "well": 112293, "lithology_from": "14.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", @@ -422341,7 +422341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:51:04Z", "activity_submission": null, - "well_tag_number": 112467, + "well": 112467, "lithology_from": "283.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -422370,7 +422370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "71.00", "lithology_to": "73.00", "lithology_raw_data": "and gravel", @@ -422399,7 +422399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SOIL", @@ -422428,7 +422428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, - "well_tag_number": 112292, + "well": 112292, "lithology_from": "65.00", "lithology_to": "75.00", "lithology_raw_data": "GRAVEL", @@ -422457,7 +422457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "27.00", "lithology_to": "34.00", "lithology_raw_data": "MEDIUM AND FINE SAND, TRACE OF GRAVEL", @@ -422486,7 +422486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, - "well_tag_number": 113271, + "well": 113271, "lithology_from": "30.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -422515,7 +422515,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T00:46:54Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "265.00", "lithology_to": "270.00", "lithology_raw_data": "SHALE", @@ -422544,7 +422544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -422573,7 +422573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL AND SAND, MEDIUM AND FINE", @@ -422602,7 +422602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, - "well_tag_number": 112794, + "well": 112794, "lithology_from": "3.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -422631,7 +422631,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "1.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -422660,7 +422660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "125.00", "lithology_to": "135.00", "lithology_raw_data": "and gravel with black streaks", @@ -422689,7 +422689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T12:50:58Z", "activity_submission": null, - "well_tag_number": 113124, + "well": 113124, "lithology_from": "0.00", "lithology_to": "642.00", "lithology_raw_data": "blasted bedrock sand stone", @@ -422718,7 +422718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:37:59Z", "activity_submission": null, - "well_tag_number": 112756, + "well": 112756, "lithology_from": "25.00", "lithology_to": "71.00", "lithology_raw_data": "LARGE GRAVEL AND SAND", @@ -422747,7 +422747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "25.00", "lithology_to": "62.00", "lithology_raw_data": "SILT CLAY", @@ -422776,7 +422776,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "385.00", "lithology_to": "405.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND GRAVEL", @@ -422805,7 +422805,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "71.00", "lithology_to": "138.00", "lithology_raw_data": "SAND & CLAY & STONES", @@ -422834,7 +422834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, - "well_tag_number": 112249, + "well": 112249, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "SANDY CLAY", @@ -422863,7 +422863,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, - "well_tag_number": 113166, + "well": 113166, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": "sand with gravel", @@ -422892,7 +422892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:22:00Z", "activity_submission": null, - "well_tag_number": 112679, + "well": 112679, "lithology_from": "0.00", "lithology_to": "35.00", "lithology_raw_data": "TILL", @@ -422921,7 +422921,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:09Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND", @@ -422950,7 +422950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, - "well_tag_number": 112594, + "well": 112594, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -422979,7 +422979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "35.00", "lithology_to": "41.00", "lithology_raw_data": "SHALE AND SILTSTONE", @@ -423008,7 +423008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, - "well_tag_number": 112366, + "well": 112366, "lithology_from": "140.00", "lithology_to": "475.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/PINK, GRANITE GNEISS TYPE BEDROCK", @@ -423037,7 +423037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -423066,7 +423066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:08:30Z", "activity_submission": null, - "well_tag_number": 112738, + "well": 112738, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -423095,7 +423095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "DIRT", @@ -423124,7 +423124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "88.00", "lithology_to": "93.00", "lithology_raw_data": null, @@ -423153,7 +423153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, - "well_tag_number": 112255, + "well": 112255, "lithology_from": "9.00", "lithology_to": "19.00", "lithology_raw_data": "FINE SAND WITH PEBBLES", @@ -423182,7 +423182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "60.00", "lithology_to": "78.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -423211,7 +423211,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "224.00", "lithology_to": "231.00", "lithology_raw_data": null, @@ -423240,7 +423240,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "230.00", "lithology_to": "340.00", "lithology_raw_data": "SANDSTONE", @@ -423269,7 +423269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "ORGANIC", @@ -423298,7 +423298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, - "well_tag_number": 112953, + "well": 112953, "lithology_from": "34.00", "lithology_to": "39.00", "lithology_raw_data": "SAND & BROKEN ROCK", @@ -423327,7 +423327,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -423356,7 +423356,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "21.00", "lithology_to": "30.00", "lithology_raw_data": "BROWN GRAVEL & TILL", @@ -423385,7 +423385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "43.00", "lithology_to": "54.00", "lithology_raw_data": "gravel and cobbles", @@ -423414,7 +423414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, - "well_tag_number": 113087, + "well": 113087, "lithology_from": "85.00", "lithology_to": "140.00", "lithology_raw_data": "clay and sand", @@ -423443,7 +423443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "784.00", "lithology_to": "802.00", "lithology_raw_data": "& tan volcanic", @@ -423472,7 +423472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "320.00", "lithology_to": "331.00", "lithology_raw_data": "MEDIUM TO FINE", @@ -423501,7 +423501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-02T21:43:35Z", "activity_submission": null, - "well_tag_number": 110627, + "well": 110627, "lithology_from": "0.00", "lithology_to": "44.00", "lithology_raw_data": null, @@ -423530,7 +423530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "WITH BASALT ZONES, BEDROCK", @@ -423559,7 +423559,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "9.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD; DENSE GRAVEL", @@ -423588,7 +423588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, - "well_tag_number": 112941, + "well": 112941, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "SAND & CLAY", @@ -423617,7 +423617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, - "well_tag_number": 112289, + "well": 112289, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "TILL", @@ -423646,7 +423646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "95.00", "lithology_to": "112.00", "lithology_raw_data": "SAND, FINE-MED", @@ -423675,7 +423675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, - "well_tag_number": 112536, + "well": 112536, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND", @@ -423704,7 +423704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "185.00", "lithology_to": "286.00", "lithology_raw_data": "SHALE WITH SOME SANDSTONE STRINGERS", @@ -423733,7 +423733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "230.00", "lithology_to": "245.00", "lithology_raw_data": "SANDSTONE WITH SHALE LENSES", @@ -423762,7 +423762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "60.00", "lithology_to": "68.00", "lithology_raw_data": "SAND", @@ -423791,7 +423791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "Shale", @@ -423820,7 +423820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:33:48Z", "activity_submission": null, - "well_tag_number": 112712, + "well": 112712, "lithology_from": "8.00", "lithology_to": "9.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -423849,7 +423849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -423878,7 +423878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:18:32Z", "activity_submission": null, - "well_tag_number": 112873, + "well": 112873, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -423907,7 +423907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "120.00", "lithology_to": "167.00", "lithology_raw_data": "BROWN-PINK BROKEN ROCK - MIXED CLAY", @@ -423936,7 +423936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, - "well_tag_number": 112500, + "well": 112500, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, TILL MIXED", @@ -423965,7 +423965,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:19Z", "activity_submission": null, - "well_tag_number": 112774, + "well": 112774, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -423994,7 +423994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": "CLAY", @@ -424023,7 +424023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, - "well_tag_number": 112903, + "well": 112903, "lithology_from": "97.00", "lithology_to": "111.00", "lithology_raw_data": "SAND & GRAVEL", @@ -424052,7 +424052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "60.00", "lithology_to": "118.00", "lithology_raw_data": "SILT AND CLAY", @@ -424081,7 +424081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "197.00", "lithology_to": "200.00", "lithology_raw_data": null, @@ -424110,7 +424110,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, - "well_tag_number": 112870, + "well": 112870, "lithology_from": "100.00", "lithology_to": "304.00", "lithology_raw_data": null, @@ -424139,7 +424139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "127.00", "lithology_to": "130.00", "lithology_raw_data": "MEDIUM HARD", @@ -424168,7 +424168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, - "well_tag_number": 112304, + "well": 112304, "lithology_from": "60.00", "lithology_to": "130.00", "lithology_raw_data": "GRAVEL, SAND", @@ -424197,7 +424197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "50.00", "lithology_to": "100.00", "lithology_raw_data": "light blue green quartz medium hard rock", @@ -424226,7 +424226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "40.00", "lithology_to": "120.00", "lithology_raw_data": "with quartz", @@ -424255,7 +424255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "165.00", "lithology_to": "178.00", "lithology_raw_data": "and gravel", @@ -424284,7 +424284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, - "well_tag_number": 112845, + "well": 112845, "lithology_from": "10.00", "lithology_to": "33.00", "lithology_raw_data": "GREY FINE SANDS", @@ -424313,7 +424313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:31Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "0.00", "lithology_to": "21.00", "lithology_raw_data": "with cobbles", @@ -424342,7 +424342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, - "well_tag_number": 112452, + "well": 112452, "lithology_from": "70.00", "lithology_to": "78.00", "lithology_raw_data": "and gravel", @@ -424371,7 +424371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:47:44Z", "activity_submission": null, - "well_tag_number": 112376, + "well": 112376, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "sand with gravel", @@ -424400,7 +424400,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "291.00", "lithology_to": "348.00", "lithology_raw_data": "bedrock", @@ -424429,7 +424429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "54.00", "lithology_to": "69.00", "lithology_raw_data": null, @@ -424458,7 +424458,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, - "well_tag_number": 112285, + "well": 112285, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "TILL", @@ -424487,7 +424487,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "SILT & ROCKS", @@ -424516,7 +424516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "20.00", "lithology_to": "32.00", "lithology_raw_data": "SANDY CLAY", @@ -424545,7 +424545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "33.00", "lithology_to": "39.00", "lithology_raw_data": "gravel and cobbles", @@ -424574,7 +424574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "49.00", "lithology_to": "55.00", "lithology_raw_data": "dark grey/green", @@ -424603,7 +424603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SAND, ROCKS, CLAY", @@ -424632,7 +424632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:43:20Z", "activity_submission": null, - "well_tag_number": 112406, + "well": 112406, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -424661,7 +424661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:35:31Z", "activity_submission": null, - "well_tag_number": 112875, + "well": 112875, "lithology_from": "18.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & GRAVEL", @@ -424690,7 +424690,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:27:58Z", "activity_submission": null, - "well_tag_number": 112712, + "well": 112712, "lithology_from": "9.00", "lithology_to": "33.00", "lithology_raw_data": "SILTY GREY SAND WITH SAND AND GRAVEL", @@ -424719,7 +424719,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "260.00", "lithology_to": "360.00", "lithology_raw_data": "BEDROCK", @@ -424748,7 +424748,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "201.00", "lithology_to": "216.00", "lithology_raw_data": "GRAVEL/FINE SAND", @@ -424777,7 +424777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "183.00", "lithology_to": "190.00", "lithology_raw_data": "BROWN/GREY", @@ -424806,7 +424806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "68.00", "lithology_to": "72.00", "lithology_raw_data": "BOULDER", @@ -424835,7 +424835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "70.00", "lithology_to": "130.00", "lithology_raw_data": null, @@ -424864,7 +424864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "280.00", "lithology_to": "290.00", "lithology_raw_data": "COMPRESSED GRAVEL, ANGULAR", @@ -424893,7 +424893,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR CLAY CONTENT", @@ -424922,7 +424922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": "6.00", "lithology_to": "11.00", "lithology_raw_data": "till", @@ -424951,7 +424951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "127.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -424980,7 +424980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, - "well_tag_number": 112258, + "well": 112258, "lithology_from": "60.00", "lithology_to": "76.00", "lithology_raw_data": "MEDIUM SAND WITH COBBLES", @@ -425009,7 +425009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, - "well_tag_number": 100127, + "well": 100127, "lithology_from": "75.00", "lithology_to": "400.00", "lithology_raw_data": null, @@ -425038,7 +425038,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T17:09:05Z", "activity_submission": null, - "well_tag_number": 112264, + "well": 112264, "lithology_from": "48.00", "lithology_to": "75.00", "lithology_raw_data": "SMALL GRAVEL WITH FINE SAND", @@ -425067,7 +425067,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "80.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY, SILT", @@ -425096,7 +425096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "106.00", "lithology_to": "112.00", "lithology_raw_data": "and gravel", @@ -425125,7 +425125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, - "well_tag_number": 112705, + "well": 112705, "lithology_from": "135.00", "lithology_to": "182.00", "lithology_raw_data": "BASALT", @@ -425154,7 +425154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "FINE, SAND, SILT", @@ -425183,7 +425183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL", @@ -425212,7 +425212,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "2.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -425241,7 +425241,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", @@ -425270,7 +425270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "179.00", "lithology_to": "209.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", @@ -425299,7 +425299,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, - "well_tag_number": 112348, + "well": 112348, "lithology_from": "56.00", "lithology_to": "57.00", "lithology_raw_data": "sand silt", @@ -425328,7 +425328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "80.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", @@ -425357,7 +425357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "64.00", "lithology_to": "66.00", "lithology_raw_data": null, @@ -425386,7 +425386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, - "well_tag_number": 112760, + "well": 112760, "lithology_from": "72.00", "lithology_to": "74.00", "lithology_raw_data": "DRY TILL WITH GRAVEL", @@ -425415,7 +425415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -425444,7 +425444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:57:29Z", "activity_submission": null, - "well_tag_number": 112292, + "well": 112292, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY AND SILT", @@ -425473,7 +425473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "14.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -425502,7 +425502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, - "well_tag_number": 112231, + "well": 112231, "lithology_from": "28.00", "lithology_to": "190.00", "lithology_raw_data": "BLUE/GREEN VOLCANIC WITH WHITE FELDSPAR", @@ -425531,7 +425531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, - "well_tag_number": 112290, + "well": 112290, "lithology_from": "70.00", "lithology_to": "85.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -425560,7 +425560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "94.00", "lithology_to": "96.00", "lithology_raw_data": "BEDROCK", @@ -425589,7 +425589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "184.00", "lithology_to": "240.00", "lithology_raw_data": "HARDER CONGLOMERATE WITH SOFT FRACTURES", @@ -425618,7 +425618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, - "well_tag_number": 112982, + "well": 112982, "lithology_from": "77.00", "lithology_to": "81.00", "lithology_raw_data": "SILTY SAND, CLAY BALLS", @@ -425647,7 +425647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "141.00", "lithology_to": "167.00", "lithology_raw_data": "and gravels", @@ -425676,7 +425676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "58.00", "lithology_to": "82.00", "lithology_raw_data": "DARK GREY CRYSTALLINE", @@ -425705,7 +425705,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "92.00", "lithology_to": "96.00", "lithology_raw_data": "SLOPPY SAND/CLAY", @@ -425734,7 +425734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": "21.00", "lithology_to": "27.00", "lithology_raw_data": "broken rock", @@ -425763,7 +425763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:50:26Z", "activity_submission": null, - "well_tag_number": 112898, + "well": 112898, "lithology_from": "48.00", "lithology_to": "75.00", "lithology_raw_data": "SAND & GRAVEL", @@ -425792,7 +425792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "11.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY AND GRAVEL TILL", @@ -425821,7 +425821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY CLAY, MINOR ROCKS", @@ -425850,7 +425850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:53:53Z", "activity_submission": null, - "well_tag_number": 113286, + "well": 113286, "lithology_from": "52.00", "lithology_to": "105.00", "lithology_raw_data": "sand gravel", @@ -425879,7 +425879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:46:24Z", "activity_submission": null, - "well_tag_number": 112348, + "well": 112348, "lithology_from": "5.00", "lithology_to": "39.00", "lithology_raw_data": "gravel sand cobbles", @@ -425908,7 +425908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, - "well_tag_number": 112861, + "well": 112861, "lithology_from": "28.00", "lithology_to": "40.00", "lithology_raw_data": "WITH GREY SHALE LAYERS", @@ -425937,7 +425937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "140.00", "lithology_to": "173.00", "lithology_raw_data": "BROWNISH & LIGHT & DARK GREY", @@ -425966,7 +425966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, - "well_tag_number": 112744, + "well": 112744, "lithology_from": "30.00", "lithology_to": "42.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH SOME GRAVEL", @@ -425995,7 +425995,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "112.00", "lithology_to": "190.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -426024,7 +426024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "25.00", "lithology_to": "37.00", "lithology_raw_data": "GRAVEL, CLAY, LARGE COBBLES", @@ -426053,7 +426053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "34.00", "lithology_to": "110.00", "lithology_raw_data": "BROWN SILTY CLAY, SOME SAND", @@ -426082,7 +426082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, - "well_tag_number": 112584, + "well": 112584, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "SHALE", @@ -426111,7 +426111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -426140,7 +426140,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-30T21:38:23Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "7.50", "lithology_to": "155.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -426169,7 +426169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, - "well_tag_number": 105508, + "well": 105508, "lithology_from": "23.00", "lithology_to": "37.00", "lithology_raw_data": "SAND MED-COARSE", @@ -426198,7 +426198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, - "well_tag_number": 113262, + "well": 113262, "lithology_from": "8.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -426227,7 +426227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "276.00", "lithology_to": "356.00", "lithology_raw_data": "GREY/BLACK SAND, SOME GRAVEL - DAMP TO W.B.", @@ -426256,7 +426256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, - "well_tag_number": 112235, + "well": 112235, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "ORGANICS", @@ -426285,7 +426285,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND ROCK", @@ -426314,7 +426314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, - "well_tag_number": 112308, + "well": 112308, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "LOAM", @@ -426343,7 +426343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, - "well_tag_number": 113147, + "well": 113147, "lithology_from": "7.00", "lithology_to": "156.00", "lithology_raw_data": null, @@ -426372,7 +426372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, - "well_tag_number": 113285, + "well": 113285, "lithology_from": "41.00", "lithology_to": "54.00", "lithology_raw_data": "SAND AND GRAVEL WITH SMALL BOULDERS", @@ -426401,7 +426401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "353.00", "lithology_to": "357.00", "lithology_raw_data": "SS med brownish grey, fractured - making water ", @@ -426430,7 +426430,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:36:58Z", "activity_submission": null, - "well_tag_number": 112592, + "well": 112592, "lithology_from": "60.00", "lithology_to": "110.00", "lithology_raw_data": "COARSE, GRAVEL, FINE, SAND", @@ -426459,7 +426459,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "130.00", "lithology_to": "196.00", "lithology_raw_data": "GREY CLAY WITH SILT LENSES", @@ -426488,7 +426488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "358.00", "lithology_to": "383.00", "lithology_raw_data": "fine to medium sand", @@ -426517,7 +426517,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, - "well_tag_number": 112862, + "well": 112862, "lithology_from": "20.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY, SOME TILL", @@ -426546,7 +426546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, - "well_tag_number": 112937, + "well": 112937, "lithology_from": "15.00", "lithology_to": "43.00", "lithology_raw_data": "CLAY HITTING BEDROCK VOLCANIC", @@ -426575,7 +426575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL WITH ROCKS", @@ -426604,7 +426604,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, MINOR GRAVEL", @@ -426633,7 +426633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, - "well_tag_number": 112909, + "well": 112909, "lithology_from": "48.00", "lithology_to": "56.00", "lithology_raw_data": "FINE - MEDIUM", @@ -426662,7 +426662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, - "well_tag_number": 113199, + "well": 113199, "lithology_from": "115.00", "lithology_to": "125.00", "lithology_raw_data": "Conglomerate, soft", @@ -426691,7 +426691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, - "well_tag_number": 112983, + "well": 112983, "lithology_from": "78.00", "lithology_to": "88.00", "lithology_raw_data": "looser gravel", @@ -426720,7 +426720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "338.00", "lithology_to": "360.00", "lithology_raw_data": "TILL", @@ -426749,7 +426749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "44.00", "lithology_to": "45.00", "lithology_raw_data": "SANDSTONE FINE", @@ -426778,7 +426778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "94.00", "lithology_to": "117.00", "lithology_raw_data": null, @@ -426807,7 +426807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "22.00", "lithology_to": "27.00", "lithology_raw_data": "BOULDERS AND GRAVEL, SOME SAND", @@ -426836,7 +426836,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:48:45Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SANDY CLAY", @@ -426865,7 +426865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "SAND & GRAVEL", @@ -426894,7 +426894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "89.00", "lithology_to": "100.00", "lithology_raw_data": "RED SEAMS, FRACTURED BEDROCK", @@ -426923,7 +426923,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "208.00", "lithology_to": "268.00", "lithology_raw_data": null, @@ -426952,7 +426952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, - "well_tag_number": 112466, + "well": 112466, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, GRAVEL", @@ -426981,7 +426981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "37.00", "lithology_to": "84.00", "lithology_raw_data": "CLAY", @@ -427010,7 +427010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -427039,7 +427039,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:53:50Z", "activity_submission": null, - "well_tag_number": 112228, + "well": 112228, "lithology_from": "127.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD FRACTURED AREAS WITH TRACES OF GNEISS", @@ -427068,7 +427068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "160.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -427097,7 +427097,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "154.00", "lithology_to": "159.00", "lithology_raw_data": "and gravel", @@ -427126,7 +427126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "60.00", "lithology_to": "120.00", "lithology_raw_data": "Shale with layers of soft shale", @@ -427155,7 +427155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, - "well_tag_number": 113252, + "well": 113252, "lithology_from": "95.00", "lithology_to": "145.00", "lithology_raw_data": "gravel, boulders", @@ -427184,7 +427184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, - "well_tag_number": 112290, + "well": 112290, "lithology_from": "85.00", "lithology_to": "97.00", "lithology_raw_data": "FINE SAND AND GRAVEL", @@ -427213,7 +427213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, - "well_tag_number": 112913, + "well": 112913, "lithology_from": "75.00", "lithology_to": "207.00", "lithology_raw_data": "SILT, SAND, CLAY, SOME GRAVEL THIS ZONE WITH A PERCHED TABLE AROUND 115FT", @@ -427242,7 +427242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "73.00", "lithology_to": "120.00", "lithology_raw_data": "WITH SANDSTONE STRINGERS", @@ -427271,7 +427271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "272.00", "lithology_to": "291.00", "lithology_raw_data": null, @@ -427300,7 +427300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "170.00", "lithology_to": "172.00", "lithology_raw_data": null, @@ -427329,7 +427329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "56.00", "lithology_to": "71.00", "lithology_raw_data": "cobbles", @@ -427358,7 +427358,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, - "well_tag_number": 112605, + "well": 112605, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, MINOR GRAVEL", @@ -427387,7 +427387,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T20:02:29Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "273.00", "lithology_to": "275.00", "lithology_raw_data": "Sand with Clay/silt", @@ -427416,7 +427416,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, - "well_tag_number": 112616, + "well": 112616, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY, ROCKS AND COBBLES", @@ -427445,7 +427445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "FINE SAND, TRACE SILT", @@ -427474,7 +427474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:31Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "21.00", "lithology_to": "38.00", "lithology_raw_data": "till", @@ -427503,7 +427503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T21:09:23Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "99.50", "lithology_to": "101.00", "lithology_raw_data": "POSSIBLE BOULDER OF FRACTURED BEDROCK", @@ -427532,7 +427532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "34.00", "lithology_to": "51.00", "lithology_raw_data": "and gravel", @@ -427561,7 +427561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "81.00", "lithology_to": "88.00", "lithology_raw_data": "SANDSTONE - SALT AND PEPPER", @@ -427590,7 +427590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "51.00", "lithology_to": "53.00", "lithology_raw_data": "SANDY BROWN CLAY", @@ -427619,7 +427619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND & GRAVEL/BROWN/GRAY", @@ -427648,7 +427648,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-29T22:56:02Z", "activity_submission": null, - "well_tag_number": 112913, + "well": 112913, "lithology_from": "275.00", "lithology_to": "295.00", "lithology_raw_data": "COARSE GRAVEL & SMALL AMOUNT MEDIUM SAND", @@ -427677,7 +427677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "7.00", "lithology_to": "43.00", "lithology_raw_data": null, @@ -427706,7 +427706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "52.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY & ROCKS", @@ -427735,7 +427735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "14.00", "lithology_to": "260.00", "lithology_raw_data": "SLATE", @@ -427764,7 +427764,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, - "well_tag_number": 112701, + "well": 112701, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TILL", @@ -427793,7 +427793,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "52.00", "lithology_to": "55.00", "lithology_raw_data": "VOLCANIC LAYER", @@ -427822,7 +427822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "77.00", "lithology_to": "79.00", "lithology_raw_data": "chunks", @@ -427851,7 +427851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; SILTY CLAY WITH GRAVEL", @@ -427880,7 +427880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:16:08Z", "activity_submission": null, - "well_tag_number": 113218, + "well": 113218, "lithology_from": "15.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -427909,7 +427909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "12.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY", @@ -427938,7 +427938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "194.00", "lithology_to": "273.00", "lithology_raw_data": null, @@ -427967,7 +427967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "69.00", "lithology_to": "82.00", "lithology_raw_data": "clean", @@ -427996,7 +427996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "120.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -428025,7 +428025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, - "well_tag_number": 112251, + "well": 112251, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "GRAVELY CLAY", @@ -428054,7 +428054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -428083,7 +428083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, - "well_tag_number": 113206, + "well": 113206, "lithology_from": "15.00", "lithology_to": "45.00", "lithology_raw_data": "gravel", @@ -428112,7 +428112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:32:15Z", "activity_submission": null, - "well_tag_number": 112458, + "well": 112458, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILT", @@ -428141,7 +428141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "285.00", "lithology_to": "293.00", "lithology_raw_data": null, @@ -428170,7 +428170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:09:18Z", "activity_submission": null, - "well_tag_number": 112872, + "well": 112872, "lithology_from": "74.00", "lithology_to": "94.00", "lithology_raw_data": null, @@ -428199,7 +428199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, - "well_tag_number": 113152, + "well": 113152, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "sand, fine-med", @@ -428228,7 +428228,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, - "well_tag_number": 112760, + "well": 112760, "lithology_from": "78.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", @@ -428257,7 +428257,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, - "well_tag_number": 112280, + "well": 112280, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY", @@ -428286,7 +428286,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-15T21:37:17Z", "activity_submission": null, - "well_tag_number": 112945, + "well": 112945, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -428315,7 +428315,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": "SANDSTONE, SALT AND PEPPER", @@ -428344,7 +428344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:29:27Z", "activity_submission": null, - "well_tag_number": 112896, + "well": 112896, "lithology_from": "1.00", "lithology_to": "28.00", "lithology_raw_data": null, @@ -428373,7 +428373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "64.00", "lithology_to": "68.00", "lithology_raw_data": "MEDIUM-SOFT, BROWNISH SANDSTONE (MEDIUM AND FINE)", @@ -428402,7 +428402,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T18:28:58Z", "activity_submission": null, - "well_tag_number": 113257, + "well": 113257, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "Sand with clay/silt (topsoil)", @@ -428431,7 +428431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "17.00", "lithology_to": "26.00", "lithology_raw_data": "Grey gravel till, firm", @@ -428460,7 +428460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "6.00", "lithology_to": "7.51", "lithology_raw_data": "OL - ORGANIC SOIL, WOOD FRAGMENTS, HUMIC MATERIAL", @@ -428489,7 +428489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/MEDIUM; SAND, GRAVEL", @@ -428518,7 +428518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "295.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", @@ -428547,7 +428547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, - "well_tag_number": 113008, + "well": 113008, "lithology_from": "24.00", "lithology_to": "29.00", "lithology_raw_data": "sand with gravel", @@ -428576,7 +428576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, - "well_tag_number": 112918, + "well": 112918, "lithology_from": "27.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -428605,7 +428605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:17:22Z", "activity_submission": null, - "well_tag_number": 112571, + "well": 112571, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "SILTY CLAY", @@ -428634,7 +428634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "8.00", "lithology_to": "19.00", "lithology_raw_data": "FINE SAND", @@ -428663,7 +428663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "460.00", "lithology_to": "485.00", "lithology_raw_data": "BLUE/WHITE VOLCANIC WITH SEAMS OF WHITE FELDSPAR", @@ -428692,7 +428692,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, - "well_tag_number": 112409, + "well": 112409, "lithology_from": "385.00", "lithology_to": "450.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -428721,7 +428721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -428750,7 +428750,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:50:57Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "292.00", "lithology_to": "297.00", "lithology_raw_data": "VOLCANIC WITH FEW TRACES", @@ -428779,7 +428779,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "205.00", "lithology_to": "285.00", "lithology_raw_data": "GREY/WHITE SILTSONE, OCCASIONALLY WHITE TRACES", @@ -428808,7 +428808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "TILL", @@ -428837,7 +428837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "19.00", "lithology_to": "38.00", "lithology_raw_data": "fine sand and gravels", @@ -428866,7 +428866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "159.00", "lithology_to": "160.00", "lithology_raw_data": null, @@ -428895,7 +428895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "1.00", "lithology_to": "8.50", "lithology_raw_data": null, @@ -428924,7 +428924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -428953,7 +428953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:24:08Z", "activity_submission": null, - "well_tag_number": 112691, + "well": 112691, "lithology_from": "0.00", "lithology_to": "115.00", "lithology_raw_data": "TILL", @@ -428982,7 +428982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", @@ -429011,7 +429011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, - "well_tag_number": 112845, + "well": 112845, "lithology_from": "109.00", "lithology_to": "116.00", "lithology_raw_data": "GREY SILTY CLAYS AND SANDS", @@ -429040,7 +429040,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "231.00", "lithology_to": "235.00", "lithology_raw_data": "SANDSTONE", @@ -429069,7 +429069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "127.00", "lithology_to": "137.00", "lithology_raw_data": "SILTY TILL", @@ -429098,7 +429098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "32.00", "lithology_to": "39.00", "lithology_raw_data": null, @@ -429127,7 +429127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "185.00", "lithology_to": "197.00", "lithology_raw_data": null, @@ -429156,7 +429156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "6.00", "lithology_to": "18.00", "lithology_raw_data": "COBBLES, GRAVEL, SMALL BOULDERS", @@ -429185,7 +429185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "152.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", @@ -429214,7 +429214,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "115.00", "lithology_to": "116.00", "lithology_raw_data": "SILTSTONE & SHALE", @@ -429243,7 +429243,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": null, @@ -429272,7 +429272,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "84.00", "lithology_to": "115.00", "lithology_raw_data": "GREY SAND", @@ -429301,7 +429301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "6.00", "lithology_to": "14.00", "lithology_raw_data": "BROWN/GREY, VOLCANIC", @@ -429330,7 +429330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "400.00", "lithology_to": "520.00", "lithology_raw_data": "BEDROCK LAYERED ZONES", @@ -429359,7 +429359,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:38:14Z", "activity_submission": null, - "well_tag_number": 112897, + "well": 112897, "lithology_from": "140.00", "lithology_to": "148.00", "lithology_raw_data": "SILT & SAND", @@ -429388,7 +429388,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "85.00", "lithology_to": "91.00", "lithology_raw_data": null, @@ -429417,7 +429417,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "122.00", "lithology_to": "154.00", "lithology_raw_data": "CLAY", @@ -429446,7 +429446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, - "well_tag_number": 113269, + "well": 113269, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": "CLAYS AND GRAVEL LAYERS", @@ -429475,7 +429475,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:30:49Z", "activity_submission": null, - "well_tag_number": 113270, + "well": 113270, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "rip rap fill", @@ -429504,7 +429504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "205.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE", @@ -429533,7 +429533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "21.00", "lithology_to": "45.00", "lithology_raw_data": "SAND & GRAVEL", @@ -429562,7 +429562,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, - "well_tag_number": 112283, + "well": 112283, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "gravel, boulders", @@ -429591,7 +429591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-18T22:05:54Z", "activity_submission": null, - "well_tag_number": 113264, + "well": 113264, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "gravel", @@ -429620,7 +429620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, - "well_tag_number": 112362, + "well": 112362, "lithology_from": "4.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY, GRAVEL, COBBLES", @@ -429649,7 +429649,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, - "well_tag_number": 112845, + "well": 112845, "lithology_from": "57.00", "lithology_to": "76.00", "lithology_raw_data": "GREY RIVER SANDS, SOME WOOD", @@ -429678,7 +429678,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:58Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "69.00", "lithology_to": "79.00", "lithology_raw_data": "SAND AND GRAVEL, WB", @@ -429707,7 +429707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "390.00", "lithology_to": "397.00", "lithology_raw_data": "GREY/BLUE VOLCANIC", @@ -429736,7 +429736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:44Z", "activity_submission": null, - "well_tag_number": 112693, + "well": 112693, "lithology_from": "14.00", "lithology_to": "202.00", "lithology_raw_data": "BEDROCK", @@ -429765,7 +429765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, ROCKS", @@ -429794,7 +429794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "12.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -429823,7 +429823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:09Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOPSOIL", @@ -429852,7 +429852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T19:15:38Z", "activity_submission": null, - "well_tag_number": 112668, + "well": 112668, "lithology_from": "110.00", "lithology_to": "153.00", "lithology_raw_data": "BEDROCK", @@ -429881,7 +429881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "GRAVEL, CLAYS", @@ -429910,7 +429910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "697.00", "lithology_to": "784.00", "lithology_raw_data": "fractured", @@ -429939,7 +429939,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:29Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "33.00", "lithology_to": "53.00", "lithology_raw_data": "INTERBEDDED SAND AND CLAY", @@ -429968,7 +429968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, - "well_tag_number": 112973, + "well": 112973, "lithology_from": "2.00", "lithology_to": "12.00", "lithology_raw_data": "CEMENTED GRAVEL WITH COBBLES", @@ -429997,7 +429997,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -430026,7 +430026,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "4.00", "lithology_to": "21.00", "lithology_raw_data": "broken", @@ -430055,7 +430055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -430084,7 +430084,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:59:41Z", "activity_submission": null, - "well_tag_number": 113129, + "well": 113129, "lithology_from": "190.00", "lithology_to": "196.00", "lithology_raw_data": "SAND", @@ -430113,7 +430113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "40.00", "lithology_to": "70.00", "lithology_raw_data": "BADLEY FRACTURED BEDROCK WITH SOME CLAY SEAMS", @@ -430142,7 +430142,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -430171,7 +430171,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "34.00", "lithology_to": "42.00", "lithology_raw_data": "and cobbles", @@ -430200,7 +430200,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "44.00", "lithology_to": "93.00", "lithology_raw_data": "MEDIUM VOLCANIC WITH WHITE TRACES", @@ -430229,7 +430229,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "53.00", "lithology_to": "64.00", "lithology_raw_data": "TILL", @@ -430258,7 +430258,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, - "well_tag_number": 113303, + "well": 113303, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -430287,7 +430287,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "80.00", "lithology_to": "82.00", "lithology_raw_data": "CLAY/SILT", @@ -430316,7 +430316,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "69.00", "lithology_to": "77.00", "lithology_raw_data": "GREY SILTY SAND AND MEDIUM GRAVEL", @@ -430345,7 +430345,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "4.00", "lithology_to": "6.00", "lithology_raw_data": "granite", @@ -430374,7 +430374,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "24.00", "lithology_to": "36.00", "lithology_raw_data": "cobbles", @@ -430403,7 +430403,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, - "well_tag_number": 113070, + "well": 113070, "lithology_from": "44.00", "lithology_to": "46.00", "lithology_raw_data": "VERY FINE, SILTY SAND", @@ -430432,7 +430432,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "38.00", "lithology_to": "47.00", "lithology_raw_data": null, @@ -430461,7 +430461,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "113.00", "lithology_to": "119.00", "lithology_raw_data": "SAND WITH PEBBLES", @@ -430490,7 +430490,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "390.00", "lithology_to": "396.00", "lithology_raw_data": "SILTSTONE & SHALE WTIH SALT & PEPPER LENSES", @@ -430519,7 +430519,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": null, @@ -430548,7 +430548,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "25.00", "lithology_to": "36.00", "lithology_raw_data": null, @@ -430577,7 +430577,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "23.00", "lithology_to": "36.00", "lithology_raw_data": "SAND", @@ -430606,7 +430606,7 @@ "update_user": "PROXY_WELLS", "update_date": "2011-06-01T16:09:43Z", "activity_submission": null, - "well_tag_number": 104533, + "well": 104533, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL", @@ -430635,7 +430635,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "30.00", "lithology_to": "51.00", "lithology_raw_data": "GREY CLAY", @@ -430664,7 +430664,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, - "well_tag_number": 110750, + "well": 110750, "lithology_from": "62.00", "lithology_to": "260.00", "lithology_raw_data": null, @@ -430693,7 +430693,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "80.00", "lithology_to": "94.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL, CLAY", @@ -430722,7 +430722,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "230.00", "lithology_to": "245.00", "lithology_raw_data": "COMPETENT BEDROCK, W.B.Q", @@ -430751,7 +430751,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "740.00", "lithology_to": "1140.00", "lithology_raw_data": "green/grey", @@ -430780,7 +430780,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:09:53Z", "activity_submission": null, - "well_tag_number": 112995, + "well": 112995, "lithology_from": "72.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -430809,7 +430809,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, FINE SAND", @@ -430838,7 +430838,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "1.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY", @@ -430867,7 +430867,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "77.00", "lithology_to": "81.00", "lithology_raw_data": "till", @@ -430896,7 +430896,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:11Z", "activity_submission": null, - "well_tag_number": 112410, + "well": 112410, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", @@ -430925,7 +430925,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, - "well_tag_number": 112600, + "well": 112600, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "CLAY AND GRAVEL", @@ -430954,7 +430954,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", @@ -430983,7 +430983,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "20.00", "lithology_to": "50.00", "lithology_raw_data": "black green hard rock", @@ -431012,7 +431012,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "159.00", "lithology_to": "172.00", "lithology_raw_data": "GREEN-GREY, SILTY CLAY", @@ -431041,7 +431041,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:10:14Z", "activity_submission": null, - "well_tag_number": 112302, + "well": 112302, "lithology_from": "255.00", "lithology_to": "335.00", "lithology_raw_data": "W.B. BROWN SAND AND GRAVEL", @@ -431070,7 +431070,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "SILT, CLAY & ROCKS, LIGHT BROWN", @@ -431099,7 +431099,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "102.00", "lithology_to": "118.00", "lithology_raw_data": null, @@ -431128,7 +431128,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:51Z", "activity_submission": null, - "well_tag_number": 112303, + "well": 112303, "lithology_from": "81.00", "lithology_to": "162.00", "lithology_raw_data": "BASALT", @@ -431157,7 +431157,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "400.00", "lithology_to": "436.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -431186,7 +431186,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, - "well_tag_number": 112313, + "well": 112313, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "SAND", @@ -431215,7 +431215,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, - "well_tag_number": 113147, + "well": 113147, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -431244,7 +431244,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -431273,7 +431273,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:28:29Z", "activity_submission": null, - "well_tag_number": 112984, + "well": 112984, "lithology_from": "39.00", "lithology_to": "45.00", "lithology_raw_data": "sand with gravel", @@ -431302,7 +431302,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "971.00", "lithology_to": "973.00", "lithology_raw_data": null, @@ -431331,7 +431331,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "25.00", "lithology_to": "29.00", "lithology_raw_data": "SAND, GRAVEL, SILT", @@ -431360,7 +431360,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "75.00", "lithology_to": "115.00", "lithology_raw_data": "HARD CLAY WITH GRAVEL", @@ -431389,7 +431389,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, - "well_tag_number": 112786, + "well": 112786, "lithology_from": "12.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -431418,7 +431418,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "237.00", "lithology_to": "245.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -431447,7 +431447,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:11:17Z", "activity_submission": null, - "well_tag_number": 112894, + "well": 112894, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "SILT & CLAY", @@ -431476,7 +431476,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "325.00", "lithology_to": "387.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -431505,7 +431505,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "110.00", "lithology_to": "113.00", "lithology_raw_data": "SAND, SILT AND CLAY", @@ -431534,7 +431534,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, - "well_tag_number": 112306, + "well": 112306, "lithology_from": "4.00", "lithology_to": "165.00", "lithology_raw_data": "BEDROCK/GRANITE", @@ -431563,7 +431563,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:44:46Z", "activity_submission": null, - "well_tag_number": 112452, + "well": 112452, "lithology_from": "53.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -431592,7 +431592,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:22:52Z", "activity_submission": null, - "well_tag_number": 113301, + "well": 113301, "lithology_from": "280.00", "lithology_to": "340.00", "lithology_raw_data": "siltstone/shale", @@ -431621,7 +431621,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, - "well_tag_number": 112616, + "well": 112616, "lithology_from": "72.00", "lithology_to": "76.00", "lithology_raw_data": "SILT", @@ -431650,7 +431650,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "123.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -431679,7 +431679,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -431708,7 +431708,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY AND BOULDERS", @@ -431737,7 +431737,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "210.00", "lithology_to": "217.00", "lithology_raw_data": "BROWN CLAY, SOME SAND, ODD STONE", @@ -431766,7 +431766,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "235.00", "lithology_to": "237.00", "lithology_raw_data": "MEDIUM HARD", @@ -431795,7 +431795,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": null, @@ -431824,7 +431824,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BOULDERS, COARSE SAND, CLAY", @@ -431853,7 +431853,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "42.00", "lithology_to": "46.00", "lithology_raw_data": "SAND, CLAY", @@ -431882,7 +431882,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "340.00", "lithology_to": "360.00", "lithology_raw_data": "Sandstone tight", @@ -431911,7 +431911,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "COARSE SAND AND BOULDERS", @@ -431940,7 +431940,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:44:04Z", "activity_submission": null, - "well_tag_number": 113146, + "well": 113146, "lithology_from": "310.00", "lithology_to": "518.00", "lithology_raw_data": "GREY SILTY SAND", @@ -431969,7 +431969,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": "98.00", "lithology_to": "250.00", "lithology_raw_data": "rock, very hard", @@ -431998,7 +431998,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:39Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -432027,7 +432027,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, - "well_tag_number": 113150, + "well": 113150, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "sand-fine med", @@ -432056,7 +432056,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -432085,7 +432085,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "24.00", "lithology_to": "47.00", "lithology_raw_data": "SILTSTONE, SHALE, BROWN STAINING, ", @@ -432114,7 +432114,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "107.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -432143,7 +432143,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "0.00", "lithology_to": "150.00", "lithology_raw_data": "CLAY/GRAVELLY SECTIONS", @@ -432172,7 +432172,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, - "well_tag_number": 112763, + "well": 112763, "lithology_from": "10.00", "lithology_to": "12.50", "lithology_raw_data": "SILTY CLAY, TRACE SAND & GRAVEL. LESS TRACE GRAVEL THAN ABOVE W. INCREASE IN SILT & SAND CONTENT ", @@ -432201,7 +432201,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, - "well_tag_number": 112682, + "well": 112682, "lithology_from": "55.00", "lithology_to": "63.00", "lithology_raw_data": "HARD PAN", @@ -432230,7 +432230,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "164.00", "lithology_to": "177.00", "lithology_raw_data": "till", @@ -432259,7 +432259,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "440.00", "lithology_to": "515.00", "lithology_raw_data": "BROKEN UNSTABLE FORMATION", @@ -432288,7 +432288,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": "sand with gravel", @@ -432317,7 +432317,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, - "well_tag_number": 112959, + "well": 112959, "lithology_from": "54.00", "lithology_to": "72.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -432346,7 +432346,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T19:20:12Z", "activity_submission": null, - "well_tag_number": 112625, + "well": 112625, "lithology_from": "78.00", "lithology_to": "84.00", "lithology_raw_data": "DIRTY SANDSTONE", @@ -432375,7 +432375,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "SAND, GRAVEL, TRACES OF CLAY", @@ -432404,7 +432404,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "173.00", "lithology_to": "176.00", "lithology_raw_data": null, @@ -432433,7 +432433,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:50:46Z", "activity_submission": null, - "well_tag_number": 112611, + "well": 112611, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "FINE SAND AND ROCK", @@ -432462,7 +432462,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "101.00", "lithology_to": "111.00", "lithology_raw_data": "medium to coarse grained", @@ -432491,7 +432491,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "95.00", "lithology_to": "100.00", "lithology_raw_data": "FRACTURE", @@ -432520,7 +432520,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:48:40Z", "activity_submission": null, - "well_tag_number": 112455, + "well": 112455, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", @@ -432549,7 +432549,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "243.00", "lithology_to": "280.00", "lithology_raw_data": "SAND, FINE TO MEDIUM SILT CONTENT", @@ -432578,7 +432578,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, - "well_tag_number": 110750, + "well": 110750, "lithology_from": "18.00", "lithology_to": "62.00", "lithology_raw_data": "SAND & GRAVEL", @@ -432607,7 +432607,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "100.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -432636,7 +432636,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "210.00", "lithology_to": "580.00", "lithology_raw_data": "bedrock", @@ -432665,7 +432665,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "SOFT/HARD, GRAVEL", @@ -432694,7 +432694,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, - "well_tag_number": 112983, + "well": 112983, "lithology_from": "88.00", "lithology_to": "89.00", "lithology_raw_data": null, @@ -432723,7 +432723,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "280.00", "lithology_to": "282.00", "lithology_raw_data": "GRAVEL WITH FINE SILTY SAND ", @@ -432752,7 +432752,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "1.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -432781,7 +432781,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "80.00", "lithology_to": "300.00", "lithology_raw_data": "SMALL/MEDIUM, SAND", @@ -432810,7 +432810,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "25.00", "lithology_to": "29.00", "lithology_raw_data": "COARSE GRAVEL", @@ -432839,7 +432839,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "153.00", "lithology_to": "155.00", "lithology_raw_data": "CLAY", @@ -432868,7 +432868,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "350.00", "lithology_to": "365.00", "lithology_raw_data": "GREEN/GREY/WHITE GRANITE WITH FEW WHITE TRACES", @@ -432897,7 +432897,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, - "well_tag_number": 112373, + "well": 112373, "lithology_from": "28.00", "lithology_to": "309.00", "lithology_raw_data": "bedrock", @@ -432926,7 +432926,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "COARSE SAND", @@ -432955,7 +432955,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, - "well_tag_number": 112714, + "well": 112714, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SAND AND GRAVEL FILL", @@ -432984,7 +432984,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-09-20T05:37:45Z", "activity_submission": null, - "well_tag_number": 111752, + "well": 111752, "lithology_from": "59.00", "lithology_to": "208.00", "lithology_raw_data": "BEDROCK", @@ -433013,7 +433013,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:17:15Z", "activity_submission": null, - "well_tag_number": 112546, + "well": 112546, "lithology_from": "82.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -433042,7 +433042,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE SAND AND GRAVEL", @@ -433071,7 +433071,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -433100,7 +433100,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, - "well_tag_number": 113025, + "well": 113025, "lithology_from": "170.00", "lithology_to": "232.00", "lithology_raw_data": "Yellow Clay and Sand", @@ -433129,7 +433129,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "290.00", "lithology_to": "293.00", "lithology_raw_data": "GREY CLAY", @@ -433158,7 +433158,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "28.00", "lithology_to": "37.00", "lithology_raw_data": "trace of gravel", @@ -433187,7 +433187,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "250.00", "lithology_to": "260.00", "lithology_raw_data": "GRAVEL, MINOR SILT", @@ -433216,7 +433216,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, - "well_tag_number": 112732, + "well": 112732, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": "SILTY SAND WITH SOME SILTY CLAY", @@ -433245,7 +433245,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, - "well_tag_number": 112477, + "well": 112477, "lithology_from": "20.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", @@ -433274,7 +433274,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "28.00", "lithology_to": "35.00", "lithology_raw_data": "BROKEN BEDROCK - GRAVEL TYPE RETURN", @@ -433303,7 +433303,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T23:06:56Z", "activity_submission": null, - "well_tag_number": 112672, + "well": 112672, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY, GRAVEL, COBBLE", @@ -433332,7 +433332,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "82.00", "lithology_to": "97.00", "lithology_raw_data": "LIGHT GREY", @@ -433361,7 +433361,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, - "well_tag_number": 112412, + "well": 112412, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": "FINE SAND & SILT", @@ -433390,7 +433390,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "72.00", "lithology_to": "85.00", "lithology_raw_data": "CLAY", @@ -433419,7 +433419,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "3.00", "lithology_to": "22.00", "lithology_raw_data": "TILL & COBBLES, BROWN/GREY", @@ -433448,7 +433448,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:58:32Z", "activity_submission": null, - "well_tag_number": 112309, + "well": 112309, "lithology_from": "26.00", "lithology_to": "200.00", "lithology_raw_data": "DARK GREY BEDROCK", @@ -433477,7 +433477,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:40Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "21.00", "lithology_to": "23.00", "lithology_raw_data": null, @@ -433506,7 +433506,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "60.00", "lithology_to": "63.00", "lithology_raw_data": null, @@ -433535,7 +433535,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "101.00", "lithology_to": "135.00", "lithology_raw_data": "DRY BROWN SAND, LITTLE GRAVEL", @@ -433564,7 +433564,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "Brown silty topsoil", @@ -433593,7 +433593,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "147.00", "lithology_to": "360.00", "lithology_raw_data": "VOLCANIC", @@ -433622,7 +433622,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "GREY/BROWN VOLCANIC WITH FEW TRACES", @@ -433651,7 +433651,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, - "well_tag_number": 112234, + "well": 112234, "lithology_from": "35.00", "lithology_to": "47.00", "lithology_raw_data": "SAND/GRAVEL/COBBLES", @@ -433680,7 +433680,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T19:06:56Z", "activity_submission": null, - "well_tag_number": 112616, + "well": 112616, "lithology_from": "4.00", "lithology_to": "72.00", "lithology_raw_data": "CLAY, ROCKS AND BOULDERS", @@ -433709,7 +433709,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -433738,7 +433738,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:53:22Z", "activity_submission": null, - "well_tag_number": 112535, + "well": 112535, "lithology_from": "28.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -433767,7 +433767,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, - "well_tag_number": 112483, + "well": 112483, "lithology_from": "80.00", "lithology_to": "92.00", "lithology_raw_data": "BEDROCK", @@ -433796,7 +433796,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, - "well_tag_number": 113006, + "well": 113006, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -433825,7 +433825,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/HARD CEMENTED GRAVEL AND MEDIUM GRADE", @@ -433854,7 +433854,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "60.00", "lithology_to": "71.00", "lithology_raw_data": "with fine sand", @@ -433883,7 +433883,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, - "well_tag_number": 112255, + "well": 112255, "lithology_from": "33.00", "lithology_to": "41.00", "lithology_raw_data": "MEDIUM SAND WITH COBBLES", @@ -433912,7 +433912,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -433941,7 +433941,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "161.00", "lithology_to": "165.00", "lithology_raw_data": null, @@ -433970,7 +433970,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, - "well_tag_number": 112713, + "well": 112713, "lithology_from": "30.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER GREY AND BLACK SAND WITH GRAVEL", @@ -433999,7 +433999,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "870.00", "lithology_to": "960.00", "lithology_raw_data": null, @@ -434028,7 +434028,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:09:17Z", "activity_submission": null, - "well_tag_number": 112565, + "well": 112565, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY LAYERS, SAND, GRAVEL MIXED", @@ -434057,7 +434057,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "374.00", "lithology_to": "421.00", "lithology_raw_data": "BASALT", @@ -434086,7 +434086,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "19.00", "lithology_to": "67.00", "lithology_raw_data": "cobbles", @@ -434115,7 +434115,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:39:44Z", "activity_submission": null, - "well_tag_number": 112262, + "well": 112262, "lithology_from": "18.00", "lithology_to": "22.00", "lithology_raw_data": "LARGE BOULDERS, MEDIUM SAND", @@ -434144,7 +434144,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:27:24Z", "activity_submission": null, - "well_tag_number": 112649, + "well": 112649, "lithology_from": "495.00", "lithology_to": "540.00", "lithology_raw_data": "BEDROCK", @@ -434173,7 +434173,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "115.00", "lithology_to": "121.00", "lithology_raw_data": "SILTY FINE SAND", @@ -434202,7 +434202,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, - "well_tag_number": 112249, + "well": 112249, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "SILTSTONE", @@ -434231,7 +434231,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "156.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY", @@ -434260,7 +434260,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "225.00", "lithology_to": "239.00", "lithology_raw_data": "MEDIUM TO COARSE SAND AND FINE GRAVEL", @@ -434289,7 +434289,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "191.00", "lithology_to": "192.00", "lithology_raw_data": "fractured", @@ -434318,7 +434318,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:22:22Z", "activity_submission": null, - "well_tag_number": 112811, + "well": 112811, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": "sand with gravel", @@ -434347,7 +434347,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, - "well_tag_number": 112341, + "well": 112341, "lithology_from": "150.00", "lithology_to": "380.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREEN VOLCANIC SEAMS OF GNEISS", @@ -434376,7 +434376,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": "CLAY", @@ -434405,7 +434405,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "13.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -434434,7 +434434,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "233.00", "lithology_to": "239.00", "lithology_raw_data": null, @@ -434463,7 +434463,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, - "well_tag_number": 112835, + "well": 112835, "lithology_from": "36.00", "lithology_to": "41.00", "lithology_raw_data": "silty", @@ -434492,7 +434492,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "176.00", "lithology_to": "204.00", "lithology_raw_data": "FINE SILTY SANDS", @@ -434521,7 +434521,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "2.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -434550,7 +434550,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "40.00", "lithology_to": "48.00", "lithology_raw_data": "HARD PACKED CLAY WITH SOME GRAVEL AND SILTY CLAY", @@ -434579,7 +434579,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "4.00", "lithology_to": "13.00", "lithology_raw_data": "till", @@ -434608,7 +434608,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "MEDIUM COARSE SAND", @@ -434637,7 +434637,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:47:54Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "186.00", "lithology_to": "225.00", "lithology_raw_data": "Coarse grey sandstone", @@ -434666,7 +434666,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND", @@ -434695,7 +434695,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "85.00", "lithology_to": "122.00", "lithology_raw_data": "GRAVEL WITH A FEW DAMP SEAMS", @@ -434724,7 +434724,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "497.00", "lithology_to": "515.00", "lithology_raw_data": "GREY SHALE, SOME WATER", @@ -434753,7 +434753,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "226.00", "lithology_to": "320.00", "lithology_raw_data": "GRANITE", @@ -434782,7 +434782,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T18:22:04Z", "activity_submission": null, - "well_tag_number": 112532, + "well": 112532, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "GRAVEL, SILTY, DIRTY", @@ -434811,7 +434811,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, - "well_tag_number": 112409, + "well": 112409, "lithology_from": "375.00", "lithology_to": "385.00", "lithology_raw_data": "SILT, SAND AND GRAVEL", @@ -434840,7 +434840,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "SILTY SAND AND GRAVEL", @@ -434869,7 +434869,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "290.00", "lithology_to": "311.00", "lithology_raw_data": "gravelly till", @@ -434898,7 +434898,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:38Z", "activity_submission": null, - "well_tag_number": 112704, + "well": 112704, "lithology_from": "34.00", "lithology_to": null, "lithology_raw_data": "TILL", @@ -434927,7 +434927,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "177.00", "lithology_to": "185.00", "lithology_raw_data": "SMALL ", @@ -434956,7 +434956,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -434985,7 +434985,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "105.00", "lithology_to": "136.00", "lithology_raw_data": null, @@ -435014,7 +435014,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, - "well_tag_number": 112839, + "well": 112839, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -435043,7 +435043,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, - "well_tag_number": 112559, + "well": 112559, "lithology_from": "102.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -435072,7 +435072,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T21:30:38Z", "activity_submission": null, - "well_tag_number": 113023, + "well": 113023, "lithology_from": "129.00", "lithology_to": "159.00", "lithology_raw_data": "SAND", @@ -435101,7 +435101,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "284.00", "lithology_to": "292.00", "lithology_raw_data": null, @@ -435130,7 +435130,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "43.00", "lithology_to": "159.00", "lithology_raw_data": "CRYSTALLINE", @@ -435159,7 +435159,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T15:40:18Z", "activity_submission": null, - "well_tag_number": 112638, + "well": 112638, "lithology_from": "0.00", "lithology_to": "56.00", "lithology_raw_data": "till/clay", @@ -435188,7 +435188,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "155.00", "lithology_to": "171.00", "lithology_raw_data": "SHALE", @@ -435217,7 +435217,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "388.00", "lithology_to": "394.00", "lithology_raw_data": "SANDSTONE COARSE S&P TO FINE CONGLOMERATE", @@ -435246,7 +435246,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "120.00", "lithology_to": "137.00", "lithology_raw_data": "CEMENTED CLAY/VOLCANIC TILL", @@ -435275,7 +435275,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:13:12Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANICS", @@ -435304,7 +435304,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -435333,7 +435333,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "22.00", "lithology_to": "26.00", "lithology_raw_data": "BOULDER", @@ -435362,7 +435362,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "4.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -435391,7 +435391,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD, BOULDERS AND TILL", @@ -435420,7 +435420,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T20:02:46Z", "activity_submission": null, - "well_tag_number": 113092, + "well": 113092, "lithology_from": "48.00", "lithology_to": "55.00", "lithology_raw_data": "cleaner, very sandy", @@ -435449,7 +435449,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "819.00", "lithology_to": "829.00", "lithology_raw_data": null, @@ -435478,7 +435478,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, - "well_tag_number": 112676, + "well": 112676, "lithology_from": "85.00", "lithology_to": "120.00", "lithology_raw_data": "BLK SILTY SAND", @@ -435507,7 +435507,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:53Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "46.00", "lithology_to": "66.00", "lithology_raw_data": null, @@ -435536,7 +435536,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "170.00", "lithology_to": "220.00", "lithology_raw_data": "GREY/WG VOLCANIC FELDSPAR WITH FEW GREEN AND WHITE TRACES", @@ -435565,7 +435565,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, - "well_tag_number": 112994, + "well": 112994, "lithology_from": "19.00", "lithology_to": "143.00", "lithology_raw_data": null, @@ -435594,7 +435594,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "31.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", @@ -435623,7 +435623,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "612.00", "lithology_to": "623.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -435652,7 +435652,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "111.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -435681,7 +435681,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, - "well_tag_number": 112286, + "well": 112286, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "GRAVEL", @@ -435710,7 +435710,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "116.00", "lithology_to": "130.00", "lithology_raw_data": "CLAY, THIN LAYER OF WEATHERED SS", @@ -435739,7 +435739,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "290.00", "lithology_to": "300.00", "lithology_raw_data": "SILTSTONE", @@ -435768,7 +435768,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "FINE SAND", @@ -435797,7 +435797,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "102.00", "lithology_to": "103.00", "lithology_raw_data": "SILTSTONE/SHALE WITH BOULDERS", @@ -435826,7 +435826,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "68.00", "lithology_to": "200.00", "lithology_raw_data": "WHITE & GREY", @@ -435855,7 +435855,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "700.00", "lithology_to": "799.00", "lithology_raw_data": "few fractures", @@ -435884,7 +435884,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-12T00:47:23Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "210.00", "lithology_to": "220.00", "lithology_raw_data": "GREEN/GREY/WHITE GRANITE WITH A FEW WHITE TRACES", @@ -435913,7 +435913,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:19Z", "activity_submission": null, - "well_tag_number": 112774, + "well": 112774, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -435942,7 +435942,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "44.00", "lithology_to": "64.00", "lithology_raw_data": "and gravel", @@ -435971,7 +435971,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:14:28Z", "activity_submission": null, - "well_tag_number": 112714, + "well": 112714, "lithology_from": "2.00", "lithology_to": "9.00", "lithology_raw_data": "MEDIUM AND FINE SAND", @@ -436000,7 +436000,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, - "well_tag_number": 112874, + "well": 112874, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "SAND & GRAVEL", @@ -436029,7 +436029,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -436058,7 +436058,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "6.00", "lithology_to": "25.00", "lithology_raw_data": "and gravel", @@ -436087,7 +436087,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:12:05Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "210.00", "lithology_to": "220.00", "lithology_raw_data": "MEDIUM; GRAVEL, MINOR SAND, MEDIUM-HARD; CEMENTED GRAVEL;", @@ -436116,7 +436116,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:32:10Z", "activity_submission": null, - "well_tag_number": 112683, + "well": 112683, "lithology_from": "0.00", "lithology_to": "2.50", "lithology_raw_data": "TILL", @@ -436145,7 +436145,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "140.00", "lithology_to": "143.00", "lithology_raw_data": "ANGULAR GRAVEL, CLAY", @@ -436174,7 +436174,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "cobbles", @@ -436203,7 +436203,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "46.00", "lithology_to": "68.00", "lithology_raw_data": "CEMENTED GRAVEL, COBBLES", @@ -436232,7 +436232,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -436261,7 +436261,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, - "well_tag_number": 112903, + "well": 112903, "lithology_from": "38.00", "lithology_to": "54.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", @@ -436290,7 +436290,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, - "well_tag_number": 112383, + "well": 112383, "lithology_from": "70.00", "lithology_to": "130.00", "lithology_raw_data": "with quartz lenses", @@ -436319,7 +436319,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "22.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -436348,7 +436348,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "293.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -436377,7 +436377,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -436406,7 +436406,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:00:03Z", "activity_submission": null, - "well_tag_number": 112249, + "well": 112249, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -436435,7 +436435,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, - "well_tag_number": 113141, + "well": 113141, "lithology_from": "67.00", "lithology_to": "71.00", "lithology_raw_data": "WEST GRAVELS AND SILTS", @@ -436464,7 +436464,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:27:06Z", "activity_submission": null, - "well_tag_number": 112609, + "well": 112609, "lithology_from": "23.00", "lithology_to": "28.00", "lithology_raw_data": null, @@ -436493,7 +436493,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "31.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -436522,7 +436522,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:07:14Z", "activity_submission": null, - "well_tag_number": 112594, + "well": 112594, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -436551,7 +436551,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "154.00", "lithology_to": "175.00", "lithology_raw_data": "VOLCANIC MIX", @@ -436580,7 +436580,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "284.00", "lithology_to": "295.00", "lithology_raw_data": "W.B. MD/COARSE SAND AND GRAVEL", @@ -436609,7 +436609,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "19.00", "lithology_to": "25.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -436638,7 +436638,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, - "well_tag_number": 112352, + "well": 112352, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": "gravel sand few cobbles", @@ -436667,7 +436667,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, - "well_tag_number": 112578, + "well": 112578, "lithology_from": "385.00", "lithology_to": "444.00", "lithology_raw_data": "VOLCANIC WITH TRACES OF WHITE FELDSPAR", @@ -436696,7 +436696,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "460.00", "lithology_to": "480.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL", @@ -436725,7 +436725,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:30:43Z", "activity_submission": null, - "well_tag_number": 112622, + "well": 112622, "lithology_from": "205.00", "lithology_to": "276.00", "lithology_raw_data": "FINE GREY SILTY SANDS, MORE COARSE SANDS", @@ -436754,7 +436754,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN/GREY/TRACE OF CLAY", @@ -436783,7 +436783,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T13:46:32Z", "activity_submission": null, - "well_tag_number": 112544, + "well": 112544, "lithology_from": "48.00", "lithology_to": "75.00", "lithology_raw_data": "BEDROCK", @@ -436812,7 +436812,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "161.00", "lithology_to": "166.00", "lithology_raw_data": null, @@ -436841,7 +436841,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "195.00", "lithology_to": "205.00", "lithology_raw_data": "SANDSTONE", @@ -436870,7 +436870,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:56:31Z", "activity_submission": null, - "well_tag_number": 112919, + "well": 112919, "lithology_from": "40.00", "lithology_to": "89.00", "lithology_raw_data": null, @@ -436899,7 +436899,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, - "well_tag_number": 112437, + "well": 112437, "lithology_from": "36.00", "lithology_to": "480.00", "lithology_raw_data": null, @@ -436928,7 +436928,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "109.00", "lithology_to": "135.00", "lithology_raw_data": "and gravel", @@ -436957,7 +436957,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "SOIL/FILL", @@ -436986,7 +436986,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:05:31Z", "activity_submission": null, - "well_tag_number": 113291, + "well": 113291, "lithology_from": "3.00", "lithology_to": "78.00", "lithology_raw_data": "sand with gravel", @@ -437015,7 +437015,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, - "well_tag_number": 112549, + "well": 112549, "lithology_from": "285.00", "lithology_to": "535.00", "lithology_raw_data": null, @@ -437044,7 +437044,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, - "well_tag_number": 112483, + "well": 112483, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, MINOR SILTY", @@ -437073,7 +437073,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "14.00", "lithology_to": "18.00", "lithology_raw_data": "COARSE GRAVEL", @@ -437102,7 +437102,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:33Z", "activity_submission": null, - "well_tag_number": 112861, + "well": 112861, "lithology_from": "55.00", "lithology_to": "61.00", "lithology_raw_data": "WITH FINE SANDSTONE STRINGERS", @@ -437131,7 +437131,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:37Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY TILL", @@ -437160,7 +437160,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "and gravel", @@ -437189,7 +437189,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, - "well_tag_number": 112992, + "well": 112992, "lithology_from": "85.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL WITH SOME COARSE SAND", @@ -437218,7 +437218,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, - "well_tag_number": 112840, + "well": 112840, "lithology_from": "108.00", "lithology_to": "108.00", "lithology_raw_data": "layers of organic could be coal", @@ -437247,7 +437247,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "24.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM/HARD, BOULDER", @@ -437276,7 +437276,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "157.00", "lithology_to": "166.00", "lithology_raw_data": "DAMP CLAY & SILT", @@ -437305,7 +437305,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, - "well_tag_number": 112885, + "well": 112885, "lithology_from": "18.00", "lithology_to": "50.00", "lithology_raw_data": "RED & GREY", @@ -437334,7 +437334,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "340.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK ASH ZONES", @@ -437363,7 +437363,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "88.00", "lithology_to": "98.00", "lithology_raw_data": "SANDSTONE", @@ -437392,7 +437392,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T08:17:06Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "245.00", "lithology_to": "275.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK", @@ -437421,7 +437421,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:29:13Z", "activity_submission": null, - "well_tag_number": 113214, + "well": 113214, "lithology_from": "2.00", "lithology_to": "18.00", "lithology_raw_data": null, @@ -437450,7 +437450,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "80.00", "lithology_to": "83.00", "lithology_raw_data": null, @@ -437479,7 +437479,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": null, @@ -437508,7 +437508,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "69.00", "lithology_to": "71.00", "lithology_raw_data": "FINE AND MEDIUM SAND WITH SOME GRAVEL LAYERS", @@ -437537,7 +437537,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "438.00", "lithology_to": "440.00", "lithology_raw_data": "Bentonitic grey shale", @@ -437566,7 +437566,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T04:58:24Z", "activity_submission": null, - "well_tag_number": 112304, + "well": 112304, "lithology_from": "140.00", "lithology_to": "216.00", "lithology_raw_data": "GRAVEL", @@ -437595,7 +437595,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY AND GRAVEL SEAMS", @@ -437624,7 +437624,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "122.00", "lithology_to": "210.00", "lithology_raw_data": "CLAY & SILT", @@ -437653,7 +437653,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY MIXED WITH GRAVEL", @@ -437682,7 +437682,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "94.00", "lithology_to": "94.00", "lithology_raw_data": "BEDROCK", @@ -437711,7 +437711,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "TILL MINOR ROCKS", @@ -437740,7 +437740,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:22:31Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "120.00", "lithology_to": "130.00", "lithology_raw_data": "BEDROCK", @@ -437769,7 +437769,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, - "well_tag_number": 112628, + "well": 112628, "lithology_from": "142.00", "lithology_to": "149.00", "lithology_raw_data": "SAND, GRAVEL W.B.", @@ -437798,7 +437798,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "Shale", @@ -437827,7 +437827,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "71.00", "lithology_to": "95.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -437856,7 +437856,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -437885,7 +437885,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "619.00", "lithology_to": "621.00", "lithology_raw_data": null, @@ -437914,7 +437914,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "FRACTURED", @@ -437943,7 +437943,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "203.00", "lithology_to": "250.00", "lithology_raw_data": null, @@ -437972,7 +437972,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, - "well_tag_number": 112994, + "well": 112994, "lithology_from": "144.00", "lithology_to": "260.00", "lithology_raw_data": null, @@ -438001,7 +438001,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, - "well_tag_number": 112940, + "well": 112940, "lithology_from": "60.00", "lithology_to": "65.00", "lithology_raw_data": "SOME SILT", @@ -438030,7 +438030,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T19:11:16Z", "activity_submission": null, - "well_tag_number": 112835, + "well": 112835, "lithology_from": "19.00", "lithology_to": "36.00", "lithology_raw_data": "cobbles", @@ -438059,7 +438059,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "220.00", "lithology_to": "350.00", "lithology_raw_data": "GREEN/GREY GRANITE", @@ -438088,7 +438088,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, - "well_tag_number": 112352, + "well": 112352, "lithology_from": "50.00", "lithology_to": "92.00", "lithology_raw_data": "gravel sand little clay", @@ -438117,7 +438117,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "88.00", "lithology_to": "112.00", "lithology_raw_data": null, @@ -438146,7 +438146,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "839.00", "lithology_to": "860.00", "lithology_raw_data": null, @@ -438175,7 +438175,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": "55.00", "lithology_to": "543.00", "lithology_raw_data": null, @@ -438204,7 +438204,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T18:58:02Z", "activity_submission": null, - "well_tag_number": 113088, + "well": 113088, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": "broken", @@ -438233,7 +438233,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:56Z", "activity_submission": null, - "well_tag_number": 112287, + "well": 112287, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "VOLCANIC", @@ -438262,7 +438262,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "116.00", "lithology_to": "117.00", "lithology_raw_data": "S&P, POSSIBLY MW", @@ -438291,7 +438291,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "52.00", "lithology_to": "76.00", "lithology_raw_data": "CLAY & ROCKS", @@ -438320,7 +438320,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "71.00", "lithology_to": "161.00", "lithology_raw_data": "FINE AND MEDIUM SAND", @@ -438349,7 +438349,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "8.00", "lithology_to": "21.00", "lithology_raw_data": "till", @@ -438378,7 +438378,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:28:19Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "CLAY, ROCKS", @@ -438407,7 +438407,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "80.00", "lithology_to": "87.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -438436,7 +438436,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T08:16:14Z", "activity_submission": null, - "well_tag_number": 112388, + "well": 112388, "lithology_from": "215.00", "lithology_to": "245.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK, GRANITE ROCK", @@ -438465,7 +438465,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, - "well_tag_number": 112613, + "well": 112613, "lithology_from": "110.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -438494,7 +438494,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "124.00", "lithology_to": "157.00", "lithology_raw_data": null, @@ -438523,7 +438523,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "525.00", "lithology_to": "560.00", "lithology_raw_data": "BEDROCK", @@ -438552,7 +438552,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:27:52Z", "activity_submission": null, - "well_tag_number": 112905, + "well": 112905, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SOIL & CLAY", @@ -438581,7 +438581,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:46Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "53.00", "lithology_to": "69.00", "lithology_raw_data": "SAND AND GRAVEL, SILTY, HARD PACKED", @@ -438610,7 +438610,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "8.50", "lithology_to": "25.00", "lithology_raw_data": null, @@ -438639,7 +438639,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "4.00", "lithology_to": "42.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH FEW WHITE TRACES", @@ -438668,7 +438668,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": "43.00", "lithology_to": "345.00", "lithology_raw_data": null, @@ -438697,7 +438697,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, - "well_tag_number": 112937, + "well": 112937, "lithology_from": "43.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -438726,7 +438726,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "108.00", "lithology_to": "126.00", "lithology_raw_data": null, @@ -438755,7 +438755,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, - "well_tag_number": 112893, + "well": 112893, "lithology_from": "27.00", "lithology_to": "502.00", "lithology_raw_data": "WHITE/GREY", @@ -438784,7 +438784,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "307.00", "lithology_to": "325.00", "lithology_raw_data": "FRIABLE", @@ -438813,7 +438813,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, - "well_tag_number": 113182, + "well": 113182, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel, boulders", @@ -438842,7 +438842,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T07:01:12Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "450.00", "lithology_to": "550.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN, SEAMS OF VOLCANIC GNEISS", @@ -438871,7 +438871,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "93.00", "lithology_to": "102.00", "lithology_raw_data": "GRAVEL WITH BOULDERS & SAND, GREY BROWN", @@ -438900,7 +438900,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, - "well_tag_number": 108027, + "well": 108027, "lithology_from": "110.00", "lithology_to": "156.00", "lithology_raw_data": "sandstone", @@ -438929,7 +438929,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "17.00", "lithology_to": "21.00", "lithology_raw_data": null, @@ -438958,7 +438958,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, - "well_tag_number": 112971, + "well": 112971, "lithology_from": "21.00", "lithology_to": "44.00", "lithology_raw_data": "MEDIUM SAND, FINE GRAVEL", @@ -438987,7 +438987,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "127.00", "lithology_to": "211.00", "lithology_raw_data": "grey/green", @@ -439016,7 +439016,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "50.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -439045,7 +439045,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "40.00", "lithology_to": "92.00", "lithology_raw_data": null, @@ -439074,7 +439074,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "435.00", "lithology_to": "500.00", "lithology_raw_data": null, @@ -439103,7 +439103,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, - "well_tag_number": 112750, + "well": 112750, "lithology_from": "113.00", "lithology_to": "116.00", "lithology_raw_data": "GREY HARD PACKED SILT", @@ -439132,7 +439132,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "67.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -439161,7 +439161,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, - "well_tag_number": 112763, + "well": 112763, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "MEDIUM TO STIFF; SILTY CLAY; TRACE SAND, AND GRAVEL", @@ -439190,7 +439190,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, - "well_tag_number": 112290, + "well": 112290, "lithology_from": "102.00", "lithology_to": "105.00", "lithology_raw_data": "FINE SAND", @@ -439219,7 +439219,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "225.00", "lithology_to": "232.00", "lithology_raw_data": "FINE TO MEDIUM COARSE, FRIABLE", @@ -439248,7 +439248,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, - "well_tag_number": 112515, + "well": 112515, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -439277,7 +439277,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T08:29:39Z", "activity_submission": null, - "well_tag_number": 112731, + "well": 112731, "lithology_from": "23.00", "lithology_to": "30.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES AND BOULDERS", @@ -439306,7 +439306,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "MEDIUM/HARD; CLAY, SILT, ROCKS", @@ -439335,7 +439335,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -439364,7 +439364,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "245.00", "lithology_to": "250.00", "lithology_raw_data": null, @@ -439393,7 +439393,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "120.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -439422,7 +439422,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "123.00", "lithology_to": "163.00", "lithology_raw_data": "HARDPAN", @@ -439451,7 +439451,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "GRAVEL", @@ -439480,7 +439480,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "36.00", "lithology_to": "40.00", "lithology_raw_data": "SANDSTONE FINE", @@ -439509,7 +439509,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:17Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": "SHALE/FRACTURED", @@ -439538,7 +439538,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "98.00", "lithology_to": "104.00", "lithology_raw_data": "VOLCANIC", @@ -439567,7 +439567,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "300.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", @@ -439596,7 +439596,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "45.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -439625,7 +439625,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:16:58Z", "activity_submission": null, - "well_tag_number": 112279, + "well": 112279, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "HARD PAN COMPACT SAND AND GRAVEL", @@ -439654,7 +439654,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, BOULDERS", @@ -439683,7 +439683,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, - "well_tag_number": 112764, + "well": 112764, "lithology_from": "8.00", "lithology_to": "11.50", "lithology_raw_data": "MEDIUM STIFF; SILTY CLAY - TRACE SAND, AND GRAVEL", @@ -439712,7 +439712,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, - "well_tag_number": 112961, + "well": 112961, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY, TOPSOIL, STONES", @@ -439741,7 +439741,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "8.00", "lithology_to": "30.00", "lithology_raw_data": "HARDER GREY CLAYS", @@ -439770,7 +439770,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, - "well_tag_number": 112797, + "well": 112797, "lithology_from": "83.60", "lithology_to": "100.00", "lithology_raw_data": "SILTY GRAVEL WITH SAND", @@ -439799,7 +439799,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-19T20:34:16Z", "activity_submission": null, - "well_tag_number": 113265, + "well": 113265, "lithology_from": "110.00", "lithology_to": "200.00", "lithology_raw_data": null, @@ -439828,7 +439828,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "163.00", "lithology_to": "203.00", "lithology_raw_data": "CLAY AND GRAVEL", @@ -439857,7 +439857,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, - "well_tag_number": 112509, + "well": 112509, "lithology_from": "17.00", "lithology_to": "65.00", "lithology_raw_data": "GRAY SILTY CLAYS & GRAVEL", @@ -439886,7 +439886,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:35:46Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "270.00", "lithology_to": "275.00", "lithology_raw_data": "Coarse grey sandstone", @@ -439915,7 +439915,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, - "well_tag_number": 112783, + "well": 112783, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -439944,7 +439944,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, - "well_tag_number": 113099, + "well": 113099, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -439973,7 +439973,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:37:33Z", "activity_submission": null, - "well_tag_number": 113243, + "well": 113243, "lithology_from": "14.00", "lithology_to": "63.00", "lithology_raw_data": "till", @@ -440002,7 +440002,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -440031,7 +440031,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, - "well_tag_number": 112929, + "well": 112929, "lithology_from": "115.00", "lithology_to": "155.00", "lithology_raw_data": "GRAY/PINK", @@ -440060,7 +440060,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-17T03:21:20Z", "activity_submission": null, - "well_tag_number": 112478, + "well": 112478, "lithology_from": "20.00", "lithology_to": "26.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -440089,7 +440089,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "10.00", "lithology_to": "60.00", "lithology_raw_data": "clay", @@ -440118,7 +440118,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, - "well_tag_number": 113006, + "well": 113006, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -440147,7 +440147,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:36:02Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "142.00", "lithology_to": "150.00", "lithology_raw_data": null, @@ -440176,7 +440176,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:20:52Z", "activity_submission": null, - "well_tag_number": 112904, + "well": 112904, "lithology_from": "34.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY SOME SAND", @@ -440205,7 +440205,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "44.00", "lithology_to": "51.00", "lithology_raw_data": "DRY COARSE GRAVEL", @@ -440234,7 +440234,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": "22.00", "lithology_to": "62.00", "lithology_raw_data": "slaty", @@ -440263,7 +440263,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "180.00", "lithology_to": "380.00", "lithology_raw_data": "SHALE AND SILTSTONE", @@ -440292,7 +440292,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "510.00", "lithology_to": "540.00", "lithology_raw_data": "FRACTURED BEDROCK", @@ -440321,7 +440321,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": "Sand (till?), some gravel, trace silt, grey-brown, damp", @@ -440350,7 +440350,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T20:40:40Z", "activity_submission": null, - "well_tag_number": 112716, + "well": 112716, "lithology_from": "64.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK WITH SOME CONGLOMERATE", @@ -440379,7 +440379,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": "ROCK", @@ -440408,7 +440408,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "0.00", "lithology_to": "58.00", "lithology_raw_data": "clean", @@ -440437,7 +440437,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:15:17Z", "activity_submission": null, - "well_tag_number": 112971, + "well": 112971, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "PAVEMENT", @@ -440466,7 +440466,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, - "well_tag_number": 112798, + "well": 112798, "lithology_from": "0.00", "lithology_to": "3.30", "lithology_raw_data": "ORGANIC SILTY LOAM", @@ -440495,7 +440495,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, - "well_tag_number": 112385, + "well": 112385, "lithology_from": "15.00", "lithology_to": "116.00", "lithology_raw_data": "MEDIUM/HARD, VOLCANIC BEDROCK", @@ -440524,7 +440524,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:24:10Z", "activity_submission": null, - "well_tag_number": 112268, + "well": 112268, "lithology_from": "14.00", "lithology_to": "412.00", "lithology_raw_data": "BEDROCK", @@ -440553,7 +440553,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:33:40Z", "activity_submission": null, - "well_tag_number": 112417, + "well": 112417, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL", @@ -440582,7 +440582,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "113.00", "lithology_to": "115.00", "lithology_raw_data": "CEMENTED GRAVEL", @@ -440611,7 +440611,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "37.00", "lithology_to": "51.00", "lithology_raw_data": "and silty sand", @@ -440640,7 +440640,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "8.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -440669,7 +440669,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T20:31:13Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "46.00", "lithology_to": "52.00", "lithology_raw_data": "CLAY", @@ -440698,7 +440698,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:15:36Z", "activity_submission": null, - "well_tag_number": 112943, + "well": 112943, "lithology_from": "93.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL, SAND", @@ -440727,7 +440727,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, - "well_tag_number": 112333, + "well": 112333, "lithology_from": "105.00", "lithology_to": "106.00", "lithology_raw_data": "SHALE", @@ -440756,7 +440756,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:57:52Z", "activity_submission": null, - "well_tag_number": 112899, + "well": 112899, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -440785,7 +440785,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:21:47Z", "activity_submission": null, - "well_tag_number": 113180, + "well": 113180, "lithology_from": "135.00", "lithology_to": "175.00", "lithology_raw_data": "gravel", @@ -440814,7 +440814,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T16:31:40Z", "activity_submission": null, - "well_tag_number": 112577, + "well": 112577, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -440843,7 +440843,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:11:08Z", "activity_submission": null, - "well_tag_number": 113203, + "well": 113203, "lithology_from": "0.00", "lithology_to": "95.00", "lithology_raw_data": "gravel, boulders", @@ -440872,7 +440872,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, - "well_tag_number": 113288, + "well": 113288, "lithology_from": "0.00", "lithology_to": "38.00", "lithology_raw_data": "sand with gravel", @@ -440901,7 +440901,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:29:31Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "270.00", "lithology_to": "370.00", "lithology_raw_data": "quartz bedrock", @@ -440930,7 +440930,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:59:09Z", "activity_submission": null, - "well_tag_number": 112952, + "well": 112952, "lithology_from": "194.00", "lithology_to": "197.00", "lithology_raw_data": null, @@ -440959,7 +440959,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:11:30Z", "activity_submission": null, - "well_tag_number": 112913, + "well": 112913, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -440988,7 +440988,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "48.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, GRAVEL MIXED", @@ -441017,7 +441017,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T17:46:49Z", "activity_submission": null, - "well_tag_number": 112664, + "well": 112664, "lithology_from": "1.00", "lithology_to": "22.00", "lithology_raw_data": "SAND & GRAVEL", @@ -441046,7 +441046,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "MEDIUM/HARD, WEATHERED BEDROCK", @@ -441075,7 +441075,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, - "well_tag_number": 112849, + "well": 112849, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": null, @@ -441104,7 +441104,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:10:25Z", "activity_submission": null, - "well_tag_number": 112297, + "well": 112297, "lithology_from": "30.00", "lithology_to": "70.00", "lithology_raw_data": "BASALT", @@ -441133,7 +441133,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:57:35Z", "activity_submission": null, - "well_tag_number": 112642, + "well": 112642, "lithology_from": "66.00", "lithology_to": "76.00", "lithology_raw_data": null, @@ -441162,7 +441162,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:13:20Z", "activity_submission": null, - "well_tag_number": 112774, + "well": 112774, "lithology_from": "9.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -441191,7 +441191,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, - "well_tag_number": 113052, + "well": 113052, "lithology_from": "255.00", "lithology_to": "355.00", "lithology_raw_data": null, @@ -441220,7 +441220,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "208.00", "lithology_to": "210.00", "lithology_raw_data": null, @@ -441249,7 +441249,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:07:31Z", "activity_submission": null, - "well_tag_number": 112669, + "well": 112669, "lithology_from": "178.00", "lithology_to": "200.00", "lithology_raw_data": "GRAVEL", @@ -441278,7 +441278,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T19:28:45Z", "activity_submission": null, - "well_tag_number": 112561, + "well": 112561, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY GRAVEL (63-70) ROCK", @@ -441307,7 +441307,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, - "well_tag_number": 112536, + "well": 112536, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", @@ -441336,7 +441336,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T19:13:31Z", "activity_submission": null, - "well_tag_number": 113036, + "well": 113036, "lithology_from": "584.00", "lithology_to": "700.00", "lithology_raw_data": "SANDSTONE, FINE TO MED FRYABLE", @@ -441365,7 +441365,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "36.00", "lithology_to": "72.00", "lithology_raw_data": "BROWN CLAY, SOME SAND AND GRAVEL", @@ -441394,7 +441394,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "18.00", "lithology_to": "38.00", "lithology_raw_data": "FINE AND COARSE SANDSTONE", @@ -441423,7 +441423,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "25.00", "lithology_to": "38.00", "lithology_raw_data": null, @@ -441452,7 +441452,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "43.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK", @@ -441481,7 +441481,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "DENSE GRAVEL", @@ -441510,7 +441510,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:13:26Z", "activity_submission": null, - "well_tag_number": 112844, + "well": 112844, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SOIL", @@ -441539,7 +441539,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "2.00", "lithology_to": "11.00", "lithology_raw_data": "and gravel", @@ -441568,7 +441568,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "29.00", "lithology_to": "95.00", "lithology_raw_data": "COARSE TO MEDIUM SAND", @@ -441597,7 +441597,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "101.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -441626,7 +441626,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -441655,7 +441655,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "140.00", "lithology_to": "176.00", "lithology_raw_data": "CLAY", @@ -441684,7 +441684,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "SHALE", @@ -441713,7 +441713,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -441742,7 +441742,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T20:29:35Z", "activity_submission": null, - "well_tag_number": 112595, + "well": 112595, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL AND COARSE SAND", @@ -441771,7 +441771,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "319.00", "lithology_to": "330.00", "lithology_raw_data": "FINE SILTSTONE WITH SOME SHALE", @@ -441800,7 +441800,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:40:41Z", "activity_submission": null, - "well_tag_number": 112605, + "well": 112605, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND", @@ -441829,7 +441829,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "63.00", "lithology_to": "71.00", "lithology_raw_data": "FINE SAND", @@ -441858,7 +441858,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "100.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -441887,7 +441887,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", @@ -441916,7 +441916,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", @@ -441945,7 +441945,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T16:40:44Z", "activity_submission": null, - "well_tag_number": 113052, + "well": 113052, "lithology_from": "95.00", "lithology_to": "245.00", "lithology_raw_data": "gravel, boulders", @@ -441974,7 +441974,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "168.00", "lithology_to": "173.00", "lithology_raw_data": "CLAY", @@ -442003,7 +442003,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM TO FINE SAND", @@ -442032,7 +442032,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "226.00", "lithology_to": "245.00", "lithology_raw_data": "W.B. MIXED SAND AND GRAVEL", @@ -442061,7 +442061,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "10.00", "lithology_to": "30.00", "lithology_raw_data": "MEDIUM-SOFT; CLAY-TILL", @@ -442090,7 +442090,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T19:52:18Z", "activity_submission": null, - "well_tag_number": 112593, + "well": 112593, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM SAND, MEDIUM GRAVEL", @@ -442119,7 +442119,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, - "well_tag_number": 113288, + "well": 113288, "lithology_from": "87.00", "lithology_to": "146.00", "lithology_raw_data": null, @@ -442148,7 +442148,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, - "well_tag_number": 112795, + "well": 112795, "lithology_from": "81.00", "lithology_to": "83.30", "lithology_raw_data": "GREY FRACTURED BEDROCK", @@ -442177,7 +442177,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "SAND", @@ -442206,7 +442206,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "72.00", "lithology_to": "130.00", "lithology_raw_data": "FINE BROWN SAND, SILTS & CLAYS, SOME GRAVEL", @@ -442235,7 +442235,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "112.00", "lithology_to": "118.00", "lithology_raw_data": "BROWN TILL", @@ -442264,7 +442264,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "160.00", "lithology_to": "172.00", "lithology_raw_data": "CLAY", @@ -442293,7 +442293,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, - "well_tag_number": 112305, + "well": 112305, "lithology_from": "77.00", "lithology_to": "92.00", "lithology_raw_data": "GRAVEL AND SAND ", @@ -442322,7 +442322,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:41:54Z", "activity_submission": null, - "well_tag_number": 112466, + "well": 112466, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, MINOR, GRAVEL", @@ -442351,7 +442351,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "27.00", "lithology_to": "30.00", "lithology_raw_data": "BOULDER", @@ -442380,7 +442380,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, - "well_tag_number": 112273, + "well": 112273, "lithology_from": "7.00", "lithology_to": "36.00", "lithology_raw_data": "till", @@ -442409,7 +442409,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T23:03:23Z", "activity_submission": null, - "well_tag_number": 112749, + "well": 112749, "lithology_from": "48.00", "lithology_to": "59.00", "lithology_raw_data": "GRAVEL WITH MORE WATER", @@ -442438,7 +442438,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, - "well_tag_number": 112836, + "well": 112836, "lithology_from": "42.00", "lithology_to": "71.00", "lithology_raw_data": "very clean, tight cobbles", @@ -442467,7 +442467,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "210.00", "lithology_to": "212.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", @@ -442496,7 +442496,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "6.00", "lithology_to": "26.00", "lithology_raw_data": "and gravel", @@ -442525,7 +442525,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "90.00", "lithology_to": "106.00", "lithology_raw_data": "HARD/LOOSE BOULDER/GRAVELS", @@ -442554,7 +442554,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, - "well_tag_number": 112707, + "well": 112707, "lithology_from": "19.00", "lithology_to": "26.00", "lithology_raw_data": "MEDIUM/SOFT; SOFT GREY, WEATHERED BEDROCK", @@ -442583,7 +442583,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "233.00", "lithology_to": "276.00", "lithology_raw_data": "CRYSTALLINE", @@ -442612,7 +442612,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, - "well_tag_number": 112409, + "well": 112409, "lithology_from": "280.00", "lithology_to": "375.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", @@ -442641,7 +442641,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "40.00", "lithology_to": "50.00", "lithology_raw_data": "SILTST MED HARD", @@ -442670,7 +442670,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, - "well_tag_number": 113143, + "well": 113143, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -442699,7 +442699,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "ORGANICS", @@ -442728,7 +442728,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "800.00", "lithology_to": "820.00", "lithology_raw_data": "Shale", @@ -442757,7 +442757,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, - "well_tag_number": 112549, + "well": 112549, "lithology_from": "280.00", "lithology_to": "285.00", "lithology_raw_data": null, @@ -442786,7 +442786,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, - "well_tag_number": 112550, + "well": 112550, "lithology_from": "300.00", "lithology_to": "400.00", "lithology_raw_data": null, @@ -442815,7 +442815,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "GRAVEL, SILT, MINOR SAND", @@ -442844,7 +442844,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "241.00", "lithology_to": "252.00", "lithology_raw_data": "and gravels", @@ -442873,7 +442873,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -442902,7 +442902,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:43:55Z", "activity_submission": null, - "well_tag_number": 112586, + "well": 112586, "lithology_from": "297.00", "lithology_to": "325.00", "lithology_raw_data": "VOLCANIC", @@ -442931,7 +442931,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "9.00", "lithology_to": "11.00", "lithology_raw_data": "and gravel", @@ -442960,7 +442960,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "40.00", "lithology_to": "47.00", "lithology_raw_data": "BEDROCK", @@ -442989,7 +442989,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "180.00", "lithology_to": "231.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", @@ -443018,7 +443018,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "380.00", "lithology_to": "391.00", "lithology_raw_data": "SILTSTONE", @@ -443047,7 +443047,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "71.00", "lithology_to": "187.00", "lithology_raw_data": "VERY HARD AND DENSE; CLAY (CASING TIGHT)", @@ -443076,7 +443076,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "2.00", "lithology_to": "12.00", "lithology_raw_data": "till", @@ -443105,7 +443105,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, - "well_tag_number": 112992, + "well": 112992, "lithology_from": "19.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -443134,7 +443134,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BOULDERS AND GRAVEL", @@ -443163,7 +443163,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:16:57Z", "activity_submission": null, - "well_tag_number": 113188, + "well": 113188, "lithology_from": "97.00", "lithology_to": "155.00", "lithology_raw_data": null, @@ -443192,7 +443192,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "204.00", "lithology_to": "208.00", "lithology_raw_data": null, @@ -443221,7 +443221,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "33.00", "lithology_to": "54.00", "lithology_raw_data": "and gravel", @@ -443250,7 +443250,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, - "well_tag_number": 113288, + "well": 113288, "lithology_from": "146.00", "lithology_to": "160.00", "lithology_raw_data": "fine-medium", @@ -443279,7 +443279,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND GRAVEL", @@ -443308,7 +443308,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "140.00", "lithology_to": "153.00", "lithology_raw_data": "CLAY, ANGULAR", @@ -443337,7 +443337,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, - "well_tag_number": 113134, + "well": 113134, "lithology_from": "155.00", "lithology_to": "246.00", "lithology_raw_data": "red/ green/ dark grey", @@ -443366,7 +443366,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "153.00", "lithology_to": "169.00", "lithology_raw_data": "LAYERED GRAY CLAY WITH LAYERED GRAY SAND", @@ -443395,7 +443395,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "25.00", "lithology_to": "115.00", "lithology_raw_data": "SILT WITH SOME CLAY, TRACE FINE GRAVEL", @@ -443424,7 +443424,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:37:37Z", "activity_submission": null, - "well_tag_number": 112269, + "well": 112269, "lithology_from": "300.00", "lithology_to": "605.00", "lithology_raw_data": null, @@ -443453,7 +443453,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "174.00", "lithology_to": "193.00", "lithology_raw_data": "CLAY W/ SOME ROCKS", @@ -443482,7 +443482,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "100.00", "lithology_to": "235.00", "lithology_raw_data": "CLAY", @@ -443511,7 +443511,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "73.00", "lithology_to": "82.00", "lithology_raw_data": "and gravel", @@ -443540,7 +443540,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "10.00", "lithology_to": "48.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -443569,7 +443569,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "DIRT, GRAVEL, FILL", @@ -443598,7 +443598,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T17:01:16Z", "activity_submission": null, - "well_tag_number": 112851, + "well": 112851, "lithology_from": "0.00", "lithology_to": "656.00", "lithology_raw_data": "BLAST ROCK SPOIL", @@ -443627,7 +443627,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-27T18:54:34Z", "activity_submission": null, - "well_tag_number": 112818, + "well": 112818, "lithology_from": "10.00", "lithology_to": "205.00", "lithology_raw_data": "and sandstone layers.", @@ -443656,7 +443656,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-11T17:33:39Z", "activity_submission": null, - "well_tag_number": 113259, + "well": 113259, "lithology_from": "95.00", "lithology_to": "114.00", "lithology_raw_data": "Dense/stiff light grey till", @@ -443685,7 +443685,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:14:49Z", "activity_submission": null, - "well_tag_number": 112313, + "well": 112313, "lithology_from": "33.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL WITH SOME SAND", @@ -443714,7 +443714,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:01Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": null, @@ -443743,7 +443743,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "8.00", "lithology_to": "20.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -443772,7 +443772,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T19:22:48Z", "activity_submission": null, - "well_tag_number": 113085, + "well": 113085, "lithology_from": "270.00", "lithology_to": "350.00", "lithology_raw_data": "GREEN BEDROCK", @@ -443801,7 +443801,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "171.00", "lithology_to": "190.00", "lithology_raw_data": null, @@ -443830,7 +443830,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "200.00", "lithology_to": "230.00", "lithology_raw_data": "W.B. GRAVELS AND SANDS", @@ -443859,7 +443859,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "206.00", "lithology_to": "220.00", "lithology_raw_data": "SILT, ROCKS", @@ -443888,7 +443888,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, - "well_tag_number": 113099, + "well": 113099, "lithology_from": "382.00", "lithology_to": "475.00", "lithology_raw_data": "clay and rocks", @@ -443917,7 +443917,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-03T21:47:56Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "221.00", "lithology_to": "230.00", "lithology_raw_data": "CRUMBLY BEDROCK", @@ -443946,7 +443946,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "50.00", "lithology_to": "63.00", "lithology_raw_data": "and silts", @@ -443975,7 +443975,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "fill", @@ -444004,7 +444004,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, - "well_tag_number": 113021, + "well": 113021, "lithology_from": "55.00", "lithology_to": "105.00", "lithology_raw_data": "clay lenses", @@ -444033,7 +444033,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-20T19:18:00Z", "activity_submission": null, - "well_tag_number": 113041, + "well": 113041, "lithology_from": "29.00", "lithology_to": "38.00", "lithology_raw_data": null, @@ -444062,7 +444062,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:12:27Z", "activity_submission": null, - "well_tag_number": 112286, + "well": 112286, "lithology_from": "19.00", "lithology_to": "37.00", "lithology_raw_data": "GRANITE, SOME CLAY", @@ -444091,7 +444091,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, - "well_tag_number": 112849, + "well": 112849, "lithology_from": "29.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -444120,7 +444120,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T02:33:46Z", "activity_submission": null, - "well_tag_number": 112948, + "well": 112948, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -444149,7 +444149,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, - "well_tag_number": 112239, + "well": 112239, "lithology_from": "298.00", "lithology_to": "325.00", "lithology_raw_data": "CLAY", @@ -444178,7 +444178,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "212.00", "lithology_to": "224.00", "lithology_raw_data": null, @@ -444207,7 +444207,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "256.00", "lithology_to": "385.00", "lithology_raw_data": "CLAY W/ FINE SAND SEAMS", @@ -444236,7 +444236,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "135.00", "lithology_to": "183.00", "lithology_raw_data": "DRY BROWN SILTY SAND, LITTLE GRAVEL", @@ -444265,7 +444265,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:43:03Z", "activity_submission": null, - "well_tag_number": 110749, + "well": 110749, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "SAND, GRAVEL, CLAY", @@ -444294,7 +444294,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T21:14:53Z", "activity_submission": null, - "well_tag_number": 112690, + "well": 112690, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "TILL", @@ -444323,7 +444323,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:02:54Z", "activity_submission": null, - "well_tag_number": 112343, + "well": 112343, "lithology_from": "160.00", "lithology_to": "230.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC - SEAMS OF QUARTZ - LARGER GRAINED", @@ -444352,7 +444352,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "99.00", "lithology_to": "146.00", "lithology_raw_data": "CLAY WITH GRAVELLY TILL", @@ -444381,7 +444381,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "235.00", "lithology_to": "237.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -444410,7 +444410,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "106.00", "lithology_to": "108.00", "lithology_raw_data": "and gravel", @@ -444439,7 +444439,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:17:40Z", "activity_submission": null, - "well_tag_number": 112885, + "well": 112885, "lithology_from": "56.00", "lithology_to": "160.00", "lithology_raw_data": "BROWN & RED", @@ -444468,7 +444468,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "14.00", "lithology_to": "31.00", "lithology_raw_data": null, @@ -444497,7 +444497,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, - "well_tag_number": 112295, + "well": 112295, "lithology_from": "8.00", "lithology_to": "23.00", "lithology_raw_data": "BASALT", @@ -444526,7 +444526,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "58.00", "lithology_to": "79.00", "lithology_raw_data": "CLAY AND SAND", @@ -444555,7 +444555,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:49:00Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "190.00", "lithology_to": "200.00", "lithology_raw_data": "Sandstone", @@ -444584,7 +444584,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY/TILL", @@ -444613,7 +444613,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, - "well_tag_number": 113116, + "well": 113116, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -444642,7 +444642,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "112.00", "lithology_to": "400.00", "lithology_raw_data": "with quartz", @@ -444671,7 +444671,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, - "well_tag_number": 112743, + "well": 112743, "lithology_from": "4.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY, FILL", @@ -444700,7 +444700,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:08:59Z", "activity_submission": null, - "well_tag_number": 112587, + "well": 112587, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": "GRAVELS TO BROKEN BEDROCK", @@ -444729,7 +444729,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T01:19:53Z", "activity_submission": null, - "well_tag_number": 112659, + "well": 112659, "lithology_from": "40.00", "lithology_to": "137.40", "lithology_raw_data": null, @@ -444758,7 +444758,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -444787,7 +444787,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T00:47:38Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "270.00", "lithology_to": "285.00", "lithology_raw_data": "SANSTONE WITH SHALE LENSES", @@ -444816,7 +444816,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:35:54Z", "activity_submission": null, - "well_tag_number": 112828, + "well": 112828, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "CLAY", @@ -444845,7 +444845,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "30.00", "lithology_to": "36.00", "lithology_raw_data": "BROWN CLAYS, SOME GRAVEL", @@ -444874,7 +444874,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, - "well_tag_number": 112969, + "well": 112969, "lithology_from": "41.00", "lithology_to": "50.00", "lithology_raw_data": "SAND & GRAVEL", @@ -444903,7 +444903,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, - "well_tag_number": 112351, + "well": 112351, "lithology_from": "1.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -444932,7 +444932,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL, SAND", @@ -444961,7 +444961,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-03T22:31:55Z", "activity_submission": null, - "well_tag_number": 113095, + "well": 113095, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "GRAVEL", @@ -444990,7 +444990,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, - "well_tag_number": 113300, + "well": 113300, "lithology_from": "132.00", "lithology_to": "147.00", "lithology_raw_data": "sand with gravel", @@ -445019,7 +445019,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "92.00", "lithology_to": "98.00", "lithology_raw_data": "SAND, GRAVEL & ROCKS", @@ -445048,7 +445048,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, - "well_tag_number": 112392, + "well": 112392, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "LARGE BOULDERS AND COBBLES", @@ -445077,7 +445077,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, - "well_tag_number": 112692, + "well": 112692, "lithology_from": "41.00", "lithology_to": "46.00", "lithology_raw_data": "GRAVEL", @@ -445106,7 +445106,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "100.00", "lithology_to": "104.00", "lithology_raw_data": "ANGULAR GRAVEL", @@ -445135,7 +445135,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "31.00", "lithology_to": "41.00", "lithology_raw_data": null, @@ -445164,7 +445164,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:42:41Z", "activity_submission": null, - "well_tag_number": 113167, + "well": 113167, "lithology_from": "95.00", "lithology_to": "130.00", "lithology_raw_data": "sand with clay/silt", @@ -445193,7 +445193,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "341.00", "lithology_to": "377.00", "lithology_raw_data": null, @@ -445222,7 +445222,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:43:20Z", "activity_submission": null, - "well_tag_number": 112778, + "well": 112778, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -445251,7 +445251,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:20:54Z", "activity_submission": null, - "well_tag_number": 113074, + "well": 113074, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "BROWN CLAY", @@ -445280,7 +445280,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, - "well_tag_number": 112352, + "well": 112352, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "gravel sand clay", @@ -445309,7 +445309,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "275.00", "lithology_to": "285.00", "lithology_raw_data": "SHALE/IRONSTONE LENSES", @@ -445338,7 +445338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, - "well_tag_number": 112578, + "well": 112578, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "BLACK ORGANICS, SAND, BROWN SOILS, SOME GRAVELS", @@ -445367,7 +445367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-05T21:08:55Z", "activity_submission": null, - "well_tag_number": 113004, + "well": 113004, "lithology_from": "230.00", "lithology_to": "230.00", "lithology_raw_data": "Hard Grey Bedrock", @@ -445396,7 +445396,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-04T17:12:11Z", "activity_submission": null, - "well_tag_number": 113217, + "well": 113217, "lithology_from": "42.00", "lithology_to": "44.00", "lithology_raw_data": null, @@ -445425,7 +445425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:37:23Z", "activity_submission": null, - "well_tag_number": 112955, + "well": 112955, "lithology_from": "62.00", "lithology_to": "70.00", "lithology_raw_data": "SAND & GRAVEL", @@ -445454,7 +445454,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:36:35Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": null, @@ -445483,7 +445483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, - "well_tag_number": 112713, + "well": 112713, "lithology_from": "9.00", "lithology_to": "30.00", "lithology_raw_data": "DIRTY SAND AND GRAVEL WITH DIRTY, SILTY SAND", @@ -445512,7 +445512,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "55.00", "lithology_to": "62.00", "lithology_raw_data": null, @@ -445541,7 +445541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "188.00", "lithology_to": "190.00", "lithology_raw_data": "W.B. BROWN SAND AND GRAVEL", @@ -445570,7 +445570,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T00:37:07Z", "activity_submission": null, - "well_tag_number": 112657, + "well": 112657, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -445599,7 +445599,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:44:40Z", "activity_submission": null, - "well_tag_number": 113016, + "well": 113016, "lithology_from": "18.00", "lithology_to": "30.00", "lithology_raw_data": "SILT", @@ -445628,7 +445628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, - "well_tag_number": 108027, + "well": 108027, "lithology_from": "10.00", "lithology_to": "40.00", "lithology_raw_data": "bedrock", @@ -445657,7 +445657,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "8.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, SMALL GRAVEL", @@ -445686,7 +445686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "93.00", "lithology_to": "115.00", "lithology_raw_data": "BROWN VOLCANIC WITH LIMESTONE", @@ -445715,7 +445715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:57Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "11.00", "lithology_to": "13.00", "lithology_raw_data": "and gravel", @@ -445744,7 +445744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:10:43Z", "activity_submission": null, - "well_tag_number": 112418, + "well": 112418, "lithology_from": "20.00", "lithology_to": "27.00", "lithology_raw_data": "MEDIUM/HARD, BOULDERS AND TILL", @@ -445773,7 +445773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "70.00", "lithology_to": "71.00", "lithology_raw_data": null, @@ -445802,7 +445802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "407.00", "lithology_to": "413.00", "lithology_raw_data": "DENSE/STIFF; CLAY, CONGLOMERATE", @@ -445831,7 +445831,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T18:21:41Z", "activity_submission": null, - "well_tag_number": 113074, + "well": 113074, "lithology_from": "210.00", "lithology_to": "330.00", "lithology_raw_data": "BROWN CLAY AND SAND", @@ -445860,7 +445860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "383.00", "lithology_to": "389.00", "lithology_raw_data": null, @@ -445889,7 +445889,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -445918,7 +445918,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND WITH SMALL GRAVEL", @@ -445947,7 +445947,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "670.00", "lithology_to": "672.00", "lithology_raw_data": "BROWN/GREY/GREEN VOLCANIC", @@ -445976,7 +445976,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "591.00", "lithology_to": "670.00", "lithology_raw_data": "BROWN/GREY VOLCANIC", @@ -446005,7 +446005,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "37.00", "lithology_to": "169.00", "lithology_raw_data": "CLAY", @@ -446034,7 +446034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "155.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -446063,7 +446063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, SILT, BOULDERS", @@ -446092,7 +446092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "111.00", "lithology_to": "117.00", "lithology_raw_data": "MEDIUM SAND, FINE GRAVEL", @@ -446121,7 +446121,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "57.00", "lithology_to": "60.00", "lithology_raw_data": "BOULDER", @@ -446150,7 +446150,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "42.00", "lithology_to": "51.00", "lithology_raw_data": "COARSE SAND & GRAVEL", @@ -446179,7 +446179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:56:35Z", "activity_submission": null, - "well_tag_number": 112251, + "well": 112251, "lithology_from": "18.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY SHALE", @@ -446208,7 +446208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": "30.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -446237,7 +446237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, - "well_tag_number": 112893, + "well": 112893, "lithology_from": "19.00", "lithology_to": "27.00", "lithology_raw_data": "SILT & SAND", @@ -446266,7 +446266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "DIRT", @@ -446295,7 +446295,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -446324,7 +446324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "160.00", "lithology_to": "164.50", "lithology_raw_data": "DARK GREY CLAY WITH SOME GRAVEL", @@ -446353,7 +446353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T19:13:44Z", "activity_submission": null, - "well_tag_number": 112648, + "well": 112648, "lithology_from": "300.00", "lithology_to": "460.00", "lithology_raw_data": "BEDROCK", @@ -446382,7 +446382,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "130.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -446411,7 +446411,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, - "well_tag_number": 112312, + "well": 112312, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "TOP SOIL", @@ -446440,7 +446440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "160.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM GRAVEL, MINOR SAND", @@ -446469,7 +446469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "82.00", "lithology_to": "130.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -446498,7 +446498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "576.00", "lithology_to": "619.00", "lithology_raw_data": "fractured", @@ -446527,7 +446527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "90.00", "lithology_to": "116.00", "lithology_raw_data": "CLAY, THIN LAYERS OF SILTY GRAVEL", @@ -446556,7 +446556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "141.00", "lithology_to": "149.00", "lithology_raw_data": null, @@ -446585,7 +446585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:20:40Z", "activity_submission": null, - "well_tag_number": 112827, + "well": 112827, "lithology_from": "51.00", "lithology_to": "56.00", "lithology_raw_data": "CLAY", @@ -446614,7 +446614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "18.00", "lithology_to": "23.00", "lithology_raw_data": "trace of gravel", @@ -446643,7 +446643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "very silty, clay", @@ -446672,7 +446672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "CLAY", @@ -446701,7 +446701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "258.00", "lithology_to": "264.00", "lithology_raw_data": "BROWN GREY", @@ -446730,7 +446730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "200.00", "lithology_to": "240.00", "lithology_raw_data": "CLAY", @@ -446759,7 +446759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "3.00", "lithology_to": "19.00", "lithology_raw_data": "silty till", @@ -446788,7 +446788,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T19:37:54Z", "activity_submission": null, - "well_tag_number": 112427, + "well": 112427, "lithology_from": "35.00", "lithology_to": "47.00", "lithology_raw_data": "SOFT/MEDIUM, MEDIUM TO COARSE SAND WITH ROCKS", @@ -446817,7 +446817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY/SILT", @@ -446846,7 +446846,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:20:43Z", "activity_submission": null, - "well_tag_number": 112358, + "well": 112358, "lithology_from": "0.00", "lithology_to": "94.00", "lithology_raw_data": "clay/ gravel/clay / gravel sand cobbles", @@ -446875,7 +446875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T22:26:22Z", "activity_submission": null, - "well_tag_number": 112588, + "well": 112588, "lithology_from": "106.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/SOFT; VOLCANIC - TRACES OF WHITE FELDSPAR", @@ -446904,7 +446904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, - "well_tag_number": 112420, + "well": 112420, "lithology_from": "40.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -446933,7 +446933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "245.00", "lithology_to": "250.00", "lithology_raw_data": "CLAY WITH SOME GRAVEL", @@ -446962,7 +446962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "16.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN & GREY SHALE & SILTSTONE, M.W.", @@ -446991,7 +446991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "WEATHERED BEDROCK", @@ -447020,7 +447020,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:33:40Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "71.00", "lithology_to": "91.00", "lithology_raw_data": null, @@ -447049,7 +447049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, - "well_tag_number": 113306, + "well": 113306, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -447078,7 +447078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, FINE", @@ -447107,7 +447107,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-13T21:13:58Z", "activity_submission": null, - "well_tag_number": 110000, + "well": 110000, "lithology_from": "46.00", "lithology_to": "48.00", "lithology_raw_data": null, @@ -447136,7 +447136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "290.00", "lithology_to": "325.00", "lithology_raw_data": "PREDOMINATELY MEDIUM BLUE VOLCANIC BEDROCK WITH MEDIUM/HARD SEAMS OF RED METAMORPHIC TYPE BEDROCK", @@ -447165,7 +447165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:09:32Z", "activity_submission": null, - "well_tag_number": 112401, + "well": 112401, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "COARSE GRAVEL", @@ -447194,7 +447194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, - "well_tag_number": 113306, + "well": 113306, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -447223,7 +447223,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "530.00", "lithology_to": "535.00", "lithology_raw_data": null, @@ -447252,7 +447252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, - "well_tag_number": 112520, + "well": 112520, "lithology_from": "6.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -447281,7 +447281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:11:36Z", "activity_submission": null, - "well_tag_number": 112779, + "well": 112779, "lithology_from": "0.00", "lithology_to": "91.00", "lithology_raw_data": "CLAY", @@ -447310,7 +447310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:04:36Z", "activity_submission": null, - "well_tag_number": 112439, + "well": 112439, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -447339,7 +447339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "77.00", "lithology_to": "153.00", "lithology_raw_data": "FIRM GRAY BLUE CLAY", @@ -447368,7 +447368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "93.00", "lithology_to": "93.50", "lithology_raw_data": null, @@ -447397,7 +447397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/SOFT; CLAY SEAM", @@ -447426,7 +447426,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "188.00", "lithology_to": "201.00", "lithology_raw_data": "CLAY/VOLCANIC TILL", @@ -447455,7 +447455,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:31:30Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY LAYER, ANGULAR GRAVEL", @@ -447484,7 +447484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "23.00", "lithology_to": "73.00", "lithology_raw_data": "SLOPPY CLAY WITH LITTLE SAND", @@ -447513,7 +447513,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-10T19:24:22Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "1052.20", "lithology_to": "1101.40", "lithology_raw_data": "SANDSTONE", @@ -447542,7 +447542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:16:06Z", "activity_submission": null, - "well_tag_number": 112932, + "well": 112932, "lithology_from": "0.00", "lithology_to": "115.00", "lithology_raw_data": null, @@ -447571,7 +447571,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "light green black medium hard rock", @@ -447600,7 +447600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, - "well_tag_number": 112351, + "well": 112351, "lithology_from": "34.00", "lithology_to": "47.00", "lithology_raw_data": "and gravels", @@ -447629,7 +447629,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, - "well_tag_number": 112701, + "well": 112701, "lithology_from": "9.00", "lithology_to": "35.00", "lithology_raw_data": "BEDROCK, VOLCANIC", @@ -447658,7 +447658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "42.00", "lithology_to": "68.00", "lithology_raw_data": "CLAY-TILL", @@ -447687,7 +447687,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:34Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL, MINOR GRAVEL", @@ -447716,7 +447716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "10.00", "lithology_to": "26.00", "lithology_raw_data": "BEDROCK-VOLCANIC MIX", @@ -447745,7 +447745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, - "well_tag_number": 112878, + "well": 112878, "lithology_from": "35.00", "lithology_to": "56.00", "lithology_raw_data": "with medium sand", @@ -447774,7 +447774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "205.00", "lithology_to": "249.00", "lithology_raw_data": "COARSE GRAVEL WITH BOULDERS", @@ -447803,7 +447803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "94.00", "lithology_to": "106.00", "lithology_raw_data": null, @@ -447832,7 +447832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T18:57:31Z", "activity_submission": null, - "well_tag_number": 112283, + "well": 112283, "lithology_from": "88.00", "lithology_to": "96.00", "lithology_raw_data": null, @@ -447861,7 +447861,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "108.00", "lithology_to": "167.00", "lithology_raw_data": "and gravel with large cobbles", @@ -447890,7 +447890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:05:31Z", "activity_submission": null, - "well_tag_number": 112837, + "well": 112837, "lithology_from": "7.00", "lithology_to": "605.00", "lithology_raw_data": null, @@ -447919,7 +447919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "215.00", "lithology_to": "225.00", "lithology_raw_data": "SANDSTONE/ MEDIUM GREY", @@ -447948,7 +447948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "155.00", "lithology_to": "188.00", "lithology_raw_data": "W.B. SAND AND GRAVEL (RED WATER)", @@ -447977,7 +447977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "FRACTURED BEDROCK", @@ -448006,7 +448006,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "275.00", "lithology_to": "281.00", "lithology_raw_data": null, @@ -448035,7 +448035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "135.00", "lithology_to": "137.00", "lithology_raw_data": null, @@ -448064,7 +448064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": "Sand, fine grained, some silt, dense, grey, dry", @@ -448093,7 +448093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "265.00", "lithology_to": "275.00", "lithology_raw_data": "GRAVEL WITH CLAY ", @@ -448122,7 +448122,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY/SILT", @@ -448151,7 +448151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, - "well_tag_number": 112861, + "well": 112861, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "BROWN/GREY", @@ -448180,7 +448180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:41:19Z", "activity_submission": null, - "well_tag_number": 112570, + "well": 112570, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -448209,7 +448209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:53:09Z", "activity_submission": null, - "well_tag_number": 112551, + "well": 112551, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -448238,7 +448238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "199.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE", @@ -448267,7 +448267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "BEDROCK SOME FRACTURES", @@ -448296,7 +448296,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "7.00", "lithology_to": "13.00", "lithology_raw_data": "and gravel", @@ -448325,7 +448325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "118.00", "lithology_to": "148.00", "lithology_raw_data": "DRY SILT, BROWN SAND", @@ -448354,7 +448354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:34:53Z", "activity_submission": null, - "well_tag_number": 112870, + "well": 112870, "lithology_from": "304.00", "lithology_to": "429.00", "lithology_raw_data": "BLACK & WHITE", @@ -448383,7 +448383,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -448412,7 +448412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "SILT, TRACE CLAY, TRACE FINE TO MEDIUM GRAVEL", @@ -448441,7 +448441,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:44:00Z", "activity_submission": null, - "well_tag_number": 112940, + "well": 112940, "lithology_from": "25.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -448470,7 +448470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, - "well_tag_number": 112620, + "well": 112620, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "till - stony", @@ -448499,7 +448499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "293.00", "lithology_to": "390.00", "lithology_raw_data": null, @@ -448528,7 +448528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "13.00", "lithology_to": "20.00", "lithology_raw_data": null, @@ -448557,7 +448557,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:10:31Z", "activity_submission": null, - "well_tag_number": 112772, + "well": 112772, "lithology_from": "125.00", "lithology_to": "510.00", "lithology_raw_data": "SHALE WITH A FEW LENSES OF SILTSTONE AND FINE SANDSTONE", @@ -448586,7 +448586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, - "well_tag_number": 112344, + "well": 112344, "lithology_from": "59.00", "lithology_to": "135.00", "lithology_raw_data": "PACKED SAND", @@ -448615,7 +448615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:12:38Z", "activity_submission": null, - "well_tag_number": 112352, + "well": 112352, "lithology_from": "92.00", "lithology_to": "117.00", "lithology_raw_data": "gravel sand caly color", @@ -448644,7 +448644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "115.00", "lithology_to": "130.00", "lithology_raw_data": null, @@ -448673,7 +448673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": "FINE GREY SAND WITH SOME STONES", @@ -448702,7 +448702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, - "well_tag_number": 112765, + "well": 112765, "lithology_from": "15.00", "lithology_to": "20.00", "lithology_raw_data": "SILTY CLAY-TRACE SAND & GRAVEL", @@ -448731,7 +448731,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:49:48Z", "activity_submission": null, - "well_tag_number": 112377, + "well": 112377, "lithology_from": "92.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -448760,7 +448760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "66.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK BLACK BASALT", @@ -448789,7 +448789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "Shale", @@ -448818,7 +448818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "211.00", "lithology_to": "240.00", "lithology_raw_data": "light grey", @@ -448847,7 +448847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:41:22Z", "activity_submission": null, - "well_tag_number": 113151, + "well": 113151, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "FIRM TAN TILL GRAVEL", @@ -448876,7 +448876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, - "well_tag_number": 112285, + "well": 112285, "lithology_from": "75.00", "lithology_to": "79.00", "lithology_raw_data": "VOLCANIC MIX", @@ -448905,7 +448905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, - "well_tag_number": 113166, + "well": 113166, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -448934,7 +448934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:38Z", "activity_submission": null, - "well_tag_number": 112704, + "well": 112704, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -448963,7 +448963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "176.00", "lithology_to": "214.00", "lithology_raw_data": null, @@ -448992,7 +448992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:47:28Z", "activity_submission": null, - "well_tag_number": 112784, + "well": 112784, "lithology_from": "0.00", "lithology_to": "3.75", "lithology_raw_data": null, @@ -449021,7 +449021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "150.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", @@ -449050,7 +449050,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-03-01T20:29:37Z", "activity_submission": null, - "well_tag_number": 105747, + "well": 105747, "lithology_from": "0.00", "lithology_to": "72.00", "lithology_raw_data": "UNKNOWN", @@ -449079,7 +449079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "124.00", "lithology_to": "130.00", "lithology_raw_data": "SH BL", @@ -449108,7 +449108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, - "well_tag_number": 112528, + "well": 112528, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -449137,7 +449137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "52.00", "lithology_to": "80.00", "lithology_raw_data": "softer zones", @@ -449166,7 +449166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, - "well_tag_number": 112308, + "well": 112308, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "STIFF CLAY", @@ -449195,7 +449195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, - "well_tag_number": 112706, + "well": 112706, "lithology_from": "137.00", "lithology_to": "283.00", "lithology_raw_data": null, @@ -449224,7 +449224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T21:47:38Z", "activity_submission": null, - "well_tag_number": 112300, + "well": 112300, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", @@ -449253,7 +449253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:31:05Z", "activity_submission": null, - "well_tag_number": 112662, + "well": 112662, "lithology_from": "80.00", "lithology_to": "160.00", "lithology_raw_data": null, @@ -449282,7 +449282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:37Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -449311,7 +449311,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, - "well_tag_number": 112392, + "well": 112392, "lithology_from": "76.00", "lithology_to": "398.00", "lithology_raw_data": "BEDROCK", @@ -449340,7 +449340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:08:01Z", "activity_submission": null, - "well_tag_number": 112589, + "well": 112589, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY", @@ -449369,7 +449369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "37.00", "lithology_to": "72.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -449398,7 +449398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "110.00", "lithology_to": "112.00", "lithology_raw_data": "SHALE AND CLAY", @@ -449427,7 +449427,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "194.00", "lithology_to": null, "lithology_raw_data": "BEDROCK", @@ -449456,7 +449456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "GRAY/BLACK", @@ -449485,7 +449485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "13.00", "lithology_to": "15.50", "lithology_raw_data": "greenish grey", @@ -449514,7 +449514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "961.00", "lithology_to": "969.00", "lithology_raw_data": null, @@ -449543,7 +449543,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:57:18Z", "activity_submission": null, - "well_tag_number": 112961, + "well": 112961, "lithology_from": "20.00", "lithology_to": "37.50", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -449572,7 +449572,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "13.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -449601,7 +449601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, - "well_tag_number": 112550, + "well": 112550, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": null, @@ -449630,7 +449630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:40:19Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "409.00", "lithology_to": "510.00", "lithology_raw_data": "LARGE GRAINED PINK FELDSPAR", @@ -449659,7 +449659,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": null, @@ -449688,7 +449688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "802.00", "lithology_to": "875.00", "lithology_raw_data": null, @@ -449717,7 +449717,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:55:14Z", "activity_submission": null, - "well_tag_number": 112980, + "well": 112980, "lithology_from": "6.00", "lithology_to": "14.00", "lithology_raw_data": "SAND, CLAY, SILT", @@ -449746,7 +449746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "50.00", "lithology_to": "54.00", "lithology_raw_data": "COMPRESSED GRAVEL", @@ -449775,7 +449775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "TIGHT SANDSTONE", @@ -449804,7 +449804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "30.00", "lithology_to": "44.00", "lithology_raw_data": "MEDIUM-HARD; VOLCANIC BEDROCK", @@ -449833,7 +449833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:40:52Z", "activity_submission": null, - "well_tag_number": 112597, + "well": 112597, "lithology_from": "160.00", "lithology_to": "176.00", "lithology_raw_data": "MEDIUM TO COARSE", @@ -449862,7 +449862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T17:49:02Z", "activity_submission": null, - "well_tag_number": 112289, + "well": 112289, "lithology_from": "64.00", "lithology_to": "68.00", "lithology_raw_data": "GRAVEL", @@ -449891,7 +449891,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, - "well_tag_number": 113269, + "well": 113269, "lithology_from": "38.00", "lithology_to": "65.00", "lithology_raw_data": "CLAYS AND SOME GRAVEL ", @@ -449920,7 +449920,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE, SAND, ROCKS, CLAY", @@ -449949,7 +449949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T17:05:29Z", "activity_submission": null, - "well_tag_number": 113144, + "well": 113144, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "gravel, boulders", @@ -449978,7 +449978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "408.00", "lithology_to": "430.00", "lithology_raw_data": null, @@ -450007,7 +450007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, - "well_tag_number": 112547, + "well": 112547, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "CLAY AND ROCK", @@ -450036,7 +450036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "19.00", "lithology_to": "24.00", "lithology_raw_data": "CLAY AND GRAVEL TILL WITH COBBLES", @@ -450065,7 +450065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, - "well_tag_number": 112882, + "well": 112882, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -450094,7 +450094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL, MEDIUM TO COARSE", @@ -450123,7 +450123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, - "well_tag_number": 113216, + "well": 113216, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "Shale", @@ -450152,7 +450152,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "448.00", "lithology_to": "451.00", "lithology_raw_data": "Shale, black, med soft", @@ -450181,7 +450181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "and gravels", @@ -450210,7 +450210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T22:26:41Z", "activity_submission": null, - "well_tag_number": 112707, + "well": 112707, "lithology_from": "42.00", "lithology_to": "57.00", "lithology_raw_data": "HARD, DARK GREEN/WHITE/GREY GRANITE BEDROCK", @@ -450239,7 +450239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "COARSE SAND", @@ -450268,7 +450268,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T16:44:13Z", "activity_submission": null, - "well_tag_number": 113087, + "well": 113087, "lithology_from": "178.00", "lithology_to": "314.00", "lithology_raw_data": "clay and sand", @@ -450297,7 +450297,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:12:35Z", "activity_submission": null, - "well_tag_number": 112631, + "well": 112631, "lithology_from": "20.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -450326,7 +450326,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:20:28Z", "activity_submission": null, - "well_tag_number": 112763, + "well": 112763, "lithology_from": "12.50", "lithology_to": "15.00", "lithology_raw_data": "SILTY CLAY - TRACE SAND, AND GRAVEL. INCREASE IN TRACE GRAVEL FROM ABOVE", @@ -450355,7 +450355,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:02:20Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "320.00", "lithology_to": "326.00", "lithology_raw_data": "GRANITE", @@ -450384,7 +450384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "198.00", "lithology_to": "325.00", "lithology_raw_data": null, @@ -450413,7 +450413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": "silt", @@ -450442,7 +450442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, - "well_tag_number": 112891, + "well": 112891, "lithology_from": "22.00", "lithology_to": "38.00", "lithology_raw_data": "SAND & GRAVEL WITH SILT", @@ -450471,7 +450471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "110.00", "lithology_to": "205.00", "lithology_raw_data": "GREY/GREEN VOLCANIC WITH A FEW GREEN TRACES", @@ -450500,7 +450500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:53:32Z", "activity_submission": null, - "well_tag_number": 112903, + "well": 112903, "lithology_from": "54.00", "lithology_to": "97.00", "lithology_raw_data": "CLAY & SILT", @@ -450529,7 +450529,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:52:59Z", "activity_submission": null, - "well_tag_number": 112312, + "well": 112312, "lithology_from": "78.00", "lithology_to": "79.00", "lithology_raw_data": "CLAY", @@ -450558,7 +450558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, - "well_tag_number": 113290, + "well": 113290, "lithology_from": "0.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -450587,7 +450587,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, - "well_tag_number": 112373, + "well": 112373, "lithology_from": "347.00", "lithology_to": "375.00", "lithology_raw_data": null, @@ -450616,7 +450616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-28T18:12:10Z", "activity_submission": null, - "well_tag_number": 113206, + "well": 113206, "lithology_from": "55.00", "lithology_to": "85.00", "lithology_raw_data": null, @@ -450645,7 +450645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, - "well_tag_number": 113153, + "well": 113153, "lithology_from": "18.00", "lithology_to": "25.00", "lithology_raw_data": "sand, fine-med", @@ -450674,7 +450674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, - "well_tag_number": 113150, + "well": 113150, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", @@ -450703,7 +450703,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T18:28:59Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "450.00", "lithology_to": "470.00", "lithology_raw_data": "granite", @@ -450732,7 +450732,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "335.00", "lithology_to": "341.00", "lithology_raw_data": null, @@ -450761,7 +450761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, - "well_tag_number": 112564, + "well": 112564, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM-HARD; CEMENTED GRAVELS, MEDIUM SAND", @@ -450790,7 +450790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "465.00", "lithology_to": "470.00", "lithology_raw_data": "MW", @@ -450819,7 +450819,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "14.00", "lithology_to": "25.00", "lithology_raw_data": "TILL", @@ -450848,7 +450848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "3.00", "lithology_to": "35.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES", @@ -450877,7 +450877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "238.00", "lithology_to": "241.00", "lithology_raw_data": "pea gravels", @@ -450906,7 +450906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "22.00", "lithology_to": "107.00", "lithology_raw_data": "gravel", @@ -450935,7 +450935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "25.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -450964,7 +450964,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "33.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -450993,7 +450993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "420.00", "lithology_to": "510.00", "lithology_raw_data": "MEDIUM SOFT; GRANITE BEDROCK", @@ -451022,7 +451022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, - "well_tag_number": 113079, + "well": 113079, "lithology_from": "216.00", "lithology_to": "218.00", "lithology_raw_data": null, @@ -451051,7 +451051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "292.00", "lithology_to": "307.00", "lithology_raw_data": "FINE TO MEDIUM FINE", @@ -451080,7 +451080,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "164.00", "lithology_to": "166.00", "lithology_raw_data": "silts", @@ -451109,7 +451109,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "330.00", "lithology_to": "338.00", "lithology_raw_data": "sandy", @@ -451138,7 +451138,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:28Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "300.00", "lithology_to": "430.00", "lithology_raw_data": "with black streaks ", @@ -451167,7 +451167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-19T20:46:02Z", "activity_submission": null, - "well_tag_number": 113039, + "well": 113039, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", @@ -451196,7 +451196,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:19:38Z", "activity_submission": null, - "well_tag_number": 112845, + "well": 112845, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "ASPHALT, DIRT", @@ -451225,7 +451225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, - "well_tag_number": 112969, + "well": 112969, "lithology_from": "40.00", "lithology_to": "41.00", "lithology_raw_data": "SMALL BOULDERS, CLAY", @@ -451254,7 +451254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T20:11:12Z", "activity_submission": null, - "well_tag_number": 112862, + "well": 112862, "lithology_from": "110.00", "lithology_to": "114.00", "lithology_raw_data": "SAND WITH GRAVEL/SOME CLAY & FINES", @@ -451283,7 +451283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "79.00", "lithology_to": "117.00", "lithology_raw_data": "BLACK/GREY, VOLCANIC, FEW TRACES", @@ -451312,7 +451312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "860.00", "lithology_to": "890.00", "lithology_raw_data": "soft formation", @@ -451341,7 +451341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:43:54Z", "activity_submission": null, - "well_tag_number": 112816, + "well": 112816, "lithology_from": "21.00", "lithology_to": "210.00", "lithology_raw_data": "hard zones, some light grey", @@ -451370,7 +451370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "152.00", "lithology_to": "173.00", "lithology_raw_data": "MEDIUM-SOFT, GREY, SAND MEDIUM FINE", @@ -451399,7 +451399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "123.00", "lithology_to": "145.00", "lithology_raw_data": "SILTY CLAY, SOME GRAVEL", @@ -451428,7 +451428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, - "well_tag_number": 112383, + "well": 112383, "lithology_from": "328.00", "lithology_to": "335.00", "lithology_raw_data": null, @@ -451457,7 +451457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-07T23:59:08Z", "activity_submission": null, - "well_tag_number": 112750, + "well": 112750, "lithology_from": "98.00", "lithology_to": "113.00", "lithology_raw_data": "TAN SAND", @@ -451486,7 +451486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, - "well_tag_number": 112294, + "well": 112294, "lithology_from": "16.00", "lithology_to": "40.00", "lithology_raw_data": "VOLCANIC", @@ -451515,7 +451515,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "95.00", "lithology_to": "123.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -451544,7 +451544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "CLAY & TILL", @@ -451573,7 +451573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "405.00", "lithology_to": "420.00", "lithology_raw_data": "FINE SAND, SILT AND CLAY", @@ -451602,7 +451602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "53.00", "lithology_to": "73.00", "lithology_raw_data": "and gravel", @@ -451631,7 +451631,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "200.00", "lithology_to": "215.00", "lithology_raw_data": "CLAY", @@ -451660,7 +451660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:04:21Z", "activity_submission": null, - "well_tag_number": 112394, + "well": 112394, "lithology_from": "4.00", "lithology_to": "96.00", "lithology_raw_data": "BEDROCK", @@ -451689,7 +451689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:19:05Z", "activity_submission": null, - "well_tag_number": 113006, + "well": 113006, "lithology_from": "18.00", "lithology_to": "21.00", "lithology_raw_data": "compact", @@ -451718,7 +451718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "178.00", "lithology_to": "187.00", "lithology_raw_data": "SHALE", @@ -451747,7 +451747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "130.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE/FINE SANDSTONE", @@ -451776,7 +451776,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T18:18:41Z", "activity_submission": null, - "well_tag_number": 113166, + "well": 113166, "lithology_from": "12.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", @@ -451805,7 +451805,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOP SOIL WITH ORGANICS", @@ -451834,7 +451834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "8.00", "lithology_to": "70.00", "lithology_raw_data": "SHALE, SANDSTONE LAYERED", @@ -451863,7 +451863,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:37:10Z", "activity_submission": null, - "well_tag_number": 112451, + "well": 112451, "lithology_from": "81.00", "lithology_to": "101.00", "lithology_raw_data": null, @@ -451892,7 +451892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:41:20Z", "activity_submission": null, - "well_tag_number": 113060, + "well": 113060, "lithology_from": "81.00", "lithology_to": "140.00", "lithology_raw_data": "SILT WITH SOME SANDS AND GRAVEL", @@ -451921,7 +451921,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:29:00Z", "activity_submission": null, - "well_tag_number": 112450, + "well": 112450, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY/ROCKS", @@ -451950,7 +451950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "ORGANIC", @@ -451979,7 +451979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "gravel and wood debris", @@ -452008,7 +452008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "460.00", "lithology_to": "535.00", "lithology_raw_data": "MEDIUM-HARD; HARDER VOLCANIC BEDROCK", @@ -452037,7 +452037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "383.00", "lithology_to": "385.00", "lithology_raw_data": "hard clay", @@ -452066,7 +452066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, - "well_tag_number": 112370, + "well": 112370, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "MEDIUM/HARD GRANITE/GNEISS TYPE", @@ -452095,7 +452095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "240.00", "lithology_to": "300.00", "lithology_raw_data": "MEDIUM-HARD; CONGLOMERATE BEDROCK", @@ -452124,7 +452124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "6.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -452153,7 +452153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "110.00", "lithology_to": "125.00", "lithology_raw_data": "HARDER BROWN SILT, SANDS AND GRAVELS", @@ -452182,7 +452182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -452211,7 +452211,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, - "well_tag_number": 112505, + "well": 112505, "lithology_from": "47.00", "lithology_to": "57.00", "lithology_raw_data": "W.B. SANDS & GRAVELS", @@ -452240,7 +452240,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T03:21:44Z", "activity_submission": null, - "well_tag_number": 112951, + "well": 112951, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -452269,7 +452269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -452298,7 +452298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:05:27Z", "activity_submission": null, - "well_tag_number": 112241, + "well": 112241, "lithology_from": "8.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY", @@ -452327,7 +452327,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, GRAVEL, MIXED", @@ -452356,7 +452356,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "FRACTURED BEDROCK LAYER", @@ -452385,7 +452385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "45.00", "lithology_to": "48.00", "lithology_raw_data": "sand, med coarse", @@ -452414,7 +452414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "206.00", "lithology_to": "259.00", "lithology_raw_data": "gravel and cobbles", @@ -452443,7 +452443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:11:15Z", "activity_submission": null, - "well_tag_number": 112884, + "well": 112884, "lithology_from": "500.00", "lithology_to": "560.00", "lithology_raw_data": "GREY & BLACK", @@ -452472,7 +452472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:17:01Z", "activity_submission": null, - "well_tag_number": 112457, + "well": 112457, "lithology_from": "80.00", "lithology_to": "94.00", "lithology_raw_data": "SILT WITH CLAY", @@ -452501,7 +452501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "158.00", "lithology_to": "169.00", "lithology_raw_data": "gravel", @@ -452530,7 +452530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "136.00", "lithology_to": "146.00", "lithology_raw_data": "DAMP VERY SILT SAND AND GRAVEL", @@ -452559,7 +452559,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "420.00", "lithology_to": "440.00", "lithology_raw_data": "VOLCANIC", @@ -452588,7 +452588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, - "well_tag_number": 112685, + "well": 112685, "lithology_from": "53.00", "lithology_to": "57.00", "lithology_raw_data": "HARD PAN", @@ -452617,7 +452617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "0.00", "lithology_to": "161.00", "lithology_raw_data": "PREVIOUSLY DRILLED", @@ -452646,7 +452646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "160.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", @@ -452675,7 +452675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:55:00Z", "activity_submission": null, - "well_tag_number": 112371, + "well": 112371, "lithology_from": "48.00", "lithology_to": "49.00", "lithology_raw_data": "silt and clay", @@ -452704,7 +452704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "259.00", "lithology_to": "262.00", "lithology_raw_data": "and gravel", @@ -452733,7 +452733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T18:29:45Z", "activity_submission": null, - "well_tag_number": 113121, + "well": 113121, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -452762,7 +452762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:52:26Z", "activity_submission": null, - "well_tag_number": 113285, + "well": 113285, "lithology_from": "54.00", "lithology_to": "75.00", "lithology_raw_data": "FINE GRAVEL WITH MEDIUM TO COARSE SAND TRACE OF WATER 50 TO 65 MORE WATER FROM 65 TO 75", @@ -452791,7 +452791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "6.00", "lithology_to": "11.00", "lithology_raw_data": "CLAY AND GRAVEL", @@ -452820,7 +452820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "1360.00", "lithology_to": "1458.00", "lithology_raw_data": null, @@ -452849,7 +452849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "59.00", "lithology_to": "82.00", "lithology_raw_data": "VERY DENSE; CLAY AND GRAVEL TILL WITH COBBLES", @@ -452878,7 +452878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "85.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY AND SILT", @@ -452907,7 +452907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "180.00", "lithology_to": "182.00", "lithology_raw_data": "MEDIUM-HARD, CLAY", @@ -452936,7 +452936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:18:49Z", "activity_submission": null, - "well_tag_number": 112895, + "well": 112895, "lithology_from": "52.00", "lithology_to": "86.00", "lithology_raw_data": "SILT & CLAY", @@ -452965,7 +452965,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "84.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -452994,7 +452994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, - "well_tag_number": 113149, + "well": 113149, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "gravel", @@ -453023,7 +453023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "17.00", "lithology_to": "31.00", "lithology_raw_data": "BROWN SAND", @@ -453052,7 +453052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "8.00", "lithology_to": "37.00", "lithology_raw_data": "CLAY", @@ -453081,7 +453081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "280.00", "lithology_to": "355.00", "lithology_raw_data": "Sand, course grained, trace gravel, wet", @@ -453110,7 +453110,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MINOR SAND, SILT", @@ -453139,7 +453139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "11.00", "lithology_to": "27.00", "lithology_raw_data": "till", @@ -453168,7 +453168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:33:32Z", "activity_submission": null, - "well_tag_number": 112703, + "well": 112703, "lithology_from": "13.00", "lithology_to": "15.00", "lithology_raw_data": "BROKEN BEDROCK", @@ -453197,7 +453197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "340.00", "lithology_to": "358.00", "lithology_raw_data": "silt", @@ -453226,7 +453226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "126.00", "lithology_to": "138.00", "lithology_raw_data": null, @@ -453255,7 +453255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:15:55Z", "activity_submission": null, - "well_tag_number": 112926, + "well": 112926, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "COARSE GRAVEL & SAND", @@ -453284,7 +453284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "17.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, MEDIUM TO FINE", @@ -453313,7 +453313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T17:30:36Z", "activity_submission": null, - "well_tag_number": 112548, + "well": 112548, "lithology_from": "194.00", "lithology_to": "200.00", "lithology_raw_data": "SAND AND GRAVEL WITH CLAY", @@ -453342,7 +453342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, - "well_tag_number": 112685, + "well": 112685, "lithology_from": "3.00", "lithology_to": "30.00", "lithology_raw_data": "SILT", @@ -453371,7 +453371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, - "well_tag_number": 112333, + "well": 112333, "lithology_from": "55.00", "lithology_to": "105.00", "lithology_raw_data": "BROWN-GREY SAND AND GRAVEL", @@ -453400,7 +453400,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "58.00", "lithology_to": "91.00", "lithology_raw_data": "silty, silt layers", @@ -453429,7 +453429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, - "well_tag_number": 112990, + "well": 112990, "lithology_from": "95.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL & SILTY SAND", @@ -453458,7 +453458,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-01T08:32:07Z", "activity_submission": null, - "well_tag_number": 112731, + "well": 112731, "lithology_from": "0.00", "lithology_to": "23.00", "lithology_raw_data": "TIGHT, CEMENTED BOULDERS; SAND AND GRAVEL WITH TRACE OF CLAY", @@ -453487,7 +453487,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "114.00", "lithology_to": "139.00", "lithology_raw_data": "FINE SANDSTONE WITH S&P LAYERS", @@ -453516,7 +453516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "42.00", "lithology_to": "58.00", "lithology_raw_data": "medium fine grain", @@ -453545,7 +453545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, - "well_tag_number": 112463, + "well": 112463, "lithology_from": "14.00", "lithology_to": "147.00", "lithology_raw_data": "bedrock", @@ -453574,7 +453574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "15.00", "lithology_to": "25.00", "lithology_raw_data": "sand with gravel", @@ -453603,7 +453603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "232.00", "lithology_to": "254.00", "lithology_raw_data": null, @@ -453632,7 +453632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:13:41Z", "activity_submission": null, - "well_tag_number": 112357, + "well": 112357, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -453661,7 +453661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "190.00", "lithology_to": "208.00", "lithology_raw_data": null, @@ -453690,7 +453690,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "24.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -453719,7 +453719,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, - "well_tag_number": 112600, + "well": 112600, "lithology_from": "35.00", "lithology_to": "40.00", "lithology_raw_data": "SAND", @@ -453748,7 +453748,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-16T18:43:34Z", "activity_submission": null, - "well_tag_number": 113146, + "well": 113146, "lithology_from": "280.00", "lithology_to": "310.00", "lithology_raw_data": "GREY CLAY", @@ -453777,7 +453777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "60.00", "lithology_to": "75.00", "lithology_raw_data": "GRAVEL", @@ -453806,7 +453806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-29T18:00:06Z", "activity_submission": null, - "well_tag_number": 113155, + "well": 113155, "lithology_from": "210.00", "lithology_to": "236.00", "lithology_raw_data": null, @@ -453835,7 +453835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:42:26Z", "activity_submission": null, - "well_tag_number": 112694, + "well": 112694, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "TILL", @@ -453864,7 +453864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:28Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "175.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -453893,7 +453893,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, - "well_tag_number": 113013, + "well": 113013, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -453922,7 +453922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "174.00", "lithology_to": "175.00", "lithology_raw_data": "W.B. GREY SILTY SAND AND GRAVEL (WATER WENT BLACK)", @@ -453951,7 +453951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "45.00", "lithology_to": "65.00", "lithology_raw_data": "GRAVEL/SOME LARGE COBBLES", @@ -453980,7 +453980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:37:22Z", "activity_submission": null, - "well_tag_number": 112891, + "well": 112891, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -454009,7 +454009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "39.00", "lithology_to": "141.00", "lithology_raw_data": "GREY CLAY WITH LAYERS OF SILT", @@ -454038,7 +454038,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "174.00", "lithology_to": "180.00", "lithology_raw_data": "VOLCANIC", @@ -454067,7 +454067,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:00:45Z", "activity_submission": null, - "well_tag_number": 112639, + "well": 112639, "lithology_from": "0.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -454096,7 +454096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, - "well_tag_number": 113082, + "well": 113082, "lithology_from": "130.00", "lithology_to": "170.00", "lithology_raw_data": null, @@ -454125,7 +454125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, - "well_tag_number": 112879, + "well": 112879, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "ORGANIC STICKS & SAND, GREY AND BLACK", @@ -454154,7 +454154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "129.00", "lithology_to": "132.00", "lithology_raw_data": "sand", @@ -454183,7 +454183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, - "well_tag_number": 112425, + "well": 112425, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY", @@ -454212,7 +454212,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T22:31:05Z", "activity_submission": null, - "well_tag_number": 112748, + "well": 112748, "lithology_from": "281.00", "lithology_to": "460.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -454241,7 +454241,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, - "well_tag_number": 112536, + "well": 112536, "lithology_from": "53.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, SAND MINOR", @@ -454270,7 +454270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -454299,7 +454299,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:33Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "42.00", "lithology_to": "46.00", "lithology_raw_data": null, @@ -454328,7 +454328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T19:23:57Z", "activity_submission": null, - "well_tag_number": 113149, + "well": 113149, "lithology_from": "42.00", "lithology_to": "50.00", "lithology_raw_data": "cased bedrock", @@ -454357,7 +454357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "134.00", "lithology_to": "138.00", "lithology_raw_data": null, @@ -454386,7 +454386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "80.00", "lithology_to": "158.00", "lithology_raw_data": "medium fine", @@ -454415,7 +454415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-21T18:55:49Z", "activity_submission": null, - "well_tag_number": 113043, + "well": 113043, "lithology_from": "107.00", "lithology_to": "108.00", "lithology_raw_data": null, @@ -454444,7 +454444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:01:33Z", "activity_submission": null, - "well_tag_number": 112613, + "well": 112613, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silts", @@ -454473,7 +454473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "8.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -454502,7 +454502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "SANDSTONE", @@ -454531,7 +454531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, - "well_tag_number": 112288, + "well": 112288, "lithology_from": "182.00", "lithology_to": "199.00", "lithology_raw_data": "VOLCANIC - CLAY", @@ -454560,7 +454560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, - "well_tag_number": 112246, + "well": 112246, "lithology_from": "11.00", "lithology_to": "14.00", "lithology_raw_data": "SANDSTONE", @@ -454589,7 +454589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "90.00", "lithology_to": "107.00", "lithology_raw_data": "Sand, trace to some gravel, trace silt, brown-grey, moist", @@ -454618,7 +454618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "39.00", "lithology_to": "68.00", "lithology_raw_data": "CLAYS AND SANDS", @@ -454647,7 +454647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, - "well_tag_number": 113032, + "well": 113032, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SANDY CLAY", @@ -454676,7 +454676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:15:00Z", "activity_submission": null, - "well_tag_number": 112859, + "well": 112859, "lithology_from": "45.00", "lithology_to": "102.00", "lithology_raw_data": "medium coarse", @@ -454705,7 +454705,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "255.00", "lithology_to": "338.00", "lithology_raw_data": "GREY CLAY", @@ -454734,7 +454734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:40:29Z", "activity_submission": null, - "well_tag_number": 112928, + "well": 112928, "lithology_from": "85.00", "lithology_to": "137.00", "lithology_raw_data": "80 TO 90 BIG GRAVEL, 137 BEDROCK, 136 SHALE APPROX", @@ -454763,7 +454763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "231.00", "lithology_to": "233.00", "lithology_raw_data": null, @@ -454792,7 +454792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "65.00", "lithology_to": "96.00", "lithology_raw_data": "WEATHERED BEDROCK", @@ -454821,7 +454821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T20:55:02Z", "activity_submission": null, - "well_tag_number": 112409, + "well": 112409, "lithology_from": "4.00", "lithology_to": "280.00", "lithology_raw_data": "SAND AND GRAVEL WITH BOULDERS", @@ -454850,7 +454850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "140.00", "lithology_to": "145.00", "lithology_raw_data": "BROWN-YELLOW SANDSTONE", @@ -454879,7 +454879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, - "well_tag_number": 112272, + "well": 112272, "lithology_from": "7.00", "lithology_to": "68.00", "lithology_raw_data": "till", @@ -454908,7 +454908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "FRACTURED ROCK, WEATHERED", @@ -454937,7 +454937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, - "well_tag_number": 112402, + "well": 112402, "lithology_from": "10.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY", @@ -454966,7 +454966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "fill", @@ -454995,7 +454995,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:01Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "24.00", "lithology_to": "27.00", "lithology_raw_data": "SAND, BROWN", @@ -455024,7 +455024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "160.00", "lithology_to": "165.00", "lithology_raw_data": "CLAY", @@ -455053,7 +455053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "2.00", "lithology_to": "14.00", "lithology_raw_data": "till", @@ -455082,7 +455082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "310.00", "lithology_to": "317.00", "lithology_raw_data": "BROKEN BLACK SHALE", @@ -455111,7 +455111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:40:44Z", "activity_submission": null, - "well_tag_number": 113119, + "well": 113119, "lithology_from": "41.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -455140,7 +455140,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "7.00", "lithology_to": "16.00", "lithology_raw_data": "CLAY", @@ -455169,7 +455169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "4.00", "lithology_to": "25.00", "lithology_raw_data": "CLAY & ROCKS", @@ -455198,7 +455198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "58.00", "lithology_to": "67.00", "lithology_raw_data": "till", @@ -455227,7 +455227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "75.00", "lithology_to": "89.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH WHITE TRACES", @@ -455256,7 +455256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "70.00", "lithology_to": "77.00", "lithology_raw_data": "GREY BROWN", @@ -455285,7 +455285,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "223.00", "lithology_to": "225.00", "lithology_raw_data": null, @@ -455314,7 +455314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "30.00", "lithology_to": "136.00", "lithology_raw_data": null, @@ -455343,7 +455343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "137.00", "lithology_to": "172.00", "lithology_raw_data": "CLAY", @@ -455372,7 +455372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:33:13Z", "activity_submission": null, - "well_tag_number": 112383, + "well": 112383, "lithology_from": "130.00", "lithology_to": "328.00", "lithology_raw_data": null, @@ -455401,7 +455401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, - "well_tag_number": 113289, + "well": 113289, "lithology_from": "14.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", @@ -455430,7 +455430,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, GRAVEL", @@ -455459,7 +455459,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "5.00", "lithology_to": "10.00", "lithology_raw_data": "GREY & BROWN", @@ -455488,7 +455488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "220.00", "lithology_to": "280.00", "lithology_raw_data": "CLAY", @@ -455517,7 +455517,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T20:03:05Z", "activity_submission": null, - "well_tag_number": 112296, + "well": 112296, "lithology_from": "137.00", "lithology_to": "207.00", "lithology_raw_data": "SANDSTONE INTERBEDDED WITH SILTSTONE & SHALE LENSES", @@ -455546,7 +455546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:24:06Z", "activity_submission": null, - "well_tag_number": 112331, + "well": 112331, "lithology_from": "197.00", "lithology_to": "202.00", "lithology_raw_data": "GREEN/GREY VOLCANIC", @@ -455575,7 +455575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "11.00", "lithology_to": "13.00", "lithology_raw_data": null, @@ -455604,7 +455604,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:44:50Z", "activity_submission": null, - "well_tag_number": 113016, + "well": 113016, "lithology_from": "30.00", "lithology_to": "135.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -455633,7 +455633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T22:59:26Z", "activity_submission": null, - "well_tag_number": 112339, + "well": 112339, "lithology_from": "121.00", "lithology_to": "190.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREY, VOLCANIC - SEVERAL FRACTURES", @@ -455662,7 +455662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "180.00", "lithology_to": "210.00", "lithology_raw_data": "SHALE / FINE SANDSTONE / SILTSTONE STRINGERS", @@ -455691,7 +455691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "37.00", "lithology_to": "39.00", "lithology_raw_data": "SAND, GRAVEL, SILT", @@ -455720,7 +455720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:02:57Z", "activity_submission": null, - "well_tag_number": 112839, + "well": 112839, "lithology_from": "5.00", "lithology_to": "400.00", "lithology_raw_data": "sandstone", @@ -455749,7 +455749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "75.00", "lithology_to": "210.00", "lithology_raw_data": "VOLCANIC", @@ -455778,7 +455778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, - "well_tag_number": 113153, + "well": 113153, "lithology_from": "25.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -455807,7 +455807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "4.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -455836,7 +455836,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "423.00", "lithology_to": "428.00", "lithology_raw_data": "SS hard fine grey with hard shale lenses", @@ -455865,7 +455865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:21Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "36.00", "lithology_to": "38.00", "lithology_raw_data": null, @@ -455894,7 +455894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "57.00", "lithology_to": "61.00", "lithology_raw_data": "LOOSE SILTY SAND", @@ -455923,7 +455923,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:07:16Z", "activity_submission": null, - "well_tag_number": 112673, + "well": 112673, "lithology_from": "117.00", "lithology_to": "119.00", "lithology_raw_data": "BROWN WATER BEARING SAND AND GRAVEL WITH ORGANICS (VERY DIRTY)", @@ -455952,7 +455952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -455981,7 +455981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:29:01Z", "activity_submission": null, - "well_tag_number": 112291, + "well": 112291, "lithology_from": "63.00", "lithology_to": "103.00", "lithology_raw_data": "BEDROCK, VOLCANIC", @@ -456010,7 +456010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "205.00", "lithology_to": "215.00", "lithology_raw_data": "BLUE/GREEN VOLCANIC", @@ -456039,7 +456039,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, - "well_tag_number": 112640, + "well": 112640, "lithology_from": "69.00", "lithology_to": "157.00", "lithology_raw_data": "clay till ", @@ -456068,7 +456068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:57:52Z", "activity_submission": null, - "well_tag_number": 112722, + "well": 112722, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -456097,7 +456097,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "221.00", "lithology_to": "235.00", "lithology_raw_data": "and sand", @@ -456126,7 +456126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T22:17:32Z", "activity_submission": null, - "well_tag_number": 112620, + "well": 112620, "lithology_from": "9.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -456155,7 +456155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:22:33Z", "activity_submission": null, - "well_tag_number": 112727, + "well": 112727, "lithology_from": "222.00", "lithology_to": "250.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -456184,7 +456184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY-SILTY", @@ -456213,7 +456213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, - "well_tag_number": 112959, + "well": 112959, "lithology_from": "40.00", "lithology_to": "54.00", "lithology_raw_data": "SILTY SAND & GRAVEL", @@ -456242,7 +456242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND", @@ -456271,7 +456271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "0.00", "lithology_to": "1.31", "lithology_raw_data": null, @@ -456300,7 +456300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:00:22Z", "activity_submission": null, - "well_tag_number": 112825, + "well": 112825, "lithology_from": "124.00", "lithology_to": "127.00", "lithology_raw_data": "MEDIUM SAND", @@ -456329,7 +456329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:51:32Z", "activity_submission": null, - "well_tag_number": 112861, + "well": 112861, "lithology_from": "40.00", "lithology_to": "55.00", "lithology_raw_data": "MED SOFT TO MED HARD", @@ -456358,7 +456358,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, - "well_tag_number": 112389, + "well": 112389, "lithology_from": "295.00", "lithology_to": "375.00", "lithology_raw_data": "MEDIUM/HARD, WHITE/BLACK", @@ -456387,7 +456387,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T21:06:15Z", "activity_submission": null, - "well_tag_number": 113152, + "well": 113152, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -456416,7 +456416,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "17.00", "lithology_to": "24.00", "lithology_raw_data": null, @@ -456445,7 +456445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-02T21:43:35Z", "activity_submission": null, - "well_tag_number": 110627, + "well": 110627, "lithology_from": "55.00", "lithology_to": null, "lithology_raw_data": "BEDROCK VOLCANIC", @@ -456474,7 +456474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:20:53Z", "activity_submission": null, - "well_tag_number": 112431, + "well": 112431, "lithology_from": "11.00", "lithology_to": "26.00", "lithology_raw_data": "with rotten rock", @@ -456503,7 +456503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T07:42:22Z", "activity_submission": null, - "well_tag_number": 112765, + "well": 112765, "lithology_from": "11.50", "lithology_to": "15.00", "lithology_raw_data": "MEDIUM STIFF; SILTY CLAY - TRACE SAND & GRAVEL. INCREASE IN TRACE SAND & GRAVEL", @@ -456532,7 +456532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "194.00", "lithology_to": "222.00", "lithology_raw_data": "CLAYEY SILT", @@ -456561,7 +456561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "286.00", "lithology_to": "290.00", "lithology_raw_data": "COMPACT SAND", @@ -456590,7 +456590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "246.00", "lithology_to": "264.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -456619,7 +456619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "200.00", "lithology_to": "220.00", "lithology_raw_data": "light green quartz soft fractured rock", @@ -456648,7 +456648,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "47.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel with till", @@ -456677,7 +456677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:30:44Z", "activity_submission": null, - "well_tag_number": 112465, + "well": 112465, "lithology_from": "0.00", "lithology_to": "161.00", "lithology_raw_data": null, @@ -456706,7 +456706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "93.00", "lithology_to": "147.00", "lithology_raw_data": null, @@ -456735,7 +456735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:09:51Z", "activity_submission": null, - "well_tag_number": 112490, + "well": 112490, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, MINOR GRAVEL", @@ -456764,7 +456764,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-10T23:05:34Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "282.00", "lithology_to": "285.00", "lithology_raw_data": "GRAVEL/COARSE SAND", @@ -456793,7 +456793,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "156.00", "lithology_to": "174.00", "lithology_raw_data": "W.B. GREY SILTY SAND AND GRAVEL", @@ -456822,7 +456822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:30:22Z", "activity_submission": null, - "well_tag_number": 112670, + "well": 112670, "lithology_from": "16.00", "lithology_to": "25.00", "lithology_raw_data": "GRAVEL", @@ -456851,7 +456851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "136.00", "lithology_to": "176.00", "lithology_raw_data": "FINE SILTS, SOME SAND", @@ -456880,7 +456880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "214.00", "lithology_to": "288.00", "lithology_raw_data": "SHALE / SILTSTONE / SANDSTONE", @@ -456909,7 +456909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "13.00", "lithology_to": "19.00", "lithology_raw_data": "sand with gravel", @@ -456938,7 +456938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "10.00", "lithology_to": "70.00", "lithology_raw_data": null, @@ -456967,7 +456967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:57Z", "activity_submission": null, - "well_tag_number": 112287, + "well": 112287, "lithology_from": "125.00", "lithology_to": "162.00", "lithology_raw_data": "BASALT", @@ -456996,7 +456996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "290.00", "lithology_to": "295.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -457025,7 +457025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:04:49Z", "activity_submission": null, - "well_tag_number": 112942, + "well": 112942, "lithology_from": "113.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -457054,7 +457054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T19:59:26Z", "activity_submission": null, - "well_tag_number": 112796, + "well": 112796, "lithology_from": "0.00", "lithology_to": "195.00", "lithology_raw_data": "silestone shale", @@ -457083,7 +457083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -457112,7 +457112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "140.00", "lithology_to": "150.00", "lithology_raw_data": "MEDIUM/SOFT; BASALT", @@ -457141,7 +457141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "273.00", "lithology_to": "321.00", "lithology_raw_data": "VOLCANIC", @@ -457170,7 +457170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "85.00", "lithology_to": "90.00", "lithology_raw_data": "SAND GRAVEL/MINOR TILL", @@ -457199,7 +457199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "till ", @@ -457228,7 +457228,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:31:58Z", "activity_submission": null, - "well_tag_number": 112471, + "well": 112471, "lithology_from": "152.00", "lithology_to": "153.00", "lithology_raw_data": null, @@ -457257,7 +457257,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "214.00", "lithology_to": "232.00", "lithology_raw_data": null, @@ -457286,7 +457286,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-22T19:55:15Z", "activity_submission": null, - "well_tag_number": 112812, + "well": 112812, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "organics", @@ -457315,7 +457315,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-02T19:13:36Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "99.00", "lithology_to": "114.00", "lithology_raw_data": "SAND WITH ASH", @@ -457344,7 +457344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "organics", @@ -457373,7 +457373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:33:20Z", "activity_submission": null, - "well_tag_number": 112280, + "well": 112280, "lithology_from": "4.00", "lithology_to": "10.00", "lithology_raw_data": "FINE SAND", @@ -457402,7 +457402,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "135.00", "lithology_to": "137.00", "lithology_raw_data": "FELDSPAR", @@ -457431,7 +457431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:35:23Z", "activity_submission": null, - "well_tag_number": 112721, + "well": 112721, "lithology_from": "58.00", "lithology_to": "76.00", "lithology_raw_data": "FINE AND MEDIUM SANDSTONE", @@ -457460,7 +457460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:52:13Z", "activity_submission": null, - "well_tag_number": 112698, + "well": 112698, "lithology_from": "27.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -457489,7 +457489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, - "well_tag_number": 112288, + "well": 112288, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "TILL", @@ -457518,7 +457518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY/SILT", @@ -457547,7 +457547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T16:08:03Z", "activity_submission": null, - "well_tag_number": 113153, + "well": 113153, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "med sand", @@ -457576,7 +457576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "29.00", "lithology_to": "31.00", "lithology_raw_data": "SILTY SAND SOME GRAVEL", @@ -457605,7 +457605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -457634,7 +457634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:23:07Z", "activity_submission": null, - "well_tag_number": 112886, + "well": 112886, "lithology_from": "132.00", "lithology_to": "182.00", "lithology_raw_data": null, @@ -457663,7 +457663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "49.00", "lithology_to": "82.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -457692,7 +457692,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-27T19:51:14Z", "activity_submission": null, - "well_tag_number": 112820, + "well": 112820, "lithology_from": "9.00", "lithology_to": "14.00", "lithology_raw_data": "clay and gravel", @@ -457721,7 +457721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-12T17:30:36Z", "activity_submission": null, - "well_tag_number": 113113, + "well": 113113, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -457750,7 +457750,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "14.00", "lithology_to": "17.00", "lithology_raw_data": "gravel", @@ -457779,7 +457779,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:44:26Z", "activity_submission": null, - "well_tag_number": 112342, + "well": 112342, "lithology_from": "42.00", "lithology_to": "210.00", "lithology_raw_data": "GREY/GREEN GRANITE", @@ -457808,7 +457808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, - "well_tag_number": 112746, + "well": 112746, "lithology_from": "6.00", "lithology_to": "10.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLES", @@ -457837,7 +457837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, - "well_tag_number": 112976, + "well": 112976, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "SAND, CLAY & SMALL COBBLES", @@ -457866,7 +457866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "GRANITE", @@ -457895,7 +457895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "50.00", "lithology_to": "60.00", "lithology_raw_data": null, @@ -457924,7 +457924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "42.00", "lithology_to": "115.00", "lithology_raw_data": null, @@ -457953,7 +457953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "140.00", "lithology_to": "180.00", "lithology_raw_data": "BROWN/GREY, TRACE OF CLAY", @@ -457982,7 +457982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "117.00", "lithology_to": "125.00", "lithology_raw_data": "and gravel", @@ -458011,7 +458011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, - "well_tag_number": 113065, + "well": 113065, "lithology_from": "78.00", "lithology_to": "140.00", "lithology_raw_data": "SILT AND SAND", @@ -458040,7 +458040,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "100.00", "lithology_to": "180.00", "lithology_raw_data": "CLAY", @@ -458069,7 +458069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "light green black quartz medium soft rock", @@ -458098,7 +458098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "137.00", "lithology_to": "157.00", "lithology_raw_data": "DAMP CLAY, SILTS & SAND", @@ -458127,7 +458127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:30Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "45.00", "lithology_to": "63.00", "lithology_raw_data": null, @@ -458156,7 +458156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, - "well_tag_number": 112901, + "well": 112901, "lithology_from": "183.00", "lithology_to": "191.00", "lithology_raw_data": "SAND, GRAVEL & SILT", @@ -458185,7 +458185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:09:56Z", "activity_submission": null, - "well_tag_number": 112711, + "well": 112711, "lithology_from": "510.00", "lithology_to": "779.00", "lithology_raw_data": "MEDIUM-HARD; GRANITE BEDROCK", @@ -458214,7 +458214,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "135.00", "lithology_to": "155.00", "lithology_raw_data": null, @@ -458243,7 +458243,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "64.00", "lithology_to": "75.00", "lithology_raw_data": "SANDSTONE / SHALE LENSES", @@ -458272,7 +458272,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:42:33Z", "activity_submission": null, - "well_tag_number": 112684, + "well": 112684, "lithology_from": "37.00", "lithology_to": "75.00", "lithology_raw_data": "BEDROCK", @@ -458301,7 +458301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": "TILL", @@ -458330,7 +458330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, - "well_tag_number": 112540, + "well": 112540, "lithology_from": "67.00", "lithology_to": "128.00", "lithology_raw_data": "CLAY, SILT", @@ -458359,7 +458359,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "220.00", "lithology_to": "310.00", "lithology_raw_data": "FINE SILTSTONE WITH SOME GREY SHALE", @@ -458388,7 +458388,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "198.00", "lithology_to": "220.00", "lithology_raw_data": "Sandstone tight", @@ -458417,7 +458417,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "143.00", "lithology_to": "155.00", "lithology_raw_data": "LIGHT AND DARK GREY SHALE AND LAYERED", @@ -458446,7 +458446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T20:00:59Z", "activity_submission": null, - "well_tag_number": 112797, + "well": 112797, "lithology_from": "0.00", "lithology_to": "3.30", "lithology_raw_data": "ORGANIC SILTY LOAM", @@ -458475,7 +458475,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND SILT", @@ -458504,7 +458504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:49:32Z", "activity_submission": null, - "well_tag_number": 112918, + "well": 112918, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -458533,7 +458533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, - "well_tag_number": 112517, + "well": 112517, "lithology_from": "98.00", "lithology_to": "131.00", "lithology_raw_data": "silt layers", @@ -458562,7 +458562,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -458591,7 +458591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:30:32Z", "activity_submission": null, - "well_tag_number": 112977, + "well": 112977, "lithology_from": "67.00", "lithology_to": "71.00", "lithology_raw_data": "till", @@ -458620,7 +458620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-21T18:53:40Z", "activity_submission": null, - "well_tag_number": 112518, + "well": 112518, "lithology_from": "27.00", "lithology_to": "52.00", "lithology_raw_data": "W.B. COARSE SAND & GRAVEL", @@ -458649,7 +458649,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:03Z", "activity_submission": null, - "well_tag_number": 112923, + "well": 112923, "lithology_from": "0.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY/TILL SOFT/MEDIUM", @@ -458678,7 +458678,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": "SHALE & SILTSTONE", @@ -458707,7 +458707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:48:46Z", "activity_submission": null, - "well_tag_number": 112757, + "well": 112757, "lithology_from": "360.00", "lithology_to": "373.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", @@ -458736,7 +458736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "148.00", "lithology_to": "164.00", "lithology_raw_data": "and sand", @@ -458765,7 +458765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, - "well_tag_number": 113293, + "well": 113293, "lithology_from": "12.00", "lithology_to": "47.00", "lithology_raw_data": "sand with gravel", @@ -458794,7 +458794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:18:51Z", "activity_submission": null, - "well_tag_number": 112220, + "well": 112220, "lithology_from": "570.00", "lithology_to": "590.00", "lithology_raw_data": "GREY VOLCANIC", @@ -458823,7 +458823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-17T19:38:25Z", "activity_submission": null, - "well_tag_number": 113123, + "well": 113123, "lithology_from": "120.00", "lithology_to": "240.00", "lithology_raw_data": "bedrock, sandstone zones", @@ -458852,7 +458852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "395.00", "lithology_to": "501.00", "lithology_raw_data": "bedrock", @@ -458881,7 +458881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:25:56Z", "activity_submission": null, - "well_tag_number": 112498, + "well": 112498, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL & SAND", @@ -458910,7 +458910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:41:38Z", "activity_submission": null, - "well_tag_number": 112704, + "well": 112704, "lithology_from": "22.00", "lithology_to": "34.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -458939,7 +458939,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:47:27Z", "activity_submission": null, - "well_tag_number": 112248, + "well": 112248, "lithology_from": "87.00", "lithology_to": "90.70", "lithology_raw_data": "SHALE", @@ -458968,7 +458968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "33.00", "lithology_to": "45.00", "lithology_raw_data": "CLAY & ROCKS", @@ -458997,7 +458997,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:40:31Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "168.00", "lithology_to": "170.00", "lithology_raw_data": "GREY/WHITE VOLCANIC", @@ -459026,7 +459026,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, - "well_tag_number": 113021, + "well": 113021, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "gravel", @@ -459055,7 +459055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, - "well_tag_number": 112994, + "well": 112994, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "TILL/BOULDERS, GREY/BROWN", @@ -459084,7 +459084,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "349.00", "lithology_to": "376.50", "lithology_raw_data": "MUDSTONE", @@ -459113,7 +459113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:24:40Z", "activity_submission": null, - "well_tag_number": 112901, + "well": 112901, "lithology_from": "191.00", "lithology_to": "192.00", "lithology_raw_data": "SAND & SILT", @@ -459142,7 +459142,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": "SS FINE", @@ -459171,7 +459171,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T16:20:12Z", "activity_submission": null, - "well_tag_number": 112910, + "well": 112910, "lithology_from": "50.00", "lithology_to": "64.00", "lithology_raw_data": "MEDIUM COARSE SAND, MEDIUM GRAVEL, BROWN/GREY", @@ -459200,7 +459200,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, - "well_tag_number": 113105, + "well": 113105, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "cased bedrock", @@ -459229,7 +459229,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:43:18Z", "activity_submission": null, - "well_tag_number": 113169, + "well": 113169, "lithology_from": "115.00", "lithology_to": "190.00", "lithology_raw_data": "sand gravel", @@ -459258,7 +459258,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "237.00", "lithology_to": "250.00", "lithology_raw_data": "BROWN-YELLOW-RED VOLCANIC ROCK", @@ -459287,7 +459287,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "220.00", "lithology_to": "224.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC", @@ -459316,7 +459316,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, - "well_tag_number": 112969, + "well": 112969, "lithology_from": "8.00", "lithology_to": "13.00", "lithology_raw_data": "SAND, GRAVEL, SMALL BOULDERS", @@ -459345,7 +459345,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:21Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": null, "lithology_to": null, "lithology_raw_data": "350'", @@ -459374,7 +459374,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "150.00", "lithology_to": "155.00", "lithology_raw_data": "FRACTURE ROCK", @@ -459403,7 +459403,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "135.00", "lithology_to": "310.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -459432,7 +459432,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-27T17:19:47Z", "activity_submission": null, - "well_tag_number": 113204, + "well": 113204, "lithology_from": "135.00", "lithology_to": "175.00", "lithology_raw_data": "gravel", @@ -459461,7 +459461,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": "silt", @@ -459490,7 +459490,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:45:13Z", "activity_submission": null, - "well_tag_number": 112688, + "well": 112688, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "TILL", @@ -459519,7 +459519,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "35.00", "lithology_to": "51.00", "lithology_raw_data": "sand with gravel", @@ -459548,7 +459548,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T08:29:02Z", "activity_submission": null, - "well_tag_number": 112389, + "well": 112389, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "SANDY SOILS SOME GRAVEL", @@ -459577,7 +459577,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, - "well_tag_number": 113173, + "well": 113173, "lithology_from": "38.00", "lithology_to": "70.00", "lithology_raw_data": "gravel", @@ -459606,7 +459606,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "251.00", "lithology_to": "254.00", "lithology_raw_data": null, @@ -459635,7 +459635,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "CLAY & TILL", @@ -459664,7 +459664,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T22:43:52Z", "activity_submission": null, - "well_tag_number": 112636, + "well": 112636, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -459693,7 +459693,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, - "well_tag_number": 112549, + "well": 112549, "lithology_from": "0.00", "lithology_to": "280.00", "lithology_raw_data": null, @@ -459722,7 +459722,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "107.00", "lithology_to": "113.00", "lithology_raw_data": "GREY/S+P", @@ -459751,7 +459751,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "93.00", "lithology_to": "100.00", "lithology_raw_data": "SILTY SAND & GRAVEL", @@ -459780,7 +459780,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:11:05Z", "activity_submission": null, - "well_tag_number": 112305, + "well": 112305, "lithology_from": "95.00", "lithology_to": "101.00", "lithology_raw_data": "GRAVEL AND SAND", @@ -459809,7 +459809,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:24:06Z", "activity_submission": null, - "well_tag_number": 112983, + "well": 112983, "lithology_from": "5.00", "lithology_to": "15.00", "lithology_raw_data": "compact", @@ -459838,7 +459838,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:31:17Z", "activity_submission": null, - "well_tag_number": 113070, + "well": 113070, "lithology_from": "19.00", "lithology_to": "44.00", "lithology_raw_data": "W.B. PEA GRAVEL AND MEDIUM SAND (BROWN)", @@ -459867,7 +459867,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY, SILT, SAND", @@ -459896,7 +459896,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:06:20Z", "activity_submission": null, - "well_tag_number": 112549, + "well": 112549, "lithology_from": "555.00", "lithology_to": "560.00", "lithology_raw_data": null, @@ -459925,7 +459925,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:17:08Z", "activity_submission": null, - "well_tag_number": 113099, + "well": 113099, "lithology_from": "75.00", "lithology_to": "382.00", "lithology_raw_data": null, @@ -459954,7 +459954,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "123.00", "lithology_to": "126.00", "lithology_raw_data": "SHALE BENTONITE LIGHT GREY", @@ -459983,7 +459983,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:41Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "68.00", "lithology_to": null, "lithology_raw_data": "BEDROCK", @@ -460012,7 +460012,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "SILT", @@ -460041,7 +460041,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, - "well_tag_number": 112239, + "well": 112239, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "SILT, CLAY", @@ -460070,7 +460070,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, - "well_tag_number": 112437, + "well": 112437, "lithology_from": "35.00", "lithology_to": "36.00", "lithology_raw_data": null, @@ -460099,7 +460099,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "243.00", "lithology_to": "361.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", @@ -460128,7 +460128,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T17:07:14Z", "activity_submission": null, - "well_tag_number": 112512, + "well": 112512, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, GRAVEL", @@ -460157,7 +460157,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "143.00", "lithology_to": "163.00", "lithology_raw_data": "with quartz layers", @@ -460186,7 +460186,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T04:00:00Z", "activity_submission": null, - "well_tag_number": 112481, + "well": 112481, "lithology_from": "74.00", "lithology_to": "80.00", "lithology_raw_data": "GRAVEL", @@ -460215,7 +460215,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:36:15Z", "activity_submission": null, - "well_tag_number": 112584, + "well": 112584, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY", @@ -460244,7 +460244,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-02-09T21:44:57Z", "activity_submission": null, - "well_tag_number": 110749, + "well": 110749, "lithology_from": "267.00", "lithology_to": "285.00", "lithology_raw_data": "SAND, BLUE CLAY & ROCK", @@ -460273,7 +460273,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "263.00", "lithology_to": "270.00", "lithology_raw_data": "FRACTURED VOLCANIC ROCK", @@ -460302,7 +460302,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T16:20:25Z", "activity_submission": null, - "well_tag_number": 112856, + "well": 112856, "lithology_from": "48.00", "lithology_to": "52.00", "lithology_raw_data": "sand with gravel", @@ -460331,7 +460331,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "21.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -460360,7 +460360,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T17:22:50Z", "activity_submission": null, - "well_tag_number": 112676, + "well": 112676, "lithology_from": "120.00", "lithology_to": "134.00", "lithology_raw_data": "BLK SILTY SAND & ROCKS", @@ -460389,7 +460389,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "29.99", "lithology_to": "39.99", "lithology_raw_data": "CL - CLAY, SLOW DILATENCY, LOW PLASTICITY", @@ -460418,7 +460418,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "14.00", "lithology_to": "21.00", "lithology_raw_data": "SAND, FINE-MED", @@ -460447,7 +460447,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:59:06Z", "activity_submission": null, - "well_tag_number": 112730, + "well": 112730, "lithology_from": "84.00", "lithology_to": "92.00", "lithology_raw_data": "MEDIUM-HARD; SANDSTONE BEDROCK", @@ -460476,7 +460476,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T23:16:24Z", "activity_submission": null, - "well_tag_number": 112416, + "well": 112416, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "SOFT/HARD, GRAVEL/FINE SAND", @@ -460505,7 +460505,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "0.00", "lithology_to": "110.00", "lithology_raw_data": "GRAY-BROWN, CLAY", @@ -460534,7 +460534,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "55.00", "lithology_to": "105.00", "lithology_raw_data": "HARD PACKED, GREY CLAY", @@ -460563,7 +460563,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, - "well_tag_number": 112258, + "well": 112258, "lithology_from": "3.00", "lithology_to": "15.00", "lithology_raw_data": "SAND", @@ -460592,7 +460592,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "16.00", "lithology_to": "50.00", "lithology_raw_data": "and fine sand", @@ -460621,7 +460621,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "185.00", "lithology_to": "225.00", "lithology_raw_data": "WHITE/BLUE/GREEN SEAMS OF GNEISS", @@ -460650,7 +460650,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "32.00", "lithology_to": "51.00", "lithology_raw_data": "DIRTIER FINE AND SILTY SAND", @@ -460679,7 +460679,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:18:33Z", "activity_submission": null, - "well_tag_number": 112424, + "well": 112424, "lithology_from": "32.00", "lithology_to": "80.00", "lithology_raw_data": "BEDROCK", @@ -460708,7 +460708,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, - "well_tag_number": 112420, + "well": 112420, "lithology_from": "14.00", "lithology_to": "20.00", "lithology_raw_data": "BEDROCK", @@ -460737,7 +460737,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, - "well_tag_number": 108027, + "well": 108027, "lithology_from": "1.00", "lithology_to": "10.00", "lithology_raw_data": "shale bedrock", @@ -460766,7 +460766,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "24.00", "lithology_to": "26.00", "lithology_raw_data": "SAND AND GRAVEL ", @@ -460795,7 +460795,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T19:05:50Z", "activity_submission": null, - "well_tag_number": 112768, + "well": 112768, "lithology_from": "314.20", "lithology_to": "379.80", "lithology_raw_data": "SANDSTONE WITH SILTSTONE AND MUDSTONE", @@ -460824,7 +460824,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T23:09:15Z", "activity_submission": null, - "well_tag_number": 112496, + "well": 112496, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "ANGULAR GRAVEL, CLAY", @@ -460853,7 +460853,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, - "well_tag_number": 112591, + "well": 112591, "lithology_from": "80.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/HARD; CLAY", @@ -460882,7 +460882,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "14.00", "lithology_to": "22.00", "lithology_raw_data": "and gravel", @@ -460911,7 +460911,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:31:55Z", "activity_submission": null, - "well_tag_number": 112537, + "well": 112537, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "GRAVEL", @@ -460940,7 +460940,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-25T18:45:52Z", "activity_submission": null, - "well_tag_number": 112666, + "well": 112666, "lithology_from": "5.00", "lithology_to": "95.00", "lithology_raw_data": "GRANITE", @@ -460969,7 +460969,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "180.00", "lithology_to": "181.00", "lithology_raw_data": null, @@ -460998,7 +460998,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:59:50Z", "activity_submission": null, - "well_tag_number": 112434, + "well": 112434, "lithology_from": "59.00", "lithology_to": "74.00", "lithology_raw_data": "and gravel with some clay", @@ -461027,7 +461027,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "77.00", "lithology_to": "87.00", "lithology_raw_data": "W.B. SILTY SAND", @@ -461056,7 +461056,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:41:27Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "275.00", "lithology_to": "282.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", @@ -461085,7 +461085,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T19:17:58Z", "activity_submission": null, - "well_tag_number": 112523, + "well": 112523, "lithology_from": "26.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -461114,7 +461114,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "400.00", "lithology_to": "420.00", "lithology_raw_data": "BEDROCK", @@ -461143,7 +461143,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:21:05Z", "activity_submission": null, - "well_tag_number": 112632, + "well": 112632, "lithology_from": "22.00", "lithology_to": "156.00", "lithology_raw_data": null, @@ -461172,7 +461172,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:20:26Z", "activity_submission": null, - "well_tag_number": 112604, + "well": 112604, "lithology_from": "60.00", "lithology_to": "62.00", "lithology_raw_data": "HARD PAN", @@ -461201,7 +461201,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, - "well_tag_number": 112976, + "well": 112976, "lithology_from": "42.00", "lithology_to": "52.00", "lithology_raw_data": "WITH CLAY BALLS", @@ -461230,7 +461230,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:19:19Z", "activity_submission": null, - "well_tag_number": 112488, + "well": 112488, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM CLAY, ANGULAR, GRAVEL LAYERS", @@ -461259,7 +461259,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T07:40:38Z", "activity_submission": null, - "well_tag_number": 112489, + "well": 112489, "lithology_from": "346.00", "lithology_to": "440.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK, FRACTURED", @@ -461288,7 +461288,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:26:23Z", "activity_submission": null, - "well_tag_number": 112927, + "well": 112927, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -461317,7 +461317,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, - "well_tag_number": 113300, + "well": 113300, "lithology_from": "18.00", "lithology_to": "128.00", "lithology_raw_data": null, @@ -461346,7 +461346,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "314.00", "lithology_to": "316.00", "lithology_raw_data": "fractured", @@ -461375,7 +461375,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, - "well_tag_number": 112849, + "well": 112849, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -461404,7 +461404,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, SILT", @@ -461433,7 +461433,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "206.00", "lithology_to": "210.00", "lithology_raw_data": null, @@ -461462,7 +461462,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "50.00", "lithology_to": "55.00", "lithology_raw_data": "and fine sand", @@ -461491,7 +461491,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:37:41Z", "activity_submission": null, - "well_tag_number": 112991, + "well": 112991, "lithology_from": "19.00", "lithology_to": "47.00", "lithology_raw_data": "gravelly till", @@ -461520,7 +461520,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-10T01:41:37Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "222.00", "lithology_to": "225.00", "lithology_raw_data": "FINE SAND", @@ -461549,7 +461549,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T17:19:56Z", "activity_submission": null, - "well_tag_number": 113105, + "well": 113105, "lithology_from": "35.00", "lithology_to": "50.00", "lithology_raw_data": "gravel", @@ -461578,7 +461578,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T16:42:46Z", "activity_submission": null, - "well_tag_number": 113104, + "well": 113104, "lithology_from": "0.00", "lithology_to": "180.00", "lithology_raw_data": "sand gravel", @@ -461607,7 +461607,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T16:28:30Z", "activity_submission": null, - "well_tag_number": 113288, + "well": 113288, "lithology_from": "38.00", "lithology_to": "49.00", "lithology_raw_data": null, @@ -461636,7 +461636,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "VERY FINE AND SILTY SAND WITH SOME SANDY CLAY LAYERS", @@ -461665,7 +461665,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:36Z", "activity_submission": null, - "well_tag_number": 112379, + "well": 112379, "lithology_from": "101.00", "lithology_to": "106.00", "lithology_raw_data": null, @@ -461694,7 +461694,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:29Z", "activity_submission": null, - "well_tag_number": 112674, + "well": 112674, "lithology_from": "31.00", "lithology_to": "59.00", "lithology_raw_data": "FINE SAND WITH GRAVEL SEAMS", @@ -461723,7 +461723,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "107.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC WITH WHITE, OCCASIONAL GREEN TRACES", @@ -461752,7 +461752,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY", @@ -461781,7 +461781,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "0.00", "lithology_to": "33.00", "lithology_raw_data": "and gravel", @@ -461810,7 +461810,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "BEDROCK", @@ -461839,7 +461839,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:37:26Z", "activity_submission": null, - "well_tag_number": 112243, + "well": 112243, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SHALE", @@ -461868,7 +461868,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "SOFT/MEDIUM CLAY", @@ -461897,7 +461897,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "140.00", "lithology_to": "144.00", "lithology_raw_data": null, @@ -461926,7 +461926,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:55:55Z", "activity_submission": null, - "well_tag_number": 112804, + "well": 112804, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -461955,7 +461955,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:25:57Z", "activity_submission": null, - "well_tag_number": 112287, + "well": 112287, "lithology_from": "100.00", "lithology_to": "125.00", "lithology_raw_data": "VOLCANIC", @@ -461984,7 +461984,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:18:04Z", "activity_submission": null, - "well_tag_number": 112453, + "well": 112453, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -462013,7 +462013,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "115.00", "lithology_to": "160.00", "lithology_raw_data": "VOLCANIC WITH OCCASIONAL TRACES", @@ -462042,7 +462042,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "0.00", "lithology_to": "43.00", "lithology_raw_data": "cobbles", @@ -462071,7 +462071,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T04:47:14Z", "activity_submission": null, - "well_tag_number": 112776, + "well": 112776, "lithology_from": "7.51", "lithology_to": "15.49", "lithology_raw_data": "SM - SILTY SAND, TRACE CLAY, LAMINATED, FINE SAND", @@ -462100,7 +462100,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "79.00", "lithology_to": "98.00", "lithology_raw_data": "gravel and tight cobble", @@ -462129,7 +462129,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-11-14T17:34:09Z", "activity_submission": null, - "well_tag_number": 107072, + "well": 107072, "lithology_from": "160.00", "lithology_to": "395.00", "lithology_raw_data": "BEDROCK", @@ -462158,7 +462158,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "80.00", "lithology_to": "102.00", "lithology_raw_data": "and gravel", @@ -462187,7 +462187,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "101.00", "lithology_to": "140.00", "lithology_raw_data": "SILT, SOME CLAY, TRACE SAND AND GRAVEL", @@ -462216,7 +462216,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T15:29:53Z", "activity_submission": null, - "well_tag_number": 113008, + "well": 113008, "lithology_from": "36.00", "lithology_to": "40.00", "lithology_raw_data": "sand med course", @@ -462245,7 +462245,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T22:25:51Z", "activity_submission": null, - "well_tag_number": 113100, + "well": 113100, "lithology_from": "120.00", "lithology_to": "215.00", "lithology_raw_data": "CLAY ODD STONE", @@ -462274,7 +462274,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:09:47Z", "activity_submission": null, - "well_tag_number": 112462, + "well": 112462, "lithology_from": "87.00", "lithology_to": "100.00", "lithology_raw_data": null, @@ -462303,7 +462303,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:04:39Z", "activity_submission": null, - "well_tag_number": 112474, + "well": 112474, "lithology_from": "55.00", "lithology_to": "60.00", "lithology_raw_data": "SOFT/MEDIUM; SILT", @@ -462332,7 +462332,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T21:33:49Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "60.00", "lithology_to": "170.00", "lithology_raw_data": "Till grey dense plastic", @@ -462361,7 +462361,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T07:28:29Z", "activity_submission": null, - "well_tag_number": 112425, + "well": 112425, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "CLAY AND GRAVEL", @@ -462390,7 +462390,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -462419,7 +462419,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:12:52Z", "activity_submission": null, - "well_tag_number": 112380, + "well": 112380, "lithology_from": "600.00", "lithology_to": "700.00", "lithology_raw_data": "SOLID BLACK SLATE", @@ -462448,7 +462448,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T16:36:16Z", "activity_submission": null, - "well_tag_number": 112640, + "well": 112640, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "clay till", @@ -462477,7 +462477,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:01Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "271.00", "lithology_to": "273.00", "lithology_raw_data": "MEDIUM-HARD, DARK GREY SHALE", @@ -462506,7 +462506,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:51:59Z", "activity_submission": null, - "well_tag_number": 112228, + "well": 112228, "lithology_from": "63.00", "lithology_to": "127.00", "lithology_raw_data": "MEDIUM/HARD LIGHTER FORMATION", @@ -462535,7 +462535,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "0.00", "lithology_to": "31.00", "lithology_raw_data": "bedrock", @@ -462564,7 +462564,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:31:47Z", "activity_submission": null, - "well_tag_number": 112834, + "well": 112834, "lithology_from": "33.00", "lithology_to": "47.00", "lithology_raw_data": "cobbles, compact, wood pieces, moist", @@ -462593,7 +462593,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:00:20Z", "activity_submission": null, - "well_tag_number": 112969, + "well": 112969, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "SAND, GRAVEL, SMALL COBBLES", @@ -462622,7 +462622,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-03T22:01:20Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "98.00", "lithology_to": "117.00", "lithology_raw_data": "SHALE AND SANDSTONE", @@ -462651,7 +462651,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:37:38Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "180.00", "lithology_to": "200.00", "lithology_raw_data": null, @@ -462680,7 +462680,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T14:40:09Z", "activity_submission": null, - "well_tag_number": 112288, + "well": 112288, "lithology_from": "199.00", "lithology_to": "222.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -462709,7 +462709,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "133.00", "lithology_to": "155.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", @@ -462738,7 +462738,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T22:54:18Z", "activity_submission": null, - "well_tag_number": 112739, + "well": 112739, "lithology_from": "17.00", "lithology_to": "30.00", "lithology_raw_data": "SAND & GRAVEL", @@ -462767,7 +462767,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "160.00", "lithology_to": "195.00", "lithology_raw_data": "CLAY AND ROCK", @@ -462796,7 +462796,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:27:52Z", "activity_submission": null, - "well_tag_number": 112365, + "well": 112365, "lithology_from": "118.00", "lithology_to": "128.00", "lithology_raw_data": null, @@ -462825,7 +462825,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", @@ -462854,7 +462854,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T17:10:16Z", "activity_submission": null, - "well_tag_number": 113029, + "well": 113029, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "black medium hard rock", @@ -462883,7 +462883,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "40.00", "lithology_to": "42.00", "lithology_raw_data": "SILTY GRAVEL, SAND, CLAY", @@ -462912,7 +462912,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "260.00", "lithology_to": "280.00", "lithology_raw_data": "BEDROCK", @@ -462941,7 +462941,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "SAND, GRAVEL, BOULDERS", @@ -462970,7 +462970,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "3.00", "lithology_to": "43.00", "lithology_raw_data": "and clay", @@ -462999,7 +462999,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:17:39Z", "activity_submission": null, - "well_tag_number": 112682, + "well": 112682, "lithology_from": "63.00", "lithology_to": "75.00", "lithology_raw_data": "SAND SOME GRAVEL", @@ -463028,7 +463028,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:26:44Z", "activity_submission": null, - "well_tag_number": 112442, + "well": 112442, "lithology_from": "65.00", "lithology_to": "67.00", "lithology_raw_data": null, @@ -463057,7 +463057,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "145.00", "lithology_to": "167.00", "lithology_raw_data": "Gravel (till?), some sand, trace silt, grey-brown, damp", @@ -463086,7 +463086,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, - "well_tag_number": 113134, + "well": 113134, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -463115,7 +463115,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T22:41:31Z", "activity_submission": null, - "well_tag_number": 113260, + "well": 113260, "lithology_from": "0.00", "lithology_to": "9.00", "lithology_raw_data": null, @@ -463144,7 +463144,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:18:14Z", "activity_submission": null, - "well_tag_number": 113078, + "well": 113078, "lithology_from": "85.00", "lithology_to": "100.00", "lithology_raw_data": "clay and gravel", @@ -463173,7 +463173,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T00:42:29Z", "activity_submission": null, - "well_tag_number": 112674, + "well": 112674, "lithology_from": "5.00", "lithology_to": "31.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -463202,7 +463202,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:38:31Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "204.00", "lithology_to": "223.00", "lithology_raw_data": null, @@ -463231,7 +463231,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, - "well_tag_number": 112929, + "well": 112929, "lithology_from": "95.00", "lithology_to": "115.00", "lithology_raw_data": "TILL CLAY", @@ -463260,7 +463260,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY, SAND WITH GRAVEL BROWN & DARK GREY", @@ -463289,7 +463289,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:39:03Z", "activity_submission": null, - "well_tag_number": 112923, + "well": 112923, "lithology_from": "19.00", "lithology_to": "100.00", "lithology_raw_data": "CLAY, FINE SANDY TILL, SOFT/MEDIUM", @@ -463318,7 +463318,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "45.00", "lithology_to": "50.00", "lithology_raw_data": "CLAY-SHALE", @@ -463347,7 +463347,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "187.00", "lithology_to": "197.00", "lithology_raw_data": "MEDIUM-HARD; SHALE / SILTSTONE / FINE SANDSTONE", @@ -463376,7 +463376,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-06T02:36:08Z", "activity_submission": null, - "well_tag_number": 112280, + "well": 112280, "lithology_from": "10.00", "lithology_to": "29.00", "lithology_raw_data": "MEDIUM BROWN SAND WITH LARGE COBBLES", @@ -463405,7 +463405,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:54:06Z", "activity_submission": null, - "well_tag_number": 112552, + "well": 112552, "lithology_from": "62.00", "lithology_to": "80.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -463434,7 +463434,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T04:45:12Z", "activity_submission": null, - "well_tag_number": 112253, + "well": 112253, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": "SORTED, CLEAN, MEDIUM GRAVEL", @@ -463463,7 +463463,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:33:14Z", "activity_submission": null, - "well_tag_number": 112432, + "well": 112432, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "COARSE SAND", @@ -463492,7 +463492,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:47:26Z", "activity_submission": null, - "well_tag_number": 112871, + "well": 112871, "lithology_from": "300.00", "lithology_to": "564.00", "lithology_raw_data": "GREY & WHITE", @@ -463521,7 +463521,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "115.00", "lithology_to": "120.00", "lithology_raw_data": "COARSE LAVA ROCK/TILL", @@ -463550,7 +463550,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:05:26Z", "activity_submission": null, - "well_tag_number": 112964, + "well": 112964, "lithology_from": "115.00", "lithology_to": "119.00", "lithology_raw_data": null, @@ -463579,7 +463579,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "306.00", "lithology_to": "354.00", "lithology_raw_data": "MEDIUM-HARD, GREY-BROWN-GREY, SHALE/SILTSTONE/FINE SANDSTONE STRINGERS", @@ -463608,7 +463608,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:46:54Z", "activity_submission": null, - "well_tag_number": 113131, + "well": 113131, "lithology_from": "63.00", "lithology_to": "84.00", "lithology_raw_data": "TILL", @@ -463637,7 +463637,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:04:04Z", "activity_submission": null, - "well_tag_number": 112456, + "well": 112456, "lithology_from": "20.00", "lithology_to": "31.00", "lithology_raw_data": "CLAY, GRAVEL", @@ -463666,7 +463666,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "ORGANIC", @@ -463695,7 +463695,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:57:52Z", "activity_submission": null, - "well_tag_number": 112785, + "well": 112785, "lithology_from": "0.00", "lithology_to": "8.92", "lithology_raw_data": null, @@ -463724,7 +463724,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, - "well_tag_number": 112341, + "well": 112341, "lithology_from": "380.00", "lithology_to": "525.00", "lithology_raw_data": "MEDIUM/HARD, BLACK/GREEN, VOLCANIC - TRACES OF QUARTZ", @@ -463753,7 +463753,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T19:38:04Z", "activity_submission": null, - "well_tag_number": 112366, + "well": 112366, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "ORGANICS - SAND & SOILS/COBBLES/GRAVELS", @@ -463782,7 +463782,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T22:14:56Z", "activity_submission": null, - "well_tag_number": 112743, + "well": 112743, "lithology_from": "60.00", "lithology_to": "66.00", "lithology_raw_data": "W.B. SAND & GRAVEL", @@ -463811,7 +463811,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-10T22:29:18Z", "activity_submission": null, - "well_tag_number": 113112, + "well": 113112, "lithology_from": "300.00", "lithology_to": "335.00", "lithology_raw_data": "COARSE TILL GRAVEL 315 TO 335", @@ -463840,7 +463840,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T20:53:24Z", "activity_submission": null, - "well_tag_number": 112554, + "well": 112554, "lithology_from": "181.00", "lithology_to": "183.00", "lithology_raw_data": null, @@ -463869,7 +463869,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-08T19:28:13Z", "activity_submission": null, - "well_tag_number": 112294, + "well": 112294, "lithology_from": "40.00", "lithology_to": "103.00", "lithology_raw_data": "BASLALT MIX", @@ -463898,7 +463898,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T19:41:21Z", "activity_submission": null, - "well_tag_number": 112562, + "well": 112562, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "CLAY, SILTY SAND, GRAVEL", @@ -463927,7 +463927,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -463956,7 +463956,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:07:36Z", "activity_submission": null, - "well_tag_number": 112931, + "well": 112931, "lithology_from": "0.00", "lithology_to": "37.00", "lithology_raw_data": "BROWN/GRAY", @@ -463985,7 +463985,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:43:58Z", "activity_submission": null, - "well_tag_number": 113181, + "well": 113181, "lithology_from": "75.00", "lithology_to": "115.00", "lithology_raw_data": "sand, clay", @@ -464014,7 +464014,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T00:21:00Z", "activity_submission": null, - "well_tag_number": 112341, + "well": 112341, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "ORGANICS", @@ -464043,7 +464043,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, - "well_tag_number": 112294, + "well": 112294, "lithology_from": "14.00", "lithology_to": "16.00", "lithology_raw_data": "BEDROCK - BASALT", @@ -464072,7 +464072,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:33Z", "activity_submission": null, - "well_tag_number": 113305, + "well": 113305, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -464101,7 +464101,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T08:48:59Z", "activity_submission": null, - "well_tag_number": 112492, + "well": 112492, "lithology_from": "360.00", "lithology_to": "380.00", "lithology_raw_data": "SOFT/MEDIUM; MEDIUM TO COARSE SAND, MINOR GRAVEL, LAYERS OF SILT", @@ -464130,7 +464130,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T18:43:48Z", "activity_submission": null, - "well_tag_number": 113019, + "well": 113019, "lithology_from": "265.00", "lithology_to": "265.00", "lithology_raw_data": "FRACTURE", @@ -464159,7 +464159,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:39:40Z", "activity_submission": null, - "well_tag_number": 112962, + "well": 112962, "lithology_from": "68.00", "lithology_to": "70.00", "lithology_raw_data": "TIGHT GRAVEL & SAND", @@ -464188,7 +464188,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:54:22Z", "activity_submission": null, - "well_tag_number": 112370, + "well": 112370, "lithology_from": "31.00", "lithology_to": "280.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -464217,7 +464217,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "130.00", "lithology_to": "150.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -464246,7 +464246,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:37:24Z", "activity_submission": null, - "well_tag_number": 112397, + "well": 112397, "lithology_from": "0.00", "lithology_to": "150.50", "lithology_raw_data": null, @@ -464275,7 +464275,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "140.00", "lithology_to": "200.00", "lithology_raw_data": "ORGANIC MATERAL AND CLAY LAYER", @@ -464304,7 +464304,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T23:04:46Z", "activity_submission": null, - "well_tag_number": 112528, + "well": 112528, "lithology_from": "152.00", "lithology_to": "155.00", "lithology_raw_data": null, @@ -464333,7 +464333,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T19:48:34Z", "activity_submission": null, - "well_tag_number": 112221, + "well": 112221, "lithology_from": "205.00", "lithology_to": "212.00", "lithology_raw_data": "GREY/WHITE/GREEN VOLCANIC", @@ -464362,7 +464362,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "140.00", "lithology_to": "220.00", "lithology_raw_data": "COARSE SAND", @@ -464391,7 +464391,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:57:02Z", "activity_submission": null, - "well_tag_number": 112667, + "well": 112667, "lithology_from": "213.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", @@ -464420,7 +464420,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:19:41Z", "activity_submission": null, - "well_tag_number": 112246, + "well": 112246, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "CLAY", @@ -464449,7 +464449,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, - "well_tag_number": 112252, + "well": 112252, "lithology_from": "104.00", "lithology_to": "116.00", "lithology_raw_data": "SHALE", @@ -464478,7 +464478,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:11:32Z", "activity_submission": null, - "well_tag_number": 112853, + "well": 112853, "lithology_from": "133.00", "lithology_to": "137.00", "lithology_raw_data": "MEDIUM HARD SILSTONE AND VERY FINE SANDSTONE", @@ -464507,7 +464507,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "75.00", "lithology_to": "130.00", "lithology_raw_data": null, @@ -464536,7 +464536,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "180.00", "lithology_to": "240.00", "lithology_raw_data": "VOLCANIC", @@ -464565,7 +464565,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:12:36Z", "activity_submission": null, - "well_tag_number": 112333, + "well": 112333, "lithology_from": "34.00", "lithology_to": "55.00", "lithology_raw_data": "BROWN-GREY, SILT AND SAND", @@ -464594,7 +464594,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:13:48Z", "activity_submission": null, - "well_tag_number": 112430, + "well": 112430, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", @@ -464623,7 +464623,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T20:03:21Z", "activity_submission": null, - "well_tag_number": 112893, + "well": 112893, "lithology_from": "15.00", "lithology_to": "19.00", "lithology_raw_data": "CLAY & SILT", @@ -464652,7 +464652,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "MINOR GRAVEL, SAND", @@ -464681,7 +464681,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "12.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -464710,7 +464710,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:53:24Z", "activity_submission": null, - "well_tag_number": 112877, + "well": 112877, "lithology_from": "0.00", "lithology_to": "109.00", "lithology_raw_data": "CLAY & ROCKS", @@ -464739,7 +464739,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "135.00", "lithology_to": "136.00", "lithology_raw_data": "VOLCANIC", @@ -464768,7 +464768,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-06T02:46:40Z", "activity_submission": null, - "well_tag_number": 112281, + "well": 112281, "lithology_from": "18.00", "lithology_to": "26.00", "lithology_raw_data": "LARGE BOULDERS 1'+/FINE SAND", @@ -464797,7 +464797,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:54:10Z", "activity_submission": null, - "well_tag_number": 112559, + "well": 112559, "lithology_from": "6.00", "lithology_to": "23.00", "lithology_raw_data": null, @@ -464826,7 +464826,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:46:04Z", "activity_submission": null, - "well_tag_number": 112924, + "well": 112924, "lithology_from": "0.00", "lithology_to": "75.00", "lithology_raw_data": "COARSE GRAVEL AND SAND", @@ -464855,7 +464855,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "15.00", "lithology_to": "17.00", "lithology_raw_data": null, @@ -464884,7 +464884,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T17:12:35Z", "activity_submission": null, - "well_tag_number": 113242, + "well": 113242, "lithology_from": "186.00", "lithology_to": "192.00", "lithology_raw_data": null, @@ -464913,7 +464913,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T22:37:22Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "1.00", "lithology_to": "75.00", "lithology_raw_data": "VOLCANIC", @@ -464942,7 +464942,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "71.00", "lithology_to": "115.00", "lithology_raw_data": "BROWN SAND, FINE", @@ -464971,7 +464971,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:19:37Z", "activity_submission": null, - "well_tag_number": 112485, + "well": 112485, "lithology_from": "80.00", "lithology_to": "180.00", "lithology_raw_data": "MEDIUM/HARD; COARSE, SAND, GRAVEL, SAND LAYER", @@ -465000,7 +465000,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "12.00", "lithology_to": "42.00", "lithology_raw_data": "LIMESTONE", @@ -465029,7 +465029,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-02-09T21:42:43Z", "activity_submission": null, - "well_tag_number": 110750, + "well": 110750, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "CLAY & BOULDERS", @@ -465058,7 +465058,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, - "well_tag_number": 112591, + "well": 112591, "lithology_from": "20.00", "lithology_to": "60.00", "lithology_raw_data": "SILTY SAND", @@ -465087,7 +465087,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:18:11Z", "activity_submission": null, - "well_tag_number": 112783, + "well": 112783, "lithology_from": "5.00", "lithology_to": "63.10", "lithology_raw_data": null, @@ -465116,7 +465116,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "18.00", "lithology_to": "20.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -465145,7 +465145,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:00:37Z", "activity_submission": null, - "well_tag_number": 112234, + "well": 112234, "lithology_from": "28.00", "lithology_to": "35.00", "lithology_raw_data": "SEAM OF GRAVEL", @@ -465174,7 +465174,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T15:26:58Z", "activity_submission": null, - "well_tag_number": 113249, + "well": 113249, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "gravel, cobbles", @@ -465203,7 +465203,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-28T20:23:43Z", "activity_submission": null, - "well_tag_number": 113082, + "well": 113082, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "organics, sand, gravel", @@ -465232,7 +465232,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T06:11:58Z", "activity_submission": null, - "well_tag_number": 112385, + "well": 112385, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "BLUE/BROWN , ORGANICS TO SANDY SOILS W/ GRAVELS", @@ -465261,7 +465261,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "59.00", "lithology_to": "61.00", "lithology_raw_data": "MEDIUM TO FINE", @@ -465290,7 +465290,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:37:27Z", "activity_submission": null, - "well_tag_number": 112725, + "well": 112725, "lithology_from": "61.00", "lithology_to": "63.50", "lithology_raw_data": "SAND AND GRAVEL, VERY DIRTY", @@ -465319,7 +465319,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:13:15Z", "activity_submission": null, - "well_tag_number": 112318, + "well": 112318, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -465348,7 +465348,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T08:14:29Z", "activity_submission": null, - "well_tag_number": 112252, + "well": 112252, "lithology_from": "0.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", @@ -465377,7 +465377,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "150.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -465406,7 +465406,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": "TIGHT; CLAY AND GRAVEL TILL WITH BOULDERS AND COBBLES AND SOME SAND AND GRAVEL LAYERS", @@ -465435,7 +465435,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:14:26Z", "activity_submission": null, - "well_tag_number": 113213, + "well": 113213, "lithology_from": "276.00", "lithology_to": "280.00", "lithology_raw_data": null, @@ -465464,7 +465464,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-02T23:54:30Z", "activity_submission": null, - "well_tag_number": 105508, + "well": 105508, "lithology_from": "96.00", "lithology_to": "109.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -465493,7 +465493,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:04:16Z", "activity_submission": null, - "well_tag_number": 113030, + "well": 113030, "lithology_from": "72.00", "lithology_to": "81.00", "lithology_raw_data": "clay", @@ -465522,7 +465522,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "60.00", "lithology_to": "100.00", "lithology_raw_data": "SHALE", @@ -465551,7 +465551,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -465580,7 +465580,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T20:02:31Z", "activity_submission": null, - "well_tag_number": 112614, + "well": 112614, "lithology_from": "63.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT/MEDIUM; CLAY, GRAVEL, MINOR SAND", @@ -465609,7 +465609,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:24:10Z", "activity_submission": null, - "well_tag_number": 112268, + "well": 112268, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -465638,7 +465638,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, - "well_tag_number": 112764, + "well": 112764, "lithology_from": "0.00", "lithology_to": "6.50", "lithology_raw_data": "SILTY CLAY - TRACE SAND & GRAVEL", @@ -465667,7 +465667,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "301.00", "lithology_to": "313.00", "lithology_raw_data": "SHALE", @@ -465696,7 +465696,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T21:07:03Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "170.00", "lithology_to": "463.00", "lithology_raw_data": "BLACK FORMATION WITH SEAMS OF WHITE VOLCANIC GNEISS", @@ -465725,7 +465725,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "177.00", "lithology_to": "200.00", "lithology_raw_data": "SHALE/SILTSTONE", @@ -465754,7 +465754,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, - "well_tag_number": 112879, + "well": 112879, "lithology_from": "138.00", "lithology_to": "212.00", "lithology_raw_data": "SAND & GRAVEL", @@ -465783,7 +465783,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "TOPSOIL", @@ -465812,7 +465812,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "58.00", "lithology_to": "68.00", "lithology_raw_data": null, @@ -465841,7 +465841,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:21:07Z", "activity_submission": null, - "well_tag_number": 112411, + "well": 112411, "lithology_from": "58.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, SAND AND GRAVEL", @@ -465870,7 +465870,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "53.00", "lithology_to": "55.00", "lithology_raw_data": "and gravel", @@ -465899,7 +465899,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "109.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -465928,7 +465928,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, - "well_tag_number": 112463, + "well": 112463, "lithology_from": "11.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -465957,7 +465957,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "broken rock", @@ -465986,7 +465986,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:43:31Z", "activity_submission": null, - "well_tag_number": 112436, + "well": 112436, "lithology_from": "208.00", "lithology_to": "212.00", "lithology_raw_data": null, @@ -466015,7 +466015,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "698.00", "lithology_to": "1100.00", "lithology_raw_data": "ORANGE/BLUE", @@ -466044,7 +466044,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "12.00", "lithology_to": "15.00", "lithology_raw_data": "with gravel", @@ -466073,7 +466073,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL, SAND, GRAVEL", @@ -466102,7 +466102,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "100.00", "lithology_to": "148.00", "lithology_raw_data": "GRAVEL", @@ -466131,7 +466131,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-07T22:29:20Z", "activity_submission": null, - "well_tag_number": 112285, + "well": 112285, "lithology_from": "32.00", "lithology_to": "45.00", "lithology_raw_data": "BASALT", @@ -466160,7 +466160,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T22:50:55Z", "activity_submission": null, - "well_tag_number": 113200, + "well": 113200, "lithology_from": "230.00", "lithology_to": "300.00", "lithology_raw_data": "Sandstone and Shale", @@ -466189,7 +466189,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, - "well_tag_number": 112273, + "well": 112273, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "and clays", @@ -466218,7 +466218,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, - "well_tag_number": 112261, + "well": 112261, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "LARGE BOULDERS/FINE SAND", @@ -466247,7 +466247,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:39:35Z", "activity_submission": null, - "well_tag_number": 112443, + "well": 112443, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "sand and organics", @@ -466276,7 +466276,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T20:27:33Z", "activity_submission": null, - "well_tag_number": 112646, + "well": 112646, "lithology_from": "48.00", "lithology_to": "69.00", "lithology_raw_data": "till", @@ -466305,7 +466305,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:55:00Z", "activity_submission": null, - "well_tag_number": 112371, + "well": 112371, "lithology_from": "0.00", "lithology_to": "48.00", "lithology_raw_data": "top soil black/ sand with silt and clay ", @@ -466334,7 +466334,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -466363,7 +466363,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:40:53Z", "activity_submission": null, - "well_tag_number": 112574, + "well": 112574, "lithology_from": "90.00", "lithology_to": "97.00", "lithology_raw_data": "VOLCANIC", @@ -466392,7 +466392,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:46:20Z", "activity_submission": null, - "well_tag_number": 112888, + "well": 112888, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "CLAY & ROOTS", @@ -466421,7 +466421,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "128.00", "lithology_to": "140.00", "lithology_raw_data": "Fine silty sand", @@ -466450,7 +466450,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:46:10Z", "activity_submission": null, - "well_tag_number": 113140, + "well": 113140, "lithology_from": "11.00", "lithology_to": "22.00", "lithology_raw_data": "till, cobbley", @@ -466479,7 +466479,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:30:36Z", "activity_submission": null, - "well_tag_number": 112755, + "well": 112755, "lithology_from": "18.00", "lithology_to": "45.00", "lithology_raw_data": "GREY CLAY", @@ -466508,7 +466508,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T21:43:05Z", "activity_submission": null, - "well_tag_number": 113246, + "well": 113246, "lithology_from": "60.00", "lithology_to": "69.00", "lithology_raw_data": "cleaner", @@ -466537,7 +466537,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, - "well_tag_number": 112260, + "well": 112260, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "PAVEMENT", @@ -466566,7 +466566,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "90.00", "lithology_to": "97.00", "lithology_raw_data": "MEDIUM/HARD, SAND GRAVEL, MINOR CLAY", @@ -466595,7 +466595,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T17:33:18Z", "activity_submission": null, - "well_tag_number": 113017, + "well": 113017, "lithology_from": "125.00", "lithology_to": "240.00", "lithology_raw_data": "shale lenses", @@ -466624,7 +466624,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T15:57:20Z", "activity_submission": null, - "well_tag_number": 112752, + "well": 112752, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", @@ -466653,7 +466653,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-09-18T16:49:18Z", "activity_submission": null, - "well_tag_number": 112935, + "well": 112935, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "TOP SOIL AND GRAVEL", @@ -466682,7 +466682,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:46:06Z", "activity_submission": null, - "well_tag_number": 112599, + "well": 112599, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL", @@ -466711,7 +466711,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "112.00", "lithology_to": "127.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -466740,7 +466740,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:29:08Z", "activity_submission": null, - "well_tag_number": 112482, + "well": 112482, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "MEDIUM/SOFT; SILT", @@ -466769,7 +466769,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "62.00", "lithology_to": "76.00", "lithology_raw_data": "gravel and cobbles", @@ -466798,7 +466798,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T22:05:45Z", "activity_submission": null, - "well_tag_number": 112540, + "well": 112540, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -466827,7 +466827,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MEDIUM", @@ -466856,7 +466856,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "19.00", "lithology_to": "27.00", "lithology_raw_data": null, @@ -466885,7 +466885,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:24:42Z", "activity_submission": null, - "well_tag_number": 112464, + "well": 112464, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BASALT BEDROCK", @@ -466914,7 +466914,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:28:23Z", "activity_submission": null, - "well_tag_number": 112602, + "well": 112602, "lithology_from": "124.00", "lithology_to": "140.00", "lithology_raw_data": "CLAY", @@ -466943,7 +466943,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, - "well_tag_number": 112517, + "well": 112517, "lithology_from": "12.00", "lithology_to": "98.00", "lithology_raw_data": "till", @@ -466972,7 +466972,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:23:14Z", "activity_submission": null, - "well_tag_number": 113133, + "well": 113133, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -467001,7 +467001,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": "gravel and fine sand", @@ -467030,7 +467030,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "73.00", "lithology_to": "117.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -467059,7 +467059,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, - "well_tag_number": 113306, + "well": 113306, "lithology_from": "5.00", "lithology_to": "240.00", "lithology_raw_data": null, @@ -467088,7 +467088,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:38:08Z", "activity_submission": null, - "well_tag_number": 113139, + "well": 113139, "lithology_from": "78.00", "lithology_to": "93.00", "lithology_raw_data": "BROWN TILL", @@ -467117,7 +467117,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, - "well_tag_number": 112308, + "well": 112308, "lithology_from": "72.00", "lithology_to": "79.00", "lithology_raw_data": "DARK GREY QUARTZ MIX", @@ -467146,7 +467146,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, - "well_tag_number": 112509, + "well": 112509, "lithology_from": "14.00", "lithology_to": "17.00", "lithology_raw_data": "BROWN SILTY SANDS", @@ -467175,7 +467175,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:18:26Z", "activity_submission": null, - "well_tag_number": 112621, + "well": 112621, "lithology_from": "38.00", "lithology_to": "73.00", "lithology_raw_data": "SILT AND CLAY", @@ -467204,7 +467204,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T20:11:23Z", "activity_submission": null, - "well_tag_number": 112311, + "well": 112311, "lithology_from": "7.00", "lithology_to": "13.00", "lithology_raw_data": "SANDY GRAVEL WITH ANGALAR ROCK", @@ -467233,7 +467233,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:13:00Z", "activity_submission": null, - "well_tag_number": 112515, + "well": 112515, "lithology_from": "2.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -467262,7 +467262,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "235.00", "lithology_to": "236.00", "lithology_raw_data": "SS FINE DK GRY", @@ -467291,7 +467291,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-04T20:41:53Z", "activity_submission": null, - "well_tag_number": 112363, + "well": 112363, "lithology_from": "145.00", "lithology_to": "305.00", "lithology_raw_data": null, @@ -467320,7 +467320,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "80.00", "lithology_to": "96.00", "lithology_raw_data": "gravel and cobbles", @@ -467349,7 +467349,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "165.00", "lithology_to": "175.00", "lithology_raw_data": "CLAY - SOME GRAVEL", @@ -467378,7 +467378,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, - "well_tag_number": 113026, + "well": 113026, "lithology_from": "380.00", "lithology_to": "460.00", "lithology_raw_data": "SANDSTONE GREY WITH SHALE LAYERS AND SHALE FRACTURES", @@ -467407,7 +467407,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:38:56Z", "activity_submission": null, - "well_tag_number": 113127, + "well": 113127, "lithology_from": "195.00", "lithology_to": "273.00", "lithology_raw_data": "GREY CLAY", @@ -467436,7 +467436,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:52:48Z", "activity_submission": null, - "well_tag_number": 113306, + "well": 113306, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -467465,7 +467465,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "27.00", "lithology_to": "134.00", "lithology_raw_data": null, @@ -467494,7 +467494,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "42.00", "lithology_to": "48.00", "lithology_raw_data": null, @@ -467523,7 +467523,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, - "well_tag_number": 112990, + "well": 112990, "lithology_from": "80.00", "lithology_to": "95.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -467552,7 +467552,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T03:33:43Z", "activity_submission": null, - "well_tag_number": 112775, + "well": 112775, "lithology_from": "0.00", "lithology_to": "26.00", "lithology_raw_data": null, @@ -467581,7 +467581,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:10:27Z", "activity_submission": null, - "well_tag_number": 112374, + "well": 112374, "lithology_from": "73.00", "lithology_to": "85.00", "lithology_raw_data": "and gravel", @@ -467610,7 +467610,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T18:15:32Z", "activity_submission": null, - "well_tag_number": 113305, + "well": 113305, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -467639,7 +467639,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "silt and organics", @@ -467668,7 +467668,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "204.00", "lithology_to": "233.00", "lithology_raw_data": null, @@ -467697,7 +467697,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "112.00", "lithology_to": "115.00", "lithology_raw_data": "FINE SAND, SILT", @@ -467726,7 +467726,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T01:34:46Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "16.00", "lithology_to": "46.00", "lithology_raw_data": "SILTY CLAY", @@ -467755,7 +467755,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:50:47Z", "activity_submission": null, - "well_tag_number": 112746, + "well": 112746, "lithology_from": "30.00", "lithology_to": "39.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -467784,7 +467784,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T21:39:24Z", "activity_submission": null, - "well_tag_number": 112840, + "well": 112840, "lithology_from": "11.00", "lithology_to": "19.00", "lithology_raw_data": null, @@ -467813,7 +467813,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:19:55Z", "activity_submission": null, - "well_tag_number": 112413, + "well": 112413, "lithology_from": "27.00", "lithology_to": "31.00", "lithology_raw_data": "GRAVEL, TRACE OF SILT", @@ -467842,7 +467842,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": "3.00", "lithology_to": "98.00", "lithology_raw_data": "rock, very hard", @@ -467871,7 +467871,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, - "well_tag_number": 112959, + "well": 112959, "lithology_from": "72.00", "lithology_to": "88.00", "lithology_raw_data": "SAND & GRAVEL", @@ -467900,7 +467900,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:27:44Z", "activity_submission": null, - "well_tag_number": 112864, + "well": 112864, "lithology_from": "0.00", "lithology_to": "53.00", "lithology_raw_data": "cobbles, silty, moist", @@ -467929,7 +467929,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-26T19:39:27Z", "activity_submission": null, - "well_tag_number": 113202, + "well": 113202, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "gravel, cobbles", @@ -467958,7 +467958,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:05:15Z", "activity_submission": null, - "well_tag_number": 112245, + "well": 112245, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "SILT", @@ -467987,7 +467987,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-12T22:12:57Z", "activity_submission": null, - "well_tag_number": 113247, + "well": 113247, "lithology_from": "25.00", "lithology_to": "36.00", "lithology_raw_data": "cleaner", @@ -468016,7 +468016,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "692.00", "lithology_to": "697.00", "lithology_raw_data": null, @@ -468045,7 +468045,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T17:46:27Z", "activity_submission": null, - "well_tag_number": 112867, + "well": 112867, "lithology_from": "17.00", "lithology_to": "23.50", "lithology_raw_data": null, @@ -468074,7 +468074,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, - "well_tag_number": 112882, + "well": 112882, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -468103,7 +468103,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-28T16:17:03Z", "activity_submission": null, - "well_tag_number": 112819, + "well": 112819, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -468132,7 +468132,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "276.00", "lithology_to": "341.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", @@ -468161,7 +468161,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "287.00", "lithology_to": "300.00", "lithology_raw_data": "SALT & PEPPER BROWNISH", @@ -468190,7 +468190,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "100.00", "lithology_to": "125.00", "lithology_raw_data": "BLACK & WHITE GRANITE", @@ -468219,7 +468219,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T23:58:02Z", "activity_submission": null, - "well_tag_number": 112340, + "well": 112340, "lithology_from": "585.00", "lithology_to": "625.00", "lithology_raw_data": "VOLCANIC", @@ -468248,7 +468248,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, - "well_tag_number": 112685, + "well": 112685, "lithology_from": "30.00", "lithology_to": "53.00", "lithology_raw_data": "GRAVEL WITH CLAY", @@ -468277,7 +468277,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:47Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "123.00", "lithology_to": "154.00", "lithology_raw_data": null, @@ -468306,7 +468306,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-18T21:01:44Z", "activity_submission": null, - "well_tag_number": 112627, + "well": 112627, "lithology_from": "160.00", "lithology_to": "336.00", "lithology_raw_data": "Gravel & boulders", @@ -468335,7 +468335,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "10.50", "lithology_to": "42.00", "lithology_raw_data": "bedrock, some shale", @@ -468364,7 +468364,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, - "well_tag_number": 112773, + "well": 112773, "lithology_from": "2.00", "lithology_to": "4.00", "lithology_raw_data": null, @@ -468393,7 +468393,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2013-09-11T00:10:00Z", "activity_submission": null, - "well_tag_number": 108027, + "well": 108027, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "silt, sand and rock", @@ -468422,7 +468422,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "CLAY, MINOR SAND AND ROCKS", @@ -468451,7 +468451,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -468480,7 +468480,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "160.00", "lithology_to": "165.00", "lithology_raw_data": "SILT, SAND FINE-MEDIUM", @@ -468509,7 +468509,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T01:22:23Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "276.00", "lithology_to": "303.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -468538,7 +468538,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:07:58Z", "activity_submission": null, - "well_tag_number": 100501, + "well": 100501, "lithology_from": "136.00", "lithology_to": "154.00", "lithology_raw_data": "VOLCANIC", @@ -468567,7 +468567,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "3.00", "lithology_to": "10.00", "lithology_raw_data": "cobbles", @@ -468596,7 +468596,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "333.00", "lithology_to": "338.00", "lithology_raw_data": "LIGHT GREY OTHER SURFICIAL/BEDROCK", @@ -468625,7 +468625,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "10.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -468654,7 +468654,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T18:18:17Z", "activity_submission": null, - "well_tag_number": 112290, + "well": 112290, "lithology_from": "0.00", "lithology_to": "55.00", "lithology_raw_data": "TILL", @@ -468683,7 +468683,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T21:31:07Z", "activity_submission": null, - "well_tag_number": 113065, + "well": 113065, "lithology_from": "2.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN CLAY", @@ -468712,7 +468712,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:06:10Z", "activity_submission": null, - "well_tag_number": 112229, + "well": 112229, "lithology_from": "38.00", "lithology_to": "80.00", "lithology_raw_data": "DENSE HARDPAN. SEVERAL LARGE GLACIAL BOULDERS", @@ -468741,7 +468741,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T06:01:35Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "745.00", "lithology_to": "752.00", "lithology_raw_data": "GRANITE", @@ -468770,7 +468770,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "126.00", "lithology_to": "133.00", "lithology_raw_data": null, @@ -468799,7 +468799,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:51:10Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "418.00", "lithology_to": "460.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -468828,7 +468828,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "28.00", "lithology_to": "34.00", "lithology_raw_data": "and gravel with clay chunks", @@ -468857,7 +468857,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-17T23:54:40Z", "activity_submission": null, - "well_tag_number": 112802, + "well": 112802, "lithology_from": "81.50", "lithology_to": "82.00", "lithology_raw_data": "DENSE DARK GRAY MARINE CLAY WITH CLAM SHELL AND VERY FINE SAND WITH TRACE OF GRAVEL", @@ -468886,7 +468886,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:32:10Z", "activity_submission": null, - "well_tag_number": 112360, + "well": 112360, "lithology_from": "99.00", "lithology_to": "290.00", "lithology_raw_data": null, @@ -468915,7 +468915,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "45.00", "lithology_to": "100.00", "lithology_raw_data": "BROWN/GREY/BLACK VOLCANIC", @@ -468944,7 +468944,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:27:19Z", "activity_submission": null, - "well_tag_number": 112633, + "well": 112633, "lithology_from": "15.00", "lithology_to": "56.00", "lithology_raw_data": null, @@ -468973,7 +468973,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": "SANDSTONE", @@ -469002,7 +469002,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "38.00", "lithology_to": "41.00", "lithology_raw_data": null, @@ -469031,7 +469031,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "560.00", "lithology_to": "710.00", "lithology_raw_data": "BROKEN GREEN SHALE", @@ -469060,7 +469060,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:36:40Z", "activity_submission": null, - "well_tag_number": 112973, + "well": 112973, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -469089,7 +469089,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T17:04:35Z", "activity_submission": null, - "well_tag_number": 112310, + "well": 112310, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -469118,7 +469118,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "96.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -469147,7 +469147,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:56:53Z", "activity_submission": null, - "well_tag_number": 112407, + "well": 112407, "lithology_from": "0.00", "lithology_to": "156.00", "lithology_raw_data": "SAND AND GRAVEL WITH COBBLE", @@ -469176,7 +469176,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:36Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": "BOULDER", @@ -469205,7 +469205,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, - "well_tag_number": 112258, + "well": 112258, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", @@ -469234,7 +469234,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "98.00", "lithology_to": "101.00", "lithology_raw_data": "SHALE", @@ -469263,7 +469263,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T19:06:21Z", "activity_submission": null, - "well_tag_number": 100500, + "well": 100500, "lithology_from": "22.00", "lithology_to": "78.00", "lithology_raw_data": null, @@ -469292,7 +469292,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T22:51:31Z", "activity_submission": null, - "well_tag_number": 112517, + "well": 112517, "lithology_from": "0.00", "lithology_to": "12.00", "lithology_raw_data": "sand", @@ -469321,7 +469321,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:41:40Z", "activity_submission": null, - "well_tag_number": 112403, + "well": 112403, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -469350,7 +469350,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "315.00", "lithology_to": "320.00", "lithology_raw_data": "SHALE", @@ -469379,7 +469379,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, - "well_tag_number": 113304, + "well": 113304, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -469408,7 +469408,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-25T21:43:48Z", "activity_submission": null, - "well_tag_number": 100542, + "well": 100542, "lithology_from": "112.00", "lithology_to": "126.00", "lithology_raw_data": null, @@ -469437,7 +469437,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T18:37:45Z", "activity_submission": null, - "well_tag_number": 112428, + "well": 112428, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND CLAY AND MINOR GRAVEL", @@ -469466,7 +469466,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "65.00", "lithology_to": "81.00", "lithology_raw_data": null, @@ -469495,7 +469495,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:07:10Z", "activity_submission": null, - "well_tag_number": 112256, + "well": 112256, "lithology_from": "48.00", "lithology_to": "68.00", "lithology_raw_data": "LARGE 6\" MINUS COBBLES, MEDIUM GREY SAND", @@ -469524,7 +469524,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T18:20:08Z", "activity_submission": null, - "well_tag_number": 112665, + "well": 112665, "lithology_from": "277.00", "lithology_to": "342.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -469553,7 +469553,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "26.00", "lithology_to": "31.00", "lithology_raw_data": "SAND, FINE GRAVEL, SILT, WOOD", @@ -469582,7 +469582,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T01:19:22Z", "activity_submission": null, - "well_tag_number": 112771, + "well": 112771, "lithology_from": "12.00", "lithology_to": "72.00", "lithology_raw_data": "GRAVEL", @@ -469611,7 +469611,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:52:25Z", "activity_submission": null, - "well_tag_number": 112941, + "well": 112941, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "BROWN SOIL, COBBLES", @@ -469640,7 +469640,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "gravel and cobbles", @@ -469669,7 +469669,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "317.00", "lithology_to": "458.00", "lithology_raw_data": "BLACK SHALE", @@ -469698,7 +469698,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:44:09Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "163.00", "lithology_to": "171.00", "lithology_raw_data": "GLACIAL TILL SAND/GRAVEL", @@ -469727,7 +469727,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T20:47:20Z", "activity_submission": null, - "well_tag_number": 113106, + "well": 113106, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -469756,7 +469756,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:57:57Z", "activity_submission": null, - "well_tag_number": 112354, + "well": 112354, "lithology_from": "230.00", "lithology_to": "290.00", "lithology_raw_data": null, @@ -469785,7 +469785,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "42.00", "lithology_to": "46.00", "lithology_raw_data": null, @@ -469814,7 +469814,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T01:26:58Z", "activity_submission": null, - "well_tag_number": 112344, + "well": 112344, "lithology_from": "135.00", "lithology_to": "141.00", "lithology_raw_data": "GLACIAL TYPE TILL - WATER MIXED WITH CLAY", @@ -469843,7 +469843,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:15:03Z", "activity_submission": null, - "well_tag_number": 113289, + "well": 113289, "lithology_from": "5.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -469872,7 +469872,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "278.00", "lithology_to": "282.00", "lithology_raw_data": "GRAVEL, SAND, CLAY", @@ -469901,7 +469901,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "503.00", "lithology_to": "603.00", "lithology_raw_data": "SANDSTONE & SILTSTONE", @@ -469930,7 +469930,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T07:19:30Z", "activity_submission": null, - "well_tag_number": 112729, + "well": 112729, "lithology_from": "342.00", "lithology_to": "400.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -469959,7 +469959,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "4.00", "lithology_to": "23.00", "lithology_raw_data": "BROWN CLAY", @@ -469988,7 +469988,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:08:25Z", "activity_submission": null, - "well_tag_number": 112225, + "well": 112225, "lithology_from": "395.00", "lithology_to": "525.00", "lithology_raw_data": "GREY/GREEN VOLCANIC WITH FEW GREEN TRACES", @@ -470017,7 +470017,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:10:57Z", "activity_submission": null, - "well_tag_number": 112448, + "well": 112448, "lithology_from": "96.00", "lithology_to": "106.00", "lithology_raw_data": null, @@ -470046,7 +470046,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-09T18:48:36Z", "activity_submission": null, - "well_tag_number": 112841, + "well": 112841, "lithology_from": "168.00", "lithology_to": "171.00", "lithology_raw_data": "layers", @@ -470075,7 +470075,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "36.00", "lithology_to": "47.00", "lithology_raw_data": null, @@ -470104,7 +470104,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "123.00", "lithology_to": "353.00", "lithology_raw_data": "with quartz seams", @@ -470133,7 +470133,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T22:31:10Z", "activity_submission": null, - "well_tag_number": 112939, + "well": 112939, "lithology_from": "115.00", "lithology_to": "135.00", "lithology_raw_data": "MIX WOOD SHALE WHITE", @@ -470162,7 +470162,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, - "well_tag_number": 112479, + "well": 112479, "lithology_from": "50.00", "lithology_to": "52.00", "lithology_raw_data": "MEDIUM/HARD; BEDROCK", @@ -470191,7 +470191,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:58:05Z", "activity_submission": null, - "well_tag_number": 112337, + "well": 112337, "lithology_from": "182.00", "lithology_to": "187.00", "lithology_raw_data": "MEDIUM-HARD, SHALEY-CLAY", @@ -470220,7 +470220,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "69.00", "lithology_to": "71.00", "lithology_raw_data": null, @@ -470249,7 +470249,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "90.00", "lithology_to": "105.00", "lithology_raw_data": null, @@ -470278,7 +470278,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:09:13Z", "activity_submission": null, - "well_tag_number": 112222, + "well": 112222, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "GREY, BROWN WEATHERED VOLCANIC WITH ORGANIC", @@ -470307,7 +470307,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "48.00", "lithology_to": "63.00", "lithology_raw_data": "and gravel", @@ -470336,7 +470336,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:26:44Z", "activity_submission": null, - "well_tag_number": 112693, + "well": 112693, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "TILL", @@ -470365,7 +470365,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, - "well_tag_number": 112483, + "well": 112483, "lithology_from": "70.00", "lithology_to": "80.00", "lithology_raw_data": "SHARP ROCK, ANGULAR WATER", @@ -470394,7 +470394,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:39:23Z", "activity_submission": null, - "well_tag_number": 113263, + "well": 113263, "lithology_from": "55.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -470423,7 +470423,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:56:30Z", "activity_submission": null, - "well_tag_number": 112737, + "well": 112737, "lithology_from": "157.00", "lithology_to": "184.00", "lithology_raw_data": "SILTSTONE AND FINE SANDSTONE", @@ -470452,7 +470452,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, - "well_tag_number": 112272, + "well": 112272, "lithology_from": "83.00", "lithology_to": "86.00", "lithology_raw_data": null, @@ -470481,7 +470481,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "83.00", "lithology_to": "90.00", "lithology_raw_data": null, @@ -470510,7 +470510,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, - "well_tag_number": 113116, + "well": 113116, "lithology_from": "12.00", "lithology_to": "60.00", "lithology_raw_data": "cobbles", @@ -470539,7 +470539,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T19:03:35Z", "activity_submission": null, - "well_tag_number": 113020, + "well": 113020, "lithology_from": "209.00", "lithology_to": "237.00", "lithology_raw_data": "GREY-TAN-PINK BROKEN BEDROCK - WHITE PASTE", @@ -470568,7 +470568,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, - "well_tag_number": 112250, + "well": 112250, "lithology_from": "137.00", "lithology_to": "140.00", "lithology_raw_data": "SANDSTONE", @@ -470597,7 +470597,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": "sticky", @@ -470626,7 +470626,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T22:51:15Z", "activity_submission": null, - "well_tag_number": 112699, + "well": 112699, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "TILL", @@ -470655,7 +470655,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-16T21:03:43Z", "activity_submission": null, - "well_tag_number": 112619, + "well": 112619, "lithology_from": "0.00", "lithology_to": "145.00", "lithology_raw_data": "shale & gravel", @@ -470684,7 +470684,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:01:00Z", "activity_submission": null, - "well_tag_number": 112582, + "well": 112582, "lithology_from": "170.00", "lithology_to": "180.00", "lithology_raw_data": "FINE SANDSTONE", @@ -470713,7 +470713,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:33:22Z", "activity_submission": null, - "well_tag_number": 112368, + "well": 112368, "lithology_from": "108.00", "lithology_to": "126.00", "lithology_raw_data": null, @@ -470742,7 +470742,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:39:09Z", "activity_submission": null, - "well_tag_number": 112865, + "well": 112865, "lithology_from": "103.00", "lithology_to": "128.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -470771,7 +470771,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T17:41:39Z", "activity_submission": null, - "well_tag_number": 113096, + "well": 113096, "lithology_from": "12.00", "lithology_to": "38.00", "lithology_raw_data": "sand", @@ -470800,7 +470800,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T20:34:59Z", "activity_submission": null, - "well_tag_number": 112852, + "well": 112852, "lithology_from": "537.00", "lithology_to": "543.00", "lithology_raw_data": "SILTSTONE & FINE SANDSTONE", @@ -470829,7 +470829,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, - "well_tag_number": 112696, + "well": 112696, "lithology_from": "10.00", "lithology_to": "36.00", "lithology_raw_data": "cobbles", @@ -470858,7 +470858,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T18:25:16Z", "activity_submission": null, - "well_tag_number": 112718, + "well": 112718, "lithology_from": "3.00", "lithology_to": "7.00", "lithology_raw_data": "FINE AND MEDIUM SAND", @@ -470887,7 +470887,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T18:23:22Z", "activity_submission": null, - "well_tag_number": 112972, + "well": 112972, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, SAND, GRAVEL, COBBLES", @@ -470916,7 +470916,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "6.00", "lithology_to": "110.00", "lithology_raw_data": "VOLCANIC", @@ -470945,7 +470945,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:51:58Z", "activity_submission": null, - "well_tag_number": 112612, + "well": 112612, "lithology_from": "0.00", "lithology_to": "41.00", "lithology_raw_data": null, @@ -470974,7 +470974,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "155.00", "lithology_to": "156.00", "lithology_raw_data": "Silt", @@ -471003,7 +471003,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T19:13:03Z", "activity_submission": null, - "well_tag_number": 112836, + "well": 112836, "lithology_from": "93.00", "lithology_to": "94.00", "lithology_raw_data": "gravel", @@ -471032,7 +471032,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:14Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "15.00", "lithology_to": "29.00", "lithology_raw_data": "SILT WITH TRACE OF GRAVEL", @@ -471061,7 +471061,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "177.00", "lithology_to": "237.00", "lithology_raw_data": "SHALE & SILTSTONE, MEDIUM TO HARD", @@ -471090,7 +471090,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, - "well_tag_number": 112402, + "well": 112402, "lithology_from": "65.00", "lithology_to": "77.00", "lithology_raw_data": "FINE TO MEDIUM SAND", @@ -471119,7 +471119,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T06:56:15Z", "activity_submission": null, - "well_tag_number": 112764, + "well": 112764, "lithology_from": "6.50", "lithology_to": "8.00", "lithology_raw_data": "SILTY CLAY - TRACE SAND, AND GRAVEL. INCREASE IN SILT AND SAND CONTENT", @@ -471148,7 +471148,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, - "well_tag_number": 112826, + "well": 112826, "lithology_from": "39.00", "lithology_to": "156.00", "lithology_raw_data": "COARSE GRAVEL & SAND", @@ -471177,7 +471177,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "100.00", "lithology_to": "140.00", "lithology_raw_data": "BROKEN SHALE", @@ -471206,7 +471206,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "7.00", "lithology_to": "12.00", "lithology_raw_data": "SAND", @@ -471235,7 +471235,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T17:15:11Z", "activity_submission": null, - "well_tag_number": 112795, + "well": 112795, "lithology_from": "0.00", "lithology_to": "73.00", "lithology_raw_data": "GREY CLAY", @@ -471264,7 +471264,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL", @@ -471293,7 +471293,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T17:33:17Z", "activity_submission": null, - "well_tag_number": 113199, + "well": 113199, "lithology_from": "15.00", "lithology_to": "80.00", "lithology_raw_data": "Till, clay, cobbles", @@ -471322,7 +471322,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "68.00", "lithology_to": "75.00", "lithology_raw_data": "SHALE", @@ -471351,7 +471351,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T20:51:44Z", "activity_submission": null, - "well_tag_number": 112929, + "well": 112929, "lithology_from": "75.00", "lithology_to": "95.00", "lithology_raw_data": "GRAVEL TILL GREY/BLACK", @@ -471380,7 +471380,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T17:47:56Z", "activity_submission": null, - "well_tag_number": 113290, + "well": 113290, "lithology_from": "440.00", "lithology_to": "460.00", "lithology_raw_data": null, @@ -471409,7 +471409,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY", @@ -471438,7 +471438,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -471467,7 +471467,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "114.00", "lithology_to": "118.00", "lithology_raw_data": null, @@ -471496,7 +471496,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, - "well_tag_number": 112504, + "well": 112504, "lithology_from": "78.00", "lithology_to": "80.00", "lithology_raw_data": "BLUE GRAVEL WITH CLAY", @@ -471525,7 +471525,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:12:17Z", "activity_submission": null, - "well_tag_number": 112921, + "well": 112921, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BLASTED FILL ROCK", @@ -471554,7 +471554,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-03T17:51:06Z", "activity_submission": null, - "well_tag_number": 112742, + "well": 112742, "lithology_from": "58.00", "lithology_to": "90.00", "lithology_raw_data": "SILTY CLAY WITH SOME VOLCANIC ASH LAYERS", @@ -471583,7 +471583,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:34:01Z", "activity_submission": null, - "well_tag_number": 112959, + "well": 112959, "lithology_from": "14.00", "lithology_to": "40.00", "lithology_raw_data": "CLAY, SAND, GRAVEL", @@ -471612,7 +471612,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "136.00", "lithology_to": "140.00", "lithology_raw_data": "SAND, GRAVELS AND SILT", @@ -471641,7 +471641,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T07:00:47Z", "activity_submission": null, - "well_tag_number": 112782, + "well": 112782, "lithology_from": "173.00", "lithology_to": "195.00", "lithology_raw_data": "CLAY WITH FRACTURED MUDSTONE", @@ -471670,7 +471670,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:41:21Z", "activity_submission": null, - "well_tag_number": 113303, + "well": 113303, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -471699,7 +471699,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "393.00", "lithology_to": "444.00", "lithology_raw_data": "light grey", @@ -471728,7 +471728,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-28T16:02:38Z", "activity_submission": null, - "well_tag_number": 112522, + "well": 112522, "lithology_from": "68.00", "lithology_to": "71.00", "lithology_raw_data": null, @@ -471757,7 +471757,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:01:07Z", "activity_submission": null, - "well_tag_number": 113117, + "well": 113117, "lithology_from": "661.00", "lithology_to": "700.00", "lithology_raw_data": "cobbles, boulders", @@ -471786,7 +471786,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:30:23Z", "activity_submission": null, - "well_tag_number": 112325, + "well": 112325, "lithology_from": "170.00", "lithology_to": "280.00", "lithology_raw_data": "SILTY CLAY/SOME TILL", @@ -471815,7 +471815,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T19:25:30Z", "activity_submission": null, - "well_tag_number": 112581, + "well": 112581, "lithology_from": "7.00", "lithology_to": "125.00", "lithology_raw_data": "VOLCANIC WITH FEW WHITE TRACES", @@ -471844,7 +471844,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "82.00", "lithology_to": "90.00", "lithology_raw_data": "ANGULAR ROCKS, FINE SAND", @@ -471873,7 +471873,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:49:34Z", "activity_submission": null, - "well_tag_number": 112240, + "well": 112240, "lithology_from": "130.00", "lithology_to": "131.00", "lithology_raw_data": "CONGLOMERATE", @@ -471902,7 +471902,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "104.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -471931,7 +471931,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:34:39Z", "activity_submission": null, - "well_tag_number": 112433, + "well": 112433, "lithology_from": "32.00", "lithology_to": "36.00", "lithology_raw_data": "till", @@ -471960,7 +471960,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T17:49:47Z", "activity_submission": null, - "well_tag_number": 113269, + "well": 113269, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": null, @@ -471989,7 +471989,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "340.00", "lithology_to": "360.00", "lithology_raw_data": "BEDROCK", @@ -472018,7 +472018,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:51:57Z", "activity_submission": null, - "well_tag_number": 112915, + "well": 112915, "lithology_from": "49.00", "lithology_to": "66.00", "lithology_raw_data": "COARSE SAND & GRAVEL", @@ -472047,7 +472047,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T03:11:28Z", "activity_submission": null, - "well_tag_number": 112237, + "well": 112237, "lithology_from": "190.00", "lithology_to": "195.00", "lithology_raw_data": "SANDS AND MORE GRAVEL, STARTED H20 AT 195 FEET", @@ -472076,7 +472076,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-02T19:21:35Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "451.00", "lithology_to": "453.00", "lithology_raw_data": "Coal", @@ -472105,7 +472105,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, - "well_tag_number": 112628, + "well": 112628, "lithology_from": "176.00", "lithology_to": "215.00", "lithology_raw_data": "COARSE GRAVEL & SAND", @@ -472134,7 +472134,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:48:49Z", "activity_submission": null, - "well_tag_number": 112968, + "well": 112968, "lithology_from": "14.00", "lithology_to": "30.00", "lithology_raw_data": "SAND & GRAVEL", @@ -472163,7 +472163,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:38:45Z", "activity_submission": null, - "well_tag_number": 112978, + "well": 112978, "lithology_from": "55.00", "lithology_to": "64.00", "lithology_raw_data": "SILT & SAND", @@ -472192,7 +472192,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:34:28Z", "activity_submission": null, - "well_tag_number": 112255, + "well": 112255, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "TOPSOIL", @@ -472221,7 +472221,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "115.00", "lithology_to": "125.00", "lithology_raw_data": "SILTY COARS SAND AND GRAVEL", @@ -472250,7 +472250,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "114.00", "lithology_to": "128.00", "lithology_raw_data": "SANDSTONE", @@ -472279,7 +472279,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-17T17:54:29Z", "activity_submission": null, - "well_tag_number": 112623, + "well": 112623, "lithology_from": "245.00", "lithology_to": "255.00", "lithology_raw_data": "CRUMBLY LAVA ROCK", @@ -472308,7 +472308,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "68.00", "lithology_to": "180.00", "lithology_raw_data": "SAND", @@ -472337,7 +472337,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-04T01:46:13Z", "activity_submission": null, - "well_tag_number": 112233, + "well": 112233, "lithology_from": "4.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC BEDROCK", @@ -472366,7 +472366,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T06:28:58Z", "activity_submission": null, - "well_tag_number": 112780, + "well": 112780, "lithology_from": "0.00", "lithology_to": "90.00", "lithology_raw_data": "CLAY & ROCKS", @@ -472395,7 +472395,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "87.00", "lithology_to": "110.00", "lithology_raw_data": "LOOSE SAND AND GRAVEL, CLAY", @@ -472424,7 +472424,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:32:17Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "22.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -472453,7 +472453,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T19:54:43Z", "activity_submission": null, - "well_tag_number": 112713, + "well": 112713, "lithology_from": "7.00", "lithology_to": "9.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -472482,7 +472482,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "335.00", "lithology_to": "400.00", "lithology_raw_data": "FINE SILTSTONE", @@ -472511,7 +472511,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "194.00", "lithology_to": "200.00", "lithology_raw_data": "BEDROCK", @@ -472540,7 +472540,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:29:02Z", "activity_submission": null, - "well_tag_number": 113134, + "well": 113134, "lithology_from": "71.00", "lithology_to": "155.00", "lithology_raw_data": "silty sand", @@ -472569,7 +472569,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:12:29Z", "activity_submission": null, - "well_tag_number": 112628, + "well": 112628, "lithology_from": "149.00", "lithology_to": "176.00", "lithology_raw_data": "CLAY", @@ -472598,7 +472598,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T01:04:55Z", "activity_submission": null, - "well_tag_number": 113193, + "well": 113193, "lithology_from": "95.00", "lithology_to": "108.00", "lithology_raw_data": "gravelly", @@ -472627,7 +472627,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "163.00", "lithology_to": "166.00", "lithology_raw_data": null, @@ -472656,7 +472656,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:41:24Z", "activity_submission": null, - "well_tag_number": 112906, + "well": 112906, "lithology_from": "91.00", "lithology_to": "95.00", "lithology_raw_data": null, @@ -472685,7 +472685,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "121.00", "lithology_to": "123.00", "lithology_raw_data": "SAND GRAVEL, FINE/CLAY", @@ -472714,7 +472714,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T20:39:55Z", "activity_submission": null, - "well_tag_number": 113215, + "well": 113215, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -472743,7 +472743,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T21:25:10Z", "activity_submission": null, - "well_tag_number": 112596, + "well": 112596, "lithology_from": "20.00", "lithology_to": "24.00", "lithology_raw_data": "SAND", @@ -472772,7 +472772,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T18:12:07Z", "activity_submission": null, - "well_tag_number": 112578, + "well": 112578, "lithology_from": "135.00", "lithology_to": "205.00", "lithology_raw_data": "PASTY METAMORPHIC TYPE BEDROCK - CLAY IN FRACTURES", @@ -472801,7 +472801,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:25:27Z", "activity_submission": null, - "well_tag_number": 112996, + "well": 112996, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "siltstone shale", @@ -472830,7 +472830,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:08:40Z", "activity_submission": null, - "well_tag_number": 112497, + "well": 112497, "lithology_from": "170.00", "lithology_to": "200.00", "lithology_raw_data": "CLAY", @@ -472859,7 +472859,7 @@ "update_user": "PROXY_WELLS", "update_date": "2013-09-10T17:01:10Z", "activity_submission": null, - "well_tag_number": 108025, + "well": 108025, "lithology_from": "27.00", "lithology_to": "33.00", "lithology_raw_data": "GRAVEL", @@ -472888,7 +472888,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T21:35:15Z", "activity_submission": null, - "well_tag_number": 112634, + "well": 112634, "lithology_from": "27.00", "lithology_to": "56.00", "lithology_raw_data": "grave sand", @@ -472917,7 +472917,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "395.00", "lithology_to": "405.00", "lithology_raw_data": "Gravel, some sand, trace silt and clay", @@ -472946,7 +472946,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T21:11:45Z", "activity_submission": null, - "well_tag_number": 113308, + "well": 113308, "lithology_from": "270.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -472975,7 +472975,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -473004,7 +473004,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-10T20:20:14Z", "activity_submission": null, - "well_tag_number": 113021, + "well": 113021, "lithology_from": "120.00", "lithology_to": "127.00", "lithology_raw_data": null, @@ -473033,7 +473033,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "163.00", "lithology_to": "168.00", "lithology_raw_data": null, @@ -473062,7 +473062,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "GRAVEL, MINOR COARSE SAND", @@ -473091,7 +473091,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:30:54Z", "activity_submission": null, - "well_tag_number": 113138, + "well": 113138, "lithology_from": "6.00", "lithology_to": "42.00", "lithology_raw_data": "silt till", @@ -473120,7 +473120,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:37:07Z", "activity_submission": null, - "well_tag_number": 113302, + "well": 113302, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -473149,7 +473149,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "55.00", "lithology_to": "73.00", "lithology_raw_data": "TILL/TRACES OF SAND", @@ -473178,7 +473178,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, - "well_tag_number": 112786, + "well": 112786, "lithology_from": "8.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -473207,7 +473207,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:45:58Z", "activity_submission": null, - "well_tag_number": 112823, + "well": 112823, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "DIRT", @@ -473236,7 +473236,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T20:34:53Z", "activity_submission": null, - "well_tag_number": 112516, + "well": 112516, "lithology_from": "2.00", "lithology_to": "17.00", "lithology_raw_data": "gravel", @@ -473265,7 +473265,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:15:19Z", "activity_submission": null, - "well_tag_number": 112953, + "well": 112953, "lithology_from": "18.00", "lithology_to": "34.00", "lithology_raw_data": "CLAY & SAND", @@ -473294,7 +473294,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T05:31:44Z", "activity_submission": null, - "well_tag_number": 112419, + "well": 112419, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM/HARD, CLAY, SILT, ROCKS", @@ -473323,7 +473323,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "CLAY", @@ -473352,7 +473352,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:14:04Z", "activity_submission": null, - "well_tag_number": 112232, + "well": 112232, "lithology_from": "0.00", "lithology_to": "22.00", "lithology_raw_data": "BLACK/BROWN, BLACK ORGANICS TO BROWN CLAY", @@ -473381,7 +473381,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T20:02:26Z", "activity_submission": null, - "well_tag_number": 112982, + "well": 112982, "lithology_from": "51.00", "lithology_to": "60.00", "lithology_raw_data": "SAND, CLAY, COBBLES", @@ -473410,7 +473410,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "75.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", @@ -473439,7 +473439,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:47Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "54.00", "lithology_to": "63.00", "lithology_raw_data": "sand", @@ -473468,7 +473468,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:22:23Z", "activity_submission": null, - "well_tag_number": 112734, + "well": 112734, "lithology_from": "19.00", "lithology_to": "42.00", "lithology_raw_data": "TIGHT CEMENTED SAND AND GRAVEL", @@ -473497,7 +473497,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "155.00", "lithology_to": "156.00", "lithology_raw_data": "GREY CEMENTED SAND AND GRAVEL", @@ -473526,7 +473526,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "169.00", "lithology_to": "174.00", "lithology_raw_data": "TILL", @@ -473555,7 +473555,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "120.00", "lithology_to": "125.00", "lithology_raw_data": null, @@ -473584,7 +473584,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "4.00", "lithology_to": "9.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -473613,7 +473613,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:05:20Z", "activity_submission": null, - "well_tag_number": 112276, + "well": 112276, "lithology_from": "58.00", "lithology_to": "64.00", "lithology_raw_data": null, @@ -473642,7 +473642,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:24:52Z", "activity_submission": null, - "well_tag_number": 112261, + "well": 112261, "lithology_from": "28.00", "lithology_to": "42.00", "lithology_raw_data": "MEDIUM GRAVEL, MEDIUM SAND", @@ -473671,7 +473671,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, - "well_tag_number": 112500, + "well": 112500, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SOFT/MEDIUM; SAND/TILL", @@ -473700,7 +473700,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:25:55Z", "activity_submission": null, - "well_tag_number": 112874, + "well": 112874, "lithology_from": "0.00", "lithology_to": "48.00", "lithology_raw_data": "CLAY & ROCK", @@ -473729,7 +473729,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "0.00", "lithology_to": "27.00", "lithology_raw_data": "SAND AND GRAVEL", @@ -473758,7 +473758,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T21:17:07Z", "activity_submission": null, - "well_tag_number": 113107, + "well": 113107, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -473787,7 +473787,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, - "well_tag_number": 113300, + "well": 113300, "lithology_from": "147.00", "lithology_to": "155.00", "lithology_raw_data": null, @@ -473816,7 +473816,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:09:13Z", "activity_submission": null, - "well_tag_number": 112469, + "well": 112469, "lithology_from": "25.00", "lithology_to": "37.00", "lithology_raw_data": null, @@ -473845,7 +473845,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "6.00", "lithology_to": "22.00", "lithology_raw_data": "sand, fine-med", @@ -473874,7 +473874,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "260.00", "lithology_to": "324.00", "lithology_raw_data": "interbedded", @@ -473903,7 +473903,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:13:37Z", "activity_submission": null, - "well_tag_number": 112322, + "well": 112322, "lithology_from": "159.00", "lithology_to": "206.00", "lithology_raw_data": "LIGHT GREY CRYSTALLINE", @@ -473932,7 +473932,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "and gravel", @@ -473961,7 +473961,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, - "well_tag_number": 112260, + "well": 112260, "lithology_from": "14.00", "lithology_to": "29.00", "lithology_raw_data": "SILT AND BOG", @@ -473990,7 +473990,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:41:21Z", "activity_submission": null, - "well_tag_number": 113135, + "well": 113135, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -474019,7 +474019,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "6.00", "lithology_to": "39.00", "lithology_raw_data": "MEDIUM BROWN SAND, SMALL GRAVEL", @@ -474048,7 +474048,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, - "well_tag_number": 112301, + "well": 112301, "lithology_from": "47.00", "lithology_to": "182.00", "lithology_raw_data": "BASALTS", @@ -474077,7 +474077,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "175.00", "lithology_to": "185.00", "lithology_raw_data": "grey fine sand and gravels", @@ -474106,7 +474106,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "200.00", "lithology_to": "280.00", "lithology_raw_data": "MEDIUM/HARD; GLACIAL TILL", @@ -474135,7 +474135,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:28:26Z", "activity_submission": null, - "well_tag_number": 112882, + "well": 112882, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SAND & GRAVEL", @@ -474164,7 +474164,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:59:11Z", "activity_submission": null, - "well_tag_number": 112600, + "well": 112600, "lithology_from": "20.00", "lithology_to": "35.00", "lithology_raw_data": "GRAVEL, SAND", @@ -474193,7 +474193,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "208.00", "lithology_to": "212.00", "lithology_raw_data": "SAND/CLAY/TILL", @@ -474222,7 +474222,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, MINOR ROCKS, SAND SEAMS", @@ -474251,7 +474251,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T22:26:16Z", "activity_submission": null, - "well_tag_number": 113183, + "well": 113183, "lithology_from": "112.00", "lithology_to": "128.00", "lithology_raw_data": "Fine to coarse sand and gravel", @@ -474280,7 +474280,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:15:43Z", "activity_submission": null, - "well_tag_number": 113057, + "well": 113057, "lithology_from": "210.00", "lithology_to": "238.00", "lithology_raw_data": "GREY SAND & GRAVEL, W.B.", @@ -474309,7 +474309,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-14T21:30:12Z", "activity_submission": null, - "well_tag_number": 112798, + "well": 112798, "lithology_from": "98.40", "lithology_to": null, "lithology_raw_data": "TILL (ASSUMED)", @@ -474338,7 +474338,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:41:47Z", "activity_submission": null, - "well_tag_number": 112992, + "well": 112992, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "GRAVEL/SAND", @@ -474367,7 +474367,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "132.00", "lithology_to": "137.00", "lithology_raw_data": "COARSE LAVA ROCK", @@ -474396,7 +474396,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T07:01:35Z", "activity_submission": null, - "well_tag_number": 112387, + "well": 112387, "lithology_from": "315.00", "lithology_to": "450.00", "lithology_raw_data": "MEDIUM/HARD, BLUE/GREEN, VOLCANIC", @@ -474425,7 +474425,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "159.00", "lithology_to": "179.00", "lithology_raw_data": "SILT AND SAND, W.B.", @@ -474454,7 +474454,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:26:03Z", "activity_submission": null, - "well_tag_number": 112997, + "well": 112997, "lithology_from": "0.00", "lithology_to": "127.00", "lithology_raw_data": "siltstone shale", @@ -474483,7 +474483,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:25:26Z", "activity_submission": null, - "well_tag_number": 113148, + "well": 113148, "lithology_from": "204.00", "lithology_to": "287.00", "lithology_raw_data": null, @@ -474512,7 +474512,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "365.00", "lithology_to": "375.00", "lithology_raw_data": null, @@ -474541,7 +474541,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-14T21:57:24Z", "activity_submission": null, - "well_tag_number": 113182, + "well": 113182, "lithology_from": "15.00", "lithology_to": "140.00", "lithology_raw_data": "gravel", @@ -474570,7 +474570,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", @@ -474599,7 +474599,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "COARSE SAND", @@ -474628,7 +474628,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2012-02-01T22:12:45Z", "activity_submission": null, - "well_tag_number": 105417, + "well": 105417, "lithology_from": "360.00", "lithology_to": "400.00", "lithology_raw_data": "OTHER SURFICIAL/BEDROCK GRANITE", @@ -474657,7 +474657,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:10:52Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/HARD COMPRESSED GRAVEL", @@ -474686,7 +474686,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:15:00Z", "activity_submission": null, - "well_tag_number": 113009, + "well": 113009, "lithology_from": "30.00", "lithology_to": "45.00", "lithology_raw_data": "clay and rocks", @@ -474715,7 +474715,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "91.00", "lithology_to": "144.00", "lithology_raw_data": "like zones", @@ -474744,7 +474744,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T18:43:44Z", "activity_submission": null, - "well_tag_number": 113210, + "well": 113210, "lithology_from": "0.00", "lithology_to": "15.00", "lithology_raw_data": "Overburden ", @@ -474773,7 +474773,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T18:39:10Z", "activity_submission": null, - "well_tag_number": 113178, + "well": 113178, "lithology_from": "87.00", "lithology_to": "91.00", "lithology_raw_data": "gravel", @@ -474802,7 +474802,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:56:19Z", "activity_submission": null, - "well_tag_number": 112415, + "well": 112415, "lithology_from": "60.00", "lithology_to": "70.00", "lithology_raw_data": "SILT", @@ -474831,7 +474831,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:13:09Z", "activity_submission": null, - "well_tag_number": 112324, + "well": 112324, "lithology_from": "175.00", "lithology_to": "210.00", "lithology_raw_data": "MEDIUM-HARD SANDSTONE/FINE/DIRTY", @@ -474860,7 +474860,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T22:52:19Z", "activity_submission": null, - "well_tag_number": 112907, + "well": 112907, "lithology_from": "36.00", "lithology_to": "37.00", "lithology_raw_data": "GREEN/GREY/WHITE", @@ -474889,7 +474889,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:09:36Z", "activity_submission": null, - "well_tag_number": 112536, + "well": 112536, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "GRAVEL, COARSE", @@ -474918,7 +474918,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:32:10Z", "activity_submission": null, - "well_tag_number": 112360, + "well": 112360, "lithology_from": "0.00", "lithology_to": "99.00", "lithology_raw_data": "clay gravel sand/ till/ boulders/ gravel sand silty clay", @@ -474947,7 +474947,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:53:13Z", "activity_submission": null, - "well_tag_number": 112495, + "well": 112495, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "MEDIUM TO COARSE SAND", @@ -474976,7 +474976,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-20T10:37:43Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "118.00", "lithology_to": "122.00", "lithology_raw_data": "Silty sand (grey)", @@ -475005,7 +475005,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "15.50", "lithology_to": "19.50", "lithology_raw_data": "grey", @@ -475034,7 +475034,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, - "well_tag_number": 112236, + "well": 112236, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": "GREEN/RED, BEDROCK BLOCKING", @@ -475063,7 +475063,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T06:51:14Z", "activity_submission": null, - "well_tag_number": 112728, + "well": 112728, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "SAND WITH SOME GRAVEL", @@ -475092,7 +475092,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:48:56Z", "activity_submission": null, - "well_tag_number": 112960, + "well": 112960, "lithology_from": "81.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -475121,7 +475121,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T16:55:11Z", "activity_submission": null, - "well_tag_number": 112511, + "well": 112511, "lithology_from": "103.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", @@ -475150,7 +475150,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T17:44:28Z", "activity_submission": null, - "well_tag_number": 113126, + "well": 113126, "lithology_from": "140.00", "lithology_to": "169.00", "lithology_raw_data": "DRY GREY SILT", @@ -475179,7 +475179,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:41:44Z", "activity_submission": null, - "well_tag_number": 112444, + "well": 112444, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "BEDROCK", @@ -475208,7 +475208,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "69.00", "lithology_to": "72.00", "lithology_raw_data": "till", @@ -475237,7 +475237,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T02:42:26Z", "activity_submission": null, - "well_tag_number": 112773, + "well": 112773, "lithology_from": "8.00", "lithology_to": null, "lithology_raw_data": null, @@ -475266,7 +475266,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "98.00", "lithology_to": "114.00", "lithology_raw_data": "CLAY & ROCKS", @@ -475295,7 +475295,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "16.00", "lithology_to": "19.00", "lithology_raw_data": "BROWN FINE SAND WITH SOME STONES", @@ -475324,7 +475324,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:54:12Z", "activity_submission": null, - "well_tag_number": 112272, + "well": 112272, "lithology_from": "78.00", "lithology_to": "83.00", "lithology_raw_data": "and gravel", @@ -475353,7 +475353,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "180.00", "lithology_to": "198.00", "lithology_raw_data": "Silt stone", @@ -475382,7 +475382,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "105.00", "lithology_to": "180.00", "lithology_raw_data": null, @@ -475411,7 +475411,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-10T18:45:00Z", "activity_submission": null, - "well_tag_number": 112579, + "well": 112579, "lithology_from": "330.00", "lithology_to": "402.00", "lithology_raw_data": "VOLCANIC SEAMS OF MULTI-COLOURED GNEISS", @@ -475440,7 +475440,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T22:36:59Z", "activity_submission": null, - "well_tag_number": 112414, + "well": 112414, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY, TRACES OF GRAVEL", @@ -475469,7 +475469,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T21:00:40Z", "activity_submission": null, - "well_tag_number": 112585, + "well": 112585, "lithology_from": "7.00", "lithology_to": "10.00", "lithology_raw_data": "MEDIUM-HARD; BROKEN, BEDROCK BLOCKS", @@ -475498,7 +475498,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:56:05Z", "activity_submission": null, - "well_tag_number": 112317, + "well": 112317, "lithology_from": "0.00", "lithology_to": "2.00", "lithology_raw_data": "SANDY, LOAM", @@ -475527,7 +475527,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "42.00", "lithology_to": "50.00", "lithology_raw_data": "and gravels", @@ -475556,7 +475556,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "32.00", "lithology_to": "33.00", "lithology_raw_data": "VERY HARD BOULDER", @@ -475585,7 +475585,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:27:44Z", "activity_submission": null, - "well_tag_number": 112257, + "well": 112257, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "LARGE BOULDERS", @@ -475614,7 +475614,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:31:55Z", "activity_submission": null, - "well_tag_number": 112479, + "well": 112479, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "GRAVEL, MINOR SAND", @@ -475643,7 +475643,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, - "well_tag_number": 113079, + "well": 113079, "lithology_from": "218.00", "lithology_to": "245.00", "lithology_raw_data": null, @@ -475672,7 +475672,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T02:01:12Z", "activity_submission": null, - "well_tag_number": 112477, + "well": 112477, "lithology_from": "10.00", "lithology_to": "20.00", "lithology_raw_data": "BEDROCK", @@ -475701,7 +475701,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:41:06Z", "activity_submission": null, - "well_tag_number": 112420, + "well": 112420, "lithology_from": "32.00", "lithology_to": "40.00", "lithology_raw_data": "BEDROCK", @@ -475730,7 +475730,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": "sand", @@ -475759,7 +475759,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "loamy", @@ -475788,7 +475788,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "51.00", "lithology_to": "73.00", "lithology_raw_data": "and silty sand", @@ -475817,7 +475817,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "40.00", "lithology_to": "80.00", "lithology_raw_data": "COARSE SAND", @@ -475846,7 +475846,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "172.00", "lithology_to": "180.00", "lithology_raw_data": "BEDROCK", @@ -475875,7 +475875,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "33.00", "lithology_to": "65.00", "lithology_raw_data": "and gravels", @@ -475904,7 +475904,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T19:33:20Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "154.00", "lithology_to": "159.00", "lithology_raw_data": "CLAY GRAVEL", @@ -475933,7 +475933,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T02:03:31Z", "activity_submission": null, - "well_tag_number": 112323, + "well": 112323, "lithology_from": "48.00", "lithology_to": "56.00", "lithology_raw_data": "SHALE", @@ -475962,7 +475962,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "200.00", "lithology_to": "390.00", "lithology_raw_data": "GREY/BLUE/WHITE VOLCANIC WITH OCCASIONAL WHITE TRACES", @@ -475991,7 +475991,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:31:06Z", "activity_submission": null, - "well_tag_number": 112887, + "well": 112887, "lithology_from": "0.00", "lithology_to": "24.00", "lithology_raw_data": "SAND & GRAVEL", @@ -476020,7 +476020,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-27T18:54:34Z", "activity_submission": null, - "well_tag_number": 112818, + "well": 112818, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "and gravel", @@ -476049,7 +476049,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, - "well_tag_number": 112744, + "well": 112744, "lithology_from": "9.00", "lithology_to": "30.00", "lithology_raw_data": "GRAVEL, SAND AND COBBLES", @@ -476078,7 +476078,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "SANDY CLAY", @@ -476107,7 +476107,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "61.00", "lithology_to": "118.00", "lithology_raw_data": "SHALE / HARD BROWN LENSES AND FOSSILS", @@ -476136,7 +476136,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:47:47Z", "activity_submission": null, - "well_tag_number": 112979, + "well": 112979, "lithology_from": "12.00", "lithology_to": "33.00", "lithology_raw_data": "CLAY & GRAVEL", @@ -476165,7 +476165,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:32Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "153.00", "lithology_to": "177.00", "lithology_raw_data": "SHALE/SILTSTONE WITH SOME SALT & PEPPER LAYERS", @@ -476194,7 +476194,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T05:36:29Z", "activity_submission": null, - "well_tag_number": 112306, + "well": 112306, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "STIFF CLAY", @@ -476223,7 +476223,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "SOFT-MEDIUM; CLAY SILT, MINOR GRAVEL", @@ -476252,7 +476252,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T21:52:29Z", "activity_submission": null, - "well_tag_number": 112445, + "well": 112445, "lithology_from": "21.00", "lithology_to": "37.00", "lithology_raw_data": "silt and gravel", @@ -476281,7 +476281,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T19:44:49Z", "activity_submission": null, - "well_tag_number": 112876, + "well": 112876, "lithology_from": "78.00", "lithology_to": "92.00", "lithology_raw_data": "CLAY & ROCK", @@ -476310,7 +476310,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T01:41:19Z", "activity_submission": null, - "well_tag_number": 112233, + "well": 112233, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "BROKEN BEDROCK - ORGANICS", @@ -476339,7 +476339,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:25:40Z", "activity_submission": null, - "well_tag_number": 112294, + "well": 112294, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "TILL", @@ -476368,7 +476368,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T17:47:22Z", "activity_submission": null, - "well_tag_number": 112520, + "well": 112520, "lithology_from": "17.00", "lithology_to": "21.00", "lithology_raw_data": null, @@ -476397,7 +476397,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:55:35Z", "activity_submission": null, - "well_tag_number": 112806, + "well": 112806, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -476426,7 +476426,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T20:02:09Z", "activity_submission": null, - "well_tag_number": 112393, + "well": 112393, "lithology_from": "72.00", "lithology_to": null, "lithology_raw_data": "BOULDER", @@ -476455,7 +476455,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:53:26Z", "activity_submission": null, - "well_tag_number": 113192, + "well": 113192, "lithology_from": "9.00", "lithology_to": "34.00", "lithology_raw_data": "and gravel", @@ -476484,7 +476484,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "Clay, muskeg", @@ -476513,7 +476513,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:51:48Z", "activity_submission": null, - "well_tag_number": 112437, + "well": 112437, "lithology_from": "10.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -476542,7 +476542,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T20:01:07Z", "activity_submission": null, - "well_tag_number": 112741, + "well": 112741, "lithology_from": "3.00", "lithology_to": "28.00", "lithology_raw_data": "BOULDERS AND COBBLES WITH SAND AND GRAVEL", @@ -476571,7 +476571,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-09T21:29:29Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "80.00", "lithology_to": "100.00", "lithology_raw_data": "SOFT-MEDIUM; ANGULAR GRAVEL, CLAY SILT LAYER", @@ -476600,7 +476600,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "135.00", "lithology_to": "150.00", "lithology_raw_data": "BLACK & WHITE GRANITE", @@ -476629,7 +476629,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:33:20Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "300.00", "lithology_to": "320.00", "lithology_raw_data": "CLAY/SILT", @@ -476658,7 +476658,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "BROWN/GRAY; TRACE OF CLAY", @@ -476687,7 +476687,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:00:59Z", "activity_submission": null, - "well_tag_number": 112301, + "well": 112301, "lithology_from": "44.00", "lithology_to": "47.00", "lithology_raw_data": "ASH/CLAY/ROCK", @@ -476716,7 +476716,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T19:07:25Z", "activity_submission": null, - "well_tag_number": 112392, + "well": 112392, "lithology_from": "15.00", "lithology_to": "71.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", @@ -476745,7 +476745,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:18:51Z", "activity_submission": null, - "well_tag_number": 112493, + "well": 112493, "lithology_from": "30.00", "lithology_to": "35.00", "lithology_raw_data": "ROCKS, MEDIUM, SAND", @@ -476774,7 +476774,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:13:47Z", "activity_submission": null, - "well_tag_number": 112990, + "well": 112990, "lithology_from": "120.00", "lithology_to": "14.00", "lithology_raw_data": null, @@ -476803,7 +476803,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "413.00", "lithology_to": "415.00", "lithology_raw_data": "DENSE/STIFF; CONGLOMERATE", @@ -476832,7 +476832,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-04T20:19:14Z", "activity_submission": null, - "well_tag_number": 113097, + "well": 113097, "lithology_from": "2.00", "lithology_to": "30.00", "lithology_raw_data": "compact, wet", @@ -476861,7 +476861,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T16:57:31Z", "activity_submission": null, - "well_tag_number": 112824, + "well": 112824, "lithology_from": "91.00", "lithology_to": "94.00", "lithology_raw_data": "GREY SILTY SAND", @@ -476890,7 +476890,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T16:15:12Z", "activity_submission": null, - "well_tag_number": 113209, + "well": 113209, "lithology_from": "420.00", "lithology_to": "440.00", "lithology_raw_data": "Shale", @@ -476919,7 +476919,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T20:00:29Z", "activity_submission": null, - "well_tag_number": 113025, + "well": 113025, "lithology_from": "0.00", "lithology_to": "50.00", "lithology_raw_data": "Brown Clay", @@ -476948,7 +476948,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "155.00", "lithology_to": "178.00", "lithology_raw_data": "BLACK & WHITE ROCK", @@ -476977,7 +476977,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "138.00", "lithology_to": "144.00", "lithology_raw_data": "SAND & GRAVEL", @@ -477006,7 +477006,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "50.00", "lithology_to": "57.00", "lithology_raw_data": "Gravel, some sand, trace silt and clay, grey, damp", @@ -477035,7 +477035,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, - "well_tag_number": 112692, + "well": 112692, "lithology_from": "30.00", "lithology_to": "41.00", "lithology_raw_data": "TILL", @@ -477064,7 +477064,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:52:40Z", "activity_submission": null, - "well_tag_number": 112275, + "well": 112275, "lithology_from": "116.00", "lithology_to": "140.00", "lithology_raw_data": null, @@ -477093,7 +477093,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T03:58:16Z", "activity_submission": null, - "well_tag_number": 112326, + "well": 112326, "lithology_from": "12.00", "lithology_to": "33.00", "lithology_raw_data": "LIGHT BROWN SHALE", @@ -477122,7 +477122,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:38:07Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "200.00", "lithology_to": "204.00", "lithology_raw_data": null, @@ -477151,7 +477151,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T19:06:03Z", "activity_submission": null, - "well_tag_number": 112890, + "well": 112890, "lithology_from": "368.00", "lithology_to": "720.00", "lithology_raw_data": "WHITE/GREY", @@ -477180,7 +477180,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T05:57:05Z", "activity_submission": null, - "well_tag_number": 112421, + "well": 112421, "lithology_from": "120.00", "lithology_to": "123.00", "lithology_raw_data": "BEDROCK", @@ -477209,7 +477209,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "gravel and wood debris", @@ -477238,7 +477238,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:30:01Z", "activity_submission": null, - "well_tag_number": 112223, + "well": 112223, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC", @@ -477267,7 +477267,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T22:24:50Z", "activity_submission": null, - "well_tag_number": 112303, + "well": 112303, "lithology_from": "79.00", "lithology_to": "81.00", "lithology_raw_data": "ASH/CLAY", @@ -477296,7 +477296,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T01:00:35Z", "activity_submission": null, - "well_tag_number": 112321, + "well": 112321, "lithology_from": "341.00", "lithology_to": "360.00", "lithology_raw_data": "CRYSTALLINE", @@ -477325,7 +477325,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "39.00", "lithology_to": "56.00", "lithology_raw_data": "sand, fine-med", @@ -477354,7 +477354,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T18:06:29Z", "activity_submission": null, - "well_tag_number": 112744, + "well": 112744, "lithology_from": "4.00", "lithology_to": "9.00", "lithology_raw_data": "GRAVEL AND COBBLES WITH SAND", @@ -477383,7 +477383,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T06:43:14Z", "activity_submission": null, - "well_tag_number": 112258, + "well": 112258, "lithology_from": "15.00", "lithology_to": "32.00", "lithology_raw_data": "SAND WITH CLAY", @@ -477412,7 +477412,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "121.00", "lithology_to": "135.00", "lithology_raw_data": "sand", @@ -477441,7 +477441,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:18:53Z", "activity_submission": null, - "well_tag_number": 112975, + "well": 112975, "lithology_from": "105.00", "lithology_to": "110.00", "lithology_raw_data": "SILTY SAND AND FINE GRAVEL", @@ -477470,7 +477470,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:09:12Z", "activity_submission": null, - "well_tag_number": 112435, + "well": 112435, "lithology_from": "8.00", "lithology_to": "80.00", "lithology_raw_data": "till", @@ -477499,7 +477499,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-23T19:11:11Z", "activity_submission": null, - "well_tag_number": 113145, + "well": 113145, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "silt, soil, mixed organics", @@ -477528,7 +477528,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T15:11:49Z", "activity_submission": null, - "well_tag_number": 112461, + "well": 112461, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "BEDROCK", @@ -477557,7 +477557,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-21T21:07:05Z", "activity_submission": null, - "well_tag_number": 112849, + "well": 112849, "lithology_from": "19.00", "lithology_to": "29.00", "lithology_raw_data": null, @@ -477586,7 +477586,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T00:42:59Z", "activity_submission": null, - "well_tag_number": 112770, + "well": 112770, "lithology_from": "225.00", "lithology_to": "230.00", "lithology_raw_data": "SHALE", @@ -477615,7 +477615,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T21:02:05Z", "activity_submission": null, - "well_tag_number": 112863, + "well": 112863, "lithology_from": "61.00", "lithology_to": "74.00", "lithology_raw_data": "MEDIUM GRAVEL WITH SAND AND FINES, GREY BROWN", @@ -477644,7 +477644,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-24T22:09:44Z", "activity_submission": null, - "well_tag_number": 112815, + "well": 112815, "lithology_from": "100.00", "lithology_to": "127.00", "lithology_raw_data": "grey/green", @@ -477673,7 +477673,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T22:33:32Z", "activity_submission": null, - "well_tag_number": 112494, + "well": 112494, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "MEDIUM, SAND, GRAVEL", @@ -477702,7 +477702,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:11:05Z", "activity_submission": null, - "well_tag_number": 112607, + "well": 112607, "lithology_from": "88.00", "lithology_to": "93.00", "lithology_raw_data": "coarse gravel", @@ -477731,7 +477731,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "SAND WITH SILT LAYERS", @@ -477760,7 +477760,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T18:35:52Z", "activity_submission": null, - "well_tag_number": 112680, + "well": 112680, "lithology_from": "7.00", "lithology_to": "295.00", "lithology_raw_data": "BEDROCK BASALTS WITH SOME SMALL VOLCANIC LAYERS", @@ -477789,7 +477789,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-30T20:29:55Z", "activity_submission": null, - "well_tag_number": 113168, + "well": 113168, "lithology_from": "89.00", "lithology_to": "90.00", "lithology_raw_data": "sand gravel", @@ -477818,7 +477818,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T16:08:07Z", "activity_submission": null, - "well_tag_number": 113300, + "well": 113300, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "sand with clay/silt", @@ -477847,7 +477847,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "11.00", "lithology_to": "42.00", "lithology_raw_data": "till", @@ -477876,7 +477876,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, - "well_tag_number": 112504, + "well": 112504, "lithology_from": "5.00", "lithology_to": "31.00", "lithology_raw_data": "BROWN SAND WITH PEBBLES & ROCKS", @@ -477905,7 +477905,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T20:15:40Z", "activity_submission": null, - "well_tag_number": 112686, + "well": 112686, "lithology_from": "27.00", "lithology_to": "110.00", "lithology_raw_data": "BEDROCK, VOLCANIC", @@ -477934,7 +477934,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T19:29:33Z", "activity_submission": null, - "well_tag_number": 112505, + "well": 112505, "lithology_from": "57.00", "lithology_to": "60.00", "lithology_raw_data": "DENSE BROWN TILL", @@ -477963,7 +477963,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T23:11:34Z", "activity_submission": null, - "well_tag_number": 112568, + "well": 112568, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -477992,7 +477992,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, - "well_tag_number": 112329, + "well": 112329, "lithology_from": "260.00", "lithology_to": "360.00", "lithology_raw_data": "SAND AND GRAVEL (DIRTY)", @@ -478021,7 +478021,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "340.00", "lithology_to": "365.00", "lithology_raw_data": "WITH FINE SANDSTONE STRINGERS", @@ -478050,7 +478050,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "385.00", "lithology_to": "393.00", "lithology_raw_data": "SILTY DIRTY SAND AND GRAVEL", @@ -478079,7 +478079,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "35.00", "lithology_to": "160.00", "lithology_raw_data": "some calcite", @@ -478108,7 +478108,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:09:11Z", "activity_submission": null, - "well_tag_number": 112410, + "well": 112410, "lithology_from": "18.00", "lithology_to": "32.00", "lithology_raw_data": "WEATHERED BEDROCK", @@ -478137,7 +478137,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T19:56:12Z", "activity_submission": null, - "well_tag_number": 112735, + "well": 112735, "lithology_from": "70.00", "lithology_to": "700.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -478166,7 +478166,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:50:39Z", "activity_submission": null, - "well_tag_number": 112369, + "well": 112369, "lithology_from": "0.00", "lithology_to": "14.00", "lithology_raw_data": "gravel and cobble", @@ -478195,7 +478195,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:28:09Z", "activity_submission": null, - "well_tag_number": 113255, + "well": 113255, "lithology_from": "20.00", "lithology_to": "251.00", "lithology_raw_data": null, @@ -478224,7 +478224,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "35.00", "lithology_to": "42.00", "lithology_raw_data": "and gravel", @@ -478253,7 +478253,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "118.00", "lithology_to": "150.00", "lithology_raw_data": "SHALE", @@ -478282,7 +478282,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T21:44:22Z", "activity_submission": null, - "well_tag_number": 112902, + "well": 112902, "lithology_from": "92.00", "lithology_to": "98.00", "lithology_raw_data": "SAND & GRAVEL", @@ -478311,7 +478311,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "239.00", "lithology_to": "242.00", "lithology_raw_data": "fractured", @@ -478340,7 +478340,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "96.00", "lithology_to": "136.00", "lithology_raw_data": "TILL", @@ -478369,7 +478369,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "212.00", "lithology_to": "256.00", "lithology_raw_data": "BROWN CLAYS AND GRAVELS", @@ -478398,7 +478398,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:05Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "201.00", "lithology_to": "205.00", "lithology_raw_data": "BROWN/GREY SHALE ROCK", @@ -478427,7 +478427,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T19:43:51Z", "activity_submission": null, - "well_tag_number": 112334, + "well": 112334, "lithology_from": "195.00", "lithology_to": "207.00", "lithology_raw_data": "GREY-WHITE SHALE", @@ -478456,7 +478456,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T04:34:19Z", "activity_submission": null, - "well_tag_number": 112239, + "well": 112239, "lithology_from": "244.00", "lithology_to": "298.00", "lithology_raw_data": "SANDSTONE, GRAVEL, SAND", @@ -478485,7 +478485,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:08Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "88.00", "lithology_to": "94.00", "lithology_raw_data": "BOULDERY TILL/CLAY", @@ -478514,7 +478514,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "117.00", "lithology_to": "119.00", "lithology_raw_data": null, @@ -478543,7 +478543,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, - "well_tag_number": 112706, + "well": 112706, "lithology_from": "130.00", "lithology_to": "137.00", "lithology_raw_data": "BEDROCK", @@ -478572,7 +478572,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-26T01:49:25Z", "activity_submission": null, - "well_tag_number": 112675, + "well": 112675, "lithology_from": "303.00", "lithology_to": "418.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -478601,7 +478601,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:45:44Z", "activity_submission": null, - "well_tag_number": 112476, + "well": 112476, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "CLAY", @@ -478630,7 +478630,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T22:54:43Z", "activity_submission": null, - "well_tag_number": 112671, + "well": 112671, "lithology_from": "2.00", "lithology_to": "45.00", "lithology_raw_data": "TIGHT, DRY, SANDY GRAVEL", @@ -478659,7 +478659,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T18:28:06Z", "activity_submission": null, - "well_tag_number": 112733, + "well": 112733, "lithology_from": "4.00", "lithology_to": "18.00", "lithology_raw_data": "TIGHT; SAND AND GRAVEL WITH SANDY CLAY", @@ -478688,7 +478688,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T19:55:29Z", "activity_submission": null, - "well_tag_number": 112685, + "well": 112685, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY", @@ -478717,7 +478717,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T18:59:56Z", "activity_submission": null, - "well_tag_number": 113271, + "well": 113271, "lithology_from": "130.00", "lithology_to": "173.00", "lithology_raw_data": null, @@ -478746,7 +478746,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-10-26T18:55:39Z", "activity_submission": null, - "well_tag_number": 102364, + "well": 102364, "lithology_from": "1.00", "lithology_to": "19.00", "lithology_raw_data": "CASED BEDROCK", @@ -478775,7 +478775,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T18:43:58Z", "activity_submission": null, - "well_tag_number": 113171, + "well": 113171, "lithology_from": "250.00", "lithology_to": "253.00", "lithology_raw_data": null, @@ -478804,7 +478804,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": "33.00", "lithology_to": "110.00", "lithology_raw_data": "volcanic, limestone", @@ -478833,7 +478833,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-10T02:19:00Z", "activity_submission": null, - "well_tag_number": 112762, + "well": 112762, "lithology_from": "207.00", "lithology_to": "220.00", "lithology_raw_data": "MEDIUM TO COARSE SAND AND FINE GRAVEL", @@ -478862,7 +478862,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-25T19:03:52Z", "activity_submission": null, - "well_tag_number": 113154, + "well": 113154, "lithology_from": "21.00", "lithology_to": "40.00", "lithology_raw_data": "sand, fine med", @@ -478891,7 +478891,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:43:32Z", "activity_submission": null, - "well_tag_number": 113191, + "well": 113191, "lithology_from": "170.00", "lithology_to": "205.00", "lithology_raw_data": "trace clay", @@ -478920,7 +478920,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "26.00", "lithology_to": "37.00", "lithology_raw_data": "LAYER OF LARGE GRANITE COBBLES", @@ -478949,7 +478949,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T18:49:32Z", "activity_submission": null, - "well_tag_number": 112332, + "well": 112332, "lithology_from": "0.00", "lithology_to": "16.00", "lithology_raw_data": "MEDIUM-SOFT, BROWNISH SHALE", @@ -478978,7 +478978,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": null, @@ -479007,7 +479007,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:21:09Z", "activity_submission": null, - "well_tag_number": 112880, + "well": 112880, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": null, @@ -479036,7 +479036,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "81.00", "lithology_to": "158.00", "lithology_raw_data": "SAND", @@ -479065,7 +479065,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:25:33Z", "activity_submission": null, - "well_tag_number": 112846, + "well": 112846, "lithology_from": "296.00", "lithology_to": "310.00", "lithology_raw_data": "CLAY", @@ -479094,7 +479094,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T20:09:30Z", "activity_submission": null, - "well_tag_number": 112803, + "well": 112803, "lithology_from": "7.00", "lithology_to": "21.00", "lithology_raw_data": "till", @@ -479123,7 +479123,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:23:42Z", "activity_submission": null, - "well_tag_number": 112881, + "well": 112881, "lithology_from": "38.00", "lithology_to": "42.00", "lithology_raw_data": "very silty, some clay", @@ -479152,7 +479152,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:29:43Z", "activity_submission": null, - "well_tag_number": 112847, + "well": 112847, "lithology_from": "2.00", "lithology_to": "71.00", "lithology_raw_data": "CLAY", @@ -479181,7 +479181,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "71.00", "lithology_to": "72.00", "lithology_raw_data": "fractured", @@ -479210,7 +479210,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:05:15Z", "activity_submission": null, - "well_tag_number": 112245, + "well": 112245, "lithology_from": "10.00", "lithology_to": "47.00", "lithology_raw_data": "CLAY", @@ -479239,7 +479239,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "192.00", "lithology_to": "224.00", "lithology_raw_data": null, @@ -479268,7 +479268,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-26T22:23:27Z", "activity_submission": null, - "well_tag_number": 112692, + "well": 112692, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "GRAVEL", @@ -479297,7 +479297,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T23:16:16Z", "activity_submission": null, - "well_tag_number": 100127, + "well": 100127, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "CLAY & BOULDERS", @@ -479326,7 +479326,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T20:55:04Z", "activity_submission": null, - "well_tag_number": 113136, + "well": 113136, "lithology_from": "470.00", "lithology_to": null, "lithology_raw_data": null, @@ -479355,7 +479355,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:32:54Z", "activity_submission": null, - "well_tag_number": 112486, + "well": 112486, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "MEDIUM/HARD; BOULDERS, CLAY, SAND", @@ -479384,7 +479384,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T19:09:21Z", "activity_submission": null, - "well_tag_number": 112719, + "well": 112719, "lithology_from": "211.00", "lithology_to": "215.00", "lithology_raw_data": "VOLCANIC BEDROCK", @@ -479413,7 +479413,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:07:06Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "SILTY CLAY", @@ -479442,7 +479442,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:43Z", "activity_submission": null, - "well_tag_number": 113179, + "well": 113179, "lithology_from": "120.00", "lithology_to": "135.00", "lithology_raw_data": "gravel", @@ -479471,7 +479471,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-01T17:10:38Z", "activity_submission": null, - "well_tag_number": 113173, + "well": 113173, "lithology_from": "25.00", "lithology_to": "38.00", "lithology_raw_data": "gravel", @@ -479500,7 +479500,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:00:57Z", "activity_submission": null, - "well_tag_number": 112575, + "well": 112575, "lithology_from": "137.00", "lithology_to": "272.00", "lithology_raw_data": "MEDIUM VOLCANIC WITH OCCASIONAL TRACES", @@ -479529,7 +479529,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:32:29Z", "activity_submission": null, - "well_tag_number": 112236, + "well": 112236, "lithology_from": "12.00", "lithology_to": "115.00", "lithology_raw_data": "MEDIUM HARD, GREEN, NO MATERIAL TYPE PROVIDED", @@ -479558,7 +479558,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "169.00", "lithology_to": "175.00", "lithology_raw_data": "CLAY/GREEN SHALE", @@ -479587,7 +479587,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, - "well_tag_number": 112235, + "well": 112235, "lithology_from": "23.00", "lithology_to": "85.00", "lithology_raw_data": "B/BL CLAY AND SAND LAYERS", @@ -479616,7 +479616,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, - "well_tag_number": 112550, + "well": 112550, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -479645,7 +479645,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T20:55:06Z", "activity_submission": null, - "well_tag_number": 112438, + "well": 112438, "lithology_from": "400.00", "lithology_to": "437.00", "lithology_raw_data": "SAND WITH SILT", @@ -479674,7 +479674,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:35:46Z", "activity_submission": null, - "well_tag_number": 113295, + "well": 113295, "lithology_from": "415.00", "lithology_to": "430.00", "lithology_raw_data": "sand with gravel", @@ -479703,7 +479703,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2015-03-08T19:26:20Z", "activity_submission": null, - "well_tag_number": 109912, + "well": 109912, "lithology_from": "81.00", "lithology_to": "95.00", "lithology_raw_data": "BLACK & WHITE GRANITE", @@ -479732,7 +479732,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "320.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK, FRACTURED", @@ -479761,7 +479761,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "167.00", "lithology_to": "180.00", "lithology_raw_data": "SHALE, SHANDSONE TIGHT", @@ -479790,7 +479790,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T04:57:52Z", "activity_submission": null, - "well_tag_number": 112957, + "well": 112957, "lithology_from": "2.00", "lithology_to": "5.00", "lithology_raw_data": "CLAY & SAND", @@ -479819,7 +479819,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-16T20:38:32Z", "activity_submission": null, - "well_tag_number": 113087, + "well": 113087, "lithology_from": "0.00", "lithology_to": "32.00", "lithology_raw_data": "clay and rocks", @@ -479848,7 +479848,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T05:43:20Z", "activity_submission": null, - "well_tag_number": 112483, + "well": 112483, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "FINE SAND, TRACES SILT", @@ -479877,7 +479877,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T22:12:33Z", "activity_submission": null, - "well_tag_number": 113143, + "well": 113143, "lithology_from": "6.00", "lithology_to": "279.00", "lithology_raw_data": null, @@ -479906,7 +479906,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:38:50Z", "activity_submission": null, - "well_tag_number": 112629, + "well": 112629, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "ORGANIC (DIRT AND GRASS)", @@ -479935,7 +479935,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:01:15Z", "activity_submission": null, - "well_tag_number": 112307, + "well": 112307, "lithology_from": "3.00", "lithology_to": "230.00", "lithology_raw_data": "DARK GREY BEDROCK", @@ -479964,7 +479964,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "121.00", "lithology_to": "123.00", "lithology_raw_data": null, @@ -479993,7 +479993,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T20:32:39Z", "activity_submission": null, - "well_tag_number": 112367, + "well": 112367, "lithology_from": "515.00", "lithology_to": "575.00", "lithology_raw_data": "PREDOMINATELY PINK AND WHITE GRANITE", @@ -480022,7 +480022,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "973.00", "lithology_to": "980.00", "lithology_raw_data": "fractured", @@ -480051,7 +480051,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-07T18:01:02Z", "activity_submission": null, - "well_tag_number": 112833, + "well": 112833, "lithology_from": "227.00", "lithology_to": "361.00", "lithology_raw_data": "grey/green/ white", @@ -480080,7 +480080,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:13:23Z", "activity_submission": null, - "well_tag_number": 112879, + "well": 112879, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "SAND & GRAVEL", @@ -480109,7 +480109,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T17:20:03Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "10.00", "lithology_to": "40.00", "lithology_raw_data": "Brownish clay", @@ -480138,7 +480138,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:39:46Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "229.00", "lithology_to": "232.00", "lithology_raw_data": null, @@ -480167,7 +480167,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T18:05:03Z", "activity_submission": null, - "well_tag_number": 113147, + "well": 113147, "lithology_from": "163.00", "lithology_to": "225.00", "lithology_raw_data": null, @@ -480196,7 +480196,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-02T19:06:23Z", "activity_submission": null, - "well_tag_number": 112740, + "well": 112740, "lithology_from": "165.00", "lithology_to": "207.00", "lithology_raw_data": "FINE SILTSTONE", @@ -480225,7 +480225,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:05:03Z", "activity_submission": null, - "well_tag_number": 113261, + "well": 113261, "lithology_from": "106.00", "lithology_to": "117.00", "lithology_raw_data": null, @@ -480254,7 +480254,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T21:03:00Z", "activity_submission": null, - "well_tag_number": 113216, + "well": 113216, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": "Overburden", @@ -480283,7 +480283,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:24:31Z", "activity_submission": null, - "well_tag_number": 112449, + "well": 112449, "lithology_from": "73.00", "lithology_to": "79.00", "lithology_raw_data": "and gravel", @@ -480312,7 +480312,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T22:54:50Z", "activity_submission": null, - "well_tag_number": 112993, + "well": 112993, "lithology_from": "27.00", "lithology_to": "29.00", "lithology_raw_data": "QUARTZ SEAM", @@ -480341,7 +480341,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:52Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": "NO INFORMATION PROVIDED", @@ -480370,7 +480370,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "117.00", "lithology_to": "159.00", "lithology_raw_data": "DRY SILT", @@ -480399,7 +480399,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, - "well_tag_number": 112463, + "well": 112463, "lithology_from": "147.00", "lithology_to": "178.00", "lithology_raw_data": null, @@ -480428,7 +480428,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-09T06:39:29Z", "activity_submission": null, - "well_tag_number": 112308, + "well": 112308, "lithology_from": "9.00", "lithology_to": "28.00", "lithology_raw_data": "MOIST CLAY", @@ -480457,7 +480457,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-17T16:22:03Z", "activity_submission": null, - "well_tag_number": 113033, + "well": 113033, "lithology_from": "51.00", "lithology_to": "56.00", "lithology_raw_data": "sand with gravel", @@ -480486,7 +480486,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "136.00", "lithology_to": "174.00", "lithology_raw_data": "VOLCANIC", @@ -480515,7 +480515,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:00:41Z", "activity_submission": null, - "well_tag_number": 112378, + "well": 112378, "lithology_from": "141.00", "lithology_to": "143.00", "lithology_raw_data": null, @@ -480544,7 +480544,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "71.00", "lithology_to": "74.00", "lithology_raw_data": null, @@ -480573,7 +480573,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "308.00", "lithology_to": "320.00", "lithology_raw_data": "GRAVEL", @@ -480602,7 +480602,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "257.00", "lithology_to": "262.00", "lithology_raw_data": "SILTY WITH GRAVEL", @@ -480631,7 +480631,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:41:55Z", "activity_submission": null, - "well_tag_number": 112271, + "well": 112271, "lithology_from": "300.00", "lithology_to": "360.00", "lithology_raw_data": null, @@ -480660,7 +480660,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:13:40Z", "activity_submission": null, - "well_tag_number": 112508, + "well": 112508, "lithology_from": "1.00", "lithology_to": "34.00", "lithology_raw_data": "GRAY SILTY SANDS & ROCK", @@ -480689,7 +480689,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:05:10Z", "activity_submission": null, - "well_tag_number": 112273, + "well": 112273, "lithology_from": "54.00", "lithology_to": "56.00", "lithology_raw_data": "and gravels", @@ -480718,7 +480718,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "203.00", "lithology_to": "205.00", "lithology_raw_data": "W.B. SAND AND GRAVEL, VERY SILTY", @@ -480747,7 +480747,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-01T22:08:27Z", "activity_submission": null, - "well_tag_number": 112826, + "well": 112826, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "TILL", @@ -480776,7 +480776,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-15T21:27:35Z", "activity_submission": null, - "well_tag_number": 112440, + "well": 112440, "lithology_from": "420.00", "lithology_to": "427.00", "lithology_raw_data": "CLAY/SILT", @@ -480805,7 +480805,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-11T18:02:25Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "195.00", "lithology_to": "205.00", "lithology_raw_data": "SILTSTONE", @@ -480834,7 +480834,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "5.00", "lithology_to": "6.00", "lithology_raw_data": "ORGANIC BLACK SOIL", @@ -480863,7 +480863,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T21:38:01Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "314.00", "lithology_to": "385.00", "lithology_raw_data": "VOLCANIC", @@ -480892,7 +480892,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "155.00", "lithology_to": "158.00", "lithology_raw_data": "MEDIUM-HARD, ORANGE LAVA ROCK", @@ -480921,7 +480921,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T03:46:45Z", "activity_submission": null, - "well_tag_number": 112480, + "well": 112480, "lithology_from": "220.00", "lithology_to": "240.00", "lithology_raw_data": "BEDROCK", @@ -480950,7 +480950,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "39.00", "lithology_to": "118.00", "lithology_raw_data": null, @@ -480979,7 +480979,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T16:52:16Z", "activity_submission": null, - "well_tag_number": 112963, + "well": 112963, "lithology_from": "36.00", "lithology_to": "54.00", "lithology_raw_data": "SAND, GRAVEL, COBBLES, SMALL BOULDERS", @@ -481008,7 +481008,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-22T21:38:45Z", "activity_submission": null, - "well_tag_number": 112854, + "well": 112854, "lithology_from": "475.00", "lithology_to": "503.00", "lithology_raw_data": "SILTSTONE & SHALE WITH A FEW FINE SANDSTONE STRINGERS", @@ -481037,7 +481037,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-19T20:55:26Z", "activity_submission": null, - "well_tag_number": 112630, + "well": 112630, "lithology_from": "200.00", "lithology_to": "340.00", "lithology_raw_data": "BEDROCK", @@ -481066,7 +481066,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:49:50Z", "activity_submission": null, - "well_tag_number": 112936, + "well": 112936, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "BROWN/GREY", @@ -481095,7 +481095,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-22T19:34:01Z", "activity_submission": null, - "well_tag_number": 112521, + "well": 112521, "lithology_from": "30.00", "lithology_to": "50.00", "lithology_raw_data": "BROWN FINE SANDS (DAMP)", @@ -481124,7 +481124,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T21:03:02Z", "activity_submission": null, - "well_tag_number": 113116, + "well": 113116, "lithology_from": "90.00", "lithology_to": "230.00", "lithology_raw_data": null, @@ -481153,7 +481153,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "100.00", "lithology_to": "160.00", "lithology_raw_data": "BEDROCK", @@ -481182,7 +481182,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T01:21:26Z", "activity_submission": null, - "well_tag_number": 112475, + "well": 112475, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; HARD LAYERS WITH CLAY SILT", @@ -481211,7 +481211,7 @@ "update_user": "PROXY_WELLS", "update_date": "2012-03-01T20:30:59Z", "activity_submission": null, - "well_tag_number": 105747, + "well": 105747, "lithology_from": "72.00", "lithology_to": "100.00", "lithology_raw_data": "SANDSTONE", @@ -481240,7 +481240,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-10T01:40:56Z", "activity_submission": null, - "well_tag_number": 112761, + "well": 112761, "lithology_from": "186.00", "lithology_to": "194.00", "lithology_raw_data": "SILTY, FINE SAND", @@ -481269,7 +481269,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:19:11Z", "activity_submission": null, - "well_tag_number": 112463, + "well": 112463, "lithology_from": "3.00", "lithology_to": "11.00", "lithology_raw_data": "till", @@ -481298,7 +481298,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T19:26:23Z", "activity_submission": null, - "well_tag_number": 112405, + "well": 112405, "lithology_from": "310.00", "lithology_to": "335.00", "lithology_raw_data": "CLAY", @@ -481327,7 +481327,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-13T21:03:59Z", "activity_submission": null, - "well_tag_number": 112344, + "well": 112344, "lithology_from": "141.00", "lithology_to": "325.00", "lithology_raw_data": "MEDIUM/HARD VOLCANIC BEDROCK", @@ -481356,7 +481356,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-08-23T19:09:12Z", "activity_submission": null, - "well_tag_number": 113199, + "well": 113199, "lithology_from": "125.00", "lithology_to": "140.00", "lithology_raw_data": "Shale", @@ -481385,7 +481385,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T18:37:22Z", "activity_submission": null, - "well_tag_number": 112513, + "well": 112513, "lithology_from": "32.00", "lithology_to": "53.00", "lithology_raw_data": null, @@ -481414,7 +481414,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T17:57:33Z", "activity_submission": null, - "well_tag_number": 112426, + "well": 112426, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "FINE, SAND, SILT", @@ -481443,7 +481443,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "26.00", "lithology_to": "28.00", "lithology_raw_data": "SILT, SAND, GRAVEL", @@ -481472,7 +481472,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T20:36:22Z", "activity_submission": null, - "well_tag_number": 112525, + "well": 112525, "lithology_from": "288.00", "lithology_to": "301.00", "lithology_raw_data": "MEDIUM HARD; SHALE", @@ -481501,7 +481501,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-13T21:03:09Z", "activity_submission": null, - "well_tag_number": 113032, + "well": 113032, "lithology_from": "40.00", "lithology_to": "45.00", "lithology_raw_data": "WET SILT", @@ -481530,7 +481530,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": "GRAVEL", @@ -481559,7 +481559,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "130.00", "lithology_to": "133.00", "lithology_raw_data": "SS S & P", @@ -481588,7 +481588,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:05:43Z", "activity_submission": null, - "well_tag_number": 112335, + "well": 112335, "lithology_from": "80.00", "lithology_to": "90.00", "lithology_raw_data": "DARK GREY FINE SAND", @@ -481617,7 +481617,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "126.00", "lithology_to": "140.00", "lithology_raw_data": "SHALE WITH SANDSTONE LENSES, MEDIUM HARD, DARK GREY", @@ -481646,7 +481646,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:29:59Z", "activity_submission": null, - "well_tag_number": 113189, + "well": 113189, "lithology_from": "57.00", "lithology_to": "65.00", "lithology_raw_data": "Sand, trace to some gravel, grey, damp", @@ -481675,7 +481675,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "118.00", "lithology_to": "123.00", "lithology_raw_data": "sand, fine-med", @@ -481704,7 +481704,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-06T22:44:57Z", "activity_submission": null, - "well_tag_number": 113007, + "well": 113007, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -481733,7 +481733,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T18:59:28Z", "activity_submission": null, - "well_tag_number": 112391, + "well": 112391, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": "SOIL", @@ -481762,7 +481762,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T21:56:02Z", "activity_submission": null, - "well_tag_number": 112526, + "well": 112526, "lithology_from": "30.00", "lithology_to": "43.00", "lithology_raw_data": "CLAY-TILL", @@ -481791,7 +481791,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T20:43:14Z", "activity_submission": null, - "well_tag_number": 113079, + "well": 113079, "lithology_from": "0.00", "lithology_to": "8.00", "lithology_raw_data": "sand, gravel, silt", @@ -481820,7 +481820,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "MEDIUM/HARD; COARSE GRAVEL, CEMENT LAYER AND CLAY", @@ -481849,7 +481849,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T00:34:14Z", "activity_submission": null, - "well_tag_number": 112319, + "well": 112319, "lithology_from": "85.00", "lithology_to": "333.00", "lithology_raw_data": "DARK GREY CRYSTALLINE ", @@ -481878,7 +481878,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T20:25:58Z", "activity_submission": null, - "well_tag_number": 112509, + "well": 112509, "lithology_from": "65.00", "lithology_to": "76.00", "lithology_raw_data": "LIGHT BROWN SILTY SANDS", @@ -481907,7 +481907,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T21:22:57Z", "activity_submission": null, - "well_tag_number": 112539, + "well": 112539, "lithology_from": "192.00", "lithology_to": "210.00", "lithology_raw_data": "SAND, FINE-MEDIUM, SILTSTONE-SHALE", @@ -481936,7 +481936,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:44:42Z", "activity_submission": null, - "well_tag_number": 112499, + "well": 112499, "lithology_from": "180.00", "lithology_to": "220.00", "lithology_raw_data": "BEDROCK", @@ -481965,7 +481965,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-08T20:32:25Z", "activity_submission": null, - "well_tag_number": 112838, + "well": 112838, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -481994,7 +481994,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T22:42:48Z", "activity_submission": null, - "well_tag_number": 112566, + "well": 112566, "lithology_from": "185.00", "lithology_to": "225.00", "lithology_raw_data": "BROWN SILTY FINE SAND", @@ -482023,7 +482023,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:22:45Z", "activity_submission": null, - "well_tag_number": 112422, + "well": 112422, "lithology_from": "26.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM SAND", @@ -482052,7 +482052,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:50:55Z", "activity_submission": null, - "well_tag_number": 112705, + "well": 112705, "lithology_from": "75.00", "lithology_to": "105.00", "lithology_raw_data": "VOLCANIC, SOME ASH", @@ -482081,7 +482081,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "436.00", "lithology_to": "438.00", "lithology_raw_data": "Shale dark grey", @@ -482110,7 +482110,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T18:07:07Z", "activity_submission": null, - "well_tag_number": 112868, + "well": 112868, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "BROWN GREY", @@ -482139,7 +482139,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T19:26:58Z", "activity_submission": null, - "well_tag_number": 112922, + "well": 112922, "lithology_from": "146.00", "lithology_to": "173.00", "lithology_raw_data": null, @@ -482168,7 +482168,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T18:06:40Z", "activity_submission": null, - "well_tag_number": 112578, + "well": 112578, "lithology_from": "19.00", "lithology_to": "135.00", "lithology_raw_data": "MEDIUM/HARD; VOLCANIC BEDROCK", @@ -482197,7 +482197,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "and gravel", @@ -482226,7 +482226,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T18:57:03Z", "activity_submission": null, - "well_tag_number": 113293, + "well": 113293, "lithology_from": "47.00", "lithology_to": "400.00", "lithology_raw_data": "shale & quartz", @@ -482255,7 +482255,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "97.00", "lithology_to": "110.00", "lithology_raw_data": null, @@ -482284,7 +482284,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T16:33:57Z", "activity_submission": null, - "well_tag_number": 112347, + "well": 112347, "lithology_from": "110.00", "lithology_to": "117.00", "lithology_raw_data": "till", @@ -482313,7 +482313,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T21:05:08Z", "activity_submission": null, - "well_tag_number": 112724, + "well": 112724, "lithology_from": "52.00", "lithology_to": "67.00", "lithology_raw_data": "FINE SAND WITH COBBLES AND BOULDERS", @@ -482342,7 +482342,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:31:02Z", "activity_submission": null, - "well_tag_number": 112547, + "well": 112547, "lithology_from": "6.00", "lithology_to": "25.00", "lithology_raw_data": "TILL", @@ -482371,7 +482371,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T17:42:12Z", "activity_submission": null, - "well_tag_number": 112663, + "well": 112663, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -482400,7 +482400,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T21:38:18Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "451.00", "lithology_to": "460.00", "lithology_raw_data": "WHITE/BLUE/GREEN LARGE FRACTURED ZONE, BROKEN BEDROCK (1\"-2.5\")", @@ -482429,7 +482429,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T18:28:44Z", "activity_submission": null, - "well_tag_number": 112402, + "well": 112402, "lithology_from": "30.00", "lithology_to": "33.00", "lithology_raw_data": "CLAY", @@ -482458,7 +482458,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T02:50:40Z", "activity_submission": null, - "well_tag_number": 112603, + "well": 112603, "lithology_from": "20.00", "lithology_to": "23.00", "lithology_raw_data": "GRAVEL", @@ -482487,7 +482487,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T21:50:11Z", "activity_submission": null, - "well_tag_number": 113141, + "well": 113141, "lithology_from": "0.00", "lithology_to": "67.00", "lithology_raw_data": "WASTE ROCK", @@ -482516,7 +482516,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T17:20:53Z", "activity_submission": null, - "well_tag_number": 113304, + "well": 113304, "lithology_from": "69.00", "lithology_to": "83.00", "lithology_raw_data": "sand", @@ -482545,7 +482545,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-17T23:17:53Z", "activity_submission": null, - "well_tag_number": 113262, + "well": 113262, "lithology_from": "95.00", "lithology_to": "105.00", "lithology_raw_data": "shale", @@ -482574,7 +482574,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-23T19:03:51Z", "activity_submission": null, - "well_tag_number": 112645, + "well": 112645, "lithology_from": "343.00", "lithology_to": "354.00", "lithology_raw_data": "sand", @@ -482603,7 +482603,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:00:58Z", "activity_submission": null, - "well_tag_number": 112696, + "well": 112696, "lithology_from": "36.00", "lithology_to": "40.50", "lithology_raw_data": "med. sands", @@ -482632,7 +482632,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T22:14:41Z", "activity_submission": null, - "well_tag_number": 112598, + "well": 112598, "lithology_from": "5.00", "lithology_to": "8.00", "lithology_raw_data": "BOULDER", @@ -482661,7 +482661,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "53.00", "lithology_to": "194.00", "lithology_raw_data": null, @@ -482690,7 +482690,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:38:26Z", "activity_submission": null, - "well_tag_number": 112591, + "well": 112591, "lithology_from": "60.00", "lithology_to": "80.00", "lithology_raw_data": "CLAY", @@ -482719,7 +482719,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T22:08:38Z", "activity_submission": null, - "well_tag_number": 113254, + "well": 113254, "lithology_from": "42.00", "lithology_to": "55.00", "lithology_raw_data": "shale", @@ -482748,7 +482748,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "190.00", "lithology_to": "233.00", "lithology_raw_data": "CLAY", @@ -482777,7 +482777,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "254.00", "lithology_to": "256.00", "lithology_raw_data": "CLAY", @@ -482806,7 +482806,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:05:36Z", "activity_submission": null, - "well_tag_number": 113056, + "well": 113056, "lithology_from": "80.00", "lithology_to": "96.00", "lithology_raw_data": "SILTY SAND AND GRAVEL", @@ -482835,7 +482835,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "15.00", "lithology_to": "35.00", "lithology_raw_data": "SILT", @@ -482864,7 +482864,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "30.00", "lithology_to": "39.00", "lithology_raw_data": "CLAYS AND SAND LAYERS ", @@ -482893,7 +482893,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:24:14Z", "activity_submission": null, - "well_tag_number": 113211, + "well": 113211, "lithology_from": "12.00", "lithology_to": "16.00", "lithology_raw_data": "till", @@ -482922,7 +482922,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T18:54:30Z", "activity_submission": null, - "well_tag_number": 112606, + "well": 112606, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM/HARD; GRAVEL, SAND, SILT", @@ -482951,7 +482951,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:21:38Z", "activity_submission": null, - "well_tag_number": 113252, + "well": 113252, "lithology_from": "15.00", "lithology_to": "95.00", "lithology_raw_data": "clay gravel", @@ -482980,7 +482980,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T18:09:26Z", "activity_submission": null, - "well_tag_number": 113251, + "well": 113251, "lithology_from": "40.00", "lithology_to": "47.00", "lithology_raw_data": "gravel", @@ -483009,7 +483009,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T18:22:30Z", "activity_submission": null, - "well_tag_number": 112470, + "well": 112470, "lithology_from": "290.00", "lithology_to": "293.00", "lithology_raw_data": null, @@ -483038,7 +483038,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-02-11T05:42:33Z", "activity_submission": null, - "well_tag_number": 112778, + "well": 112778, "lithology_from": "0.00", "lithology_to": null, "lithology_raw_data": null, @@ -483067,7 +483067,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T07:52:00Z", "activity_submission": null, - "well_tag_number": 112576, + "well": 112576, "lithology_from": "344.00", "lithology_to": "347.00", "lithology_raw_data": "VOLCANIC WITH WHITE", @@ -483096,7 +483096,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T17:49:24Z", "activity_submission": null, - "well_tag_number": 112732, + "well": 112732, "lithology_from": "22.00", "lithology_to": "27.00", "lithology_raw_data": "FINE AND SILTY BROWN SAND WITH SOME GRAVEL", @@ -483125,7 +483125,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:39:17Z", "activity_submission": null, - "well_tag_number": 112361, + "well": 112361, "lithology_from": "119.00", "lithology_to": "136.00", "lithology_raw_data": null, @@ -483154,7 +483154,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T00:16:03Z", "activity_submission": null, - "well_tag_number": 112706, + "well": 112706, "lithology_from": "18.00", "lithology_to": "130.00", "lithology_raw_data": "GRAVEL", @@ -483183,7 +483183,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "468.00", "lithology_to": "475.00", "lithology_raw_data": null, @@ -483212,7 +483212,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-04-12T19:42:50Z", "activity_submission": null, - "well_tag_number": 113016, + "well": 113016, "lithology_from": "0.00", "lithology_to": "13.00", "lithology_raw_data": "CLAY AND ROCKS", @@ -483241,7 +483241,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T23:22:30Z", "activity_submission": null, - "well_tag_number": 112944, + "well": 112944, "lithology_from": "55.00", "lithology_to": "65.00", "lithology_raw_data": null, @@ -483270,7 +483270,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, - "well_tag_number": 113185, + "well": 113185, "lithology_from": "14.00", "lithology_to": "34.00", "lithology_raw_data": "gravel & boulders", @@ -483299,7 +483299,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T23:39:17Z", "activity_submission": null, - "well_tag_number": 112316, + "well": 112316, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": "DARK BROWN TOPSOIL", @@ -483328,7 +483328,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:08:58Z", "activity_submission": null, - "well_tag_number": 112985, + "well": 112985, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -483357,7 +483357,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-01T20:27:52Z", "activity_submission": null, - "well_tag_number": 112736, + "well": 112736, "lithology_from": "35.00", "lithology_to": "46.00", "lithology_raw_data": "SAND WITH GRAVEL", @@ -483386,7 +483386,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T15:22:28Z", "activity_submission": null, - "well_tag_number": 112958, + "well": 112958, "lithology_from": "233.00", "lithology_to": "257.00", "lithology_raw_data": "SAND, CLAY, SCATTERED GRAVEL", @@ -483415,7 +483415,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": "BLASTED FILL", @@ -483444,7 +483444,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:08:52Z", "activity_submission": null, - "well_tag_number": 112385, + "well": 112385, "lithology_from": "180.00", "lithology_to": "260.00", "lithology_raw_data": "BLUE/GREY VOLCANIC WITH SEAMS OF MULTI-COLOURED GNEISS", @@ -483473,7 +483473,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T21:33:08Z", "activity_submission": null, - "well_tag_number": 112226, + "well": 112226, "lithology_from": "225.00", "lithology_to": "314.00", "lithology_raw_data": "VOLCANIC, LARGER GRAINED MATERIAL", @@ -483502,7 +483502,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T22:24:07Z", "activity_submission": null, - "well_tag_number": 112381, + "well": 112381, "lithology_from": "42.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -483531,7 +483531,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-16T16:34:46Z", "activity_submission": null, - "well_tag_number": 113184, + "well": 113184, "lithology_from": "3.00", "lithology_to": "6.00", "lithology_raw_data": "sand, fine-med", @@ -483560,7 +483560,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T17:42:27Z", "activity_submission": null, - "well_tag_number": 112967, + "well": 112967, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": "CLAY, TOPSOIL", @@ -483589,7 +483589,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-11T22:39:59Z", "activity_submission": null, - "well_tag_number": 113026, + "well": 113026, "lithology_from": "0.00", "lithology_to": "45.00", "lithology_raw_data": "BROWN CLAY", @@ -483618,7 +483618,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T18:21:54Z", "activity_submission": null, - "well_tag_number": 112590, + "well": 112590, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CEMENTED GRAVEL", @@ -483647,7 +483647,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T18:56:20Z", "activity_submission": null, - "well_tag_number": 112889, + "well": 112889, "lithology_from": "0.00", "lithology_to": "3.00", "lithology_raw_data": null, @@ -483676,7 +483676,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-15T16:46:47Z", "activity_submission": null, - "well_tag_number": 112800, + "well": 112800, "lithology_from": "56.00", "lithology_to": "69.00", "lithology_raw_data": "FINE GREY SAND, W.B.", @@ -483705,7 +483705,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T06:37:50Z", "activity_submission": null, - "well_tag_number": 112247, + "well": 112247, "lithology_from": "18.00", "lithology_to": "75.00", "lithology_raw_data": "SANDSTONE", @@ -483734,7 +483734,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "215.00", "lithology_to": "225.00", "lithology_raw_data": "SS MED HARD GRY", @@ -483763,7 +483763,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T05:21:11Z", "activity_submission": null, - "well_tag_number": 112242, + "well": 112242, "lithology_from": "26.00", "lithology_to": "60.00", "lithology_raw_data": "SANDSTONE", @@ -483792,7 +483792,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-22T00:30:50Z", "activity_submission": null, - "well_tag_number": 113190, + "well": 113190, "lithology_from": "135.00", "lithology_to": "168.00", "lithology_raw_data": "fine to medium", @@ -483821,7 +483821,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T05:04:02Z", "activity_submission": null, - "well_tag_number": 112254, + "well": 112254, "lithology_from": "42.00", "lithology_to": "48.00", "lithology_raw_data": "GREY CLAY", @@ -483850,7 +483850,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-18T15:30:30Z", "activity_submission": null, - "well_tag_number": 113035, + "well": 113035, "lithology_from": "123.00", "lithology_to": "128.00", "lithology_raw_data": null, @@ -483879,7 +483879,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "60.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVEL", @@ -483908,7 +483908,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:42:50Z", "activity_submission": null, - "well_tag_number": 112459, + "well": 112459, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "SILTY CLAY, MINOR ROCKS", @@ -483937,7 +483937,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-10T22:35:02Z", "activity_submission": null, - "well_tag_number": 112314, + "well": 112314, "lithology_from": "72.00", "lithology_to": "74.00", "lithology_raw_data": "CRYSTALLINE BEDROCK", @@ -483966,7 +483966,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-08T19:44:50Z", "activity_submission": null, - "well_tag_number": 112295, + "well": 112295, "lithology_from": "150.00", "lithology_to": "170.00", "lithology_raw_data": "VOLCANIC", @@ -483995,7 +483995,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-20T20:19:12Z", "activity_submission": null, - "well_tag_number": 112848, + "well": 112848, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -484024,7 +484024,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-24T19:39:55Z", "activity_submission": null, - "well_tag_number": 100200, + "well": 100200, "lithology_from": "31.00", "lithology_to": "38.00", "lithology_raw_data": null, @@ -484053,7 +484053,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "8.00", "lithology_to": "15.00", "lithology_raw_data": "CLAY WITH MIXED ROCKS", @@ -484082,7 +484082,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "980.00", "lithology_to": "994.00", "lithology_raw_data": null, @@ -484111,7 +484111,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T21:54:25Z", "activity_submission": null, - "well_tag_number": 112398, + "well": 112398, "lithology_from": "21.00", "lithology_to": "60.00", "lithology_raw_data": "SILT, SAND AND GRAVEL", @@ -484140,7 +484140,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-12T18:37:28Z", "activity_submission": null, - "well_tag_number": 113031, + "well": 113031, "lithology_from": "150.00", "lithology_to": "160.00", "lithology_raw_data": "MEDIUM BROWN GRAVEL", @@ -484169,7 +484169,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T21:20:56Z", "activity_submission": null, - "well_tag_number": 113281, + "well": 113281, "lithology_from": "136.00", "lithology_to": "142.00", "lithology_raw_data": "silt sand with gravel", @@ -484198,7 +484198,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-20T20:33:00Z", "activity_submission": null, - "well_tag_number": 113279, + "well": 113279, "lithology_from": "0.00", "lithology_to": "1.00", "lithology_raw_data": null, @@ -484227,7 +484227,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "128.00", "lithology_to": "130.00", "lithology_raw_data": "SANDSTONE", @@ -484256,7 +484256,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T14:58:50Z", "activity_submission": null, - "well_tag_number": 112460, + "well": 112460, "lithology_from": "120.00", "lithology_to": "160.00", "lithology_raw_data": "GRAVEL", @@ -484285,7 +484285,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-13T18:22:03Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "200.00", "lithology_to": "206.00", "lithology_raw_data": "GRAVEL", @@ -484314,7 +484314,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-21T16:48:20Z", "activity_submission": null, - "well_tag_number": 113185, + "well": 113185, "lithology_from": "34.00", "lithology_to": "63.00", "lithology_raw_data": "gravel", @@ -484343,7 +484343,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:48Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "242.00", "lithology_to": "256.00", "lithology_raw_data": "and silts", @@ -484372,7 +484372,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:00:44Z", "activity_submission": null, - "well_tag_number": 113067, + "well": 113067, "lithology_from": "120.00", "lithology_to": "122.00", "lithology_raw_data": "FINE SAND", @@ -484401,7 +484401,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-27T18:22:01Z", "activity_submission": null, - "well_tag_number": 113077, + "well": 113077, "lithology_from": "341.00", "lithology_to": "348.00", "lithology_raw_data": null, @@ -484430,7 +484430,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T23:55:44Z", "activity_submission": null, - "well_tag_number": 112656, + "well": 112656, "lithology_from": "28.00", "lithology_to": "47.00", "lithology_raw_data": "CEMENTED SAND AND GRAVEL", @@ -484459,7 +484459,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T18:30:47Z", "activity_submission": null, - "well_tag_number": 112550, + "well": 112550, "lithology_from": "280.00", "lithology_to": "300.00", "lithology_raw_data": null, @@ -484488,7 +484488,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "300.00", "lithology_to": "500.00", "lithology_raw_data": "SMALL/MEDIUM, SAND", @@ -484517,7 +484517,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-05T19:42:21Z", "activity_submission": null, - "well_tag_number": 112533, + "well": 112533, "lithology_from": "282.00", "lithology_to": "286.00", "lithology_raw_data": "MEDIUM-HARD; GRAVEL", @@ -484546,7 +484546,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T21:16:28Z", "activity_submission": null, - "well_tag_number": 112986, + "well": 112986, "lithology_from": "29.00", "lithology_to": "32.00", "lithology_raw_data": null, @@ -484575,7 +484575,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T20:30:54Z", "activity_submission": null, - "well_tag_number": 113014, + "well": 113014, "lithology_from": "19.00", "lithology_to": "29.00", "lithology_raw_data": "sand with gravel", @@ -484604,7 +484604,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, - "well_tag_number": 112500, + "well": 112500, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY", @@ -484633,7 +484633,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T00:00:56Z", "activity_submission": null, - "well_tag_number": 112231, + "well": 112231, "lithology_from": "5.00", "lithology_to": "9.00", "lithology_raw_data": "B/GREEN BEDROCK BLOCKS", @@ -484662,7 +484662,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T18:51:22Z", "activity_submission": null, - "well_tag_number": 113128, + "well": 113128, "lithology_from": "0.00", "lithology_to": "17.00", "lithology_raw_data": "SANDY BROWN CLAY", @@ -484691,7 +484691,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:22:46Z", "activity_submission": null, - "well_tag_number": 112329, + "well": 112329, "lithology_from": "240.00", "lithology_to": "260.00", "lithology_raw_data": "CLAY", @@ -484720,7 +484720,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T23:03:24Z", "activity_submission": null, - "well_tag_number": 112994, + "well": 112994, "lithology_from": "260.00", "lithology_to": "270.00", "lithology_raw_data": null, @@ -484749,7 +484749,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T21:53:23Z", "activity_submission": null, - "well_tag_number": 112564, + "well": 112564, "lithology_from": "86.00", "lithology_to": "100.00", "lithology_raw_data": "CEMENTED GRAVEL", @@ -484778,7 +484778,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:48Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "394.00", "lithology_to": "454.00", "lithology_raw_data": "GRAY & RED", @@ -484807,7 +484807,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T20:27:18Z", "activity_submission": null, - "well_tag_number": 112723, + "well": 112723, "lithology_from": "22.00", "lithology_to": "39.00", "lithology_raw_data": "CLEANER SAND AND GRAVEL WITH FINE SAND LAYERS", @@ -484836,7 +484836,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "147.00", "lithology_to": "215.00", "lithology_raw_data": "PEA GRAVEL & LARGER", @@ -484865,7 +484865,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T17:04:08Z", "activity_submission": null, - "well_tag_number": 112759, + "well": 112759, "lithology_from": "130.00", "lithology_to": "200.00", "lithology_raw_data": "BROWN SILTS, SANDS AND SOME GRAVELS", @@ -484894,7 +484894,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-24T20:36:54Z", "activity_submission": null, - "well_tag_number": 113150, + "well": 113150, "lithology_from": "19.00", "lithology_to": "28.00", "lithology_raw_data": "sand with gravel", @@ -484923,7 +484923,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "458.00", "lithology_to": "471.00", "lithology_raw_data": "SS, light grey, sugary, S&P", @@ -484952,7 +484952,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T22:16:36Z", "activity_submission": null, - "well_tag_number": 113069, + "well": 113069, "lithology_from": "35.00", "lithology_to": "39.00", "lithology_raw_data": "BROWN CLAY", @@ -484981,7 +484981,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "0.00", "lithology_to": "20.00", "lithology_raw_data": "TILL", @@ -485010,7 +485010,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T05:54:53Z", "activity_submission": null, - "well_tag_number": 112572, + "well": 112572, "lithology_from": "137.00", "lithology_to": "226.00", "lithology_raw_data": "GRANITE", @@ -485039,7 +485039,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:58:40Z", "activity_submission": null, - "well_tag_number": 112758, + "well": 112758, "lithology_from": "388.00", "lithology_to": "390.00", "lithology_raw_data": "BROWN CLAYS", @@ -485068,7 +485068,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T17:05:58Z", "activity_submission": null, - "well_tag_number": 112351, + "well": 112351, "lithology_from": "32.00", "lithology_to": "34.00", "lithology_raw_data": "and gravels", @@ -485097,7 +485097,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "123.00", "lithology_to": "128.00", "lithology_raw_data": null, @@ -485126,7 +485126,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T13:33:37Z", "activity_submission": null, - "well_tag_number": 112454, + "well": 112454, "lithology_from": "140.00", "lithology_to": "160.00", "lithology_raw_data": "COARSE SAND", @@ -485155,7 +485155,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-13T21:40:05Z", "activity_submission": null, - "well_tag_number": 113253, + "well": 113253, "lithology_from": "0.00", "lithology_to": "6.00", "lithology_raw_data": null, @@ -485184,7 +485184,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T16:40:38Z", "activity_submission": null, - "well_tag_number": 113010, + "well": 113010, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -485213,7 +485213,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-26T23:12:56Z", "activity_submission": null, - "well_tag_number": 112909, + "well": 112909, "lithology_from": "56.00", "lithology_to": "75.00", "lithology_raw_data": "SILT, CLAY, TRACE GRAVEL & WOOD", @@ -485242,7 +485242,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "GRAVEL", @@ -485271,7 +485271,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:02:02Z", "activity_submission": null, - "well_tag_number": 112700, + "well": 112700, "lithology_from": "0.00", "lithology_to": "30.00", "lithology_raw_data": "TILL", @@ -485300,7 +485300,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T20:43:30Z", "activity_submission": null, - "well_tag_number": 113307, + "well": 113307, "lithology_from": "0.00", "lithology_to": "11.00", "lithology_raw_data": null, @@ -485329,7 +485329,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "432.00", "lithology_to": "436.00", "lithology_raw_data": "SS fine brownish grey, med hard ", @@ -485358,7 +485358,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T20:32:25Z", "activity_submission": null, - "well_tag_number": 112270, + "well": 112270, "lithology_from": "46.00", "lithology_to": "101.00", "lithology_raw_data": "till", @@ -485387,7 +485387,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-03T22:36:57Z", "activity_submission": null, - "well_tag_number": 112527, + "well": 112527, "lithology_from": "77.00", "lithology_to": "81.00", "lithology_raw_data": "LIGHT AND DARK SHALE AND SILTSTONE", @@ -485416,7 +485416,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T18:34:19Z", "activity_submission": null, - "well_tag_number": 112615, + "well": 112615, "lithology_from": "96.00", "lithology_to": "116.00", "lithology_raw_data": null, @@ -485445,7 +485445,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-16T17:54:03Z", "activity_submission": null, - "well_tag_number": 112468, + "well": 112468, "lithology_from": "260.00", "lithology_to": "300.00", "lithology_raw_data": "BEDROCK", @@ -485474,7 +485474,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-07T19:53:42Z", "activity_submission": null, - "well_tag_number": 113013, + "well": 113013, "lithology_from": "360.00", "lithology_to": "400.00", "lithology_raw_data": "lighter green", @@ -485503,7 +485503,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "0.00", "lithology_to": "7.00", "lithology_raw_data": "and gravel", @@ -485532,7 +485532,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, - "well_tag_number": 112504, + "well": 112504, "lithology_from": "31.00", "lithology_to": "71.00", "lithology_raw_data": "BROWN SAND & GRAVEL", @@ -485561,7 +485561,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "284.00", "lithology_to": "412.00", "lithology_raw_data": "GREY/GREEN VOLCANIC", @@ -485590,7 +485590,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T18:21:14Z", "activity_submission": null, - "well_tag_number": 112267, + "well": 112267, "lithology_from": "292.00", "lithology_to": "320.00", "lithology_raw_data": "gravel and till", @@ -485619,7 +485619,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T20:28:00Z", "activity_submission": null, - "well_tag_number": 112336, + "well": 112336, "lithology_from": "85.00", "lithology_to": "152.00", "lithology_raw_data": "MEDIUM-SOFT, BROWN-GREY, SEMI-CEMENTED, SILT-SANDY LAYERS", @@ -485648,7 +485648,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:08:23Z", "activity_submission": null, - "well_tag_number": 112345, + "well": 112345, "lithology_from": "310.00", "lithology_to": "400.00", "lithology_raw_data": "GREY/GREEN/WHITE VOLCANIC WITH FEW GREEN AND WHITE TRACES", @@ -485677,7 +485677,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-24T20:09:07Z", "activity_submission": null, - "well_tag_number": 112652, + "well": 112652, "lithology_from": "200.00", "lithology_to": "400.00", "lithology_raw_data": "BEDROCK", @@ -485706,7 +485706,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T17:35:49Z", "activity_submission": null, - "well_tag_number": 112914, + "well": 112914, "lithology_from": "145.00", "lithology_to": "164.00", "lithology_raw_data": null, @@ -485735,7 +485735,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-09T21:10:15Z", "activity_submission": null, - "well_tag_number": 112760, + "well": 112760, "lithology_from": "74.00", "lithology_to": "76.00", "lithology_raw_data": null, @@ -485764,7 +485764,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T23:08:20Z", "activity_submission": null, - "well_tag_number": 112229, + "well": 112229, "lithology_from": "220.00", "lithology_to": "420.00", "lithology_raw_data": "SHALE BEDROCK", @@ -485793,7 +485793,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T22:20:48Z", "activity_submission": null, - "well_tag_number": 112278, + "well": 112278, "lithology_from": "204.00", "lithology_to": "242.00", "lithology_raw_data": null, @@ -485822,7 +485822,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "489.00", "lithology_to": "492.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH SMALL WHITE IN SEAM", @@ -485851,7 +485851,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T20:01:34Z", "activity_submission": null, - "well_tag_number": 112878, + "well": 112878, "lithology_from": "0.00", "lithology_to": "18.00", "lithology_raw_data": "cobbles", @@ -485880,7 +485880,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-16T17:34:00Z", "activity_submission": null, - "well_tag_number": 113118, + "well": 113118, "lithology_from": "180.00", "lithology_to": "185.00", "lithology_raw_data": "gravel", @@ -485909,7 +485909,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T18:52:55Z", "activity_submission": null, - "well_tag_number": 112695, + "well": 112695, "lithology_from": "118.00", "lithology_to": "202.00", "lithology_raw_data": "BASALTS", @@ -485938,7 +485938,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:10:26Z", "activity_submission": null, - "well_tag_number": 112356, + "well": 112356, "lithology_from": "75.00", "lithology_to": "75.00", "lithology_raw_data": "gravel silt", @@ -485967,7 +485967,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-28T23:33:15Z", "activity_submission": null, - "well_tag_number": 112708, + "well": 112708, "lithology_from": "94.00", "lithology_to": "355.00", "lithology_raw_data": "BASALT BEDROCK", @@ -485996,7 +485996,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T23:15:09Z", "activity_submission": null, - "well_tag_number": 112701, + "well": 112701, "lithology_from": "35.00", "lithology_to": "45.00", "lithology_raw_data": null, @@ -486025,7 +486025,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-10-05T22:11:53Z", "activity_submission": null, - "well_tag_number": 113552, + "well": 113552, "lithology_from": "262.00", "lithology_to": "265.00", "lithology_raw_data": "SILT", @@ -486054,7 +486054,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T02:18:36Z", "activity_submission": null, - "well_tag_number": 112235, + "well": 112235, "lithology_from": "85.00", "lithology_to": "125.00", "lithology_raw_data": "MEDIUM/SOFT PACKED SAND", @@ -486083,7 +486083,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-15T17:19:43Z", "activity_submission": null, - "well_tag_number": 113115, + "well": 113115, "lithology_from": "5.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -486112,7 +486112,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-12-09T17:56:10Z", "activity_submission": null, - "well_tag_number": 102666, + "well": 102666, "lithology_from": "168.00", "lithology_to": "192.00", "lithology_raw_data": "SS HARD FINE GRY", @@ -486141,7 +486141,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T20:52:21Z", "activity_submission": null, - "well_tag_number": 112224, + "well": 112224, "lithology_from": "280.00", "lithology_to": "284.00", "lithology_raw_data": "GREY/WHITE VOLCANIC WITH WHITE", @@ -486170,7 +486170,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T21:58:22Z", "activity_submission": null, - "well_tag_number": 112937, + "well": 112937, "lithology_from": "100.00", "lithology_to": "175.00", "lithology_raw_data": "VOLCANIC ", @@ -486199,7 +486199,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-18T19:23:13Z", "activity_submission": null, - "well_tag_number": 113130, + "well": 113130, "lithology_from": "22.00", "lithology_to": "37.00", "lithology_raw_data": "SILT AND SAND", @@ -486228,7 +486228,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-05-10T21:51:28Z", "activity_submission": null, - "well_tag_number": 113080, + "well": 113080, "lithology_from": "50.00", "lithology_to": "260.00", "lithology_raw_data": "Siltstone/shale, Dark Grey, loose/med, dry", @@ -486257,7 +486257,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T06:34:38Z", "activity_submission": null, - "well_tag_number": 112386, + "well": 112386, "lithology_from": "100.00", "lithology_to": "410.00", "lithology_raw_data": "BLACK/GREY/WHITE, VOLCANIC WITH OCCASIONAL TRACES", @@ -486286,7 +486286,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T08:15:15Z", "activity_submission": null, - "well_tag_number": 112786, + "well": 112786, "lithology_from": "10.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -486315,7 +486315,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-06-19T23:13:46Z", "activity_submission": null, - "well_tag_number": 113170, + "well": 113170, "lithology_from": "225.00", "lithology_to": "270.00", "lithology_raw_data": "Blackish silty clayish", @@ -486344,7 +486344,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-13T19:04:42Z", "activity_submission": null, - "well_tag_number": 113179, + "well": 113179, "lithology_from": "0.00", "lithology_to": "40.00", "lithology_raw_data": "gravel", @@ -486373,7 +486373,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-25T18:08:20Z", "activity_submission": null, - "well_tag_number": 113309, + "well": 113309, "lithology_from": "348.00", "lithology_to": "395.00", "lithology_raw_data": "bedrock", @@ -486402,7 +486402,7 @@ "update_user": "PROXY_WELLS", "update_date": "2016-12-03T22:40:13Z", "activity_submission": null, - "well_tag_number": 112227, + "well": 112227, "lithology_from": "220.00", "lithology_to": "224.00", "lithology_raw_data": "GREY/WG VOLCANIC FELDSPAR", @@ -486431,7 +486431,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T17:58:01Z", "activity_submission": null, - "well_tag_number": 112330, + "well": 112330, "lithology_from": "165.00", "lithology_to": "195.00", "lithology_raw_data": "SILTSTONE", @@ -486460,7 +486460,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T04:27:08Z", "activity_submission": null, - "well_tag_number": 112346, + "well": 112346, "lithology_from": "160.00", "lithology_to": "240.00", "lithology_raw_data": "WHITE/PINK/BLACK/GREY - VOLCANIC - SEVERAL FRACTURES", @@ -486489,7 +486489,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T00:20:18Z", "activity_submission": null, - "well_tag_number": 112473, + "well": 112473, "lithology_from": "30.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM TO COARSE SAND", @@ -486518,7 +486518,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-11T23:15:08Z", "activity_submission": null, - "well_tag_number": 112601, + "well": 112601, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "SOFT/MEDIUM; GRAVEL", @@ -486547,7 +486547,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T17:32:27Z", "activity_submission": null, - "well_tag_number": 112558, + "well": 112558, "lithology_from": "57.00", "lithology_to": "120.00", "lithology_raw_data": null, @@ -486576,7 +486576,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T19:00:49Z", "activity_submission": null, - "well_tag_number": 112429, + "well": 112429, "lithology_from": "40.00", "lithology_to": "60.00", "lithology_raw_data": "CLAY WITH SILT AND GRAVEL", @@ -486605,7 +486605,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2010-02-23T21:20:21Z", "activity_submission": null, - "well_tag_number": 100001, + "well": 100001, "lithology_from": "2.00", "lithology_to": "13.00", "lithology_raw_data": "GRAVEL, SILTY BROWN WITH CLAY LAYERS", @@ -486634,7 +486634,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:51:58Z", "activity_submission": null, - "well_tag_number": 112362, + "well": 112362, "lithology_from": "100.00", "lithology_to": "120.00", "lithology_raw_data": "GRAVELS, SAND", @@ -486663,7 +486663,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T22:07:05Z", "activity_submission": null, - "well_tag_number": 112447, + "well": 112447, "lithology_from": "300.00", "lithology_to": "308.00", "lithology_raw_data": "CLAY", @@ -486692,7 +486692,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-08T16:08:46Z", "activity_submission": null, - "well_tag_number": 112753, + "well": 112753, "lithology_from": "64.00", "lithology_to": "69.00", "lithology_raw_data": "W.B. SAND AND GRAVEL", @@ -486721,7 +486721,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-08T22:11:59Z", "activity_submission": null, - "well_tag_number": 113108, + "well": 113108, "lithology_from": "50.00", "lithology_to": "68.00", "lithology_raw_data": "till", @@ -486750,7 +486750,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-02T22:11:51Z", "activity_submission": null, - "well_tag_number": 113093, + "well": 113093, "lithology_from": "160.00", "lithology_to": "167.00", "lithology_raw_data": "VOLCANICS", @@ -486779,7 +486779,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T20:19:10Z", "activity_submission": null, - "well_tag_number": 112583, + "well": 112583, "lithology_from": "70.00", "lithology_to": "90.00", "lithology_raw_data": "SHALE, SANDSTONE LENSES", @@ -486808,7 +486808,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-19T17:55:29Z", "activity_submission": null, - "well_tag_number": 112504, + "well": 112504, "lithology_from": "71.00", "lithology_to": "78.00", "lithology_raw_data": "BROWN GREVEL WITH LESS SAND", @@ -486837,7 +486837,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-06-29T19:44:20Z", "activity_submission": null, - "well_tag_number": 113212, + "well": 113212, "lithology_from": "24.00", "lithology_to": "50.00", "lithology_raw_data": null, @@ -486866,7 +486866,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T20:50:44Z", "activity_submission": null, - "well_tag_number": 112538, + "well": 112538, "lithology_from": "19.00", "lithology_to": "33.00", "lithology_raw_data": "FINE TO MEDIUM SAND AND SILT", @@ -486895,7 +486895,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T16:54:58Z", "activity_submission": null, - "well_tag_number": 112328, + "well": 112328, "lithology_from": "132.00", "lithology_to": "144.00", "lithology_raw_data": "COARSE GRAVEL AND SAND", @@ -486924,7 +486924,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:00:57Z", "activity_submission": null, - "well_tag_number": 112484, + "well": 112484, "lithology_from": "20.00", "lithology_to": "40.00", "lithology_raw_data": "MEDIUM/SOFT; GRAVEL SAND", @@ -486953,7 +486953,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-03T23:37:23Z", "activity_submission": null, - "well_tag_number": 112230, + "well": 112230, "lithology_from": "0.00", "lithology_to": "4.00", "lithology_raw_data": " ORGANICS", @@ -486982,7 +486982,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:52:31Z", "activity_submission": null, - "well_tag_number": 112858, + "well": 112858, "lithology_from": "77.00", "lithology_to": "88.00", "lithology_raw_data": "BROWN SANDSTONE/GREY SHALE LAYERS", @@ -487011,7 +487011,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T18:11:38Z", "activity_submission": null, - "well_tag_number": 112857, + "well": 112857, "lithology_from": "267.00", "lithology_to": "280.00", "lithology_raw_data": "FINE, FRIABLE, DIRTY", @@ -487040,7 +487040,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-04T07:45:42Z", "activity_submission": null, - "well_tag_number": 112250, + "well": 112250, "lithology_from": "127.00", "lithology_to": "137.00", "lithology_raw_data": "CONGLOMERATE", @@ -487069,7 +487069,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-23T19:29:15Z", "activity_submission": null, - "well_tag_number": 112860, + "well": 112860, "lithology_from": "28.00", "lithology_to": "40.00", "lithology_raw_data": "SANDSTONE & SHALE LAYERED, MEDIUM SOFT, BRWON GREY", @@ -487098,7 +487098,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T21:06:41Z", "activity_submission": null, - "well_tag_number": 112373, + "well": 112373, "lithology_from": "1.00", "lithology_to": "28.00", "lithology_raw_data": null, @@ -487127,7 +487127,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-31T22:25:24Z", "activity_submission": null, - "well_tag_number": 112726, + "well": 112726, "lithology_from": "271.00", "lithology_to": "580.00", "lithology_raw_data": "GRANITE BEDROCK", @@ -487156,7 +487156,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-27T18:29:13Z", "activity_submission": null, - "well_tag_number": 112916, + "well": 112916, "lithology_from": "127.00", "lithology_to": "135.00", "lithology_raw_data": null, @@ -487185,7 +487185,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-04-25T20:28:31Z", "activity_submission": null, - "well_tag_number": 113058, + "well": 113058, "lithology_from": "2.00", "lithology_to": "17.00", "lithology_raw_data": "BROWN CLAY", @@ -487214,7 +487214,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-03T19:05:15Z", "activity_submission": null, - "well_tag_number": 112747, + "well": 112747, "lithology_from": "84.00", "lithology_to": "151.00", "lithology_raw_data": "BIT LOOSER, DENSE CLAY WITH SILT LAYERS", @@ -487243,7 +487243,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T17:06:45Z", "activity_submission": null, - "well_tag_number": 112710, + "well": 112710, "lithology_from": "45.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -487272,7 +487272,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-09T20:38:35Z", "activity_submission": null, - "well_tag_number": 112563, + "well": 112563, "lithology_from": "120.00", "lithology_to": "140.00", "lithology_raw_data": "DENSE CLAY LAYER, ANGULAR GRAVEL", @@ -487301,7 +487301,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:07:02Z", "activity_submission": null, - "well_tag_number": 112399, + "well": 112399, "lithology_from": "195.00", "lithology_to": "220.00", "lithology_raw_data": null, @@ -487330,7 +487330,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-11T05:26:06Z", "activity_submission": null, - "well_tag_number": 112327, + "well": 112327, "lithology_from": "270.00", "lithology_to": "280.00", "lithology_raw_data": "PURPLE-GREY VOLCANIC ROCK", @@ -487359,7 +487359,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T21:38:54Z", "activity_submission": null, - "well_tag_number": 112274, + "well": 112274, "lithology_from": "95.00", "lithology_to": "97.00", "lithology_raw_data": null, @@ -487388,7 +487388,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-12T19:42:33Z", "activity_submission": null, - "well_tag_number": 112610, + "well": 112610, "lithology_from": "33.00", "lithology_to": "35.00", "lithology_raw_data": null, @@ -487417,7 +487417,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-25T00:49:28Z", "activity_submission": null, - "well_tag_number": 112658, + "well": 112658, "lithology_from": "0.00", "lithology_to": "10.00", "lithology_raw_data": null, @@ -487446,7 +487446,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-06T20:20:09Z", "activity_submission": null, - "well_tag_number": 112830, + "well": 112830, "lithology_from": "6.00", "lithology_to": "12.00", "lithology_raw_data": null, @@ -487475,7 +487475,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-01-13T00:44:10Z", "activity_submission": null, - "well_tag_number": 112612, + "well": 112612, "lithology_from": "110.00", "lithology_to": "145.00", "lithology_raw_data": null, @@ -487504,7 +487504,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-24T15:46:44Z", "activity_submission": null, - "well_tag_number": 113299, + "well": 113299, "lithology_from": "218.00", "lithology_to": "700.00", "lithology_raw_data": null, @@ -487533,7 +487533,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-05T16:12:47Z", "activity_submission": null, - "well_tag_number": 112260, + "well": 112260, "lithology_from": "1.00", "lithology_to": "14.00", "lithology_raw_data": "FILL / GRAVEL", @@ -487562,7 +487562,7 @@ "update_user": "PROXY_WELLS", "update_date": "2017-12-04T18:25:35Z", "activity_submission": null, - "well_tag_number": 112996, + "well": 112996, "lithology_from": "30.00", "lithology_to": "102.00", "lithology_raw_data": "siltstone shale", @@ -487591,7 +487591,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-30T16:47:34Z", "activity_submission": null, - "well_tag_number": 112709, + "well": 112709, "lithology_from": "35.00", "lithology_to": "55.00", "lithology_raw_data": null, @@ -487620,7 +487620,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-14T14:08:29Z", "activity_submission": null, - "well_tag_number": 112843, + "well": 112843, "lithology_from": "113.00", "lithology_to": "117.00", "lithology_raw_data": "CLAY", @@ -487649,7 +487649,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-27T19:12:10Z", "activity_submission": null, - "well_tag_number": 112697, + "well": 112697, "lithology_from": "130.00", "lithology_to": "140.00", "lithology_raw_data": "VOLCANIC", @@ -487678,7 +487678,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-06T14:04:21Z", "activity_submission": null, - "well_tag_number": 112545, + "well": 112545, "lithology_from": "200.00", "lithology_to": "300.00", "lithology_raw_data": "BASALT ASH ZONES, BEDROCK", @@ -487707,7 +487707,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-07-21T19:12:52Z", "activity_submission": null, - "well_tag_number": 113294, + "well": 113294, "lithology_from": "292.00", "lithology_to": "294.00", "lithology_raw_data": null, @@ -487736,7 +487736,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-18T21:56:28Z", "activity_submission": null, - "well_tag_number": 112500, + "well": 112500, "lithology_from": "160.00", "lithology_to": "230.00", "lithology_raw_data": "CLAY", @@ -487765,7 +487765,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-21T21:25:03Z", "activity_submission": null, - "well_tag_number": 112805, + "well": 112805, "lithology_from": "0.00", "lithology_to": "5.00", "lithology_raw_data": null, @@ -487794,7 +487794,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-12T18:28:09Z", "activity_submission": null, - "well_tag_number": 112359, + "well": 112359, "lithology_from": null, "lithology_to": null, "lithology_raw_data": null, @@ -487823,7 +487823,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-15T06:51:21Z", "activity_submission": null, - "well_tag_number": 112423, + "well": 112423, "lithology_from": "610.00", "lithology_to": "612.00", "lithology_raw_data": "SAND", @@ -487852,7 +487852,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-14T21:39:37Z", "activity_submission": null, - "well_tag_number": 112412, + "well": 112412, "lithology_from": "0.00", "lithology_to": "28.00", "lithology_raw_data": "TILL", @@ -487881,7 +487881,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-13T22:09:32Z", "activity_submission": null, - "well_tag_number": 112400, + "well": 112400, "lithology_from": "25.00", "lithology_to": "35.00", "lithology_raw_data": "BR SAND + GRAVEL + COBBLES", @@ -487910,7 +487910,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-20T19:35:20Z", "activity_submission": null, - "well_tag_number": 112514, + "well": 112514, "lithology_from": "2.00", "lithology_to": "8.00", "lithology_raw_data": null, @@ -487939,7 +487939,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2016-12-17T06:55:24Z", "activity_submission": null, - "well_tag_number": 112487, + "well": 112487, "lithology_from": "120.00", "lithology_to": "200.00", "lithology_raw_data": "MEDIUM/HARD; COMPRESSED GRAVELS", @@ -487968,7 +487968,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-28T19:27:39Z", "activity_submission": null, - "well_tag_number": 112976, + "well": 112976, "lithology_from": "15.00", "lithology_to": "42.00", "lithology_raw_data": null, @@ -487997,7 +487997,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-03-24T21:01:48Z", "activity_submission": null, - "well_tag_number": 112883, + "well": 112883, "lithology_from": "454.00", "lithology_to": "500.00", "lithology_raw_data": null, @@ -488026,7 +488026,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-10T06:20:47Z", "activity_submission": null, - "well_tag_number": 112573, + "well": 112573, "lithology_from": "114.00", "lithology_to": "135.00", "lithology_raw_data": "VOLCANIC", @@ -488055,7 +488055,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-02-11T21:02:16Z", "activity_submission": null, - "well_tag_number": 112794, + "well": 112794, "lithology_from": "27.00", "lithology_to": "30.00", "lithology_raw_data": null, @@ -488084,7 +488084,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-01-05T19:52:37Z", "activity_submission": null, - "well_tag_number": 112534, + "well": 112534, "lithology_from": "90.00", "lithology_to": "100.00", "lithology_raw_data": "ANGULAR GRAVEL", @@ -488113,7 +488113,7 @@ "update_user": "PROXY_EWELLS_USER", "update_date": "2017-05-31T22:44:26Z", "activity_submission": null, - "well_tag_number": 113172, + "well": 113172, "lithology_from": "440.00", "lithology_to": "442.00", "lithology_raw_data": "Shale, fine SS and siltstone layered", @@ -511208,8 +511208,8 @@ "update_date": null, "activity_submission": null, "well": 112316, - "screen_from": "192.00", - "screen_to": "192.00", + "start": "192.00", + "end": "192.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511225,8 +511225,8 @@ "update_date": null, "activity_submission": null, "well": 112316, - "screen_from": "195.00", - "screen_to": "200.00", + "start": "195.00", + "end": "200.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -511242,8 +511242,8 @@ "update_date": null, "activity_submission": null, "well": 113286, - "screen_from": "99.00", - "screen_to": "101.00", + "start": "99.00", + "end": "101.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -511259,8 +511259,8 @@ "update_date": null, "activity_submission": null, "well": 113270, - "screen_from": "73.00", - "screen_to": "76.00", + "start": "73.00", + "end": "76.00", "internal_diameter": "8.00", "assembly_type": "K_RISER", "slot_size": null @@ -511276,8 +511276,8 @@ "update_date": null, "activity_submission": null, "well": 112976, - "screen_from": "58.50", - "screen_to": "59.00", + "start": "58.50", + "end": "59.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511293,8 +511293,8 @@ "update_date": null, "activity_submission": null, "well": 112222, - "screen_from": "37.50", - "screen_to": "137.50", + "start": "37.50", + "end": "137.50", "internal_diameter": "6.00", "assembly_type": null, "slot_size": null @@ -511310,8 +511310,8 @@ "update_date": null, "activity_submission": null, "well": 112251, - "screen_from": "70.00", - "screen_to": "90.00", + "start": "70.00", + "end": "90.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "10.00" @@ -511327,8 +511327,8 @@ "update_date": null, "activity_submission": null, "well": 112535, - "screen_from": "28.00", - "screen_to": "31.00", + "start": "28.00", + "end": "31.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -511344,8 +511344,8 @@ "update_date": null, "activity_submission": null, "well": 112936, - "screen_from": "243.00", - "screen_to": "263.00", + "start": "243.00", + "end": "263.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -511361,8 +511361,8 @@ "update_date": null, "activity_submission": null, "well": 113270, - "screen_from": "86.00", - "screen_to": "91.00", + "start": "86.00", + "end": "91.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -511378,8 +511378,8 @@ "update_date": null, "activity_submission": null, "well": 113212, - "screen_from": "248.00", - "screen_to": "252.06", + "start": "248.00", + "end": "252.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -511395,8 +511395,8 @@ "update_date": null, "activity_submission": null, "well": 113285, - "screen_from": "86.00", - "screen_to": "91.00", + "start": "86.00", + "end": "91.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511412,8 +511412,8 @@ "update_date": null, "activity_submission": null, "well": 112276, - "screen_from": "133.01", - "screen_to": "133.05", + "start": "133.01", + "end": "133.05", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511429,8 +511429,8 @@ "update_date": null, "activity_submission": null, "well": 112347, - "screen_from": "129.08", - "screen_to": "134.01", + "start": "129.08", + "end": "134.01", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -511446,8 +511446,8 @@ "update_date": null, "activity_submission": null, "well": 113036, - "screen_from": "620.00", - "screen_to": "640.00", + "start": "620.00", + "end": "640.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -511463,8 +511463,8 @@ "update_date": "2017-03-09T21:30:00Z", "activity_submission": null, "well": 112577, - "screen_from": "30.00", - "screen_to": "34.00", + "start": "30.00", + "end": "34.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -511480,8 +511480,8 @@ "update_date": null, "activity_submission": null, "well": 112795, - "screen_from": "74.00", - "screen_to": "84.00", + "start": "74.00", + "end": "84.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "125.00" @@ -511497,8 +511497,8 @@ "update_date": null, "activity_submission": null, "well": 113212, - "screen_from": "243.02", - "screen_to": "243.06", + "start": "243.02", + "end": "243.06", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511514,8 +511514,8 @@ "update_date": null, "activity_submission": null, "well": 113066, - "screen_from": "110.00", - "screen_to": "121.00", + "start": "110.00", + "end": "121.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -511531,8 +511531,8 @@ "update_date": null, "activity_submission": null, "well": 113151, - "screen_from": "168.00", - "screen_to": "171.00", + "start": "168.00", + "end": "171.00", "internal_diameter": "5.50", "assembly_type": "RISER_PIPE", "slot_size": null @@ -511548,8 +511548,8 @@ "update_date": null, "activity_submission": null, "well": 112876, - "screen_from": "93.83", - "screen_to": "97.83", + "start": "93.83", + "end": "97.83", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -511565,8 +511565,8 @@ "update_date": null, "activity_submission": null, "well": 112290, - "screen_from": "96.80", - "screen_to": "101.50", + "start": "96.80", + "end": "101.50", "internal_diameter": "4.00", "assembly_type": null, "slot_size": "30.00" @@ -511582,8 +511582,8 @@ "update_date": null, "activity_submission": null, "well": 112492, - "screen_from": "346.50", - "screen_to": "349.00", + "start": "346.50", + "end": "349.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -511599,8 +511599,8 @@ "update_date": null, "activity_submission": null, "well": 112481, - "screen_from": "92.00", - "screen_to": "92.50", + "start": "92.00", + "end": "92.50", "internal_diameter": null, "assembly_type": null, "slot_size": null @@ -511616,8 +511616,8 @@ "update_date": null, "activity_submission": null, "well": 112959, - "screen_from": "82.00", - "screen_to": "86.00", + "start": "82.00", + "end": "86.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -511633,8 +511633,8 @@ "update_date": null, "activity_submission": null, "well": 112533, - "screen_from": "260.00", - "screen_to": "272.00", + "start": "260.00", + "end": "272.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -511650,8 +511650,8 @@ "update_date": null, "activity_submission": null, "well": 112606, - "screen_from": "274.00", - "screen_to": "278.00", + "start": "274.00", + "end": "278.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -511667,8 +511667,8 @@ "update_date": null, "activity_submission": null, "well": 112860, - "screen_from": "281.00", - "screen_to": "301.00", + "start": "281.00", + "end": "301.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -511684,8 +511684,8 @@ "update_date": null, "activity_submission": null, "well": 112646, - "screen_from": "72.08", - "screen_to": "73.00", + "start": "72.08", + "end": "73.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511701,8 +511701,8 @@ "update_date": null, "activity_submission": null, "well": 112771, - "screen_from": "302.00", - "screen_to": "322.00", + "start": "302.00", + "end": "322.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": null @@ -511718,8 +511718,8 @@ "update_date": null, "activity_submission": null, "well": 112381, - "screen_from": "118.06", - "screen_to": "118.10", + "start": "118.06", + "end": "118.10", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511735,8 +511735,8 @@ "update_date": null, "activity_submission": null, "well": 112604, - "screen_from": "216.00", - "screen_to": "220.00", + "start": "216.00", + "end": "220.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -511752,8 +511752,8 @@ "update_date": null, "activity_submission": null, "well": 113137, - "screen_from": "95.08", - "screen_to": "96.00", + "start": "95.08", + "end": "96.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511769,8 +511769,8 @@ "update_date": null, "activity_submission": null, "well": 112595, - "screen_from": "109.00", - "screen_to": "111.00", + "start": "109.00", + "end": "111.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -511786,8 +511786,8 @@ "update_date": null, "activity_submission": null, "well": 113170, - "screen_from": "317.00", - "screen_to": "457.00", + "start": "317.00", + "end": "457.00", "internal_diameter": "8.00", "assembly_type": "RISER_PIPE", "slot_size": "30.00" @@ -511803,8 +511803,8 @@ "update_date": "2016-12-09T20:18:57Z", "activity_submission": null, "well": 112263, - "screen_from": "76.00", - "screen_to": "80.00", + "start": "76.00", + "end": "80.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -511820,8 +511820,8 @@ "update_date": null, "activity_submission": null, "well": 113218, - "screen_from": "66.00", - "screen_to": "70.00", + "start": "66.00", + "end": "70.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -511837,8 +511837,8 @@ "update_date": null, "activity_submission": null, "well": 113124, - "screen_from": "584.00", - "screen_to": "585.00", + "start": "584.00", + "end": "585.00", "internal_diameter": "16.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511854,8 +511854,8 @@ "update_date": null, "activity_submission": null, "well": 112484, - "screen_from": "100.00", - "screen_to": "116.00", + "start": "100.00", + "end": "116.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": null @@ -511871,8 +511871,8 @@ "update_date": null, "activity_submission": null, "well": 112895, - "screen_from": "114.00", - "screen_to": "118.00", + "start": "114.00", + "end": "118.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -511888,8 +511888,8 @@ "update_date": null, "activity_submission": null, "well": 112239, - "screen_from": "289.00", - "screen_to": "289.30", + "start": "289.00", + "end": "289.30", "internal_diameter": "6.00", "assembly_type": null, "slot_size": null @@ -511905,8 +511905,8 @@ "update_date": null, "activity_submission": null, "well": 112955, - "screen_from": "65.50", - "screen_to": "66.00", + "start": "65.50", + "end": "66.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511922,8 +511922,8 @@ "update_date": null, "activity_submission": null, "well": 113172, - "screen_from": "410.00", - "screen_to": "500.00", + "start": "410.00", + "end": "500.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -511939,8 +511939,8 @@ "update_date": null, "activity_submission": null, "well": 112750, - "screen_from": "95.00", - "screen_to": "97.00", + "start": "95.00", + "end": "97.00", "internal_diameter": "7.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -511956,8 +511956,8 @@ "update_date": null, "activity_submission": null, "well": 112755, - "screen_from": "90.00", - "screen_to": "95.00", + "start": "90.00", + "end": "95.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -511973,8 +511973,8 @@ "update_date": null, "activity_submission": null, "well": 112273, - "screen_from": "51.00", - "screen_to": "51.04", + "start": "51.00", + "end": "51.04", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -511990,8 +511990,8 @@ "update_date": null, "activity_submission": null, "well": 112965, - "screen_from": "25.50", - "screen_to": "26.00", + "start": "25.50", + "end": "26.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -512007,8 +512007,8 @@ "update_date": null, "activity_submission": null, "well": 112602, - "screen_from": "95.00", - "screen_to": "96.00", + "start": "95.00", + "end": "96.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -512024,8 +512024,8 @@ "update_date": null, "activity_submission": null, "well": 112497, - "screen_from": "159.50", - "screen_to": "161.50", + "start": "159.50", + "end": "161.50", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -512041,8 +512041,8 @@ "update_date": null, "activity_submission": null, "well": 113126, - "screen_from": "220.00", - "screen_to": "231.00", + "start": "220.00", + "end": "231.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -512058,8 +512058,8 @@ "update_date": null, "activity_submission": null, "well": 112717, - "screen_from": "55.00", - "screen_to": "59.00", + "start": "55.00", + "end": "59.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "35.00" @@ -512075,8 +512075,8 @@ "update_date": null, "activity_submission": null, "well": 112880, - "screen_from": "53.00", - "screen_to": "55.00", + "start": "53.00", + "end": "55.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -512092,8 +512092,8 @@ "update_date": null, "activity_submission": null, "well": 112582, - "screen_from": "300.00", - "screen_to": "340.00", + "start": "300.00", + "end": "340.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -512109,8 +512109,8 @@ "update_date": null, "activity_submission": null, "well": 113092, - "screen_from": "47.00", - "screen_to": "49.00", + "start": "47.00", + "end": "49.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -512126,8 +512126,8 @@ "update_date": null, "activity_submission": null, "well": 112985, - "screen_from": "286.00", - "screen_to": "290.00", + "start": "286.00", + "end": "290.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -512143,8 +512143,8 @@ "update_date": null, "activity_submission": null, "well": 113043, - "screen_from": "184.00", - "screen_to": "189.00", + "start": "184.00", + "end": "189.00", "internal_diameter": "5.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -512160,8 +512160,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "780.00", - "screen_to": "800.00", + "start": "780.00", + "end": "800.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "20.00" @@ -512177,8 +512177,8 @@ "update_date": null, "activity_submission": null, "well": 112267, - "screen_from": "155.00", - "screen_to": "159.04", + "start": "155.00", + "end": "159.04", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -512194,8 +512194,8 @@ "update_date": null, "activity_submission": null, "well": 112466, - "screen_from": "52.00", - "screen_to": "56.00", + "start": "52.00", + "end": "56.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -512211,8 +512211,8 @@ "update_date": null, "activity_submission": null, "well": 112490, - "screen_from": "100.00", - "screen_to": "163.00", + "start": "100.00", + "end": "163.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -512228,8 +512228,8 @@ "update_date": null, "activity_submission": null, "well": 112596, - "screen_from": "101.00", - "screen_to": "105.00", + "start": "101.00", + "end": "105.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "50.00" @@ -512245,8 +512245,8 @@ "update_date": null, "activity_submission": null, "well": 113060, - "screen_from": "196.00", - "screen_to": "207.00", + "start": "196.00", + "end": "207.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -512262,8 +512262,8 @@ "update_date": null, "activity_submission": null, "well": 113199, - "screen_from": "20.00", - "screen_to": "120.00", + "start": "20.00", + "end": "120.00", "internal_diameter": "6.25", "assembly_type": "SCREEN", "slot_size": null @@ -512279,8 +512279,8 @@ "update_date": null, "activity_submission": null, "well": 113043, - "screen_from": "180.00", - "screen_to": "184.00", + "start": "180.00", + "end": "184.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -512296,8 +512296,8 @@ "update_date": null, "activity_submission": null, "well": 112596, - "screen_from": "49.00", - "screen_to": "101.00", + "start": "49.00", + "end": "101.00", "internal_diameter": null, "assembly_type": "RISER_PIPE", "slot_size": null @@ -512313,8 +512313,8 @@ "update_date": null, "activity_submission": null, "well": 112983, - "screen_from": "83.00", - "screen_to": "87.00", + "start": "83.00", + "end": "87.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "18.00" @@ -512330,8 +512330,8 @@ "update_date": null, "activity_submission": null, "well": 113183, - "screen_from": "116.00", - "screen_to": "126.00", + "start": "116.00", + "end": "126.00", "internal_diameter": "7.50", "assembly_type": "K_RISER", "slot_size": "0.25" @@ -512347,8 +512347,8 @@ "update_date": null, "activity_submission": null, "well": 112843, - "screen_from": "198.50", - "screen_to": "209.00", + "start": "198.50", + "end": "209.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "30.00" @@ -512364,8 +512364,8 @@ "update_date": null, "activity_submission": null, "well": 112738, - "screen_from": "54.50", - "screen_to": "58.50", + "start": "54.50", + "end": "58.50", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "15.00" @@ -512381,8 +512381,8 @@ "update_date": null, "activity_submission": null, "well": 112714, - "screen_from": "35.00", - "screen_to": "39.00", + "start": "35.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "25.00" @@ -512398,8 +512398,8 @@ "update_date": null, "activity_submission": null, "well": 112712, - "screen_from": "35.00", - "screen_to": "39.00", + "start": "35.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "20.00" @@ -512415,8 +512415,8 @@ "update_date": null, "activity_submission": null, "well": 112604, - "screen_from": "214.00", - "screen_to": "216.00", + "start": "214.00", + "end": "216.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -512432,8 +512432,8 @@ "update_date": null, "activity_submission": null, "well": 112960, - "screen_from": "48.50", - "screen_to": "49.00", + "start": "48.50", + "end": "49.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -512449,8 +512449,8 @@ "update_date": null, "activity_submission": null, "well": 113211, - "screen_from": "65.00", - "screen_to": "65.04", + "start": "65.00", + "end": "65.04", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -512466,8 +512466,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "460.00", - "screen_to": "540.00", + "start": "460.00", + "end": "540.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": null @@ -512483,8 +512483,8 @@ "update_date": null, "activity_submission": null, "well": 112651, - "screen_from": "136.00", - "screen_to": "175.00", + "start": "136.00", + "end": "175.00", "internal_diameter": "8.00", "assembly_type": "K_PACKER", "slot_size": "15.00" @@ -512500,8 +512500,8 @@ "update_date": null, "activity_submission": null, "well": 112953, - "screen_from": "34.50", - "screen_to": "35.00", + "start": "34.50", + "end": "35.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -512517,8 +512517,8 @@ "update_date": null, "activity_submission": null, "well": 113210, - "screen_from": "100.00", - "screen_to": "140.00", + "start": "100.00", + "end": "140.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -512534,8 +512534,8 @@ "update_date": null, "activity_submission": null, "well": 112812, - "screen_from": "388.50", - "screen_to": "390.90", + "start": "388.50", + "end": "390.90", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -512551,8 +512551,8 @@ "update_date": null, "activity_submission": null, "well": 112607, - "screen_from": "87.01", - "screen_to": "87.05", + "start": "87.01", + "end": "87.05", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -512568,8 +512568,8 @@ "update_date": null, "activity_submission": null, "well": 112494, - "screen_from": "66.00", - "screen_to": "70.00", + "start": "66.00", + "end": "70.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -512585,8 +512585,8 @@ "update_date": null, "activity_submission": null, "well": 112891, - "screen_from": "34.00", - "screen_to": "38.00", + "start": "34.00", + "end": "38.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -512602,8 +512602,8 @@ "update_date": null, "activity_submission": null, "well": 112955, - "screen_from": "66.00", - "screen_to": "70.00", + "start": "66.00", + "end": "70.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -512619,8 +512619,8 @@ "update_date": null, "activity_submission": null, "well": 112323, - "screen_from": "36.00", - "screen_to": "56.00", + "start": "36.00", + "end": "56.00", "internal_diameter": "4.94", "assembly_type": null, "slot_size": "20.00" @@ -512636,8 +512636,8 @@ "update_date": null, "activity_submission": null, "well": 113189, - "screen_from": "395.00", - "screen_to": "405.00", + "start": "395.00", + "end": "405.00", "internal_diameter": "3.00", "assembly_type": "SCREEN", "slot_size": null @@ -512653,8 +512653,8 @@ "update_date": null, "activity_submission": null, "well": 113041, - "screen_from": "34.06", - "screen_to": "39.00", + "start": "34.06", + "end": "39.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -512670,8 +512670,8 @@ "update_date": null, "activity_submission": null, "well": 112745, - "screen_from": "35.00", - "screen_to": "39.00", + "start": "35.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "20.00" @@ -512687,8 +512687,8 @@ "update_date": null, "activity_submission": null, "well": 112824, - "screen_from": "165.00", - "screen_to": "170.00", + "start": "165.00", + "end": "170.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "35.00" @@ -512704,8 +512704,8 @@ "update_date": null, "activity_submission": null, "well": 113180, - "screen_from": "202.00", - "screen_to": "209.00", + "start": "202.00", + "end": "209.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -512721,8 +512721,8 @@ "update_date": null, "activity_submission": null, "well": 113174, - "screen_from": "31.00", - "screen_to": "35.00", + "start": "31.00", + "end": "35.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -512738,8 +512738,8 @@ "update_date": "2017-05-03T22:04:52Z", "activity_submission": null, "well": 113067, - "screen_from": "37.00", - "screen_to": "42.00", + "start": "37.00", + "end": "42.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -512755,8 +512755,8 @@ "update_date": null, "activity_submission": null, "well": 112543, - "screen_from": "80.75", - "screen_to": "85.92", + "start": "80.75", + "end": "85.92", "internal_diameter": "5.00", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -512772,8 +512772,8 @@ "update_date": null, "activity_submission": null, "well": 112674, - "screen_from": "50.00", - "screen_to": "54.50", + "start": "50.00", + "end": "54.50", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "15.00" @@ -512789,8 +512789,8 @@ "update_date": null, "activity_submission": null, "well": 112448, - "screen_from": "101.02", - "screen_to": "101.06", + "start": "101.02", + "end": "101.06", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -512806,8 +512806,8 @@ "update_date": null, "activity_submission": null, "well": 112906, - "screen_from": "108.00", - "screen_to": "112.00", + "start": "108.00", + "end": "112.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -512823,8 +512823,8 @@ "update_date": null, "activity_submission": null, "well": 112876, - "screen_from": "91.00", - "screen_to": "93.83", + "start": "91.00", + "end": "93.83", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -512840,8 +512840,8 @@ "update_date": null, "activity_submission": null, "well": 112492, - "screen_from": "349.00", - "screen_to": "361.00", + "start": "349.00", + "end": "361.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -512857,8 +512857,8 @@ "update_date": "2017-10-03T13:07:32Z", "activity_submission": null, "well": 113269, - "screen_from": "97.00", - "screen_to": "115.00", + "start": "97.00", + "end": "115.00", "internal_diameter": "8.00", "assembly_type": "K_RISER", "slot_size": "80.00" @@ -512874,8 +512874,8 @@ "update_date": null, "activity_submission": null, "well": 112800, - "screen_from": "115.00", - "screen_to": "120.00", + "start": "115.00", + "end": "120.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -512891,8 +512891,8 @@ "update_date": null, "activity_submission": null, "well": 113243, - "screen_from": "72.00", - "screen_to": "76.50", + "start": "72.00", + "end": "76.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -512908,8 +512908,8 @@ "update_date": null, "activity_submission": null, "well": 113141, - "screen_from": "65.00", - "screen_to": "71.00", + "start": "65.00", + "end": "71.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "80.00" @@ -512925,8 +512925,8 @@ "update_date": null, "activity_submission": null, "well": 112347, - "screen_from": "134.01", - "screen_to": "138.06", + "start": "134.01", + "end": "138.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -512942,8 +512942,8 @@ "update_date": null, "activity_submission": null, "well": 112365, - "screen_from": "218.07", - "screen_to": "223.02", + "start": "218.07", + "end": "223.02", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -512959,8 +512959,8 @@ "update_date": null, "activity_submission": null, "well": 112916, - "screen_from": "176.00", - "screen_to": "215.00", + "start": "176.00", + "end": "215.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "120.00" @@ -512976,8 +512976,8 @@ "update_date": "2017-02-03T23:03:38Z", "activity_submission": null, "well": 112601, - "screen_from": "155.00", - "screen_to": "156.50", + "start": "155.00", + "end": "156.50", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -512993,8 +512993,8 @@ "update_date": null, "activity_submission": null, "well": 113219, - "screen_from": "133.00", - "screen_to": "136.00", + "start": "133.00", + "end": "136.00", "internal_diameter": "8.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -513010,8 +513010,8 @@ "update_date": null, "activity_submission": null, "well": 112750, - "screen_from": "97.00", - "screen_to": "113.00", + "start": "97.00", + "end": "113.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -513027,8 +513027,8 @@ "update_date": "2016-12-08T20:31:28Z", "activity_submission": null, "well": 112255, - "screen_from": "31.00", - "screen_to": "41.00", + "start": "31.00", + "end": "41.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -513044,8 +513044,8 @@ "update_date": null, "activity_submission": null, "well": 113185, - "screen_from": "113.00", - "screen_to": "115.00", + "start": "113.00", + "end": "115.00", "internal_diameter": "6.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -513061,8 +513061,8 @@ "update_date": null, "activity_submission": null, "well": 112317, - "screen_from": "175.00", - "screen_to": "180.00", + "start": "175.00", + "end": "180.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -513078,8 +513078,8 @@ "update_date": null, "activity_submission": null, "well": 112761, - "screen_from": "231.00", - "screen_to": "237.00", + "start": "231.00", + "end": "237.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "60.00" @@ -513095,8 +513095,8 @@ "update_date": null, "activity_submission": null, "well": 112351, - "screen_from": "42.04", - "screen_to": "42.08", + "start": "42.04", + "end": "42.08", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -513112,8 +513112,8 @@ "update_date": null, "activity_submission": null, "well": 112742, - "screen_from": "96.00", - "screen_to": "100.00", + "start": "96.00", + "end": "100.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "15.00" @@ -513129,8 +513129,8 @@ "update_date": null, "activity_submission": null, "well": 112698, - "screen_from": "32.00", - "screen_to": "34.00", + "start": "32.00", + "end": "34.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -513146,8 +513146,8 @@ "update_date": null, "activity_submission": null, "well": 112606, - "screen_from": "272.00", - "screen_to": "274.00", + "start": "272.00", + "end": "274.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -513163,8 +513163,8 @@ "update_date": null, "activity_submission": null, "well": 112938, - "screen_from": "91.00", - "screen_to": "95.00", + "start": "91.00", + "end": "95.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "40.00" @@ -513180,8 +513180,8 @@ "update_date": null, "activity_submission": null, "well": 113284, - "screen_from": "97.00", - "screen_to": "105.00", + "start": "97.00", + "end": "105.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -513197,8 +513197,8 @@ "update_date": null, "activity_submission": null, "well": 113153, - "screen_from": "15.00", - "screen_to": "18.00", + "start": "15.00", + "end": "18.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -513214,8 +513214,8 @@ "update_date": null, "activity_submission": null, "well": 113125, - "screen_from": "42.00", - "screen_to": "53.00", + "start": "42.00", + "end": "53.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "12.00" @@ -513231,8 +513231,8 @@ "update_date": null, "activity_submission": null, "well": 113127, - "screen_from": "274.00", - "screen_to": "290.00", + "start": "274.00", + "end": "290.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -513248,8 +513248,8 @@ "update_date": null, "activity_submission": null, "well": 113014, - "screen_from": "33.00", - "screen_to": "36.00", + "start": "33.00", + "end": "36.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -513265,8 +513265,8 @@ "update_date": null, "activity_submission": null, "well": 112882, - "screen_from": "115.00", - "screen_to": "119.00", + "start": "115.00", + "end": "119.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -513282,8 +513282,8 @@ "update_date": null, "activity_submission": null, "well": 113144, - "screen_from": "230.00", - "screen_to": "234.00", + "start": "230.00", + "end": "234.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "30.00" @@ -513299,8 +513299,8 @@ "update_date": null, "activity_submission": null, "well": 112991, - "screen_from": "368.00", - "screen_to": "385.00", + "start": "368.00", + "end": "385.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -513316,8 +513316,8 @@ "update_date": null, "activity_submission": null, "well": 112495, - "screen_from": "139.00", - "screen_to": "149.00", + "start": "139.00", + "end": "149.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -513333,8 +513333,8 @@ "update_date": null, "activity_submission": null, "well": 112857, - "screen_from": "355.00", - "screen_to": "375.00", + "start": "355.00", + "end": "375.00", "internal_diameter": "4.98", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -513350,8 +513350,8 @@ "update_date": null, "activity_submission": null, "well": 112963, - "screen_from": "309.00", - "screen_to": "322.00", + "start": "309.00", + "end": "322.00", "internal_diameter": "10.60", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -513367,8 +513367,8 @@ "update_date": null, "activity_submission": null, "well": 113124, - "screen_from": "587.00", - "screen_to": "638.00", + "start": "587.00", + "end": "638.00", "internal_diameter": "16.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -513384,8 +513384,8 @@ "update_date": null, "activity_submission": null, "well": 112609, - "screen_from": "73.05", - "screen_to": "78.00", + "start": "73.05", + "end": "78.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -513401,8 +513401,8 @@ "update_date": null, "activity_submission": null, "well": 112968, - "screen_from": "25.50", - "screen_to": "26.00", + "start": "25.50", + "end": "26.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -513418,8 +513418,8 @@ "update_date": null, "activity_submission": null, "well": 112601, - "screen_from": "149.00", - "screen_to": "151.00", + "start": "149.00", + "end": "151.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -513435,8 +513435,8 @@ "update_date": "2017-09-11T17:36:07Z", "activity_submission": null, "well": 113259, - "screen_from": "238.70", - "screen_to": "254.50", + "start": "238.70", + "end": "254.50", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -513452,8 +513452,8 @@ "update_date": null, "activity_submission": null, "well": 112598, - "screen_from": "70.00", - "screen_to": "75.00", + "start": "70.00", + "end": "75.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -513469,8 +513469,8 @@ "update_date": null, "activity_submission": null, "well": 112262, - "screen_from": "36.00", - "screen_to": "38.00", + "start": "36.00", + "end": "38.00", "internal_diameter": "6.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -513486,8 +513486,8 @@ "update_date": null, "activity_submission": null, "well": 112615, - "screen_from": "240.00", - "screen_to": "245.00", + "start": "240.00", + "end": "245.00", "internal_diameter": "12.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -513503,8 +513503,8 @@ "update_date": null, "activity_submission": null, "well": 112538, - "screen_from": "287.00", - "screen_to": "291.00", + "start": "287.00", + "end": "291.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -513520,8 +513520,8 @@ "update_date": null, "activity_submission": null, "well": 112302, - "screen_from": "311.00", - "screen_to": "334.00", + "start": "311.00", + "end": "334.00", "internal_diameter": null, "assembly_type": null, "slot_size": "150.00" @@ -513537,8 +513537,8 @@ "update_date": null, "activity_submission": null, "well": 112536, - "screen_from": "96.00", - "screen_to": "100.00", + "start": "96.00", + "end": "100.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -513554,8 +513554,8 @@ "update_date": null, "activity_submission": null, "well": 113128, - "screen_from": "283.00", - "screen_to": "288.00", + "start": "283.00", + "end": "288.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -513571,8 +513571,8 @@ "update_date": null, "activity_submission": null, "well": 112768, - "screen_from": "1500.30", - "screen_to": "1502.50", + "start": "1500.30", + "end": "1502.50", "internal_diameter": "5.50", "assembly_type": null, "slot_size": null @@ -513588,8 +513588,8 @@ "update_date": null, "activity_submission": null, "well": 113200, - "screen_from": "160.00", - "screen_to": "300.00", + "start": "160.00", + "end": "300.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -513605,8 +513605,8 @@ "update_date": null, "activity_submission": null, "well": 112592, - "screen_from": "102.00", - "screen_to": "112.00", + "start": "102.00", + "end": "112.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -513622,8 +513622,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "740.00", - "screen_to": "780.00", + "start": "740.00", + "end": "780.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -513639,8 +513639,8 @@ "update_date": null, "activity_submission": null, "well": 112333, - "screen_from": "100.00", - "screen_to": "105.00", + "start": "100.00", + "end": "105.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": "10.00" @@ -513656,8 +513656,8 @@ "update_date": null, "activity_submission": null, "well": 112527, - "screen_from": "195.00", - "screen_to": "215.00", + "start": "195.00", + "end": "215.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -513673,8 +513673,8 @@ "update_date": null, "activity_submission": null, "well": 112860, - "screen_from": "321.00", - "screen_to": "341.00", + "start": "321.00", + "end": "341.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -513690,8 +513690,8 @@ "update_date": null, "activity_submission": null, "well": 113286, - "screen_from": "101.00", - "screen_to": "105.00", + "start": "101.00", + "end": "105.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -513707,8 +513707,8 @@ "update_date": null, "activity_submission": null, "well": 112754, - "screen_from": "237.20", - "screen_to": "243.00", + "start": "237.20", + "end": "243.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "12.00" @@ -513724,8 +513724,8 @@ "update_date": null, "activity_submission": null, "well": 112970, - "screen_from": "38.50", - "screen_to": "39.00", + "start": "38.50", + "end": "39.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -513741,8 +513741,8 @@ "update_date": null, "activity_submission": null, "well": 113202, - "screen_from": "45.00", - "screen_to": "49.00", + "start": "45.00", + "end": "49.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -513758,8 +513758,8 @@ "update_date": "2016-12-13T20:04:00Z", "activity_submission": null, "well": 112393, - "screen_from": "61.33", - "screen_to": "72.17", + "start": "61.33", + "end": "72.17", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "15.00" @@ -513775,8 +513775,8 @@ "update_date": null, "activity_submission": null, "well": 112971, - "screen_from": "40.00", - "screen_to": "44.00", + "start": "40.00", + "end": "44.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -513792,8 +513792,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "232.00", - "screen_to": "234.00", + "start": "232.00", + "end": "234.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "30.00" @@ -513809,8 +513809,8 @@ "update_date": null, "activity_submission": null, "well": 113247, - "screen_from": "32.50", - "screen_to": "37.00", + "start": "32.50", + "end": "37.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -513826,8 +513826,8 @@ "update_date": null, "activity_submission": null, "well": 113264, - "screen_from": "81.50", - "screen_to": "83.50", + "start": "81.50", + "end": "83.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -513843,8 +513843,8 @@ "update_date": null, "activity_submission": null, "well": 113008, - "screen_from": "26.00", - "screen_to": "29.00", + "start": "26.00", + "end": "29.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -513860,8 +513860,8 @@ "update_date": null, "activity_submission": null, "well": 112602, - "screen_from": "89.00", - "screen_to": "91.00", + "start": "89.00", + "end": "91.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -513877,8 +513877,8 @@ "update_date": null, "activity_submission": null, "well": 112445, - "screen_from": "102.00", - "screen_to": "106.06", + "start": "102.00", + "end": "106.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -513894,8 +513894,8 @@ "update_date": null, "activity_submission": null, "well": 113270, - "screen_from": "76.00", - "screen_to": "81.00", + "start": "76.00", + "end": "81.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -513911,8 +513911,8 @@ "update_date": null, "activity_submission": null, "well": 112548, - "screen_from": "186.00", - "screen_to": "188.00", + "start": "186.00", + "end": "188.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -513928,8 +513928,8 @@ "update_date": null, "activity_submission": null, "well": 112813, - "screen_from": "47.00", - "screen_to": "52.00", + "start": "47.00", + "end": "52.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "150.00" @@ -513945,8 +513945,8 @@ "update_date": null, "activity_submission": null, "well": 112258, - "screen_from": "72.00", - "screen_to": "76.00", + "start": "72.00", + "end": "76.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "40.00" @@ -513962,8 +513962,8 @@ "update_date": null, "activity_submission": null, "well": 113138, - "screen_from": "178.01", - "screen_to": "178.06", + "start": "178.01", + "end": "178.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -513979,8 +513979,8 @@ "update_date": null, "activity_submission": null, "well": 113139, - "screen_from": "74.00", - "screen_to": "78.00", + "start": "74.00", + "end": "78.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -513996,8 +513996,8 @@ "update_date": null, "activity_submission": null, "well": 112533, - "screen_from": "244.00", - "screen_to": "253.00", + "start": "244.00", + "end": "253.00", "internal_diameter": null, "assembly_type": "K_RISER", "slot_size": null @@ -514013,8 +514013,8 @@ "update_date": null, "activity_submission": null, "well": 113146, - "screen_from": "522.00", - "screen_to": "530.00", + "start": "522.00", + "end": "530.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "200.00" @@ -514030,8 +514030,8 @@ "update_date": null, "activity_submission": null, "well": 112926, - "screen_from": null, - "screen_to": null, + "start": null, + "end": null, "internal_diameter": null, "assembly_type": null, "slot_size": "50.00" @@ -514047,8 +514047,8 @@ "update_date": null, "activity_submission": null, "well": 112334, - "screen_from": "231.00", - "screen_to": "233.00", + "start": "231.00", + "end": "233.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -514064,8 +514064,8 @@ "update_date": null, "activity_submission": null, "well": 112922, - "screen_from": "201.00", - "screen_to": "206.00", + "start": "201.00", + "end": "206.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -514081,8 +514081,8 @@ "update_date": null, "activity_submission": null, "well": 113108, - "screen_from": "168.04", - "screen_to": "168.08", + "start": "168.04", + "end": "168.08", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -514098,8 +514098,8 @@ "update_date": null, "activity_submission": null, "well": 112740, - "screen_from": "99.00", - "screen_to": "114.00", + "start": "99.00", + "end": "114.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "15.00" @@ -514115,8 +514115,8 @@ "update_date": null, "activity_submission": null, "well": 112493, - "screen_from": "27.00", - "screen_to": "31.00", + "start": "27.00", + "end": "31.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -514132,8 +514132,8 @@ "update_date": null, "activity_submission": null, "well": 113151, - "screen_from": "175.00", - "screen_to": "180.00", + "start": "175.00", + "end": "180.00", "internal_diameter": "5.50", "assembly_type": null, "slot_size": "0.50" @@ -514149,8 +514149,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "540.00", - "screen_to": "660.00", + "start": "540.00", + "end": "660.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514166,8 +514166,8 @@ "update_date": null, "activity_submission": null, "well": 112770, - "screen_from": "250.00", - "screen_to": "310.00", + "start": "250.00", + "end": "310.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -514183,8 +514183,8 @@ "update_date": null, "activity_submission": null, "well": 112948, - "screen_from": "28.00", - "screen_to": "32.00", + "start": "28.00", + "end": "32.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514200,8 +514200,8 @@ "update_date": null, "activity_submission": null, "well": 112645, - "screen_from": "338.50", - "screen_to": "343.00", + "start": "338.50", + "end": "343.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -514217,8 +514217,8 @@ "update_date": null, "activity_submission": null, "well": 112861, - "screen_from": "30.00", - "screen_to": "61.00", + "start": "30.00", + "end": "61.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514234,8 +514234,8 @@ "update_date": null, "activity_submission": null, "well": 112710, - "screen_from": "62.50", - "screen_to": "65.50", + "start": "62.50", + "end": "65.50", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -514251,8 +514251,8 @@ "update_date": "2017-01-09T21:46:18Z", "activity_submission": null, "well": 112329, - "screen_from": "416.00", - "screen_to": "420.00", + "start": "416.00", + "end": "420.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -514268,8 +514268,8 @@ "update_date": null, "activity_submission": null, "well": 113172, - "screen_from": "350.00", - "screen_to": "370.00", + "start": "350.00", + "end": "370.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -514285,8 +514285,8 @@ "update_date": null, "activity_submission": null, "well": 112771, - "screen_from": "0.00", - "screen_to": "302.00", + "start": "0.00", + "end": "302.00", "internal_diameter": null, "assembly_type": "SCRN_BLANK", "slot_size": null @@ -514302,8 +514302,8 @@ "update_date": null, "activity_submission": null, "well": 112433, - "screen_from": "154.02", - "screen_to": "158.07", + "start": "154.02", + "end": "158.07", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -514319,8 +514319,8 @@ "update_date": null, "activity_submission": null, "well": 112436, - "screen_from": "249.11", - "screen_to": "254.04", + "start": "249.11", + "end": "254.04", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -514336,8 +514336,8 @@ "update_date": null, "activity_submission": null, "well": 112952, - "screen_from": "189.50", - "screen_to": "190.00", + "start": "189.50", + "end": "190.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -514353,8 +514353,8 @@ "update_date": null, "activity_submission": null, "well": 112763, - "screen_from": "9.50", - "screen_to": "24.00", + "start": "9.50", + "end": "24.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "10.00" @@ -514370,8 +514370,8 @@ "update_date": null, "activity_submission": null, "well": 112248, - "screen_from": "70.00", - "screen_to": "90.00", + "start": "70.00", + "end": "90.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "20.00" @@ -514387,8 +514387,8 @@ "update_date": null, "activity_submission": null, "well": 112621, - "screen_from": "115.00", - "screen_to": "120.00", + "start": "115.00", + "end": "120.00", "internal_diameter": "8.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -514404,8 +514404,8 @@ "update_date": null, "activity_submission": null, "well": 112442, - "screen_from": "84.00", - "screen_to": "84.04", + "start": "84.00", + "end": "84.04", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -514421,8 +514421,8 @@ "update_date": null, "activity_submission": null, "well": 113041, - "screen_from": "34.02", - "screen_to": "34.06", + "start": "34.02", + "end": "34.06", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -514438,8 +514438,8 @@ "update_date": null, "activity_submission": null, "well": 112645, - "screen_from": "336.50", - "screen_to": "338.50", + "start": "336.50", + "end": "338.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -514455,8 +514455,8 @@ "update_date": null, "activity_submission": null, "well": 112698, - "screen_from": "34.00", - "screen_to": "39.50", + "start": "34.00", + "end": "39.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -514472,8 +514472,8 @@ "update_date": null, "activity_submission": null, "well": 113142, - "screen_from": "71.00", - "screen_to": "75.00", + "start": "71.00", + "end": "75.00", "internal_diameter": "6.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -514489,8 +514489,8 @@ "update_date": null, "activity_submission": null, "well": 112758, - "screen_from": "383.00", - "screen_to": "388.00", + "start": "383.00", + "end": "388.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514506,8 +514506,8 @@ "update_date": null, "activity_submission": null, "well": 113124, - "screen_from": "585.00", - "screen_to": "587.00", + "start": "585.00", + "end": "587.00", "internal_diameter": "16.00", "assembly_type": "SCREEN", "slot_size": null @@ -514523,8 +514523,8 @@ "update_date": null, "activity_submission": null, "well": 112846, - "screen_from": "308.60", - "screen_to": "315.00", + "start": "308.60", + "end": "315.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "15.00" @@ -514540,8 +514540,8 @@ "update_date": null, "activity_submission": null, "well": 112743, - "screen_from": "61.50", - "screen_to": "67.00", + "start": "61.50", + "end": "67.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "35.00" @@ -514557,8 +514557,8 @@ "update_date": "2017-10-25T17:15:20Z", "activity_submission": null, "well": 112850, - "screen_from": "225.00", - "screen_to": "230.00", + "start": "225.00", + "end": "230.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "0.00" @@ -514574,8 +514574,8 @@ "update_date": null, "activity_submission": null, "well": 113067, - "screen_from": "31.00", - "screen_to": "37.00", + "start": "31.00", + "end": "37.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -514591,8 +514591,8 @@ "update_date": null, "activity_submission": null, "well": 110000, - "screen_from": "40.08", - "screen_to": "46.04", + "start": "40.08", + "end": "46.04", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -514608,8 +514608,8 @@ "update_date": null, "activity_submission": null, "well": 113119, - "screen_from": "111.00", - "screen_to": "115.00", + "start": "111.00", + "end": "115.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514625,8 +514625,8 @@ "update_date": null, "activity_submission": null, "well": 113259, - "screen_from": "254.50", - "screen_to": "262.50", + "start": "254.50", + "end": "262.50", "internal_diameter": "8.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -514642,8 +514642,8 @@ "update_date": null, "activity_submission": null, "well": 112970, - "screen_from": "39.00", - "screen_to": "43.00", + "start": "39.00", + "end": "43.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -514659,8 +514659,8 @@ "update_date": null, "activity_submission": null, "well": 112512, - "screen_from": "144.00", - "screen_to": "146.00", + "start": "144.00", + "end": "146.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -514676,8 +514676,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "260.00", - "screen_to": "262.00", + "start": "260.00", + "end": "262.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "50.00" @@ -514693,8 +514693,8 @@ "update_date": "2017-10-03T13:08:00Z", "activity_submission": null, "well": 113269, - "screen_from": "115.33", - "screen_to": "116.00", + "start": "115.33", + "end": "116.00", "internal_diameter": "8.00", "assembly_type": null, "slot_size": "80.00" @@ -514710,8 +514710,8 @@ "update_date": null, "activity_submission": null, "well": 112969, - "screen_from": "45.50", - "screen_to": "49.00", + "start": "45.50", + "end": "49.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514727,8 +514727,8 @@ "update_date": null, "activity_submission": null, "well": 112973, - "screen_from": "20.00", - "screen_to": "23.50", + "start": "20.00", + "end": "23.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514744,8 +514744,8 @@ "update_date": null, "activity_submission": null, "well": 112526, - "screen_from": "196.00", - "screen_to": "236.00", + "start": "196.00", + "end": "236.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -514761,8 +514761,8 @@ "update_date": null, "activity_submission": null, "well": 112276, - "screen_from": "133.05", - "screen_to": "138.00", + "start": "133.05", + "end": "138.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -514778,8 +514778,8 @@ "update_date": null, "activity_submission": null, "well": 112427, - "screen_from": "46.00", - "screen_to": "48.00", + "start": "46.00", + "end": "48.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -514795,8 +514795,8 @@ "update_date": null, "activity_submission": null, "well": 113096, - "screen_from": "213.50", - "screen_to": "215.50", + "start": "213.50", + "end": "215.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -514812,8 +514812,8 @@ "update_date": null, "activity_submission": null, "well": 112922, - "screen_from": "186.00", - "screen_to": "196.00", + "start": "186.00", + "end": "196.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "120.00" @@ -514829,8 +514829,8 @@ "update_date": null, "activity_submission": null, "well": 112824, - "screen_from": "170.00", - "screen_to": "174.00", + "start": "170.00", + "end": "174.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -514846,8 +514846,8 @@ "update_date": null, "activity_submission": null, "well": 112902, - "screen_from": "94.00", - "screen_to": "98.00", + "start": "94.00", + "end": "98.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -514863,8 +514863,8 @@ "update_date": null, "activity_submission": null, "well": 112409, - "screen_from": "429.00", - "screen_to": "430.00", + "start": "429.00", + "end": "430.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -514880,8 +514880,8 @@ "update_date": null, "activity_submission": null, "well": 113081, - "screen_from": "11.00", - "screen_to": "17.00", + "start": "11.00", + "end": "17.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "40.00" @@ -514897,8 +514897,8 @@ "update_date": null, "activity_submission": null, "well": 112985, - "screen_from": "285.50", - "screen_to": "286.00", + "start": "285.50", + "end": "286.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -514914,8 +514914,8 @@ "update_date": null, "activity_submission": null, "well": 112733, - "screen_from": "37.00", - "screen_to": "41.00", + "start": "37.00", + "end": "41.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "15.00" @@ -514931,8 +514931,8 @@ "update_date": null, "activity_submission": null, "well": 112518, - "screen_from": "43.40", - "screen_to": "50.00", + "start": "43.40", + "end": "50.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "45.00" @@ -514948,8 +514948,8 @@ "update_date": null, "activity_submission": null, "well": 112428, - "screen_from": "102.00", - "screen_to": "104.00", + "start": "102.00", + "end": "104.00", "internal_diameter": "3.00", "assembly_type": "K_RISER", "slot_size": null @@ -514965,8 +514965,8 @@ "update_date": null, "activity_submission": null, "well": 112152, - "screen_from": "48.50", - "screen_to": "50.00", + "start": "48.50", + "end": "50.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -514982,8 +514982,8 @@ "update_date": null, "activity_submission": null, "well": 113092, - "screen_from": "49.00", - "screen_to": "53.00", + "start": "49.00", + "end": "53.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -514999,8 +514999,8 @@ "update_date": null, "activity_submission": null, "well": 112347, - "screen_from": "129.04", - "screen_to": "129.08", + "start": "129.04", + "end": "129.08", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -515016,8 +515016,8 @@ "update_date": null, "activity_submission": null, "well": 112545, - "screen_from": null, - "screen_to": null, + "start": null, + "end": null, "internal_diameter": null, "assembly_type": null, "slot_size": "20.00" @@ -515033,8 +515033,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "234.00", - "screen_to": "236.00", + "start": "234.00", + "end": "236.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "60.00" @@ -515050,8 +515050,8 @@ "update_date": null, "activity_submission": null, "well": 112603, - "screen_from": "216.00", - "screen_to": "220.00", + "start": "216.00", + "end": "220.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -515067,8 +515067,8 @@ "update_date": null, "activity_submission": null, "well": 112491, - "screen_from": "103.00", - "screen_to": "143.00", + "start": "103.00", + "end": "143.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515084,8 +515084,8 @@ "update_date": null, "activity_submission": null, "well": 112856, - "screen_from": "44.60", - "screen_to": "48.60", + "start": "44.60", + "end": "48.60", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515101,8 +515101,8 @@ "update_date": null, "activity_submission": null, "well": 113026, - "screen_from": "255.00", - "screen_to": "495.00", + "start": "255.00", + "end": "495.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -515118,8 +515118,8 @@ "update_date": null, "activity_submission": null, "well": 112768, - "screen_from": "1316.60", - "screen_to": "1416.40", + "start": "1316.60", + "end": "1416.40", "internal_diameter": "5.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515135,8 +515135,8 @@ "update_date": null, "activity_submission": null, "well": 112434, - "screen_from": "111.08", - "screen_to": "112.00", + "start": "111.08", + "end": "112.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -515152,8 +515152,8 @@ "update_date": null, "activity_submission": null, "well": 112785, - "screen_from": "49.65", - "screen_to": "62.20", + "start": "49.65", + "end": "62.20", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -515169,8 +515169,8 @@ "update_date": null, "activity_submission": null, "well": 113203, - "screen_from": "190.00", - "screen_to": "194.00", + "start": "190.00", + "end": "194.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -515186,8 +515186,8 @@ "update_date": null, "activity_submission": null, "well": 112898, - "screen_from": "131.00", - "screen_to": "135.00", + "start": "131.00", + "end": "135.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -515203,8 +515203,8 @@ "update_date": null, "activity_submission": null, "well": 112501, - "screen_from": "40.00", - "screen_to": "230.00", + "start": "40.00", + "end": "230.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -515220,8 +515220,8 @@ "update_date": null, "activity_submission": null, "well": 113130, - "screen_from": "382.00", - "screen_to": "387.00", + "start": "382.00", + "end": "387.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "15.00" @@ -515237,8 +515237,8 @@ "update_date": "2017-03-28T16:01:45Z", "activity_submission": null, "well": 112943, - "screen_from": "80.00", - "screen_to": "85.00", + "start": "80.00", + "end": "85.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "120.00" @@ -515254,8 +515254,8 @@ "update_date": null, "activity_submission": null, "well": 112723, - "screen_from": "35.00", - "screen_to": "39.00", + "start": "35.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "20.00" @@ -515271,8 +515271,8 @@ "update_date": null, "activity_submission": null, "well": 113130, - "screen_from": "387.00", - "screen_to": "393.00", + "start": "387.00", + "end": "393.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "20.00" @@ -515288,8 +515288,8 @@ "update_date": null, "activity_submission": null, "well": 112847, - "screen_from": "234.20", - "screen_to": "245.00", + "start": "234.20", + "end": "245.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "50.00" @@ -515305,8 +515305,8 @@ "update_date": null, "activity_submission": null, "well": 112879, - "screen_from": "214.17", - "screen_to": "218.17", + "start": "214.17", + "end": "218.17", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -515322,8 +515322,8 @@ "update_date": null, "activity_submission": null, "well": 112887, - "screen_from": "104.00", - "screen_to": "108.00", + "start": "104.00", + "end": "108.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -515339,8 +515339,8 @@ "update_date": null, "activity_submission": null, "well": 112493, - "screen_from": "31.00", - "screen_to": "35.00", + "start": "31.00", + "end": "35.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515356,8 +515356,8 @@ "update_date": "2016-12-09T20:29:25Z", "activity_submission": null, "well": 112259, - "screen_from": "47.00", - "screen_to": "60.00", + "start": "47.00", + "end": "60.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -515373,8 +515373,8 @@ "update_date": null, "activity_submission": null, "well": 112589, - "screen_from": "0.00", - "screen_to": "95.00", + "start": "0.00", + "end": "95.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -515390,8 +515390,8 @@ "update_date": null, "activity_submission": null, "well": 112770, - "screen_from": "10.00", - "screen_to": "250.00", + "start": "10.00", + "end": "250.00", "internal_diameter": null, "assembly_type": "RISER_PIPE", "slot_size": null @@ -515407,8 +515407,8 @@ "update_date": null, "activity_submission": null, "well": 112570, - "screen_from": "12.00", - "screen_to": "15.00", + "start": "12.00", + "end": "15.00", "internal_diameter": "2.00", "assembly_type": null, "slot_size": "10.00" @@ -515424,8 +515424,8 @@ "update_date": null, "activity_submission": null, "well": 112621, - "screen_from": "120.00", - "screen_to": "125.00", + "start": "120.00", + "end": "125.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -515441,8 +515441,8 @@ "update_date": null, "activity_submission": null, "well": 112355, - "screen_from": "149.00", - "screen_to": "151.00", + "start": "149.00", + "end": "151.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -515458,8 +515458,8 @@ "update_date": null, "activity_submission": null, "well": 112257, - "screen_from": "32.00", - "screen_to": "38.00", + "start": "32.00", + "end": "38.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "25.00" @@ -515475,8 +515475,8 @@ "update_date": "2017-01-09T21:23:43Z", "activity_submission": null, "well": 112313, - "screen_from": "56.00", - "screen_to": "60.00", + "start": "56.00", + "end": "60.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515492,8 +515492,8 @@ "update_date": null, "activity_submission": null, "well": 112926, - "screen_from": "28.00", - "screen_to": "35.00", + "start": "28.00", + "end": "35.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -515509,8 +515509,8 @@ "update_date": null, "activity_submission": null, "well": 112669, - "screen_from": "195.00", - "screen_to": "200.00", + "start": "195.00", + "end": "200.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "18.00" @@ -515526,8 +515526,8 @@ "update_date": null, "activity_submission": null, "well": 112734, - "screen_from": "116.50", - "screen_to": "133.50", + "start": "116.50", + "end": "133.50", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -515543,8 +515543,8 @@ "update_date": null, "activity_submission": null, "well": 112443, - "screen_from": "84.03", - "screen_to": "89.06", + "start": "84.03", + "end": "89.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -515560,8 +515560,8 @@ "update_date": null, "activity_submission": null, "well": 112310, - "screen_from": "20.00", - "screen_to": "24.00", + "start": "20.00", + "end": "24.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -515577,8 +515577,8 @@ "update_date": null, "activity_submission": null, "well": 112867, - "screen_from": "15.50", - "screen_to": "18.50", + "start": "15.50", + "end": "18.50", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -515594,8 +515594,8 @@ "update_date": "2017-01-09T20:54:22Z", "activity_submission": null, "well": 112299, - "screen_from": "128.33", - "screen_to": "133.00", + "start": "128.33", + "end": "133.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515611,8 +515611,8 @@ "update_date": null, "activity_submission": null, "well": 112978, - "screen_from": "113.00", - "screen_to": "117.00", + "start": "113.00", + "end": "117.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "2.00" @@ -515628,8 +515628,8 @@ "update_date": null, "activity_submission": null, "well": 112244, - "screen_from": "10.00", - "screen_to": "40.00", + "start": "10.00", + "end": "40.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "30.00" @@ -515645,8 +515645,8 @@ "update_date": null, "activity_submission": null, "well": 112239, - "screen_from": "289.30", - "screen_to": "289.60", + "start": "289.30", + "end": "289.60", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -515662,8 +515662,8 @@ "update_date": null, "activity_submission": null, "well": 112598, - "screen_from": "109.00", - "screen_to": "114.00", + "start": "109.00", + "end": "114.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -515679,8 +515679,8 @@ "update_date": null, "activity_submission": null, "well": 112674, - "screen_from": "54.50", - "screen_to": "59.00", + "start": "54.50", + "end": "59.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "18.00" @@ -515696,8 +515696,8 @@ "update_date": null, "activity_submission": null, "well": 113137, - "screen_from": "96.00", - "screen_to": "100.08", + "start": "96.00", + "end": "100.08", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -515713,8 +515713,8 @@ "update_date": null, "activity_submission": null, "well": 113552, - "screen_from": "233.00", - "screen_to": "243.00", + "start": "233.00", + "end": "243.00", "internal_diameter": "3.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515730,8 +515730,8 @@ "update_date": null, "activity_submission": null, "well": 112972, - "screen_from": "73.50", - "screen_to": "74.00", + "start": "73.50", + "end": "74.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -515747,8 +515747,8 @@ "update_date": null, "activity_submission": null, "well": 113190, - "screen_from": "162.00", - "screen_to": "164.00", + "start": "162.00", + "end": "164.00", "internal_diameter": "6.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -515764,8 +515764,8 @@ "update_date": null, "activity_submission": null, "well": 112584, - "screen_from": "38.00", - "screen_to": "58.00", + "start": "38.00", + "end": "58.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515781,8 +515781,8 @@ "update_date": null, "activity_submission": null, "well": 112497, - "screen_from": "161.50", - "screen_to": "165.50", + "start": "161.50", + "end": "165.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -515798,8 +515798,8 @@ "update_date": null, "activity_submission": null, "well": 113033, - "screen_from": "51.00", - "screen_to": "55.60", + "start": "51.00", + "end": "55.60", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -515815,8 +515815,8 @@ "update_date": null, "activity_submission": null, "well": 112490, - "screen_from": "0.00", - "screen_to": "100.00", + "start": "0.00", + "end": "100.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": null @@ -515832,8 +515832,8 @@ "update_date": "2017-01-26T20:03:18Z", "activity_submission": null, "well": 112673, - "screen_from": "112.50", - "screen_to": "117.00", + "start": "112.50", + "end": "117.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -515849,8 +515849,8 @@ "update_date": "2016-12-09T20:23:11Z", "activity_submission": null, "well": 112265, - "screen_from": "48.00", - "screen_to": "60.00", + "start": "48.00", + "end": "60.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": null @@ -515866,8 +515866,8 @@ "update_date": null, "activity_submission": null, "well": 112836, - "screen_from": "80.00", - "screen_to": "83.00", + "start": "80.00", + "end": "83.00", "internal_diameter": "10.00", "assembly_type": "K_RISER", "slot_size": null @@ -515883,8 +515883,8 @@ "update_date": null, "activity_submission": null, "well": 112594, - "screen_from": "98.00", - "screen_to": "100.50", + "start": "98.00", + "end": "100.50", "internal_diameter": null, "assembly_type": "RISER_PIPE", "slot_size": null @@ -515900,8 +515900,8 @@ "update_date": null, "activity_submission": null, "well": 112605, - "screen_from": "109.00", - "screen_to": "111.00", + "start": "109.00", + "end": "111.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -515917,8 +515917,8 @@ "update_date": null, "activity_submission": null, "well": 112857, - "screen_from": "315.00", - "screen_to": "335.00", + "start": "315.00", + "end": "335.00", "internal_diameter": "4.98", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515934,8 +515934,8 @@ "update_date": null, "activity_submission": null, "well": 112426, - "screen_from": "40.00", - "screen_to": "44.00", + "start": "40.00", + "end": "44.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -515951,8 +515951,8 @@ "update_date": null, "activity_submission": null, "well": 113139, - "screen_from": "67.00", - "screen_to": "74.00", + "start": "67.00", + "end": "74.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "40.00" @@ -515968,8 +515968,8 @@ "update_date": null, "activity_submission": null, "well": 112411, - "screen_from": "51.00", - "screen_to": "56.00", + "start": "51.00", + "end": "56.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -515985,8 +515985,8 @@ "update_date": null, "activity_submission": null, "well": 113065, - "screen_from": "208.00", - "screen_to": "219.00", + "start": "208.00", + "end": "219.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "30.00" @@ -516002,8 +516002,8 @@ "update_date": null, "activity_submission": null, "well": 113216, - "screen_from": "220.00", - "screen_to": "260.00", + "start": "220.00", + "end": "260.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -516019,8 +516019,8 @@ "update_date": null, "activity_submission": null, "well": 112813, - "screen_from": "44.50", - "screen_to": "47.00", + "start": "44.50", + "end": "47.00", "internal_diameter": null, "assembly_type": "RISER_PIPE", "slot_size": null @@ -516036,8 +516036,8 @@ "update_date": null, "activity_submission": null, "well": 112625, - "screen_from": "117.00", - "screen_to": "170.00", + "start": "117.00", + "end": "170.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -516053,8 +516053,8 @@ "update_date": null, "activity_submission": null, "well": 112483, - "screen_from": "47.00", - "screen_to": "67.00", + "start": "47.00", + "end": "67.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "20.00" @@ -516070,8 +516070,8 @@ "update_date": "2017-02-14T20:28:51Z", "activity_submission": null, "well": 112797, - "screen_from": "85.90", - "screen_to": "90.90", + "start": "85.90", + "end": "90.90", "internal_diameter": "5.60", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -516087,8 +516087,8 @@ "update_date": null, "activity_submission": null, "well": 112152, - "screen_from": "50.00", - "screen_to": "54.50", + "start": "50.00", + "end": "54.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -516104,8 +516104,8 @@ "update_date": null, "activity_submission": null, "well": 112245, - "screen_from": "75.00", - "screen_to": "95.00", + "start": "75.00", + "end": "95.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "20.00" @@ -516121,8 +516121,8 @@ "update_date": null, "activity_submission": null, "well": 113151, - "screen_from": "171.00", - "screen_to": "175.00", + "start": "171.00", + "end": "175.00", "internal_diameter": "5.50", "assembly_type": null, "slot_size": "0.30" @@ -516138,8 +516138,8 @@ "update_date": null, "activity_submission": null, "well": 113139, - "screen_from": "78.00", - "screen_to": "82.00", + "start": "78.00", + "end": "82.00", "internal_diameter": "6.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -516155,8 +516155,8 @@ "update_date": null, "activity_submission": null, "well": 112417, - "screen_from": "54.00", - "screen_to": "58.00", + "start": "54.00", + "end": "58.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -516172,8 +516172,8 @@ "update_date": null, "activity_submission": null, "well": 113193, - "screen_from": "155.00", - "screen_to": "159.00", + "start": "155.00", + "end": "159.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "0.03" @@ -516189,8 +516189,8 @@ "update_date": null, "activity_submission": null, "well": 112969, - "screen_from": "45.00", - "screen_to": "45.50", + "start": "45.00", + "end": "45.50", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -516206,8 +516206,8 @@ "update_date": null, "activity_submission": null, "well": 112270, - "screen_from": "185.05", - "screen_to": "185.11", + "start": "185.05", + "end": "185.11", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -516223,8 +516223,8 @@ "update_date": null, "activity_submission": null, "well": 113108, - "screen_from": "173.01", - "screen_to": "177.06", + "start": "173.01", + "end": "177.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -516240,8 +516240,8 @@ "update_date": null, "activity_submission": null, "well": 113081, - "screen_from": "17.00", - "screen_to": "22.00", + "start": "17.00", + "end": "22.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "20.00" @@ -516257,8 +516257,8 @@ "update_date": null, "activity_submission": null, "well": 112296, - "screen_from": "120.00", - "screen_to": "200.00", + "start": "120.00", + "end": "200.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -516274,8 +516274,8 @@ "update_date": null, "activity_submission": null, "well": 112433, - "screen_from": "153.10", - "screen_to": "154.02", + "start": "153.10", + "end": "154.02", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -516291,8 +516291,8 @@ "update_date": null, "activity_submission": null, "well": 113171, - "screen_from": "247.00", - "screen_to": "249.00", + "start": "247.00", + "end": "249.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -516308,8 +516308,8 @@ "update_date": null, "activity_submission": null, "well": 113246, - "screen_from": "56.00", - "screen_to": "58.00", + "start": "56.00", + "end": "58.00", "internal_diameter": "10.00", "assembly_type": "K_RISER", "slot_size": null @@ -516325,8 +516325,8 @@ "update_date": null, "activity_submission": null, "well": 112425, - "screen_from": "76.00", - "screen_to": "80.00", + "start": "76.00", + "end": "80.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -516342,8 +516342,8 @@ "update_date": null, "activity_submission": null, "well": 112749, - "screen_from": "36.00", - "screen_to": "40.00", + "start": "36.00", + "end": "40.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "25.00" @@ -516359,8 +516359,8 @@ "update_date": null, "activity_submission": null, "well": 112798, - "screen_from": "93.80", - "screen_to": "97.90", + "start": "93.80", + "end": "97.90", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -516376,8 +516376,8 @@ "update_date": null, "activity_submission": null, "well": 112965, - "screen_from": "26.00", - "screen_to": "30.00", + "start": "26.00", + "end": "30.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -516393,8 +516393,8 @@ "update_date": null, "activity_submission": null, "well": 112428, - "screen_from": "104.00", - "screen_to": "112.00", + "start": "104.00", + "end": "112.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -516410,8 +516410,8 @@ "update_date": null, "activity_submission": null, "well": 112317, - "screen_from": "172.00", - "screen_to": "175.00", + "start": "172.00", + "end": "175.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -516427,8 +516427,8 @@ "update_date": null, "activity_submission": null, "well": 112836, - "screen_from": "83.00", - "screen_to": "88.00", + "start": "83.00", + "end": "88.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "200.00" @@ -516444,8 +516444,8 @@ "update_date": null, "activity_submission": null, "well": 112813, - "screen_from": "44.00", - "screen_to": "44.50", + "start": "44.00", + "end": "44.50", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -516461,8 +516461,8 @@ "update_date": null, "activity_submission": null, "well": 112520, - "screen_from": "28.60", - "screen_to": "31.60", + "start": "28.60", + "end": "31.60", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -516478,8 +516478,8 @@ "update_date": null, "activity_submission": null, "well": 112273, - "screen_from": "51.04", - "screen_to": "56.00", + "start": "51.04", + "end": "56.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -516495,8 +516495,8 @@ "update_date": null, "activity_submission": null, "well": 112882, - "screen_from": "113.00", - "screen_to": "115.00", + "start": "113.00", + "end": "115.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -516512,8 +516512,8 @@ "update_date": null, "activity_submission": null, "well": 112863, - "screen_from": "97.92", - "screen_to": "103.17", + "start": "97.92", + "end": "103.17", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -516529,8 +516529,8 @@ "update_date": null, "activity_submission": null, "well": 112563, - "screen_from": "73.00", - "screen_to": "175.00", + "start": "73.00", + "end": "175.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -516546,8 +516546,8 @@ "update_date": null, "activity_submission": null, "well": 112334, - "screen_from": "226.00", - "screen_to": "231.00", + "start": "226.00", + "end": "231.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": "30.00" @@ -516563,8 +516563,8 @@ "update_date": null, "activity_submission": null, "well": 112863, - "screen_from": "89.75", - "screen_to": "92.58", + "start": "89.75", + "end": "92.58", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": null @@ -516580,8 +516580,8 @@ "update_date": null, "activity_submission": null, "well": 112901, - "screen_from": "187.00", - "screen_to": "191.00", + "start": "187.00", + "end": "191.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -516597,8 +516597,8 @@ "update_date": null, "activity_submission": null, "well": 113129, - "screen_from": "190.00", - "screen_to": "196.00", + "start": "190.00", + "end": "196.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "30.00" @@ -516614,8 +516614,8 @@ "update_date": null, "activity_submission": null, "well": 112445, - "screen_from": "101.08", - "screen_to": "102.00", + "start": "101.08", + "end": "102.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -516631,8 +516631,8 @@ "update_date": null, "activity_submission": null, "well": 112571, - "screen_from": "15.00", - "screen_to": "75.00", + "start": "15.00", + "end": "75.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": null @@ -516648,8 +516648,8 @@ "update_date": null, "activity_submission": null, "well": 112527, - "screen_from": "275.00", - "screen_to": "295.00", + "start": "275.00", + "end": "295.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -516665,8 +516665,8 @@ "update_date": null, "activity_submission": null, "well": 112812, - "screen_from": "376.50", - "screen_to": "388.50", + "start": "376.50", + "end": "388.50", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -516682,8 +516682,8 @@ "update_date": null, "activity_submission": null, "well": 112591, - "screen_from": "25.00", - "screen_to": "230.00", + "start": "25.00", + "end": "230.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -516699,8 +516699,8 @@ "update_date": null, "activity_submission": null, "well": 112568, - "screen_from": "20.00", - "screen_to": "24.00", + "start": "20.00", + "end": "24.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -516716,8 +516716,8 @@ "update_date": null, "activity_submission": null, "well": 112609, - "screen_from": "73.01", - "screen_to": "73.05", + "start": "73.01", + "end": "73.05", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -516733,8 +516733,8 @@ "update_date": null, "activity_submission": null, "well": 112417, - "screen_from": "52.00", - "screen_to": "54.00", + "start": "52.00", + "end": "54.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -516750,8 +516750,8 @@ "update_date": null, "activity_submission": null, "well": 113288, - "screen_from": "0.00", - "screen_to": null, + "start": "0.00", + "end": null, "internal_diameter": null, "assembly_type": null, "slot_size": null @@ -516767,8 +516767,8 @@ "update_date": null, "activity_submission": null, "well": 112841, - "screen_from": "199.50", - "screen_to": "201.50", + "start": "199.50", + "end": "201.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -516784,8 +516784,8 @@ "update_date": null, "activity_submission": null, "well": 112753, - "screen_from": "62.50", - "screen_to": "69.00", + "start": "62.50", + "end": "69.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "30.00" @@ -516801,8 +516801,8 @@ "update_date": null, "activity_submission": null, "well": 112990, - "screen_from": "136.00", - "screen_to": "141.00", + "start": "136.00", + "end": "141.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -516818,8 +516818,8 @@ "update_date": null, "activity_submission": null, "well": 113263, - "screen_from": "48.50", - "screen_to": "50.50", + "start": "48.50", + "end": "50.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -516835,8 +516835,8 @@ "update_date": null, "activity_submission": null, "well": 112964, - "screen_from": "68.50", - "screen_to": "69.00", + "start": "68.50", + "end": "69.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -516852,8 +516852,8 @@ "update_date": null, "activity_submission": null, "well": 112425, - "screen_from": "74.00", - "screen_to": "76.00", + "start": "74.00", + "end": "76.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -516869,8 +516869,8 @@ "update_date": "2016-12-09T20:15:59Z", "activity_submission": null, "well": 112256, - "screen_from": "63.00", - "screen_to": "68.00", + "start": "63.00", + "end": "68.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -516886,8 +516886,8 @@ "update_date": null, "activity_submission": null, "well": 112593, - "screen_from": "126.00", - "screen_to": "130.00", + "start": "126.00", + "end": "130.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -516903,8 +516903,8 @@ "update_date": null, "activity_submission": null, "well": 112858, - "screen_from": "180.00", - "screen_to": "200.00", + "start": "180.00", + "end": "200.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -516920,8 +516920,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "230.00", - "screen_to": "232.00", + "start": "230.00", + "end": "232.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "20.00" @@ -516937,8 +516937,8 @@ "update_date": null, "activity_submission": null, "well": 112621, - "screen_from": "130.00", - "screen_to": "135.00", + "start": "130.00", + "end": "135.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -516954,8 +516954,8 @@ "update_date": null, "activity_submission": null, "well": 112859, - "screen_from": "94.00", - "screen_to": "98.00", + "start": "94.00", + "end": "98.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -516971,8 +516971,8 @@ "update_date": null, "activity_submission": null, "well": 112448, - "screen_from": "101.06", - "screen_to": "106.00", + "start": "101.06", + "end": "106.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -516988,8 +516988,8 @@ "update_date": null, "activity_submission": null, "well": 112939, - "screen_from": "150.00", - "screen_to": "155.00", + "start": "150.00", + "end": "155.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517005,8 +517005,8 @@ "update_date": null, "activity_submission": null, "well": 112873, - "screen_from": "54.00", - "screen_to": "58.00", + "start": "54.00", + "end": "58.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -517022,8 +517022,8 @@ "update_date": null, "activity_submission": null, "well": 112427, - "screen_from": "40.00", - "screen_to": "42.00", + "start": "40.00", + "end": "42.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -517039,8 +517039,8 @@ "update_date": null, "activity_submission": null, "well": 112922, - "screen_from": "181.00", - "screen_to": "186.00", + "start": "181.00", + "end": "186.00", "internal_diameter": "7.00", "assembly_type": "K_RISER", "slot_size": "80.00" @@ -517056,8 +517056,8 @@ "update_date": null, "activity_submission": null, "well": 113141, - "screen_from": "71.00", - "screen_to": "75.00", + "start": "71.00", + "end": "75.00", "internal_diameter": "6.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -517073,8 +517073,8 @@ "update_date": null, "activity_submission": null, "well": 113166, - "screen_from": "19.50", - "screen_to": "24.00", + "start": "19.50", + "end": "24.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -517090,8 +517090,8 @@ "update_date": null, "activity_submission": null, "well": 112270, - "screen_from": "181.00", - "screen_to": "185.05", + "start": "181.00", + "end": "185.05", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -517107,8 +517107,8 @@ "update_date": null, "activity_submission": null, "well": 112525, - "screen_from": "296.00", - "screen_to": "336.00", + "start": "296.00", + "end": "336.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517124,8 +517124,8 @@ "update_date": null, "activity_submission": null, "well": 112769, - "screen_from": "67.00", - "screen_to": "83.00", + "start": "67.00", + "end": "83.00", "internal_diameter": "16.00", "assembly_type": "SCREEN", "slot_size": null @@ -517141,8 +517141,8 @@ "update_date": null, "activity_submission": null, "well": 113210, - "screen_from": "260.00", - "screen_to": "280.00", + "start": "260.00", + "end": "280.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517158,8 +517158,8 @@ "update_date": null, "activity_submission": null, "well": 112484, - "screen_from": "80.00", - "screen_to": "100.00", + "start": "80.00", + "end": "100.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517175,8 +517175,8 @@ "update_date": null, "activity_submission": null, "well": 112267, - "screen_from": "159.04", - "screen_to": "163.08", + "start": "159.04", + "end": "163.08", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -517192,8 +517192,8 @@ "update_date": null, "activity_submission": null, "well": 112875, - "screen_from": "31.00", - "screen_to": "33.50", + "start": "31.00", + "end": "33.50", "internal_diameter": "5.00", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -517209,8 +517209,8 @@ "update_date": null, "activity_submission": null, "well": 112986, - "screen_from": "47.00", - "screen_to": "51.00", + "start": "47.00", + "end": "51.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517226,8 +517226,8 @@ "update_date": null, "activity_submission": null, "well": 112239, - "screen_from": "289.60", - "screen_to": "291.30", + "start": "289.60", + "end": "291.30", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -517243,8 +517243,8 @@ "update_date": null, "activity_submission": null, "well": 113185, - "screen_from": "115.00", - "screen_to": "119.00", + "start": "115.00", + "end": "119.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "0.03" @@ -517260,8 +517260,8 @@ "update_date": null, "activity_submission": null, "well": 112253, - "screen_from": "61.00", - "screen_to": "65.00", + "start": "61.00", + "end": "65.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "25.00" @@ -517277,8 +517277,8 @@ "update_date": null, "activity_submission": null, "well": 112278, - "screen_from": "268.00", - "screen_to": "272.08", + "start": "268.00", + "end": "272.08", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -517294,8 +517294,8 @@ "update_date": null, "activity_submission": null, "well": 112757, - "screen_from": "371.00", - "screen_to": "376.00", + "start": "371.00", + "end": "376.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -517311,8 +517311,8 @@ "update_date": null, "activity_submission": null, "well": 112841, - "screen_from": "201.50", - "screen_to": "206.00", + "start": "201.50", + "end": "206.00", "internal_diameter": "5.00", "assembly_type": "SCRN_BLANK", "slot_size": "10.00" @@ -517328,8 +517328,8 @@ "update_date": null, "activity_submission": null, "well": 113172, - "screen_from": "310.00", - "screen_to": "330.00", + "start": "310.00", + "end": "330.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -517345,8 +517345,8 @@ "update_date": null, "activity_submission": null, "well": 112966, - "screen_from": "25.50", - "screen_to": "26.00", + "start": "25.50", + "end": "26.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -517362,8 +517362,8 @@ "update_date": null, "activity_submission": null, "well": 112536, - "screen_from": "94.00", - "screen_to": "96.00", + "start": "94.00", + "end": "96.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -517379,8 +517379,8 @@ "update_date": null, "activity_submission": null, "well": 113184, - "screen_from": "39.00", - "screen_to": "42.00", + "start": "39.00", + "end": "42.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -517396,8 +517396,8 @@ "update_date": null, "activity_submission": null, "well": 113095, - "screen_from": "200.00", - "screen_to": "240.00", + "start": "200.00", + "end": "240.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -517413,8 +517413,8 @@ "update_date": null, "activity_submission": null, "well": 112152, - "screen_from": "54.50", - "screen_to": "55.00", + "start": "54.50", + "end": "55.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -517430,8 +517430,8 @@ "update_date": null, "activity_submission": null, "well": 112979, - "screen_from": "101.50", - "screen_to": "102.00", + "start": "101.50", + "end": "102.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -517447,8 +517447,8 @@ "update_date": null, "activity_submission": null, "well": 112762, - "screen_from": "215.00", - "screen_to": "220.00", + "start": "215.00", + "end": "220.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -517464,8 +517464,8 @@ "update_date": null, "activity_submission": null, "well": 112481, - "screen_from": "84.00", - "screen_to": "88.00", + "start": "84.00", + "end": "88.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -517481,8 +517481,8 @@ "update_date": null, "activity_submission": null, "well": 113271, - "screen_from": "166.00", - "screen_to": "168.00", + "start": "166.00", + "end": "168.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -517498,8 +517498,8 @@ "update_date": null, "activity_submission": null, "well": 112977, - "screen_from": "162.50", - "screen_to": "164.50", + "start": "162.50", + "end": "164.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -517515,8 +517515,8 @@ "update_date": null, "activity_submission": null, "well": 112523, - "screen_from": "26.50", - "screen_to": "30.50", + "start": "26.50", + "end": "30.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -517532,8 +517532,8 @@ "update_date": null, "activity_submission": null, "well": 112964, - "screen_from": "69.00", - "screen_to": "73.00", + "start": "69.00", + "end": "73.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -517549,8 +517549,8 @@ "update_date": null, "activity_submission": null, "well": 113100, - "screen_from": "280.83", - "screen_to": "294.00", + "start": "280.83", + "end": "294.00", "internal_diameter": null, "assembly_type": null, "slot_size": null @@ -517566,8 +517566,8 @@ "update_date": null, "activity_submission": null, "well": 112732, - "screen_from": "30.00", - "screen_to": "39.00", + "start": "30.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "30.00" @@ -517583,8 +517583,8 @@ "update_date": null, "activity_submission": null, "well": 113057, - "screen_from": "227.00", - "screen_to": "238.00", + "start": "227.00", + "end": "238.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "30.00" @@ -517600,8 +517600,8 @@ "update_date": null, "activity_submission": null, "well": 112318, - "screen_from": "255.00", - "screen_to": "260.00", + "start": "255.00", + "end": "260.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "10.00" @@ -517617,8 +517617,8 @@ "update_date": null, "activity_submission": null, "well": 112365, - "screen_from": "218.03", - "screen_to": "218.07", + "start": "218.03", + "end": "218.07", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -517634,8 +517634,8 @@ "update_date": null, "activity_submission": null, "well": 113212, - "screen_from": "243.06", - "screen_to": "248.00", + "start": "243.06", + "end": "248.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -517651,8 +517651,8 @@ "update_date": null, "activity_submission": null, "well": 112571, - "screen_from": "75.00", - "screen_to": "95.00", + "start": "75.00", + "end": "95.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517668,8 +517668,8 @@ "update_date": null, "activity_submission": null, "well": 112757, - "screen_from": "365.50", - "screen_to": "371.00", + "start": "365.50", + "end": "371.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -517685,8 +517685,8 @@ "update_date": null, "activity_submission": null, "well": 112400, - "screen_from": "67.50", - "screen_to": "76.00", + "start": "67.50", + "end": "76.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -517702,8 +517702,8 @@ "update_date": null, "activity_submission": null, "well": 112972, - "screen_from": "74.00", - "screen_to": "78.00", + "start": "74.00", + "end": "78.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -517719,8 +517719,8 @@ "update_date": null, "activity_submission": null, "well": 112368, - "screen_from": "173.01", - "screen_to": "173.05", + "start": "173.01", + "end": "173.05", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -517736,8 +517736,8 @@ "update_date": null, "activity_submission": null, "well": 112982, - "screen_from": "73.00", - "screen_to": "77.00", + "start": "73.00", + "end": "77.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -517753,8 +517753,8 @@ "update_date": null, "activity_submission": null, "well": 112762, - "screen_from": "211.00", - "screen_to": "215.00", + "start": "211.00", + "end": "215.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -517770,8 +517770,8 @@ "update_date": null, "activity_submission": null, "well": 112592, - "screen_from": "54.00", - "screen_to": "64.00", + "start": "54.00", + "end": "64.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -517787,8 +517787,8 @@ "update_date": null, "activity_submission": null, "well": 112862, - "screen_from": "112.00", - "screen_to": "117.00", + "start": "112.00", + "end": "117.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -517804,8 +517804,8 @@ "update_date": null, "activity_submission": null, "well": 112257, - "screen_from": "30.00", - "screen_to": "32.00", + "start": "30.00", + "end": "32.00", "internal_diameter": "6.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -517821,8 +517821,8 @@ "update_date": null, "activity_submission": null, "well": 112260, - "screen_from": "69.00", - "screen_to": "77.00", + "start": "69.00", + "end": "77.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -517838,8 +517838,8 @@ "update_date": null, "activity_submission": null, "well": 112982, - "screen_from": "72.50", - "screen_to": "73.00", + "start": "72.50", + "end": "73.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -517855,8 +517855,8 @@ "update_date": null, "activity_submission": null, "well": 112323, - "screen_from": "16.00", - "screen_to": "36.00", + "start": "16.00", + "end": "36.00", "internal_diameter": "4.94", "assembly_type": null, "slot_size": null @@ -517872,8 +517872,8 @@ "update_date": null, "activity_submission": null, "well": 113009, - "screen_from": "158.00", - "screen_to": "163.00", + "start": "158.00", + "end": "163.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "15.00" @@ -517889,8 +517889,8 @@ "update_date": null, "activity_submission": null, "well": 113211, - "screen_from": "65.04", - "screen_to": "70.00", + "start": "65.04", + "end": "70.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -517906,8 +517906,8 @@ "update_date": null, "activity_submission": null, "well": 112950, - "screen_from": "36.00", - "screen_to": "38.00", + "start": "36.00", + "end": "38.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": null @@ -517923,8 +517923,8 @@ "update_date": null, "activity_submission": null, "well": 112334, - "screen_from": "224.00", - "screen_to": "226.00", + "start": "224.00", + "end": "226.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -517940,8 +517940,8 @@ "update_date": null, "activity_submission": null, "well": 113138, - "screen_from": "173.04", - "screen_to": "173.08", + "start": "173.04", + "end": "173.08", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -517957,8 +517957,8 @@ "update_date": null, "activity_submission": null, "well": 113119, - "screen_from": "109.00", - "screen_to": "111.00", + "start": "109.00", + "end": "111.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -517974,8 +517974,8 @@ "update_date": "2017-02-03T21:45:48Z", "activity_submission": null, "well": 112492, - "screen_from": "361.00", - "screen_to": "361.50", + "start": "361.00", + "end": "361.50", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -517991,8 +517991,8 @@ "update_date": null, "activity_submission": null, "well": 112272, - "screen_from": "77.08", - "screen_to": "78.00", + "start": "77.08", + "end": "78.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -518008,8 +518008,8 @@ "update_date": null, "activity_submission": null, "well": 112466, - "screen_from": "56.00", - "screen_to": "56.00", + "start": "56.00", + "end": "56.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -518025,8 +518025,8 @@ "update_date": null, "activity_submission": null, "well": 112245, - "screen_from": "155.00", - "screen_to": "175.00", + "start": "155.00", + "end": "175.00", "internal_diameter": null, "assembly_type": null, "slot_size": "20.00" @@ -518042,8 +518042,8 @@ "update_date": null, "activity_submission": null, "well": 112687, - "screen_from": "54.83", - "screen_to": "59.50", + "start": "54.83", + "end": "59.50", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -518059,8 +518059,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "660.00", - "screen_to": "680.00", + "start": "660.00", + "end": "680.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": null @@ -518076,8 +518076,8 @@ "update_date": null, "activity_submission": null, "well": 112755, - "screen_from": "85.20", - "screen_to": "90.00", + "start": "85.20", + "end": "90.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "15.00" @@ -518093,8 +518093,8 @@ "update_date": null, "activity_submission": null, "well": 112946, - "screen_from": "21.00", - "screen_to": "25.00", + "start": "21.00", + "end": "25.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -518110,8 +518110,8 @@ "update_date": null, "activity_submission": null, "well": 112812, - "screen_from": "350.00", - "screen_to": "358.00", + "start": "350.00", + "end": "358.00", "internal_diameter": "8.00", "assembly_type": "K_RISER", "slot_size": null @@ -518127,8 +518127,8 @@ "update_date": null, "activity_submission": null, "well": 112752, - "screen_from": "104.20", - "screen_to": "110.00", + "start": "104.20", + "end": "110.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "35.00" @@ -518144,8 +518144,8 @@ "update_date": null, "activity_submission": null, "well": 112734, - "screen_from": "133.50", - "screen_to": "138.00", + "start": "133.50", + "end": "138.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -518161,8 +518161,8 @@ "update_date": null, "activity_submission": null, "well": 112713, - "screen_from": "35.00", - "screen_to": "39.00", + "start": "35.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "25.00" @@ -518178,8 +518178,8 @@ "update_date": null, "activity_submission": null, "well": 112863, - "screen_from": "103.17", - "screen_to": "106.50", + "start": "103.17", + "end": "106.50", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": null @@ -518195,8 +518195,8 @@ "update_date": null, "activity_submission": null, "well": 112651, - "screen_from": "175.00", - "screen_to": "185.00", + "start": "175.00", + "end": "185.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -518212,8 +518212,8 @@ "update_date": null, "activity_submission": null, "well": 112864, - "screen_from": "106.00", - "screen_to": "108.00", + "start": "106.00", + "end": "108.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -518229,8 +518229,8 @@ "update_date": null, "activity_submission": null, "well": 112887, - "screen_from": "100.00", - "screen_to": "104.00", + "start": "100.00", + "end": "104.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -518246,8 +518246,8 @@ "update_date": null, "activity_submission": null, "well": 112936, - "screen_from": "263.00", - "screen_to": "268.00", + "start": "263.00", + "end": "268.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -518263,8 +518263,8 @@ "update_date": null, "activity_submission": null, "well": 112628, - "screen_from": "209.00", - "screen_to": "215.00", + "start": "209.00", + "end": "215.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -518280,8 +518280,8 @@ "update_date": null, "activity_submission": null, "well": 112543, - "screen_from": "76.00", - "screen_to": "80.75", + "start": "76.00", + "end": "80.75", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -518297,8 +518297,8 @@ "update_date": null, "activity_submission": null, "well": 112868, - "screen_from": "275.00", - "screen_to": "295.00", + "start": "275.00", + "end": "295.00", "internal_diameter": "4.98", "assembly_type": null, "slot_size": "20.00" @@ -518314,8 +518314,8 @@ "update_date": null, "activity_submission": null, "well": 112451, - "screen_from": "172.08", - "screen_to": "173.00", + "start": "172.08", + "end": "173.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -518331,8 +518331,8 @@ "update_date": null, "activity_submission": null, "well": 112784, - "screen_from": "43.40", - "screen_to": "60.30", + "start": "43.40", + "end": "60.30", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -518348,8 +518348,8 @@ "update_date": null, "activity_submission": null, "well": 112566, - "screen_from": "440.50", - "screen_to": "480.00", + "start": "440.50", + "end": "480.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "89.00" @@ -518365,8 +518365,8 @@ "update_date": null, "activity_submission": null, "well": 113284, - "screen_from": "95.00", - "screen_to": "97.00", + "start": "95.00", + "end": "97.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -518382,8 +518382,8 @@ "update_date": "2017-01-05T20:36:00Z", "activity_submission": null, "well": 112537, - "screen_from": "270.00", - "screen_to": "272.00", + "start": "270.00", + "end": "272.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -518399,8 +518399,8 @@ "update_date": null, "activity_submission": null, "well": 112986, - "screen_from": "46.50", - "screen_to": "47.00", + "start": "46.50", + "end": "47.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -518416,8 +518416,8 @@ "update_date": "2017-02-03T21:49:00Z", "activity_submission": null, "well": 112563, - "screen_from": "80.00", - "screen_to": "180.50", + "start": "80.00", + "end": "180.50", "internal_diameter": "6.00", "assembly_type": null, "slot_size": null @@ -518433,8 +518433,8 @@ "update_date": null, "activity_submission": null, "well": 113026, - "screen_from": "215.00", - "screen_to": "255.00", + "start": "215.00", + "end": "255.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": null @@ -518450,8 +518450,8 @@ "update_date": null, "activity_submission": null, "well": 112481, - "screen_from": "88.00", - "screen_to": "92.00", + "start": "88.00", + "end": "92.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -518467,8 +518467,8 @@ "update_date": null, "activity_submission": null, "well": 113279, - "screen_from": "135.00", - "screen_to": "156.00", + "start": "135.00", + "end": "156.00", "internal_diameter": "11.00", "assembly_type": "K_PACKER", "slot_size": "100.00" @@ -518484,8 +518484,8 @@ "update_date": null, "activity_submission": null, "well": 112593, - "screen_from": "124.00", - "screen_to": "126.00", + "start": "124.00", + "end": "126.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -518501,8 +518501,8 @@ "update_date": null, "activity_submission": null, "well": 112318, - "screen_from": "252.00", - "screen_to": "255.00", + "start": "252.00", + "end": "255.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -518518,8 +518518,8 @@ "update_date": null, "activity_submission": null, "well": 112910, - "screen_from": "60.00", - "screen_to": "64.00", + "start": "60.00", + "end": "64.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "30.00" @@ -518535,8 +518535,8 @@ "update_date": null, "activity_submission": null, "well": 112325, - "screen_from": "339.00", - "screen_to": "359.00", + "start": "339.00", + "end": "359.00", "internal_diameter": "4.98", "assembly_type": null, "slot_size": "20.00" @@ -518552,8 +518552,8 @@ "update_date": null, "activity_submission": null, "well": 113142, - "screen_from": "66.00", - "screen_to": "71.00", + "start": "66.00", + "end": "71.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -518569,8 +518569,8 @@ "update_date": null, "activity_submission": null, "well": 112267, - "screen_from": "150.08", - "screen_to": "155.00", + "start": "150.08", + "end": "155.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -518586,8 +518586,8 @@ "update_date": null, "activity_submission": null, "well": 112267, - "screen_from": "150.04", - "screen_to": "150.08", + "start": "150.04", + "end": "150.08", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -518603,8 +518603,8 @@ "update_date": null, "activity_submission": null, "well": 112605, - "screen_from": "111.00", - "screen_to": "115.00", + "start": "111.00", + "end": "115.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -518620,8 +518620,8 @@ "update_date": null, "activity_submission": null, "well": 112483, - "screen_from": "0.00", - "screen_to": "47.00", + "start": "0.00", + "end": "47.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -518637,8 +518637,8 @@ "update_date": null, "activity_submission": null, "well": 112407, - "screen_from": "151.00", - "screen_to": "155.00", + "start": "151.00", + "end": "155.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -518654,8 +518654,8 @@ "update_date": null, "activity_submission": null, "well": 112768, - "screen_from": "1274.60", - "screen_to": "1316.60", + "start": "1274.60", + "end": "1316.60", "internal_diameter": "5.50", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -518671,8 +518671,8 @@ "update_date": null, "activity_submission": null, "well": 112789, - "screen_from": "32.50", - "screen_to": "44.00", + "start": "32.50", + "end": "44.00", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -518688,8 +518688,8 @@ "update_date": null, "activity_submission": null, "well": 112443, - "screen_from": "83.11", - "screen_to": "84.03", + "start": "83.11", + "end": "84.03", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -518705,8 +518705,8 @@ "update_date": null, "activity_submission": null, "well": 112595, - "screen_from": "111.00", - "screen_to": "115.00", + "start": "111.00", + "end": "115.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -518722,8 +518722,8 @@ "update_date": null, "activity_submission": null, "well": 112368, - "screen_from": "173.05", - "screen_to": "178.00", + "start": "173.05", + "end": "178.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -518739,8 +518739,8 @@ "update_date": null, "activity_submission": null, "well": 112505, - "screen_from": "50.42", - "screen_to": "57.00", + "start": "50.42", + "end": "57.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "40.00" @@ -518756,8 +518756,8 @@ "update_date": null, "activity_submission": null, "well": 112966, - "screen_from": "26.00", - "screen_to": "30.00", + "start": "26.00", + "end": "30.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -518773,8 +518773,8 @@ "update_date": null, "activity_submission": null, "well": 112812, - "screen_from": "358.00", - "screen_to": "376.50", + "start": "358.00", + "end": "376.50", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "24.00" @@ -518790,8 +518790,8 @@ "update_date": null, "activity_submission": null, "well": 112512, - "screen_from": "150.00", - "screen_to": "150.50", + "start": "150.00", + "end": "150.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -518807,8 +518807,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "680.00", - "screen_to": "740.00", + "start": "680.00", + "end": "740.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "20.00" @@ -518824,8 +518824,8 @@ "update_date": null, "activity_submission": null, "well": 113069, - "screen_from": "302.00", - "screen_to": "311.00", + "start": "302.00", + "end": "311.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -518841,8 +518841,8 @@ "update_date": null, "activity_submission": null, "well": 113036, - "screen_from": "600.00", - "screen_to": "620.00", + "start": "600.00", + "end": "620.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": null @@ -518858,8 +518858,8 @@ "update_date": null, "activity_submission": null, "well": 112968, - "screen_from": "26.00", - "screen_to": "30.00", + "start": "26.00", + "end": "30.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -518875,8 +518875,8 @@ "update_date": null, "activity_submission": null, "well": 112764, - "screen_from": "9.50", - "screen_to": "20.00", + "start": "9.50", + "end": "20.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "10.00" @@ -518892,8 +518892,8 @@ "update_date": null, "activity_submission": null, "well": 112615, - "screen_from": "225.00", - "screen_to": "240.00", + "start": "225.00", + "end": "240.00", "internal_diameter": "12.00", "assembly_type": "K_PACKER", "slot_size": "15.00" @@ -518909,8 +518909,8 @@ "update_date": null, "activity_submission": null, "well": 112940, - "screen_from": "71.00", - "screen_to": "75.00", + "start": "71.00", + "end": "75.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -518926,8 +518926,8 @@ "update_date": null, "activity_submission": null, "well": 112603, - "screen_from": "214.00", - "screen_to": "216.00", + "start": "214.00", + "end": "216.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -518943,8 +518943,8 @@ "update_date": null, "activity_submission": null, "well": 112409, - "screen_from": "445.00", - "screen_to": "450.00", + "start": "445.00", + "end": "450.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "0.00" @@ -518960,8 +518960,8 @@ "update_date": null, "activity_submission": null, "well": 112927, - "screen_from": "51.00", - "screen_to": "55.00", + "start": "51.00", + "end": "55.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -518977,8 +518977,8 @@ "update_date": "2017-11-03T17:11:08Z", "activity_submission": null, "well": 113078, - "screen_from": "227.00", - "screen_to": "232.00", + "start": "227.00", + "end": "232.00", "internal_diameter": "9.50", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -518994,8 +518994,8 @@ "update_date": null, "activity_submission": null, "well": 107072, - "screen_from": "293.00", - "screen_to": "393.00", + "start": "293.00", + "end": "393.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -519011,8 +519011,8 @@ "update_date": null, "activity_submission": null, "well": 113263, - "screen_from": "50.50", - "screen_to": "55.00", + "start": "50.50", + "end": "55.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -519028,8 +519028,8 @@ "update_date": null, "activity_submission": null, "well": 112657, - "screen_from": "190.00", - "screen_to": "195.00", + "start": "190.00", + "end": "195.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": null @@ -519045,8 +519045,8 @@ "update_date": null, "activity_submission": null, "well": 112512, - "screen_from": "146.00", - "screen_to": "150.00", + "start": "146.00", + "end": "150.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -519062,8 +519062,8 @@ "update_date": null, "activity_submission": null, "well": 112924, - "screen_from": "69.00", - "screen_to": "75.00", + "start": "69.00", + "end": "75.00", "internal_diameter": null, "assembly_type": null, "slot_size": "30.00" @@ -519079,8 +519079,8 @@ "update_date": null, "activity_submission": null, "well": 113002, - "screen_from": "40.99", - "screen_to": "44.00", + "start": "40.99", + "end": "44.00", "internal_diameter": "8.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -519096,8 +519096,8 @@ "update_date": null, "activity_submission": null, "well": 112958, - "screen_from": "261.00", - "screen_to": "262.00", + "start": "261.00", + "end": "262.00", "internal_diameter": "7.00", "assembly_type": "K_PACKER", "slot_size": null @@ -519113,8 +519113,8 @@ "update_date": null, "activity_submission": null, "well": 112316, - "screen_from": "192.00", - "screen_to": "195.00", + "start": "192.00", + "end": "195.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -519130,8 +519130,8 @@ "update_date": "2017-11-03T17:11:23Z", "activity_submission": null, "well": 113078, - "screen_from": "220.00", - "screen_to": "227.00", + "start": "220.00", + "end": "227.00", "internal_diameter": "9.50", "assembly_type": "SCREEN", "slot_size": "150.00" @@ -519147,8 +519147,8 @@ "update_date": null, "activity_submission": null, "well": 112452, - "screen_from": "73.02", - "screen_to": "73.06", + "start": "73.02", + "end": "73.06", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -519164,8 +519164,8 @@ "update_date": null, "activity_submission": null, "well": 112765, - "screen_from": "9.50", - "screen_to": "20.00", + "start": "9.50", + "end": "20.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "10.00" @@ -519181,8 +519181,8 @@ "update_date": null, "activity_submission": null, "well": 112802, - "screen_from": "58.80", - "screen_to": "76.80", + "start": "58.80", + "end": "76.80", "internal_diameter": "10.75", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -519198,8 +519198,8 @@ "update_date": null, "activity_submission": null, "well": 112351, - "screen_from": "42.08", - "screen_to": "47.04", + "start": "42.08", + "end": "47.04", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -519215,8 +519215,8 @@ "update_date": null, "activity_submission": null, "well": 112239, - "screen_from": "296.50", - "screen_to": "325.00", + "start": "296.50", + "end": "325.00", "internal_diameter": "5.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -519232,8 +519232,8 @@ "update_date": "2016-12-08T20:28:01Z", "activity_submission": null, "well": 112281, - "screen_from": "60.00", - "screen_to": "64.00", + "start": "60.00", + "end": "64.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -519249,8 +519249,8 @@ "update_date": null, "activity_submission": null, "well": 112963, - "screen_from": "298.00", - "screen_to": "303.00", + "start": "298.00", + "end": "303.00", "internal_diameter": "10.60", "assembly_type": "K_RISER", "slot_size": null @@ -519266,8 +519266,8 @@ "update_date": null, "activity_submission": null, "well": 112783, - "screen_from": "57.00", - "screen_to": "63.10", + "start": "57.00", + "end": "63.10", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -519283,8 +519283,8 @@ "update_date": null, "activity_submission": null, "well": 112504, - "screen_from": "73.00", - "screen_to": "78.00", + "start": "73.00", + "end": "78.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -519300,8 +519300,8 @@ "update_date": "2016-12-04T03:14:29Z", "activity_submission": null, "well": 112237, - "screen_from": "207.00", - "screen_to": "235.00", + "start": "207.00", + "end": "235.00", "internal_diameter": null, "assembly_type": "K_RISER", "slot_size": "150.00" @@ -519317,8 +519317,8 @@ "update_date": null, "activity_submission": null, "well": 112533, - "screen_from": "272.00", - "screen_to": "283.00", + "start": "272.00", + "end": "283.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "150.00" @@ -519334,8 +519334,8 @@ "update_date": null, "activity_submission": null, "well": 112963, - "screen_from": "303.00", - "screen_to": "309.00", + "start": "303.00", + "end": "309.00", "internal_diameter": "10.60", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -519351,8 +519351,8 @@ "update_date": null, "activity_submission": null, "well": 112622, - "screen_from": "351.00", - "screen_to": "356.00", + "start": "351.00", + "end": "356.00", "internal_diameter": "8.00", "assembly_type": "K_RISER", "slot_size": "50.00" @@ -519368,8 +519368,8 @@ "update_date": null, "activity_submission": null, "well": 113002, - "screen_from": "30.66", - "screen_to": "40.99", + "start": "30.66", + "end": "40.99", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -519385,8 +519385,8 @@ "update_date": null, "activity_submission": null, "well": 112495, - "screen_from": "149.00", - "screen_to": "150.00", + "start": "149.00", + "end": "150.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -519402,8 +519402,8 @@ "update_date": null, "activity_submission": null, "well": 112427, - "screen_from": "42.00", - "screen_to": "46.00", + "start": "42.00", + "end": "46.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -519419,8 +519419,8 @@ "update_date": null, "activity_submission": null, "well": 112858, - "screen_from": "160.00", - "screen_to": "180.00", + "start": "160.00", + "end": "180.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": null @@ -519436,8 +519436,8 @@ "update_date": null, "activity_submission": null, "well": 113173, - "screen_from": "90.00", - "screen_to": "95.00", + "start": "90.00", + "end": "95.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -519453,8 +519453,8 @@ "update_date": null, "activity_submission": null, "well": 113270, - "screen_from": "81.00", - "screen_to": "86.00", + "start": "81.00", + "end": "86.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -519470,8 +519470,8 @@ "update_date": null, "activity_submission": null, "well": 112795, - "screen_from": "72.00", - "screen_to": "74.00", + "start": "72.00", + "end": "74.00", "internal_diameter": "8.00", "assembly_type": "SCRN_BLANK", "slot_size": "0.00" @@ -519487,8 +519487,8 @@ "update_date": null, "activity_submission": null, "well": 112979, - "screen_from": "102.00", - "screen_to": "106.00", + "start": "102.00", + "end": "106.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -519504,8 +519504,8 @@ "update_date": null, "activity_submission": null, "well": 112941, - "screen_from": "50.00", - "screen_to": "55.00", + "start": "50.00", + "end": "55.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -519521,8 +519521,8 @@ "update_date": null, "activity_submission": null, "well": 112239, - "screen_from": "291.30", - "screen_to": "296.50", + "start": "291.30", + "end": "296.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -519538,8 +519538,8 @@ "update_date": null, "activity_submission": null, "well": 112863, - "screen_from": "92.58", - "screen_to": "97.92", + "start": "92.58", + "end": "97.92", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -519555,8 +519555,8 @@ "update_date": null, "activity_submission": null, "well": 112911, - "screen_from": "56.00", - "screen_to": "66.00", + "start": "56.00", + "end": "66.00", "internal_diameter": "7.00", "assembly_type": "K_RISER", "slot_size": "60.00" @@ -519572,8 +519572,8 @@ "update_date": null, "activity_submission": null, "well": 112435, - "screen_from": "78.02", - "screen_to": "78.06", + "start": "78.02", + "end": "78.06", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -519589,8 +519589,8 @@ "update_date": "2017-01-09T18:34:16Z", "activity_submission": null, "well": 112417, - "screen_from": "58.00", - "screen_to": "58.50", + "start": "58.00", + "end": "58.50", "internal_diameter": null, "assembly_type": null, "slot_size": null @@ -519606,8 +519606,8 @@ "update_date": null, "activity_submission": null, "well": 113271, - "screen_from": "168.00", - "screen_to": "172.00", + "start": "168.00", + "end": "172.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -519623,8 +519623,8 @@ "update_date": "2017-08-15T21:19:15Z", "activity_submission": null, "well": 112932, - "screen_from": "110.00", - "screen_to": "115.00", + "start": "110.00", + "end": "115.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -519640,8 +519640,8 @@ "update_date": null, "activity_submission": null, "well": 112901, - "screen_from": "183.00", - "screen_to": "187.00", + "start": "183.00", + "end": "187.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -519657,8 +519657,8 @@ "update_date": null, "activity_submission": null, "well": 112942, - "screen_from": "131.00", - "screen_to": "135.00", + "start": "131.00", + "end": "135.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -519674,8 +519674,8 @@ "update_date": null, "activity_submission": null, "well": 112800, - "screen_from": "105.00", - "screen_to": "110.00", + "start": "105.00", + "end": "110.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "10.00" @@ -519691,8 +519691,8 @@ "update_date": null, "activity_submission": null, "well": 112746, - "screen_from": "34.00", - "screen_to": "39.00", + "start": "34.00", + "end": "39.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "25.00" @@ -519708,8 +519708,8 @@ "update_date": null, "activity_submission": null, "well": 112646, - "screen_from": "73.00", - "screen_to": "77.08", + "start": "73.00", + "end": "77.08", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -519725,8 +519725,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "241.00", - "screen_to": "243.00", + "start": "241.00", + "end": "243.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "70.00" @@ -519742,8 +519742,8 @@ "update_date": null, "activity_submission": null, "well": 112768, - "screen_from": "1094.10", - "screen_to": "1115.10", + "start": "1094.10", + "end": "1115.10", "internal_diameter": "5.50", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -519759,8 +519759,8 @@ "update_date": null, "activity_submission": null, "well": 112977, - "screen_from": "164.50", - "screen_to": "169.50", + "start": "164.50", + "end": "169.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -519776,8 +519776,8 @@ "update_date": null, "activity_submission": null, "well": 112533, - "screen_from": "253.00", - "screen_to": "260.00", + "start": "253.00", + "end": "260.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -519793,8 +519793,8 @@ "update_date": null, "activity_submission": null, "well": 112381, - "screen_from": "118.10", - "screen_to": "125.06", + "start": "118.10", + "end": "125.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -519810,8 +519810,8 @@ "update_date": null, "activity_submission": null, "well": 112426, - "screen_from": "36.00", - "screen_to": "40.00", + "start": "36.00", + "end": "40.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -519827,8 +519827,8 @@ "update_date": "2017-01-09T18:39:23Z", "activity_submission": null, "well": 112428, - "screen_from": "112.00", - "screen_to": "112.50", + "start": "112.00", + "end": "112.50", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -519844,8 +519844,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "252.00", - "screen_to": "257.00", + "start": "252.00", + "end": "257.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "60.00" @@ -519861,8 +519861,8 @@ "update_date": null, "activity_submission": null, "well": 113154, - "screen_from": "40.50", - "screen_to": "45.50", + "start": "40.50", + "end": "45.50", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -519878,8 +519878,8 @@ "update_date": null, "activity_submission": null, "well": 113016, - "screen_from": "170.00", - "screen_to": "175.00", + "start": "170.00", + "end": "175.00", "internal_diameter": null, "assembly_type": null, "slot_size": "20.00" @@ -519895,8 +519895,8 @@ "update_date": null, "activity_submission": null, "well": 112903, - "screen_from": "107.00", - "screen_to": "111.00", + "start": "107.00", + "end": "111.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -519912,8 +519912,8 @@ "update_date": null, "activity_submission": null, "well": 113056, - "screen_from": "223.00", - "screen_to": "228.00", + "start": "223.00", + "end": "228.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -519929,8 +519929,8 @@ "update_date": null, "activity_submission": null, "well": 112897, - "screen_from": "275.00", - "screen_to": "291.00", + "start": "275.00", + "end": "291.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -519946,8 +519946,8 @@ "update_date": null, "activity_submission": null, "well": 112976, - "screen_from": "59.00", - "screen_to": "63.00", + "start": "59.00", + "end": "63.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -519963,8 +519963,8 @@ "update_date": null, "activity_submission": null, "well": 113209, - "screen_from": "800.00", - "screen_to": "820.00", + "start": "800.00", + "end": "820.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -519980,8 +519980,8 @@ "update_date": "2017-03-28T16:01:29Z", "activity_submission": null, "well": 112943, - "screen_from": "75.00", - "screen_to": "80.00", + "start": "75.00", + "end": "80.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "150.00" @@ -519997,8 +519997,8 @@ "update_date": null, "activity_submission": null, "well": 113128, - "screen_from": "288.00", - "screen_to": "294.00", + "start": "288.00", + "end": "294.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "30.00" @@ -520014,8 +520014,8 @@ "update_date": null, "activity_submission": null, "well": 112250, - "screen_from": "120.00", - "screen_to": "140.00", + "start": "120.00", + "end": "140.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "20.00" @@ -520031,8 +520031,8 @@ "update_date": null, "activity_submission": null, "well": 112811, - "screen_from": "32.00", - "screen_to": "35.00", + "start": "32.00", + "end": "35.00", "internal_diameter": "2.00", "assembly_type": null, "slot_size": "15.00" @@ -520048,8 +520048,8 @@ "update_date": null, "activity_submission": null, "well": 112434, - "screen_from": "112.00", - "screen_to": "116.06", + "start": "112.00", + "end": "116.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -520065,8 +520065,8 @@ "update_date": null, "activity_submission": null, "well": 110000, - "screen_from": "40.04", - "screen_to": "40.08", + "start": "40.04", + "end": "40.08", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -520082,8 +520082,8 @@ "update_date": null, "activity_submission": null, "well": 112534, - "screen_from": "98.00", - "screen_to": "100.00", + "start": "98.00", + "end": "100.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -520099,8 +520099,8 @@ "update_date": null, "activity_submission": null, "well": 112607, - "screen_from": "87.05", - "screen_to": "92.00", + "start": "87.05", + "end": "92.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -520116,8 +520116,8 @@ "update_date": null, "activity_submission": null, "well": 112593, - "screen_from": "130.00", - "screen_to": "131.00", + "start": "130.00", + "end": "131.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -520133,8 +520133,8 @@ "update_date": null, "activity_submission": null, "well": 112533, - "screen_from": "283.00", - "screen_to": "288.00", + "start": "283.00", + "end": "288.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": null @@ -520150,8 +520150,8 @@ "update_date": "2016-12-09T20:25:55Z", "activity_submission": null, "well": 112261, - "screen_from": "38.00", - "screen_to": "42.00", + "start": "38.00", + "end": "42.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -520167,8 +520167,8 @@ "update_date": "2017-09-11T18:33:02Z", "activity_submission": null, "well": 113257, - "screen_from": "258.00", - "screen_to": "274.00", + "start": "258.00", + "end": "274.00", "internal_diameter": "8.00", "assembly_type": "K_PACKER", "slot_size": "100.00" @@ -520184,8 +520184,8 @@ "update_date": null, "activity_submission": null, "well": 112436, - "screen_from": "245.02", - "screen_to": "245.06", + "start": "245.02", + "end": "245.06", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -520201,8 +520201,8 @@ "update_date": null, "activity_submission": null, "well": 113043, - "screen_from": "177.00", - "screen_to": "180.00", + "start": "177.00", + "end": "180.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -520218,8 +520218,8 @@ "update_date": null, "activity_submission": null, "well": 112483, - "screen_from": "67.00", - "screen_to": "87.00", + "start": "67.00", + "end": "87.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": null @@ -520235,8 +520235,8 @@ "update_date": null, "activity_submission": null, "well": 113142, - "screen_from": "60.00", - "screen_to": "66.00", + "start": "60.00", + "end": "66.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "40.00" @@ -520252,8 +520252,8 @@ "update_date": null, "activity_submission": null, "well": 113264, - "screen_from": "83.50", - "screen_to": "88.00", + "start": "83.50", + "end": "88.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -520269,8 +520269,8 @@ "update_date": null, "activity_submission": null, "well": 112859, - "screen_from": "98.00", - "screen_to": "102.00", + "start": "98.00", + "end": "102.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -520286,8 +520286,8 @@ "update_date": null, "activity_submission": null, "well": 112952, - "screen_from": "190.00", - "screen_to": "194.00", + "start": "190.00", + "end": "194.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -520303,8 +520303,8 @@ "update_date": null, "activity_submission": null, "well": 105508, - "screen_from": "105.00", - "screen_to": "109.00", + "start": "105.00", + "end": "109.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -520320,8 +520320,8 @@ "update_date": null, "activity_submission": null, "well": 112337, - "screen_from": "297.00", - "screen_to": "351.00", + "start": "297.00", + "end": "351.00", "internal_diameter": "4.94", "assembly_type": null, "slot_size": "20.00" @@ -520337,8 +520337,8 @@ "update_date": null, "activity_submission": null, "well": 113138, - "screen_from": "173.08", - "screen_to": "178.01", + "start": "173.08", + "end": "178.01", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -520354,8 +520354,8 @@ "update_date": null, "activity_submission": null, "well": 112409, - "screen_from": "430.00", - "screen_to": "435.00", + "start": "430.00", + "end": "435.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "0.00" @@ -520371,8 +520371,8 @@ "update_date": null, "activity_submission": null, "well": 113193, - "screen_from": "153.00", - "screen_to": "155.00", + "start": "153.00", + "end": "155.00", "internal_diameter": "6.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -520388,8 +520388,8 @@ "update_date": null, "activity_submission": null, "well": 113150, - "screen_from": "29.00", - "screen_to": "32.00", + "start": "29.00", + "end": "32.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -520405,8 +520405,8 @@ "update_date": null, "activity_submission": null, "well": 112254, - "screen_from": "61.00", - "screen_to": "65.00", + "start": "61.00", + "end": "65.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "25.00" @@ -520422,8 +520422,8 @@ "update_date": null, "activity_submission": null, "well": 112242, - "screen_from": "76.00", - "screen_to": "88.00", + "start": "76.00", + "end": "88.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "30.00" @@ -520439,8 +520439,8 @@ "update_date": null, "activity_submission": null, "well": 112278, - "screen_from": "267.08", - "screen_to": "268.00", + "start": "267.08", + "end": "268.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -520456,8 +520456,8 @@ "update_date": null, "activity_submission": null, "well": 112857, - "screen_from": "335.00", - "screen_to": "355.00", + "start": "335.00", + "end": "355.00", "internal_diameter": "4.98", "assembly_type": "SCREEN", "slot_size": null @@ -520473,8 +520473,8 @@ "update_date": null, "activity_submission": null, "well": 112923, - "screen_from": "0.00", - "screen_to": "195.00", + "start": "0.00", + "end": "195.00", "internal_diameter": null, "assembly_type": null, "slot_size": "40.00" @@ -520490,8 +520490,8 @@ "update_date": null, "activity_submission": null, "well": 112913, - "screen_from": "291.00", - "screen_to": "295.00", + "start": "291.00", + "end": "295.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "50.00" @@ -520507,8 +520507,8 @@ "update_date": null, "activity_submission": null, "well": 112959, - "screen_from": "81.50", - "screen_to": "82.00", + "start": "81.50", + "end": "82.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -520524,8 +520524,8 @@ "update_date": null, "activity_submission": null, "well": 112960, - "screen_from": "49.00", - "screen_to": "53.00", + "start": "49.00", + "end": "53.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -520541,8 +520541,8 @@ "update_date": null, "activity_submission": null, "well": 112442, - "screen_from": "84.04", - "screen_to": "89.00", + "start": "84.04", + "end": "89.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -520558,8 +520558,8 @@ "update_date": null, "activity_submission": null, "well": 112280, - "screen_from": "25.00", - "screen_to": "29.00", + "start": "25.00", + "end": "29.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "10.00" @@ -520575,8 +520575,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "236.00", - "screen_to": "241.00", + "start": "236.00", + "end": "241.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "100.00" @@ -520592,8 +520592,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "257.00", - "screen_to": "260.00", + "start": "257.00", + "end": "260.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "30.00" @@ -520609,8 +520609,8 @@ "update_date": null, "activity_submission": null, "well": 113247, - "screen_from": "30.50", - "screen_to": "32.50", + "start": "30.50", + "end": "32.50", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -520626,8 +520626,8 @@ "update_date": null, "activity_submission": null, "well": 113031, - "screen_from": "156.00", - "screen_to": "160.00", + "start": "156.00", + "end": "160.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -520643,8 +520643,8 @@ "update_date": null, "activity_submission": null, "well": 113108, - "screen_from": "168.08", - "screen_to": "173.01", + "start": "168.08", + "end": "173.01", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -520660,8 +520660,8 @@ "update_date": null, "activity_submission": null, "well": 112508, - "screen_from": "162.17", - "screen_to": "173.00", + "start": "162.17", + "end": "173.00", "internal_diameter": null, "assembly_type": null, "slot_size": "40.00" @@ -520677,8 +520677,8 @@ "update_date": null, "activity_submission": null, "well": 112663, - "screen_from": "114.00", - "screen_to": "118.00", + "start": "114.00", + "end": "118.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -520694,8 +520694,8 @@ "update_date": null, "activity_submission": null, "well": 112500, - "screen_from": "0.00", - "screen_to": "140.00", + "start": "0.00", + "end": "140.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -520711,8 +520711,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "263.00", - "screen_to": "268.00", + "start": "263.00", + "end": "268.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "0.00" @@ -520728,8 +520728,8 @@ "update_date": null, "activity_submission": null, "well": 112850, - "screen_from": "243.00", - "screen_to": "247.00", + "start": "243.00", + "end": "247.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "40.00" @@ -520745,8 +520745,8 @@ "update_date": null, "activity_submission": null, "well": 112864, - "screen_from": "108.00", - "screen_to": "116.00", + "start": "108.00", + "end": "116.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -520762,8 +520762,8 @@ "update_date": null, "activity_submission": null, "well": 112975, - "screen_from": "114.00", - "screen_to": "118.00", + "start": "114.00", + "end": "118.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -520779,8 +520779,8 @@ "update_date": null, "activity_submission": null, "well": 112928, - "screen_from": "126.00", - "screen_to": "138.00", + "start": "126.00", + "end": "138.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -520796,8 +520796,8 @@ "update_date": null, "activity_submission": null, "well": 112406, - "screen_from": "0.00", - "screen_to": "60.00", + "start": "0.00", + "end": "60.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": null @@ -520813,8 +520813,8 @@ "update_date": null, "activity_submission": null, "well": 112265, - "screen_from": "48.00", - "screen_to": "50.00", + "start": "48.00", + "end": "50.00", "internal_diameter": "8.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -520830,8 +520830,8 @@ "update_date": null, "activity_submission": null, "well": 112915, - "screen_from": "48.00", - "screen_to": "65.00", + "start": "48.00", + "end": "65.00", "internal_diameter": "7.00", "assembly_type": "K_RISER", "slot_size": "40.00" @@ -520847,8 +520847,8 @@ "update_date": null, "activity_submission": null, "well": 112704, - "screen_from": "29.33", - "screen_to": "34.00", + "start": "29.33", + "end": "34.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -520864,8 +520864,8 @@ "update_date": "2016-12-17T08:28:56Z", "activity_submission": null, "well": 112491, - "screen_from": "0.00", - "screen_to": "103.00", + "start": "0.00", + "end": "103.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": null @@ -520881,8 +520881,8 @@ "update_date": null, "activity_submission": null, "well": 112452, - "screen_from": "73.06", - "screen_to": "78.00", + "start": "73.06", + "end": "78.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -520898,8 +520898,8 @@ "update_date": null, "activity_submission": null, "well": 113056, - "screen_from": "228.00", - "screen_to": "234.00", + "start": "228.00", + "end": "234.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -520915,8 +520915,8 @@ "update_date": null, "activity_submission": null, "well": 112951, - "screen_from": "79.50", - "screen_to": "80.00", + "start": "79.50", + "end": "80.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -520932,8 +520932,8 @@ "update_date": null, "activity_submission": null, "well": 112509, - "screen_from": "74.67", - "screen_to": "85.50", + "start": "74.67", + "end": "85.50", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "30.00" @@ -520949,8 +520949,8 @@ "update_date": null, "activity_submission": null, "well": 112495, - "screen_from": "136.50", - "screen_to": "139.00", + "start": "136.50", + "end": "139.00", "internal_diameter": null, "assembly_type": "K_RISER", "slot_size": null @@ -520966,8 +520966,8 @@ "update_date": null, "activity_submission": null, "well": 112958, - "screen_from": "272.00", - "screen_to": "277.00", + "start": "272.00", + "end": "277.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -520983,8 +520983,8 @@ "update_date": null, "activity_submission": null, "well": 112951, - "screen_from": "80.00", - "screen_to": "84.00", + "start": "80.00", + "end": "84.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -521000,8 +521000,8 @@ "update_date": null, "activity_submission": null, "well": 112912, - "screen_from": "51.00", - "screen_to": "55.00", + "start": "51.00", + "end": "55.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "25.00" @@ -521017,8 +521017,8 @@ "update_date": null, "activity_submission": null, "well": 112603, - "screen_from": "220.00", - "screen_to": "220.50", + "start": "220.00", + "end": "220.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -521034,8 +521034,8 @@ "update_date": null, "activity_submission": null, "well": 112501, - "screen_from": "0.00", - "screen_to": "40.00", + "start": "0.00", + "end": "40.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": null @@ -521051,8 +521051,8 @@ "update_date": null, "activity_submission": null, "well": 112909, - "screen_from": "51.00", - "screen_to": "55.00", + "start": "51.00", + "end": "55.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -521068,8 +521068,8 @@ "update_date": null, "activity_submission": null, "well": 112762, - "screen_from": "210.00", - "screen_to": "211.00", + "start": "210.00", + "end": "211.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -521085,8 +521085,8 @@ "update_date": null, "activity_submission": null, "well": 112526, - "screen_from": "16.00", - "screen_to": "196.00", + "start": "16.00", + "end": "196.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -521102,8 +521102,8 @@ "update_date": null, "activity_submission": null, "well": 112264, - "screen_from": "98.00", - "screen_to": "102.00", + "start": "98.00", + "end": "102.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "10.00" @@ -521119,8 +521119,8 @@ "update_date": null, "activity_submission": null, "well": 112692, - "screen_from": "41.33", - "screen_to": "46.00", + "start": "41.33", + "end": "46.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -521136,8 +521136,8 @@ "update_date": null, "activity_submission": null, "well": 112949, - "screen_from": "26.00", - "screen_to": "30.00", + "start": "26.00", + "end": "30.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -521153,8 +521153,8 @@ "update_date": null, "activity_submission": null, "well": 112961, - "screen_from": "28.50", - "screen_to": "29.00", + "start": "28.50", + "end": "29.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -521170,8 +521170,8 @@ "update_date": null, "activity_submission": null, "well": 112599, - "screen_from": "112.00", - "screen_to": "116.00", + "start": "112.00", + "end": "116.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -521187,8 +521187,8 @@ "update_date": "2017-10-03T13:07:48Z", "activity_submission": null, "well": 113269, - "screen_from": "115.00", - "screen_to": "115.33", + "start": "115.00", + "end": "115.33", "internal_diameter": "8.00", "assembly_type": null, "slot_size": "80.00" @@ -521204,8 +521204,8 @@ "update_date": null, "activity_submission": null, "well": 112246, - "screen_from": "60.00", - "screen_to": "80.00", + "start": "60.00", + "end": "80.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": null @@ -521221,8 +521221,8 @@ "update_date": null, "activity_submission": null, "well": 112925, - "screen_from": "171.00", - "screen_to": "175.00", + "start": "171.00", + "end": "175.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": "50.00" @@ -521238,8 +521238,8 @@ "update_date": null, "activity_submission": null, "well": 112980, - "screen_from": "17.00", - "screen_to": "21.00", + "start": "17.00", + "end": "21.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -521255,8 +521255,8 @@ "update_date": null, "activity_submission": null, "well": 112873, - "screen_from": "52.00", - "screen_to": "54.00", + "start": "52.00", + "end": "54.00", "internal_diameter": "5.00", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -521272,8 +521272,8 @@ "update_date": null, "activity_submission": null, "well": 112433, - "screen_from": "158.07", - "screen_to": "163.00", + "start": "158.07", + "end": "163.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -521289,8 +521289,8 @@ "update_date": null, "activity_submission": null, "well": 113096, - "screen_from": "215.50", - "screen_to": "220.00", + "start": "215.50", + "end": "220.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -521306,8 +521306,8 @@ "update_date": null, "activity_submission": null, "well": 112790, - "screen_from": "51.33", - "screen_to": "53.33", + "start": "51.33", + "end": "53.33", "internal_diameter": null, "assembly_type": "K_PACKER", "slot_size": null @@ -521323,8 +521323,8 @@ "update_date": null, "activity_submission": null, "well": 112333, - "screen_from": "98.00", - "screen_to": "100.00", + "start": "98.00", + "end": "100.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -521340,8 +521340,8 @@ "update_date": null, "activity_submission": null, "well": 112563, - "screen_from": "175.00", - "screen_to": "180.00", + "start": "175.00", + "end": "180.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -521357,8 +521357,8 @@ "update_date": null, "activity_submission": null, "well": 113035, - "screen_from": "118.00", - "screen_to": "123.00", + "start": "118.00", + "end": "123.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -521374,8 +521374,8 @@ "update_date": null, "activity_submission": null, "well": 112282, - "screen_from": "85.00", - "screen_to": "100.00", + "start": "85.00", + "end": "100.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "15.00" @@ -521391,8 +521391,8 @@ "update_date": null, "activity_submission": null, "well": 113199, - "screen_from": "120.00", - "screen_to": "140.00", + "start": "120.00", + "end": "140.00", "internal_diameter": "6.25", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -521408,8 +521408,8 @@ "update_date": null, "activity_submission": null, "well": 112599, - "screen_from": "110.00", - "screen_to": "112.00", + "start": "110.00", + "end": "112.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -521425,8 +521425,8 @@ "update_date": null, "activity_submission": null, "well": 112691, - "screen_from": "112.33", - "screen_to": "117.00", + "start": "112.33", + "end": "117.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -521442,8 +521442,8 @@ "update_date": null, "activity_submission": null, "well": 113129, - "screen_from": "185.00", - "screen_to": "190.00", + "start": "185.00", + "end": "190.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -521459,8 +521459,8 @@ "update_date": null, "activity_submission": null, "well": 112879, - "screen_from": "210.17", - "screen_to": "214.17", + "start": "210.17", + "end": "214.17", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -521476,8 +521476,8 @@ "update_date": null, "activity_submission": null, "well": 113246, - "screen_from": "80.00", - "screen_to": "82.00", + "start": "80.00", + "end": "82.00", "internal_diameter": "10.00", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -521493,8 +521493,8 @@ "update_date": null, "activity_submission": null, "well": 112673, - "screen_from": "108.00", - "screen_to": "112.50", + "start": "108.00", + "end": "112.50", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -521510,8 +521510,8 @@ "update_date": null, "activity_submission": null, "well": 113131, - "screen_from": "199.00", - "screen_to": "210.00", + "start": "199.00", + "end": "210.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "15.00" @@ -521527,8 +521527,8 @@ "update_date": null, "activity_submission": null, "well": 112858, - "screen_from": "100.00", - "screen_to": "160.00", + "start": "100.00", + "end": "160.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -521544,8 +521544,8 @@ "update_date": "2016-12-11T00:17:28Z", "activity_submission": null, "well": 112318, - "screen_from": "252.00", - "screen_to": "252.00", + "start": "252.00", + "end": "252.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": null @@ -521561,8 +521561,8 @@ "update_date": null, "activity_submission": null, "well": 112980, - "screen_from": "16.50", - "screen_to": "17.00", + "start": "16.50", + "end": "17.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -521578,8 +521578,8 @@ "update_date": null, "activity_submission": null, "well": 112973, - "screen_from": "23.50", - "screen_to": "24.00", + "start": "23.50", + "end": "24.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -521595,8 +521595,8 @@ "update_date": null, "activity_submission": null, "well": 112860, - "screen_from": "301.00", - "screen_to": "321.00", + "start": "301.00", + "end": "321.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": null @@ -521612,8 +521612,8 @@ "update_date": null, "activity_submission": null, "well": 112758, - "screen_from": "377.20", - "screen_to": "383.00", + "start": "377.20", + "end": "383.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "20.00" @@ -521629,8 +521629,8 @@ "update_date": null, "activity_submission": null, "well": 110627, - "screen_from": "50.33", - "screen_to": "55.00", + "start": "50.33", + "end": "55.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -521646,8 +521646,8 @@ "update_date": null, "activity_submission": null, "well": 112741, - "screen_from": "152.00", - "screen_to": "156.00", + "start": "152.00", + "end": "156.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "30.00" @@ -521663,8 +521663,8 @@ "update_date": null, "activity_submission": null, "well": 112355, - "screen_from": "151.00", - "screen_to": "155.00", + "start": "151.00", + "end": "155.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -521680,8 +521680,8 @@ "update_date": null, "activity_submission": null, "well": 112725, - "screen_from": "73.50", - "screen_to": "77.50", + "start": "73.50", + "end": "77.50", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "30.00" @@ -521697,8 +521697,8 @@ "update_date": null, "activity_submission": null, "well": 112875, - "screen_from": "33.50", - "screen_to": "37.50", + "start": "33.50", + "end": "37.50", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -521714,8 +521714,8 @@ "update_date": null, "activity_submission": null, "well": 112752, - "screen_from": "110.00", - "screen_to": "115.00", + "start": "110.00", + "end": "115.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "35.00" @@ -521731,8 +521731,8 @@ "update_date": null, "activity_submission": null, "well": 112604, - "screen_from": "220.00", - "screen_to": "221.00", + "start": "220.00", + "end": "221.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": null @@ -521748,8 +521748,8 @@ "update_date": null, "activity_submission": null, "well": 112243, - "screen_from": "30.00", - "screen_to": "60.00", + "start": "30.00", + "end": "60.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "30.00" @@ -521765,8 +521765,8 @@ "update_date": null, "activity_submission": null, "well": 112975, - "screen_from": "13.50", - "screen_to": "114.00", + "start": "13.50", + "end": "114.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -521782,8 +521782,8 @@ "update_date": null, "activity_submission": null, "well": 112621, - "screen_from": "125.00", - "screen_to": "130.00", + "start": "125.00", + "end": "130.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -521799,8 +521799,8 @@ "update_date": null, "activity_submission": null, "well": 112616, - "screen_from": "108.00", - "screen_to": "112.00", + "start": "108.00", + "end": "112.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": "40.00" @@ -521816,8 +521816,8 @@ "update_date": null, "activity_submission": null, "well": 112451, - "screen_from": "173.00", - "screen_to": "177.06", + "start": "173.00", + "end": "177.06", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -521833,8 +521833,8 @@ "update_date": null, "activity_submission": null, "well": 112426, - "screen_from": "34.00", - "screen_to": "36.00", + "start": "34.00", + "end": "36.00", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -521850,8 +521850,8 @@ "update_date": null, "activity_submission": null, "well": 112267, - "screen_from": "163.08", - "screen_to": "168.00", + "start": "163.08", + "end": "168.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -521867,8 +521867,8 @@ "update_date": null, "activity_submission": null, "well": 102666, - "screen_from": "177.00", - "screen_to": "217.00", + "start": "177.00", + "end": "217.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -521884,8 +521884,8 @@ "update_date": null, "activity_submission": null, "well": 113171, - "screen_from": "249.00", - "screen_to": "253.00", + "start": "249.00", + "end": "253.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -521901,8 +521901,8 @@ "update_date": null, "activity_submission": null, "well": 112262, - "screen_from": "36.00", - "screen_to": "41.00", + "start": "36.00", + "end": "41.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "25.00" @@ -521918,8 +521918,8 @@ "update_date": null, "activity_submission": null, "well": 112548, - "screen_from": "188.00", - "screen_to": "192.00", + "start": "188.00", + "end": "192.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -521935,8 +521935,8 @@ "update_date": null, "activity_submission": null, "well": 112241, - "screen_from": "125.00", - "screen_to": "145.00", + "start": "125.00", + "end": "145.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "30.00" @@ -521952,8 +521952,8 @@ "update_date": "2017-02-10T19:26:53Z", "activity_submission": null, "well": 112768, - "screen_from": "1416.40", - "screen_to": "1500.30", + "start": "1416.40", + "end": "1500.30", "internal_diameter": "5.50", "assembly_type": "SCRN_BLANK", "slot_size": null @@ -521969,8 +521969,8 @@ "update_date": null, "activity_submission": null, "well": 112252, - "screen_from": "93.00", - "screen_to": "113.00", + "start": "93.00", + "end": "113.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "20.00" @@ -521986,8 +521986,8 @@ "update_date": null, "activity_submission": null, "well": 112601, - "screen_from": "151.00", - "screen_to": "155.00", + "start": "151.00", + "end": "155.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -522003,8 +522003,8 @@ "update_date": "2017-10-25T17:15:07Z", "activity_submission": null, "well": 112850, - "screen_from": "247.00", - "screen_to": "252.00", + "start": "247.00", + "end": "252.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "0.00" @@ -522020,8 +522020,8 @@ "update_date": "2017-01-05T20:36:10Z", "activity_submission": null, "well": 112537, - "screen_from": "272.00", - "screen_to": "276.00", + "start": "272.00", + "end": "276.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -522037,8 +522037,8 @@ "update_date": null, "activity_submission": null, "well": 112449, - "screen_from": "73.10", - "screen_to": "78.04", + "start": "73.10", + "end": "78.04", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -522054,8 +522054,8 @@ "update_date": null, "activity_submission": null, "well": 112538, - "screen_from": "285.00", - "screen_to": "287.00", + "start": "285.00", + "end": "287.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -522071,8 +522071,8 @@ "update_date": null, "activity_submission": null, "well": 112583, - "screen_from": "260.00", - "screen_to": "280.00", + "start": "260.00", + "end": "280.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522088,8 +522088,8 @@ "update_date": null, "activity_submission": null, "well": 113074, - "screen_from": "345.00", - "screen_to": "350.00", + "start": "345.00", + "end": "350.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "15.00" @@ -522105,8 +522105,8 @@ "update_date": null, "activity_submission": null, "well": 112922, - "screen_from": "196.00", - "screen_to": "201.00", + "start": "196.00", + "end": "201.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -522122,8 +522122,8 @@ "update_date": null, "activity_submission": null, "well": 112249, - "screen_from": "145.00", - "screen_to": "165.00", + "start": "145.00", + "end": "165.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "20.00" @@ -522139,8 +522139,8 @@ "update_date": null, "activity_submission": null, "well": 112849, - "screen_from": "30.00", - "screen_to": "35.00", + "start": "30.00", + "end": "35.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -522156,8 +522156,8 @@ "update_date": null, "activity_submission": null, "well": 112400, - "screen_from": "65.00", - "screen_to": "67.50", + "start": "65.00", + "end": "67.50", "internal_diameter": "5.00", "assembly_type": "RISER_PIPE", "slot_size": null @@ -522173,8 +522173,8 @@ "update_date": null, "activity_submission": null, "well": 112628, - "screen_from": "208.00", - "screen_to": "209.00", + "start": "208.00", + "end": "209.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522190,8 +522190,8 @@ "update_date": null, "activity_submission": null, "well": 112953, - "screen_from": "35.00", - "screen_to": "39.00", + "start": "35.00", + "end": "39.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522207,8 +522207,8 @@ "update_date": null, "activity_submission": null, "well": 113023, - "screen_from": "131.00", - "screen_to": "159.00", + "start": "131.00", + "end": "159.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -522224,8 +522224,8 @@ "update_date": null, "activity_submission": null, "well": 110749, - "screen_from": null, - "screen_to": null, + "start": null, + "end": null, "internal_diameter": null, "assembly_type": null, "slot_size": null @@ -522241,8 +522241,8 @@ "update_date": null, "activity_submission": null, "well": 112466, - "screen_from": "50.00", - "screen_to": "52.00", + "start": "50.00", + "end": "52.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -522258,8 +522258,8 @@ "update_date": null, "activity_submission": null, "well": 112859, - "screen_from": "91.00", - "screen_to": "94.00", + "start": "91.00", + "end": "94.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -522275,8 +522275,8 @@ "update_date": null, "activity_submission": null, "well": 112270, - "screen_from": "180.08", - "screen_to": "181.00", + "start": "180.08", + "end": "181.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522292,8 +522292,8 @@ "update_date": null, "activity_submission": null, "well": 112562, - "screen_from": null, - "screen_to": null, + "start": null, + "end": null, "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522309,8 +522309,8 @@ "update_date": null, "activity_submission": null, "well": 112324, - "screen_from": "200.00", - "screen_to": "240.00", + "start": "200.00", + "end": "240.00", "internal_diameter": "4.98", "assembly_type": null, "slot_size": "20.00" @@ -522326,8 +522326,8 @@ "update_date": null, "activity_submission": null, "well": 112852, - "screen_from": "583.00", - "screen_to": "623.00", + "start": "583.00", + "end": "623.00", "internal_diameter": "4.94", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522343,8 +522343,8 @@ "update_date": null, "activity_submission": null, "well": 112768, - "screen_from": "1092.00", - "screen_to": "1094.10", + "start": "1092.00", + "end": "1094.10", "internal_diameter": "8.37", "assembly_type": "K_PACKER", "slot_size": null @@ -522360,8 +522360,8 @@ "update_date": null, "activity_submission": null, "well": 113243, - "screen_from": "70.00", - "screen_to": "72.00", + "start": "70.00", + "end": "72.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -522377,8 +522377,8 @@ "update_date": null, "activity_submission": null, "well": 112914, - "screen_from": "180.00", - "screen_to": "212.00", + "start": "180.00", + "end": "212.00", "internal_diameter": "7.00", "assembly_type": "K_RISER", "slot_size": "120.00" @@ -522394,8 +522394,8 @@ "update_date": null, "activity_submission": null, "well": 112768, - "screen_from": "1115.10", - "screen_to": "1274.60", + "start": "1115.10", + "end": "1274.60", "internal_diameter": "5.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522411,8 +522411,8 @@ "update_date": null, "activity_submission": null, "well": 105508, - "screen_from": "104.50", - "screen_to": "105.00", + "start": "104.50", + "end": "105.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522428,8 +522428,8 @@ "update_date": null, "activity_submission": null, "well": 112709, - "screen_from": "62.00", - "screen_to": "65.00", + "start": "62.00", + "end": "65.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -522445,8 +522445,8 @@ "update_date": null, "activity_submission": null, "well": 112944, - "screen_from": "50.00", - "screen_to": "55.00", + "start": "50.00", + "end": "55.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522462,8 +522462,8 @@ "update_date": null, "activity_submission": null, "well": 112407, - "screen_from": "149.00", - "screen_to": "151.00", + "start": "149.00", + "end": "151.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -522479,8 +522479,8 @@ "update_date": null, "activity_submission": null, "well": 113027, - "screen_from": "190.00", - "screen_to": "194.00", + "start": "190.00", + "end": "194.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -522496,8 +522496,8 @@ "update_date": "2017-08-29T04:33:21Z", "activity_submission": null, "well": 113219, - "screen_from": "136.00", - "screen_to": "146.00", + "start": "136.00", + "end": "146.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "150.00" @@ -522513,8 +522513,8 @@ "update_date": null, "activity_submission": null, "well": 113021, - "screen_from": "167.00", - "screen_to": "169.00", + "start": "167.00", + "end": "169.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -522530,8 +522530,8 @@ "update_date": null, "activity_submission": null, "well": 112922, - "screen_from": "186.00", - "screen_to": "196.00", + "start": "186.00", + "end": "196.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -522547,8 +522547,8 @@ "update_date": null, "activity_submission": null, "well": 112978, - "screen_from": "112.50", - "screen_to": "113.00", + "start": "112.50", + "end": "113.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522564,8 +522564,8 @@ "update_date": null, "activity_submission": null, "well": 112247, - "screen_from": "55.00", - "screen_to": "75.00", + "start": "55.00", + "end": "75.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": null @@ -522581,8 +522581,8 @@ "update_date": null, "activity_submission": null, "well": 112240, - "screen_from": "130.00", - "screen_to": "150.00", + "start": "130.00", + "end": "150.00", "internal_diameter": "4.50", "assembly_type": null, "slot_size": "30.00" @@ -522598,8 +522598,8 @@ "update_date": "2017-01-09T18:54:20Z", "activity_submission": null, "well": 112497, - "screen_from": "165.50", - "screen_to": "166.00", + "start": "165.50", + "end": "166.00", "internal_diameter": "5.00", "assembly_type": null, "slot_size": null @@ -522615,8 +522615,8 @@ "update_date": null, "activity_submission": null, "well": 113070, - "screen_from": "37.00", - "screen_to": "43.00", + "start": "37.00", + "end": "43.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "40.00" @@ -522632,8 +522632,8 @@ "update_date": null, "activity_submission": null, "well": 112744, - "screen_from": "38.00", - "screen_to": "42.00", + "start": "38.00", + "end": "42.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "20.00" @@ -522649,8 +522649,8 @@ "update_date": null, "activity_submission": null, "well": 112594, - "screen_from": "100.50", - "screen_to": "104.50", + "start": "100.50", + "end": "104.50", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "50.00" @@ -522666,8 +522666,8 @@ "update_date": "2016-12-10T23:58:57Z", "activity_submission": null, "well": 112317, - "screen_from": "172.00", - "screen_to": "172.00", + "start": "172.00", + "end": "172.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522683,8 +522683,8 @@ "update_date": null, "activity_submission": null, "well": 112335, - "screen_from": "155.00", - "screen_to": "175.00", + "start": "155.00", + "end": "175.00", "internal_diameter": "4.94", "assembly_type": null, "slot_size": "20.00" @@ -522700,8 +522700,8 @@ "update_date": null, "activity_submission": null, "well": 108025, - "screen_from": "74.30", - "screen_to": "79.00", + "start": "74.30", + "end": "79.00", "internal_diameter": "4.70", "assembly_type": "K_PACKER", "slot_size": "18.00" @@ -522717,8 +522717,8 @@ "update_date": null, "activity_submission": null, "well": 112958, - "screen_from": "262.00", - "screen_to": "272.00", + "start": "262.00", + "end": "272.00", "internal_diameter": "7.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -522734,8 +522734,8 @@ "update_date": null, "activity_submission": null, "well": 112800, - "screen_from": "110.00", - "screen_to": "115.00", + "start": "110.00", + "end": "115.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -522751,8 +522751,8 @@ "update_date": null, "activity_submission": null, "well": 112522, - "screen_from": "68.00", - "screen_to": "71.00", + "start": "68.00", + "end": "71.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -522768,8 +522768,8 @@ "update_date": null, "activity_submission": null, "well": 112754, - "screen_from": "243.00", - "screen_to": "248.00", + "start": "243.00", + "end": "248.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "12.00" @@ -522785,8 +522785,8 @@ "update_date": null, "activity_submission": null, "well": 112971, - "screen_from": "39.50", - "screen_to": "40.00", + "start": "39.50", + "end": "40.00", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522802,8 +522802,8 @@ "update_date": null, "activity_submission": null, "well": 112836, - "screen_from": "88.00", - "screen_to": "93.00", + "start": "88.00", + "end": "93.00", "internal_diameter": "8.00", "assembly_type": "SCREEN", "slot_size": "200.00" @@ -522819,8 +522819,8 @@ "update_date": null, "activity_submission": null, "well": 112682, - "screen_from": "82.83", - "screen_to": "87.50", + "start": "82.83", + "end": "87.50", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -522836,8 +522836,8 @@ "update_date": null, "activity_submission": null, "well": 112880, - "screen_from": "55.00", - "screen_to": "59.00", + "start": "55.00", + "end": "59.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -522853,8 +522853,8 @@ "update_date": null, "activity_submission": null, "well": 112984, - "screen_from": "35.50", - "screen_to": "38.50", + "start": "35.50", + "end": "38.50", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -522870,8 +522870,8 @@ "update_date": null, "activity_submission": null, "well": 112279, - "screen_from": "42.00", - "screen_to": "47.00", + "start": "42.00", + "end": "47.00", "internal_diameter": "6.00", "assembly_type": null, "slot_size": "20.00" @@ -522887,8 +522887,8 @@ "update_date": null, "activity_submission": null, "well": 112534, - "screen_from": "100.00", - "screen_to": "104.00", + "start": "100.00", + "end": "104.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -522904,8 +522904,8 @@ "update_date": null, "activity_submission": null, "well": 113118, - "screen_from": "215.00", - "screen_to": "220.00", + "start": "215.00", + "end": "220.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": "10.00" @@ -522921,8 +522921,8 @@ "update_date": null, "activity_submission": null, "well": 112936, - "screen_from": "268.00", - "screen_to": "273.00", + "start": "268.00", + "end": "273.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -522938,8 +522938,8 @@ "update_date": null, "activity_submission": null, "well": 112411, - "screen_from": "50.50", - "screen_to": "51.00", + "start": "50.50", + "end": "51.00", "internal_diameter": "7.00", "assembly_type": "K_PACKER", "slot_size": null @@ -522955,8 +522955,8 @@ "update_date": null, "activity_submission": null, "well": 112594, - "screen_from": "104.50", - "screen_to": "105.00", + "start": "104.50", + "end": "105.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -522972,8 +522972,8 @@ "update_date": null, "activity_submission": null, "well": 112685, - "screen_from": "48.08", - "screen_to": "53.00", + "start": "48.08", + "end": "53.00", "internal_diameter": "4.00", "assembly_type": "SCREEN", "slot_size": "25.00" @@ -522989,8 +522989,8 @@ "update_date": null, "activity_submission": null, "well": 112436, - "screen_from": "245.06", - "screen_to": "249.11", + "start": "245.06", + "end": "249.11", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "8.00" @@ -523006,8 +523006,8 @@ "update_date": null, "activity_submission": null, "well": 112292, - "screen_from": "69.80", - "screen_to": "74.50", + "start": "69.80", + "end": "74.50", "internal_diameter": "4.00", "assembly_type": null, "slot_size": "30.00" @@ -523023,8 +523023,8 @@ "update_date": null, "activity_submission": null, "well": 113021, - "screen_from": "169.00", - "screen_to": "173.00", + "start": "169.00", + "end": "173.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "6.00" @@ -523040,8 +523040,8 @@ "update_date": null, "activity_submission": null, "well": 113246, - "screen_from": "58.00", - "screen_to": "80.00", + "start": "58.00", + "end": "80.00", "internal_diameter": "10.00", "assembly_type": "SCREEN", "slot_size": "80.00" @@ -523057,8 +523057,8 @@ "update_date": null, "activity_submission": null, "well": 112494, - "screen_from": "64.00", - "screen_to": "66.00", + "start": "64.00", + "end": "66.00", "internal_diameter": "5.00", "assembly_type": "K_RISER", "slot_size": null @@ -523074,8 +523074,8 @@ "update_date": null, "activity_submission": null, "well": 112722, - "screen_from": "34.00", - "screen_to": "38.00", + "start": "34.00", + "end": "38.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "25.00" @@ -523091,8 +523091,8 @@ "update_date": null, "activity_submission": null, "well": 113112, - "screen_from": "329.00", - "screen_to": "335.00", + "start": "329.00", + "end": "335.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": "60.00" @@ -523108,8 +523108,8 @@ "update_date": null, "activity_submission": null, "well": 112907, - "screen_from": "33.00", - "screen_to": "37.00", + "start": "33.00", + "end": "37.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "40.00" @@ -523125,8 +523125,8 @@ "update_date": null, "activity_submission": null, "well": 112961, - "screen_from": "29.00", - "screen_to": "37.00", + "start": "29.00", + "end": "37.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -523142,8 +523142,8 @@ "update_date": null, "activity_submission": null, "well": 112409, - "screen_from": "435.00", - "screen_to": "445.00", + "start": "435.00", + "end": "445.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "100.00" @@ -523159,8 +523159,8 @@ "update_date": null, "activity_submission": null, "well": 113552, - "screen_from": "243.00", - "screen_to": "248.00", + "start": "243.00", + "end": "248.00", "internal_diameter": "3.00", "assembly_type": "TAIL_PIPE", "slot_size": null @@ -523176,8 +523176,8 @@ "update_date": null, "activity_submission": null, "well": 112989, - "screen_from": "92.00", - "screen_to": "112.00", + "start": "92.00", + "end": "112.00", "internal_diameter": null, "assembly_type": "SCREEN", "slot_size": null @@ -523193,8 +523193,8 @@ "update_date": null, "activity_submission": null, "well": 112983, - "screen_from": "81.00", - "screen_to": "83.00", + "start": "81.00", + "end": "83.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": null @@ -523210,8 +523210,8 @@ "update_date": null, "activity_submission": null, "well": 112950, - "screen_from": "38.00", - "screen_to": "70.00", + "start": "38.00", + "end": "70.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "30.00" @@ -523227,8 +523227,8 @@ "update_date": "2017-02-01T06:56:46Z", "activity_submission": null, "well": 112728, - "screen_from": "282.00", - "screen_to": "299.00", + "start": "282.00", + "end": "299.00", "internal_diameter": "6.00", "assembly_type": "K_RISER", "slot_size": "8.00" @@ -523244,8 +523244,8 @@ "update_date": null, "activity_submission": null, "well": 112819, - "screen_from": "34.50", - "screen_to": "37.50", + "start": "34.50", + "end": "37.50", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -523261,8 +523261,8 @@ "update_date": null, "activity_submission": null, "well": 112583, - "screen_from": "300.00", - "screen_to": "320.00", + "start": "300.00", + "end": "320.00", "internal_diameter": "4.50", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -523278,8 +523278,8 @@ "update_date": null, "activity_submission": null, "well": 112406, - "screen_from": "60.00", - "screen_to": "70.00", + "start": "60.00", + "end": "70.00", "internal_diameter": "2.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -523295,8 +523295,8 @@ "update_date": null, "activity_submission": null, "well": 112449, - "screen_from": "73.06", - "screen_to": "73.10", + "start": "73.06", + "end": "73.10", "internal_diameter": "5.00", "assembly_type": "K_PACKER", "slot_size": null @@ -523312,8 +523312,8 @@ "update_date": null, "activity_submission": null, "well": 113178, - "screen_from": "87.00", - "screen_to": "91.00", + "start": "87.00", + "end": "91.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "50.00" @@ -523329,8 +523329,8 @@ "update_date": null, "activity_submission": null, "well": 112435, - "screen_from": "78.06", - "screen_to": "83.00", + "start": "78.06", + "end": "83.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "20.00" @@ -523346,8 +523346,8 @@ "update_date": null, "activity_submission": null, "well": 112602, - "screen_from": "91.00", - "screen_to": "95.00", + "start": "91.00", + "end": "95.00", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "60.00" @@ -523363,8 +523363,8 @@ "update_date": null, "activity_submission": null, "well": 112845, - "screen_from": "77.40", - "screen_to": "106.00", + "start": "77.40", + "end": "106.00", "internal_diameter": "8.00", "assembly_type": "K_RISER", "slot_size": "8.00" @@ -523380,8 +523380,8 @@ "update_date": null, "activity_submission": null, "well": 112731, - "screen_from": "55.00", - "screen_to": "59.00", + "start": "55.00", + "end": "59.00", "internal_diameter": "6.00", "assembly_type": "K_PACKER", "slot_size": "50.00" @@ -523397,8 +523397,8 @@ "update_date": null, "activity_submission": null, "well": 112272, - "screen_from": "78.00", - "screen_to": "82.08", + "start": "78.00", + "end": "82.08", "internal_diameter": "5.00", "assembly_type": "SCREEN", "slot_size": "15.00" @@ -523414,8 +523414,8 @@ "update_date": null, "activity_submission": null, "well": 112898, - "screen_from": "135.00", - "screen_to": "139.00", + "start": "135.00", + "end": "139.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "10.00" @@ -523431,8 +523431,8 @@ "update_date": null, "activity_submission": null, "well": 113190, - "screen_from": "164.00", - "screen_to": "168.00", + "start": "164.00", + "end": "168.00", "internal_diameter": "6.00", "assembly_type": "SCREEN", "slot_size": "0.01" diff --git a/app/backend/gwells/fixtures/wellsearch.json.gz b/app/backend/gwells/fixtures/wellsearch.json.gz index b4fe3cf1b8..6bd6cf78c0 100644 Binary files a/app/backend/gwells/fixtures/wellsearch.json.gz and b/app/backend/gwells/fixtures/wellsearch.json.gz differ diff --git a/app/backend/gwells/urls.py b/app/backend/gwells/urls.py index bc4bc9db6c..33e0c83649 100644 --- a/app/backend/gwells/urls.py +++ b/app/backend/gwells/urls.py @@ -84,6 +84,7 @@ api.GeneralConfig.as_view(), name='configuration'), url(r'^' + app_root_slash, include('registries.urls')), url(r'^' + app_root_slash, include('wells.urls')), + url(r'^' + app_root_slash, include('aquifers.urls')) ] if settings.ENABLE_DATA_ENTRY: diff --git a/app/backend/gwells/views/api.py b/app/backend/gwells/views/api.py index cdd93ef6f1..887ead997e 100644 --- a/app/backend/gwells/views/api.py +++ b/app/backend/gwells/views/api.py @@ -25,6 +25,7 @@ class GeneralConfig(APIView): def get(self, request): config = { "enable_data_entry": get_env_variable("ENABLE_DATA_ENTRY") == "True", - "enable_google_analytics": get_env_variable("ENABLE_GOOGLE_ANALYTICS") == "True" + "enable_google_analytics": get_env_variable("ENABLE_GOOGLE_ANALYTICS") == "True", + "sso_idp_hint": get_env_variable("SSO_IDP_HINT", "idir") } return Response(config) diff --git a/app/backend/submissions/serializers.py b/app/backend/submissions/serializers.py index e06275389b..00244b3b9f 100644 --- a/app/backend/submissions/serializers.py +++ b/app/backend/submissions/serializers.py @@ -20,10 +20,18 @@ from django.db import transaction import wells.stack from wells.models import Well, ActivitySubmission -from wells.serializers import CasingSerializer, ScreenSerializer, LinerPerforationSerializer +from wells.serializers import ( + CasingSerializer, + DecommissionDescriptionSerializer, + ScreenSerializer, + LinerPerforationSerializer +) from wells.models import ( ActivitySubmission, Casing, + DecommissionDescription, + DecommissionMaterialCode, + DecommissionMethodCode, DevelopmentMethodCode, DrillingMethodCode, FilterPackMaterialCode, @@ -60,6 +68,7 @@ class WellSubmissionSerializer(serializers.ModelSerializer): """Serializes a well activity submission""" casing_set = CasingSerializer(many=True, required=False) + decommission_description_set = DecommissionDescriptionSerializer(many=True, required=False) screen_set = ScreenSerializer(many=True, required=False) linerperforation_set = LinerPerforationSerializer(many=True, required=False) @@ -80,7 +89,7 @@ class Meta: "work_start_date", "work_end_date", "owner_full_name", - "owner_mailing_address", # temporarily disabled + "owner_mailing_address", "owner_city", "owner_province_state", "owner_postal_code", @@ -152,6 +161,12 @@ class Meta: "casing_set", "linerperforation_set", "screen_set", + "decommission_reason", + "decommission_method", + "sealant_material", + "backfill_material", + "decommission_details", + 'decommission_description_set', ) @transaction.atomic @@ -160,7 +175,8 @@ def create(self, validated_data): FOREIGN_KEYS = { 'casing_set': Casing, 'screen_set': Screen, - 'linerperforation_set': LinerPerforation + 'linerperforation_set': LinerPerforation, + 'decommission_description_set': DecommissionDescription, } foreign_keys_data = {} for key in FOREIGN_KEYS.keys(): @@ -365,3 +381,19 @@ class WaterQualityColourSerializer(serializers.ModelSerializer): class Meta: model = WaterQualityColour fields = ('code', 'description') + + +class DecommissionMethodCodeSerializer(serializers.ModelSerializer): + """ Serializes decommission methods """ + + class Meta: + model = DecommissionMethodCode + fields = ('decommission_method_code', 'description') + + +class DecommissionMaterialCodeSerializer(serializers.ModelSerializer): + """ Serializes decommission material codes """ + + class Meta: + model = DecommissionMaterialCode + fields = ('code', 'description') diff --git a/app/backend/submissions/views.py b/app/backend/submissions/views.py index 6fe1d3f459..2bdb7011a0 100644 --- a/app/backend/submissions/views.py +++ b/app/backend/submissions/views.py @@ -25,6 +25,8 @@ ActivitySubmission, CasingCode, CasingMaterialCode, + DecommissionMaterialCode, + DecommissionMethodCode, DevelopmentMethodCode, DrillingMethodCode, FilterPackMaterialCode, @@ -54,6 +56,8 @@ CasingMaterialSerializer ) from submissions.serializers import ( + DecommissionMaterialCodeSerializer, + DecommissionMethodCodeSerializer, DevelopmentMethodCodeSerializer, DrillingMethodCodeSerializer, FilterPackMaterialCodeSerializer, @@ -77,7 +81,7 @@ WellActivityCodeSerializer, WellClassCodeSerializer, WellSubclassCodeSerializer, - YieldEstimationMethodCodeSerializer, + YieldEstimationMethodCodeSerializer, ) @@ -152,6 +156,10 @@ def get(self, request): instance=CasingCode.objects.all(), many=True) casing_material = CasingMaterialSerializer( instance=CasingMaterialCode.objects.all(), many=True) + decommission_materials = DecommissionMaterialCodeSerializer( + instance=DecommissionMaterialCode.objects.all(), many=True) + decommission_methods = DecommissionMethodCodeSerializer( + instance=DecommissionMethodCode.objects.all(), many=True) filter_pack_material = FilterPackMaterialCodeSerializer( instance=FilterPackMaterialCode.objects.all(), many=True) filter_pack_material_size = FilterPackMaterialSizeCodeSerializer( @@ -193,6 +201,8 @@ def get(self, request): options["intended_water_uses"] = intended_water_use_codes.data options["casing_codes"] = casing_codes.data options["casing_materials"] = casing_material.data + options["decommission_materials"] = decommission_materials.data + options["decommission_methods"] = decommission_methods.data options["filter_pack_material"] = filter_pack_material.data options["filter_pack_material_size"] = filter_pack_material_size.data options["land_district_codes"] = land_district_codes.data diff --git a/app/backend/wells/admin.py b/app/backend/wells/admin.py index f7385056d7..374d0f2e06 100644 --- a/app/backend/wells/admin.py +++ b/app/backend/wells/admin.py @@ -13,6 +13,8 @@ """ from django.contrib import admin from wells.models import ( + DecommissionMaterialCode, + DecommissionMethodCode, WaterQualityCharacteristic, WaterQualityColour ) @@ -21,3 +23,5 @@ admin.site.register(WaterQualityCharacteristic) admin.site.register(WaterQualityColour) +admin.site.register(DecommissionMaterialCode) +admin.site.register(DecommissionMethodCode) diff --git a/app/backend/wells/migrations/0018_well_aquifer_codes.json b/app/backend/wells/migrations/0018_well_aquifer_codes.json new file mode 100644 index 0000000000..96a90cf37b --- /dev/null +++ b/app/backend/wells/migrations/0018_well_aquifer_codes.json @@ -0,0 +1,44 @@ +[ + { + "model": "wells.aquifervulnerabilitycode", + "pk": "H", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "High", + "display_order": 2, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "wells.aquifervulnerabilitycode", + "pk": "L", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Low", + "display_order": 4, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + }, + { + "model": "wells.aquifervulnerabilitycode", + "pk": "M", + "fields": { + "create_user": "DATALOAD_USER", + "create_date": "2018-01-01T08:00:00Z", + "update_user": "DATALOAD_USER", + "update_date": "2018-01-01T08:00:00Z", + "description": "Moderate", + "display_order": 6, + "effective_date": "1970-01-01T08:00:00Z", + "expiry_date": null + } + } +] \ No newline at end of file diff --git a/app/backend/wells/migrations/0018_well_aquifer_codes.py b/app/backend/wells/migrations/0018_well_aquifer_codes.py new file mode 100644 index 0000000000..216d1bd13e --- /dev/null +++ b/app/backend/wells/migrations/0018_well_aquifer_codes.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-21 16:56 +from __future__ import unicode_literals + +from django.db import migrations +import json +from io import open +import os +from gwells.codes import CodeFixture + + +def aquifer_vulnerability_codes(): + fixture = '0018_well_aquifer_codes.json' + fixture_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), fixture) + + return CodeFixture(fixture_path) + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0017_auto_20180926_2104'), + ] + + operations = [ + migrations.RunPython(aquifer_vulnerability_codes().load_fixture, reverse_code=aquifer_vulnerability_codes().unload_fixture), + ] diff --git a/app/backend/wells/migrations/0019_auto_20180924_2205.py b/app/backend/wells/migrations/0019_auto_20180924_2205.py new file mode 100644 index 0000000000..2fd883bdd6 --- /dev/null +++ b/app/backend/wells/migrations/0019_auto_20180924_2205.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.14 on 2018-09-24 22:05 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0018_well_aquifer_codes'), + ] + + operations = [ + migrations.AlterField( + model_name='hydraulicproperty', + name='testing_duration', + field=models.PositiveIntegerField(blank=True, null=True), + ), + ] diff --git a/app/backend/wells/migrations/0020_auto_20180927_1737.py b/app/backend/wells/migrations/0020_auto_20180927_1737.py new file mode 100644 index 0000000000..d0ccbe1d04 --- /dev/null +++ b/app/backend/wells/migrations/0020_auto_20180927_1737.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.14 on 2018-09-27 17:37 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0019_auto_20180924_2205'), + ] + + operations = [ + migrations.AlterField( + model_name='hydraulicproperty', + name='avi', + field=models.DecimalField(blank=True, decimal_places=0, max_digits=10, null=True, verbose_name='AVI'), + ), + ] diff --git a/app/backend/wells/migrations/0021_delete_aquifervulnerabilitycode.py b/app/backend/wells/migrations/0021_delete_aquifervulnerabilitycode.py new file mode 100644 index 0000000000..74cc085828 --- /dev/null +++ b/app/backend/wells/migrations/0021_delete_aquifervulnerabilitycode.py @@ -0,0 +1,18 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-27 20:05 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0020_auto_20180927_1737'), + ] + + operations = [ + migrations.DeleteModel( + name='AquiferVulnerabilityCode', + ), + ] diff --git a/app/backend/wells/migrations/0022_update_casing_material_code.py b/app/backend/wells/migrations/0022_update_casing_material_code.py new file mode 100644 index 0000000000..5dc1527ed1 --- /dev/null +++ b/app/backend/wells/migrations/0022_update_casing_material_code.py @@ -0,0 +1,57 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-24 19:56 +from __future__ import unicode_literals + +from django.db import migrations, DataError + + +def change_code_description(apps, schema_editor): + CasingCode = apps.get_model('wells', 'CasingCode') + CasingMaterialCode = apps.get_model('wells', 'CasingMaterialCode') + Casing = apps.get_model('wells', 'Casing') + + casing_code = CasingCode(code='STL_REM', description='Steel Removed', display_order=3) + casing_code.save() + + casing_material = CasingMaterialCode.objects.filter(code='STL_PUL_OT').first() + + if casing_material: + for casing in Casing.objects.filter(casing_material=casing_material): + # Any case where we are overwriting a different casing_code can be ignored, as casing material + # is an entirely new field, and this migration should thus only find records in test/dev. + casing.casing_code = casing_code + casing.casing_material = None + casing.save() + + casing_material.delete() + + +def restore_code_description(apps, schema_editor): + CasingCode = apps.get_model('wells', 'CasingCode') + CasingMaterialCode = apps.get_model('wells', 'CasingMaterialCode') + Casing = apps.get_model('wells', 'Casing') + + casing_code = CasingCode.objects.get(code='STL_REM') + + casing_material = CasingMaterialCode(code='STL_PUL_OT', description='Steel pulled out', display_order=20) + casing_material.save() + + for casing in Casing.objects.filter(casing_code=casing_code): + if casing.casing_material: + raise DataError('Was not expecting to find casing code: {}'.format(casing.casing_code)) + casing.casing_material = casing_material + casing.casing_code = None + casing.save() + + casing_code.delete() + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0021_delete_aquifervulnerabilitycode'), + ] + + operations = [ + migrations.RunPython(change_code_description, reverse_code=restore_code_description), + ] diff --git a/app/backend/wells/migrations/0023_auto_change_pid_to_positive_integerfield_20180925_2040.py b/app/backend/wells/migrations/0023_auto_change_pid_to_positive_integerfield_20180925_2040.py new file mode 100644 index 0000000000..e4cfec0522 --- /dev/null +++ b/app/backend/wells/migrations/0023_auto_change_pid_to_positive_integerfield_20180925_2040.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-25 20:40 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0022_update_casing_material_code'), + ] + + operations = [ + # If this alteration fails, it means you have bad data in your database that you have to resolve 1st! + migrations.AlterField( + model_name='well', + name='legal_pid', + field=models.PositiveIntegerField(blank=True, null=True, verbose_name='Property Identification Description (PID)'), + ), + migrations.RenameField( + model_name='lithologydescription', + old_name='well_tag_number', + new_name='well', + ), + migrations.AlterField( + model_name='lithologydescription', + name='activity_submission', + field=models.ForeignKey(blank=True, db_column='filing_number', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='lithologydescription_set', to='wells.ActivitySubmission'), + ), + migrations.AlterField( + model_name='lithologydescription', + name='well', + field=models.ForeignKey(blank=True, db_column='well_tag_number', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='lithologydescription_set', to='wells.Well'), + ) + ] diff --git a/app/backend/wells/migrations/0024_auto_20180925_2022.py b/app/backend/wells/migrations/0024_auto_20180925_2022.py new file mode 100644 index 0000000000..40ee598608 --- /dev/null +++ b/app/backend/wells/migrations/0024_auto_20180925_2022.py @@ -0,0 +1,84 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.13 on 2018-09-25 20:22 +from __future__ import unicode_literals + +from decimal import Decimal +import django.core.validators +from django.db import migrations, models +import django.db.models.deletion +import uuid + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0023_auto_change_pid_to_positive_integerfield_20180925_2040'), + ] + + operations = [ + migrations.CreateModel( + name='DecommissionDescription', + fields=[ + ('create_user', models.CharField(max_length=60)), + ('create_date', models.DateTimeField(blank=True, null=True)), + ('update_user', models.CharField(max_length=60, null=True)), + ('update_date', models.DateTimeField(blank=True, null=True)), + ('decommission_description_guid', models.UUIDField(default=uuid.uuid4, primary_key=True, serialize=False)), + ('start', models.DecimalField(db_column='decommission_description_from', decimal_places=2, max_digits=7, + validators=[django.core.validators.MinValueValidator(Decimal('0.00'))], verbose_name='Decommissioned From')), + ('end', models.DecimalField(db_column='decommission_description_to', decimal_places=2, max_digits=7, + validators=[django.core.validators.MinValueValidator(Decimal('0.01'))], verbose_name='Decommissioned To')), + ('observations', models.CharField(blank=True, max_length=255, null=True)), + ], + options={ + 'abstract': False, + }, + ), + migrations.CreateModel( + name='DecommissionMaterialCode', + fields=[ + ('create_user', models.CharField(max_length=60)), + ('create_date', models.DateTimeField(blank=True, null=True)), + ('update_user', models.CharField(max_length=60, null=True)), + ('update_date', models.DateTimeField(blank=True, null=True)), + ('code', models.CharField(db_column='decommission_material_code', max_length=30, primary_key=True, serialize=False)), + ('description', models.CharField(max_length=100)), + ('effective_date', models.DateTimeField(blank=True, null=True)), + ('expiry_date', models.DateTimeField(blank=True, null=True)), + ], + options={ + 'abstract': False, + }, + ), + migrations.AddField( + model_name='activitysubmission', + name='backfill_material', + field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Backfill Material'), + ), + migrations.AddField( + model_name='activitysubmission', + name='decommission_details', + field=models.CharField(blank=True, max_length=250, null=True, verbose_name='Decommission Details'), + ), + migrations.AddField( + model_name='activitysubmission', + name='decommission_method', + field=models.ForeignKey(blank=True, db_column='decommission_method_code', null='True', on_delete=django.db.models.deletion.CASCADE, + to='wells.DecommissionMethodCode', verbose_name='Method of Decommission'), + ), + migrations.AddField( + model_name='activitysubmission', + name='decommission_reason', + field=models.CharField(blank=True, max_length=250, null=True, verbose_name='Reason for Decommission'), + ), + migrations.AddField( + model_name='activitysubmission', + name='sealant_material', + field=models.CharField(blank=True, max_length=100, null=True, verbose_name='Sealant Material'), + ), + migrations.AddField( + model_name='decommissiondescription', + name='material', + field=models.ForeignKey(db_column='decommission_material_code', on_delete=django.db.models.deletion.PROTECT, to='wells.DecommissionMaterialCode'), + ), + ] diff --git a/app/backend/wells/migrations/0025_auto_20181001_2111.py b/app/backend/wells/migrations/0025_auto_20181001_2111.py new file mode 100644 index 0000000000..6d764499ca --- /dev/null +++ b/app/backend/wells/migrations/0025_auto_20181001_2111.py @@ -0,0 +1,26 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.13 on 2018-10-01 21:11 +from __future__ import unicode_literals + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0024_auto_20180925_2022'), + ] + + operations = [ + migrations.AddField( + model_name='decommissiondescription', + name='activity_submission', + field=models.ForeignKey(blank=True, db_column='filing_number', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='decommission_description_set', to='wells.ActivitySubmission'), + ), + migrations.AddField( + model_name='decommissiondescription', + name='well', + field=models.ForeignKey(blank=True, db_column='well_tag_number', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='decommission_description_set', to='wells.Well'), + ), + ] diff --git a/app/backend/wells/migrations/0026_decom_mat_codes.json b/app/backend/wells/migrations/0026_decom_mat_codes.json new file mode 100644 index 0000000000..9f37898ac6 --- /dev/null +++ b/app/backend/wells/migrations/0026_decom_mat_codes.json @@ -0,0 +1 @@ +[{"model": "wells.decommissionmaterialcode", "pk": "BENTONITE_CHIPS", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:48:14.284Z", "update_user": "steve", "update_date": "2018-10-01T21:48:14.284Z", "description": "Bentonite chips", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "BENTONITE_CONCRETE_MIX", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:49:47.402Z", "update_user": "steve", "update_date": "2018-10-01T21:49:47.402Z", "description": "Bentonite concrete mix", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "BENTONITE_CRUMBLE", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:48:52.463Z", "update_user": "steve", "update_date": "2018-10-01T21:48:52.463Z", "description": "Bentonite crumble", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "BENTONITE_GROUT", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:49:27.449Z", "update_user": "steve", "update_date": "2018-10-01T21:49:27.449Z", "description": "Bentonite grout", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "COATED_BENTONITE_PELLETS", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:49:09.765Z", "update_user": "steve", "update_date": "2018-10-01T21:49:09.765Z", "description": "Coated bentonite pellets", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "COMMERCIAL_GRAVEL", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:50:25.074Z", "update_user": "steve", "update_date": "2018-10-01T21:50:25.074Z", "description": "Commercial gravel/pea gravel", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "COMMERCIAL_SAND", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:50:38.776Z", "update_user": "steve", "update_date": "2018-10-01T21:50:38.776Z", "description": "Commercial sand", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "CONCRETE", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:49:57.476Z", "update_user": "steve", "update_date": "2018-10-01T21:49:57.476Z", "description": "Concrete", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "NATIVE_CLAY_SILT", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:51:00.337Z", "update_user": "steve", "update_date": "2018-10-01T21:51:00.337Z", "description": "Native clay or silt", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "NATIVE_SAND_GRAVEL", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:51:13.375Z", "update_user": "steve", "update_date": "2018-10-01T21:51:13.375Z", "description": "Native sand or gravel", "effective_date": null, "expiry_date": null}}, {"model": "wells.decommissionmaterialcode", "pk": "NATIVE_SILT_SAND", "fields": {"create_user": "steve", "create_date": "2018-10-01T21:51:40.286Z", "update_user": "steve", "update_date": "2018-10-01T21:51:40.286Z", "description": "Native silt and sand", "effective_date": null, "expiry_date": null}}] \ No newline at end of file diff --git a/app/backend/wells/migrations/0026_decommission_material_codes.py b/app/backend/wells/migrations/0026_decommission_material_codes.py new file mode 100644 index 0000000000..03b7c6124e --- /dev/null +++ b/app/backend/wells/migrations/0026_decommission_material_codes.py @@ -0,0 +1,27 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-09-21 16:56 +from __future__ import unicode_literals + +from django.db import migrations +import json +from io import open +import os +from gwells.codes import CodeFixture + + +def code_fixture(): + fixture = '0026_decom_mat_codes.json' + fixture_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), fixture) + + return CodeFixture(fixture_path) + + +class Migration(migrations.Migration): + + dependencies = [ + ('wells', '0025_auto_20181001_2111'), + ] + + operations = [ + migrations.RunPython(code_fixture().load_fixture, reverse_code=code_fixture().unload_fixture), + ] diff --git a/app/backend/wells/models.py b/app/backend/wells/models.py index cb77434cc1..dccfcc696e 100644 --- a/app/backend/wells/models.py +++ b/app/backend/wells/models.py @@ -30,6 +30,7 @@ from submissions.models import WellActivityCode from aquifers.models import Aquifer + class DecommissionMethodCode(AuditModel): decommission_method_code = models.CharField(primary_key=True, max_length=10, editable=False, verbose_name="Code") @@ -505,8 +506,8 @@ class Well(AuditModel): land_district = models.ForeignKey(LandDistrictCode, db_column='land_district_code', on_delete=models.CASCADE, blank=True, null=True, verbose_name='Land District') - legal_pid = models.CharField(max_length=9, blank=True, null=True, - verbose_name='Property Identification Description (PID)') + legal_pid = models.PositiveIntegerField(blank=True, null=True, + verbose_name='Property Identification Description (PID)') well_location_description = models.CharField( max_length=500, blank=True, verbose_name='Description of Well Location') @@ -702,8 +703,8 @@ class Well(AuditModel): max_length=250, blank=True, null=True, verbose_name="Decommission Details") ems_id = models.CharField(max_length=30, blank=True, null=True) aquifer = models.ForeignKey(Aquifer, db_column='aquifer_id', - on_delete=models.CASCADE, blank=True, null=True, - verbose_name='Aquifer ID Number') + on_delete=models.CASCADE, blank=True, null=True, + verbose_name='Aquifer ID Number') tracker = FieldTracker() class Meta: @@ -1055,6 +1056,18 @@ class ActivitySubmission(AuditModel): diameter = models.CharField(max_length=9, blank=True) ems_id = models.CharField(max_length=30, blank=True) + # Decommission info + decommission_reason = models.CharField( + max_length=250, blank=True, null=True, verbose_name="Reason for Decommission") + decommission_method = models.ForeignKey( + DecommissionMethodCode, db_column='decommission_method_code', blank=True, null="True", + verbose_name="Method of Decommission") + sealant_material = models.CharField( + max_length=100, blank=True, null=True, verbose_name="Sealant Material") + backfill_material = models.CharField( + max_length=100, blank=True, null=True, verbose_name="Backfill Material") + decommission_details = models.CharField( + max_length=250, blank=True, null=True, verbose_name="Decommission Details") tracker = FieldTracker() @@ -1076,9 +1089,11 @@ class LithologyDescription(AuditModel): lithology_description_guid = models.UUIDField( primary_key=True, default=uuid.uuid4, editable=False) activity_submission = models.ForeignKey( - ActivitySubmission, db_column='filing_number', on_delete=models.CASCADE, blank=True, null=True) - well_tag_number = models.ForeignKey( - Well, db_column='well_tag_number', on_delete=models.CASCADE, blank=True, null=True) + ActivitySubmission, db_column='filing_number', on_delete=models.CASCADE, blank=True, null=True, + related_name='lithologydescription_set') + well = models.ForeignKey( + Well, db_column='well_tag_number', on_delete=models.CASCADE, blank=True, null=True, + related_name='lithologydescription_set') lithology_from = models.DecimalField(max_digits=7, decimal_places=2, verbose_name='From', blank=True, null=True, validators=[MinValueValidator(Decimal('0.00'))]) @@ -1242,10 +1257,13 @@ class Casing(AuditModel): well = models.ForeignKey(Well, db_column='well_tag_number', on_delete=models.CASCADE, blank=True, null=True, related_name='casing_set') + # 2018/Sep/26 - According to PO (Lindsay), diameter, start and end are required fields. + # There is however a lot of legacy data that does not have this field. start = models.DecimalField(db_column='casing_from', max_digits=7, decimal_places=2, verbose_name='From', null=True, blank=True, validators=[MinValueValidator(Decimal('0.00'))]) end = models.DecimalField(db_column='casing_to', max_digits=7, decimal_places=2, verbose_name='To', null=True, blank=True, validators=[MinValueValidator(Decimal('0.01'))]) + # NOTE: Diameter should be pulling from internal_diameter diameter = models.DecimalField(max_digits=8, decimal_places=3, verbose_name='Diameter', null=True, blank=True, validators=[MinValueValidator(Decimal('0.5'))]) casing_code = models.ForeignKey(CasingCode, db_column='casing_code', on_delete=models.CASCADE, @@ -1317,28 +1335,6 @@ def __str__(self): else: return 'well {} {} {}'.format(self.well, self.start, self.end) -class AquiferVulnerabilityCode(AuditModel): - """ - Demand choices for describing Aquifer - ------------------- - High - Low - Moderate - """ - code = models.CharField(primary_key=True, max_length=1, db_column='aquifer_vulnerability_code') - description = models.CharField(max_length=100) - display_order = models.PositiveIntegerField() - - effective_date = models.DateTimeField(blank=True, null=True) - expiry_date = models.DateTimeField(blank=True, null=True) - - class Meta: - db_table = 'aquifer_vulnerability_code' - ordering = ['display_order', 'code'] - verbose_name_plural = 'Aquifer Vulnerability Codes' - - def __str__(self): - return '{} - {}'.format(self.code, self.description) class WaterQualityColour(AuditModel): """ @@ -1357,21 +1353,16 @@ class Meta: def __str__(self): return self.description -""" - Hydraulic properties of the well, usually determined via tests. -""" -class HydraulicProperty(AuditModel): +class HydraulicProperty(AuditModel): + """ + Hydraulic properties of the well, usually determined via tests. + """ hydraulic_property_guid = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False) well = models.ForeignKey(Well, db_column='well_tag_number', to_field='well_tag_number', on_delete=models.CASCADE, blank=False, null=False) - avi = models.ForeignKey( - AquiferVulnerabilityCode, - db_column='aquifer_vulnerablity_code', - blank=True, - null=True, - on_delete=models.PROTECT, - verbose_name="AVI Reference") + avi = models.DecimalField( + max_digits=10, decimal_places=0, blank=True, null=True, verbose_name='AVI') storativity = models.DecimalField( max_digits=8, decimal_places=7, blank=True, null=True, verbose_name='Storativity') transmissivity = models.DecimalField( @@ -1393,7 +1384,7 @@ class HydraulicProperty(AuditModel): blank=True, null=True, verbose_name='Testing Method') - testing_duration = models.PositiveIntegerField() + testing_duration = models.PositiveIntegerField(blank=True, null=True) analytic_solution_type = models.DecimalField( max_digits=5, decimal_places=2, blank=True, null=True, verbose_name='Analytic Solution Type') boundary_effect = models.DecimalField( @@ -1402,6 +1393,37 @@ class HydraulicProperty(AuditModel): class Meta: db_table = 'hydraulic_property' verbose_name_plural = 'Hydraulic Properties' - + def __str__(self): - return '{} - {}'.format(self.well, self.hydraulic_property_guid) \ No newline at end of file + return '{} - {}'.format(self.well, self.hydraulic_property_guid) + + +class DecommissionMaterialCode(AuditModel): + """Codes for decommission materials""" + code = models.CharField(primary_key=True, max_length=30, db_column='decommission_material_code') + description = models.CharField(max_length=100) + + effective_date = models.DateTimeField(blank=True, null=True) + expiry_date = models.DateTimeField(blank=True, null=True) + + def __str__(self): + return '{} - {}'.format(self.code, self.description) + + +class DecommissionDescription(AuditModel): + """Provides a description of the ground conditions (between specified start and end depth) for decommissioning""" + + decommission_description_guid = models.UUIDField(primary_key=True, default=uuid.uuid4) + activity_submission = models.ForeignKey(ActivitySubmission, db_column='filing_number', + on_delete=models.CASCADE, blank=True, null=True, + related_name='decommission_description_set') + well = models.ForeignKey(Well, db_column='well_tag_number', on_delete=models.CASCADE, blank=True, + null=True, related_name='decommission_description_set') + start = models.DecimalField(db_column='decommission_description_from', max_digits=7, decimal_places=2, + verbose_name='Decommissioned From', blank=False, + validators=[MinValueValidator(Decimal('0.00'))]) + end = models.DecimalField(db_column='decommission_description_to', max_digits=7, decimal_places=2, + verbose_name='Decommissioned To', blank=False, + validators=[MinValueValidator(Decimal('0.01'))]) + material = models.ForeignKey(DecommissionMaterialCode, db_column='decommission_material_code', on_delete=models.PROTECT) + observations = models.CharField(max_length=255, null=True, blank=True) diff --git a/app/backend/wells/serializers.py b/app/backend/wells/serializers.py index c236faa8cb..c41d49e79e 100644 --- a/app/backend/wells/serializers.py +++ b/app/backend/wells/serializers.py @@ -22,6 +22,7 @@ Casing, CasingMaterialCode, CasingCode, + DecommissionDescription, LinerPerforation, Screen, Well, @@ -60,6 +61,28 @@ class Meta: 'casing_material', 'drive_shoe', ) + extra_kwargs = { + 'start': {'required': True}, + 'end': {'required': True}, + 'diameter': {'required': True} + } + + +class DecommissionDescriptionSerializer(serializers.ModelSerializer): + """Serializes Decommission Descriptions""" + + class Meta: + model = DecommissionDescription + fields = ( + 'start', + 'end', + 'material', + 'observations', + ) + extra_kwargs = { + 'start': {'required': True}, + 'end': {'required': True}, + } class ScreenSerializer(serializers.ModelSerializer): @@ -72,6 +95,11 @@ class Meta: 'assembly_type', 'slot_size', ) + extra_kwargs = { + 'start': {'required': True}, + 'end': {'required': True}, + 'assembly_type': {'required': True} + } class LinerPerforationSerializer(serializers.ModelSerializer): @@ -92,6 +120,7 @@ class WellStackerSerializer(AuditModelSerializer): casing_set = CasingSerializer(many=True) screen_set = ScreenSerializer(many=True) linerperforation_set = LinerPerforationSerializer(many=True) + decommission_description_set = DecommissionDescriptionSerializer(many=True) class Meta: model = Well @@ -103,7 +132,7 @@ def update(self, instance, validated_data): # based on this update. Trying to match up individual records and updating them, dealing with # removed casing/screen/perforation records etc. etc. is not the responsibility of this section. # The composite section is responsible for that. - FOREIGN_KEYS = {'casing_set': Casing, 'screen_set': Screen, 'linerperforation_set': LinerPerforation} + FOREIGN_KEYS = {'casing_set': Casing, 'screen_set': Screen, 'linerperforation_set': LinerPerforation, 'decommission_description_set': DecommissionDescription} for key in FOREIGN_KEYS.keys(): for record in getattr(instance, key).all(): record.delete() diff --git a/app/backend/wells/stack.py b/app/backend/wells/stack.py index 550210e25b..a1354a9da8 100644 --- a/app/backend/wells/stack.py +++ b/app/backend/wells/stack.py @@ -134,7 +134,7 @@ def _stack(self, records, well: Well) -> Well: # Iterate through all the submission records # Order by work_start_date, and where that's not availble, or null, fall back to the create date records = records.order_by(F('work_start_date').asc(nulls_first=True), 'create_date') - FOREIGN_KEYS = ('casing_set', 'screen_set', 'linerperforation_set') + FOREIGN_KEYS = ('casing_set', 'screen_set', 'linerperforation_set', 'decommission_description_set') composite = {} for submission in records: source_target_map = activity_type_map.get(submission.well_activity_type.code, {}) diff --git a/app/database/scripts/aquifers/initialize-xforms-aquifers.sql b/app/database/scripts/aquifers/initialize-xforms-aquifers.sql new file mode 100644 index 0000000000..fbd67e83fa --- /dev/null +++ b/app/database/scripts/aquifers/initialize-xforms-aquifers.sql @@ -0,0 +1,24 @@ +-- @Aquifers +-- +-- Aquifers app (Aquifers, and associations to Wells, and Hydraulic Properties from tests on +-- the aquifer at the point of the well) +-- +-- Loading the temporary mapping of wells <-> aquifers is done via +-- cd app/database/scripts/aquifers/ +-- psql -d $POSTGRESQL_DATABASE -U $POSTGRESQL_USER << EOF +-- \copy xform_aquifers FROM 'xforms-aquifers.csv' HEADER DELIMITER ',' CSV +-- EOF +-- +-- Output should be: COPY 1195 +-- +-- +\echo 'Creating Aquifers app tables...' + +DROP TABLE IF EXISTS xform_aquifers; +CREATE unlogged TABLE IF NOT EXISTS xform_aquifers ( + aquifer_id integer +,mapping_year integer +); + +\echo 'Finished creating Aquifers app tables...' + diff --git a/app/database/scripts/aquifers/xforms-aquifers.csv b/app/database/scripts/aquifers/xforms-aquifers.csv new file mode 100644 index 0000000000..1631522d86 --- /dev/null +++ b/app/database/scripts/aquifers/xforms-aquifers.csv @@ -0,0 +1,1196 @@ +aquifer_id, mapping_year +1,2012 +2,2012 +3,2012 +4,1993 +5,1993 +6,1993 +7,1993 +8,1993 +9,2012 +10,1993 +11,1993 +12,1993 +13,1993 +14,2016 +15,2018 +16,1993 +17,2016 +18,2016 +19,2016 +20,2012 +21,2012 +22,1993 +23,1993 +24,2018 +25,2016 +26,2016 +27,2018 +28,2012 +29,1993 +30,2012 +31,2012 +32,2015 +33,2015 +34,2007 +35,2015 +36,2015 +37,2015 +38,2016 +39,1993 +40,1993 +41,2018 +42,1993 +43,1993 +44,1993 +45,1993 +46,1993 +47,1993 +48,1993 +49,2000 +50,2018 +51,2018 +52,2018 +53,1993 +54,2007 +55,2007 +56,2007 +57,1993 +58,2015 +59,2018 +60,1993 +61,2000 +62,1993 +63,1993 +64,1993 +65,1993 +66,1993 +67,1993 +68,1993 +69,1993 +70,1993 +71,1993 +72,2012 +73,1993 +74,2018 +75,2018 +76,2018 +77,2018 +78,1993 +79,2018 +80,2018 +81,1994 +82,1994 +83,2017 +84,2007 +85,2017 +86,2012 +87,2012 +88,2012 +89,1994 +90,1998 +91,1994 +92,2017 +93,2017 +94,2017 +95,2017 +96,1994 +97,2017 +98,2017 +99,1994 +100,2018 +101,1994 +102,1994 +103,2017 +104,1994 +105,1994 +106,1994 +107,1994 +108,2017 +109,2017 +110,1994 +111,2017 +112,1994 +113,2017 +114,2017 +115,2017 +116,2017 +117,2017 +118,2017 +119,2017 +120,2017 +121,2017 +122,2017 +123,2017 +124,2000 +125,2000 +126,2000 +127,1994 +128,1998 +129,1998 +130,1998 +131,1998 +132,2000 +133,1999 +134,1999 +135,1999 +136,1999 +137,1999 +138,1994 +139,1994 +140,1994 +141,1994 +142,1994 +143,1994 +144,1994 +145,1994 +146,1994 +147,2007 +148,2007 +149,2007 +150,2007 +151,1994 +152,1994 +153,1994 +154,2016 +155,2007 +156,2007 +157,2007 +158,2007 +159,2007 +160,2012 +161,2012 +162,2012 +163,1995 +164,2012 +165,2012 +166,1995 +167,2012 +168,1995 +169,1995 +170,1995 +171,1995 +172,2004 +173,1995 +174,1995 +175,1995 +176,1995 +177,1995 +178,2012 +179,1995 +180,1995 +181,1995 +182,1995 +183,1995 +184,1995 +185,1995 +186,1995 +187,1995 +188,1995 +189,2012 +190,2012 +191,2012 +192,2012 +193,2012 +194,2012 +195,1996 +196,1996 +197,1996 +198,1996 +199,1996 +200,1996 +201,1996 +202,1996 +203,1996 +204,1996 +205,1996 +206,1996 +207,1996 +208,2012 +209,2012 +210,2012 +211,2012 +212,2007 +213,1996 +214,2012 +215,1996 +216,2012 +217,2012 +218,2007 +219,2012 +220,2012 +221,2007 +222,1996 +223,1996 +224,1996 +225,1996 +226,1996 +227,1996 +228,1996 +229,1996 +230,1996 +231,2018 +232,2018 +233,1996 +234,1996 +235,1996 +236,1996 +237,1996 +238,2012 +239,1996 +240,1996 +241,1996 +242,1996 +243,1996 +244,1996 +245,1996 +246,1996 +247,1996 +248,2012 +249,1996 +250,1996 +251,1996 +252,1996 +253,1996 +254,2016 +255,2016 +256,2016 +257,2016 +258,2007 +259,2016 +260,2016 +261,1997 +262,2007 +263,2007 +264,1997 +265,2016 +266,2007 +267,1997 +268,2007 +269,1997 +270,2007 +271,1996 +272,1996 +273,1996 +274,1996 +275,1996 +276,1996 +277,1996 +278,1996 +279,1996 +280,1996 +281,1996 +282,1996 +283,1996 +284,1996 +285,1996 +286,1996 +287,1996 +288,1996 +289,2018 +290,1996 +291,1996 +292,1996 +293,1996 +294,1996 +295,1996 +296,1996 +297,1997 +298,1997 +299,1997 +300,1997 +301,1997 +302,1997 +303,2007 +304,1997 +305,1997 +306,1997 +307,1997 +308,1997 +309,1997 +310,2018 +311,2018 +312,1998 +313,1998 +314,2018 +315, +316,2018 +317, +318,2018 +319,2018 +320,1999 +321,1998 +322,1998 +323,1998 +324,1998 +325,1998 +326,2012 +327,1999 +328,1999 +329,1999 +330,1999 +331,1999 +332,1999 +333,1999 +334,2007 +335,1999 +336,2007 +337,1998 +338,1999 +339,1999 +340,1999 +341,2007 +342,2007 +343,1999 +344,1999 +345,1999 +346,2017 +347,2017 +348,2017 +349,2017 +350,2012 +351,1999 +352,2018 +353,2017 +354,2017 +355,1999 +356,2007 +357,1999 +358,1999 +359,2017 +360,2012 +361,2012 +362,1999 +363,2012 +364,1999 +365,2012 +366,1999 +367,1999 +368,1999 +369,1999 +370,1999 +371,1999 +372,1999 +373,1999 +374,1999 +375,1999 +376,1999 +377,1999 +378,1999 +379,2000 +380,2000 +381,2017 +382,2017 +383,2000 +384,2000 +385,2001 +386,2000 +387,2007 +388,2007 +389,2007 +390,2007 +391,2007 +392,2007 +393,2007 +394,2007 +395,2007 +396,2007 +397,2007 +398,2007 +399,2007 +400,2007 +401,2007 +402,2000 +403,2000 +404,2000 +405,2000 +406,2000 +407,2000 +408,2000 +409,2000 +410,2000 +411,2009 +412,2000 +413,2012 +414,2000 +415,2000 +416,2000 +417,2012 +418,2000 +419,2000 +420,2000 +421,2000 +422,2000 +423,2000 +424,2000 +425,2000 +426,2000 +427,2000 +428,2000 +429,2000 +430,2000 +431,2001 +432,2001 +433,2001 +434,2001 +435,2001 +436,2001 +437,2001 +438,2001 +439,2003 +440,2004 +441,2004 +442,2004 +443,2004 +444,2004 +445,2016 +446,2016 +447,2006 +448,2004 +449,2003 +450,2003 +451,2004 +452,2003 +453,2016 +454,2003 +455,2003 +456,2003 +457,2003 +458,2016 +459,2003 +460,2012 +461,2001 +462,2018 +463,2018 +464,2018 +465,2018 +466,2018 +467,2001 +468,2018 +469,2001 +470,2012 +471,2012 +472,2001 +473,2001 +474,2002 +475,2002 +476,2002 +477,2002 +478,2002 +479,2002 +480,2002 +481,2002 +482,2002 +483,2002 +484,2002 +485,2002 +486,2002 +487,2002 +488,2002 +489,2002 +490,2002 +491,2002 +492,2002 +493,2002 +494,2002 +495,2002 +496,2002 +497,2002 +498,2007 +499,2012 +500,2002 +501,2002 +502,2012 +503,2002 +504,2012 +505,2012 +506,2012 +507,2002 +508,2012 +509,2002 +510,2002 +511,2016 +512,2016 +513,2016 +514,2016 +515,2002 +516,2002 +517,2002 +518,2002 +519,2002 +520,2002 +521,2002 +522,2002 +523,2003 +524,2012 +525,2016 +526,2002 +527,2012 +528,2012 +529,2012 +530,2002 +531,2002 +532,2002 +533,2002 +534,2002 +535,2016 +536,2016 +537,2016 +538,2016 +539,2016 +540,2002 +541,2002 +542,2002 +543,2002 +544,2002 +545,2002 +546,2002 +547,2001 +548,2001 +549,2001 +550,2001 +551,2002 +552,2003 +553,2003 +554,2003 +555,2003 +556,2003 +557,2012 +558,2003 +559,2012 +560,2003 +561,2003 +562,2012 +563,2012 +564,2003 +565,2012 +566,2003 +567,2012 +568,2003 +569,2003 +570,2017 +571,2017 +572,2017 +573,2017 +574,2017 +575,2017 +576,2003 +577,2003 +578,2003 +579,2003 +580,2003 +581,2003 +582,2003 +583,2003 +584,2003 +585,2003 +586,2003 +587,2003 +588,2017 +589,2003 +590,2003 +591,2003 +592,2003 +593,2003 +594,2003 +595,2003 +596,2003 +597,2003 +598,2003 +599,2003 +600,2003 +601,2003 +602,2003 +603,2016 +604,2003 +605,2003 +606,2004 +607,2003 +608,2012 +609,2003 +610,2003 +611,2012 +612,2012 +613,2012 +614,2012 +615,2003 +616,2012 +617,2012 +618,2004 +619,2006 +620,2006 +621,2003 +622,2003 +623,2003 +624,2003 +625,2003 +626,2003 +627,2003 +628,2003 +629,2003 +630,2003 +631,2003 +632,2006 +633,2003 +634,2003 +635,2003 +636,2003 +637,2003 +638,2003 +639,2003 +640,2003 +641,2003 +642,2003 +643,2003 +644,2003 +645,2003 +646,2003 +647,2003 +648,2003 +649,2003 +650,2003 +651,2003 +652,2003 +653,2003 +654,2003 +655,2003 +656,2003 +657,2003 +658,2003 +659,2003 +660,2003 +661,2004 +662,2004 +663,2012 +664,2004 +665,2004 +666,2003 +667,2003 +668,2003 +669,2003 +670,2003 +671,2003 +672,2003 +673,2003 +674,2003 +675,2003 +676,2003 +677,2003 +678,2003 +679,2003 +680,2012 +681,2012 +682,2004 +683,2004 +684,2004 +685,2004 +686,2004 +687,2004 +688,2004 +689,2004 +690,2004 +691,2004 +692,2004 +693,2004 +694,2004 +695,2004 +696,2004 +697,2004 +698,2004 +699,2004 +700,2004 +701,2004 +702,2004 +703,2004 +704,2004 +705,2004 +706,2004 +707,2004 +708,2004 +709,2004 +710,2004 +711,2004 +712,2004 +713,2004 +714,2004 +715,2004 +716,2018 +717,2004 +718,2004 +719,2004 +720,2004 +721,2005 +722,2005 +723,2005 +724,2018 +725,2018 +726,2018 +727,2004 +728,2004 +729,2006 +730,2012 +731,2012 +732,2012 +733,2006 +734,2006 +735,2006 +736,2006 +737,2006 +738,2006 +739,2006 +740,2006 +741,2006 +742,2006 +743,2006 +744,2006 +745,2006 +746,2006 +747,2006 +748,2006 +749,2006 +750,2006 +751,2006 +752,2006 +753,2012 +754,2012 +755,2006 +756,2006 +757,2006 +758,2006 +759,2006 +760,2006 +761,2006 +762,2012 +763,2006 +764,2006 +765,2011 +766,2006 +767,2006 +768,2006 +769,2006 +770,2006 +771,2006 +772,2006 +773,2006 +774,2006 +775,2006 +776,2006 +777,2006 +778,2006 +779,2006 +780,2006 +781,2006 +782,2006 +783,2006 +784,2006 +785,2006 +786,2006 +787,2006 +788,2017 +789,2017 +790,2017 +791,2017 +792,2017 +793,2017 +794,2017 +795,2006 +796,2006 +797,2006 +798,2006 +799,2006 +800,2006 +801,2006 +802,2006 +803,2006 +804,2006 +805,2006 +806,2006 +807,2006 +808,2012 +809,2006 +810,2012 +811,2006 +812,2006 +813,2006 +814,2006 +815,2006 +816,2006 +817,2006 +818,2017 +819,2007 +820,2007 +821,2007 +822,2007 +823,2007 +824,2007 +825,2007 +826,2007 +827,2007 +828,2007 +829,2007 +830,2007 +831,2007 +832,2007 +833,2007 +834,2012 +835,2007 +836,2007 +837,2007 +838,2007 +839,2012 +840,2007 +841,2007 +842,2006 +843,2007 +844,2007 +845,2006 +846,2007 +847,2012 +848, +849, +850,2011 +851,2011 +852,2007 +853,2007 +854,2007 +855, +856, +857,2007 +858,2007 +859,2007 +860,2007 +861,2007 +862,2007 +863,2007 +864,2007 +865,2007 +866,2007 +867,2007 +868,2007 +869,2007 +870,2007 +871,2007 +872,2007 +873,2007 +874,2007 +875,2007 +876,2007 +877,2007 +878,2016 +879,2016 +880,2016 +881,2016 +882,2007 +883,2007 +884,2016 +885,2007 +886,2016 +887,2016 +888,2016 +889,2016 +890,2007 +891,2007 +892,2012 +893,2012 +894,2012 +895,2012 +896,2007 +897,2016 +898,2007 +899,2007 +900,2007 +901,2007 +902,2009 +903,2011 +904,2007 +905,2007 +906,2007 +907,2007 +908,2011 +909,2007 +910,2011 +911,2007 +912,2007 +913,2007 +914,2007 +915,2007 +916,2007 +917,2011 +918,2007 +919,2007 +920,2007 +921,2007 +922,2007 +923,2011 +924,2007 +925,2007 +926,2007 +927,2007 +928,2011 +929,2011 +930,2011 +931,2011 +932,2011 +933,2011 +934,2011 +935,2012 +936,2012 +937,2012 +938,2012 +939,2012 +940,2012 +941,2012 +942,2012 +943,2012 +944,2012 +945,2012 +946,2012 +947,2012 +948,2012 +949,2012 +950,2012 +951,2012 +952,2012 +953,2012 +954,2012 +955,2012 +956,2012 +957,2012 +958,2012 +959,2012 +960,2012 +961,2012 +962,2012 +963,2012 +964,2012 +965,2012 +966,2012 +967,2012 +968,2012 +969,2012 +970,2016 +971,2016 +972,2012 +973,2012 +974,2012 +975,2012 +976,2012 +977, +978,2017 +979,2017 +980,2012 +981,2012 +982,2012 +983,2012 +984,2012 +985,2012 +986,2012 +987,2012 +988,2012 +989,2012 +990,2012 +991,2012 +992,2012 +993,2012 +994,2012 +995,2012 +996,2012 +997,2012 +998,2012 +999,2016 +1000,2012 +1001,2012 +1002,2018 +1003,2012 +1004,2012 +1005,2012 +1006,2012 +1007,2012 +1008,2012 +1009,2012 +1010,2012 +1011,2012 +1012,2012 +1013,2012 +1014,2012 +1015,2012 +1016,2012 +1017,2012 +1018,2012 +1019,2013 +1020,2013 +1021,2013 +1022,2013 +1023,2013 +1024,2013 +1025,2013 +1026,2013 +1027,2013 +1028,2013 +1029,2013 +1030,2013 +1031,2013 +1032,2013 +1033,2013 +1034,2013 +1035,2013 +1036,2013 +1037,2013 +1038,2013 +1039,2013 +1040,2013 +1041,2013 +1042,2013 +1043,2013 +1044,2013 +1045,2013 +1046,2013 +1047,2013 +1048,2013 +1049,2013 +1050,2013 +1051,2015 +1052,2015 +1053,2015 +1054,2015 +1055,2015 +1056,2015 +1057,2015 +1058,2015 +1059,2015 +1060,2015 +1061,2015 +1062,2015 +1063,2015 +1064,2015 +1065,2015 +1066,2015 +1067,2015 +1068,2015 +1069,2015 +1070,2015 +1071,2015 +1072,2015 +1073,2015 +1074,2015 +1075,2015 +1076,2015 +1077,2015 +1078,2015 +1079,2015 +1080,2015 +1081,2015 +1082,2015 +1083,2015 +1084, +1085,2015 +1086, +1087,2015 +1088,2015 +1089, +1090,2015 +1091, +1092, +1093, +1094,2015 +1095, +1096,2015 +1097, +1098,2015 +1099, +1100,2016 +1101,2016 +1102,2016 +1103,2016 +1104,2016 +1105,2016 +1106,2016 +1107,2016 +1108,2016 +1109,2016 +1110,2016 +1111,2016 +1112,2016 +1113,2016 +1114,2016 +1115,2016 +1116,2016 +1117,2016 +1118,2016 +1119,2016 +1120,2016 +1121,2016 +1122,2016 +1123,2016 +1124,2016 +1125,2016 +1126,2016 +1127,2016 +1128,2016 +1129,2016 +1130,2016 +1131,2016 +1132,2016 +1133,2016 +1134,2016 +1135,2016 +1136,2016 +1137,2016 +1138,2016 +1139,2016 +1140,2016 +1141,2016 +1142,2016 +1143,2016 +1144,2017 +1145,2017 +1146,2017 +1147,2018 +1148,2018 +1149,2017 +1150,2017 +1151,2017 +1152,2017 +1153,2017 +1154,2017 +1155,2017 +1156,2017 +1157,2017 +1158,2018 +1159,2018 +1160,2018 +1161,2018 +1162,2018 +1163,2018 +1164,2018 +1165,2018 +1166,2018 +1167,2018 +1168,2018 +1169,2018 +1170,2018 +1171,2018 +1172,2018 +1173,2018 +1174,2018 +1175,2018 +1176,2018 +1177,2018 +1178,2018 +1179,2018 +1180,2018 +1181,2018 +1182,2018 +1183,2018 +1184,2018 +1185,2018 +1186,2018 +1187,2018 +1188,2018 +1189,2018 +1190,2018 +1191,2018 +1192,2018 +1193,2018 +1194,2018 +1195,2018 diff --git a/app/database/scripts/wellsearch/wells_replication_stored_functions.sql b/app/database/scripts/wellsearch/wells_replication_stored_functions.sql index 95bb40c2fd..d625be02db 100644 --- a/app/database/scripts/wellsearch/wells_replication_stored_functions.sql +++ b/app/database/scripts/wellsearch/wells_replication_stored_functions.sql @@ -875,6 +875,7 @@ DECLARE BEGIN raise notice '...importing gw_aquifer_wells data'; + -- This next INSERT statement will be removed once the new Aquifers app is completed (CodeWithUs) INSERT INTO aquifer_well( aquifer_well_guid, aquifer_id, @@ -891,9 +892,134 @@ BEGIN coalesce(aws.when_updated,aws.when_created) FROM wells.gw_aquifer_wells aws INNER JOIN xform_well xform ON aws.well_id = xform.well_id; + -- 2018-SEPT-24 14:59 GW Aquifer app + raise notice '...importing gw_aquifer_attrs data'; + INSERT INTO aquifer( + aquifer_id + ,aquifer_name + ,location_description + ,area + ,aquifer_vulnerablity_code + ,litho_stratographic_unit + ,mapping_year + ,notes + ,aquifer_demand_code + ,water_use_code + ,aquifer_material_code + ,aquifer_productivity_code + ,quality_concern_code + ,aquifer_subtype_code + ,create_user,create_date,update_user,update_date + ) + SELECT + attrs.aquifer_id + ,attrs.aquifer_name + ,attrs.descriptive_location + ,attrs.size_km2 + ,CASE attrs.vulnerability + WHEN 'Moderate' THEN 'M' + WHEN 'Low' THEN 'L' + WHEN 'High' THEN 'H' + ELSE attrs.vulnerability + END AS aquifer_vulnerablity_code + ,attrs.litho_stratographic_unit + ,null -- from spreadsheet temporary table + ,null + ,CASE attrs.demand + WHEN 'Moderate' THEN 'M' + WHEN 'Low' THEN 'L' + WHEN 'High' THEN 'H' + ELSE attrs.demand + END AS aquifer_demand_code + ,CASE attrs.type_of_water_use + WHEN 'Domestic' THEN 'D' + WHEN 'Multiple' THEN 'M' + WHEN 'Potential Domestic' THEN 'PD' + ELSE attrs.type_of_water_use + END AS type_of_water_use + ,CASE attrs.aquifer_materials + WHEN 'Bedrock' THEN 'B' + WHEN 'Gravel' THEN 'G' + WHEN 'Sand' THEN 'S' + WHEN 'Sand and Gravel' THEN 'SG' + ELSE attrs.aquifer_materials + END AS aquifer_material_code + ,CASE attrs.productivity + WHEN 'Moderate' THEN 'M' + WHEN 'Low' THEN 'L' + WHEN 'High' THEN 'H' + ELSE attrs.productivity + END AS aquifer_productivity_code + ,CASE attrs.quality_concerns + WHEN 'Isolated' THEN 'I' + WHEN 'Local' THEN 'L' + WHEN 'Regional' THEN 'R' + WHEN 'None' THEN 'N' + ELSE attrs.quality_concerns + END AS quality_concern_code + ,CASE attrs.aquifer_subtype_code + WHEN 'UNK' THEN null + ELSE attrs.aquifer_subtype_code + END AS aquifer_subtype_code + ,attrs.who_created + ,attrs.when_created + ,coalesce(attrs.who_updated, attrs.who_created) + ,coalesce(attrs.when_updated,attrs.when_created) + FROM wells.gw_aquifer_attrs attrs; + + -- These next 3 lines will be removed once the new Aquifers app is completed (CodeWithUs) raise notice '...gw_aquifer_well data imported'; SELECT count(*) from aquifer_well into row_count; raise notice '% rows loaded into the aquifer_well table', row_count; + + raise notice '...gw_aquifer_attrs data imported'; + SELECT count(*) from aquifer into row_count; + raise notice '% rows loaded into the aquifer table', row_count; + + UPDATE aquifer + SET mapping_year = xform.mapping_year + FROM xform_aquifers xform + WHERE aquifer.aquifer_id = xform.aquifer_id + AND xform.mapping_year is not null; + + raise notice '...gw_aquifer_attrs data updated from mapping '; + + UPDATE well + SET aquifer_id = aws.aquifer_id + FROM wells.gw_aquifer_wells aws, + wells.wells_wells well_legacy -- to get well_tag_number + WHERE well_legacy.well_id = aws.well_id + AND well_legacy.well_tag_number = well.well_tag_number; + + raise notice '...well data updated from gw_aquifer_wells'; + + INSERT INTO hydraulic_property( + hydraulic_property_guid + ,storativity + ,transmissivity + ,avi + ,well_tag_number + ,create_user,create_date,update_user,update_date + ) + SELECT gen_random_uuid() + ,aws.storativity + ,aws.transmissivity + ,aws.aquifer_vulnerability_index + ,well.well_tag_number + ,aws.who_created + ,aws.when_created + ,coalesce(aws.who_updated, aws.who_created) + ,coalesce(aws.when_updated,aws.when_created) + FROM wells.gw_aquifer_wells aws, + wells.wells_wells well_legacy, -- to get well_tag_number + well well -- only for wells in GWELLS + WHERE well_legacy.well_id = aws.well_id + AND well_legacy.well_tag_number = well.well_tag_number; + + raise notice '...hydraulic_property data imported'; + SELECT count(*) from hydraulic_property into row_count; + raise notice '% rows loaded into the hydraulic_property table', row_count; + END; $$ LANGUAGE plpgsql; COMMENT ON FUNCTION migrate_aquifers () IS 'Load Aquifer Wells, only for the wells that have been replicated.'; diff --git a/app/frontend/.env b/app/frontend/.env index 71f0228ad9..350f265d89 100644 --- a/app/frontend/.env +++ b/app/frontend/.env @@ -1,4 +1,4 @@ # Use these when doing: npm run dev APPLICATION_ROOT="/gwells" -AXIOS_BASE_URL="http://localhost:8000/gwells/api/v1/" \ No newline at end of file +AXIOS_BASE_URL="http://127.0.0.1:8000/gwells/api/v1/" \ No newline at end of file diff --git a/app/frontend/README.md b/app/frontend/README.md index 42c39c9391..beb8642f6b 100644 --- a/app/frontend/README.md +++ b/app/frontend/README.md @@ -108,4 +108,4 @@ npm test npm run unit -- --watch ``` -For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). +For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). \ No newline at end of file diff --git a/app/frontend/build/webpack.dev.conf.js b/app/frontend/build/webpack.dev.conf.js index 6917eda258..ce00fb4ae4 100755 --- a/app/frontend/build/webpack.dev.conf.js +++ b/app/frontend/build/webpack.dev.conf.js @@ -100,6 +100,7 @@ const devWebpackConfig = merge(baseWebpackConfig, { names: [ 'header', 'registry', + 'summary', 'documents', 'submissions', 'footer' diff --git a/app/frontend/build/webpack.prod.conf.js b/app/frontend/build/webpack.prod.conf.js index a21908db90..5d898cdcde 100644 --- a/app/frontend/build/webpack.prod.conf.js +++ b/app/frontend/build/webpack.prod.conf.js @@ -23,7 +23,8 @@ const webpackConfig = merge(baseWebpackConfig, { registry: './src/registry/main.js', documents: './src/wells/documents.js', summary: './src/wells/summary.js', - submissions: './src/submissions/main.js' + submissions: './src/submissions/main.js', + aquifers: './src/aquifers/main.js' }, module: { rules: utils.styleLoaders({ diff --git a/app/frontend/package.json b/app/frontend/package.json index 35fc5f8724..fa7bed321b 100644 --- a/app/frontend/package.json +++ b/app/frontend/package.json @@ -6,11 +6,12 @@ "license": "Apache-2.0", "private": true, "scripts": { - "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", + "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js --host 0.0.0.0", "start": "npm run dev", "unit": "jest --config test/unit/jest.conf.js --coverage", "test": "npm run unit", "watch-test": "jest --config test/unit/jest.conf.js --watch --verbose", + "watch-all-test": "jest --config test/unit/jest.conf.js --watchAll --verbose", "lint": "eslint --ext .js,.vue src test/unit", "build": "node build/build.js", "watch": "./node_modules/.bin/webpack --config build/webpack.dev-watch.conf.js --watch --display-entrypoints" diff --git a/app/frontend/src/aquifers/App.vue b/app/frontend/src/aquifers/App.vue new file mode 100644 index 0000000000..f41baad74d --- /dev/null +++ b/app/frontend/src/aquifers/App.vue @@ -0,0 +1,45 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + + + + + + diff --git a/app/frontend/src/aquifers/components/Search.vue b/app/frontend/src/aquifers/components/Search.vue new file mode 100644 index 0000000000..82455b796d --- /dev/null +++ b/app/frontend/src/aquifers/components/Search.vue @@ -0,0 +1,95 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + + + + diff --git a/app/frontend/src/aquifers/main.js b/app/frontend/src/aquifers/main.js new file mode 100644 index 0000000000..09874aa9fe --- /dev/null +++ b/app/frontend/src/aquifers/main.js @@ -0,0 +1,33 @@ +/* + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +*/ + +import Vue from 'vue' +import App from './App' +import BootstrapVue from 'bootstrap-vue' +import '@/common/assets/css/bootstrap-theme.min.css' +import 'bootstrap-vue/dist/bootstrap-vue.css' +import store from './store' +import ApiService from '@/common/services/ApiService.js' + +ApiService.init() + +Vue.use(BootstrapVue) + +/* eslint-disable no-new */ +new Vue({ + el: '#app', + store, + components: { App }, + template: '' +}) diff --git a/app/frontend/src/aquifers/store/actions.types.js b/app/frontend/src/aquifers/store/actions.types.js new file mode 100644 index 0000000000..c750470cc8 --- /dev/null +++ b/app/frontend/src/aquifers/store/actions.types.js @@ -0,0 +1,13 @@ +/** + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ +export const SEARCH_AQUIFERS = 'SEARCH_AQUIFERS' +export const RESET_RESULTS = 'RESET_RESULTS' diff --git a/app/frontend/src/aquifers/store/index.js b/app/frontend/src/aquifers/store/index.js new file mode 100644 index 0000000000..4317a5b1f2 --- /dev/null +++ b/app/frontend/src/aquifers/store/index.js @@ -0,0 +1,73 @@ +/** + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ +import Vue from 'vue' +import Vuex from 'vuex' +import auth from '@/common/store/auth.js' +import config from '@/common/store/config.js' +import ApiService from '@/common/services/ApiService.js' + +import { SEARCH_AQUIFERS, RESET_RESULTS } from './actions.types' +import { + SET_LOADING, + SET_LIST_ERROR, + SET_AQUIFER_LIST +} from './mutations.types' + +Vue.use(Vuex) + +export default new Vuex.Store({ + modules: { auth, config }, + state: { + loading: null, + error: null, + aquifers: null + }, + actions: { + [SEARCH_AQUIFERS] ({ commit }, params) { + return new Promise((resolve, reject) => { + commit(SET_LOADING, true) + ApiService.query('aquifers/', params) + .then((response) => { + commit(SET_LOADING, false) + commit(SET_LIST_ERROR, null) + commit(SET_AQUIFER_LIST, response.data) + resolve() + }) + .catch((error) => { + commit(SET_LOADING, false) + commit(SET_LIST_ERROR, error.response) + reject(error) + }) + }) + }, + [RESET_RESULTS] ({ commit }) { + commit(SET_LOADING) + commit(SET_LIST_ERROR) + commit(SET_AQUIFER_LIST) + } + }, + mutations: { + [SET_LOADING] (state, payload) { + state.loading = payload + }, + [SET_LIST_ERROR] (state, payload) { + state.error = payload + }, + [SET_AQUIFER_LIST] (state, payload) { + state.aquifers = payload + } + }, + getters: { + aquiferList: state => state.aquifers && state.aquifers.results, + emptyResults: state => state.aquifers && state.aquifers.count === 0 + } +}) diff --git a/app/frontend/src/aquifers/store/mutations.types.js b/app/frontend/src/aquifers/store/mutations.types.js new file mode 100644 index 0000000000..4d0ddf35eb --- /dev/null +++ b/app/frontend/src/aquifers/store/mutations.types.js @@ -0,0 +1,14 @@ +/** + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + http://www.apache.org/licenses/LICENSE-2.0 + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + */ +export const SET_LOADING = 'SET_LOADING' +export const SET_LIST_ERROR = 'SET_LIST_ERROR' +export const SET_AQUIFER_LIST = 'SET_AQUIFER_LIST' diff --git a/app/frontend/src/common/assets/css/ie10-viewport-bug-workaround.css b/app/frontend/src/common/assets/css/ie10-viewport-bug-workaround.css new file mode 100644 index 0000000000..8b3803b48d --- /dev/null +++ b/app/frontend/src/common/assets/css/ie10-viewport-bug-workaround.css @@ -0,0 +1,15 @@ +/*! + * IE10 viewport hack for Surface/desktop Windows 8 bug + * Copyright 2014-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/* + * See the Getting Started docs for more information: + * http://getbootstrap.com/getting-started/#support-ie10-width + */ +@-webkit-viewport { width: device-width; } +@-moz-viewport { width: device-width; } +@-ms-viewport { width: device-width; } +@-o-viewport { width: device-width; } +@viewport { width: device-width; } diff --git a/app/frontend/src/common/common.scss b/app/frontend/src/common/common.scss index f4a929a924..7b63984e7b 100644 --- a/app/frontend/src/common/common.scss +++ b/app/frontend/src/common/common.scss @@ -1,5 +1,4 @@ @import url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css'); -@import '../../../backend/gwells/static/gwells/css/ie10-viewport-bug-workaround.css'; @import '~bootstrap/scss/_functions'; @import '~bootstrap/scss/_variables'; @import '~bootstrap/scss/mixins/_breakpoints'; diff --git a/app/frontend/src/common/components/Auth.vue b/app/frontend/src/common/components/Auth.vue index 9a097a3f4e..b6790dcf80 100644 --- a/app/frontend/src/common/components/Auth.vue +++ b/app/frontend/src/common/components/Auth.vue @@ -21,13 +21,13 @@ export default { } }, computed: { - ...mapGetters(['keycloak']) + ...mapGetters(['keycloak', 'config']) }, methods: { keyCloakLogin () { if (this.keycloak) { this.keycloak.init().success(() => { - this.keycloak.login({ idpHint: 'idir' }).success((authenticated) => { + this.keycloak.login({ idpHint: this.config.sso_idp_hint }).success((authenticated) => { if (authenticated) { ApiService.authHeader('JWT', this.keycloak.token) localStorage.setItem('token', this.keycloak.token) diff --git a/app/frontend/src/common/components/Header.vue b/app/frontend/src/common/components/Header.vue index 8dee4db7c1..67c23638ef 100644 --- a/app/frontend/src/common/components/Header.vue +++ b/app/frontend/src/common/components/Header.vue @@ -41,6 +41,7 @@ Groundwater Wells and Aquifers Well Search + Aquifers Groundwater Information Registry Submit Report @@ -71,7 +72,8 @@ export default { const adminMeta = document.head.querySelector('meta[name="show.admin"]') return { dataEntry: (!!this.config && this.config.enable_data_entry === true) && this.userRoles.submissions.edit === true, - admin: adminMeta ? adminMeta.content === 'true' : false + admin: adminMeta ? adminMeta.content === 'true' : false, + aquifers: false } }, ...mapGetters(['userRoles', 'config']) diff --git a/app/frontend/src/registry/App.vue b/app/frontend/src/registry/App.vue index 571452e9ef..9b62606e65 100644 --- a/app/frontend/src/registry/App.vue +++ b/app/frontend/src/registry/App.vue @@ -33,6 +33,8 @@ export default { diff --git a/app/frontend/src/submissions/components/SubmissionForm/ClosureDescription.vue b/app/frontend/src/submissions/components/SubmissionForm/ClosureDescription.vue new file mode 100644 index 0000000000..7d49e04586 --- /dev/null +++ b/app/frontend/src/submissions/components/SubmissionForm/ClosureDescription.vue @@ -0,0 +1,125 @@ + + + + + diff --git a/app/frontend/src/submissions/components/SubmissionForm/Step15Comments.vue b/app/frontend/src/submissions/components/SubmissionForm/Comments.vue similarity index 97% rename from app/frontend/src/submissions/components/SubmissionForm/Step15Comments.vue rename to app/frontend/src/submissions/components/SubmissionForm/Comments.vue index 9316be51d6..77dbf20d9b 100644 --- a/app/frontend/src/submissions/components/SubmissionForm/Step15Comments.vue +++ b/app/frontend/src/submissions/components/SubmissionForm/Comments.vue @@ -1,6 +1,6 @@